/* Mobile catalog submenu: nested panels must fill viewport and scroll */

@media (max-width: 1199px) {
    /* transform on parent ul breaks position:fixed height (ProStore slide animation) */
    .header__nav-offcanvas .header__catalog-dropdown .header__catalog-menu {
        transform: none !important;
    }

    .header__catalog-menu > li > .header__catalog-dropdown {
        top: 0 !important;
        bottom: 0 !important;
        height: 100vh !important;
        height: 100dvh !important;
        max-height: none !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
    }

    .header__catalog-menu > li.is-open > .header__catalog-dropdown {
        z-index: 1001;
    }

    .header__catalog-menu > li.is-open > .header__catalog-dropdown .header__catalog-menu > li.is-open > .header__catalog-dropdown {
        z-index: 1002;
    }
}
