@charset "UTF-8";


/* 로그인화면 */
#login_wrap{ width: 100%; height: 100vh; text-align: center;}
#login_inner{ width: 100%; height: 100%; position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;

}

#login_box {
	width:420px;
	margin:0 auto;
	padding:46px 52px 30px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	-webkit-box-shadow: 0 15px 2px rgba(10, 125, 174, 0.06);
	-moz-box-shadow: 0 15px 2px rgba(10, 125, 174, 0.06);
	box-shadow: 0 1px 15px rgba(10, 125, 174, 0.06);
	background: #fff;
}

.customerTitle{ font-size: 30px; font-weight: 700; color: #888; margin-bottom: 29px;}

#login_box h2 {margin:0 0 25px 0; font-size:1.8em;}
#login_box .txt {
	width:100%;
	margin:0 0 30px 0;
	border-bottom:1px solid #ddd;
}

#login_box .txt:focus {
  outline: 0;
  outline: thin dotted \9;
  /* IE6-9 */
}

#login_box .email {background: url("../images/common/ico_mail01.gif") no-repeat 330px;}
#login_box .password {background: url("../images/common/lock.png") no-repeat right 2px center / 11px;}

#login_box div * {vertical-align:middle;}
#login_box label {display:inline; font-weight:normal; letter-spacing:-1px;}
#login_box .login_bottom {width:100%; overflow:hidden; margin-top: 11px;}
#login_box .login_bottom .id_chk {float:left;}
#login_box .login_bottom .btn .button{ width: 100%; border-radius: 10px; height: 39px; line-height: 39px; font-weight: 700;}


#login_box .subLink{ display: block; margin-top: 14px; color: #40c8ed; text-decoration: underline; font-weight: 600;}

#login_wrap .creatRight{ position: absolute; left: 0; bottom: 30px; right: 0; font-size: 13px; color: #d9d9d9;}

/* 에러화면 */
#error_wrap {min-height:100%; margin:-37px 0 -38px;}
#error_inner {padding:20% 0 0 0;}

#error_box {
	width:600px;
	margin:0 auto;
	text-align:center;
	font-size:1.2em;
}
#error_box strong {display:block;margin:0 0 25px 0; font-size:1.5em; color:#4d7495;}
#error_box span {color:#4d7495;}


/* GMS 메인헤더 */
#gms_main_header { display: flex; align-items: center; justify-content: space-between; position:relative; width:100%; height:91px; z-index:100; padding: 30px 20px 0; color: #787878; border-bottom: 20px solid #f5f6f8; font-size: 15px;}
#gms_main_header .logo { display:block; font-size: 25px; font-weight: 600; }
#gms_main_header .button{height: 38px; line-height: 38px; font-size: 16px; border-radius: 5px; width: auto; padding: 0 20px; display: flex; justify-content: center; align-items: center; }
#gms_main_header ul li {float:left; margin:5px 10px 0 0;}
#gms_main_header ul li a {font-weight:bold;}
#gms_main_header .header_notice {float:right; width:353px; height:24px; padding:13px 64px 0 31px; background:url("../images/common/ico_notice01.gif") no-repeat 0 12px;}
#gms_main_header .header_notice li a {color:#fff;}
#gms_main_header .userWrap { display: flex; align-items: center; color: #787878;}
#gms_main_header .userWrap .button{margin-left: 15px; font-size: 15px;}

/* 사용자 정보 버튼 - 미니멀 언더라인 스타일 */
#gms_main_header .userWrap .editBtn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    margin-right: 5px;
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
    font-weight: 500;
    cursor: pointer;
}

#gms_main_header .userWrap .editBtn:hover {
    color: #00BFE8;
}

#gms_main_header .userWrap .editBtn i {
    font-size: 20px;
    color: #666;
    transition: color 0.2s ease;
}

#gms_main_header .userWrap .editBtn:hover i {
    color: #00BFE8;
}

#gms_main_header .userWrap .editBtn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #00BFE8;
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

#gms_main_header .userWrap .editBtn:hover::after {
    transform: scaleX(1);
}

