/* Navbar Styles */


@media (max-width: 1024px) {

    header#navbar div#nav_searchbar_container div#nav_searchbar div.nav_search_separator{
        display:none;
    }

    header#navbar div#nav_searchbar_container div#nav_searchbar button#nav_search_button{
        display:none;
    }

    header#navbar div#nav_searchbar_container div#nav_searchbar button#nav_search_button div.icon{
        display:none;
    }

    header#navbar #nav_category span, header#navbar a div.nav_phone span{
        font-size: 2vw !important;
    }
}


header#navbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 15px 10%;
    gap: 2.34vw;

    position: fixed;
    top: 0;
    width: 100%;
    height: 95px;

    background: #FFFFFF;
    box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.3);
    z-index: 100;
}

header#navbar img {
    height: 65px;
    width: auto;
}

header#navbar a {
    text-decoration: none;
    color: #000000;
}

header#navbar #nav_category {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: 3px;
}



header#navbar #nav_category span{
    font-style: normal;
    font-weight: 700;
    font-size: 1.5vw;
    
    color: #000000;
}

header#navbar #nav_category span.nav_underline{
    width: 100%;
    height: 2px;
    background: #80B55B;
    border-radius: 10px;
}

header#navbar div#nav_searchbar_container {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 0px;

    width: 100%;
    height: 65px;
}

header#navbar div#nav_searchbar_container div#nav_searchbar{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px 25px;
    gap: 25px;

    width: 100%;
    height: 45px;

    border: 1px solid rgba(0, 0, 0, 0.4);
    border-radius: 7px;
}

header#navbar div#nav_searchbar_container div#nav_searchbar input[type="text"]{
    width: 100%;
    height: 100%;
    border: 0px;
    outline: none;
}




header#navbar div#nav_searchbar_container div#nav_searchbar div.nav_search_separator {
    width: 1px;
    height: 100%;

    background: rgba(0, 0, 0, 0.4);
}

header#navbar div#nav_searchbar_container div#nav_searchbar button#nav_search_button {
    width: 40px;
    height: 40px;

    border: none;
    background: none;
    cursor: pointer;
}

header#navbar div#nav_searchbar_container div#nav_searchbar button#nav_search_button div.icon{
    width: 26px;
    height: 26px;
    background-color: hsla(0, 0%, 0%, 0.7);
}

header#navbar a div.nav_phone {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 10px;
}

header#navbar a div.nav_phone span {
    font-style: normal;
    font-weight: 700;
    font-size: 1.5vw;
    
    color: #000000;
    white-space: nowrap;
}

header#navbar a div.nav_phone div.icon {
    background-color: #80B55B;
    width: 35px;
    height: 35px;
}
