@charset "utf-8";
/******************
	 admin.css 
	 2024.12.09 수정
******************/

html {-webkit-text-size-adjust: 100%;}
html,body,div,p,iframe,frameset, h1,h2,h3,h4,h5,h6, strong,span,b,em,var,label,legend, ul,ol,li,dl,dt,dd,
table,thead,tbody,tfoot,tr,th,td,caption, form,fieldset,input,textarea, sub,sup,img,a,del,button,pre,
header,footer,section,article,aside {padding:0;margin:0; box-sizing:border-box;}

body {overflow-x: auto !important; color:#444;font-size:14px;line-height:1.4; font-weight:400; font-family: 'Pretendard', 'Noto Sans KR', 'Apple SD Gothic Neo', 'Malgun Gothic','맑은 고딕','돋음','Dotum', 'Roboto', Arial, Helvetica, sans-serif;}

button {position:relative;background:transparent; border:0; cursor:pointer;}
img {vertical-align:middle; -webkit-touch-callout: none;}
button {vertical-align:middle;}
img, button, fieldset, table {border:0;}
em, address, del {font-style:normal;}
label/*,a */{display:inline-block;}
strong, b {font-weight:bold;}
label {cursor:pointer;}

/* 목록 스타일 리셋 */
ul, ol, li {list-style:none;}

/* input 기본 스타일 초기화 */
input::-ms-clear, 
select::-ms-expand{ display: none; } /*ie에서 화살표 없애기 */
textarea{resize:none;}

select,
label,
button,
textarea{
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	background-color:transparent;
	line-height:normal;
	vertical-align:middle;
	-webkit-appearance: none;
	appearance: none;
	-moz-appearance: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; 
	margin:0;
	padding:0;
	font-family: 'Pretendard', 'Noto Sans KR', 'Apple SD Gothic Neo', 'Malgun Gothic','맑은 고딕','돋음','Dotum', 'Roboto', Arial, Helvetica, sans-serif;
	font-size:14px;
}
/* 2023.04.19 input 수정*/
input{
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	background-color:transparent;
	line-height:normal;
	vertical-align:middle;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; 
	margin:0;
	padding:0;
	font-family: 'Pretendard', 'Noto Sans KR', 'Apple SD Gothic Neo', 'Malgun Gothic','맑은 고딕','돋음','Dotum', 'Roboto', Arial, Helvetica, sans-serif;
	font-size:14px;
}

input[type="text"], 
input[type="password"],
input[type="email"], 
input[type="number"] {height:28px; padding:0 3px; border:1px solid #c8c8ce; color:#333; background-color:#fff; border-radius:3px;}

input[type="text"]:focus, 
input[type="password"]:focus, 
input[type="email"]:focus,
select:focus {border-color:#000;
	-webkit-box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.1);
	box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.1);
}

