/* ===== Mobile Offcanvas Navigation ===== */

/* Floating hamburger (FAB) */
.mobile-fab {
    position: fixed;
    top: 12px;
    right: 12px;
    z-index: 1050;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 12px;
    background: var(--primary-color);
    color: var(--white-color);
    transition: opacity .2s ease, transform .2s ease;
}

.mobile-fab.fab-hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(.9);
}

@media (min-width: 769px) {
    .mobile-fab {
        display: none;
    }
}

/* Offcanvas panel */
.offcanvas {
    background-color: var(--background-light) !important;
    z-index: 1100;
}

.offcanvas-backdrop {
    z-index: 1095;
}

.offcanvas-start,
.offcanvas-end {
    width: 280px;
}

@media (max-width:360px) {

    .offcanvas-start,
    .offcanvas-end {
        width: 85vw;
    }
}

.offcanvas-header {
    padding-bottom: 5px;
    border-bottom: 1px solid #dee2e6;
}

.offcanvas-body {
    padding-top: 0;
}

.offcanvas .nav-link {
    color: var(--text-dark);
}

.offcanvas .nav-link:hover {
    color: var(--primary-color);
}

/* 모바일 접이식 메가메뉴 */
.mobile-collapser {
    background: none;
    border: 0;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.mobile-collapser .chev {
    transition: transform .2s ease;
}

.mobile-collapser[aria-expanded="true"] .chev {
    transform: rotate(180deg);
}

.mobile-submenu {
    padding-left: .25rem;
}

.mobile-submenu .nav-link {
    padding-left: 1.5rem;
    /* 들여쓰기 */
    font-size: .95rem;
}


/* Mobile welcome box spacing */
#mobile-welcome {
    padding-top: 4px;
    padding-bottom: 8px;
    margin-bottom: 0 !important;
}
