/*
--------------------------------------
Style généraux
--------------------------------------
*/
.bwa-menu__top__wrapper {
    --primary-color         : #000000;
    --primary-color-lighter : #5a5a5a;
    --primary-grey-color    : #e5e5e5;
}

.header_actions--footer{
    background: var(--color-primary);
    flex-grow: 1;
    padding-bottom: 50px;
}

.header_actions--footer .bwa-menu__links-footer>*{
    width: 100%;
    border-bottom: none!important;
}

.header_actions--footer .bwa-menu__links-footer>*:first-child{
    margin-top: 7.5px;
}
.header_actions--footer .bwa-menu__links-footer>*:last-child{
    margin-bottom: 7.5px;
}

.header_actions--footer .bwa-menu__link-title-footer{
    padding: 12.5px 20px;
    display: flex;
    align-items: center;
    width: 100%;
    color: white;
    font-size: 18px;
    font-weight: 400;
}

.header_actions--footer .bwa-menu__link-icon-footer{
    width: 31px;
    margin-right: 16px;
    position: relative;
}

.header_actions--footer .bwa-menu__link-icon-footer .cart-products-count{
    position: absolute;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -6px;
    right: 0;
    font-size: 12px;
    color: var(--color-primary);
}

.header_actions--footer .bwa-menu__language-selector{
    width: 100%;
    border-top: 1px solid #484848;
    padding: 35px;
}

.bwa-menu__language-selector__container{
    display: flex;
    align-items: center;
    justify-content: center;
}

.bwa-menu__language-selector__container .lang{
    opacity: 0.4;
    padding: 10px;
}

.bwa-menu__language-selector__container .lang img{
    height: 15px;
    width: 30px;
    object-fit: cover;
}

.bwa-menu__language-selector__container .lang.current-language{
    opacity: 1;
}

.bwa-menu__language-selector__container .separator-lang{
    height: 30px;
    width: 1px;
    background: #484848;
    margin: 0 17.5px;
}

/*
--------------------------------------
Style Burger
--------------------------------------
*/
#bwa-menu__burger {
    margin : 0 14px 0 8px;
    cursor : pointer;
    flex   : 0 0 auto;
}

/*
--------------------------------------
Style overlay
--------------------------------------
*/

.overlay_global {
    display        : block;
    position       : fixed;
    top            : 0;
    left: 0;
    z-index        : 2;
    width          : 100%;
    height         : 100vh;
    background     : rgba(0, 0, 0, 0);
    pointer-events : none;
    transition     : all 0.4s;
}

/*.header-main__menu__wrapper:hover + .overlay_global,*/
.bwa-menu__top__wrapper.is--active + .overlay-global-except-header,
.overlay-global-except-header.is--show {
    background: rgba(0, 0, 0, .4);
    pointer-events: all;
}
@media (max-width: 1199px){
    .bwa-menu__top__wrapper.is--active + .overlay_global{
        background: rgba(0, 0, 0, .4);
        pointer-events: all;
    }
}


/*
--------------------------------------
Style top main menu General
--------------------------------------
*/

.bwa-menu__top__wrapper {
    position         : fixed;
    top              : 0;
    left             : 0;
    bottom           : 0;
    max-height       : 100vh;
    overflow         : auto;
    z-index          : 6;
    background-color : #fff;
    width            : 100%;
    /*max-width        : 320px;*/
    transform        : translate3d(-100%, 0, 0);
    /*border-right     : 1px solid #242425;*/
    transition       : all .4s;
}

.bwa-menu__top__wrapper[data-is-desktop="false"]{
    min-height: 100vh;
    max-height: 100vh;
    overflow-x: hidden;
    /*overflow: hidden;*/
}

.bwa-menu__top__wrapper.is--active {
    transform : translate3d(0, 0, 0);
}

/*body.compact.display-full-header .header-nav .bwa-menu__top__wrapper.is--active{*/
/*    transform: translate3d(0, -187px, 0);*/
/*}*/

