#top_bar {
    background: #37460d;
    width: 100%;
    height: 50px;
    position: sticky;
    top: 0;
    z-index: 101;
}

#top_bar .top_bar_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 5px 24px;
}

#top_bar .top_bar_left {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

#top_bar .top_bar_left .top_bar_logo_link {
    display: flex;
    align-items: center;
    color: inherit;
}

#top_bar .top_bar_left .top_bar_logo_link:hover {
    color: inherit;
}

#top_bar .top_bar_left .top_bar_logo {
    height: 30px;
    width: auto;
}

#top_bar .top_bar_left .top_bar_chevron {
    display: flex;
    align-items: center;
    color: #fff;
}

#top_bar .top_bar_left .top_bar_chevron svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
    fill: none;
}

#top_bar .top_bar_left .top_bar_page_title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    white-space: nowrap;
}

#top_bar .top_bar_left .top_bar_logo_link,
#top_bar .top_bar_left .top_bar_chevron,
#top_bar .top_bar_left .top_bar_page_title {
    opacity: 0;
    transition: opacity .25s ease-out;
    pointer-events: none;
}

#top_bar.scrolled .top_bar_left .top_bar_logo_link,
#top_bar.scrolled .top_bar_left .top_bar_chevron,
#top_bar.scrolled .top_bar_left .top_bar_page_title {
    opacity: 1;
    pointer-events: auto;
}

#top_bar .top_bar_right {
    display: flex;
    align-items: center;
    gap: 24px;
}

#top_bar .top_bar_ctas {
    display: flex;
    align-items: center;
    gap: 36px;
}

#top_bar .top_bar_cta {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    transition: opacity .15s ease-out;
}

#top_bar .top_bar_cta:hover {
    color: #fff;
    opacity: .75;
}

#top_bar .top_bar_cta svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    stroke: none;
    flex-shrink: 0;
}

#top_bar .top_bar_icons_mobile {
    display: none;
    align-items: center;
    gap: 12px;
}

#top_bar .top_bar_icon_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: #fff;
    padding: 3px;
    flex-shrink: 0;
    color: #37460d;
    transition: opacity .15s ease-out;
}

#top_bar .top_bar_icon_btn svg {
    width: 20px;
    height: auto;
    fill: currentColor;
    stroke: none;
}

#top_bar .top_bar_icon_btn:hover {
    color: #37460d;
    opacity: .8;
}

#top_bar .top_bar_lang {
    display: flex;
    align-items: center;
}

#top_bar .top_bar_lang .lang_select {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: #fff;
    color: #37460d;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity .15s ease-out;
}

#top_bar .top_bar_lang .lang_select:hover {
    opacity: .8;
    color: #37460d;
}

#top_bar .top_bar_lang a.lang_select { opacity: .5; }
#top_bar .top_bar_lang span.lang_select { cursor: default; }

@media (max-width: 1020px) {
    #top_bar {
        position: fixed;
        z-index: 302;
    }

    #top_bar .top_bar_inner {
        padding: 5px 12px;
    }

    #top_bar .top_bar_ctas,
    #top_bar .top_bar_lang {
        display: none;
    }

    #top_bar .top_bar_icons_mobile {
        display: flex;
    }
}
