/**
 * theme-popup-scroll.css
 * 1) Header sempre acima do popup nativo do Elementor
 * 2) Scroll contido dentro do popup
 */

/* ==========================================
   HEADER ACIMA DO POPUP ELEMENTOR
   ========================================== */
.mobili-header.elementor-sticky--active,
.mobili-header {
    z-index: 1000001 !important;
}

.mobili-header.elementor-sticky__spacer {
    z-index: auto !important;
}

.elementor-popup-modal,
.dialog-lightbox-widget {
    z-index: 1000000 !important;
}

/* ==========================================
   SCROLL CONTIDO NO POPUP
   ========================================== */
.elementor-popup-modal .dialog-lightbox-widget-content {
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    max-height: 100dvh;
}

@supports not (max-height: 100dvh) {
    .elementor-popup-modal .dialog-lightbox-widget-content {
        max-height: 100vh;
    }
}