/* 모든 스타일은 css 충돌방지를 위해 .head을 기준으로 작성 하시면 됩니다. 예) .head .box {} */
.head{}

/* ==========================================================================
   GNB Z-Index and Mobile Overlay / Click Issues Fix
   ========================================================================== */

/* 1. PC: Prevent header GNB dropdown from disappearing by layering it above subtop/body content */
#header {
    z-index: 10001 !important;
}

/* 2. Mobile: Prevent subtop from overlapping the mobile menu button and expand touch target area */
/* z-index is set to 2000 (above page content like subtop but below mobileMenu which has z-index 3000) */
@media (max-width: 940px) {
    .mobile_top_btn {
        position: fixed !important;
        z-index: 2000 !important; 
        top: 0 !important;
        right: 0 !important;
        width: 60px !important;
        height: 66px !important;
    }
    .mobile_top_btna {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        height: 100% !important;
        position: absolute !important;
        top: 0 !important;
        right: 0 !important;
        margin-top: 0 !important;
        z-index: 2001 !important;
    }
    /* Reset absolute positioning offset of lines inside flex parent */
    .mobile_top_btna > .lines {
        position: relative !important;
        top: 0 !important;
        margin: 0 !important;
    }
}