#gms_main_header .buttonWrap{display: flex; align-items: center;  justify-content: flex-start; }
#gms_main_header .buttonWrap .button{border: 1px solid #CFCFCF; color: #787878; transition: all 0.3s ease;}
#gms_main_header .buttonWrap .button:hover{background-color: #00BFE8; color: #fff; border-color: #00BFE8;}
#gms_main_header .buttonWrap .button:hover img{filter: grayscale(1) brightness(10);}
#gms_main_header .buttonWrap .button img{margin-right: 10px;}
#gms_main_header .buttonWrap .button + .button{margin-left: 15px;}


/* GMS 서브헤더 */
#gms_sub_header {position:relative; width:100%; height:37px; background:#4c4c4c;  z-index:100;}
#gms_sub_header h1 {float:left; padding:13px 0 0 20px; color:#fff; line-height:1em; font-size:13px; font-weight:bold; text-shadow:0 -2px 1px rgba(0,0,0,0.5);}
#gms_sub_header .header_notice {float:right; width:353px; height:24px; padding:13px 64px 0 31px; background:url("../images/common/ico_notice02.gif") no-repeat 0 12px;}
#gms_sub_header .header_notice li a {color:#fff;}
#gms_sub_header .logout {position:absolute; top:5px; right:70px;}
#gms_sub_header .home {position:absolute; top:0; right:20px;}




/* GMS 상태표시줄 */
#gms_status_bar {position:relative; height:52px; background:#ececec; border-bottom:1px solid #e4e4e4;  z-index:100;}
#gms_status_bar h2 {float:left; padding:14px 0 0 20px; color:#416585;}
#gms_status_bar .status_area {float:right; overflow:hidden; border-left:1px solid #cecece;}
#gms_status_bar .status_area li {float:left; height:38px; border-right:1px solid #cecece; border-left:1px solid #fff;}
#gms_status_bar .status_area li dl {float:left; margin:0 10px 0 0; font-weight:bold;}
#gms_status_bar .status_area li dt {height:16px;}
#gms_status_bar .status_area .member {padding:14px 20px 0 58px; background:url("../images/common/ico_member01.gif") no-repeat 23px 17px;}
#gms_status_bar .status_area .group {padding:14px 20px 0 57px; background:url("../images/common/ico_group01.gif") no-repeat 24px 15px;}
#gms_status_bar .status_area .cash {position:relative; padding:14px 20px 0 51px; background:url("../images/common/ico_cash01.gif") no-repeat 16px 17px;}
#gms_status_bar .status_area .cash .d_btn {float:left;}
#gms_status_bar .status_area .btns {padding:14px 20px 0 14px; border-right:0;}
#gms_status_bar .status_area .btns * {vertical-align:middle;}


/* GNB */
#gnb { width: 190px; height: calc(100vh - 91px); background-color:#fff; z-index:10; border-radius: 0 10px 0 0; overflow: hidden; padding: 20px 0; position: sticky; top: 91px;flex-shrink: 0; margin-right: 20px; display:flex; flex-direction:column;}
#gnb ul { width: 100%;}
#gnb > ul{ flex: 1 1 auto; overflow-y: auto;}
#gnb > ul::-webkit-scrollbar{ width: 2px;}
#gnb > ul::-webkit-scrollbar-thumb{ border-radius: 1px; background-color: #00BFE8; opacity: .5;}
#gnb > ul > li{padding: 0 20px;}
#gnb > ul > li > a {display:block; color:#000; font-size:15px; font-weight:600; margin-bottom: 11px; padding-right:20px; margin-bottom: 10px;}
#gnb > ul > li > a.has-submenu {background: url('../images/common/left_arrow_down.png')no-repeat right center;}
#gnb > ul > li > a.has-submenu.on{ background-image: url('../images/common/left_arrow_down_c.png');}

#gnb li ul{ display: block; margin-bottom: 30px;}
#gnb li:last-child ul{  margin-bottom: 0;}
#gnb li li a{ display:block; color: #787878;}
#gnb li li + li a{ margin-top: 5px;}

