/*Basic Classes*/

.mobile-only {
    display: block;
}

.desktop-only, .tablet-only, .no-mobile {
    display: none;
}

.mt-slide-img.desktop-only, .mt-slide-img.tablet-only {
    display: none;
}

@media screen and (min-width: 737px) {
    .mobile-only {
        display: none !important;
    }

    .no-mobile, .tablet-only {
        display: block !important;
    }

    .desktop-only {
        display: none !important;
    }
}

@media screen and (min-width: 813px){
    /*basic classes*/
    .mobile-only, .tablet-only, .no-desktop {
        display: none;
    }

    .desktop-only, .mt-slide-img.desktop-only {
        display: block;
    }

    .mt-slide-img.desktop-only, .mt-slide-img.tablet-only {
        display: none !important;
    }
}


