.show-tablet,
.show-mobile {
    display: none;
}

/* Current displays */
@media only screen and (max-width: 1141px) {
    .wrapheader {
        width: var(--page-wrapper);
    }
}

/* Desktops */
@media only screen and (max-width: 1024px) {
    .hide-desktop {
        display: none;
    }
}

/* Tablet */
@media only screen and (max-width: 767px) {
    .hide-tablet {
        display: none;
    }

    .show-tablet {
        display: inherit;
    }
}

/* Mobile */
@media only screen and (max-width: 479px) {
    .hide-mobile-l,
    .hide-tablet {
        display: none;
    }

    .show-mobile {
        display: inherit;
    }
}

/* Mobile M */
@media only screen and (max-width: 375px) {
    .hide-mobile,
    .hide-tablet {
        display: none;
    }

    .show-mobile {
        display: inherit;
    }
}