/* --- Body Styles --- */
:root {
    --light-gray: #f2f2f2;
    --slate: #394049;
    --white: #ffffff;
}

/* --- BW Super Header --- */
#super-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 46px;
    line-height: 46px;
    padding: 0 6rem;
    background-color: var(--light-gray);
    font-size: 14px;
    transition: 0.3s ease-in-out;
    z-index: 100;
}
#super-header.sh-dark {
    background: var(--slate);
    color: var(--white);
}
#super-header .container {
    /*max-width: initial;*/
    padding: 0;
}
#super-header.scrolldown {
    top: -46px;
    pointer-events: none;
}
#super-header.scrollup {
    top: 0;
}
#super-header div {
    height: 100%;
}


/* --- BW Super Header > Logo --- */
#super-header .row > div:first-of-type img {
    width: auto;
    height: 16px !important;
}


/* --- BW Super Header > Links --- */
#super-header .row > div:last-of-type {
    display: flex;
    justify-content: flex-end;
}
#super-header .row > div:last-of-type .nav-select {
    display: none;
}
#super-header .row > div:last-of-type #navbar-1 ul {
    display: flex;
    flex-wrap: nowrap;
    column-gap: 15px;
    margin-bottom: 0;
    margin-right: 15px;
    list-style-type: none;
}
#super-header .row > div:last-of-type #navbar-1 li a {
    color: var(--white);
    font-weight: 500;
}
#super-header .row > div:last-of-type #navbar-1 li a:hover {
    color: var(--light-gray);
}
#super-header .row > div:last-of-type .navSearch {
    margin-right: 5px;
}
#super-header .row > div:last-of-type .languageToggle {
    height: auto;
    line-height: inherit;
}
#super-header .row > div:last-of-type .languageToggle select {
    font-family: 'museo-sans', sans-serif;
    text-transform: none;
}
#super-header .row > div:last-of-type .languageToggle select:hover {
    color: var(--light-gray);
}
#super-header .row > div:last-of-type > div > div {
    display: inline-block;
}

/* Max Width 575px
------------------------------------*/
@media all and (max-width: 575px) {
    #super-header .row > div:first-of-type img {
        max-width: 170px;
        height: auto !important;
    }
}