/* --- ------------------------------------------------------ --- */
body, html {
    overflow-x: clip !important;
}
body, html {
    overflow: unset;
}

/* --- ------------------------------------------------------ --- */
/* Mobile */
@media (max-width: 480px) {
    body, html {
        overflow-x: clip !important;
    }
    body, html {
        overflow: unset;
    }
}

/* Tablet Portrait */
@media only screen
and (min-device-width : 834px)
and (max-device-width : 1112px)
and (orientation : portrait)
and (-webkit-min-device-pixel-ratio: 2) {
    body, html {
        overflow-x: clip !important;
    }
    body, html {
        overflow: unset;
    }
}

/* Tablet Landscape */
@media only screen
and (min-device-width : 834px)
and (max-device-width : 1112px)
and (orientation : landscape)
and (-webkit-min-device-pixel-ratio: 2) {
    body, html {
        overflow-x: clip !important;
    }
    body, html {
        overflow: unset;
    }
}