#gnb li.system {
	background: #5c5c5c; /* Old browsers */
	background: -moz-linear-gradient(top,  #5c5c5c 0%, #414141 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#5c5c5c), color-stop(100%,#414141)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #5c5c5c 0%,#414141 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #5c5c5c 0%,#414141 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #5c5c5c 0%,#414141 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #5c5c5c 0%,#414141 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5c5c5c', endColorstr='#414141',GradientType=0 ); /* IE6-9 */
	border-bottom:1px solid #434343;
}
#gnb li.selected a {color: #000; text-decoration: underline;}
#gnb li.system a {height:40px; padding:27px 0 0 66px; font-size:13px; background:url("../images/common/ico_config.png") no-repeat 29px 25px; font-weight:bold; font-size:14px; border-bottom:1px solid #5b5b5b;}
#gnb li.basic a {background:url("../images/common/ico_basic.png") no-repeat 29px 13px;}
#gnb li.member a {background:url("../images/common/ico_member.png") no-repeat 29px 13px;}
#gnb li.groupset a {background:url("../images/common/ico_groupset.png") no-repeat 29px 13px;}
#gnb li.club a {background:url("../images/common/ico_club.png") no-repeat 29px 13px;}
#gnb li.calender a {background:url("../images/common/ico_calender.png") no-repeat 29px 13px;}
#gnb li.docu a {background:url("../images/common/ico_docu.png") no-repeat 29px 13px;}
#gnb li.content a {background:url("../images/common/ico_content.png") no-repeat 29px 13px;}
#gnb li.stat a {background:url("../images/common/ico_stat.png") no-repeat 29px 13px;}
#gnb li.message a {background:url("../images/common/ico_message.png") no-repeat 29px 13px;}
#gnb li.pay a {background:url("../images/common/ico_pay.png") no-repeat 29px 13px;}
#gnb li.group a {background:url("../images/common/ico_group.png") no-repeat 29px 13px;}



#gnb .footer{ width: 100%; background-color: #00BFE8; padding: 20px; font-size: 15px; height: 120px; color: #fff; margin-top: auto;}
#gnb .footer a{ margin: 17px 0 2px; display: block; }
#gnb .footer .created{font-size: 13px;}

