  /* --- 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);
    transition: 0.3s ease-in-out;
    z-index: 100;
}
#super-header.sh-dark {
    background: var(--slate);
    color: var(--white);
}
#super-header .row > div:first-of-type img {
    width: auto;
    height: 16px !important;
}
#super-header .row > div:last-of-type {
    display: flex;
    justify-content: flex-end;
}
#super-header .row > div:last-of-type .languageToggle {
    height: auto;
    line-height: inherit;
}