@charset "utf-8";

[data-tooltip-text] {
	position: relative;
	font-size: 1rem;
}

[data-tooltip-text]:hover:before {
	content: attr(data-tooltip-text);
	position: absolute;
	top: 100%;
	left: 50%;
	background-color: #333132;
	-webkit-box-shadow: 0 2px 3px 0 rgba(50, 50, 50, 0.4);
	-moz-box-shadow: 0 2px 3px 0 rgba(50, 50, 50, 0.4);
	box-shadow: 0 2px 3px 0 rgba(50, 50, 50, 0.4);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	color: #fff;
	font-size: 14px;
	padding: 5px 12px;
	width: auto;
	min-width: 50px;
	max-width: 180px;
	word-wrap: break-word;
	z-index: 10001;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	margin-top: 11px;
/*	white-space: nowrap;*/
	line-height: 1.5;
}

[data-tooltip-text]:hover:after {
	content: "";
	position: absolute;
	border-right: 5px solid transparent;
	border-bottom: 7px solid #333132;
	border-left: 5px solid transparent;
	top: 100%;
	left: 50%;
	margin-top: 5px;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 10001;
}
.type_album:before {
	content: "";
	position: absolute;
	top: 5px;
	right: 5px;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	text-align: center;
	line-height: 22px;
	font-size: 14px;
	font-weight: 700;
	color: #406D96;
	background-color: #AAAEB2;
	border: 1px solid #fff;
	opacity: .5;
	z-index: 1;
}
.type_album.data-order:before {
	content: attr(data-order);
	background-color: #fff;
	opacity: 1;
}

