/*     HEADER     */
#header{
    position: relative;
    height: 245px;
    background-color: #FFFFFF;
    padding: 16px 36px 16px 20px;
    z-index: 999;
    transition: all ease 0.3s;
}
@media screen and (max-width: 900px){
    #header{
        height: 150px;
        padding: 16px 30px 16px 20px;
    }
}
/* Région Logo */
#header #region_logo img{
    max-width: inherit !important;
    max-height: 245px;
}
@media screen and (max-width: 900px){
    #header #region_logo img{
        max-width: 100% !important;
        max-height: 150px;
    }
}
/* Recherche */
#searchHeader{
    max-width: 414px;
}
@media screen and (max-width: 900px){
    #searchHeader{
        display: none;
    }
}
#searchHeader form,
#searchHeaderMobile form{
    position: relative;
}
#searchHeader input,
#searchHeaderMobile input{
    width: 100%;
    height: 40px;
    font-size: 16px !important;
    font-weight: 300;
    color: #132E10;
    background-color: #F5F5F5 !important;
    padding-left: 25px !important;
    border: none !important;
    border-radius: 50px !important;
    -webkit-appearance: none !important;
}
#searchHeader input::placeholder,
#searchHeaderMobile input::placeholder{
    color: #747474 !important;
}
#searchHeader .loupeHeader,
#searchHeaderMobile .loupeHeader{
    position: absolute;
    top: 10px;
    right: 15px;
    width: 20px;
    height: 20px;
    background-image: url('../img/header/loupe.svg');
    background-repeat: no-repeat;
    background-size: 20px 20px;
    z-index: 999;
}
/* Icones */
@media screen and (min-width: 1001px){
    #header #iconesHeader{
        max-width: 414px;
        width: 100%;
        gap: 55px;
    }
}
#header #iconesHeader .iconeHeader img{
    height: 33px;
    max-width: inherit !important;
}
@media screen and (max-width: 500px){
    #header #iconesHeader .iconeHeader img{
        height: 26px;
    }
}
#header .cart_link::after{
    content: attr(data-cart-qty);
    position: absolute;
    top: -3px;
    left: 21px;
    min-width: 16px;
    min-height: 16px;
    aspect-ratio: 1 / 1;
    font-size: 10px;
    font-weight: 500;
    line-height: 16px;
    text-align: center;
    color: #FFFFFF;
    background-color: #C8D03F;
    border-radius: 25px;
    padding: 0 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Icone burger */
@media screen and (max-width: 900px){
    #header #menuBurger{
        display: flex;
        gap: 11px;
        user-select: none;
    }
}
@media screen and (max-width: 639px){
    #header #menuBurger{
        gap: 4px;
    }
}
@media screen and (max-width: 450px){
    #header #menuBurger span{
        display: none;
    }
}
#header #menuBurger .hamburger{
    position: relative;
    width: 26px;
    height: 26px;
}
#header #menuBurger .hamburger::before,
#header #menuBurger .hamburger::after{
    position: absolute;
    width: 100%;
    height: 2px;
    content: '';
    transition: all 0.15s ease-in-out;
}
#header #menuBurger .hamburger::before{
    top: 0;
    background-color: #132E10;
}
#header #menuBurger .hamburger::after{
    bottom: 0;
    background-color: #132E10;
    box-shadow: 0 -12px #132E10;
}
.layout-container.openBurger #header #menuBurger .hamburger::before{
    top: 12px;
    transform: rotate(45deg);
}
.layout-container.openBurger #header #menuBurger .hamburger::after{
    bottom: 12px;
    transform: rotate(-45deg);
    box-shadow: 0 0 transparent;
}
body.openBurgerBody{
    overflow: hidden;
}
/*     MENU BURGER     */
#menuBurgerContent{
    top: -100%;
    left: 0;
    background-color: #FFFFFF;
    padding: 150px 0 50px 0;
    overflow-y: auto;
    opacity: 0;
    transition: all ease 0.3s;
    z-index: 998;
}
.layout-container.openBurger #menuBurgerContent{
    opacity: 1;
    top: 0;
}
/* Recherche Mobile */
#menuBurgerContent #searchHeaderMobile form input{
    border-bottom: 1px solid #3EA543 !important;
    border-radius: 0 !important;
}
.touchevents #menuBurgerContent #searchHeaderMobile form input{
    -webkit-appearance: none !important;
}