/* 고객센터 */
.customer_center {width:158px; height:100%; margin:0 auto; padding:12px 0 0 6px; background:url("../images/common/bg_customer.gif") no-repeat;}
.customer_center h3 {height:44px; padding:5px 0 0 41px; background:url("../images/common/ico_customer02.gif") no-repeat 9px 0; color:#b0b0b0; font-size:12px;}
.customer_center dl {width:150px; height:20px; padding:0 0 0 6px; }
.customer_center dt {float:left; width:36px; color:#91bbe1; font-weight:bold; font-size:11px;}
.customer_center dd {color:#fff; font-size:11px;}
.customer_center dd a {color:#fff;}
.customer_center div {padding:5px 0 0 0;}
.customer_center div a {width:60px;}


/* 컨텐츠영역 */
/*#allWrap {height:120%; position:relative;}*/
#wrap{ display: flex; justify-content: space-between; position: relative; min-height: calc( 100vh - 91px );}

/* #wrap h3 {margin:0 0 10px -20px; padding:10px 20px 10px 20px;background:#f6f6f6 url("../images/common/bg_col_line01.gif") repeat-x bottom; width:100%;} */
#wrap h3.docu div {height:23px; padding:7px 0 0 30px; background:url("../images/common/ico_docu_big.gif") no-repeat; }
#content { width: calc(100% - 225px ); overflow: hidden; border-radius: 10px 10px 0 0; padding: 20px 31px 30px; background-color: #FBFBFC;}
#content::after{ content: ''; display: block; width: 43px; height: 21px; background: url("../images/common/malgumLogo.png")no-repeat center center / 100%; margin: 78px 0 0 auto;}

#content > h3 > div{ font-size: 20px; color: #000; font-weight: 700; margin-bottom: 30px;}

#content::-webkit-scrollbar{width: 5px; background: #eee;}
#content::-webkit-scrollbar-thumb{ background: #cccccc;}

/* 푸터 */
#footer {clear:both; height:24px; padding:14px 0 0 15px; background:#3e3e3e; color:#fff;}





/* 리스트01 */
.list_type01 {
	position:relative;
	float:left;
	margin:0 25px 25px 0;
	border: 1px solid #bdbdbd;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	-webkit-box-shadow: 0 1px 1px #ccc;
	-moz-box-shadow: 0 1px 1px #ccc;
	box-shadow: 0 1px 1px #ccc;
	background:#fff;
}
.list_type01 h4 {
	padding:10px 0 10px 15px;
	font-size:1.2em;
	border-bottom: solid #bdbdbd 1px;
	-webkit-border-top-left-radius: 6px;
	-moz-border-top-left-radius: 6px;
	border-top-left-radius: 6px;
	-webkit-border-top-right-radius: 6px;
	-moz-border-top-right-radius: 6px;
	border-top-right-radius: 6px;
	background-color: #e9e9e9;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#f7f7f7), to(#e9e9e9));
	background-image: -webkit-linear-gradient(top, #f7f7f7, #e9e9e9);
	background-image:    -moz-linear-gradient(top, #f7f7f7, #e9e9e9);
	background-image:     -ms-linear-gradient(top, #f7f7f7, #e9e9e9);
	background-image:      -o-linear-gradient(top, #f7f7f7, #e9e9e9);
	background-image:         linear-gradient(to bottom, #f7f7f7, #e9e9e9);
	-webkit-box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
	-moz-box-shadow:0 1px 0 rgba(255,255,255,.8) inset;
	box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
	text-shadow: 0 1px 0 rgba(255,255,255,.5);
}
.list_type01 ul {padding:15px;}
.list_type01 ul li {padding:0 0 0 10px; background:url("../images/common/bul_circle01.gif") no-repeat 0 7px; line-height:18px;}
.list_type01 ul li a {color:#000;}
.list_type01 .more {display:block; padding:12px;position:absolute; top:0; right:0; border-left:1px solid #bdbdbd;}

/* 메뉴목록 */
.menu_list li {
		float:left;
		width:175px;
		height:100px;
		margin:0 25px 25px 0;
		padding:15px 0 0 20px;
		border: 1px solid #bdbdbd;
		-moz-border-radius: 6px;
		-webkit-border-radius: 6px;
		border-radius: 6px;
		-webkit-box-shadow: 0 1px 1px #ccc;
		-moz-box-shadow: 0 1px 1px #ccc;
		box-shadow: 0 1px 1px #ccc;
		background:#f5f5f5;

	}

.menu_list li .tit {display:block; height:30px; padding:8px 0 0 40px; font-size:1.2em; font-weight:bold;}
.menu_list li .txt {display:block; width:160px; line-height:16px;}
.menu_list li.site .tit {background:url("../images/common/ico_list_site.gif") no-repeat;}
.menu_list li.category .tit {background:url("../images/common/ico_list_category.gif") no-repeat 5px 5px;}
.menu_list li.design .tit {background:url("../images/common/ico_list_design.gif") no-repeat;}
.menu_list li.board .tit {background:url("../images/common/ico_list_board.gif") no-repeat;}
.menu_list li.schedule .tit {background:url("../images/common/ico_list_schedule.gif") no-repeat;}
.menu_list li.group .tit {background:url("../images/common/ico_list_group.gif") no-repeat;}
.menu_list li.member .tit {background:url("../images/common/ico_list_member.gif") no-repeat;}
.menu_list li.point .tit {background:url("../images/common/ico_list_point.gif") no-repeat 5px 5px;}
.menu_list li.message .tit {background:url("../images/common/ico_list_message.gif") no-repeat 0 5px;}
.menu_list li.tit .tit {background:url("../images/common/ico_list_tit.gif") no-repeat 5px 5px;}
.menu_list li.exe .tit {background:url("../images/common/ico_list_exe.gif") no-repeat;}
.menu_list li.job .tit {background:url("../images/common/ico_list_job.gif") no-repeat  5px 5px;}
.menu_list li.fin .tit {background:url("../images/common/ico_list_fin.gif") no-repeat;}
.menu_list li.search .tit {background:url("../images/common/ico_list_search.gif") no-repeat;}
.menu_list li.setting .tit {background:url("../images/common/ico_list_setting.gif") no-repeat;}






.writeTit{font-size: 15px; margin-bottom: 14px; font-weight: 700;}


/* font */
.lato{font-family: 'Lato', sans-serif;}


/* dashboard */
#dashboard{width: calc(100% - 210px); padding: 20px 20px 103px; background-color: #fff; border-radius: 10px 0 0 0; margin: 0 0 0 auto; height: calc(100vh - 91px); overflow: auto; min-width: 1710px;}
#dashboard::-webkit-scrollbar{ width: 2px;}
#dashboard::-webkit-scrollbar-thumb{ border-radius: 1px; background-color: #00BFE8; opacity: .5;}

#dashboard .title{font-size: 25px; font-weight: 600; color: #000; margin-bottom: 20px;}
#dashboard .title.type2{font-size: 18px; margin: 30px 0 20px;}

#dashboard .boxWrap{display: flex; justify-content: flex-start; align-items: flex-start;}
#dashboard .boxWrap .box + .box{margin-left: 20px;}
#dashboard .boxWrap .box{border-radius: 5px; border: 1px solid #CFCFCF; overflow: hidden; width: calc(50% - 10px); }
#dashboard .boxWrap .box > p{font-size: 18px; background-color: #F5F5F5; padding: 12px 15px; color: #000; border-bottom: 1px solid #CFCFCF; min-width: 825px; } 
#dashboard .boxWrap.graph .box > div{padding: 0 15px; height: 326px; display: flex; align-items: center; justify-content: center; width: 100%; }

#dashboard .boxWrap .box .canvasWrap canvas{width: 100%;}
#dashboard .boxWrap .box .doughnutWrap{display: flex; align-items: center; justify-content: center; font-size: 15px;}
#dashboard .boxWrap .box .doughnutWrap .barWrap{padding-left: 48px;}
#dashboard .boxWrap .box .doughnutWrap .barWrap > div{display: flex; align-items: center;}
#dashboard .boxWrap .box .doughnutWrap .barWrap > div + div{margin-top: 18px;}
#dashboard .boxWrap .box .doughnutWrap .barWrap p{width: 70px;}
#dashboard .boxWrap .box .doughnutWrap .barWrap .bar{width: 230px; height: 8px; border-radius: 4px;background-color: #f5f5f5; position: relative;}
#dashboard .boxWrap .box .doughnutWrap .barWrap .bar span{width: 0; height: 100%; border-radius: 4px; position: absolute; left: 0; top: 0; transition: width 1s ease;}
#dashboard .boxWrap .box .doughnutWrap .barWrap .num{margin-left: 15px;}

#dashboard .boxWrap .box .list > li{padding: 9.5px 15px; font-weight: 300;}
#dashboard .boxWrap .box .list > li a{color: #787878; font-size: 15px; white-space: nowrap; text-overflow: ellipsis; width: 100%; overflow: hidden; display: block;}
#dashboard .boxWrap .box .list > li + li{border-top: 1px solid #CFCFCF;}

#dashboard .bottomWrap{margin-top: 30px; color: #787878;}
#dashboard .bottomWrap .box{height: auto; transition: all 0.3s ease; width: calc(100%/4 - 10px); height: 121px;}
#dashboard .bottomWrap .box + .box{margin-left: 19px;}
#dashboard .bottomWrap .box:hover{background-color: #F3F5FC;}
#dashboard .bottomWrap .box .top{display: flex; padding: 20px 15px; align-items: center; border-bottom: 1px solid #CFCFCF;}
#dashboard .bottomWrap .box .top b{font-size: 18px; font-weight: inherit; margin-left: 15px; color: #000;}
#dashboard .bottomWrap .box .bottom{padding: 15px; font-weight: 300; font-size: 13px;}