.bwa-menu__top__wrapper .bwa-menu__top {
    display        : flex;
    flex-direction : column;
    margin         : 0 auto;
    position       : relative;
    height: 100%;
}

.bwa-menu__top__wrapper[data-is-desktop='false'] .bwa-menu__top{
    height: calc(100vh - 80px);
    background: white;
    overflow: scroll;
    scrollbar-color: var(--color-secondary) transparent;
    scrollbar-width: thin;
}

.bwa-menu__top__wrapper[data-is-desktop='false'] ul{
    padding-left: 0;
}

.bwa-menu__top__wrapper .bwa-menu__main-item {
    /*flex-grow     : 1;*/
    border-bottom : 1px solid #e5e5e5;
    border-bottom : 1px solid var(--primary-grey-color);
}

.bwa-menu__header-mobile{
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    width : 100%;
    padding: 20px 15px 20px 25px;
    background: white;
    border-bottom: 1px solid #E6E6E6;

}
.bwa-menu__header-mobile .bwa-menu__logo-top{
    grid-column: 2;
}
.bwa-menu__header-mobile .bwa-menu__close-container,
.tab_back--container .bwa-menu__close-container{
    grid-column: 3;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.bwa-menu__header-mobile .bwa-menu__close,
.tab_back--container .bwa-menu__close,
.tab_back--container .bwa-menu__back {
    cursor: pointer;
    padding: 10px;
}

.tab_back--container{
    color: #252525;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    width : 100%;
    padding: 10px 15px;
    border-bottom: 1px solid #E6E6E6;
}
.bwa-menu__back-container,
.bwa-menu__header-cat{
    display: flex;
    align-items: center;
}
.bwa-menu__header-mobile, .tab_back--container{
    height: 80px
}

.tab_back--container .bwa-menu__header-cat{
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
}

.bwa-menu__top__wrapper .gray-bg {
    background : #f4f4f4;
}

.bwa-menu__top__wrapper .mobile_only {
    position    : relative;
    display     : flex;
    align-items : center;
    padding     : 0;
}

.bwa-menu__top__wrapper .mobile_only:before {
    pointer-events : none;
    position       : absolute;
    left           : 20px;
}

#tab_mon_compte.mobile_only:before {
    content : url(/modules/bwa_menu/views/assets/img/icon_login_top.png);
}

#tab_mon_panier.mobile_only:before {
    content : url(/modules/bwa_menu/views/assets/img/icon_panier_top.png);
}

#tab_acces_pro.mobile_only:before {
    content : url(/modules/bwa_menu/views/assets/img/icon_pros_top.png);
}



#tab_mon_compte.mobile_only > a,
#tab_mon_panier.mobile_only > a,
#tab_acces_pro.mobile_only > a {
    padding : 0 10px 0 60px;
}

.bwa-menu__top__wrapper .bwa-menu__sub-menu__title__wrapper,
.bwa-menu__top__wrapper .subMenu_title__wrapper {
    position        : relative;
    display         : flex;
    /*align-items     : center;*/
    justify-content : space-between;
}

.bwa-menu__top__wrapper .bwa-menu__link-title[data-depth="0"] {
    width           : 100%;
    display         : block;
    color           : #262626;
    text-transform  : uppercase;
    font-style      : normal;
    font-size       : calc(14px + (16 - 14) * ((100vw - 320px) / (1200 - 320)));
    text-decoration : none;
    font-weight     : 700;
    line-height     : 3em;
    padding         : 0 10px 0 20px;
}

.bwa-menu__top__wrapper .bwa-menu__main-item[data-depth="0"].rose .bwa-menu__link-title[data-depth="0"] {
    color : #ef1860;
    color : var(--primary-color);
}

.bwa-menu__top__wrapper .bwa-menu__main-item.promo .bwa-menu__title {
    color: var(--btn-primary-bg-color);
    font-weight: bold;
}

