header {
    position: fixed;
    z-index: 1010;
    width: 100%;
}



header .topbar {
    display: flex;
    padding: 12px;
    justify-content: start;
    gap: 2rem;
    background-color: var(--primary-color);
    font-size: 1rem;
    color: #FFF;
}

header .topbar > .nav-link {
    padding-top: 5px;
}

header .topbar .service-hours {
    text-align: center;
}

header .brand {
    margin: -12px 0;
}


header .brand .logo {
    max-width: 212px;
    height: 58px;
}

header nav ul {
    margin: 0;
    padding: 8px 0;
}

header nav li{
    display: inline;
    padding: 4px 12px;
}

header .header-site {
    border-bottom: 2px solid var(--light-gray);
}

header #selChangeLanguage .flag {
    display: inline-block;
    width: 26px;
    height: 23px;
    margin-right: 8px;
    margin-bottom: -4px;
}

header #selChangeLanguage .lang-en .flag {
    background: url('./../images/locale/en-flag.gif');
    background-size: cover;
    background-position: center;
}

header #selChangeLanguage .lang-es .flag{
    background: url('./../images/locale/es-flag.png');
    background-size: cover;
    background-position: center;
}

/** MOBILE */
@media only screen and (max-width: 600px) {
    header .topbar {
        gap: 1rem;
    }
}

@media(max-width: 992px){
    header .topbar .service-hours {
        width: 100%;
        line-height: 30px;
        text-align: left;
    }

    header .topbar .webstore-label, header .topbar .contact-info {
        display: none;
    }
}

header #selChangeLanguage a {
    color: white;
}


@media(min-width: 772px){

    header {
        height: 60px;
        line-height: 34px;
    }

    header .topbar-right-section {
        display: flex;
    }

    header #selChangeLanguage {
        margin-right: 18px;
    }


}
