/* Masquer sur le bureau */
@media only screen and (min-width: 1024px) {
    .hide-on-desktop {
        display: none!important;
    }
}

/* Masquer sur la tablette */
@media only screen and (min-width: 576px) and (max-width: 1023px) {
    .hide-on-tablet {
        display: none!important;
    }
}

/* Masquer sur le mobile */
@media only screen and (max-width: 575px) {
    .hide-on-mobile {
        display: none!important;
    }
}

/* Combinaisons pour les affichages conditionnels */
/* Masquer sur le bureau et la tablette */
@media only screen and (min-width: 1024px), only screen and (min-width: 576px) and (max-width: 1023px) {
    .hide-on-desktop.hide-on-tablet {
        display: none;
    }
}

/* Masquer sur le bureau et le mobile */
@media only screen and (min-width: 1024px), only screen and (max-width: 575px) {
    .hide-on-desktop.hide-on-mobile {
        display: none;
    }
}

/* Masquer sur la tablette et le mobile */
@media only screen and (min-width: 576px) and (max-width: 1023px), only screen and (max-width: 575px) {
    .hide-on-tablet.hide-on-mobile {
        display: none;
    }
}

/* Masquer sur le bureau, la tablette et le mobile */
.hide-on-desktop.hide-on-tablet.hide-on-mobile {
    display: none;
}
