/* Responsive visibility utilities
Breakpoints follow Bootstrap md/lg*/

/* Mobile: below tablet */
@media(max-width:767.98px) {
    .teledatait-hide-mobile {
        display: none !important;
    }
}

/* Tablet: md up to lg */
@media(min-width:768px) and (max-width: 991.98px) {
    .teledatait-hide-tablet {
        display: none !important;
    }
}

/* Desktop: lg and up */
@media(min-width:992px) {
    .teledatait-hide-desktop {
        display: none !important;
    }
}