textarea[disabled="disabled"],
textarea:disabled
input[disabled="disabled"],
input:disabled,
input.disabled {color: #bbb !important; background: #F1F1F1 !important; border-color:#cfcfcf !important; pointer-events: none;}

input::placeholder{color: rgba(0,0,0,0.5); font-weight:400;}

a:focus, button:focus, input:focus, select:focus{outline:none;}


/* selectbox */
select{height:28px;padding:0 20px 0 6px;border:1px solid #c8c8ce;border-radius:3px; background:#fff url('../img/icon_arrow_down.png') no-repeat right 4px top 50%; background-size:auto 12px; box-sizing:border-box;}
select:focus {color:#222;}
select:disabled {border-color:#cfcfcf;color:#bbb;background-color:#F1F1F1;cursor:default;}

.select-slim {height:28px;padding:0 20px 0 6px;border:1px solid #c8c8ce;border-radius:3px; background:#fff url('../img/icon_arrow_down.png') no-repeat right 4px top 50%; background-size:auto 12px; box-sizing:border-box;}


/********** 체크박스 공통 스타일 ***********/
/* checkbox 이미지 */
/*.cm-checkbox {display:inline-block; vertical-align:middle;}
.cm-checkbox input[type="checkbox"] {width:15px; height:15px;border:0; vertical-align:middle; margin-top:0; background:url('../img/ico_checkbox.png') no-repeat 0 0;background-size:47px auto;-webkit-appearance:none;-moz-appearance: none;-webkit-border-radius: 0;}
.cm-checkbox input[type="checkbox"]:hover,
.cm-checkbox input[type="checkbox"]:focus {background-position:-16px 0;}
.cm-checkbox input[type="checkbox"]:checked {background-position:0px -16px;}
.cm-checkbox input[type="checkbox"]:checked:focus {background-position:-16px -16px;}
.cm-checkbox input[type="checkbox"]:disabled  {background-position:-32px 0 !important; border:1px solid #eee; border-radius:2px;}
.cm-checkbox input[type="checkbox"]:checked:disabled {background-position:-32px -16px;}
.cm-checkbox input[type="checkbox"]:disabled + label {color:#b3b3b3;}*/

/* checkbox 2023.04.10 xeicon으로 변경
   2023.04.13 수정
*/
.cm-checkbox {display:inline-block; vertical-align:middle;}
.cm-checkbox input[type="checkbox"] {width:15px;height:15px; margin-top:0; border:2px solid #aaa; background:#fff;border-radius:2px; box-sizing:border-box; -webkit-appearance:none; -moz-appearance: none;}
.cm-checkbox input[type="checkbox"]:hover{border-color:#333;}
.cm-checkbox input[type="checkbox"]:focus {border-color:#323090;}
.cm-checkbox input[type="checkbox"]:checked:before{content:"\e929"; font-family:xeicon; font-size:18px; position:absolute; top:-4px; left:-3px; width:15px; height:15px;}
.cm-checkbox input[type="checkbox"]:checked { position:relative; width:15px; height:15px; color:#fff; border:2px solid #323090; background:#323090; }
.cm-checkbox input[type="checkbox"]:checked:focus {color:#fff; background:#3f3dae;}
.cm-checkbox input[type="checkbox"]:disabled  {width:15px; height:15px; border:2px solid #d8d8d8; background:#eee; border-radius:2px; box-sizing:border-box;}
.cm-checkbox input[type="checkbox"]:checked:disabled {width:15px; height:15px; color:#e9e9e9 !important; border:2px solid #d0d0d0 !important; background:#d0d0d0 !important; border-radius:2px; box-sizing:border-box;}
.cm-checkbox input[type="checkbox"]:disabled + label {color:#b3b3b3;}
.cm-checkbox label{color:#222;}
/* checkbox label 간격 */
.cm-checkbox input[type="checkbox"] + label{margin-left:4px;margin-top: -2px;}
.cm-checkbox label + input[type="checkbox"]{margin-left:4px;}
.cm-checkbox .checkbox-item input[type="checkbox"] + label{margin-right:8px;}

/********** 라디오박스 공통 스타일***********/
.cm-radiobox{display:inline-block; vertical-align:middle; margin-right:42px;}
.cm-radiobox:last-child{margin-left:0;}
.cm-radiobox input[type="radio"]{display:none;}
.cm-radiobox label{display:inline-block; position:relative; padding-left:20px; color:#222; font-size:14px; letter-spacing:-0.75px; line-height:15px;}
.cm-radiobox label::before{content:""; position:absolute; top:0px; left:0px; width:12px; height:12px; border:2px solid #777; background-color:#fff; -webkit-border-radius:16px; border-radius:16px;}
.cm-radiobox label::after{display:none; content:""; position:absolute; top:4px; left:4px; width:8px; height:8px; background:#323090; -webkit-border-radius:8px; border-radius:8px;}
.cm-radiobox input[type="radio"]:hover + label::before,
.cm-radiobox input[type="radio"]:focus + label::before{border-color:#333}
.cm-radiobox input[type="radio"]:checked + label::before{border-color:#323090}
.cm-radiobox input[type="radio"]:checked + label::after{display:block;}
.cm-radiobox input[type="radio"]:disabled + label{color: #b7b7b7;}
.cm-radiobox input[type="radio"]:disabled + label::before{border-color: #b7b7b7;}
.cm-radiobox input[type="radio"]:checked:disabled + label{color: #b7b7b7;}
.cm-radiobox input[type="radio"]:checked:disabled + label::before{border-color: #b7b7b7;}
.cm-radiobox input[type="radio"]:checked:disabled + label::after{background:#b7b7b7;}
/* radiobox label 간격 */
.cm-radiobox input[type="radio"] + label{margin-right:12px;} /* 2023.02.09 추가 */

/* radiobox label 간격 */
.cm-radiobox.lb2 input[type="radio"] + label{margin-right:0;} /* 2023.05.08 추가 */
.cm-radiobox.lb2 input[type="radio"] + label > em{ visibility: hidden;}

/* checkbox/radio label 간격 */
input[type="checkbox"],
input[type="radio"]{margin-top:2px;}
input[type="checkbox"]+ label,
input[type="radio"]+ label{margin-left:4px;}

/* 2023.04.17 추가*/
.cm-radiobox .radio-title {display:inline-block; font-weight:600; vertical-align:middle; color:#111;}


/* textarea 스타일 */
textarea{width: 100%; height: 100px; padding: 5px; resize: none; -webkit-appearance: none; -webkit-border-radius: 0; -webkit-box-sizing: border-box; box-sizing: border-box; font-size: 14px; line-height: 1.4; color: #000; background-color: #fff; border: 1px solid #ddd;}
textarea::placeholder{color: rgba(0,0,0,0.28);}
textarea:focus{outline: none; border:1px solid #000;}
textarea:read-only { pointer-events: none;}

/* table */
table {width:100%;border-collapse:collapse;border-spacing:0;}
th, td {word-break:break-all;word-wrap:break-word;}

/* alink */
a {border:0; color:#222; text-decoration:none;}
a:active, a:hover, a:focus {text-decoration:none;}
a:focus, button:focus, input:focus{outline:none;}

/* text 숨김처리 */
caption {width:0;height:0;text-indent:-9999px;font-size:0;}
legend, .hidden {position:absolute !important;top:0;left:0;overflow:hidden;width:0 !important;height:0 !important;line-height:0 !important;}

/* 공통 :: 가로값지정 */
.w10per{width:10% !important;}
.w20per{width:20% !important;}
.w30per{width:30% !important;}
.w35per{width:35% !important;}
.w40per{width:40% !important;}
.w50per{width:50% !important;}
.w60per{width:60% !important;}
.w65per{width:65% !important;}
.w70per{width:70% !important;}
.w80per{width:80% !important;}
.w85per{width:85% !important;}
.w90per{width:90% !important;}
.w99per{width:99% !important;}
.w100per{width:100% !important;}

/* width 값 추가 - input 영역에 주로 쓰임 */
.w70px{width:70px;}
.w80px{width:100px;}
.w100px{width:100px;}
.w115{width:115px;}
.w118{width:118px;}
.w150{width:150px;}
.w180{width:180px;}
.w200{width:200px;}
.w210{width:210px;}
.w240{width:240px;}
.w245{width:245px;}
.w155px{width:155px;}
.w329px{width:329px;}
.w350px{width:350px;}
.w365px{width:365px;}
.w385px{width:385px;}
.w455px{width:455px;}


.blind{overflow:hidden;position:absolute;top:0;left:0;width:1px;height:1px;font-size:0;line-height:0}

/* br tag */
.m-br{display:none;}
@media all and ( max-width: 800px ){
	.m-br{display:block;}
	.pc-br{display:none;}
}

/* clear */
.clearfix{*zoom:1;}
.clearfix:after{clear:both; display:block; content:"";}

.font-xi:before{font-family:xeicon !important}


/* 정렬 */
.al{text-align:left !important;}
.ac{text-align:center !important;}
.ar{text-align:right !important;}

.vb{vertical-align:bottom !important;}

/* font weight */
.bold{font-weight:bold;}

/* 공통 color */
.fc-black{color:#000 !important;}
.fc-point{color:#323090 !important;}
.fc-point2{color:#3f3dae !important;}
.fc-red,
.fc-red td{color:#e11b37 !important;}
.fc-blue,
.fc-blue td{color:#0073ff !important;}
.fc-lgray{color:#999 !important;}

/* 정렬관련 */
.fl {float:left;}
.fr {float:right;}

.al{text-align:left !important;}
.ac{text-align:center !important;}
.ar{text-align:right !important;}

.vt { vertical-align:top;}
.vm { vertical-align:middle;}
.vb { vertical-align:bottom;}

/* 포지션 2023.06.21 */
.position-rel{position:relative;}

/* 2023.12.05 */
.dis-iblock{ display:inline-block;}

/* 마진 패딩*/
.mt0{margin-top:0 !important;}/* 2023.06.15 추가*/
.mt5{margin-top:5px !important;}
.mt10{margin-top:10px !important;}
.mt15{margin-top:15px !important;}
.mt20{margin-top:20px !important;}
.mt30{margin-top:30px !important;}
.mt50{margin-top:50px !important;}

.mr0{margin-right:0px !important;}
.mr10{margin-right:10px !important;}

.mb0{margin-bottom:0 !important;} /* 2023.06.15 추가*/
.mb5{margin-bottom:5px !important;}
.mb10{margin-bottom:10px !important;}

.ml5{margin-left:5px !important;}

.pl10{padding-left:10px !important;}

/* width/height */
.h36px {height:36px !important;}
.h80px {height:80px !important;}

/* button style*/
button{display:inline-block; font-weight:500; letter-spacing:-0.05em; border-radius:4px; box-sizing:border-box;}

button.btn-type1,
button.btn-type2,
button.btn-type3,
button.btn-type4,
button.btn-type5,
button.btn-disabled{height:34px; min-width:80px; padding:0 14px; font-size:14px; }

button.btn-type1{background:#323090; border:1px solid #323090; color:#fff;}
button.btn-type1:hover,
button.btn-type1:focus{background:#3f3dae; border:1px solid #3f3dae; -webkit-box-shadow: 0px 1px 8px 1px rgba(114, 123, 254, 0.1); box-shadow: 0px 1px 8px 1px rgba(114, 123, 254, 0.1);}
button.btn-type2{background:#fff; border:1px solid #c8c8cc; color:#222;}
button.btn-type2:hover,
button.btn-type2:focus{border-color:#323090; -webkit-box-shadow: 0px 1px 8px 1px rgba(114, 123, 254, 0.1); box-shadow: 0px 1px 8px 1px rgba(114, 123, 254, 0.1);}
button.btn-type3{background:#fff; border:1px solid #323090; color:#323090;}
button.btn-type3:hover,
button.btn-type3:focus{background:#323090; color:#fff; border-color:#323090; -webkit-box-shadow: 0px 1px 8px 1px rgba(114, 123, 254, 0.1); box-shadow: 0px 1px 8px 1px rgba(114, 123, 254, 0.1);}
button.btn-type4{background:#b4b4c5; border:1px solid #b4b4c5; color:#fff;}
button.btn-type4:hover,
button.btn-type4:focus{background:#c5c5d2; border:1px solid #c5c5d2;}
button.btn-type5{background:#f7596b; border:1px solid #f7596b; color:#fff;}
button.btn-type5:hover,
button.btn-type5:focus{background:#f96e7e; border:1px solid #f96e7e;}
button.btn-disabled,
button:disabled{opacity:0.9; cursor: default; color:#cfcfcf !important; background: #F1F1F1 !important; border:1px solid #ddd !important; pointer-events: none;}
button:disabled i{color:#cfcfcf !important;}

.btn-type1 .font-xi,
.btn-type3 .font-xi{font-size:16px; vertical-align:middle; margin-top:-2.2px; margin-right:5px;}
.btn-type2 .font-xi{color:#323090; font-size:16px; vertical-align:middle; margin-top:-2.2px; margin-right:5px;}

.btn-date{height:28px;padding:0 10px;border:1px solid #bfccc9; color:#555; background:#fff;}
.btn-date:hover{border:1px solid #323090; color:#323090; background:#fff;}

.btn-ico{padding:0 6px; min-width:auto !important;}
.btn-ico img{vertical-align:middle; margin-top:-2px; padding-right:3px;}

/* 버튼 사이즈*/
button.btn-s{height:28px; min-width:50px; padding:0 10px;}
button.btn-xs{height:20px; min-width:50px; padding:0 10px; font-size:13px; border-radius:2px;}
button.btn-xs2{height:20px; min-width:30px; padding:0 8px; font-size:13px; border-radius:2px;}
button.btn-l{height:38px; min-width:90px; } /* 2023.06.15 추가*/


/* 버튼 size small */
.small-btn{min-width:25px !important; height:23px !important; padding:0 8px !important; font-size:12px !important; border:1px solid #ccc; background:#fff;}
.small-btn img{margin-right:3px; margin-top:-1px;}
.small-btn:hover{background: #f9f9f9; border-color:#aaa;}

/* 상태값 */
.status-default,
.status-type2,
.status-type3{display:inline-block; min-width:35px; height:22px; line-height:20px; text-align:center; padding:0 5px; font-size:13px; border-radius:3px;}

.status-default{background:#fff; color:#71737a; border:1px solid #d8d9da;}
.status-type2{background:#ffecf2; color:#e11b37;  border:1px solid #ffecf2;}
.status-type3{background:#fff; color:#323090;  border:1px solid #d8d9da;}

/* 버튼 underline */
.btn-uline{text-decoration: underline; cursor:pointer;}
.btn-uline:link{text-decoration: underline;}
.btn-uline:visited{text-decoration: underline;}
.btn-uline:hover{text-decoration: underline;}
.btn-uline:active{text-decoration: underline;}
.btn-uline:focus{text-decoration: underline;}

/*2023.04.17 버튼 화살표 추가*/
.btn-arrow{height:28px;padding:0 10px;border:1px solid #ccc; background:#fff;}
.btn-arrow:hover{/*background: #f6fbff;*/border:1px solid #3f3dae; background:#fff;}
.btn-arrow i{color:#444 !important;}
.btn-arrow:hover i{color:#3f3dae !important;}
.btn-position-vb{position:absolute; bottom:-20px; right:0;}
.btn-position-vb .btn-arrow{min-width:77px; font-size:13px;}
.btn-position-vb .btn-arrow i{margin-right: 10px;font-size:12px;}


/****************** 관리자 로그인 ******************/
.loginbg{background: #f4f5fb !important;} /* 관리자 로그인 화면 배경색*/
.login-header-bg{position:relative; width:100%; height:5px ; background:#323090;}

.login-wrap{position:absolute;width:100%;height:100%;}

.loginbox{ position:absolute; top:50%; left:50%; width:730px;height:376px; margin-left:-365px; margin-top:-210px; padding:60px 50px 0 50px;background:#fff;border-radius:20px;-webkit-border-radius:20px;-moz-border-radius:20px;box-sizing:border-box;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-shadow: 2px 4px 8px 0px rgba(0,0,0,0.08);box-shadow: 2px 4px 8px 0px rgba(0,0,0,0.08);}
.loginbox:after{content:'';display:block;clear:both;}
.loginbox .fl{position:relative; padding-top:30px;}
.loginbox .fl .title{font-size:46px;font-family: 'Jalnan','Pretendard', 'Malgun Gothic','dotum', sans-serif;letter-spacing:0;}
.loginbox .fl .icotxt{margin:20px 0 0 0; font-size:24px;font-weight:300px;color:#555;line-height:1.2;}
.loginbox .fl .icotxt em{font-weight:500;}
.loginbox .fr{position:relative; width:296px;}
.loginbox .fr li{margin:18px 0;}
.loginbox .fr li:nth-child(3){margin:38px 0 10px 0;}
.loginbox .fr li label{font-size:14px;}
.loginbox .btn-type1{height:48px;width:296px;line-height:1;padding:0 14px;font-size:18px;color:#fff;background: #323090;border-radius:0;-webkit-border-radius: 5px;-moz-border-radius:0;} /* 로그인 버튼 */
.loginbox input.loginform{width:100%;font-size:18px;border:none;border-bottom: 1px solid #323090;height:36px !important;border-radius:0;}
.loginbox input.loginform:focus{border:none;border-bottom:1px solid #3f3dae; box-shadow:none; }
input.loginform:focus::-webkit-input-placeholder {color: transparent;}
input.loginform:focus::-moz-placeholder {color: transparent;}
input.loginform:focus:-ms-input-placeholder {color: transparent;}
input.loginform:focus::-ms-input-placeholder {color: transparent;}
/* 2023.06.09 id찾기 버튼 추가 */
.loginbox .both-con{display:flex;align-items: center;}
.right-btn-area{margin-left:auto;}


/************** admin default layout ************** */
#admin-wrap{position:relative; width:100%; height:100%; min-width:1500px;} /*기본화면 pc전용 최소 가로사이즈 1300px */
#admin-container{position:relative; width: 100%; height: 100%; padding:20px; margin:0 auto; box-sizing:border-box;  min-width:1500px;}

.admin-both-contents{position:relative; width: 100%;height: 100%; padding-left: 260px; box-sizing:border-box;}
.admin-contents02{position:relative; width: 100%;height: 100%; padding:0 20px 40px 20px; box-sizing:border-box;}

.admin-leftCon{position: absolute; top: 0; left: 0; bottom: 0; width: 240px; height: 100%; background-color: #fff;}
.admin-leftCon .leftCon-inner{ width: 100%; height: 100%;}
.admin-rightCon{ position:relative; width: 100%; height: 100%; min-height:680px; box-sizing: border-box;}

.area-width-fixed{max-width:1400px; margin:0 auto;} /* 경정청구 제외 나머지 화면 사이즈*/

/* ****************** admin- HEADER ********************** */
/* admin-layout */
.gnbarea{ width:100%; padding-left:260px; padding-right:160px;}

@media all and ( max-width: 1366px ){
	.gnbarea{ padding-left:200px; box-sizing:border-box;}
}
@media all and ( max-width: 1200px ){
	.gnbarea{ min-width:100%; }
}
#admin-header{
	position:relative;
	height: 70px;
	top:0;
	left:0;
	width:100%;
	z-index:9999;
	-webkit-transition:all 0.3s;
	transition:all 0.3s;
	-webkit-box-shadow: 0px 5px 8px 0px rgba(0,0,0,0.14);box-shadow: 0px 5px 8px 0px rgba(0,0,0,0.14);
}
#admin-headerInnerWrap{
	position:absolute; top:0px; left:0px; width:100%; height:100%; z-index:9999; background-color:#323090; min-width:1400px;
	-webkit-transition:background-color 0.3s;
	transition:background-color 0.3s;
}
#headerInner{position:relative; height:100%; margin:0px auto; padding:0 40px;}
#admin-header .logo{position:relative; z-index:100; float:left; padding:22px 0;}		/* padding값 적절히 바꿔주세요 */
#admin-header .logo a{display:block; font-size:16px; color:#fff;}
#admin-header .logo img{display:block; vertical-align:top;}

/* -------- Header :: UTIL BOX 2023.04.17추가-------- */
.header-util-box{position:absolute; top:50%; right:26px; margin-top:-12px; z-index:100; } 
.header-util-box a{ color: rgba(255, 255, 255, 0.7) }
.header-util-box a i{margin-right:4px; margin-top:-2px; font-size:18px; vertical-align:middle;}
.header-util-box .login-info {margin-right:16px; color: rgba(255, 255, 255, 0.9) }
.header-util-box .login-info i{margin-right:4px; margin-top:-1px; font-size:18px; vertical-align:middle;}

@media all and ( max-width: 1366px ){
	.header-util-box{font-size:13px;}
}

/* -------- Header :: GNB(PC) 2023.04.17 수정 -------- */
.gnb-overlay-bg{display:none; position:fixed; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.5); z-index:9997;}	/* gnb overlay BG */
#gnb{position:absolute; text-align:center; top:0; left:0px; width:100%; z-index:99;}
#gnb > ul{display:inline-block; *display:inline;*zoom:1;}
#gnb > ul > li{position:relative; float:left; word-break:keep-all; width:150px;}
#gnb > ul > li > a{
	position:relative;
	z-index:100;
	display:block;
	height: 30px;
	line-height: 30px;
	margin-top: 20px;
	padding:0 25px;
	text-align:center;
	color:#fff;
	font-size:16px;
	letter-spacing:-0.35px;
	font-weight:600;
	-webkit-transition:all 0.3s;
	transition:all 0.3s;
	cursor: default;
}
#gnb > ul > li > a:hover, #gnb > ul > li.on > a{color:#fff;}

/* GNB :: 2차 전체메뉴 */
#gnbBg{
	overflow:hidden;
	position:absolute;
	left:0;
	top: 70px;
	width:100%;
	height:0;
	background:#fff;
	z-index:98;
	-webkit-transition:height 0.3s ease-in-out;
	transition:height 0.3s ease-in-out
}
#gnbBg:after{position:absolute;top: 0;width:100%;left:0;height:1px;background-color:#ddd;content:"";}
#gnb.total-menu > ul > li .gnb-2dep{
	position:absolute;
	top: 50px;
	left:0px;
	z-index:99;
	width:100%;
	text-align:left;
	opacity:0;
	filter:Alpha(opacity=0);
	height:0;
	-webkit-transition: all 0.3s 0s;
	transition: all 0.3s 0s;
	visibility:hidden;
}
#gnb.total-menu > ul > li .gnb-2dep:before {
	content:"";
	position:absolute;
	left:0;
	top: 20px;
	width:0;
	left:50%;
	height:1px;
	background-color:#6568ea;
	-webkit-transition:all 0.3s;
	transition:all 0.3s;
	z-index:10;
}
#gnb.total-menu > ul > li:hover .gnb-2dep:before {width:100%; left:0;}
#gnb.total-menu > ul > li .gnb-2dep ul{padding:15px 0px;}
#gnb.total-menu > ul > li .gnb-2dep ul li{position:relative;}
#gnb.total-menu > ul > li .gnb-2dep ul li a{display:block; padding:10px 15px; padding-left: 25px;text-align: center; color:#333; font-size:14px; letter-spacing:-0.5px; font-weight:500; line-height:1.3; -webkit-transition:all 0.2s; transition:all 0.2s}
#gnb.total-menu > ul > li .gnb-2dep ul li a:hover{color:#323090;}

/* GNB :: 2차메뉴 Over (높이변경) */
#gnb.open #gnbBg{height: 280px;}
#gnb.open > ul > li .gnb-2dep{
	height:280px;
	padding-top: 20px;
	opacity:1.0;
	filter:Alpha(opacity=100);
	visibility:visible;
	-webkit-transition: height 0.5s ease-in-out, opacity 0.5s ease-in-out 0.2s;
	transition: height 0.5s ease-in-out, opacity 0.5s ease-in-out 0.2s;
}

/* GNB :: 2차 각각메뉴 */
#gnb.each-menu > ul > li .gnb-2dep{
	/* display:none; */
	position:absolute; 
	top:70px; 
	left:50%; margin-left: -80px; 
	z-index:99;
	width:150px; 
	text-align:left; 
	visibility:hidden;
	opacity:0;filter:Alpha(opacity=0);
}
#gnb.each-menu > ul > li .gnb-2dep:before{
	content:""; position:absolute; top:-20px; left:0px; right:0px; height:0; opacity:0;filter:Alpha(opacity=0); background-color:#0070e3; 
	-webkit-transition:all 0.4s; transition:all 0.4s
}
#gnb.each-menu > ul > li .gnb-2dep ul{padding:0px 0px 15px 0;}
#gnb.each-menu > ul > li .gnb-2dep ul li{position:relative; padding:8px 10px; opacity:0;filter:Alpha(opacity=0);-webkit-transition:all 0s 0s;-moz-transition:all  0s 0s;-o-transition:all  0s 0s;-ms-transition:all  0s 0s;transition:all  0s 0s; }
#gnb.each-menu > ul > li .gnb-2dep ul li a{ display:block; color:#fff; font-size:14px; font-weight:400; text-align:center; line-height:1.3; opacity:0.9;filter:Alpha(opacity=90);}
#gnb.each-menu > ul > li .gnb-2dep ul li a:hover{opacity:1.0;filter:Alpha(opacity=100);}
/* over했을때 */
#gnb.each-menu > ul > li:hover .gnb-2dep:before{height:calc(100% + 20px); opacity:1.0;filter:Alpha(opacity=100);}
#gnb.each-menu > ul > li .gnb-2dep.open{visibility:visible; opacity:1.0;filter:Alpha(opacity=100);}
#gnb > ul > li .gnb-2dep.open ul li{opacity:1.0;filter:Alpha(opacity=100); -webkit-transition:all 0.8s;-moz-transition:all 0.8s;-o-transition:all 0.8s;-ms-transition:all 0.8s;transition:all 0.8s;}
#gnb > ul > li .gnb-2dep.open ul li:nth-child(1){-webkit-transition-delay: 0.1s; transition-delay:0.1s;}
#gnb > ul > li .gnb-2dep.open ul li:nth-child(2){-webkit-transition-delay: 0.2s; transition-delay:0.2s;}
#gnb > ul > li .gnb-2dep.open ul li:nth-child(3){-webkit-transition-delay: 0.3s; transition-delay:0.3s;}
#gnb > ul > li .gnb-2dep.open ul li:nth-child(4){-webkit-transition-delay: 0.4s; transition-delay:0.4s;}
#gnb > ul > li .gnb-2dep.open ul li:nth-child(5){-webkit-transition-delay: 0.5s; transition-delay:0.5s;}
#gnb > ul > li .gnb-2dep.open ul li:nth-child(6){-webkit-transition-delay: 0.6s; transition-delay:0.6s;}
#gnb > ul > li .gnb-2dep.open ul li:nth-child(7){-webkit-transition-delay: 0.7s; transition-delay:0.7s;}
#gnb > ul > li .gnb-2dep.open ul li:nth-child(8){-webkit-transition-delay: 0.8s; transition-delay:0.8s;}
@media all and ( max-width: 1366px ){
	#gnb > ul > li{width:140px;}
	#gnb.each-menu > ul > li .gnb-2dep{width:140px;}
}


/************** admin conts ************** */
/* left search */
.admin-leftSearch{height:180px; border:1px solid #ddddeb; border-bottom:none; background: #f4f5fb; border-radius:3px 3px 0 0; box-sizing: border-box;}
/*.admin-leftSearch .leftSearch-inner{padding:20px;}
.admin-leftSearch .leftSearch-inner li{margin:5px 0;}
.admin-leftSearch .leftSearch-inner select{width:100%; height:30px;}
.admin-leftSearch .leftSearch-inner input{width:100%; height:30px; padding:0 30px 0px 6px;}
.admin-leftSearch .leftSearch-inner input.calendar + img {margin:-2px 10px 0 -26px !important; cursor:pointer;}
.admin-leftSearch .leftSearch-inner input::placeholder{color: rgba(0,0,0,0.4); font-size:13px;}*/
.admin-leftSearch .leftSearch-inner button{width:100%; height:36px;-webkit-box-shadow: 0px 1px 8px 1px rgba(114, 123, 254, 0.1); box-shadow: 0px 1px 8px 1px rgba(114, 123, 254, 0.1);}
/* 2023.06.15 왼쪽 상단 조회 변경 */
.admin-leftSearch .leftSearch-inner{padding:10px;}
.admin-leftSearch .leftSearch-inner li{margin:5px 0; display:flex; align-items:center; justify-content: space-between;}
.admin-leftSearch .leftSearch-inner li .left-title{width:26%; font-size:13px; letter-spacing:-0.05em;}
.admin-leftSearch .leftSearch-inner li .right-con{width:74%}
.admin-leftSearch .leftSearch-inner select{width:100%; height:30px; font-size:13px;}
.admin-leftSearch .leftSearch-inner input{width:100%; height:30px; padding:0 3px; font-size:13px;}
.admin-leftSearch .leftSearch-inner input.calendar{width:50%; height:30px; display:inline-block;}
.admin-leftSearch .leftSearch-inner input::placeholder{color: rgba(0,0,0,0.4); font-size:13px;}

/* left search list */
.admin-leftlist{position: absolute;top: 180px; left: 0; width: 100%; height: calc(100% - 180px); box-sizing: border-box;}
.admin-leftlist .leftlist-scroll{width: 100%; height:100%; max-height: 100%; padding:16px 0;border:1px solid #ddddeb; overflow-y: auto; overflow-x: hidden;}
.admin-leftlist .leftlist-scroll ul li{padding:7px 12px 6px 12px; color:#222; border-bottom:1px solid #ddd; cursor:pointer;}
.admin-leftlist .leftlist-scroll ul li:last-child{border-bottom:none;}
.admin-leftlist .leftlist-scroll ul li:hover{background:#eceeff;}
.admin-leftlist .leftlist-scroll ul li.selected{background:#eceeff; color:#323090;}
.admin-leftlist .leftlist-scroll ul li.selected span.number-txt{color:#6d6bc2;}
.admin-leftlist .leftlist-scroll ul li span{display:block;}
.admin-leftlist .leftlist-scroll ul li span.number-txt{font-size:12px; color:#888;}

/* right search */
.search-form {width:100%; padding:18px 23px; border:1px solid #ddddeb; background: #f4f5fb; border-radius:3px; box-sizing: border-box;}
.search-form select{height:34px; min-width:100px;}
.search-form input[type="text"]{height:34px; width:260px;}
.search-form .btn-type1{width:90px;}
.search-form.pd-s{padding:12px 23px;}

/* both-search-form-wrap */
.both-search-form-wrap {width:100%; position:relative; height:50px; border:1px solid #ddddeb; background: #f4f5fb; border-radius:3px; box-sizing: border-box;}
.both-search-form-wrap .leftwrap{position:absolute; left:18px; top:15px; vertical-align:middle;}
.both-search-form-wrap .rightwrap{position:absolute; right:18px; top:8px; vertical-align:middle;}

/* title */
.admin-title-con{position:relative; height:51px; margin:0 0 30px 0; border-bottom:1px solid #d3d4da;}
.admin-title-con .admin-title{padding:10px 0 0 0; vertical-align:middle; font-size:20px; color:#323090;font-weight:bold; }
.admin-title-con .admin-title i{margin-right: 2px; vertical-align: middle; margin-top: -3px;}
.admin-title-con .admin-rbtn-con{position:absolute; right:0; bottom:10px;}
.admin-title-con .admin-rbtn-con button{margin-left:5px;}

/* sub-title */
.admin-sub-title{margin:20px 0 5px 0;padding-left:20px;position:relative; font-size:17px; font-weight:600;}
.admin-sub-title::before {content:''; width:6px; height:6px; position:absolute; top:5px; left:2px; background:none; border-radius:50%; border: 3px #323090 solid; }

/* suttitle+btn 조합*/
.title-btn-wrap{width:100%;position:relative; margin-bottom:5px;}
.title-btn-wrap button{margin-top:10px;}

/*tab title*/
.title-menu-con{position:relative; padding:0 0;}
.title-menu-con ul{display:table; min-width:320px; height:48px; table-layout:fixed; -webkit-box-sizing: border-box; box-sizing: border-box;}
.title-menu-con ul li{display:table-cell; position:relative; height:48px; padding:0 28px; border-bottom:3px solid #d6d6e5;  text-align:center; vertical-align:middle; cursor:pointer;}
.title-menu-con ul li span{display:inline-block; width:100%; height:100%; color:#7D90A4; white-space: nowrap; font-size:20px; line-height:48px; letter-spacing:-0.35px; font-weight: 500; vertical-align:middle;text-align:center;  }
.title-menu-con ul li.selected{border-bottom:3px solid #323090;}
.title-menu-con ul li.selected span{font-weight:bold; color:#323090;}


/* btn-wrap */
.btn-wrap-box{position:relative; width:100%; text-align:center;}
.btn-wrap-box .right-btn-box{position:absolute;right:0;top:0;}

/* 양쪽 버튼 wrap */
.both-btn-wrap{width:100%;position:relative; margin:20px auto;}
.both-btn-wrap:after{content:""; clear:both; display:block;}
.both-btn-wrap .leftbtn{float:left;}
.both-btn-wrap .rightbtn{float:right}

/* 상태값 변경 박스 */
.status-change-box{width:100%;border:1px solid #ddddeb; padding:20px; margin:10px 0; border-radius:3px; box-sizing:border-box;}
.status-change-box select{width:80%; height:34px;}
.status-change-box input{height:34px;}
/* border-none-table */
.bd-none-tbl th,
.bd-none-tbl td{border:none;}

/* 기업정보 */
.business-info{width:100%;border:1px solid #ddddeb; margin:10px 0; border-radius:3px; box-sizing:border-box;}
.business-info .title{font-weight:bold; font-size:14px; padding:8px 20px; border-bottom:1px solid #eee; background:#f9f9fb; color:#000;}
.business-info .cm-radiobox{padding:20px; margin:0 0 0 0; width:100%;}
.business-info .cm-radiobox .radio-item{text-align:center;}
.business-info .cm-radiobox input[type="radio"] + label{margin-right:55px;}
.business-info .cm-radiobox input[type="radio"] + label:last-child{margin-right:8px;}
.business-info-bothwrap .fl,
.business-info-bothwrap .fr{width: calc(50% - 10px);}


/* 양쪽정렬 컨텐츠 */
.both-wrap-type01{position:relative; width:100%;} 
.both-wrap-type01 .fl{ float:left; width: calc(50% - 10px);  box-sizing:border-box; }
.both-wrap-type01 .fr{ float:right; text-align:right; width: calc(50% - 10px); box-sizing:border-box;} 

/* 근로자 고용정보 양쪽정렬 컨텐츠 */
.flex-wrap-type01{margin:20px 0; position:relative;display:flex;justify-content:space-between; flex-wrap: no-wrap;}
.flex-wrap-type01 .box-item1{width: calc(24% - 10px); border:1px solid #b6b7e1; border-radius:5px; overflow:hidden; box-sizing:border-box;}
.flex-wrap-type01 .box-item2{width: calc(76% - 10px);border:1px solid #b6b7e1; border-radius:5px; overflow-x:auto; box-sizing:border-box;}
.flex-wrap-type01 .box-item3{width: 100%;border:1px solid #b6b7e1; border-radius:5px; overflow-x:auto; box-sizing:border-box;} /* 2023.03.31 추가 */

.flex-wrap-type01 .box-item1 .title-bg{padding:20px 0; border-bottom:1px solid #ddddeb; background: #f4f5fb; color:#222; text-align:center; font-weight:600;}
.flex-wrap-type01 .box-item1 .radio-box-wrap{padding:70px 0 0 0;text-align:center; vertical-align:middle;}
.flex-wrap-type01 .box-item1 .radio-box-wrap .cm-radiobox{margin:10px 0;}
.flex-wrap-type01 .box-item1 .radio-box-wrap .cm-radiobox label{ font-size:16px; letter-spacing:0; }


/*************  table type01 **************/
.admin-tbl-type01 {width:100%; border-top:2px solid #b6b7e1; position: relative; /*white-space: nowrap; */ box-sizing:border-box;} /* 2023.05.02 nowrap 삭제*/
.admin-tbl-type01 table {width:100%;  box-sizing:border-box;}
.admin-tbl-type01 thead th{padding:8px 8px; font-size: 14px; font-weight:600; background: #f4f5fb; color:#222; border-top:0;}
.admin-tbl-type01 tbody th{font-weight:600;  font-size: 14px; white-space: nowrap; background:#fbfbfd;}
.admin-tbl-type01 tfoot th,
.admin-tbl-type01 tfoot td{border-top:2px solid #ddddeb; height:40px; font-weight:600;}
.admin-tbl-type01 tfoot th{ background:#f4f5fb; font-size:14px;}
.admin-tbl-type01 th,
.admin-tbl-type01 td{font-size: 13px; padding: 7px 8px;white-space: nowrap; border:1px solid #ddddeb; text-align: center;  vertical-align:middle; letter-spacing:0; box-sizing:border-box;}
.admin-tbl-type01 th.selected {background: #e3ebff; color:#000;}
.admin-tbl-type01 td.selected {background: #eef3ff; font-weight:bold; color:#000;}
.admin-tbl-type01 .al{padding-left:16px;}
.admin-tbl-type01 .al2{padding-left:8px; text-align:left;}

/* table input placeholder 투명도조절*/
.admin-tbl-type01 input::placeholder,
.admin-tbl-type01-1 input::placeholder,
.admin-tbl-type01-2 input::placeholder,
.admin-tbl-type01-3 input::placeholder{color: rgba(0,0,0,0.8);}
.admin-tbl-type01 input:disabled::placeholder,
.admin-tbl-type01-1 input:disabled::placeholder,
.admin-tbl-type01-2 input:disabled::placeholder,
.admin-tbl-type01-3 input:disabled::placeholder{color: rgba(0,0,0,0.3);}

/* table td 비활성화 */
td.disabled {background:#f5f6f9 !important;} /* 2023.04.11 important 추가*/

#admin-wrap td,
.admin-tbl-type01 td,
.admin-tbl-type01-1 td,
.admin-tbl-type01-2 td,
.admin-tbl-type01-3 td,
.admin-tbl-type02 td,
.admin-tbl-type03 td,
table.sticky-tbl-type td {color:#222 ;} /* 그리드 css영향받아 색상 넣음 */

/*************  table type01-1 근로자 고용정보 우측 테이블 사용 **************/
.admin-tbl-type01-1 {width:100%; border-collapse:collapse; } 
.admin-tbl-type01-1 thead th{padding:5px 4px; font-size: 14px; font-weight:600; background: #f4f5fb; color:#222;}
.admin-tbl-type01-1 tbody th{font-weight:600; white-space: nowrap; background:#fbfbfd;}
.admin-tbl-type01-1 th,
.admin-tbl-type01-1 td{font-size: 13px; padding: 3px 3px;white-space: nowrap; border-bottom:1px solid #ddddeb; border-right:1px solid #ddddeb; text-align: center;  vertical-align:middle; letter-spacing:0; box-sizing:border-box;}
.admin-tbl-type01-1 .selected {background: #efecff;}
.admin-tbl-type01-1 td:last-child,
.admin-tbl-type01-1 th:last-child{border-right:none;}

/*************  table type01-2 중소기업사회보험료 계산 테이블 사용**************/
.admin-tbl-type01-2 {width:100%; border-top:2px solid #b6b7e1; position: relative; white-space: nowrap; box-sizing:border-box;}
.admin-tbl-type01-2 table {width:100%;  box-sizing:border-box;}
.admin-tbl-type01-2 thead th,
.admin-tbl-type01-2 tbody th{padding:8px 8px; font-size: 14px; font-weight:600; background: #f4f5fb; color:#222;}
.admin-tbl-type01-2 tfoot th,
.admin-tbl-type01-2 tfoot td{border-top:2px solid #ddddeb; height:40px; font-weight:600;}
.admin-tbl-type01-2 tfoot th{ background:#f4f5fb; font-size:14px;}
.admin-tbl-type01-2 th,
.admin-tbl-type01-2 td{font-size: 13px; padding: 7px 8px;white-space: nowrap; border:1px solid #ddddeb; text-align: center;  vertical-align:middle; letter-spacing:0; box-sizing:border-box;}
.admin-tbl-type01-2 th.selected {background: #e3ebff; color:#000;}
.admin-tbl-type01-2 td.selected {background: #eef3ff; font-weight:bold; color:#000;}

.admin-tbl-type01-2 .inner-tbl thead th{border-top:none;}
.admin-tbl-type01-2 .inner-tbl th{border-left:0; border-bottom:none;}
.admin-tbl-type01-2 .inner-tbl td{border-left:0; border-bottom:none; padding:5px 6px !important;}
.admin-tbl-type01-2 .inner-tbl th:last-child,
.admin-tbl-type01-2 .inner-tbl td:last-child{border-right:none;}
.admin-tbl-type01-2 .inner-tbl .detail-open-cont{display:none;}
.admin-tbl-type01-2 .inner-tbl .detail-open-cont td{background:#fff;word-break:keep-all;}

/* table 패딩 제로 */
table.pd-zero thead th,
table.pd-zero tbody th,
table.pd-zero tbody td{height:30px;}
table.pd-zero thead th,
table.pd-zero tbody th{padding:0 0 !important;}
table.pd-zero tbody td{padding:0 !important;}

/* inner table  */
.inner-tbl{table-layout:fixed;}
.inner-tbl th{min-width:56px;white-space:normal !important; word-break:keep-all; border-bottom:none !important;}
.inner-tbl td{min-width:56px; font-weight:400;}
.inner-tbl .btn-uline{font-weight:bold;}
.inner-tbl .detail-open-cont{/*display:none;*/}
.inner-tbl .detail-open-cont td{background:#f0f3f9; border-color:#ddd !important; word-break:keep-all;}
.inner-tbl .detail-open-cont td .btn-uline{font-weight:normal;} 
/*.inner-tbl .sum{background:#f8fcff;}*/

/* 테이블 내 보더 관련*/
.bd-left-none{border-left:none !important;}
.bd-right-none{border-right:none !important;}
.bd-bottom-none{border-bottom:none !important;}
.bd-top-none{border-top:none !important;}

/*************  table row type **************/
.admin-tbl-type02 {width:100%; border-top:1px solid #b6b7e1; position: relative; /*white-space: nowrap;*/ box-sizing:border-box;}
.admin-tbl-type02 table {width:100%;  box-sizing:border-box;}
.admin-tbl-type02 table th{padding:8px 8px; font-size: 14px; color:#222; text-align:center; vertical-align:middle; background: #f4f5fb; font-weight:600; border:1px solid #ddddeb; border-top:0; box-sizing:border-box;}
.admin-tbl-type02 table td{padding:7px 8px; font-size: 14px; text-align: left; vertical-align:middle; border:1px solid #ddddeb; border-top:0; box-sizing:border-box;}
.admin-tbl-type02 table th i {color:#e42424;}
.admin-tbl-type02 table th i.none {margin-left: 6px; display:inline-block;}
.admin-tbl-type02 .bg-whilte{background:#fff;} /* 2023.06.16 추가 */


/*************  table row type03 **************/
.admin-tbl-type03 {width:100%; border-top:1px solid #b6b7e1; position: relative; white-space: nowrap; box-sizing:border-box;}
.admin-tbl-type03 table {width:100%;  box-sizing:border-box;}
.admin-tbl-type03 table th{padding:8px 8px 8px 16px; font-size: 14px; color:#222; text-align:left; vertical-align:middle; background: #f4f5fb; font-weight:600; border:1px solid #ddddeb; border-top:0; box-sizing:border-box;}
.admin-tbl-type03 table td{padding:7px 8px; font-size: 14px; text-align: left; vertical-align:middle; border:1px solid #ddddeb; border-top:0; box-sizing:border-box;}
.admin-tbl-type03 table th i {color:#e42424; margin-right:3px;}
.admin-tbl-type03 table th i.none {margin-left: 8px; display:inline-block;}


/************* fixed table scroll **************/
.sticky-table-scroll-wrap{width:100%; position:relative; border:1px #ddddeb solid; border-top:0; box-sizing:border-box;}
.sticky-table-scroll{width:100%; height: auto; position: relative; margin:0; border-top:2px solid #b6b7e1; overflow-y: auto; overflow-x: auto; box-sizing:border-box;  z-index: 1;}
.sticky-table-scroll table.sticky-tbl-type {width:100%; border-spacing: 0; border-collapse:separate; } /*  헤더 픽스시 보더 움직이는거 방지 border-collapse:separate;*/
.sticky-table-scroll table.sticky-tbl-type thead th{padding:8px 6px;font-weight:600; background: #f4f5fb;  color:#222;}
.sticky-table-scroll table.sticky-tbl-type tbody th{font-weight: 600; font-size: 14px; white-space: nowrap; background: #fbfbfd;}
.sticky-table-scroll table.sticky-tbl-type th,
.sticky-table-scroll table.sticky-tbl-type td{font-size: 14px; padding: 6px 8px;white-space: nowrap; border-bottom:1px solid #ddddeb; border-right:1px solid #ddddeb; text-align: center;  vertical-align:middle; letter-spacing:0; box-sizing:border-box;}
.sticky-table-scroll table.sticky-tbl-type tfoot th,
.sticky-table-scroll table.sticky-tbl-type tfoot td{border-top:1px solid #ddddeb; border-bottom:none; height:40px; font-weight:600;}
.sticky-table-scroll table.sticky-tbl-type tfoot th{ background:#f4f5fb; font-size:14px;}
.sticky-table-scroll table.sticky-tbl-type th:last-child,
.sticky-table-scroll table.sticky-tbl-type td:last-child{border-right:none;}
.sticky-table-scroll table.sticky-tbl-type thead{ position: -webkit-sticky; position: sticky; top: 0; z-index: 5;} /* header fixed */
.sticky-table-scroll .sticky-col {position: -webkit-sticky; position: sticky; z-index: 2; background:#fff;}
.sticky-table-scroll table.sticky-tbl-type th.selected {background: #e3ebff; color:#000;}
.sticky-table-scroll table.sticky-tbl-type td.selected {background: #eef3ff; font-weight:bold; color:#000;}
.sticky-table-scroll table td input[type="text"] {font-size:13px; }

.bd-right{border-right:1px solid #ddddeb !important;} /* 2024.12.09 추가*/

/* th/td 패딩값 0*/
.pd-zero{padding:0 !important;}

.sticky-table-scroll.fsize-s table.sticky-tbl-type th,
.sticky-table-scroll.fsize-s table.sticky-tbl-type td{font-size:13px;}

/* 2024.12.09 신규추가 (개인별부과고지보험료 테이블 사용)*/
.sticky-table-scroll.fsize-xs table.sticky-tbl-type th,
.sticky-table-scroll.fsize-xs table.sticky-tbl-type td{font-size:12px;}
.sticky-table-scroll.fsize-xs table.sticky-tbl-type thead th{line-height:1.2;}


/*** 근로자현황 fixed table size ***/
.sticky-table-scroll table.sticky-tbl-type.sticky-type01 td{min-width:110px; white-space:nowrap; font-size:13px;}
.sticky-table-scroll table.sticky-tbl-type.sticky-type01 thead th{ white-space:nowrap;}
.sticky-table-scroll table.sticky-tbl-type.sticky-type01 select{width:100%;}
.sticky-table-scroll table.sticky-tbl-type.sticky-type01 input{width:100%; background:#fff;}
/*.sticky-table-scroll table.sticky-tbl-type.sticky-type01 tbody td:hover,
.sticky-table-scroll table.sticky-tbl-type.sticky-type01 tbody td:focus{background:#f7f6fe;}*/

.sticky-table-scroll table.sticky-tbl-type.sticky-type01 .col1 {width: 50px; min-width: 50px; max-width: 50px; left: 0px; color:#000}
.sticky-table-scroll table.sticky-tbl-type.sticky-type01 .col2 {width: 130px; min-width: 130px; max-width: 130px; left: 50px; color:#000}
.sticky-table-scroll table.sticky-tbl-type.sticky-type01 .col3 {width: 100px; min-width: 100px; max-width: 100px; left: 180px; color:#000; border-right:1px solid #dcdce1 !important;}
.sticky-table-scroll table.sticky-tbl-type.sticky-type01 .col4 {width: 100px; min-width: 100px; max-width: 100px; left: 280px; color:#000; border-right:1px solid #dcdce1 !important;}
.sticky-table-scroll table.sticky-tbl-type.sticky-type01 .col5 {width: 130px; min-width: 130px; max-width: 130px; left: 380px; color:#000; border-right:1px solid #dcdce1 !important;}
/* td size*/
.sticky-table-scroll table.sticky-tbl-type.sticky-type01 td:nth-child(7){min-width:200px;}
.sticky-table-scroll table.sticky-tbl-type.sticky-type01 td:nth-child(8){min-width:160px;}
.sticky-table-scroll table.sticky-tbl-type.sticky-type01 td:nth-child(11),
.sticky-table-scroll table.sticky-tbl-type.sticky-type01 td:nth-child(12),
.sticky-table-scroll table.sticky-tbl-type.sticky-type01 td:nth-child(13),
.sticky-table-scroll table.sticky-tbl-type.sticky-type01 td:nth-child(14),
.sticky-table-scroll table.sticky-tbl-type.sticky-type01 td:nth-child(15),
.sticky-table-scroll table.sticky-tbl-type.sticky-type01 td:nth-child(16),
.sticky-table-scroll table.sticky-tbl-type.sticky-type01 td:nth-child(17),
.sticky-table-scroll table.sticky-tbl-type.sticky-type01 td:nth-child(18){min-width:80px;}
/* popup td size*/
.popup-conts .sticky-table-scroll table.sticky-tbl-type.sticky-type01 td{min-width:50px;}
.popup-conts .sticky-table-scroll table.sticky-tbl-type.sticky-type01 td:nth-child(7),
.popup-conts .sticky-table-scroll table.sticky-tbl-type.sticky-type01 td:nth-child(8),
.popup-conts .sticky-table-scroll table.sticky-tbl-type.sticky-type01 td:nth-child(11),
.popup-conts .sticky-table-scroll table.sticky-tbl-type.sticky-type01 td:nth-child(12),
.popup-conts .sticky-table-scroll table.sticky-tbl-type.sticky-type01 td:nth-child(13),
.popup-conts .sticky-table-scroll table.sticky-tbl-type.sticky-type01 td:nth-child(14),
.popup-conts .sticky-table-scroll table.sticky-tbl-type.sticky-type01 td:nth-child(15),
.popup-conts .sticky-table-scroll table.sticky-tbl-type.sticky-type01 td:nth-child(16),
.popup-conts .sticky-table-scroll table.sticky-tbl-type.sticky-type01 td:nth-child(17),
.popup-conts .sticky-table-scroll table.sticky-tbl-type.sticky-type01 td:nth-child(18){min-width:50px;}

.sticky-table-scroll input:disabled::placeholder{color: rgba(0,0,0,0.3);}
.sticky-table-scroll input::placeholder{color: rgba(0,0,0,0.8);}

/* tr에 마우스 오버시 색상
.sticky-table-scroll table.sticky-tbl-type tr:hover{background:#f8fcff;} */


/******************** 페이징 ********************/
.paging {text-align:center;margin:16px auto;}
.paging a.first,
.paging a.prev,
.paging a.next,
.paging a.last { overflow:hidden; text-indent:-3000px;border:1px solid #eee;}
.paging a.first:hover,
.paging a.prev:hover,
.paging a.next:hover,
.paging a.last:hover {border:1px solid #ddd;}
.paging a.first {background:url(../img/btn_first.png) center no-repeat;}
.paging a.prev {background:url(../img/btn_prev.png) center no-repeat;}
.paging a.next {background:url(../img/btn_next.png) center no-repeat;}
.paging a.last {background:url(../img/btn_last.png)center no-repeat;}
.paging a{ display:inline-block; margin:0 1px; width:23px; height:23px; line-height:21px; text-align:center; border:1px solid #fff;color:#666; font-size:12px; font-weight:400; vertical-align:middle; border-radius:45px;box-sizing:border-box;}
.paging a:a:visited{color:#666;}
.paging a:hover{ border:1px solid #eee; color:#323090;}
.paging a.on { border:1px solid #a9aeb3; background-color:#b9bcbd; color:#fff;}

.paging .paging-txt{display:inline-block; margin:0 10px;}
.paging .paging-txt .num{width:40px; text-align:center;}
.paging .paging-txt em{margin:0 4px;}
.paging .paging-txt input.num::placeholder{color: rgba(0,0,0,1);}
.paging select{margin-left:12px;}


/* 검토보고서*/
.report-title{position:relative; padding:6px;}
.report-title span{font-size:16px;}
.report-title .right-btn{position:absolute; top:2px; right:10px;}

/* 검토의견 */
.description-box{ width:100%; position:relative; margin-top:20px; border:1px solid #ddddeb; border-radius:5px; overflow:hidden; box-sizing:border-box;}
.description-box .title{text-align:left;padding:10px 16px; background:#f4f5fb; color:#222; font-weight:600;}
.description-box .title i{font-size:16px; color:#323090; vertical-align:middle; margin-right:5px;}
.description-box textarea{padding:12px 16px; height:150px; color:#444;}


/* 검색폼 02*/
.search-form02 {width:100%; padding:18px 23px; border:1px solid #ddddeb; background:#f4f5fb; border-radius:3px; box-sizing: border-box;}
.bordernonetable {width:100%; }
.bordernonetable table {width:100%; white-space:nowrap;}
.bordernonetable table tbody th {text-align:left; font-size: 14px; }
.bordernonetable table tbody th i {font-size:14px; color:#e42424;}
.bordernonetable table tbody td {padding:4px 10px; text-align:left;}
.bordernonetable table.pd_large tbody td {padding:6px 10px; text-align:left;}

/* 안내 텍스트*/
.description-box02{position:relative; margin:50px auto 20px auto;padding:14px 16px; line-height:1.5; background:#fff; border:1px solid #e9e9e9; border-radius:5px; box-sizing:border-box;}
.description-box02 .title-txt{font-weight:600px; font-size:16px;}
.description-box02 .title-txt i{color:#323090;}
.description-box02 p{margin:1px 0 0 10px;;padding:0 0 0 11px; position: relative; font-size:14px}
.description-box02 p:before{content:"\e93f";position: absolute; top: 3px; left: 0; display: block;font-family : xeicon; font-size:5px; width:3px; height:3px; color:#afafaf; }


/* 그리드 테이블 리스트 색상 수정 start */
.LContentsTable .ui-state-highlight, 
.LContentsTable .ui-widget-content .ui-state-highlight,
.LContentsTable .ui-widget-header .ui-state-highlight {border: 1px solid #dcdce1 !important; background: #ebf0ff !important; }
.LContentsTable .ui-widget-content {/*border: 1px solid #dcdce1 !important;*/}
.LContentsTable .ui-jqgrid-view{border-top-color:#b6b7e1 !important;}
.LContentsTable .ui-state-default{border-color:#dcdce1 !important; background: #f4f5fb !important;}
/* // 그리드 테이블 리스트 색상 수정 end */

/* datepicker 캘린더 관련 조정*/
input.calendar{display:inline-block;}
input.calendar + img { margin:-2px 10px 0 -24px !important; cursor:pointer;}
input.calendar::-ms-clear {display: none;}
select.ui-datepicker-year,
select.ui-datepicker-month{height:20px; font-size:12px} /* datepicker 년/월 선택박스 세로값 */


/*******************  modal 팝업 *******************/
.modal-popup-area{display:none; overflow-y:auto; overflow-x:auto; position:fixed; top:0px; left:0px; width:100%; height:100%; z-index:10000; background:#000; background:rgba(0,0,0,0.55);}
.modal-popup-area .modal-pop-inner{position:absolute; display:table; width:100%; height:100%; text-align:center;}
.modal-popup-area .modal-pop-inner .modal-inner-box{position:relative;display:table-cell;vertical-align:middle; padding:24px;}
.modal-popup-area .modal-pop-inner .modal-inner-box .modal-conts{width:100%; min-width: 640px; max-width:640px; min-height:220px; margin:0 auto; padding:10px 0; background:#fff; border-radius:20px; box-shadow: 0px 2px 10px 1px rgba(0,0,0,0.35); box-sizing:border-box; }
.modal-popup-area .modal-pop-inner .modal-inner-box .modal_jqgrid{width:100%; min-width: 960px; max-width:960px; min-height:220px; margin:0 auto; padding:10px 0; background:#fff; border-radius:20px; box-shadow: 0px 2px 10px 1px rgba(0,0,0,0.35); box-sizing:border-box; }

/* popup header */
.modal-popup-area .popup-header {position:relative; width:100%; padding:0 20px 0 20px; text-align:center; box-sizing:border-box;}
.modal-popup-area .popup-header .layer-close-btn:before{content:"\e9af"; font-family: xeicon !important; font-size:22px; line-height:22px; vertical-align:top;}
.modal-popup-area .popup-header .layer-close-btn{position: absolute; right:20px; top:15px; width:24px; height:24px; cursor:pointer; z-index:99;}
.modal-popup-area .popup-header .poptitle{position:relative; margin:0; padding:16px 0 12px 0; min-height:39px; text-align:left; border-bottom:1px solid #eef2f5; color: #333; box-sizing:border-box;}
.modal-popup-area .popup-header .poptitle span{font-size:19px; font-weight:800; }
/* popup con */
.modal-popup-area .popup-conts{position:relative; margin:0 auto; font-size:14px; padding:20px 24px; text-align:left; box-sizing:border-box;}
.modal-popup-area .popup-footer{position:relative; width:100%; padding:0 20px 0 20px; text-align:center; box-sizing:border-box;}
/* 팝업 사이즈 */
.modal-conts.w1100px{ min-width: 1100px !important; max-width:1100px !important;}
.modal-conts.w540px{ min-width: 540px !important; max-width:540px !important;}
.modal-conts.w400px{ min-width: 400px !important; max-width:400px !important;} /* 2023.04.17 추가*/


/* 팝업 메세지 */
.pop-message-box{margin:20px 0;text-align:center;}
.pop-message-box p{margin:8px 0; font-size:16px; color:#222; font-weight:500;}


/*******************보고서 출력 양식 ************************/
@page { size: A4 portrait; margin:0; }  /* //A4 세로 출력*/

.wrap-print{position:relative; width:710px; margin:10px auto; background: #fff; color:#000;}
.wrap-print .print-title{font-size:16px; font-weight:600; border-bottom:1px solid #ddd; padding:8px 6px;}
.wrap-print .description-box textarea{border-left:0 !important; border-right:0 !important;border-bottom:0;}
.wrap-print .btn-wrap-box{margin:10px auto;}
.wrap-print .description-box textarea{height:180px;}
@media print{
	/* print - 보고서 미리보기 출력 */
	.wrap-print{padding:20px 0;}
	.wrap-print .print-title{display:none;}
	.wrap-print .report-title .right-btn{display:none;}
	.wrap-print .both-btn-wrap,
	.wrap-print .btn-wrap-box{display:none;}
}


/*********************************************************************************************************************************************** 
	퀵허브 style.css 파일중 필요한 소스 가져옴
	2023.03.20
************************************************************************************************************************************************/

.subTitle{padding-left:18px; position:relative; font-size:17px; font-weight:500;}
.subTitle::before {content:''; width:6px; height:6px; position:absolute; top:6px; left:0; background:none; border-radius:50%; border: 4px #323090 solid; }

/* 고스트버튼색 */
.ghostBtn,
.ghostBtn02,
.ghostBtn04,
.ghostBtn05{border:1px #7a777d solid; color:#55535c; background:#fff;}
.ghostBtn:hover,
.ghostBtn02:hover,
.ghostBtn04:hover,
.ghostBtn05:hover{background: #f9f9f9; border-color:#aaa;}

/* 기본버튼색 */
.ghostBtn00,
.basicBtn,
.basicBtn04,
.basicBtn05,
.basicBtn04_pop {border:1px solid #323090; color:#323090; background:#fff;}
.ghostBtn00:hover,
.basicBtn:hover,
.basicBtn04:hover,
.basicBtn05:hover ,
.basicBtn04_pop:hover{background: #f9f3ff; border-color:#4745c8;/* background:#efe3fa; border-color:#e3ccf8;*/}
/* 로그인화면쪽 버튼 이름은 .ghostBtn00이나 색상은 기본색상*/

/* 강조버튼색 */
.emphasisBtn,
.emphasisBtn01,
.emphasisBtn02,
.emphasisBtn03,
.emphasisBtn04,
.emphasisBtn05,
.emphasisBtn06 {background:#323090; border:1px #323090 solid; color:#fff;}
.emphasisBtn:hover,
.emphasisBtn01:hover,
.emphasisBtn02:hover,
.emphasisBtn03:hover,
.emphasisBtn04:hover,
.emphasisBtn05:hover,
.emphasisBtn06:hover{background: #4745c8; border-color:#982ffa;}

/* 비활성화버튼색 */
.disabledBtn,
.disabledBtn02,
.disabledBtn04,
.disabledBtn05 {background:#9e9e9e; border:1px #9e9e9e solid; color:#fff;}

/* 경고버튼색 */
.warningBtn,
.warningBtn04,
.warningBtn05 {background:#f7596b; border:1px #ee4659 solid; color:#fff;}
.warningBtn:hover,
.warningBtn04:hover,
.warningBtn05:hover{background: #f86e7d;}

/* 버튼 라인색 */
.btnline-lgray{border:1px solid #ccc; background:#fff;}

/* 버튼 size1 - height:40px*/
.ghostBtn,
.basicBtn,
.emphasisBtn,
.disabledBtn,
.warningBtn {min-width:60px; /*height:45px;*/ height:40px; padding:0 25px; font-size:15px;}

/* 버튼 size2 -  height:32px */
.ghostBtn05,
.basicBtn05, 
.emphasisBtn05,
.disabledBtn05,
.warningBtn05 {min-width:76px; height:32px; padding:0 15px; font-size:14px;}

/* 버튼 size3 - height:30px */
.ghostBtn04,
.emphasisBtn04,
.disabledBtn04,
.warningBtn04,
.basicBtn04,
.basicBtn04_pop {min-width:60px; height:30px; padding:0 15px; font-size:14px;}

/* 라인 없는 버튼 */
button.noUnbtn {padding:0 10px; border:0; background:none; font-size: 14px;}

/* 라인 있는 버튼 */
button.yesUnbtn {padding:3px 10px; border:0; background:none; font-size: 16px; text-decoration: underline; color:#000;}

.center {text-align:center !important ;}


/* 공통 css */
.width740 {width:740px !important; margin: 15px auto;}
.hiT40 {height: 40px;}
.mtTop0 {margin-top:0px !important;}
.mtTop3 {margin-top:3px;}
.mtTop5 {margin-top:5px !important;}
.mtTop10 {margin-top:10px !important;}
.mtTop15 {margin-top:15px !important;}
.mtTop20 {margin-top:20px !important;}
.mtTop21 {margin-top:21px !important;}

.mtTop10-pop {margin-top:10px;}
.mtTop21-pop {margin-top:21px;}

.mtTop30 {margin-top:30px !important;}
.mtTop36 {margin-top:36px !important;}
.mtTop45 {margin-top:45px !important;}
.mtTop60 {margin-top:60px !important;}
.mtTop80 {margin-top:80px !important;}

.mtBot5 {margin-bottom:5px;}
.mtBot15 {margin-bottom:15px !important;}
.mtBot35 {margin-bottom:35px;}
.mtLef5 {margin-left:5px;}
.mtLef7 {margin-left:7px;}
.mtLef15 {margin-left:15px;}
.mtRtf5 {margin-right:5px; margin-top:-2px;}
.mtRtf15 {margin-right:15px;}
.mt2020 {margin:20px 0;}
.mt50090 {margin:5px 0 0 90px!important ;}
.mt1014 {margin:10px 0 0 14px!important ;}
.pDg0 {padding:0 0 0 10px !important ;}
.pDg30 {padding-top: 30px !important ;}
.pDr10 {padding-right:10px;}
.pr01 {position:relative;/* top:3px; */ left: 10px;}
.pr02 {position:relative; /*top:2px; */ left: 0;}
.pr03 {position:relative;/* top:3px; */}
.pr001 {position:relative; top:1px !important; }
.flR10 {margin-top:20px; float: right; clear:both;}
.flR20 {margin-top:10px; float: right; clear:both;}
.flL10 {margin-top:10px; float: left !important; clear:both;}
.flL101 {margin-top:10px; float: left !important;}
.borderNone {border: 0;}
.font12 {font-size:12px !important;}
.font13 {font-size:13px !important;}
.font14 {font-size:14px !important;}
.font15 {font-size:15px !important;}
.font16 {font-size:16px !important;}
.font18 {font-size:18px !important;}
.verTop {vertical-align: top  !important;}
.verBot {vertical-align: bottom  !important;}
.lrpd5 {padding:0 5px 0 5px !important; vertical-align: middle !important;}
.rpd5 {padding:0 5px 0 0 !important; vertical-align: middle !important;}
.lpd5 {padding:0 0 0 5px !important; vertical-align: middle !important;}

.mgauto-t35-b10{margin:35px auto 10px auto !important;}
.mgauto-t50-b10{margin:50px auto 10px auto !important;}

/* 모달팝업 */

/* modal popup title 영역 정리 */
.modal-content .warpHead01 {text-align:center;} /* 우측닫기버튼 없는 모달 팝업 타이틀 정렬*/
.warpHead01 {background:#fff;padding: 0 0 0 2px;text-align: left;font-size:20px;font-weight:600;color:#3f4046;margin: 0 20px;border-bottom: 1px solid #dddddd;}
.warpHead01::after {content:''; display:block; clear:both;}
.warpHead01 strong {padding:10px 5px; display:inline-block;line-height:1.8; font-weight:700;}
.warpHead01 .close01 {position:relative;top:10px;right: 5px;color: #aaa;float: right;font-weight: bold;cursor: pointer;}

/* modal popup borderTable03 글자사이즈 줄임 */
.modal .borderTable03 table thead th,
.modal01 .borderTable03 table thead th,
.modal02 .borderTable03 table thead th{font-size: 13px; }
.modal .borderTable03 table tbody td,
.modal01 .borderTable03 table tbody td,
.modal02 .borderTable03 table tbody td{font-size: 12px; }


/* The Modal (background) */
        .modal {
            display: block; /* Hidden by default */
            position: fixed; /* Stay in place */
            z-index: 10000; /* Sit on top */
            left: 0;
            top: 0;
            width: 100%; /* Full width */
            height: 100%; /* Full height */
            overflow: auto; /* Enable scroll if needed */
            background-color: rgb(0,0,0); /* Fallback color */
            background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
        }
    
        /* Modal Content/Box */
        .modal-content {
            background-color: #fefefe;
            margin: 8% auto; /* 15% from the top and centered */
            border-radius: 5px;
            border: 1px solid #888;
            width: 540px; /* Could be more or less, depending on screen size */                          
        }
.modal-content .warpText {padding:20px 20px 30px 20px;/* border-top:1px #bcc8db solid;*/ line-height:1.5; font-size:14px; /*font-weight:200;*/color:#3f4046;}
.modal-content .warpText .textBox01 em {display:block; text-align:center; font-size:14px; }
.modal-content .warpText .textBox01 .title {margin-bottom:5px; text-align:left; font-size:18px; font-weight:400; color:#323090; text-decoration: underline;}
.modal-content .warpText .textBox01 .title p {width:100%; position:relative; z-index: 1;} 
/*.modal-content .warpText .textBox01 .title p::before {content: ''; width:100%; height:8px; position:absolute; bottom:0; background:#e5f6f5; z-index: -1;}*/
.modal-content .warpText .textBox01 .text p {margin:5px 0; font-size:15px;font-weight: 400;}
.modal-content .warpText .textBox01 .text p span.red {color:#e42424;}
.modal-content .warpText .textBox01 .text p.font18 { font-size:18px; font-weight:400;}
.popBtnbox {margin-top:15px; text-align:center;}
.popBtnbox button.btn01 { 
    width: 85px;
    height: 30px;
    border: 1px #699b74 solid;
    background: #3ba554;
    font-size: 12px;
    text-align: center;
    color: #fff;
}

/* 모달팝업 */
/* The Modal (background) */
        .modal01 {
            display: block; /* Hidden by default */
            position: fixed; /* Stay in place */
            z-index: 10000; /* Sit on top */
            left: 0;
            top: 0;
            width: 100%; /* Full width */
            height: 100%; /* Full height */
            overflow: auto; /* Enable scroll if needed */
            background-color: rgb(0,0,0); /* Fallback color */
            background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
        }
    
        /* Modal Content/Box */
        .modal-content01 {
            background-color: #fefefe;
            margin: 14% auto; /* 15% from the top and centered */
            border-radius: 5px;
            border: 1px solid #888;
            width: 640px; /* Could be more or less, depending on screen size */                          
        }

.modal-content01 .warpText {padding:30px 32px 30px 32px;/* border-top:1px #bcc8db solid;*/ line-height:1.5; font-size:14px;/* font-weight:200;*/ color:#3f4046;}
.modal-content01 .warpText ul.modalBtnbox {}
.modal-content01 .warpText ul.modalBtnbox::after {content:''; display:block; clear:both;}
.modal-content01 .warpText ul.modalBtnbox li {width:269px; height:130px; margin-right:37px; display:block; float:left; border:1px #dcdce1 solid; border-radius:5px; box-sizing:border-box;     text-align: center; font-size:20px; font-weight:400; cursor: pointer;}
.modal-content01 .warpText ul.modalBtnbox li:hover {background: #f6f7f7;}
.modal-content01 .warpText ul.modalBtnbox li.last {margin:0;}
.modal-content01 .warpText ul.modalBtnbox li i {margin-top: 26px; display:block;}
.modal-content01 .warpText ul.modalBtnbox li span {display:block;}
.modal-content01 .warpText p {margin:30px 0; font-size:15px; font-weight: 400;}
.modal-content01 .warpText p.text0101 {margin:10px 0; font-size:18px; font-weight: 400;}
.modal-content01 .warpText .bordernonetable {width:100%; /*margin-top:5px;*/}
.modal-content01 .warpText .bordernonetable table {width:100%;}
.modal-content01 .warpText .bordernonetable table tbody th {text-align:left; font-size: 14px; font-weight: 700;}
.modal-content01 .warpText .bordernonetable table tbody th i {font-size:14px; color:#e42424;}
.modal-content01 .warpText .bordernonetable table tbody td {padding:3px 10px; text-align:left; font-size: 13px; font-weight: 400;}
.modal-content01 .warpText .bordernonetable table tbody td input.form-control { width:353px;/* height: 40px; padding: 0 10px; position:relative; border: 1px #bfccc9 solid; box-sizing: border-box; font-size: 14px;*/}
.modal-content01 .warpText .bordernonetable table tbody td input.form-control01 { width:437px;/* height: 40px; padding: 0 10px; position:relative; border: 1px #bfccc9 solid; box-sizing: border-box; font-size: 14px;*/}
.modal-content01 .warpText .bordernonetable table tbody td input.form-control02 { width:245px;/* height: 35px;position:relative; border: 1px #bfccc9 solid; box-sizing: border-box; font-size: 14px;*/}
.modal-content01 .warpText .bordernonetable table tbody td select.form-control { width:437px;/* height: 40px; position:relative; border: 1px #bfccc9 solid; box-sizing: border-box; font-size: 14px;*/}
.modal-content01 .warpText .bordernonetable table tbody td select.form-control01 { width:115px; /*height: 35px;  position:relative; border: 1px #bfccc9 solid; box-sizing: border-box; font-size: 14px;*/}
.modal-content01 .warpText .warpSearchbox {width:605px; margin:0 auto; padding:10px 15px; background:#f6f8f8; border:1px #f2f3f3 solid; box-sizing:border-box;}

.modal-content01 .warpText .bordernonetable table tbody td span.fileInput {position:relative; cursor:pointer; display:inline-block; vertical-align:middle;  background:#fff; text-align:left;}
.modal-content01 .warpText .bordernonetable table tbody td span.fileInput label input {position:absolute; width:0; height:0; overflow:hidden;}


.modal-content01 .warpText .bordernonetable table tbody td span.fileInput .file_input_textbox {
    float:left;
     width:353px; height:40px; position:relative;border: 1px #bfccc9 solid; box-sizing: border-box; margin-top: 0px !important; 
}
.modal-content01 .warpText .bordernonetable table tbody td span.fileInput .file_input_div {
    position:relative;
    width:82px;
    height:auto;
    overflow:hidden;
}

.modal-content01 .warpText .bordernonetable table tbody td span.fileInput .file_input_hidden {
    font-size:29px;
    position:absolute;
    right:0px;
    top:0px;
    opacity:0;
    filter: alpha(opacity=0);
    -ms-filter: alpha(opacity=0);
    cursor:pointer;
}

.modal-content01_pop .warpText {padding:20px 20px 30px 20px; border-top:1px #bcc8db solid; line-height:1.5; font-size:14px; /*font-weight:200;*/ color:#3f4046;}
.modal-content01_pop .warpText ul.modalBtnbox {margin:15px 0;}
.modal-content01_pop .warpText ul.modalBtnbox::after {content:''; display:block; clear:both;}
.modal-content01_pop .warpText ul.modalBtnbox li {width:269px; height:130px; margin-right:37px; display:block; float:left; border:1px #dcdce1 solid; border-radius:5px; box-sizing:border-box;     text-align: center; font-size:20px; font-weight:400; cursor: pointer;}
.modal-content01_pop .warpText ul.modalBtnbox li.form-control {width:275px; height:130px; margin-right:30px; display:block; float:left; border:1px #dcdce1 solid; border-radius:5px; box-sizing:border-box;     text-align: center; font-size:20px; font-weight:400; cursor: pointer;}
.modal-content01_pop .warpText ul.modalBtnbox li:hover {background: #f6f7f7;}
.modal-content01_pop .warpText ul.modalBtnbox li.last {margin:0;}
.modal-content01_pop .warpText ul.modalBtnbox li i {margin-top: 26px; display:block;}
.modal-content01_pop .warpText ul.modalBtnbox li span {display:block;}
.modal-content01_pop .warpText p {margin:30px 0; font-size:15px; font-weight: 400;}
.modal-content01_pop .warpText p.text0101 {margin:10px 0; font-size:18px; font-weight: 400;}
.modal-content01_pop .warpText .bordernonetable {width:100%; /*margin-top:5px;*/}
.modal-content01_pop .warpText .bordernonetable table {width:100%;}
.modal-content01_pop .warpText .bordernonetable table tbody th {text-align:left; font-size: 14px; }
.modal-content01_pop .warpText .bordernonetable table tbody th i {font-size:14px; color:#e42424;}
.modal-content01_pop .warpText .bordernonetable table tbody td {/*min-height:60px;*/ padding:3px 10px; text-align:left; font-size: 13px; font-weight: 400;}
.modal-content01_pop .warpText .bordernonetable table tbody td input.form-control { width:353px; /*height: 40px; padding: 0 10px; position:relative; border: 1px #bfccc9 solid; box-sizing: border-box; font-size: 14px;*/}
.modal-content01_pop .warpText .bordernonetable table tbody td input.form-control01 { width:437px;/* height: 45px; padding: 0 10px; position:relative; border: 1px #bfccc9 solid; box-sizing: border-box; font-size: 14px;*/}
.modal-content01_pop .warpText .bordernonetable table tbody td input.form-control02 { width:245px; /*height: 35px;position:relative; border: 1px #bfccc9 solid; box-sizing: border-box; font-size: 14px;*/}
.modal-content01_pop .warpText .bordernonetable table tbody td select.form-control { width:437px;/* height: 40px; position:relative; border: 1px #bfccc9 solid; box-sizing: border-box; font-size: 14px;*/}
.modal-content01_pop .warpText .bordernonetable table tbody td select.form-control01 { width:115px; /*height: 35px;  position:relative; border: 1px #bfccc9 solid; box-sizing: border-box; font-size: 14px;*/}
.modal-content01_pop .warpText .warpSearchbox {width:605px; margin:0 auto; padding:10px 15px; background:#f6f8f8; border:1px #f2f3f3 solid; box-sizing:border-box;}

.modal-content01_pop .warpText .bordernonetable table tbody td span.fileInput {position:relative; cursor:pointer; display:inline-block; vertical-align:middle;  background:#fff; text-align:left;}
.modal-content01_pop .warpText .bordernonetable table tbody td span.fileInput label input {position:absolute; width:0; height:0; overflow:hidden;}


.modal-content01_pop .warpText .bordernonetable table tbody td span.fileInput .file_input_textbox {
    float:left;
     width:353px; height:45px; position:relative;border: 1px #bfccc9 solid; box-sizing: border-box; margin-top: 0px !important; 
}
.modal-content01_pop .warpText .bordernonetable table tbody td span.fileInput .file_input_div {
    position:relative;
    width:82px;
    height:auto;
    overflow:hidden;
}

.modal-content01_pop .warpText .bordernonetable table tbody td span.fileInput .file_input_hidden {
    font-size:29px;
    position:absolute;
    right:0px;
    top:0px;
    opacity:0;
    filter: alpha(opacity=0);
    -ms-filter: alpha(opacity=0);
    cursor:pointer;
}

/* 모달팝업 */
/* The Modal (background) */
        .modal02 {
            display: block; /* Hidden by default */
            position: fixed; /* Stay in place */
            z-index: 10000; /* Sit on top */
            left: 0;
            top: 0;
            width: 100%; /* Full width */
            height: 100%; /* Full height */
            overflow: auto;  /* Enable scroll if needed */
            background-color: rgb(0,0,0); /* Fallback color */
            background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
        }
    
        /* Modal Content/Box */
        .modal-content02 {
            background-color: #fefefe;
            margin: 5% auto; /* 15% from the top and centered */
            border-radius: 5px;
            border: 1px solid #888;
            width: 640px; /* Could be more or less, depending on screen size */    
			position:relative; /* 20220921 추가 */                      
        }

.modal-content02 .warpText {padding:20px 20px 30px 20px;/* border-top:1px #bcc8db solid; */line-height:1.5;font-size:14px;/* font-weight:200; */color:#3f4046;}
.modal-content02 .warpText ul.modalBtnbox {margin:15px 0;}
.modal-content02 .warpText ul.modalBtnbox::after {content:''; display:block; clear:both;}
.modal-content02 .warpText ul.modalBtnbox li {width:275px; height:130px; margin-right:30px; display:block; float:left; border:1px #dcdce1 solid; border-radius:5px; box-sizing:border-box;     text-align: center; font-size:20px; font-weight:400; cursor: pointer;}
.modal-content02 .warpText ul.modalBtnbox li:hover {background: #f6f7f7;}
.modal-content02 .warpText ul.modalBtnbox li.last {margin:0;}
.modal-content02 .warpText ul.modalBtnbox li i {margin-top: 26px; display:block;}
.modal-content02 .warpText ul.modalBtnbox li span {display:block;}
.modal-content02 .warpText p {margin:30px 0; font-size:15px; font-weight: 400;}
.modal-content02 .warpText p.text {margin:10px 0; text-align:right; font-size:15px; font-weight: 400;}
.modal-content02 .warpText p.text01 {margin:10px 0; text-align:left; font-size:18px; font-weight:400;}
.modal-content02 .warpText p.text0101 {margin:10px 0; text-align:left; font-size:22px; font-weight:400;}
.modal-content02 .warpText p.text03 {margin:5px 0; text-align:left; font-size:16px; font-weight:400;}
.modal-content02 .warpText .bordernonetable {width:100%; /*margin-top:5px;*/}
.modal-content02 .warpText .bordernonetable table {width:100%;}
.modal-content02 .warpText .bordernonetable table tbody th {text-align:left; font-size: 14px; }
.modal-content02 .warpText .bordernonetable table tbody th i {font-size:14px; color:#e42424;}
.modal-content02 .warpText .bordernonetable table tbody td {padding:3px 2px; text-align:left; font-size: 13px; font-weight: 400;}
.modal-content02 .warpText .bordernonetable table tbody td input.form-control { width:353px;/* height: 40px; padding: 0 10px; position:relative; border: 1px #bfccc9 solid; box-sizing: border-box;*/}
.modal-content02 .warpText .bordernonetable table tbody td input.form-control01 { width:437px;/* height: 40px; padding: 0 10px; position:relative; border: 1px #bfccc9 solid; box-sizing: border-box;*/}
.modal-content02 .warpText .bordernonetable table tbody td input.form-control-gly { width:355px;/* height: 35px; padding: 0 10px; position:relative; background:#eff2f1; border: 1px #bfccc9 solid; box-sizing: border-box;*/}
.modal-content02 .warpText .bordernonetable table tbody td input.form-control02 { width:230px;/* height: 35px;position:relative; border: 1px #bfccc9 solid; box-sizing: border-box;*/}
.modal-content02 .warpText .bordernonetable table tbody td select.form-control { width:437px;/* height: 40px; position:relative; border: 1px #bfccc9 solid; box-sizing: border-box;*/}
.modal-content02 .warpText .bordernonetable table tbody td select.form-control01 { width:100%;/*height: 35px;  position:relative; border: 1px #bfccc9 solid; box-sizing: border-box;*/}
.modal-content02 .warpText .warpSearchbox {/* width:605px; */margin:0 auto;padding:5px 15px;background:#f6f8f8;border:1px #f2f3f3 solid;box-sizing:border-box;}
.bottomBtnbox01 {width: 605px; margin: 10px auto;}
.bottomBtnbox01::after {content:''; display:block; clear:both;}
.bottomBtnbox01 span.leftbox {display:block; float:left;}
.bottomBtnbox01 span.leftbox i {position:relative; top:2px;}
.bottomBtnbox01 span.leftbox p {margin-bottom:6px; font-size:16px; font-weight: 400;}
.bottomBtnbox01 span.leftbox p b {margin-bottom:3px; display:inline-block; font-size:16px; font-weight: bold;} 
.bottomBtnbox01 span.leftbox strong {margin-left: 20px;font-weight: 400; font-style:normal;}
.bottomBtnbox01 span.leftbox select.form-control01 { width:160px; height: 35px;  position:relative; border: 1px #bfccc9 solid; box-sizing: border-box; font-size: 14px;}
 
.bottomBtnbox01 i.icon01 {position:relative; top: -1px;}
.bottomBtnbox01 span.rightbox {display:block; float:right;}
.gridBox {width:605px; margin:10px auto; padding:10px 15px;border:1px #f2f3f3 solid; box-sizing:border-box;}
.bottomBtnbox01 span.rightbox select.form-control01 {height:25px;}

.gridBox01 {/*width:930px;*/ width:100%; margin:10px auto;}
.gridBox01-pop {width:930px; margin:10px auto; border:1px #f2f3f3 solid; box-sizing:border-box;}

.modal-content02 .borderTable07 {width:100%; margin-top:6px; border-top:2px #323090 solid;}
.modal-content02 .borderTable07 table {width:100%;}
.modal-content02 .borderTable07 table tbody td {padding: 10px; border-bottom: 1px #dcdce1 solid; border-left:1px #dcdce1 solid; box-sizing:border-box; text-align:left; font-size: 15px; font-weight: 400;}
.modal-content02 .borderTable07 table tbody td input.form-control { width: 172px; height: 30px; padding: 0 10px; position:relative; border: 1px #bfccc9 solid; box-sizing: border-box; font-size: 12px;}
.modal-content02 .borderTable07 table tbody td input.form-control-gly { width:355px; height: 35px; padding: 0 10px; position:relative; background:#eff2f1; border: 1px #bfccc9 solid; box-sizing: border-box; font-size: 12px;}
.modal-content02 .borderTable07 table tbody td input.form-control02 { width:56px; height: 30px; padding: 0 10px; position:relative; border: 1px #bfccc9 solid; box-sizing: border-box; font-size: 12px;}
.modal-content02 .borderTable07 table tbody td input.form-control0202 { width:66px; height: 30px; padding: 0 10px; position:relative; border: 1px #bfccc9 solid; box-sizing: border-box; font-size: 12px;}
.modal-content02 .borderTable07 table tbody td input.form-control03 { width:45px; height: 30px; padding: 0 10px; position:relative; border: 1px #bfccc9 solid; box-sizing: border-box; font-size: 12px;}
.modal-content02 .borderTable07 table tbody td input.form-control04 { width:406px; height: 30px; padding: 0 10px; position:relative; border: 1px #bfccc9 solid; box-sizing: border-box; font-size: 12px;}
.modal-content02 .borderTable07 table tbody td input.form-control05 { width:82px; height: 30px; padding: 0 10px; position:relative; border: 1px #bfccc9 solid; box-sizing: border-box; font-size: 12px;}
.modal-content02 .borderTable07 table tbody td input.form-control06 { width:220px; height: 30px; padding: 0 10px; position:relative; border: 1px #bfccc9 solid; box-sizing: border-box; font-size: 12px;}
.modal-content02 .borderTable07 table tbody td input.form-control07 { width:183px; height: 30px; padding: 0 10px; position:relative; border: 1px #bfccc9 solid; box-sizing: border-box; font-size: 12px;}
.modal-content02 .borderTable07 table tbody td input.form-control08 { width:230px; height: 30px; padding: 0 10px; position:relative; border: 1px #bfccc9 solid; box-sizing: border-box; font-size: 12px;}
.modal-content02 .borderTable07 table tbody td input.form-control09 { width:382px; height: 30px; padding: 0 10px; position:relative; border: 1px #bfccc9 solid; box-sizing: border-box; font-size: 12px;}
.modal-content02 .borderTable07 table tbody td input.form-control10 { width:313px; height: 30px; padding: 0 10px; position:relative; border: 1px #bfccc9 solid; box-sizing: border-box; font-size: 12px;}
.modal-content02 .borderTable07 table tbody td input.form-control11 { width:88px; height: 30px; padding: 0 10px; position:relative; border: 1px #bfccc9 solid; box-sizing: border-box; font-size: 12px;}
.modal-content02 .borderTable07 table tbody td select.form-control02 { width:172px; height: 30px;  position:relative; border: 1px #bfccc9 solid; box-sizing: border-box; font-size: 12px; vertical-align:middle;}
.modal-content02 .borderTable07 table tbody td select.form-control03 { width:66px; height: 30px;  position:relative; border: 1px #bfccc9 solid; box-sizing: border-box; font-size: 12px;}
.modal-content02 .borderTable07 table tbody td select.form-control04 { width:382px; height: 30px;  position:relative; border: 1px #bfccc9 solid; box-sizing: border-box; font-size: 12px;}
.modal-content02 .borderTable07 table tbody td select.form-control05 { width:139px; height: 30px;  position:relative; border: 1px #bfccc9 solid; box-sizing: border-box; font-size: 12px; vertical-align:middle;}
.modal-content02 .borderTable07 table tbody td textarea { width:483px; height: 60px; padding: 0 10px; position:relative; border: 1px #bfccc9 solid; box-sizing: border-box; font-size: 14px; resize:none; resize: vertical; background: #fff;}
.modal-content02 .borderTable07 table tbody td textarea.form-control01  { width:382px; height: 60px; padding: 0 10px; position:relative; border: 1px #bfccc9 solid; box-sizing: border-box; font-size: 14px; resize:none; resize: vertical;}
.modal-content02 .borderTable07 table tbody td button.ghostBtn {min-width: 20px; height: 28px; padding: 0 7px; border:1px #777d7c solid; box-sizing:border-box; text-align:center; font-size:16px; color:#535c59; z-index: 9;}
.modal-content02 .borderTable07 table tbody td button.ghostBtn:hover {background: #ecefef;}
.modal-content02 .borderTable07 table tbody td i {    margin-left:5px; font-size:13px; color:#e42424;}
.modal-content02 .borderTable07 table tbody th {padding: 5px; border-bottom: 1px #dcdce1 solid;box-sizing:border-box; text-align: left; font-size: 13px; font-weight: bold;}
.modal-content02 .borderTable07 table tbody th.leftborder {border-left:  1px #dcdce1 solid;box-sizing:border-box;}
.modal-content02 .borderTable07 table tbody th i {font-size:13px; color:#e42424;}
.modal-content02 .borderTable07 table tbody th.border-right{border-right: 1px #dcdce1 solid;}
.modal-content02 .borderTable07 table tbody td i {font-size:13px; color:#e42424;}
.modal-content02 .borderTable07 table tbody th.border-lefr {border-left: 1px #dcdce1 solid;box-sizing:border-box;}
.modal-content02 .borderTable07 table tbody td.border-lefr-none {border-left: 0;}
.modal-content02 .borderTable07 table tbody td span.text12 {display:block;  font-size:12px;}
.modal-content02 .borderTable07 table tbody th i.none {margin-left: 6px; display:inline-block;}

.modal-content02 .borderTable07-pop {width:100%; margin-top:6px; border-top:2px #323090 solid;}
.modal-content02 .borderTable07-pop table {width:100%;}
.modal-content02 .borderTable07-pop table tbody td {padding: 10px; border-bottom: 1px #dcdce1 solid; border-left:1px #dcdce1 solid; box-sizing:border-box; text-align:left; font-size: 15px; font-weight: 400;}
.modal-content02 .borderTable07-pop table tbody td input.form-control { width: 172px; height: 30px; padding: 0 10px; position:relative; border: 1px #bfccc9 solid; box-sizing: border-box; font-size: 14px;}
.modal-content02 .borderTable07-pop table tbody td input.form-control-gly { width:355px; height: 35px; padding: 0 10px; position:relative; background:#eff2f1; border: 1px #bfccc9 solid; box-sizing: border-box; font-size: 14px;}
.modal-content02 .borderTable07-pop table tbody td input.form-control02 { width:56px; height: 30px; padding: 0 10px; position:relative; border: 1px #bfccc9 solid; box-sizing: border-box; font-size: 12px;}
.modal-content02 .borderTable07-pop table tbody td input.form-control0202 { width:66px; height: 30px; padding: 0 10px; position:relative; border: 1px #bfccc9 solid; box-sizing: border-box; font-size: 12px;}
.modal-content02 .borderTable07-pop table tbody td input.form-control03 { width:45px; height: 30px; padding: 0 10px; position:relative; border: 1px #bfccc9 solid; box-sizing: border-box; font-size: 12px;}
.modal-content02 .borderTable07-pop table tbody td input.form-control04 { width:382px; height: 30px; padding: 0 10px; position:relative; border: 1px #bfccc9 solid; box-sizing: border-box; font-size: 12px;}
.modal-content02 .borderTable07-pop table tbody td input.form-control05 { width:82px; height: 30px; padding: 0 10px; position:relative; border: 1px #bfccc9 solid; box-sizing: border-box; font-size: 12px;}
.modal-content02 .borderTable07-pop table tbody td input.form-control06 { width:220px; height: 30px; padding: 0 10px; position:relative; border: 1px #bfccc9 solid; box-sizing: border-box; font-size: 12px;}
.modal-content02 .borderTable07-pop table tbody td input.form-control07 { width:183px; height: 30px; padding: 0 10px; position:relative; border: 1px #bfccc9 solid; box-sizing: border-box; font-size: 12px;}
.modal-content02 .borderTable07-pop table tbody td input.form-control08 { width:230px; height: 30px; padding: 0 10px; position:relative; border: 1px #bfccc9 solid; box-sizing: border-box; font-size: 12px;}
.modal-content02 .borderTable07-pop table tbody td input.form-control09 { width:382px; height: 30px; padding: 0 10px; position:relative; border: 1px #bfccc9 solid; box-sizing: border-box; font-size: 12px;}
.modal-content02 .borderTable07-pop table tbody td input.form-control10 { width:313px; height: 30px; padding: 0 10px; position:relative; border: 1px #bfccc9 solid; box-sizing: border-box; font-size: 12px;}
.modal-content02 .borderTable07-pop table tbody td input.form-control11 { width:88px; height: 30px; padding: 0 10px; position:relative; border: 1px #bfccc9 solid; box-sizing: border-box; font-size: 12px;}
.modal-content02 .borderTable07-pop table tbody td select.form-control02 { width:172px; height: 30px;  position:relative; border: 1px #bfccc9 solid; box-sizing: border-box; font-size: 12px; vertical-align:middle;}
.modal-content02 .borderTable07-pop table tbody td select.form-control03 { width:66px; height: 30px;  position:relative; border: 1px #bfccc9 solid; box-sizing: border-box; font-size: 12px;}
.modal-content02 .borderTable07-pop table tbody td select.form-control04 { width:382px; height: 30px;  position:relative; border: 1px #bfccc9 solid; box-sizing: border-box; font-size: 14px;}
.modal-content02 .borderTable07-pop table tbody td select.form-control05 { width:139px; height: 30px;  position:relative; border: 1px #bfccc9 solid; box-sizing: border-box; font-size: 12px; vertical-align:middle;}
.modal-content02 .borderTable07-pop table tbody td textarea { width:483px; height: 60px; padding: 0 10px; position:relative; border: 1px #bfccc9 solid; box-sizing: border-box; font-size: 14px; resize:none; resize: vertical; background: #fff;}
.modal-content02 .borderTable07-pop table tbody td textarea.form-control01 { width:474px; height: 60px; padding: 0 10px; position:relative; border: 1px #bfccc9 solid; box-sizing: border-box; font-size: 14px; resize:none; resize: vertical;}
.modal-content02 .borderTable07-pop table tbody td button.ghostBtn {min-width: 20px; height: 28px; padding: 0 7px; border:1px #777d7c solid; box-sizing:border-box; text-align:center; font-size:16px; color:#535c59; z-index: 9;}
.modal-content02 .borderTable07-pop table tbody td button.ghostBtn:hover {background: #ecefef;}
.modal-content02 .borderTable07-pop table tbody td i {    margin-left:5px; font-size:13px; color:#e42424;}
.modal-content02 .borderTable07-pop table tbody th {padding: 5px; border-bottom: 1px #dcdce1 solid;box-sizing:border-box; text-align: left; font-size: 13px; font-weight: bold;}
.modal-content02 .borderTable07-pop table tbody th.leftborder {border-left:  1px #dcdce1 solid;box-sizing:border-box;}
.modal-content02 .borderTable07-pop table tbody th i {font-size:13px; color:#e42424;}
.modal-content02 .borderTable07-pop table tbody th.border-right{border-right: 1px #dcdce1 solid;}
.modal-content02 .borderTable07-pop table tbody td i {font-size:13px; color:#e42424;}
.modal-content02 .borderTable07-pop table tbody th.border-lefr {border-left: 1px #dcdce1 solid;box-sizing:border-box;}
.modal-content02 .borderTable07-pop table tbody td.border-lefr-none {border-left: 0;}
.modal-content02 .borderTable07-pop table tbody td span.text12 {display:block;  font-size:12px;}
.modal-content02 .borderTable07-pop table tbody th i.none {margin-left: 6px; display:inline-block;}

input.form-control-gly { width: 160px; height: 30px; padding: 0 10px; position:relative; background:#eff2f1; border: 1px #bfccc9 solid; box-sizing: border-box; font-size: 12px;}
input.form-control-gly-pop { width: 160px; height: 30px; padding: 0 10px; position:relative; background:#eff2f1; border: 1px #bfccc9 solid; box-sizing: border-box; font-size: 14px;}

.modal-content02 .titleBox01 {margin-top:15px; position:relative;}
.modal-content02 .titleBox01 dl::after {content:''; display:block; clear:both;}
.modal-content02 .titleBox01 dl dt {padding-left:18px; position:relative; float:left; font-size:17px; font-weight:500;}
.modal-content02 .titleBox01 dl dt::before {content:''; width:6px; height:6px; position:absolute; top:7px; left:0; background:#fff; border-radius:50%; border: 4px #323090 solid;}
.modal-content02 .titleBox01 dl dd {padding-left: 25px; float:right; font-size: 16px; font-weight: 400;}
.modal-content02 .titleBox01 dl dd span {margin:20px 0; display:block; font-weight:500; }

.textRit {text-align: right !important ;}
.textCenr {text-align:center !important ;}
.hit60 {height:60px; font-size:16px !important;}

.modal-content02 .warpText .giyBox{padding:10px; background:#f6f8f8; border: 1px #f3f3f3 solid; box-sizing: border-box; font-size: 16px; font-weight:400; }
.modal-content02 .warpText .giyBox em {color:#e42424;}

.modal-content02 .warpText .giyBox01{margin-top:15px; padding:10px; background:#f6f8f8; border: 1px #f3f3f3 solid; box-sizing: border-box; font-size: 14px; font-weight:400; }
.modal-content02 .warpText .giyBox01::after {content:''; display:block; clear:both;}
.modal-content02 .warpText .giyBox01 .leftBx {display:block; float:left;}
.modal-content02 .warpText .giyBox01 .rightBx {margin-top:5px; display:block; float:right;}



/* 모달팝업 */
/* The Modal (background) */
        .modal03 {
            display: block; /* Hidden by default */
            position: fixed; /* Stay in place */
            z-index: 10000; /* Sit on top */
            left: 0;
            top: 0;
            width: 100%; /* Full width */
            height: 100%; /* Full height */
            overflow: auto; /* Enable scroll if needed */
            background-color: rgb(0,0,0); /* Fallback color */
            background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
        }
    
        /* Modal Content/Box */
        .modal-content03 {
            background-color: #fefefe;
            margin: 5% auto; /* 15% from the top and centered */
            border-radius: 5px;
            border: 1px solid #888;
            width: 640px; /* Could be more or less, depending on screen size */                          
        }
.modal-content03 .warpText p.text01 {margin:10px 0; text-align:center; font-size:22px; font-weight:400;}

/*************************************************** //end 퀵허브 style.css 파일중 필요한 소스 가져옴 *************************************************************************/

/* 2023.04.10 그리드 테이블 리스트 색상 수정 start */
.gridparent .ui-state-highlight, 
.gridparent .ui-widget-content .ui-state-highlight,
.gridparent .ui-widget-header .ui-state-highlight {border: 1px solid #dcdce1 !important; background: #ecf3ff !important; }
.gridparent .ui-jqgrid-view{border-top-color:#000 !important;}
.gridparent .ui-state-default{border-color:#dcdce1 !important; background: #fbfafd !important;}

.ui-jqgrid-jquery-ui .ui-state-highlight, 
.ui-jqgrid-jquery-ui .ui-widget-content .ui-state-highlight,
.ui-jqgrid-jquery-ui .ui-widget-header .ui-state-highlight {border: 1px solid #dcdce1 !important; background: #ecf3ff !important; }
.ui-jqgrid-jquery-ui .ui-jqgrid-view{border-top-color:#000 !important;}
.ui-jqgrid-jquery-ui .ui-state-default{border-color:#dcdce1 !important; background: #fbfafd !important;}
/* //2023.04.10 그리드 테이블 리스트 색상 수정 end */


/* 2023.04.12 고용증대세액계산 테이블 강조보더 구분라인 추가*/
.bd-top-b{border-top:2px solid #6568ea !important;}
.bd-bottom-b{border-bottom:2px solid #6568ea !important;}
.bd-left-b{border-left:2px solid #6568ea !important;}
.bd-right-b{border-right:2px solid #6568ea !important;}


/* 2023.04.12 테이블 셀 하이라이트 컬러*/
.admin-tbl-type01.bd-top-type1 {border-top:none;}
.admin-tbl-type01.tb-spacde th.al {padding-left:7px !important;}
.highlight-bg01{background: #fff9e1 !important;}
.highlight-bg02{background: #eef3ff !important;}
.disabled-bg01{background:#f5f6f9 !important;color:#444 !important;}
td.disabled{color:#444 !important;}


/******* input- file 첨부파일 선택(2023.04.17) *******/
.filebox input[type="file"] {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	border: 0;
}
.filebox label {
	display: inline-block;
	padding: 0 10px;
	border-radius: 2px;
	line-height:26px;
	height:28px;
	color:#222;
	font-weight:500;
	font-size: 14px;
	background-color: #fff;
	cursor: pointer;
	border: 1px solid #777d7c;
	vertical-align:top;
} /* named upload */
.filebox .upload-name {
	width:25%;
	display: inline-block;
	padding: 0 6px; /* label의 패딩값과 일치 */
	line-height:1.2;
	height:28px;
	vertical-align:top;
	font-size: 14px;
	background-color: #f5f5f5;
	border:1px solid #bfccc9;
	-webkit-appearance: none; /* 네이티브 외형 감추기 */
	-moz-appearance: none;
	appearance: none;
}
.filebox [disabled="disabled"]{background:#fff !important; color: #444 !important; border-color: #cfcfcf !important;}



/* 2023.05.02 간편보고서 테이블 인풋/패딩등 조절 */
.pd-zero-input td,
.pd-zero-input{padding:0 !important;}
.pd-zero-input .input-bd{height:35px !important; background-color:transparent !important; border-color:transparent !important; font-size:13px; padding-right:7px; border-radius:0 !important;}
.pd-zero-input .input-bd:focus{background: #eef3ff !important; border:1px solid #000 !important;}
.pd-zero-input .input-bd[disabled="disabled"],
.pd-zero-input .input-bd[disabled]{color: #333 !important; background:transparent !important; border:none !important; pointer-events: none;}
.pd-txt{padding-left:7px !important; padding-right:7px !important;}
/* 2023.11.23 텍스트area 입력폼 추가*/
.pd-zero-input .textarea-bd{color:#333; height:46px !important; background-color:transparent !important; border-color:transparent !important; font-size:13px; padding-right:7px; border-radius:0 !important;resize: none; overflow:hidden; scroll:-webkit-scrollbar}
.pd-zero-input .textarea-bd:focus{background: #eef3ff !important; border:1px solid #000 !important;}
.pd-zero-input .textarea-bd[disabled="disabled"],
.pd-zero-input .textarea-bd[disabled]{color: #333 !important; background:transparent !important; border:none !important; pointer-events: none;}


/* 2023.11.23 :: 패딩 zero table 내 input 세로값 스몰*/
.h2-type{line-height:1;}
.h2-type .pd-zero-input td,
.h2-type .pd-zero-input{padding:0 !important;}
.h2-type .pd-zero-input .input-bd{height:30px !important; background-color:transparent !important; border-color:transparent !important; font-size:13px; padding-right:7px; border-radius:0 !important;}
.h2-type .pd-zero-input .input-bd:focus{background: #eef3ff !important; border:1px solid #000 !important;}
.h2-type .pd-zero-input .input-bd[disabled="disabled"],
.h2-type .pd-zero-input .input-bd[disabled]{color: #333 !important; background:transparent !important; border:none !important; pointer-events: none;}

td.pd-lr3{padding-left:3px !important; padding-right:3px !important;}
td.pd-lr3 input{font-size:13px;}

.min-width01{min-width:214px;}
.min-width02{min-width:224px;}
@media all and ( max-width: 1500px ){
	.admin-tbl-type01.tb-spacde th.al {padding-left:5px !important;}
	.pd-zero-input .input-bd{padding-left:3px; padding-right:3px;}
	.pd-txt{padding-left:3px !important; padding-right:3px !important;}
}


/******************************************************
 * PowerTip 2023.05.02 추가
 * https://stevenbenner.github.io/jquery-powertip/
******************************************************/
.title-tooltip{display:inline-block; font-weight:600; letter-spacing:-0.05em; line-height:1.1; font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', 'Malgun Gothic','맑은 고딕','돋음','Dotum', 'Roboto', Arial, Helvetica, sans-serif;}

#powerTip {
	cursor: default;
	font-size:13px;
	background-color: rgba(66, 65, 126, 1);
	border-color: rgba(66, 65, 126, 1);
	border-radius: 6px;
	color: #fff;
	display: none;
	padding: 10px;
	position: absolute;
	white-space: nowrap;
	z-index: 2147483647;
	 -webkit-box-shadow: 1px 3px 5px 2px rgba(0,0,0,0.1);box-shadow:1px 3x 5px 2px rgba(0,0,0,0.1);
	 font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', 'Malgun Gothic','맑은 고딕','돋음','Dotum', 'Roboto', Arial, Helvetica, sans-serif;
}
#powerTip:before {content: attr(class) " ";position: absolute;	height: 0;	width: 0;text-indent: 100%;	overflow: hidden;}
#powerTip.n:before, #powerTip.s:before {border-right: 5px solid transparent;border-left: 5px solid transparent;left: 50%;margin-left: -5px;}
#powerTip.e:before, #powerTip.w:before {border-bottom: 5px solid transparent;border-top: 5px solid transparent;margin-top: -5px;top: 50%;}
#powerTip.n:before,
#powerTip.ne:before, #powerTip.nw:before {bottom: -8px;}
#powerTip.n:before,
#powerTip.ne:before, #powerTip.nw:before ,
#powerTip.nw-alt:before, #powerTip.ne-alt:before {border-top-color: inherit;border-top-style: solid;border-top-width: 8px;}
#powerTip.e:before {border-right-color: inherit;border-right-style: solid;border-right-width: 8px;left: -8px;}
#powerTip.s:before,
#powerTip.se:before, #powerTip.sw:before {top: -8px;}
#powerTip.s:before,
#powerTip.se:before, #powerTip.sw:before ,
#powerTip.sw-alt:before, #powerTip.se-alt:before {border-bottom-color: inherit;	border-bottom-style: solid;	border-bottom-width: 8px;}
#powerTip.w:before {border-left-color: inherit;border-left-style: solid;border-left-width: 8px;right: -8px;}
#powerTip.ne:before, #powerTip.se:before {border-right: 10px solid transparent;	border-left: 0;	left: 8px;}
#powerTip.nw:before, #powerTip.sw:before {border-left: 10px solid transparent;border-right: 0;right: 8px;}
#powerTip.nw-alt:before, #powerTip.ne-alt:before,
#powerTip.sw-alt:before, #powerTip.se-alt:before {bottom: -8px;	border-left: 5px solid transparent;	border-right: 5px solid transparent;left: 8px;}
#powerTip.ne-alt:before {left: auto;right: 8px;}
#powerTip.sw-alt:before, #powerTip.se-alt:before {border-top: none;	bottom: auto;top: -8px;}
#powerTip.se-alt:before {left: auto;right: 8px;}



/*******2023.05.08 제출현황 상세보기 타이틀 관련 css 추가 ********/
.stitle-type2{display:inline-block; font-size:16px; }
.stitle-type2:before{content:"│"; color:#ddd; padding-left:12px; padding-right:12px; font-weight: lighter;}


/******** 2023.05.19 사이트 설정 ********/
.admin-tbl-type03 textarea{padding: 6px 3px; border: 1px solid #c8c8ce; color: #333; background-color: #fff; border-radius: 3px;}
.admin-tbl-type03 textarea:focus{border-color:#000;	-webkit-box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.1);	box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.1);}
.admin-tbl-type03 textarea::placeholder{color: rgba(0,0,0,0.5); font-weight:400;}
.main-title-text{height:60px;}
.finish-title{height:60px;}
.finish-subtext{height:90px;}


/*******2023.06.09 제출현황 ********/
.user-link{position:relative; display:block;box-sizing:border-box;}
.user-link:after{content:""; clear:both !important; display:block;}
.user-link span{color:#888; float:right; display:inline-block; text-align:right; margin-top:5px ; border:1px dotted #ddd; padding:5px; border-radius:5px; }
.user-link i{ vertical-align:middle; margin-right:5px;}
.histmgr-cnt{color:#888; display:inline-block; text-align:left; vertical-align:middle; border:1px dotted #ddd; border-radius:5px; padding: 3px;}
.histmgr-cnt:hover{cursor:pointer;}
.histmgr-cnt i{vertical-align:middle;}
.histmgr-cnt a{color:#e42424;}

/*******2023.06.21 제출현황상세 ********/
.histmgr-textarea{height:80px; border-radius:3px;}


/*********************2023.06.15 개편보완 11차 *********************** */
/* 예상환급세액 > 보고서조회 */
.report-option-box{ border-left:1px solid #ddddeb; border-right:1px solid #ddddeb; padding:8px;}
.report-option-box .both-btn-wrap .lefttext{float:left; padding-top:5px;}
.report-option-box .both-btn-wrap .lefttext .cm-radiobox{margin-right:0;}
.report-option-box .both-btn-wrap .lefttext .s-tilte{display:inline-block;color:#444; padding-top:2px; margin-right:5px;vertical-align:middle;}

/*근로자고용번호 :: 조회조건+계산초기화버튼 */
.boht-conts{position:relative; width:100%; display:flex; align-items:center;}
.boht-conts .inner-leftcon{width:70%;}
.boht-conts .inner-rightcon{width:30%; margin-left: auto; text-align:right;}
.search-form03 {width:100%; padding:4px 23px; border:1px solid #ddddeb; background: #f4f5fb; border-radius:3px; box-sizing: border-box;}

/* 제출현황 상세 :: 제출서류목록 */
.choice-box{position:relative; border-top:1px solid #ccc; padding:16px 0 0 0;}

/* 제출현황 상헤 :: 첨부파일 */
.attachfile-list ul li{padding:4px 0;}
.attachfile-list ul li:hover{background:#f9f9f9;}
.attachfile-list i{font-size:18px; vertical-align:middle; margin-top:-1px; color:#3f3dae;}


/* 제출현황 상세 :: 메모이력관리 */
.memo-list-scroll{width: 100%; height:200px; max-height: 100%; padding:8px; overflow-y: scroll; overflow-x: hidden;}
.memo-list-scroll ul li{padding:4px; border-bottom:1px solid #eee;}
.memo-list-scroll ul li:hover{background:#f9f9f9;}
.memo-list-scroll span{margin-right:5px;}
.memo-list-scroll .meno-txt3{font-size:12px; color:#aaa;}
.memo-list-scroll .memo-new{color:#e11b37; font-size:11px;}
.memo-list-scroll span i{color:#3f3dae; vertical-align:middle; font-size:20px;}

/**************** 제출현황 :: 하단 fixed 버튼 ******************/
.z-index-high{z-index:98} /* 2023.06.15 추가*/

@-webkit-keyframes slide-top {
  0% {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes slide-top {
  0% {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/* footer fixed btn */
.footer-fixed-btn-wrap{position: fixed;width: 660px;bottom:0;left: 50%;border-radius: 20px 20px 0 0; margin-left: -330px; background: #d1ddf8; box-sizing:border-box; border-top:1px solid #ddd; box-shadow: 1px 1px 8px 5px rgba(0, 0, 0, 0.05);z-index:97;
	-webkit-animation: slide-top 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	 animation: slide-top 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.footer-fixed-btn-wrap .inner-btn{padding: 24px 24px 30px 24px;text-align:center;transition:0.5s;-webkit-transition:0.5s;-moz-transition:0.5s;}
.footer-fixed-btn-wrap .inner-btn button{min-width:150px; margin:0 10px;}
.footer-fixed-btn-wrap .inner-btn .title-box{display:inline-block;}
/* 화면스크롤시 고정 */
.footer-fixed-btn-wrap.fixed{}

/* 제출현황 :: 하단 fixed 버튼 레이어팝업  */
.layer-btn-con{position:relative; display:inline-block;}
.layer-btn-con .list-layer-pop{display:none; position:absolute; bottom:40px; left:10px;min-width:150px;  padding:5px; background:#fff; border:1px solid #000; overflow:hidden; border-radius:5px; box-shadow: 0px 2px 6px 1px rgba(0,0,0,0.2); z-index:22; box-sizing:border-box;}
.layer-btn-con .list-layer-pop li{color:#222; text-align:left; font-size:13px; border-bottom:1px solid #ddd; padding:5px 5px; box-sizing:border-box; cursor:pointer;}
.layer-btn-con .list-layer-pop li:hover,
.layer-btn-con .list-layer-pop li:focus{background:#f7f7f7; color:#000;}
.layer-btn-con .list-layer-pop li:last-child{border-bottom:none;}
.layer-btn-con .list-layer-pop.open{display:block;}
/* ******************** //2023.06.15 개편보완 11차 ************************/


/********************** 2023.06.19 로그인시 안내팝업 - 공지사항 **********************/
.layerpop-wrap{z-index:9990; position:fixed; top:93px; right:2%; width:620px; margin:0 0 0 0;padding:0; background:#fff; border:1px solid #323090; border-radius:10px; box-shadow: 1px 1px 10px 1px rgba(0,0,0,0.1); box-sizing:border-box;}
.layerpop-wrap .layerpop-inner{position:relative; width:100%; height:100%; padding:0 24px 10px 24px;}
.layerpop-wrap .popup-header{position:relative; width:100%; padding:18px 0; text-align:left; }
.layerpop-wrap .popup-header .layer-close-btn{position:absolute; right:0; top:20px; text-align:center; }
.layerpop-wrap .popup-header .layer-close-btn i{display:block; font-size:22px; color:#3b3b3b; vertical-align:middle; cursor:pointer;}
.layerpop-wrap .popup-header .poptitle{position:relative; margin:0; font-size:24px; font-weight:600; vertical-align:middle; border-bottom:1px solid #ccc; }

.layerpop-wrap .notice-list-box{position:relative;margin:0 auto; width:100%; /*height:285px;*/ height:190px; max-height: 100%; overflow-y: auto; overflow-x: hidden;} /* 2023.07.28 height값 임시 수정 :: 공지사항 하단 배너 추가 */
.layerpop-wrap .notice-list-box li{position: relative;  margin:0 0 ;padding:4px 8px; font-size:14px; border-bottom:1px solid #ddd; cursor:pointer}
.layerpop-wrap .notice-list-box li:before{content:''; position:absolute;left:0; top: 12px; vertical-align: middle; width:2px;height:2px; background:#666; border-radius: 3px; }
.layerpop-wrap .notice-list-box li:hover{background:#f7f7f7;}
.layerpop-wrap .notice-list-box li:last-child{border-bottom:none;}
.layerpop-wrap .notice-list-box li .newicon{ color:#F30}

.layerpop-wrap .layer-popup-footer{ position: relative; width:100%; height:40px; text-align:right; padding:6px 24px 0 0;font-size:13px; box-sizing:border-box;}
.layerpop-wrap .layer-popup-footer a.txtbtn{display:inline-block;cursor:pointer;margin:0 ; padding:0; text-decoration:none; color:#555;}
.layerpop-wrap .layer-popup-footer a.txtbtn:after{content:"│"; margin:0 10px; color:#aaa;}
.layerpop-wrap .layer-popup-footer a.txtbtn:last-child:after{display:none;}

/* 2023.07.28 광고 배너 추가 */
.layerpop-wrap .ad-banner-wrap{border:1px solid #eee; width:100%; height:80px; margin-top:20px; border-radius:5px; overflow:hidden; box-sizing:border-box;}
.layerpop-wrap .ad-banner-wrap img{max-width:100%;} /* 2023.12.11 추가 - 배너 모바일 대응*/
/********************** //2023.06.19 로그인시 안내팝업 - 공지사항 **********************/


/********************** 2023.06.20 공지사항 상세보기 페이지 **********************/
.board-detailview-wrap{position:relative; width:100%; border-top:2px solid #000;border-bottom:1px solid #dfe0e2;}
.board-detailview-wrap .board-header{position:relative; padding: 19px 200px 19px 24px; font-size:19px; font-weight:600;border-bottom:1px solid #dfe0e2;  }
.board-detailview-wrap .board-header .r-txt{position:absolute; right:24px; top:22px; text-align:right; font-size:14px; font-weight:400;}
.board-detailview-wrap .board-cont{border-bottom:1px solid #dfe0e2; padding:36px 24px; font-size:15px; line-height:1.6;}
/* 첨부파일 */
.board-detailview-wrap .attach-file-cont{padding:14px 24px; border-bottom:1px solid #dfe0e2;}
.board-detailview-wrap .attach-file-cont span.title{font-weight:600; font-size:16px; margin-right:10px; color:#323090;}
.board-detailview-wrap .attach-file-cont i{ color:#323090; font-size:16px; vertical-align:middle; margin-top:-2px;}
.board-detailview-wrap .attach-file-cont a{font-weight:bold;}
/* 이전글/다음글 */
.board-list-view ul li {display:block; border-bottom:1px solid #dfe0e2;}
.board-list-view ul li:last-child{border-bottom:none;}
.board-list-view ul li a:hover{background:#f7f9ff;}
.board-list-view ul li a{display:table; width:100%; height:100%; padding:0 18px; font-size:15px;}
.board-list-view ul li a span{display:table-cell; padding:12px 6px}
.board-list-view .txt1{width:5%; text-align:left; color:#323090; font-weight:600;}
.board-list-view .txt1 i{margin-left:3px;}
.board-list-view .l-title{width:85%; text-align:left;}
.board-list-view .date{width:10%; text-align:right; font-size:14px;}


/*********************** 2023.06.21 게시판 :: 공지,faq 리스트 /작성하기 ***********************/
.board-list-tbl{margin-top: 10px; display:table; width:100%; table-layout:fixed;}
.board-list-head{display:table-header-group; }
.board-list-head span{display:table-cell; text-align:center; background:#f4f5fb; color:#000; font-weight:500; font-size:14px; letter-spacing:-0.35px; padding:12px 0; border-top:1px solid #000; border-bottom:1px solid #dcdcdc;}
.board-list-row{display:table-row; width:100%;}
.board-list-row .column{display:table-cell; vertical-align:middle; padding:10px 5px; color:#555; font-size:14px; letter-spacing:-0.35px; text-align:center; border-bottom:1px solid #ddd;}
.board-list-row .column.ta-left{text-align: left;}
/* 게시판 :: 기본리스트 ::  항목 */
.board-list-row .bbs-title{text-align:left; padding:10px;}
.board-list-row .bbs-title a{display:block; position:relative; color:#555;}
.board-list-row .xi-new{ color:#F30}
.board-list-row .ico-file{color:#323090;font-size:16px; vertical-align:middle;}
.board-subject-con{display:inline-block; position:relative; max-width:100%; vertical-align: middle;}
.board-subject-con .board-subject-txt{width: 100%; line-height:1.5; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; display:block;}
.board-subject-con .board-subject-txt.row-2{max-height: 3em; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; white-space: initial;}
.board-list-row:hover{background-color:#f7f9ff;}

/* 반응형 게시판 리스트 사용안함 
@media all and (min-width:801px){
	.board-list-row:hover{background-color:#f7f9ff;}
}
@media all and (max-width:800px){
	/* 게시판 :: 기본리스트 :: 레이아웃
	.board-list-tbl{margin-top: 27px; border-top:1px solid #d7d7d7;}
	.board-list-tbl,.board-list-row,.board-list-row .column{display:block;}
	.board-list-head{display:none; position:absolute; top:-1000em; left:-1000em;}
	.board-list-row{position:relative; width:auto; padding:12px 10px; border-bottom:1px solid #ddd; overflow:hidden;}
	.board-list-row .column{clear:both; border-bottom:0; text-align:left; padding:5px 0; font-size:11px;}
	/* 게시판 :: 기본리스트 :: 항목 
	.bbs-relative-row{padding-top:40px}
	.board-list-row .column.bbs-block{clear:both; width:100%;}
	.board-list-row .column.bbs-inline{display:inline-block; width:auto; margin-right:4%;}
	.board-list-row .column.bbs-absolute{position:absolute; top:10px; left:2%;}
	.board-list-row .column:not(.bbs-title):not(.bbs-no-data):before{padding-right:5px; color:#aaa; content: attr(data-label);}
	.board-list-row .bbs-title{padding: 5px 0; padding-bottom: 0;}
	.board-subject-con .board-subject-txt{font-size:12px;}
}*/

/* 좌우버튼 + 페이징 */
.both-wrap-type02{position:relative;}
.both-wrap-type02 .paging{width:50%;}
.both-wrap-type02 .left-btn-wrap{position:absolute; left:0; top:0; width:25%; text-align:left;}
.both-wrap-type02 .right-btn-wrap{position:absolute; right:0; top:0; width:25%; text-align:right;}

/* 글쓰기 / 조회채널지정 레이어팝업 */
.search-choice-layerpop{position:absolute; top:28px; left:60px; width:210px; height:auto; padding:10px; background:#fff; border:1px solid #323090; border-radius:5px; box-shadow: 1px 1px 10px 1px rgba(0,0,0,0.1); box-sizing:border-box; z-index:33}
.search-choice-layerpop .l-title{padding-bottom:5px; color:#000; border-bottom:1px solid #eee; font-weight:600;}
.search-choice-layerpop .search-list-scroll{ position:relative; width:100%; margin:8px 0; overflow-y: auto; overflow-x: auto; box-sizing:border-box;}
.search-choice-layerpop .search-list-scroll li{padding:3px 8px;}
.search-choice-layerpop .search-list-scroll li:hover{background:#ecf1ff;}
.search-choice-layerpop .search-list-scroll li input[type="checkbox"] + label {margin-left: 4px; margin-top: -1px;}

/* 공지사항 탭*/
.faq-tab-wrap{box-sizing:border-box; }
.faq-tab-wrap ul {display:flex;}
.faq-tab-wrap ul li:first-child{margin-left:none; }
.faq-tab-wrap ul li{min-width:120px; width:25%; height:100%; color:#666; text-align:center; margin-left:-1px; padding:7px;border: 1px solid #ddd;  cursor:pointer; box-sizing:border-box;}
.faq-tab-wrap ul li.selected {background: #fff; border-color:#323090; color: #323090; font-weight:600; z-index:10;}
.faq-tab-wrap ul li:hover{background:#f9f9f9; color: #323090; }
.faq-tab-wrap ul li.selected:hover{background:#fff;}

/* 좌우정렬 컨텐츠 */
.both-flex-wrap{display:flex;align-items: center;justify-content: space-between;}
.listline{margin-left:auto; margin-top:auto;}
/*********************** //2023.06.21 게시판 :: 공지,faq 리스트 /작성하기 ***********************/


/********* 2023.07.06 수집현황조회 list/view 페이지 추가************/
.sel-list{font-size:14px;margin-top:3px;}
.sel-list span{display:inline-block; vertical-align:middle; font-weight:500;}
.sel-list span:after{content:"│"; padding:0 6px; color:#ccc;}
.sel-list span:last-child:after{display:none;}
.sel-list span em{color:#323090; font-weight:700;}

/* 수집현황조회: 상세페이지 채널상태 상태값 표시*/
.status-pause,
.status-open,
.status-cancel,
.status-free{display:inline-block; min-width:25px !important; height:23px !important; line-height:20px; padding:0 10px !important; font-size:14px !important; border-radius:25px;}
.status-pause{background:#eee; color:#555;  border:1px solid #eee;}
.status-open{background:#fff; color:#323090;  border:1px solid #7472c9;}
.status-cancel{background:#fff; color:#aaa; border:1px solid #ccc;}
.status-free{background:#fff; color:#323090;  border:1px solid #b7bcc3;}
/********* //2023.07.06 수집현황조회 list/view 페이지 추가 ************/


/* 2023.07.28 전자계약 버튼 추가*/
.btn-elecontract{/*display:inline-block;*/ border:1px solid #d1daf7; color:rgba(255, 255, 255, 1) !important; border-radius:5px; padding:6px 10px; margin-right:16px; /*background:#fff; color:#000;*/ vertical-align:middle;}
.btn-elecontract:hover{ border-color:#fff;}
.btn-elecontract i{font-size:14px !important;}

/* 2023.11.16 영업담당자소속그룹변경기능*/
/*담당자 소속변경*/
.info-txt{margin-bottom:15px; color:#222;}

.group-change-box{width:80%;border:1px solid #ddddeb; padding:8px 16px 16px 16px; margin:16px auto 20px; border-radius:3px; box-sizing:border-box;}
.group-change-box .bd-none-tbl2 th,
.group-change-box .bd-none-tbl2 td{padding:8px 2px; font-size:15px;}
.group-change-box .bd-none-tbl2 td{text-align:left; }
.group-change-box .bd-none-tbl2 .change-txt{background:#ecf1ff; color:#323090; font-weight:500;}


/*********************************************************************
	2023.11.22 로직검증 메뉴 추가
**********************************************************************/
.busi-info-text{display:block; margin:0 0 10px 0;color:#3f3dae; font-size:15px; font-weight:600;}
.busi-info-text span{ display:inline-block; vertical-align: middle;}
.busi-info-text span:before{content:"\e930"; display:inline-block; font-family: xeicon; vertical-align:middle; margin-top:-3px; font-size:12px; -webkit-transform:rotate(90deg);transform:rotate(90deg)}
.busi-info-text span:after{content:"│"; padding:0 6px 0 10px; vertical-align:middle; color:#ccc;}
.busi-info-text span:last-child:after{display:none;}

/* 2023.11.23 :: table type 01-3 로직검증 계산 테이블 사용 */
.admin-tbl-type01-3 {width:100%; position: relative; /*white-space: nowrap; */ box-sizing:border-box;} /* 2023.05.02 nowrap 삭제*/
.admin-tbl-type01-3 table {width:100%; border-top:2px solid #b6b7e1; box-sizing:border-box;}
.admin-tbl-type01-3 thead th{padding:5px 3px; font-size: 14px; font-weight:600; background: #f4f5fb; color:#222; border-top:0; border-bottom:0;}
.admin-tbl-type01-3 tbody th{font-weight:600;  font-size: 14px; white-space: nowrap; background:#f4f5fb; color:#000;}

.admin-tbl-type01-3 tfoot th,
.admin-tbl-type01-3 tfoot td{border-top:1px solid #323090;border-bottom:1px solid #323090;border-color:#8590df; font-weight:600; color:#fff !important; /*background:#504eb8;*/ background:#5f5dbe; padding:10px 6px;}
.admin-tbl-type01-3 tfoot th{background:#323090; font-size:14px; color:#fff !important;}

.admin-tbl-type01-3 th,
.admin-tbl-type01-3 td{font-size: 13px; padding:2px 6px 2px 4px;white-space: nowrap; border-top:1px solid #ddd; border-bottom:1px solid #ddd; border-left:1px solid #ddd; border-right:1px solid #ddd; text-align: center;  vertical-align:middle; letter-spacing:0; box-sizing:border-box;}
.space{ height:8px; padding:4px 0 !important;border:none  !important; background:#fff !important; border-left:none !important; border-right:none !important;}

/* 고용증대세액 합계 테이블 컬러*/
.bg-highlight1{background:#fff178 !important;}
.admin-tbl-type01-3 tfoot.bg-highlight1 td,
.admin-tbl-type01-3 tfoot.bg-highlight1 th{background:#fff878;font-weight:600; padding:10px 0;}

.bg-highlight2{background:#e8f8fc !important;}

/* 테이블 강조보더 구분라인 추가*/
/* 보더 볼드 2px에서 1px로 줄임 */
.admin-tbl-type01-3 .bd-top-b{border-top:1px solid #b6b7e1 !important;}
.admin-tbl-type01-3 .bd-bottom-b{border-bottom:1px solid #b6b7e1 !important;}
.admin-tbl-type01-3 .bd-left-b{border-left:1px solid #b6b7e1 !important;}
.admin-tbl-type01-3 .bd-right-b{border-right:1px solid #b6b7e1 !important;}

/* 보더 다크 */
.admin-tbl-type01-3 .bd-top-d{border-top:1px solid #323090 !important;}
.admin-tbl-type01-3 .bd-bottom-d{border-bottom:1px solid #323090 !important;}
.admin-tbl-type01-3 .bd-left-d{border-left:1px solid #323090 !important;}
.admin-tbl-type01-3 .bd-right-d{border-right:1px solid #323090 !important;}

.admin-tbl-type01-3 .bd-bottom-gray{border-bottom:1px solid #ddd;}


/* 로직검증 배경색상 */
.bg-17y-light{background:#eff0f1 !important;}
.bg-17y-dark{background:#d3d7dc !important; font-weight:600;}

.bg-18y-light{background:#fff2f9 !important;}
.bg-18y-dark{background:#fbe0ef !important;font-weight:600;}

.bg-19y-light{background:#fff8e6 !important;}
.bg-19y-dark{background:#ffecc4 !important;font-weight:600;}

.bg-20y-light{background:#f1f5ff !important;}
.bg-20y-dark{background:#d4e3ff !important;font-weight:600;}

.bg-21y-light{background:#eefcff !important;}
.bg-21y-dark{background:#c9f2fb !important;font-weight:600;}

.bg-22y-light{background:#f3f2ff !important;}
.bg-22y-dark{background:#e7e0fe !important;font-weight:600;}

/*보고서 미리보기 팝업 */
.wrap-report-area{position:relative; width:710px; margin:10px auto; background: #fff; }

/* 로직검증 - 예상환급세액에 사용*/
.f-noto{font-family: 'Noto Sans KR';}


/********************** 2023.12.07 창업중소기업세액감면 ***********************/
.pd-type1{padding:5px 10px;} /* 패딩 없는 테이블 내 컨텐츠 영역 패딩 주기*/
.work-target-list{margin:6px 0;}
.work-target-list li{padding:3px 14px; color:#323090;}

/* 테이블 하이라이트 컬러 */
.highlight-con-bg01{background: #fff9e1 !important;}
.highlight-con-bg02{background: #e0ecff !important;}
.highlight-con-bg03,
.highlight-con-bg03 input{background: #f5f5f5 !important;}
.disabled-con-bg01{background:#eee !important;color:#999 !important; padding:10px 0;}

.highlight-con-bg01 .highlight-con-txt,
.highlight-con-bg02 .highlight-con-txt,
.highlight-con-bg03 .highlight-con-txt,
.disabled-con-bg01 .disabled-con-txt{padding:10px 10px 10px 10px !important; font-weight:bold; font-size:14px;}

.highlight-con-bg02 .highlight-con-txt i {font-size:24px; vertical-align:middle; color:#323090;}

.tax-reduction-result-box{position: relative; margin:16px 0 0 0;text-align:center; border:2px solid #ddddeb; background:#fefefe; padding:16px; border-radius:3px; 	-webkit-box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.1);	box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.1);}

.tax-reduction-result-box .icon-box{ display:inline-block; padding:8px 12px 0 0; border-right:1px solid #eee; margin-right:12px; vertical-align:middle; box-sizing:border-box;}
.tax-reduction-result-box .icon-box img{width:52px; height:auto;}
.tax-reduction-result-box .icon-box i{font-size:28px; font-family: xeicon;}
.tax-reduction-result-box .txt-box{display:inline-block; text-align:left; vertical-align:middle; color:#000;}

.tax-reduction-pop-list01{ position:relative; border:1px solid #eee; border-radius:3px;}
.tax-reduction-pop-list01 li {padding:1px 10px; border-bottom:1px dotted #ddd;}
.tax-reduction-pop-list01 li:last-child{border-bottom:none;}

.tax-reduction-pop-list01 li span{display:inline-block;}
.tax-reduction-pop-list01 li span.number{width:25px; box-sizing:border-box; color:#323090;}
.tax-reduction-pop-list01 li span.number-s{width:20px; box-sizing:border-box; color:#323090;}

.tax-reduction-pop-list02{position:relative; border:1px solid #eee; border-radius:3px; padding:10px 12px;}
.tax-reduction-pop-list02 span{ word-break: keep-all; line-height:1.5;}
.tax-reduction-pop-list02 span:after{content:","; padding:0 5px 0 3px;}
.tax-reduction-pop-list02 span:last-child:after{display:none;}
/********************** //2023.12.07 창업중소기업세액감면 ***********************/



/*********************************************************************
	2023.11.22 로직검증 메뉴 추가
**********************************************************************/
.busi-info-text{display:block; margin:0 0 10px 0;color:#3f3dae; font-size:15px; font-weight:600;}
.busi-info-text span{ display:inline-block; vertical-align: middle;}
.busi-info-text span:before{content:"\e930"; display:inline-block; font-family: xeicon; vertical-align:middle; margin-top:-3px; font-size:12px; -webkit-transform:rotate(90deg);transform:rotate(90deg)}
.busi-info-text span:after{content:"│"; padding:0 6px 0 10px; vertical-align:middle; color:#ccc;}
.busi-info-text span:last-child:after{display:none;}

/* 2023.11.23 :: table type 01-3 로직검증 계산 테이블 사용 */
.admin-tbl-type01-3 {width:100%; position: relative; /*white-space: nowrap; */ box-sizing:border-box;} /* 2023.05.02 nowrap 삭제*/
.admin-tbl-type01-3 table {width:100%; border-top:2px solid #b6b7e1; box-sizing:border-box;}
.admin-tbl-type01-3 thead th{padding:5px 3px; font-size: 14px; font-weight:600; background: #f4f5fb; color:#222; border-top:0; border-bottom:0;}
.admin-tbl-type01-3 tbody th{font-weight:600;  font-size: 14px; white-space: nowrap; background:#f4f5fb; color:#000;}

.admin-tbl-type01-3 tfoot th,
.admin-tbl-type01-3 tfoot td{border-top:1px solid #323090;border-bottom:1px solid #323090;border-color:#8590df; font-weight:600; color:#fff !important; /*background:#504eb8;*/ background:#5f5dbe; padding:10px 6px;}
.admin-tbl-type01-3 tfoot th{background:#323090; font-size:14px; color:#fff !important;}

.admin-tbl-type01-3 th,
.admin-tbl-type01-3 td{font-size: 13px; padding:2px 6px 2px 4px;white-space: nowrap; border-top:1px solid #ddd; border-bottom:1px solid #ddd; border-left:1px solid #ddd; border-right:1px solid #ddd; text-align: center;  vertical-align:middle; letter-spacing:0; box-sizing:border-box;}
.space{ height:8px; padding:4px 0 !important;border:none  !important; background:#fff !important; border-left:none !important; border-right:none !important;}

/* 고용증대세액 합계 테이블 컬러*/
.bg-highlight1{background:#fff178 !important;}
.admin-tbl-type01-3 tfoot.bg-highlight1 td,
.admin-tbl-type01-3 tfoot.bg-highlight1 th{background:#fff878;font-weight:600; padding:10px 0;}

.bg-highlight2{background:#e8f8fc !important;}

/* 테이블 강조보더 구분라인 추가*/
/* 보더 볼드 2px에서 1px로 줄임 */
.admin-tbl-type01-3 .bd-top-b{border-top:1px solid #b6b7e1 !important;}
.admin-tbl-type01-3 .bd-bottom-b{border-bottom:1px solid #b6b7e1 !important;}
.admin-tbl-type01-3 .bd-left-b{border-left:1px solid #b6b7e1 !important;}
.admin-tbl-type01-3 .bd-right-b{border-right:1px solid #b6b7e1 !important;}

/* 보더 다크 */
.admin-tbl-type01-3 .bd-top-d{border-top:1px solid #323090 !important;}
.admin-tbl-type01-3 .bd-bottom-d{border-bottom:1px solid #323090 !important;}
.admin-tbl-type01-3 .bd-left-d{border-left:1px solid #323090 !important;}
.admin-tbl-type01-3 .bd-right-d{border-right:1px solid #323090 !important;}

.admin-tbl-type01-3 .bd-bottom-gray{border-bottom:1px solid #ddd;}


/* 로직검증 배경색상 */
.bg-17y-light{background:#eff0f1 !important;}
.bg-17y-dark{background:#d3d7dc !important; font-weight:600;}

.bg-18y-light{background:#fff2f9 !important;}
.bg-18y-dark{background:#fbe0ef !important;font-weight:600;}

.bg-19y-light{background:#fff8e6 !important;}
.bg-19y-dark{background:#ffecc4 !important;font-weight:600;}

.bg-20y-light{background:#f1f5ff !important;}
.bg-20y-dark{background:#d4e3ff !important;font-weight:600;}

.bg-21y-light{background:#eefcff !important;}
.bg-21y-dark{background:#c9f2fb !important;font-weight:600;}

.bg-22y-light{background:#f3f2ff !important;}
.bg-22y-dark{background:#e7e0fe !important;font-weight:600;}

/*보고서 미리보기 팝업 */
.wrap-report-area{position:relative; width:710px; margin:10px auto; background: #fff; }

/* 로직검증 - 예상환급세액에 사용*/
.f-noto{font-family: 'Noto Sans KR';}


/********************** 2023.12.07 창업중소기업세액감면 ***********************/
.pd-type1{padding:5px 10px;} /* 패딩 없는 테이블 내 컨텐츠 영역 패딩 주기*/
.work-target-list{margin:6px 0;}
.work-target-list li{padding:3px 14px; color:#323090;}

/* 테이블 하이라이트 컬러 */
.highlight-con-bg01{background: #fff9e1 !important;}
.highlight-con-bg02{background: #e0ecff !important;}
.highlight-con-bg03,
.highlight-con-bg03 input{background: #f5f5f5 !important;}
.disabled-con-bg01{background:#eee !important;color:#999 !important; padding:10px 0;}

.highlight-con-bg01 .highlight-con-txt,
.highlight-con-bg02 .highlight-con-txt,
.highlight-con-bg03 .highlight-con-txt,
.disabled-con-bg01 .disabled-con-txt{padding:10px 10px 10px 10px !important; font-weight:bold; font-size:14px;}

.highlight-con-bg02 .highlight-con-txt i {font-size:24px; vertical-align:middle; color:#323090;}

.tax-reduction-result-box{position: relative; margin:16px 0 0 0;text-align:center; border:2px solid #ddddeb; background:#fefefe; padding:16px; border-radius:3px; 	-webkit-box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.1);	box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.1);}

.tax-reduction-result-box .icon-box{ display:inline-block; padding:8px 12px 0 0; border-right:1px solid #eee; margin-right:12px; vertical-align:middle; box-sizing:border-box;}
.tax-reduction-result-box .icon-box img{width:52px; height:auto;}
.tax-reduction-result-box .icon-box i{font-size:28px; font-family: xeicon;}
.tax-reduction-result-box .txt-box{display:inline-block; text-align:left; vertical-align:middle; color:#000;}

.tax-reduction-pop-list01{ position:relative; border:1px solid #eee; border-radius:3px;}
.tax-reduction-pop-list01 li {padding:1px 10px; border-bottom:1px dotted #ddd;}
.tax-reduction-pop-list01 li:last-child{border-bottom:none;}

.tax-reduction-pop-list01 li span{display:inline-block;}
.tax-reduction-pop-list01 li span.number{width:25px; box-sizing:border-box; color:#323090;}
.tax-reduction-pop-list01 li span.number-s{width:20px; box-sizing:border-box; color:#323090;}

.tax-reduction-pop-list02{position:relative; border:1px solid #eee; border-radius:3px; padding:10px 12px;}
.tax-reduction-pop-list02 span{ word-break: keep-all; line-height:1.5;}
.tax-reduction-pop-list02 span:after{content:","; padding:0 5px 0 3px;}
.tax-reduction-pop-list02 span:last-child:after{display:none;}
/********************** //2023.12.07 창업중소기업세액감면 ***********************/



/**************************************************************** 
	fonts
 ***************************************************************/
@font-face {
	font-family: 'Pretendard';
	font-weight: 900;
	font-display: swap;
	src: local('Pretendard Black'), 
	url('../fonts/Pretendard-Black.woff2') format('woff2'), 
	url('../fonts/Pretendard-Black.woff') format('woff');
}

@font-face {
	font-family: 'Pretendard';
	font-weight: 800;
	font-display: swap;
	src: local('Pretendard ExtraBold'), 
	url('../fonts/Pretendard-ExtraBold.woff2') format('woff2'), 
	url('../fonts/Pretendard-ExtraBold.woff') format('woff');
}

@font-face {
	font-family: 'Pretendard';
	font-weight: 700;
	font-display: swap;
	src: local('Pretendard Bold'), 
	url('../fonts/Pretendard-Bold.woff2') format('woff2'), 
	url('../fonts/Pretendard-Bold.woff') format('woff');
}

@font-face {
	font-family: 'Pretendard';
	font-weight: 600;
	font-display: swap;
	src: local('Pretendard SemiBold'), 
	url('../fonts/Pretendard-SemiBold.woff2') format('woff2'), 
	url('../fonts/Pretendard-SemiBold.woff') format('woff');
}

@font-face {
	font-family: 'Pretendard';
	font-weight: 500;
	font-display: swap;
	src: local('Pretendard Medium'), 
	url('../fonts/Pretendard-Medium.woff2') format('woff2'), 
	url('../fonts/Pretendard-Medium.woff') format('woff');
}

@font-face {
	font-family: 'Pretendard';
	font-weight: 400;
	font-display: swap;
	src: local('Pretendard Regular'), 
	url('../fonts/Pretendard-Regular.woff2') format('woff2'), 
	url('../fonts/Pretendard-Regular.woff') format('woff');
}

@font-face {
	font-family: 'Pretendard';
	font-weight: 300;
	font-display: swap;
	src: local('Pretendard Light'), 
	url('../fonts/Pretendard-Light.woff2') format('woff2'), 
	url('../fonts/Pretendard-Light.woff') format('woff');
}

@font-face {
	font-family: 'Pretendard';
	font-weight: 200;
	font-display: swap;
	src: local('Pretendard ExtraLight'), 
	url('../fonts/Pretendard-ExtraLight.woff2') format('woff2'), 
	url('../fonts/Pretendard-ExtraLight.woff') format('woff');
}

@font-face {
	font-family: 'Pretendard';
	font-weight: 100;
	font-display: swap;
	src: local('Pretendard Thin'), 
	url('../fonts/Pretendard-Thin.woff2') format('woff2'), 
	url('../fonts/Pretendard-Thin.woff') format('woff');
}

/* login font */
@font-face {
    font-family: 'Jalnan';
    font-weight: normal;
    font-style: normal;
    src: url('../fonts/Jalnan.eot');
    src: url('../fonts/Jalnan.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Jalnan.woff2') format('woff2'),
        url('../fonts/Jalnan.woff') format('woff'),
        url('../fonts/Jalnan.ttf') format("truetype");
    font-display: swap;
}

/* tool tip 숫자 때문에 노토산스 폰트 추가 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500&display=swap');