@charset "uft-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans KR', sans-serif;
    list-style: none;
}

a {
    text-decoration: none;
}

#sub1 {
    background-color: #ffffff;

}

section.menu_form {
    width: 187px;
    height: 100vh;
    border-right: 1px solid #d9dde2;
    position: fixed;
}

.menu {
    display: flex;
    width: 100%;
    height: 100%;
}

nav {
    background-color: #eeeeee;
    width: 60px;
    height: 100%;
}

.nav_list {
    width: 100%;
    height: 60px;
    background-color: #eeeeee;
    text-align: center;
    line-height: 65px;
    cursor: pointer;
}

.nav_list a {
    display: block;
    width: 100%;
    height: 100%;
}

.nav_list:not(.bg_blue) .white {
    display: none;
}

.bg_blue {
    background-color: #2F80ED;
}

.bg_blue .white {
    display: inline-block;
}

.bg_blue .grey {
    display: none;
}

.sub_menu {
    width: calc(100% - 60px);
    height: 100%;
    padding: 20px 25px;
    position: relative;
    background-color: white;
}

.sub_menu_box {
    display: none;
    position: absolute;
    top: 20px;
}

.sub_title {
    font-size: 18px;
    font-weight: bold;
    color: #2F80ED;
    margin-bottom: 30px;
}

.sub_mlist {
    margin-bottom: 15px;
}

.sub_a {
    font-size: 14px;
    color: #909090;
}

.sub_b {
    display: none;
    margin-left: -15px;
    font-size: 12px;
    color: #909090;
}

.sub_mlist.view .sub_b {
    display: block;
}

.sub_mlist.view a.sub_b:nth-child(2) {
    margin-top: 10px;
}

.sub_mlist.view a.sub_b:nth-child(n+3) {
    margin-top: 0px;
}

.sub_mlist.view .sub_b.choice {
    opacity: 1;
    color: #000000;
    font-weight: bold;
}

.active {
    display: block;
    z-index: 9999;
}

.first {
    opacity: 1;
    color: #000000;
    font-weight: bold;
}

section.container {
    width: calc(100% - 187px);
    height: 100vh;
    margin-left: 187px;
    overflow: hidden;
}

.header {
    background-color: #ffffff;
    width: calc(100% - 187px);
    height: 70px;
    position: fixed;
    border-bottom: 1px solid #d9dde2;
    z-index: 999;
}

.content_title {
    float: left;
    line-height: 70px;
    margin-left: 20px;
}

.main_text {
    color: #909090;
    font-size: 15px;
}

.sub_text {
    float: right;
    font-size: 20px;
    font-weight: bold;
    margin-left: 5px;
}

.admin_form {
    position: absolute;
    width: 150px;
    height: 70px;
    top: 0;
    right: 120px;
}

.admin_box {
    width: 40px;
    height: 40px;
    background-color: #acacac;
    border-radius: 30px;
    text-align: center;
    line-height: 40px;
    color: #ffffff;
    position: absolute;
    top: 50%;
    margin-top: -20px;
}

.admin {
    position: absolute;
    left: 50px;
    top: 25px;
    font-size: 15px;
    font-weight: bold;
    color: #595959;
}

.logout {
    width: 120px;
    height: 70px;
    float: right;
    text-align: center;
    line-height: 70px;
    border-left: 1px solid #d9dde2;
}

.logout > a {
    display: block;
    width: 100%;
    height: 100%;
    color: #909090;
}

.loading-popup {
    display: none;
}

.active1 {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0%;
    z-index: 9999;
}

.loading-popup-main {
    content:'';
    position: absolute;
    width:100%;
    height:100%;
    background-color: rgba(0, 0, 0, 0.5);
    top:0%;
}

.loading-popup-main img {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}

.common-content {
    display: none;
}

.sub_mlist2 {
    margin-left: -25px;
}

.sub_mlist2 li {
    text-align: right;
}

.sub_mlist2 li a {
    font-size: 11px;
}

main {
    position: relative;
    padding: 90px 20px 0;
    height: 100%;
    overflow: auto;
}