/*GENERAL*/



/*WIDGET SELECTION CAT*/
.selectionCateroryWrapper {
    display: flex;
}

.multi-select-menu {
    z-index: 1;
}
/*SECTION*/
/*890 et plus : tablette paysage et PC*/
/*- Entre 700 et 889  : tablette portrait*/
/*- Entre 396 et 699 : smartphone XL*/
/*- Moins de 396 : smartphone*/
@media screen and (min-width: 890px) {

    .multi-select-container-header, .multi-select-container-footer {
        display: none;
    }

}

@media screen and (min-width: 700px) and (max-width: 889px) {

    .multi-select-container-header, .multi-select-container-footer {
        display: none;
    }
}

@media screen and (min-width: 396px) and (max-width: 699px) {


}

@media screen  and (max-width: 396px) {


}



