/**
 * ======================================================
 * Header Menu
 * ======================================================
 */
/* HEADER */
.header-mobile {
    padding: 10px 0;
}

.header-mobile .header-left,
.header-mobile .header-right {
    flex: 1;
}

.header-mobile .header-center {
    flex: 1;
}

/* OFFCANVAS */
.mobile-menu-wrapper {
    width: 320px;
}

/* Header inside offcanvas */
.offcanvas-header {
    border-bottom: 1px solid #eee;
}

/* Back button */
.btn-back {
    border: none;
    background: none;
    font-size: 16px;
}

/* MENU LEVEL SYSTEM */
.offcanvas-body {
    height: 100%;
    overflow: hidden;
}

.menu-level {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background: #fff;
    overflow-y: auto;
    transition: all 0.3s ease;
}

.menu-level.active {
    left: 0;
}

/* FIX FIRST LEVEL */
.level-1 {
    left: 0;
    position: relative;
}

/* LINKS */
.mobile-link {
    display: flex;
    justify-content: space-between;
    padding: 14px 15px;
    border-bottom: 1px solid #eee;
    color: #333;
    text-decoration: none;
}

/* Arrow */
.mobile-link.has-submenu::after {
    content: "›";
}

.mobile-menu {
    list-style: none;
}

.mobile-menu .page_item {
    padding: 8px 15px;
}

.mobile-menu .page_item a {
    text-decoration: none;
    color: var(--bs-black);
    font-size: 16px;
    font-weight: 500;
}