.bwa-menu__top__wrapper .bwa-menu__title[data-depth="0"] {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-family: var(--typo-primary), sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: var(--color-black-default);
    text-align: center;
    text-transform: uppercase;
}
.bwa-menu__top__wrapper[data-is-desktop="true"] .bwa-menu__title[data-depth="0"]{
    align-items: center;
}
.bwa-menu__top__wrapper .sub-menu__trigger {
    flex            : 0 0 40px;
    display         : flex;
    align-items     : center;
    justify-content : center;
    /*position        : absolute;*/
    /*height          : 100%;*/
    /*z-index         : 2;*/
    width           : 40px;
    top             : 0;
    right           : 0;
}

.bwa-menu__top__wrapper .sub-menu__trigger .plus-icon {
    color : black;
}

.bwa-menu__top__wrapper .bwa-menu__title__wrapper {
    position        : relative;
    display         : flex;
    /*align-items     : center;*/
    justify-content : space-between;
    width           : 100%;
    text-align      : left;
}

/*.bwa-menu__sub-menu__wrapper {*/
/*    height     : 0;*/
/*    overflow   : hidden;*/
/*    transition : all 0.3s;*/
/*}*/

.bwa-menu__top__wrapper[data-is-desktop='false'] .promo-gb .bwa-menu__title__wrapper .bwa-menu__title{
    color: var(--color-primary) !important;
}

.bwa-menu__top__wrapper[data-is-desktop='false'] .bwa-menu__sub-menu{
    height: calc(100vh - 80px);
    background: white;
    overflow: scroll;
}

.bwa-menu__top__wrapper[data-is-desktop='false'] .bwa-menu__sub-menu__wrapper{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100vh!important;
    max-height: 100vh;
    overflow: hidden;
    z-index: 1;
    background-color: #fff;
    width: 100%;
    /*max-width: 320px;*/
    transform: translate3d(100%, 0, 0);
    /*border-right: 1px solid #242425;*/
    transition: all .4s;
}

.bwa-menu__top__wrapper[data-is-desktop='false'] .bwa-menu__sub-menu__img{
    display: none;
}

.bwa-menu__top__wrapper[data-is-desktop='false'] .bwa-menu__main-item.is--active>.bwa-menu__sub-menu__wrapper,
.bwa-menu__top__wrapper[data-is-desktop='false'] .bwa-menu__sub-menu__item.is--active>.bwa-menu__sub-menu__wrapper
{
    transform: translate3d(0, 0, 0);
    height: 100vh;
}

.bwa-menu__top__wrapper[data-is-desktop='false'] .bwa-menu__sub-menu__title__wrapper{
    display: flex!important;
    flex-direction: row;
    background: white!important;
    justify-content: space-between;
    padding: 0 10px 0 20px!important;
    width: 100%;
}

.bwa-menu__top__wrapper[data-is-desktop='false'] .bwa-menu__sub-menu__link-title,
.bwa-menu__top__wrapper[data-is-desktop='false'] .bwa-menu__sub-menu__title {
    padding : 0 !important;
}

.bwa-menu__top__wrapper[data-is-desktop='false'] .bwa-menu__sub-menu__title,
.bwa-menu__top__wrapper[data-is-desktop='false'] .bwa-menu__title{
    line-height: 1.2;
    min-height: 50px;
    font-size: 16px!important;
    text-transform: uppercase;
    color: #242425!important;
    font-weight: 600;
    display: flex!important;
    flex-direction: column;
    justify-content: center;
}

.bwa-menu__top__wrapper[data-is-desktop='false'] .bwa-menu__title,
.bwa-menu__top__wrapper[data-is-desktop='false'] .bwa-menu__sub-menu__title[data-depth="1"]{
    min-height: 80px;
}

.bwa-menu__top__wrapper[data-is-desktop='false'] .bwa-menu__sub-menu__title[data-depth="2"]{
    text-transform: initial;
}

#tab_back{
    justify-content: flex-start;
}

.bwa-menu__top__wrapper[data-is-desktop='false'] .sub-menu__trigger svg:not(.mobile_only){
    display: none;
}