body {font-family: 'Noto Sans KR', 'NotoSansCJKkr', 'Malgun Gothic', '맑은 고딕', sans-serif; color:#242424;font-weight:400; font-size:14px; line-height:1.5;}
th,td,input,select,textarea,button {font-weight:400; font-size:14px; line-height:1.5;font-family: inherit;color: inherit;}
a{font-family: inherit;text-decoration:none; color:inherit;}

input::placeholder,
textarea::placeholder {
	color: rgba(119,119,119,.5);
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: rgba(119,119,119,.5);
}

input:-moz-placeholder,
textarea:-moz-placeholder {
	color: rgba(119,119,119,.5);
}

input::-moz-placeholder,
textarea::-moz-placeholder {
	color: rgba(119,119,119,.5);
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	color: rgba(119,119,119,.5);
}

input:focus,
textarea:focus {
	/* background-color: #f9f9f9; */
}

input:focus::placeholder,
textarea:focus::placeholder {
	color: transparent;
}

select {
	display: inline-block;
	width: 100%;
	max-width: 360px;
	border: 1px solid #d7d7d7;
	font-size: 15px;
	font-weight: 300;
	color: #242424;
	padding: 10px 20px 10px 10px;
/*	background: #fff url('/assets/img/ic_spinner_down.svg') no-repeat right 10px center;*/
	background: #fff url('/assets/images/ico_select_arrow.png') no-repeat right 10px center;
	-webkit-appearance: none;
	-moz-appearance: none; 
	appearance: none;
	-webkit-border-radius: 5px;
    border-radius: 5px;
}
select.select_sm {
	padding: 5px 20px 5px 10px;
}
select::-ms-expand { 
	display: none; 
} 
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
	padding: 0 20px 0 5px;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

textarea {
	color: #333;
	padding: 10px;
	resize: none;
	width: 100%;
}
input {
	color: #333;
    padding: 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #d7d7d7;
}
input.datepicker-input {
	padding: 10px 34px 10px 10px;
	background: url('/assets/images/ico_datepicker.png') no-repeat right 10px center/14px !important;
}

input[type="radio"] {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

input[type="radio"] + label {
	display: inline-block;
	position: relative;
	padding-left: 22px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	line-height: 15px;
	margin: 8px 0;
}

input[type="radio"] + label ~ label {
	margin-left: 20px;
}

input[type="radio"] + label:before {
	content: '';
	position: absolute;
	left: 0;
	top: 1px;
	width: 16px;
	height: 16px;
	text-align: center;
	background: #fff;
	border: 1px solid #949CBC;
	border-radius: 100%;
}

input[type="radio"] + label:active:before,
input[type="radio"]:checked + label:active:before {
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
}

input[type="radio"]:checked + label:before {
	background: #fff;
	border-color: #064E90;
}

input[type="radio"]:checked + label:after {
	content: '';
	position: absolute;
	top: 5px;
	left: 4px;
	width: 8px;
	height: 8px;
	background: #064E90;
	border-radius: 100%;
}

input[type="checkbox"] {
	display: none !important;
}
input[type="checkbox"] + label {
	position: relative;
	display: inline-block;
	cursor: pointer;
	padding-left: 22px;
	line-height: 15px;
	font-size: 15px;
	color: #242424;
	vertical-align: middle;
}
input[type="checkbox"] + label ~ label {
	margin-left: 20px;
}
input[type="checkbox"] + label:before {
	content: "";
	display: inline-block;
	position: absolute;
	left: 0;
	top: 0;
	width: 16px;
	height: 16px;
	background: #fff;
	border: 1px solid #bebebe;
	border-radius: 3px;
	font-family: 'FontAwesome';
	font-size: 14px;
	line-height: 14px;
	text-align: center;
}
input[type="checkbox"]:checked + label {
	color: #064E90;
}
input[type="checkbox"]:checked + label:before {
	content: "\f00c";
	color: #fff;
	display: inline-block;
	width: 16px;
	height: 16px;
	background: #064E90;
	border-color: #064E90;
}

.basic_textarea textarea {
	background-color: #F7F8F9;
	border: 1px solid #D4DAE1;
	border-radius: 10px;
	padding: 15px 20px;
}

.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 {
	font-size: 0;
}
.filebox label {
	display: inline-block;
	text-align: center;
	width: 80px;
	cursor: pointer;
	padding: 10px;
	background-color: #3C3F44;
	line-height: 1;
	font-size: 14px;
	font-weight: 300;
	color: #fff;
/*	border-radius: 6px;*/
/*	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.35);*/
	margin-left: 10px;
}

.filebox .upload-name {
	display: inline-block;
	font-size: 14px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
/*	border: 1px solid #949CBC;*/
	width: calc(100% - 90px);
/*	color: #9d9d9d;*/
	text-align: left;
	background-color: #fff;
	max-width: 100%;
/*	padding: 6px 10px;*/
}
.filebox label:active {
/*	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);*/
}
/*
@media screen and (min-width: 1201px) {
	.filebox label:hover {
		background-color: #7677eb;
	}
}
*/
/*@media screen and (max-width: 767px) {*/
	.filebox .upload-name {
		font-size: 14px;
	}
	.filebox label {
		font-size: 12px !important;;
		padding: 9px 10px;
	}
	select {
		font-size: 14px;
	}
/*}*/

/* */
.t_l {text-align: left !important;}
.t_r {text-align: right !important;}
.t_c {text-align: center !important;}

.mt70 {margin-top: 70px !important;}
.mb70 {margin-bottom: 70px !important;}
.mt60 {margin-top: 60px !important;}
.mb60 {margin-bottom: 60px !important;}
.mt50 {margin-top: 50px !important;}
.mb50 {margin-bottom: 50px !important;}
.mt40 {margin-top: 40px !important;}
.mb40 {margin-bottom: 40px !important;}
.mt30 {margin-top: 30px !important;}
.mb30 {margin-bottom: 30px !important;}
.mt25 {margin-top: 25px !important;}
.mt20 {margin-top: 20px !important;}
.mb20 {margin-bottom: 20px !important;}
.mt15 {margin-top: 15px !important;}
.mb15 {margin-bottom: 15px !important;}
.ml15 {margin-left: 15px !important;}
.mt10 {margin-top: 10px !important;}
.mb10 {margin-bottom: 10px !important;}
.ml10 {margin-left: 10px !important;}
.mr10 {margin-right: 10px !important;}
.mt5 {margin-top: 5px !important;}
.mr5 {margin-right: 5px !important;}
.mb5 {margin-bottom: 5px !important;}
.ml5 {margin-left: 5px !important;}
.ml0 {margin-left: 0 !important;}
.m0 {margin: 0 !important;}
.mt0 {margin-top: 0 !important;}
.mb0 {margin-bottom: 0 !important;}
.p0 {padding: 0 !important;}
.pt0 {padding-top: 0 !important;}
.pr0 {padding-right: 0 !important;}
.pb0 {padding-bottom: 0 !important;}
.pt10 {padding-top: 10px !important;}
.pb10 {padding-bottom: 10px !important;}
.pt20 {padding-top: 20px !important;}
.pb20 {padding-bottom: 20px !important;}
.bor_t0 {border-top: 0 !important;}
.bor_b0 {border-bottom: 0 !important;}

.color_999 {color: #999 !important;}
.color_888 {color: #888 !important;}
.color_666 {color: #666 !important;}
.color_222 {color: #222 !important;}
.color_fff {color: #fff !important;}
.color_gray7 {color: #707579 !important;}
.color_gray {color: #AAAEB2 !important;}
.color_black {color: #242424 !important;}
.color_blue {color: #406D96 !important;}
.color_red {color: #E2484B !important;}
.color_red2 {color: #ea0b10 !important;}
.color_green {color: #029C8E !important;}
.color_orange {color: #F3533B !important;}
.color_base {color: #064E8F !important;}
.bg_fff {background-color: #fff !important;}
.bg_base {background-color: #064E8F !important;}
.bg_E7EDF4 {background-color: #E7EDF4 !important;}
.bg_F5F5F5 {background-color: #F5F5F5 !important;}

.fw_100 {font-weight: 100;}
.fw_200 {font-weight: 200;}
.fw_300 {font-weight: 300;}
.fw_400 {font-weight: 400;}
.fw_500 {font-weight: 500;}
.fw_600 {font-weight: 600;}
.fw_700 {font-weight: 700;}
.fw_800 {font-weight: 800;}
.fw_900 {font-weight: 900;}

.fs_35 {font-size: 35px !important;}
.fs_25 {font-size: 25px !important;}
.fs_24 {font-size: 24px !important;}
.fs_23 {font-size: 23px !important;}
.fs_22 {font-size: 22px !important;}
.fs_20 {font-size: 20px !important;}
.fs_19 {font-size: 19px !important;}
.fs_18 {font-size: 18px !important;}
.fs_17 {font-size: 17px !important;}
.fs_16 {font-size: 16px !important;}
.fs_15 {font-size: 15px !important;}
.fs_14 {font-size: 14px !important;}
.fs_13 {font-size: 14px !important;}
.fs_12 {font-size: 14px !important;}
.fs_11 {font-size: 11px !important;}
.fs_10 {font-size: 10px !important;}
.fs_0 {font-size: 0 !important;}

.lh_1_8 {line-height: 1.8;}

.w100 {
	width: 100% !important;
}
.w_auto {
	width: auto !important;
}

.bor_b_gray {
	border-bottom: 1px solid #e4e4e4;
}
.bor_t {
	border-top: 1px solid #EFEFEF;
}
.bor_b {
	border-bottom: 1px solid #EFEFEF;
}

.bor_radius_0 {
	border-radius: 0 !important;
}

.td_under {
	text-decoration: underline;
}

.pos_r {position: relative;}
.o_h {overflow: hidden;}
.f_r {float: right;}
.f_l {float: left;}
.a_c {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.j_c {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.j_sb {
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.highlight {
	background-color: #8FE51A;
}

/* ---------------------------------- layout */
html, body {min-height:100vh;}

body {overflow-x:scroll;}
body.pop_open {overflow: hidden !important;}
body.gnb_open {overflow: hidden !important;}

.ripple_el {overflow: hidden;}
.ripple_el__span {
	position: relative;
	z-index: 1010;
}

.ver_top {
	vertical-align: top;
}

.shadow.active {
	-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1)
}

/* radio custom */
label.type_radio {}
label.type_radio input[type="radio"] {
	display: none !important;
}
label.type_radio input[type="radio"] + span.label {
	position: relative;
	display: inline-block;
	cursor: pointer;
	padding-left: 25px;
	line-height: 16px;
	font-size: 15px;
	color: #242424;
	vertical-align: middle;
}
label.type_radio input[type="radio"] + span.label:before {
	content: "";
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0px;
    width: 16px;
    height: 16px;
    background: transparent;
    border: 1px solid #bebebe;
    font-family: 'FontAwesome';
    font-size: 14px;
    line-height: 14px;
    text-align: center;
    border-radius: 50%;
}
label.type_radio input[type="radio"]:checked + span.label:before {
    color: #fff;
    display: inline-block;
    width: 16px;
    height: 16px;
    border-color: #406D96;
}
label.type_radio input[type="radio"] + span.label:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: none;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 300ms cubic-bezier(0.550, -0.330, 0.875, 0.525);
    -o-transition: all 300ms cubic-bezier(0.550, -0.330, 0.875, 0.525);
    -moz-transition: all 300ms cubic-bezier(0.550, -0.330, 0.875, 0.525);
    transition: all 300ms cubic-bezier(0.550, -0.330, 0.875, 0.525);
}
label.type_radio input[type="radio"]:checked + span.label:after {
    background: #406D96;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 300ms cubic-bezier(0.175, 0.885, 0.395, 1.370);
    -o-transition: all 300ms cubic-bezier(0.175, 0.885, 0.395, 1.370);
    -moz-transition: all 300ms cubic-bezier(0.175, 0.885, 0.395, 1.370);
    transition: all 300ms cubic-bezier(0.175, 0.885, 0.395, 1.370);
}
label.type_radio input[type="radio"] + span.label.active:before {
	-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
}

/* checkbox custom */
label.type_check {}
label.type_check input[type="checkbox"],
label.type_check input[type="radio"] {
	display: none !important;
}
label.type_check input[type="checkbox"] + span.label,
label.type_check input[type="radio"] + span.label {
	position: relative;
	display: inline-block;
	cursor: pointer;
	padding-left: 25px;
	line-height: 15px;
	font-size: 15px;
	color: #242424;
	vertical-align: middle;
}
label.type_check input[type="checkbox"] + span.label:before,
label.type_check input[type="radio"] + span.label:before {
	content: "";
	display: inline-block;
	position: absolute;
	left: 0;
	top: 1px;
	width: 14px;
	height: 14px;
	background: transparent;
	border: 1px solid #AAAEB2;
	border-radius: 0;
	font-family: 'FontAwesome';
	font-size: 14px;
	line-height: 12px;
	text-align: center;
	border-radius: 50%;
}
label.type_check input[type="checkbox"]:checked + span.label:before,
label.type_check input[type="radio"]:checked + span.label:before {
	content: "\f00c";
	color: #fff;
	display: inline-block;
	width: 14px;
	height: 14px;
	background: #2F3A56;
	border-color: #2F3A56;
}

/* 팝업 */
.page_wrap {
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    bottom: -70px;
    left: 0;
    z-index: 10300;
    background-color: rgba(0,0,0,.6);
}
.page_inner {
    position: fixed;
    top: 50%;
    right: 20px;
    left: 20px;
    max-height: 80%;
    border-radius: 20px;
    background-color: #fff;
    overflow: hidden;
    overflow-y: auto;
    padding: 30px;
    z-index: 1050;
    margin-top: -40px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.page_inner.on {
	margin-top: 0;
}
.page_btn {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
}
.page_btn > li {
	flex: 1;
}

.alert_design_form {
	position: fixed;
	right: 20px;
	bottom: 50px;
	left: 20px;
	padding: 15px;
	border-radius: 30px;
	text-align: center;
	background-color: rgba(36,36,36,.6);
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	opacity: 0;
	pointer-events: none;
	z-index: 2000;
}
.alert_design_form.on {
	bottom: 30px;
	opacity: 1;
}
.alert_design_form p {
	font-size: 15px;
	color: #fff;
}