@media(min-width:992px) {
    .mobile-menu-btn {
        /* display: none; */
    }
}

    .mobile-menu-btn {
        width: 34px;
        position: absolute;
        top: -12px;
        right: 15px;
        z-index: 99;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
    }

.mobile-menu-btn span {
    display: block;
    height: 2px;
    background: #000;
    /* border-radius: 2px; */
    transition: all 0.3s ease;
    margin-bottom: 5px;
}

/* 컨텐츠 */
#mobileSidebar .moblie_wrap {
     position: relative;
}
#mobileSidebar .title_wrap {
    text-align: left;
    padding-top: 20px;
    padding-left: 20px;
   
}

#mobileSidebar .m_container ul.sidebar-menu {
     position: relative;
     text-align: left;
}
#mobileSidebar .title_wrap h3 img {
    width: 160px;
}
#mobileSidebar .m_container ul.sidebar-menu li a span{
    font-size:17px;
    display:block;
    padding-bottom: 5px;
    padding-top: 5px;
    font-weight:500;
}









#mobileSidebar p.close-btn {
    z-index: 100001;
    float: right;
    color: #000;
    font-size: 18px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 18px;
}

#mobileSidebar p.close-btn > i {
    transition: 0.3s all ease;
}
#mobileSidebar p.close-btn > i:hover {
    transform: rotate(-90deg);
}
#mobileSidebar .m_container {
    list-style: none;
    margin: 0;
    padding: 0;
    /*    background: url("../../../img/mobile/mobile_top_bg.png");*/
    background-position: top center;
    background-repeat: no-repeat;
    padding-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
}


#mobileSidebar .m_container .member-wrap {
    border-top: 1px #ddd solid;
    padding-top: 30px;
    margin-top: 30px;

}

#mobileSidebar .m_container .etc_wrap {
    padding-top: 30px;
    font-size: 11px;
   
    text-align: left;
}
#mobileSidebar .m_container .etc_wrap ul {
    display: flex;
    /* justify-content: center; */
    margin-bottom: 15px;
    

}
#mobileSidebar .m_container .etc_wrap ul li a {
    font-size: 12px;
    font-weight: 500;
    display: block;
    padding: 4px 6px;
}

#mobileSidebar .m_container .etc_wrap .copy {
    color: #2e2e2e;
    font-family: 'Open Sans', sans-serif;
    font-size: 11px;
    letter-spacing: -0.5px;
    text-align: left;
    padding-top: 12px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
}

/* 컨텐츠 마감 */

/* 슬라이드 메뉴 스타일 */
.mobile-sidebar {
    position: fixed;
    top: 0;
    /* right: 0%; */
    right: -80%;
    width: 80%;
    height: 100%;
    background: #fff;
    z-index: 10000;
    transition: right 0.3s ease;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    display:block;
}
.mobile-sidebar.open {
    right: 0;
}

/* 배경 오버레이 */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(0,0,0,0.4);
}
.mobile-overlay.show {
    display: block;
}
