@charset "utf-8";


/*
 * File : common.css
 * Content : 공통
 * Dependency : css/reset.css
 *
 * SUMMARY:
 * 01) BUTTON *
 * 02) SCROLLBAR *
 * 03) TEXT *
 * 04) INPUT *
 * 05) FORM *
 * 06) SEARCH *
 * 07) PAGINATION *
 * 08) LOADING *
 * 09) TAB *
 */


/*float, hidden 공통*/
.clearfix:after {content:''; display:block; clear:both;}
#skipNavi, .blind, .hidden {position:absolute;left:0;width:0;height:0;font-size:0;line-height:0;text-indent:-9999px;overflow:hidden;visibility:hidden;}
.fr {float: right;}
.fl {float: left;}

/* **************************************** *
 * TEXT
 * **************************************** */
 h1, h2, h3 {font-weight:700;}
 .ns, a.ns, .btn, a.btn, .blue_bold {font-family: 'nsEB','NanumSquareEB', '나눔스퀘어EB', 'NanumSquare','나눔고딕', 'Nanum Gothic', '맑은 고딕', 'Malgun Gothic'; /*font-weight:900; */transform: skew(-0.03deg); word-break:keep-all;}
body, table, input, select, textarea, a, a:link, a:visited, a:hover,h1, h2, h3, h4, h5, h6, a, p {color: var(--colorFg1);}
.nsR,
a.nsR {font-family: 'nsR','NanumSquareEB', '나눔스퀘어EB', 'NanumSquare','나눔고딕', 'Nanum Gothic', '맑은 고딕', 'Malgun Gothic'; font-weight:400; transform: skew(-0.03deg)}
.nsB,
a.nsB {font-family: 'nsB','NanumSquareEB', '나눔스퀘어EB', 'NanumSquare','나눔고딕', 'Nanum Gothic', '맑은 고딕', 'Malgun Gothic'; font-weight:700; transform: skew(-0.03deg)}
h1 {font-size:24px ; color:#1b1f26;}
h2 {font-size:20px ; color:#1b1f26;}
h3 {font-size:18px ; color:#1b1f26;}
.en, a.en {font-family: 'CNC', sans-serif; font-weight:normal; letter-spacing:-0.5px;}
b {font-weight:700;}
.red {color: var(--color-txt-red);}
b.blue {color: var(--color-txt-blue);}
b.mint {color: var(--color-txt-mint);}
b.blue_bold {color: var(--color-txt-blueBold);}
b.gray {color: var(--color-txt-gray);}

.title-point {box-shadow: inset 0 -0.6em 0 0 rgb(210 229 246); display: inline-block;}
.hide {display:none;}

.gmsM {font-family: 'GmarketSansMedium','나눔고딕', 'Nanum Gothic', '맑은 고딕', 'Malgun Gothic';}
.gmsB {font-family: 'GmarketSansBold','나눔고딕', 'Nanum Gothic', '맑은 고딕', 'Malgun Gothic';}

a.underline:hover {text-decoration: underline; color:var(--color-txt-blue)}
.flex {display: flex; }
.flex.space-between {justify-content: space-between;}
.flex.align-center {align-items: center;}
/* **************************************** *
 * BUTTON
 * **************************************** */
/*새로*/
:root {
	--color-red: #fb3333;
	--color-blue : #2957ff;
	--color-green : #2dc24c;
	--color-gray : #82868b;
	--color-dark : #2c2c2c;
	--color-white : #fff;
	--color-disable : #f3f3f3;
	--color-border : #c0c0c0;
	--color-main : #5b73e8;
	--color-bg-after1 : #4865e7;
	--color-bg-after2 : #4c96f1;

	--color-txt-red : #ff3024;
	--color-txt-blue : #4876ef;
	--color-txt-mint : #00d3ab;
	--color-txt-blueBold : #223cb5;
	--color-txt-gray : #9a9a9a;
	--color-bg : #ecf0f7;
	
	/* light/dark */
	/*light*/
	--colorDefalut: #fff;
	--colorMainBg1: #4865e7;
	--colorMainBg2: #4c96f1;
	--colorBodyBg: #ecf0f7;
	--colorFg1: #252525;
	--colorFg2: #5b73e8;
	--colorAsideBg: #f3f8fb;
	--colorAsideFt: #5b73e8;
	--colorHeaderI: #5b73e8;
	--colorFtBg: #fff;
	
}
.btn, 
a.btn {
    background: var(--color-blue) linear-gradient(to bottom, var(--color-blue), rgba(0,0,0,.02));
    border: 1px solid var(--color-blue);
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    font-size: 1.2rem;
    line-height:1.5;
    cursor: pointer;
    box-sizing: border-box;
    position: relative;
	overflow:hidden;
	color:#fff;
	word-break:keep-all;
	-webkit-transition: .25s all ease;
	-o-transition: .25s all ease;
	transition: .25s all ease;
  }

.btn:active::before, 
a.btn:active::before {
    content:'';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.07);
	-webkit-transition: .25s all ease;
	-o-transition: .25s all ease;
	transition: .25s all ease;
}

.btn:active, 
a.btn:active {
	text-decoration:none;
	-webkit-transition: .25s all ease;
	-o-transition: .25s all ease;
	transition: .25s all ease;
}
.btn:hover::before, 
a.btn:hover::before {
	content:'';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background-color: rgba(0,0,0,.08);   
	-webkit-transition: .25s all ease;
	-o-transition: .25s all ease;
	transition: .25s all ease;
}
.btn[class*="btn-outline"]:hover::before, 
.btn[class*="btn-flat"]:hover::before {
	opacity:.05;
	background-color: var(--color-blue);	
}
.btn[class*="btn-outline"].green:hover::before,
.btn[class*="btn-flat"].green:hover::before{background-color: var(--color-green); }
.btn[class*="btn-outline"].red:hover::before,
.btn[class*="btn-flat"].red:hover::before{background-color: var(--color-red); }
.btn[class*="btn-outline"].gray:hover::before,
.btn[class*="btn-flat"].gray:hover::before{background-color: var(--color-gray); }
.btn[class*="btn-outline"].dark:hover::before,
.btn[class*="btn-flat"].dark:hover::before{background-color: var(--color-dark); }

.btn.gradient {border-color: transparent; background: var(--color-bg-after1) linear-gradient(45deg, var(--color-bg-after1), var(--color-bg-after2));}
.btn-pos, 
a.btn-pos {padding: 0.9rem 1.5rem; }
.btn-lg,
a.btn-lg{font-size: 1.4rem; padding: 1.2rem 4rem;}
.btn-sm,
a.btn-sm{font-size: 1.1rem; padding: 0.6rem 1.2rem;}

.btn.green {border-color: var(--color-green); background:var(--color-green) linear-gradient(var(--color-green),rgba(0,0,0,.02));}
.btn.red {border-color: var(--color-red); background:var(--color-red) linear-gradient(var(--color-red),rgba(0,0,0,.02)); color:#fff; }
.btn.gray {border-color: var(--color-gray); background:var(--color-gray) linear-gradient(var(--color-gray),rgba(0,0,0,.02));}
.btn.dark {border-color: var(--color-dark); background:var(--color-dark) linear-gradient(var(--color-dark),rgba(0,0,0,.02));}

.btn[class*="btn-outline"],
.btn[class*="btn-flat"] {background: transparent; color: var(--color-blue);}
.btn[class*="btn-outline"].green,
.btn[class*="btn-flat"].green {color:var(--color-green); }
.btn[class*="btn-outline"].red,
.btn[class*="btn-flat"].red {color:var(--color-red); }
.btn[class*="btn-outline"].gray,
.btn[class*="btn-flat"].gray {color:var(--color-gray); }
.btn[class*="btn-outline"].dark,
.btn[class*="btn-flat"].dark {color:var(--color-dark); }
.btn[class*="btn-outline"].white,
.btn[class*="btn-flat"].white {color:var(--color-dark); }

.btn[class*="btn-outline"]:active::before,
.btn[class*="btn-flat"]:active::before{
	background-color: var(--color-blue);
	opacity: .2;
}
.btn[class*="btn-outline"].green:active::before,
.btn[class*="btn-flat"].green:active::before {background-color: var(--color-green);}
.btn[class*="btn-outline"].red:active::before,
.btn[class*="btn-flat"].red:active::before {background-color: var(--color-red);}
.btn[class*="btn-outline"].gray:active::before,
.btn[class*="btn-flat"].gray:active::before {background-color: var(--color-gray);}
.btn[class*="btn-outline"].dark:active::before,
.btn[class*="btn-flat"].dark:active::before {background-color: var(--color-dark);}
.btn[class*="btn-outline"].white:active::before,
.btn[class*="btn-flat"].white:active::before {background-color: var(--color-gray);}

.btn.round {border-radius: 30px;}

.btn[class*="btn-flat"] {border: transparent;}

.btn i[class*="icon-"] {padding-right: .5rem;}
.btn.btn-icon{padding: 1.2rem}
.btn.btn-icon i[class*="icon-"]{padding-right: 0;}

/* **************************************** *
 * INPUT
 * **************************************** */
/* INPUT-radio / check 공통 */
.c_opt {
	position: relative;
    box-sizing: border-box;
    display: inline-block;
    align-items: center;
/*    font-size: 14px;*/
    cursor: default;
    --control-border-color: darkslategray;
    --control-bg-color: white;
    --control-checked-color: #2957ff;
    --text-checked-color: black;
    --text-disabled-color: silver;
    --outline-color: royalblue;
}
[hidden].c_opt { display: none; }
.c_opt__btn {
    position: absolute;
    opacity: 0;
}
.c_opt__label {
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    line-height: 20px;
    width: 100%;
    padding: 10px 10px 10px 24px;
    vertical-align: top;
    text-align: left;
}
.c_opt__label::before,
.c_opt__label::after {
    position: absolute;
    box-sizing: border-box;
    top: 20px;
    left: 0px;
    transform: translateY(-50%);  
}
.c_opt__label::before {
    content: '';
    border: 2px solid var(--control-border-color);
    background: var(--control-bg-color);
    opacity: .6;
}

:checked + .c_opt__label::after { content: ''; }
:focus + .c_opt__label,
:checked + .c_opt__label { color: var(--text-checked-color); }
:focus + .c_opt__label::before,
:checked + .c_opt__label::before { opacity: 1; }
/* :focus + .c_opt__label { outline: 4px auto var(--outline-color); } */
@media (hover) {
    :hover > .c_opt__label { color: var(--text-checked-color); }
    :hover > .c_opt__label::before { opacity: 1; }
}
:disabled .c_opt__label,
:disabled + .c_opt__label {
    color: var(--text-disabled-color);
    cursor: not-allowed;
    filter: grayscale(100%);
}
:disabled .c_opt__label::before,
:disabled .c_opt__label::after,
:disabled + .c_opt__label::before,
:disabled + .c_opt__label::after { opacity: .33; }

/* .xRadio */
.input_radio__label::before {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}
.input_radio__label::after {
    width: 10px;
    height: 10px;
    margin-left: 5px;
    background: var(--control-checked-color);
    border-radius: 50%;
}
:checked + .input_radio__label::before { border-color: var(--control-checked-color); }

/* .Check */
.input_check__label::before {
	width: 20px;
	height: 20px;
	border-radius: 50%;
}
.input_check__label::after {
	width: 10px;
	height: 6px;
	margin: -4px 0 0 5px;
    border: 2px solid var(--control-bg-color);
    border-top: 0;
    border-right: 0;
    transform: rotate(-45deg);
}
:checked + .input_check__label::before {
    border: 0;
    background: var(--control-checked-color);
}

.input_check__label-line::before {
    width: 20px;
	height: 20px;
	border-radius: 50%;
}
.input_check__label-line::after {
    width: 10px;
	height: 6px;
	margin: -4px 0 0 5px;
    border: 2px solid var(--control-checked-color);
    border-top: 0;
    border-right: 0;
    transform: rotate(-45deg);
}
:checked + .input_check__label-line::before {
    border-color: var(--control-checked-color);
    background: var(--control-bg-color);
}

[class*="input_check__label"].square::before {
    width: 18px;
    height: 18px;
    border-radius: 2px;

}
[class*="input_check__label"].square::after {
    width: 12px;
    height: 6px;
    margin: -5px 0 0 3px;
    border: 2px solid var(--control-bg-color);
    border-top: 0;
    border-right: 0;
    transform: rotate(-45deg);
}
[class*="input_check__label-line"].square::after {
	border-color: var(--control-checked-color);
}

/*input text 공통*/
:disabled {cursor: not-allowed;}
.input_text {
    height: 38px;
    padding: 0 10px;
    border: 0px;
    border-radius: 6px;
    box-sizing: border-box;
    outline: none;
    font-size:13px;
	letter-spacing:-0.5px;
	border: 1px solid var(--color-border);
	font-weight: 600;
}
.input_text:disabled {background: var(--color-disable);}
.input_text:focus {
    border-color: #252525;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.075), /**/
                0 0 5px rgba(0,0,0,.1);
}
.input_text::placeholder {
	font-family: '맑은 고딕', 'Malgun Gothic', arial, Verdana, Dotum, AppleGothic, sans-serif;
	letter-spacing: -1px;
}
.input_text:read-only{
	background:transparent;
}
.input_text::-webkit-input-placeholder { color: #cacaca; }
.input_text::-ms-input-placeholder { color: #cacaca; }
.input_text::-moz-input-placeholder { color: #cacaca; }

input[type="text"].error,.form-input.error,.input_text.error {
	border-color: var(--color-red);
	color:var(--color-red);
	background-color: #fff8f8;
	transform-origin: center center; -webkit-transform-origin: center center;
	animation-name: shake; -webkit-animation-name: shake;
	animation-duration: .7s; -webkit-animation-duration: .7s;
}

@keyframes shake {
	from,to{-webkit-transform:translate3d(0, 0, 0); transform:translate3d(0, 0, 0)}
	15%,45%,75%{-webkit-transform:translate3d(-1px, 0, 0);transform:translate3d(-1px, 0, 0)}
	30%,60%,90%{-webkit-transform:translate3d(1px, 0, 0);transform:translate3d(1px, 0, 0)}
}

.error-msg:before {content:'\eac3'; font-family: 'cncicon'; padding-right: 6px; font-size: 1.2em;}
.error-msg {display: flex; align-items: center; color:var(--color-red); padding-top: 3px;}

.input_url {
	background: transparent;
	width: 100%;
	cursor: pointer;
}
.input_url:hover {
	color: var(--color-txt-blueBold);
	text-decoration: underline;
}

/***인풋오류/승인***/
.notice_txt.success {color: #0048ff; padding: 5px; display: inline-block;}
.notice_txt.error {color: #ff1515;padding: 5px; display: inline-block;}

/***input file 공통***/
.input_file {position:absolute; width:0px; height:1px; padding:0; margin:-1px; overflow:hidden; border:none;}
.input_file + label {
    cursor: pointer;
}

/*select 공통*/
.select {
	height: 38px;
    border: 0px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    padding: 0 30px 0 10px;	
	box-sizing:border-box;
    font-size: 13px;
    line-height:1.5;
    cursor: pointer;
    box-sizing: border-box;
    position: relative;
    color: #252525;
	font-weight: 500;
	overflow:hidden;
	-webkit-appearance: none;  -moz-appearance: none; appearance: none; /* 네이티브 외형 감추기 */
	background:#fff url(../img/down-arrow.svg) no-repeat;
	background-position:right 10px top 50%;
	background-size: 10px;
	text-align-last: center;
	-webkit-transition: .25s all ease;
	-o-transition: .25s all ease;
	transition: .25s all ease;
	border: 1px solid #c0c0c0;
}
.select:disabled {background-color: var(--color-disable);}
.select::-ms-expand { display: none; }

.select[multiple="multiple"] {
	height: auto;
	overflow-y:scroll;
	background:none;
	padding: .5rem 0;
	outline: none;
	min-width:200px;
}
.select[multiple="multiple"] option {
	padding: .5rem 5rem;
}
.select[multiple="multiple"]::-webkit-scrollbar {
	background:none;
}


/*INPUT-date*/
.input_date {
	border: 1px solid #c0c0c0; 
	border-radius: 6px; 
	padding:0 30px 0 20px;
/*	margin-right: 5px; */
	height: 38px; 
	box-sizing: border-box;
	display: inline-block;
	position: relative;
	background:
    white
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='22' viewBox='0 0 20 22'%3E%3Cg fill='none' fill-rule='evenodd' stroke='%23688EBB' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' transform='translate(1 1)'%3E%3Crect width='18' height='18' y='2' rx='2'/%3E%3Cpath d='M13 0L13 4M5 0L5 4M0 8L18 8'/%3E%3C/g%3E%3C/svg%3E")
    right 10px
    center
    no-repeat;
	background-size: 14px auto;
	width: 100%;
	max-width: 135px;
	-webkit-appearance:none; /* 화살표 없애기 for chrome*/ -moz-appearance:none; /* 화살표 없애기 for firefox*/ appearance:none /* 화살표 없애기 공통*/
}
.input_date:disabled {background-color: var(--color-disable);}
.input_date::-ms-expand { display: none; }
.input_date:focus {
  /*outline:none;*/
  border:1px solid #000;
  /*box-shadow:0 0 0 2.5px rgba(0, 120, 250, 0.1);*/
}

.input_date::-webkit-datetime-edit-month-field:hover,
.input_date::-webkit-datetime-edit-day-field:hover,
.input_date::-webkit-datetime-edit-year-field:hover{
  background:rgba(0, 120, 250, 0.1);
}
.input_date::-webkit-datetime-edit-text {
  opacity:0;
}

.input_date::-webkit-clear-button,
.input_date::-webkit-inner-spin-button{
  display:none;
}
.input_date::-webkit-calendar-picker-indicator {
  position:absolute;
  width:25px;
  height:100%;
  top:0;
  right:0;
  bottom:0;
  opacity:0;
  cursor:pointer;
  color:rgba(0, 120, 250, 1);
  background:rgba(0, 120, 250, 1);
 
}

.input_date:hover::-webkit-calendar-picker-indicator { opacity:0.05; }
.input_date:hover::-webkit-calendar-picker-indicator:hover { opacity:0.15; }

.input-date {
	height: 36px;
	padding: 0 32px 0 10px;
	border-radius: 6px;
	border: 1px solid var(--color-border);
	background: #fff url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath data-name='calendar-Regular' d='M17 3.25h-.25V3a.75.75 0 0 0-1.5 0v.25h-6.5V3a.75.75 0 0 0-1.5 0v.25H7A4.756 4.756 0 0 0 2.25 8v9A4.756 4.756 0 0 0 7 21.75h10A4.756 4.756 0 0 0 21.75 17V8A4.756 4.756 0 0 0 17 3.25ZM7 4.75h.25V6a.75.75 0 0 0 1.5 0V4.75h6.5V6a.75.75 0 0 0 1.5 0V4.75H17A3.254 3.254 0 0 1 20.25 8v.25H3.75V8A3.254 3.254 0 0 1 7 4.75Zm10 15.5H7A3.254 3.254 0 0 1 3.75 17V9.75h16.5V17A3.254 3.254 0 0 1 17 20.25ZM17 13a1 1 0 1 1-1-1 1 1 0 0 1 1 1Zm-4 0a1 1 0 1 1-1-1 1 1 0 0 1 1 1Zm-4 0a1 1 0 1 1-1-1 1 1 0 0 1 1 1Zm8 4a1 1 0 1 1-1-1 1 1 0 0 1 1 1Zm-4 0a1 1 0 1 1-1-1 1 1 0 0 1 1 1Zm-4 0a1 1 0 1 1-1-1 1 1 0 0 1 1 1Z' style='fill:%23aaa'/%3E%3C/svg%3E") no-repeat center right 10px;
	background-size: 18px;
	cursor: pointer;
	font-weight: 500;
	font-size: 13px;
	width: 240px;
}
.input-date:hover ,
.input-date:focus {
	background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath data-name='calendar-Regular' d='M17 3.25h-.25V3a.75.75 0 0 0-1.5 0v.25h-6.5V3a.75.75 0 0 0-1.5 0v.25H7A4.756 4.756 0 0 0 2.25 8v9A4.756 4.756 0 0 0 7 21.75h10A4.756 4.756 0 0 0 21.75 17V8A4.756 4.756 0 0 0 17 3.25ZM7 4.75h.25V6a.75.75 0 0 0 1.5 0V4.75h6.5V6a.75.75 0 0 0 1.5 0V4.75H17A3.254 3.254 0 0 1 20.25 8v.25H3.75V8A3.254 3.254 0 0 1 7 4.75Zm10 15.5H7A3.254 3.254 0 0 1 3.75 17V9.75h16.5V17A3.254 3.254 0 0 1 17 20.25ZM17 13a1 1 0 1 1-1-1 1 1 0 0 1 1 1Zm-4 0a1 1 0 1 1-1-1 1 1 0 0 1 1 1Zm-4 0a1 1 0 1 1-1-1 1 1 0 0 1 1 1Zm8 4a1 1 0 1 1-1-1 1 1 0 0 1 1 1Zm-4 0a1 1 0 1 1-1-1 1 1 0 0 1 1 1Zm-4 0a1 1 0 1 1-1-1 1 1 0 0 1 1 1Z' style='fill:%23000'/%3E%3C/svg%3E")
}

/* year */
.yearpicker-wrap {position: relative; display: inline-block;}
.yearpicker-container {right: 0px; width: 135px; font-size: 1.1em; }
.yearpicker-header { height: 2.5em;}
.yearpicker-items.selected { color: var(--color-txt-blue);}
.yearpicker-items:hover { color: var(--color-txt-blue);}
.yearpicker-prev:hover, .yearpicker-next:hover { color: var(--color-txt-blue);}

/*INPUT-time*/
/*input[type="time"] {*/
/*	border: 1px solid #c0c0c0; */
/*	border-radius: 8px; */
/*	padding:0 30px;*/
/*	margin-right: 5px; */
/*	height: 36px; */
/*	box-sizing: border-box;*/
/*	display: inline-block;*/
/*	position: relative;*/
/*	background:*/
/*    white*/
/*    url("data:image/svg+xml,%3Csvg height='22' viewBox='0 0 443.3 443.3' width='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='rgba(104, 142, 248, 0.999)' d='M222 0a222 222 0 100 444 222 222 0 000-444zm0 416a194 194 0 110-389 194 194 0 010 389z'/%3E%3Cpath fill='rgba(23, 114, 248, 0.999)' d='M236 83h-28v144l87 88 20-20-79-79z'/%3E%3C/svg%3E")*/
/*    right 8px*/
/*    center*/
/*    no-repeat;*/
/*	background-size: 16px auto;*/
/*	width: 100%;*/
/*	max-width: 135px;*/
/*}*/
/*input[type="time"]:focus {*/
/*  border:1px solid #000;*/
/*}*/

/*input[type="time"]::-webkit-datetime-edit {}*/
/*input[type="time"]::-webkit-datetime-edit-fields-wrapper {}*/
/*input[type="time"]::-webkit-datetime-edit-month-field:hover,*/
/*input[type="time"]::-webkit-datetime-edit-day-field:hover,*/
/*input[type="time"]::-webkit-datetime-edit-year-field:hover {*/
/*  background:rgba(0, 120, 250, 0.1);*/
/*}*/
/*input[type="time"]::-webkit-datetime-edit-text {*/
/*  opacity:0;*/
/*}*/
/*input[type="time"]::-webkit-clear-button,*/
/*input[type="time"]::-webkit-inner-spin-button {*/
/*  display:none;*/
/*}*/
/*input[type="time"]::-webkit-calendar-picker-indicator {*/
/*  position:absolute;*/
/*  width:25px;*/
/*  height:100%;*/
/*  top:0;*/
/*  right:0;*/
/*  bottom:0;*/
/*  opacity:0;*/
/*  cursor:pointer;*/
/*  color:rgba(0, 120, 250, 1);*/
/*  background:rgba(0, 120, 250, 1);*/
/* */
/*}*/
/**/
/*input[type="time"]:hover::-webkit-calendar-picker-indicator { opacity:0.05; }*/
/*input[type="time"]:hover::-webkit-calendar-picker-indicator:hover { opacity:0.15; }*/

/*TEXTAREA 공통*/
.textarea {
	padding: 10px;
    border: 0px;
	/*box-shadow:1px 1px 1px rgba(0,0,0,.1);*/
    border-radius: 6px;
    box-sizing: border-box;
    outline: none;
    font-size:13px;
	background:#fff;
	text-align:left;
	border: 1px solid #c0c0c0;
	width: 100%;
}
.textarea:focus {
	border-color: #252525;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.075), /**/
                0 0 5px rgba(0,0,0,.1);
}
.textarea::placeholder {
	color:#cacaca;
	letter-spacing:-1px;
	font-family:arial;
}

[contenteditable=true]:empty:before{
  content: attr(placeholder);
  color:#ccc;
  
}
[contenteditable=true]:empty {
	display: inline-flex !important;
}
.textarea:disabled {background-color: var(--color-disable);}

/* **************************************** *
 * SEARCH
 * **************************************** */
.search_form {text-align: center; margin:0 35px 20px; padding: 20px 0; box-sizing: border-box; border-radius: 8px;}
.search_form.search_form-bg {background: var(--color-bg);}
.search_form.search_form-flex {padding:0; background: none; margin: 0; border-radius: 0;}
.search_form.search_form-flex form {display: block; text-align: center; margin:0 35px 20px;}
.search_form .search-list {display: inline-flex; justify-content: center; align-items: flex-end; vertical-align: bottom;}
.search-list li {position: relative; display: flex; flex-flow:column; align-items: flex-start; margin-right: 5px;}
.search-list li:last-child {margin-right:0;}
.search-list label {font-size: 14px; margin-bottom:.5rem;}
.search_form .input_text {text-align: left; /*width: 360px;*/}
.search_form.search_form-flex .search-flex {display: flex; justify-content: space-between; box-sizing: border-box; border-radius: 8px; background: var(--color-bg); padding:20px; margin-bottom: 20px;}
.list-type { text-align: right;}

/* search_text - 검색어 버튼 */
.search-list li.search_text {position: relative;}
.search-list li.search_text .btn {position: absolute; bottom:1px; right: 1px; }

/* period-date - 기간별 */
.search-list li.period-date {display: flex; flex-flow: row; align-items: center;}

/* 검색결과 없을 경우 */
.search-none {text-align: center; color: var(--color-gray); font-size: 3em; padding: 30px 0;}
.search-none p.nsB {color: var(--color-gray); font-size: 1.6rem; padding: 10px 0;}

/* **************************************** *
 * SCROLLBAR
 * **************************************** */
.scrollbar::-webkit-scrollbar-track
{
/*	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);*/
	background-color: transparent;
}
.scrollbar::-webkit-scrollbar
{
	width: 6px;
	background-color: var(--color-bg);
}
.scrollbar::-webkit-scrollbar-thumb
{
	background-color: rgba(0,0,0,.3);
	border-radius: 10px;
}
/* set button(top and bottom of the scrollbar) */
.scrollbar::-webkit-scrollbar-button {display:none;}

/* **************************************** *
 * loading (부분로딩) - progress
 * **************************************** */
.part-loading-wrap {position: relative; width: 100%;}
.loading_border { position: absolute; top: calc(50% - 125px); left: calc(50% - 125px);   text-align: center; width: 250px; height: 250px; border-radius: 50%; border-right: 3px solid #a7dce3; animation: animate 2s linear infinite; }
.loading {width: 200px; height: 200px;  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); text-align: center; line-height: 150px;}
.loading img {width: 60%; }

.progress-text-wrap {position: relative; font-size: 18px; height: 28px;}
.progress-text { transform: translatey(0); animation: progress-text-animation ease; animation-iteration-count: 1; animation-duration: 10s; font-size: 0; color:#fff;}
.progress-text:nth-child(2) { animation-delay: 1s;}
.progress-text:nth-child(2) { animation-delay: 11s;}
.progress-text:nth-child(3) { animation-delay: 21s;}
.progress-text:nth-child(4) { animation-delay: 31s;}
.progress-text:nth-child(5) { animation-delay: 41s;}

.progress-head {display: flex; align-items: center; justify-content: space-between;}
.js-progresstxt {color: #fff;}
.state-num {color:#fff;}
#progressbar {position: fixed; top:0; left:0; background: rgba(0,0,0,.8); z-index:9999; width: 100%; height: 100%; display: none; }
.progress-fullpage {width: 80%; max-width: 1200px; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);}

.progress-type01 {		
	margin-top:10px;
	border-radius:10px;
	max-width: 1200px;
	overflow: hidden; 
}
.progress-type01 .progress-bar {
	width:0%;
	height:5px;
	max-width: 100%;
	background:linear-gradient(to right,rgb(76,217,105),rgb(90,200,250),rgb(0,132,255),rgb(52,170,220),rgb(88,86,217),rgb(255,45,83));
	background-size: 1200px 5px;
	animation:loading ease-in-out forwards;
	animation-duration: 10s;
}
#progressbar01 {display: block; width: 100%; height: 5px; border-radius: 7px; appearance: none;-webkit-appearance: none;-moz-appearance: none;}
#progressbar01::-webkit-progress-bar {background-color: #f1f1f1;border-radius: 7px;}
#progressbar01::-webkit-progress-value {background:linear-gradient(to right,rgb(76,217,105),rgb(90,200,250),rgb(0,132,255),rgb(52,170,220),rgb(88,86,217),rgb(255,45,83)); background-size: 1200px 5px;border-radius: 7px;}
#progressbar01::-moz-progress-bar {border-radius: 7px;}
@keyframes progress-text-animation {
  0% {
	font-size: 1em;
	opacity: 0;
	transform: translatey(-0.3em);
  }
  10%, 90% {
	transform: translatey(0);
	opacity: 100%;
	font-size: 1em;
  }
  100% {
	font-size: 1em;
	opacity: 0;
	transform: translatey(0em);
  }
}

@keyframes loading {
  to {
	width:100%;
  }
}

/* **************************************** *
 * PAGER
 * **************************************** */
.pager ul {display:flex; align-items: center; justify-content: center; text-align:center; margin:30px auto;}
.pager li {text-align:center;  width:30px; height:30px; color:#989da4; font-size:13px; margin: 0 1px}
.pager a {display:inline-flex; align-items: center; justify-content: center; width:100%; height:100%; vertical-align:middle; font-weight: 700}
.pager a i {font-size: 11px;}
.pager a.current_page {background:var(--color-blue); color:#FFF; border:0; border-radius:5px;}

/* **************************************** *
 * TAB
 * **************************************** */
ul[class*="tab-type"] {display: flex; align-items: center;}
ul[class*="tab-type"] a {display: flex; align-items: center; justify-content: center; box-sizing: border-box; transition: .07s ease-in-out;}
.tab-type01 {position: relative; width: calc(100% - 2px); margin-bottom: 2rem;}
.tab-type01:after {content:''; position: absolute; bottom:0; left:0;  display: block; width: 100%; height: 2px; background: var(--color-dark);}
.tab-type01 li {flex:1; }
.tab-type01 li a {font-size: 1.6rem; padding: 1.6rem; border: 1px solid #ccc; border-bottom: none; margin-left: -1px; color: var(--color-gray);}
.tab-type01 li:first-child a {border-radius: 6px 0 0 0;}
.tab-type01 li:last-child a {border-radius: 0 6px 0 0;}
.tab-type01 li a.active {color:#fff; background: var(--color-dark); border-color: var(--color-dark); color:#fff;}

.tab-type01.blue:after {background: var(--color-blue);}
.tab-type01.blue li a.active {background: var(--color-blue); border-color: var(--color-blue);}

.tab-type02 {position: relative; width: calc(100%); margin-bottom: 2rem;}
.tab-type02 li {flex:1;}
.tab-type02 li a {font-size: 1.6rem; padding: 1.6rem; border: 1px solid #ccc; margin-left: -1px; color: var(--color-gray);}
.tab-type02 li:first-child a {border-radius: 6px 0 0 6px;}
.tab-type02 li:last-child a {border-radius: 0 6px 6px 0;}
.tab-type02 li a.active {color:#fff; background: var(--color-blue); border-color: var(--color-blue); color:#fff;}

.tab-type03 {position: relative; margin-bottom: 2rem;}
.tab-type03 li {margin-right: 1rem;}
.tab-type03 li a {font-size: 1.6rem; padding: 1.2rem 3.6rem; border: 1px solid #ccc; margin-left: -1px; color: var(--color-gray); border-radius: 6px;}
.tab-type03 li a.active {color:#fff; background: var(--color-blue); border-color: var(--color-blue); color:#fff;}

.tab-type04 {position: relative; margin-bottom: 2rem;}
.tab-type04:after {content:''; display: block; position: absolute; bottom:0; left:0; width: 100%; height: 1px; background: #ccc; z-index:0;}
.tab-type04 li a {position: relative; font-size: 1.4rem; padding: 1.6rem; margin-left: -1px; color: var(--color-gray);}
.tab-type04 li a:before {content:''; position: absolute; top: 50%; right: 0; transform: translateY(-50%); width: 1px; height: 10px; background: #ccc; }
.tab-type04 li:last-of-type a:before {background: none; width:0; height:0;}
.tab-type04 li a.active:after {content:''; position: absolute; bottom: 0px; left: 0; width: 100%; height: 3px; background: var(--color-dark); z-index:2;}
.tab-type04 li a.active {color: #252525; transform: none;}
/* **************************************** *
 * ACCORDION
 * **************************************** */
.slideToggle {color: var(--color-dark) !important;}
.slideToggle.active {color: var(--color-blue) !important;}
.slideToggle.active i:before {content:'\ea51';}
#slideToggle {display:block;}

.accordian {color: var(--color-dark) !important;}
.accordian.active {color: var(--color-blue) !important;}
.accordian.active i:before {content:'\ea51';}


/*keframes*/
@keyframes updown {
	from,to{-webkit-transform:translate3d(0, 0, 0); transform:translate3d(0, 0, 0)}
	15%,45%,75%{-webkit-transform:translate3d(-0px, -.3px, 0);transform:translate3d(-0px, -.3px, 0)}
	30%,60%,90%{-webkit-transform:translate3d(0px, .3px, 0);transform:translate3d(0px, .3px, 0)}
}
@keyframes triggerFadeIn{
    0%{
        opacity: 0;
        transform: scale(0.7);
    }
    50%{
        transform: scale(1);
    }
    100%{
        opacity: 1;
    }
}