.bwa-menu__top__wrapper[data-is-desktop='false']{
    background: #111111;
}

.sub-menu__trigger svg{
    width: 10px;
}

.sub-menu__trigger svg .cls-1 {
    fill: none;
    stroke: black;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3px;
}

.bwa-menu__sub-menu {
    /*display : none;*/
    background : white;
}

.bwa-menu__top__wrapper .bwa-menu__sub-menu__item,
.bwa-menu__top__wrapper .subMenu__item {
    border-bottom : 1px solid #e5e5e5;
    border-bottom : 1px solid var(--primary-grey-color);
}

.bwa-menu__top__wrapper .bwa-menu__sub-menu__item[data-depth="2"]{
    border-bottom: none;
    border-bottom: none;
}

.bwa-menu__top__wrapper .bwa-menu__sub-menu__link-title[data-depth="1"] {
    width          : 100%;
    display        : flex;
    line-height    : 18px;
    font-weight    : 700;
    text-transform : uppercase;
    font-style     : normal;
    font-size      : 12px;
    padding        : 0 10px 0 30px;
}

.bwa-menu__top__wrapper[data-is-desktop="true"] .bwa-menu__sub-menu__title__wrapper[data-depth="1"]{
    margin-right: 20px
}

.bwa-menu__top__wrapper .bwa-menu__sub-menu__title[data-depth="1"] {
    display   : block;
    font-size : 14px;
    color     : white;
    padding   : 12px 5px 12px 0;
}

.bwa-menu__top__wrapper .bwa-menu__sub-menu__link-title[data-depth="2"] .bwa-menu__sub-menu__title__wrapper {
    background    : #e6e6e6;
    padding       : 12px 20px 12px 40px;
    font-weight   : 700;
}

/*
--------------------------------------
Style menu bottom
--------------------------------------
*/
.menu__bottom {
    display         : flex;
    flex-wrap       : wrap;
    justify-content : center;
    padding         : 0 15px 5.86vh 15px;
}

.menu__bottom .menu__bottom__list-item {
    flex-grow     : 1;
    list-style    : none;
    padding-right : 15px;
}

.menu__bottom__list-item h4 {
    font-size     : 18px;
    line-height   : 1.5;
    margin-bottom : 8px;
    margin-top    : 10px;
}

.menu__bottom__list-item .bottom-menu__cat-list {
    margin : 0;
}

.menu__bottom__list-item .bottom-menu__cat-list a {
    color     : #a0a3a3;
    font-size : 11px;
}

.menu__bottom__list-item .link_see_all {
    font-family : Roboto-LightItalic, serif;
    font-size   : 11px;
}



.links-list__with-img__wrapper {
    overflow-x: hidden;
    overflow-y: auto;
    transition: all 0.3s;
}

.bwa-menu__top__wrapper[data-is-desktop="false"] .bwa-menu__sub-menu[data-template="template-5"] .links-list__with-img__wrapper {
    overflow: initial;
    height: 100%;
}

.links-list__with-img__wrapper::-webkit-scrollbar,
.bwa-menu__sub-menu__wrapper::-webkit-scrollbar {
    width: 5px;
}

.links-list__with-img__wrapper::-webkit-scrollbar-track,
.bwa-menu__sub-menu__wrapper::-webkit-scrollbar-track{
    background-color: transparent;
}

.links-list__with-img__wrapper::-webkit-scrollbar-thumb,
.bwa-menu__sub-menu__wrapper::-webkit-scrollbar-thumb {
    background-color: var(--color-secondary);
}

.links-list__with-img__wrapper::-webkit-scrollbar-corner,
.bwa-menu__sub-menu__wrapper::-webkit-scrollbar-corner {
    height: 0;
}

.links-list__with-img__wrapper-menu,
.bwa-menu__sub-menu__wrapper
{
    scrollbar-color: var(--color-secondary) transparent;
    scrollbar-width: thin;
}

#bwa-menu__burger {
    margin: 0;
    cursor: pointer;
    flex: 0 0 auto;
}

