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

/* --- BW Super Header --- */
#super-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 46px;
    line-height: 46px;
    padding: 0;
    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 {
    height: 100%;
}
#super-header .row > div:first-of-type img {
    width: auto;
    height: 26px !important;
}
#super-header .row > div:last-of-type {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}
#super-header .fa-regular.fa-magnifying-glass {
    margin-left: 12px;
    cursor: pointer;
}
#super-header a {
    text-decoration: none;
    color: var(--white);
    font-weight: 300;
    font-size: 1.4rem;
}
#super-header .row > div:last-of-type .languageToggle {
    height: auto;
    line-height: inherit;
}
.superheader-search {
    display: none;
    width: 50%;
    margin-left: auto;
    /*margin-right: 10%;*/
    margin-right: 0;
    margin-top: 2rem;
    padding: 2rem;
    position: relative;
    height: 0;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    z-index: 9999;
    background-color: var(--white);
    border-radius: 1.2rem;
    box-shadow: 0px .4rem 1rem .4rem rgba(0, 0, 0, 0.1);
}
.superheader-search.show {
    display: block;
    height: 100%;
    opacity: 1;
    z-index: 9999;
    transition: all 0.3s ease-in-out;
}
.superheader-search:before {
    content: '';
    position: absolute;
    bottom: 100%;
    right: 20px;
    width: 0;
    height: 0;
    border-bottom: solid 10px var(--white);
    border-left: solid 10px transparent;
    border-right: solid 10px transparent;
}
#ui-id-1 {
    z-index: 99999999;
}
#ui-id-1 li div:hover {
    background-color: var(--light-gray);
    color: var(--dark-gray)
}
.superheader-search .btn-primary {
    padding: 1.2rem 3rem;
    background: var(--converting-blue) !important;
    color: var(--dark-gray) !important;
    border: none;
    transition: all 0.3s ease-in-out;
}
.superheader-search input[type="search"] {
    padding: 1.2rem;
    border: 1px solid var(--light-gray);
    border-radius: 1.2rem;
    font-size: 1.6rem;
    background-color: var(--white);
}
.superheader-search input[type="search"]:focus {
    outline: 2px solid var(--converting-blue);
    box-shadow: none;
}
.gt_selector {
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-family: museo-sans, sans-serif;
    font-size: 1.4rem;
    border-left: 1px solid white;
    padding-left: 2rem;
}
.languageToggle select {
    border: none;
    background: transparent;
    color: var(--white);
    cursor: pointer;
}
.languageToggle select option {
    color: var(--primary-grey);
    font-weight: normal;
    text-transform: none;
}


/* Max Width 767px
------------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media all and (max-width: 767px) {
    #super-header .row > div:last-of-type > div:first-of-type {
        display: none;
    }
    .gt_selector {
        border-left: none;
    }
}