/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 25 2026 | 16:39:50 */
/* ==================================================
   MB MENU SYSTEM V2
   ================================================== */

/* ----------------------------------
   OFF CANVAS FIX
---------------------------------- */

.e-off-canvas,
.e-off-canvas__container,
.e-off-canvas__content{
    height:100dvh !important;
    min-height:100dvh !important;
}

@supports not (height:100dvh){
    .e-off-canvas,
    .e-off-canvas__container,
    .e-off-canvas__content{
        height:100vh !important;
        min-height:100vh !important;
    }
}

/* ----------------------------------
   MENU WRAPPER
---------------------------------- */

.mb-menu{
    position:relative;
    height:100%;
    overflow:hidden;
}

/* ----------------------------------
   PANELS
---------------------------------- */

.mb-m-panel{
    position:absolute;
    inset:0;

    opacity:0;
    visibility:hidden;
    pointer-events:none;

    transform:translateX(24px);

    transition:
        opacity .35s ease,
        transform .35s ease;
}

.mb-m-panel.is-active{
    opacity:1;
    visibility:visible;
    pointer-events:auto;

    transform:translateX(0);
}

/* ----------------------------------
   MENU ITEMS
---------------------------------- */

.mb-m-item{
    opacity:0;
    transform:translateY(12px);
}

.mb-m-item.is-in{
    opacity:1;
    transform:translateY(0);

    transition:
        opacity .35s ease,
        transform .35s ease;
}

