/* Viewport-based hiding also works when a cached page is resized. */
@media not all and (min-width: 768px) {
    html body li.wb-nav-hide-mobile {
        display: none !important;
    }
}

@media (min-width: 768px) {
    @media not all and (min-width: 1025px) {
        html body li.wb-nav-hide-tablet {
            display: none !important;
        }
    }
}

@media (min-width: 1025px) {
    html body li.wb-nav-hide-desktop {
        display: none !important;
    }
}
