@media screen and (min-width: 799px) {
    .small-mobile-only {
        display: none !important;
    }
}

@media screen and (min-width: 1200px) {
    .mobile-only {
        display: none !important;
    }
}

@media screen and (max-width: 1199px) {
    .tablet-and-bigger {
        display: none !important;
    }
}
@media screen and (max-width: 799px) {
    .desktop-only {
        display: none !important;
    }
}