.nav_1{
    width: 100%;
    height: 80px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.44);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.44);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.44);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}
.container{
    width: 90%;
    margin: auto;
}
.menu_1{
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.menu_1 img{
    max-height: 60px;
    max-width: 150px;
}
.menu_1 .left_menu{
    display: flex;
    height: 45px;
}
.area_dropMenu{
    margin-left: 10px;
    cursor: pointer;
}
.link_open{
    display: flex;
    align-items: center;
    height: 45px;
}
.link_open svg{
    height: 15px;
    margin-left: 5px;
}
.link_open p{
    margin: 0;
    font-size: 13px;
    font-weight: 600;
}
.area_open{
    z-index: 999999999;
    width: 200px;
    background-color: #fff;
    position: fixed;
    display: none;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.55);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.55);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.55);
    padding: 3px;
    border-radius: 0px 0px 5px 5px;
}
.item_categoria{
    height: 35px;
    line-height: 35px;
    font-size: 13px;
    color: #3d3d3d;
    display: flex;
    align-items: center;
}
.item_categoria svg{
    height: 13px;
    margin-right: 5px;
}
.area_dropMenu:hover .area_open{
    display: block;
}
.search{
    height: 45px;
    display: flex;
    align-items: center;
    margin-left: 20px;
}
.search form{
    display: flex;
    align-items: center;
}
.search form input{
    width: 200px;
    height: 35px;
    border: 1px solid #ccc;
    background-color: #fff;
    font-size: 13px;
    padding-left: 5px;
    border-radius: 5px 0px 0px 5px;
    
    border-right: 0px;
}
.search form button{
    height: 39px;
    width: 35px;
    border: 1px solid #ccc;
    background-color: #fff;
    border-radius: 0px 5px 5px 0px;
    border-left: 0px;
}
.search form button svg{
    height: 17px;
}
.loved{
    height: 45px;
    width: 45px;
    margin-left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loved svg{
    height: 27px;
}
.area_rede{
    height: 45px;
    display: flex;
    align-items: center;
    margin-left: 20px;
}
.area_rede a{
    margin-right: 10px;
    margin-top: 5px;
}
.area_rede a svg{
    height: 23px;
}
#opemPesquisa{
    display: none;
    margin-left: 15px;
}
#opemPesquisa svg{
    height: 20px;
}
.searsh_mobile{
    height: 80px;
    width: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: -50px;
    left: 0;
    right: 0;
    background-color: #fff;
}
.area_whats{
    height: 50px;
    width: 50px;
    background-color: #49C358;
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1;
    border-radius: 25px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.34);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.34);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.34);
}

.area_whats svg{
    height: 31px;
    margin-top: 5px;
    fill: #ffffff;
}



@media only screen and (max-width: 685px){
    .area_rede{
        display: none;
    }
    .search{
        display: none;
    }
    .area_open{
        margin-left: -80px;
    }
    #opemPesquisa{
        display: flex;
    }
    .searsh_mobile{
        display: flex;
        margin: 0;
    }
    .area_whats{
        display: flex;
    }
    .menu_1 img{
        max-height: 50px;
        max-width: 100px;
    }
}