/* Mobile horizontal scroll fix - v5 */
html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
}
@media (max-width: 767px) {
    html, body {
        overflow-x: hidden !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    .overflow-hidden {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    .container, .container > .row,
    .container-fluid, main, #content, .row {
        max-width: 100% !important;
        overflow-x: hidden !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    * {
        max-width: unset !important;
    }
}
