/*     BANNER     */
#banner{
    position: relative;
    height: 40px;
    z-index: 999;
    transition: all ease 0.3s;
}
/*     HEADER     */
#header{
    position: relative;
    height: 83px;
    background-color: #FFFFFF;
    padding: 0 20px;
    border-bottom: 1px solid rgba(30,52,82,.1);
    z-index: 999;
    transition: all ease 0.3s;
}
/* Région Logo */
#header #region_logo img{
    width: 150px;
    max-width: inherit !important
}
/* Recherche */
@media screen and (max-width: 725px){
    #searchHeader{
        display: none;
    }
}
#searchHeader form,
#searchHeaderMobile form{
    position: relative;
}
#searchHeader input,
#searchHeaderMobile input{
    width: 100%;
    height: 42px;
    font-size: 14px !important;
    font-weight: 400;
    color: #1E3452;
    background: rgba(30,52,82,.04) !important;
    padding-left: 20px !important;
    border: 1px solid rgba(30,52,82,.1) !important;
    border-radius: 50px !important;
    -webkit-appearance: none !important;
}
#searchHeader input::placeholder,
#searchHeaderMobile input::placeholder{
    font-size: 13px !important;
    color: #1E3452 !important;
}
#searchHeader .loupeHeader,
#searchHeaderMobile .loupeHeader{
    position: absolute;
    right: 18px;
    width: 18px;
    height: 45px;
    background-image: url('../img/header/loupe.svg');
    background-repeat: no-repeat;
    background-size: 18px 18px;
    background-position: center right;
    z-index: 999;
}
/* Icones */
#header .iconeHeader{
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    color: #1E3452;
    gap: 10px;
}
#header .iconeHeader:hover{
    color: #DC0C15;
}
#header .iconeHeader img{
    height: 23px;
    max-width: inherit !important;
}
#header .cart_link:after{
    content: attr(data-cart-qty);
    position: absolute;
    top: -6px;
    left: 14px;
    min-width: 18px;
    min-height: 18px;
    aspect-ratio: 1 / 1;
    font-size: 11px;
    font-weight: 600;
    line-height: 18px;
    text-align: center;
    color: #FFF;
    background-color: #DC0C15;
    border-radius: 25px;
    padding: 0 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 900px){
    #header #iconesHeader{
        gap: 16px;
    }
    #header .iconeHeader span{
        display: none;
    }
}
@media screen and (max-width: 450px){
    #header .iconeHeader.iconeWishlist{
        display: none;
    }    
}
/* Icone burger */
@media screen and (max-width: 900px){
    #header #menuBurger{
        display: block;
    }
}
@media screen and (max-width: 725px){
    #header #menuBurger{
        width: 101px;
    }    
}
@media screen and (max-width: 450px){
    #header #menuBurger{
        width: auto;
    }    
}
#header #menuBurger .hamburger{
    position: relative;
    width: 23px;
    height: 23px;
}
#header #menuBurger .hamburger:before,
#header #menuBurger .hamburger:after{
    position: absolute;
    width: 100%;
    height: 1px;
    content: '';
    transition: all 0.15s ease-in-out;
}
#header #menuBurger .hamburger:before{
    top: 0;
    background-color: #1E3452;
}
#header #menuBurger .hamburger:after{
    bottom: 0;
    background-color: #1E3452;
    box-shadow: 0 -11px #1E3452;
}
.layout-container.openBurger #header #menuBurger .hamburger:before{
    top: 11px;
    background-color: #DC0C15;
    transform: rotate(45deg);
}
.layout-container.openBurger #header #menuBurger .hamburger:after{
    bottom: 11px;
    background-color: #DC0C15;
    transform: rotate(-45deg);
    box-shadow: 0 0 transparent;
}
body.openBurgerBody{
    overflow: hidden;
}
/*     MENU BURGER     */
#menuBurgerContent{
    top: -100%;
    left: 0;
    background-color: #FFFFFF;
    padding: 123px 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 */
@media screen and (max-width: 725px){
    #menuBurgerContent #searchHeaderMobile{
        display: block;
    }
}
#menuBurgerContent #searchHeaderMobile form input{
    border-width: 0 0 1px 0 !important;
    border-radius: 0 !important;
}
.touchevents #menuBurgerContent #searchHeaderMobile form input{
    -webkit-appearance: none !important;
}