#bwa-menu__burger .icon_for_menu {
    height: 25px;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    /*align-items: ;*/
}

#bwa-menu__burger .icon_for_menu .line {
    width: 35px;
    height: 1px;
    background-color: var(--color-white-default);
}

#bwa-menu__burger .icon_for_menu .line:first-child {
    /*background-color: var(--color-primary);*/
}

.bwa-menu__top__wrapper[data-is-desktop='false'] .bwa-menu__sub-menu .bwa-menu__sub-menu__main-title{
    padding: 15px 20px 15px;
    background: #F7F7F7;
    font-size: 18px;
    display: flex;
    font-weight: 400;
    border-bottom: 1px solid #E6E6E6;
    color: #242425;
    -webkit-text-stroke: 0.3px #242425;
}

@-moz-keyframes three-quarters-loader {
    0% {
        -moz-transform : rotate(0deg);
        transform      : rotate(0deg);
    }
    100% {
        -moz-transform : rotate(360deg);
        transform      : rotate(360deg);
    }
}

@-webkit-keyframes three-quarters-loader {
    0% {
        -webkit-transform : rotate(0deg);
        transform         : rotate(0deg);
    }
    100% {
        -webkit-transform : rotate(360deg);
        transform         : rotate(360deg);
    }
}

@keyframes three-quarters-loader {
    0% {
        -moz-transform    : rotate(0deg);
        -ms-transform     : rotate(0deg);
        -webkit-transform : rotate(0deg);
        transform         : rotate(0deg);
    }
    100% {
        -moz-transform    : rotate(360deg);
        -ms-transform     : rotate(360deg);
        -webkit-transform : rotate(360deg);
        transform         : rotate(360deg);
    }
}

/* :not(:required) hides this rule from IE9 and below */
.three-quarters-loader.--is-show:not(:required) {
    -moz-animation     : three-quarters-loader 1250ms infinite linear;
    -webkit-animation  : three-quarters-loader 1250ms infinite linear;
    animation          : three-quarters-loader 1250ms infinite linear;
    border             : 3px solid white;
    border-right-color : transparent;
    border-radius      : 100%;
    box-sizing         : border-box;
    display            : inline-block;
    position           : absolute;
    overflow           : hidden;
    text-indent        : -9999px;
    width              : 50px;
    height             : 50px;
    left               : 50%;
    transform: translate(-50%, -50%);
    top                : 50%;
}

.bwa-menu__top__wrapper[data-is-desktop='false'] .three-quarters-loader.--is-show:not(:required){
    border             : 3px solid var(--color-primary);
    border-right-color: transparent;
    width              : 32px;
    height             : 32px;
}

.bwa-menu__top__wrapper .bwa-menu__sub-menu a{
    text-decoration: none;
}

body.scroll-disabled{
    overflow: hidden;
}

body:not(.premium) .bwa-menu__club-premium{
    display: none;
}

.bwa-menu__top__wrapper[data-is-desktop='false'] .bwa-menu__sub-menu[data-template="template-4"] .bwa-menu__sub-menu__part--main-list{
    padding-bottom: 150px;
}

.bwa-menu__sub-menu__part__title,.bwa-menu__sub-menu__links__title{
    display: none;
}

@media (min-width: 1200px){
    .bwa-menu__sub-menu__part__title{
        width: 100%;
        display: flex;
        line-height: 1;
        font-weight: 600;
        color: white;
        text-transform: uppercase;
        font-style: normal;
        font-size: 15px;
        padding: 0 10px 0 30px;
        margin-bottom: 10px;
        margin-top: -10px;
    }

    .bwa-menu__sub-menu__links__title{
        width: 100%;
        display: flex;
        line-height: 1;
        font-weight: 600;
        color: var(--color-primary);
        text-transform: uppercase;
        font-style: normal;
        font-size: 15px;
        padding: 0 10px 0 25px;
        margin-bottom: 10px;
        margin-top: -10px;
    }
}
