/*모바일 메뉴*/
.list-group div > .list-group-item:hover{background-color:#fff!important; color:#333!important;}
.fa-chevron-down{margin-top:7px;}
.mmenu-selected{background:#0070c0!important; color:#fff!important;}
    /*position: absolute; right:20px; top:50%; transform:translateY(-50%)*/
.menu-onlym .list-group.panel > .list-group-item {
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175)!important;
    background: linear-gradient(45deg,#f2edff,#e2fcff);
    color:#333;
    padding:17px!important;
}

.menu-onlym .list-group-submenu {
    margin-left: 20px;
}

.mmenu-area > .cd-panel-header {
    background: #f2f2f2;
    border-left: 0px solid #ddd;
}

.mmenu-area .cd-panel-container {
    background:transparent;
    border-left: 0px solid #ddd;
}

.mmenu-area .cd-panel-container > .cd-panel-content {
    padding: 0px 0px;
}

.cd-panel-content .panel {
    border-radius: 0px;
    border: 0px solid #fff;
}

.list-group-item:first-child {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}

.list-group-item:last-child {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}

.vs-footer-thumb img {
    width: 51px;
}

.m-title{font-size:18px; font-weight:700; border-top:1px dotted #999;}
.m-title:first-child{border-top:1px solid #0070c0;}
.m-cut-line{border-top:1px solid #999;}
.list-group-item {
    padding:25px 20px !important;
    border-bottom:1px dotted #ddd!important;
}

.list-group div > .list-group-item {
    padding:15px 20px!important;
    font-size:16px; font-weight:400;
    background: #fff!important;
    color: #333!important;
}

.list-group div > .list-group-item:last-child{
    border-bottom:0!important;
    background:#eee!important;
}

.cd-main-content {
    text-align: center;
}

.cd-main-content .cd-btn {
    position: absolute;
    right: 0;
}


.cd-panel {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    visibility: hidden;
    -webkit-transition: visibility 0s 0.6s;
    -moz-transition: visibility 0s 0.6s;
    transition: visibility 0s 0.6s;
    z-index: 15000;
}

.cd-panel::after {
    /* overlay layer */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    cursor: pointer;
    -webkit-transition: background 0.3s 0.3s;
    -moz-transition: background 0.3s 0.3s;
    transition: background 0.3s 0.3s;
}

.cd-panel.is-visible {
    visibility: visible;
    -webkit-transition: visibility 0s 0s;
    -moz-transition: visibility 0s 0s;
    transition: visibility 0s 0s;
}

.cd-panel.is-visible::after {
    background: rgba(0, 0, 0, 0.6);
    -webkit-transition: background 0.3s 0s;
    -moz-transition: background 0.3s 0s;
    transition: background 0.3s 0s;
}

.cd-panel.is-visible .cd-panel-close::before {
    -webkit-animation: cd-close-1 0.6s 0.3s;
    -moz-animation: cd-close-1 0.6s 0.3s;
    animation: cd-close-1 0.6s 0.3s;
}

.cd-panel.is-visible .cd-panel-close::after {
    -webkit-animation: cd-close-2 0.6s 0.3s;
    -moz-animation: cd-close-2 0.6s 0.3s;
    animation: cd-close-2 0.6s 0.3s;
}

@-webkit-keyframes cd-close-1 {

    0%,
    50% {
        -webkit-transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(45deg);
    }
}

@-moz-keyframes cd-close-1 {

    0%,
    50% {
        -moz-transform: rotate(0);
    }

    100% {
        -moz-transform: rotate(45deg);
    }
}

@keyframes cd-close-1 {

    0%,
    50% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }
}

@-webkit-keyframes cd-close-2 {

    0%,
    50% {
        -webkit-transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(-45deg);
    }
}

@-moz-keyframes cd-close-2 {

    0%,
    50% {
        -moz-transform: rotate(0);
    }

    100% {
        -moz-transform: rotate(-45deg);
    }
}

@keyframes cd-close-2 {

    0%,
    50% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
}

.cd-panel-header {
    position: fixed;
    width: 100%;
    height: 221px;
    line-height: 50px;
    background: rgba(255, 255, 255, 0.96);
    z-index: 2;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
    -webkit-transition: top 0.3s 0s;
    -moz-transition: top 0.3s 0s;
    transition: top 0.3s 0s;
    border-left: 1px solid #cecece;
}

.cd-panel-header h1 {
    font-weight: bold;
    color: #89ba2c;
    padding-left: 0;
}

.from-right .cd-panel-header,
.from-left .cd-panel-header {
    right: 0px;
}

.from-right .cd-panel-header {
    right: 0;
    border-left: 1px solid #cecece;
}

.from-left .cd-panel-header {
    left: 0;
    border-left: 1px solid #cecece;
}

.is-visible .cd-panel-header {
    right: 0;
    -webkit-transition: right 0.3s 0.3s;
    -moz-transition: right 0.3s 0.3s;
    transition: right 0.3s 0.3s;
    border-left: 1px solid #cecece;
}

@media only screen and (max-width: 992px) {}

@media only screen and (min-width: 1170px) {
    .cd-panel-header {
        width: 100%;
    }
}


.cd-panel-close {
    position: absolute;
    top: 18px;
    right: 26px;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    color: #ddd;
    background: rgba(255, 255, 255, 0.96);
    transition: color .2s;
}

.cd-panel-close::before,
.cd-panel-close::after {
    /* close icon created in CSS */
    position: absolute;
    top: 22px;
    left: 20px;
    height: 3px;
    width: 20px;
    background-color: #fff;
    /* this fixes a bug where pseudo elements are slighty off position */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.cd-panel-close::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.cd-panel-close::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.no-touch .cd-panel-close:hover {
    color: #424f5c;
    transition: color .2s;
}

.no-touch .cd-panel-close:hover::before,
.no-touch .cd-panel-close:hover::after {
    background-color: #ffffff;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.no-touch .cd-panel-close:hover::before {
    -webkit-transform: rotate(220deg);
    -moz-transform: rotate(220deg);
    -ms-transform: rotate(220deg);
    -o-transform: rotate(220deg);
    transform: rotate(220deg);
}

.no-touch .cd-panel-close:hover::after {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

.cd-panel-container {
    position: fixed;
    width: 100%;
    height: 100%;
    text-align: left;
    top: 0;
    background: #dbe2e9;
    z-index: 1;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-delay: 0.3s;
    -moz-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.from-right .cd-panel-container {
    right: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    -moz-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    -o-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    border-left: 0;
}

.from-left .cd-panel-container {
    left: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    -moz-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    -o-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    border-left: 1px solid #192A39;
}

.is-visible .cd-panel-container {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    transition-delay: 0s;
    border-left: 0;
}

.cd-panel-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 70px 5%;
    overflow: auto;
}

.cd-panel-content ::-webkit-scrollbar {
    display: none;
}

.cd-panel-content p {
    font-size: 14px;
    font-size: 0.875rem;
    color: #424f5c;
    line-height: 1.4;
    margin: 2em 0;
}

.cd-panel-content p:first-of-type {
    margin-top: 0;
}

@media only screen and (min-width: 768px) {
    .cd-panel-content p {
        font-size: 16px;
        font-size: 1rem;
        line-height: 1.6;
    }
}

.cd-panel-header > img {
    height: 100%;
    margin-left: 4px;
}
.mmenu_sub{margin-top:15px;}
.mmenu_sub>a{padding:10px 9px; border-radius:10px; background:#eee; margin-top:5px; display:block;}
.mmenu_sub .fa{font-size:18px; margin-top:10px;}
.mmenu_sub_btn{display:block;}
