﻿.primaryColor {
    background-color: #00607F;
}

.whiteText {
    color: white;
}

.flexHeader {
    align-items: start;
    display: flex;
    justify-content: space-between;
    padding: 15px;
}

.searchTranslateDisplay {
    display: flex;
    gap: 5px;
}

.smallMargin {
    margin: 15px 15px 0 15px;
}

.searchField {
    background-color: white;
    border: 1px solid white;
    display: flex;
    height: 37px;
    margin-top: 5px;
}

    .searchField input {
        border: none;
    }

.mobileSearchField {
    border: 1px solid white;
    display: none;
    height: 40px;
}

    .mobileSearchField input {
        border: none;
    }

.searchIcon {
    color: #555;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    padding: 10px;
}

.mobileSearchIcon {
    background-color: white;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    padding: 10px;
}

.navHeaderLogo {
    height: 63px;
    width: 513px;
}

.navigationBar {
    background-color: #f9f9f9;
    padding: 0 20px 10px 20px;
}

    .navigationBar div {
        align-items: center;
    }

    .navigationBar a {
        border-bottom: 3px solid #f9f9f9;
        color: #414042;
        font-size: 14px;
        font-weight: bold;
        padding: 10px;
        text-align: center;
        text-decoration: none;
        transition: all 0.05s ease;
    }

        .navigationBar a:hover, .navigationBar a:focus {
            border-bottom: 3px solid #ffc843;
            color: #00607f;
        }

.mobileNavigationBar {
    background-color: #f9f9f9;
}

#mobileNavigationBar {
    display: none;
}

.mobileNavigationList {
    border-bottom: 3px solid #00607f;
    padding: 10px 0 10px 20px;
}

    .mobileNavigationList a {
        color: #414042;
        font-size: 14px;
        font-weight: bold;
        text-decoration: none;
        transition: all 0.05s ease;
        padding: 5px 20px 5px 0;
        margin-right: 20px;
        border-bottom: 2px solid #f9f9f9;
    }

        .mobileNavigationList a:hover {
            color: #00607f;
            border-bottom: 2px solid #ffc843;
        }

.navColor {
    background-color: #f9f9f9;
}

.officialLogoMobile {
    display: none;
}

.goog-te-combo {
    background: white !important;
    color: black;
    font-weight: bold;
    height: 39px;
    margin-top: 5px;
    padding: 7px 10px 7px 10px !important;
    text-align: center;
    vertical-align: middle !important;
    width: 100%;
}

.goog-te-gadget {
    color: transparent !important;
}

.goog-logo-link {
    display: none;
}

@media (max-width: 924px) {
    .searchField {
        display: none;
    }

    .officialLogo {
        height: auto;
        width: 100%;
    }

    #headerLogo > img {
        margin-left: auto;
        margin-right: auto;
        width: 90%;
    }

    .mobileSearchField {
        display: flex;
    }

    .navigationBar {
        display: none;
    }

    .officialLogo {
        display: none;
    }

    .officialLogoMobile {
        display: block;
    }

    .icon-bar {
        border: 1px solid white;
    }

    .mobileSearchField {
        margin-left: 10px;
    }

    .navHeaderLogo {
        width: 100%;
        height: auto;
    }
}

.skip-link {
    left: 50%;
    padding: 4px;
    position: absolute;
    transform: translateY(-100%);
}
    .skip-link:focus {
        transform: translateY(0%);
    }