/* ---------------------------------------------------------
   DEVICE VISIBILITY
   Matches attributes: wtHideD, wtHideT, wtHideM
   --------------------------------------------------------- */

/* Desktop (1025px and up) */
@media (min-width: 1025px) {
    html body .wt-hide-desktop {
        display: none !important;
    }
}

/* Tablet (768px to 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    html body .wt-hide-tablet {
        display: none !important;
    }
}

/* Mobile (767px and below) */
@media (max-width: 767px) {
    html body .wt-hide-mobile {
        display: none !important;
    }
}