/* ===================================================================
   FIX BARRE SAFARI iOS - CARRÉ BLANC EN BAS UNIQUEMENT
   =================================================================== */

/* Carré blanc en bas UNIQUEMENT sur iOS Safari mobile */
@media (max-width: 768px) {
    @supports (-webkit-touch-callout: none) {
        #ios-white-overlay {
            position: fixed !important;
            bottom: 0 !important;
            left: 0 !important;
            right: 0 !important;
            height: 5px !important;
            background: #ffffff !important;
            z-index: 999999 !important;
            pointer-events: none !important;
            display: block !important;
        }
    }
}