.custom-top-bar {
    color: #ffffff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 7px 30px;
    font-family: "Rubik", sans-serif !important;
    font-size: 8pt !important;
    font-weight: 600 !important;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer; 
}

.custom-top-bar .top-bar-item {
    white-space: nowrap;
}

.custom-top-bar .left-text {
    justify-self: end;
    margin-right: 10vw;
}

.custom-top-bar .right-text {
    justify-self: start;
    margin-left: 10vw;
}

.custom-top-bar .mobile-text {
    display: none;
}

#content-wrapper {
    margin-top: var(--custom-bar-height, 0px) !important;
}

@media (max-width: 768px) {
    .custom-top-bar .desktop-only,
    .custom-top-bar .desktop-text { 
        display: none !important; 
    }
    .custom-top-bar .mobile-text {
        display: inline !important;
    }
    .custom-top-bar { 
        display: flex;
        justify-content: center; 
        gap: 0; 
        font-size: 8pt !important; 
        padding: 4px 10px; 
    }
    .custom-top-bar .left-text,
    .custom-top-bar .right-text {
        margin-right: 0;
        margin-left: 0;
    }
    #header {
        height: auto !important;
    }
}