.header {
    width: 100%;
    background-color: #FFFFFF;
    padding: 30px 10px;
}


.header-left{
    float: left;
    width: 220px;
}

.header-right{
    display: flex;
    float: right;
    width: 380px;
    margin-top: -40px;
    margin-right: 15px;
  }

.header-right-log{
    position:relative;
    float: right;
    width: 350px;
    margin-top: -40px;
    display: flex;
    justify-content: flex-end;
  }

@media (min-width: 770px) and (max-width:800px){
    .header-right{
        margin:0;
    }
 }

.link-nav{
    float: left;
    padding: 12px;
  }


.link-right{
    float: right;
  }

.header .logo {
    font-size: 25px;
    font-weight: bold;
    margin-left: 60px;
}

.header .link-nav:hover {
    text-decoration:none;
}


  @media(max-width: 600px){
    .header-right{
        display: none;
    }
    .header-right-log{
        display: none;
    }
    .header-left{
        display: none;
    }
    .form-search{
        display: none;
    }
}

@media(max-width: 800px){
    .form-search{
        display: none;
    }
    .header .logo {
        margin: 0;
    }
}

@media(max-width: 1000px){
    .form-search{
        margin: 0;
        width: 80vw;
    }

    .input-form-search{
        width: 5%;
        margin:0;
        padding: 0;
    }
}


.form-search{
    height: 39px;
    margin: 0 auto;
}

.input-form-search{
        width: 467px;
        height: 35px;
        margin-left: 3px;
        background: #DDDDDD;
        border-radius: 20px;
        padding-left: 40px;
        border: none;
}

#icone{
    position: relative;
    float: right;
    top: 11px;
    right: 515px;
    color: #BCBBBB;
}

.nave {
    display: none;
    position: absolute;
    background:#FFFFFF;
    color: #383838;
    top: 0;
    /*bottom: 0;*/
    left: 0;
    right: 0;
    z-index: 100;
    transform: translateX(100%);
    transition: transform 250ms cubic-bezier(.5, 0, .5, 1);
    margin-top: 72px;
}


.nav__list {
    list-style: none;
    display: flex;
    height: 30%;
    flex-direction: column;
    justify-content: space-evenly;
    margin: 0;
    padding: 0 30px 30px 25px;
}

@media (min-width: 600px) {
    .nav__list{
        display: none;
    }
}
#icons-space{
    margin-right: 10px;
}

#icons-space-left{
    margin-left: 5px;
}

.nav__item{
    padding: 10px 0;
}


.nav__link {
    text-decoration: none;
    font-family: Nunito, 'serif';
    font-style: normal;
    font-weight: bold;
    font-size: 15px;
    line-height: 20px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #ACABAB;
}


.nav__link:hover {
      color: #D90075;
}

.nav-toggle {
    /*padding: .2em .5em .5em .5em; */
    background: transparent;
    border: 0;
    cursor: pointer;
    position: absolute;
    right: 1em;
    top: 2em;
    z-index: 1000;
    margin-top: 15px;
}

@media(min-width:600px){
    .nav-toggle {
        display:none;
    }
}


.nav-open .nave {
    display: flex;
    transform: translateX(0%);
    max-width: 100%;
    max-height: fit-content;
    /*position: fixed;*/
}

/*
.nav-open .nav-toggle {
    position: fixed;
}
 */

.nav-open .hamburger {
    transform: rotate(.625turn);
    background-color: #d90075!important;
}

.nav-open .hamburger::before {
    transform: rotate(90deg) translateX(-6px);
    background-color: #d90075!important;
}

.nav-open .hamburger::after {
    opacity: 0;
}


.hamburger {
    display: block;
    position: relative;
    /*margin-top: 15px; */
}


.hamburger,
.hamburger::before,
.hamburger::after {
    background: #383838;
    width: 2em;
    height: 3px;
    border-radius: 1em;
    transition: transform 250ms ease-in-out;
}

.hamburger::before,
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
}

.hamburger::before { top: 6px; }
.hamburger::after { bottom: 6px; }


@media (min-width: 601px) and (max-width: 800px) {
    .header-right-log {
        margin-top: 0;
    }
    .header-right {margin-top: 0;}
}


.nav-cart{
    padding-left: 0!important;
}
#menu{
    display: flex;

}
#menu li:hover > ul {
    display: block;
    position: absolute;
    top:  35px;
}
#menu li:first-child{
  display: flex;
  flex-direction: column;
    cursor: pointer;
}
#menu li{
    width: 110px;
}
#menu li ul{
    display: none;
    z-index: 5;
    border: solid 1px #d6d8d9;
    background-color: #F9F9F9;
    padding: 15px;
    border-radius: 3px;
}
#menu li ul li{
    margin-top: 8px;
}
#menu li ul li:first-child{
    margin-top: 0px;
}
.item-link{
    color: #6c757d;
}
.item-link:hover{
    text-decoration: none;
    color: #d90075;
}
