@import url('//fonts.googleapis.com/earlyaccess/notosanskr.css');

* {
	font-family: 'Noto Sans KR', sans-serif;
	/*font-size: 15px;*/
	color: #333;
	box-sizing: border-box;
}

html, body, ul, li, input, table, button {
	margin: 0;
	padding: 0;
}

body {
	background-color: #ecf8fe;
}

ul, li {
	list-style: none;
}

a {
	height: inherit;
	color: inherit;
	font-size: inherit;
	text-decoration: none;
	display: inline-block;
}

span {
	font-size: inherit;
	color: inherit;
}

select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-repeat: no-repeat;
	background-color: #fff;
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}

a:focus, input:focus, button:focus, select:focus, textarea:focus {
	outline: none;
}

input[type='checkbox'], input[type='radio'], input[type='file'] {
	display: none;
}

input[type='text'], input[type='email'], input[type='number'], input[type='password'], input[type='date'], select {
	width: 100%;
	height: 40px;
	padding: 0 10px;
	border: 1px solid #ddd;
	border-radius: 10px;
	background-color: #fff;
}

input[type='date'] {
	cursor: pointer;
}

input[type='date']::-webkit-inner-spin-button {
	display: none;
	-webkit-appearance: none;
	appearance: none;
}

input[type='date']::-webkit-calendar-picker-indicator:focus {
	outline: none;
}

input::placeholder, input::-webkit-input-placeholder, input:-ms-input-placeholder, input:-moz-placeholder,
textarea::placeholder, textarea::-webkit-input-placeholder, textarea:-ms-input-placeholder, textarea:-moz-placeholder {
	color: #ccc;
}

input:read-only, input:disabled {
	background-color: #fafafa;
	color: #999;
}

button {
	padding: 0;
	border: 0;
	border-radius: 0;
	background-color: transparent;
	cursor: pointer;
}

button img {
	display: block;
}

textarea {
	width: 100%;
	border: 1px solid #ddd;
	margin: 0;
	padding: 10px;
	border-radius: 10px;
	resize: none;
}

div {
	position: relative;
}

table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
}

table th, table td {
	vertical-align: middle;
	padding: 10px;
}

label {
	cursor: pointer;
	display: inline-block;
}

::-webkit-scrollbar {
	display: none;
}

body > .loading { position: fixed; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.3); z-index: 99999; text-align: center; }
body > .loading img { position: absolute; width: 32px; height: 32px; top: 0; bottom: 0; margin: auto 0; }

.d-none { display: none; }
.mobile { display: none; }

.MJX-TEX * {
	font-family: MJXZERO, MJXTEX !important;
}

.layer {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	display: none;
}

.layer .layer_container {
	width: 100%;
	height: 100%;
	padding: 20px;
	justify-content: center;
	align-items: center;
	display: flex;
}

.layer .layer_container .layer_box {
	overflow-y: auto;
	width: 600px;
	max-width: 100%;
	height: fit-content;
	max-height: 100%;
	background-color: #fff;
	border-radius: 10px;
	padding: 20px 40px;
}

.layer .layer_container .layer_box > .close_btn {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 1;
}

.layer .layer_container .layer_box > .close_btn img {
	width: 14px;
	height: 14px;
	display: block;
}

.layer .layer_container .layer_box .layer_title_wrap {
	text-align: center;
	margin-top: -10px;
}

.layer .layer_container .layer_box .layer_title_wrap .title {
	font-size: 32px;
	font-weight: 600;
}

.layer .layer_container .layer_box .layer_title_wrap .explain {
	font-size: 17px;
	margin-top: 5px;
}

.layer .layer_container .layer_box .sub_title {
	font-size: 28px;
	margin-bottom: 5px;
}

.layer .layer_container .layer_box .box_title {
	font-size: 17px;
	font-weight: 500;
	margin-top: 40px;
	padding-left: 10px;
}

.layer .layer_container .layer_box .border_img {
	margin: 20px auto;
	display: block;
}

.layer .layer_container .layer_box .description {
	font-size: 12px;
	color: #9a9a9a;
}

.layer .layer_container .layer_box ul li {
	border: 1px solid #ccc;
	border-radius: 10px;
	padding: 10px 15px;
	margin-top: 10px;
	align-items: center;
	display: flex;
}

.layer .layer_container .layer_box ul.slider_ul li span {
	width: 100%;
	font-size: 17px;
	padding-right: 15px;
}

.layer .layer_container .layer_box ul.slider_ul .slider_wrap {
	flex-shrink: 0;
}

.layer .layer_container .layer_box .blue_gradient {
	box-shadow: 10px 10px 20px 8px #32afe63d;
}

.layer .layer_container .layer_box .yellow_gradient {
	box-shadow: 10px 10px 20px 8px #ffcc0033;
}

.layer .layer_container .layer_box .gray_gradient {
	box-shadow: 10px 10px 20px 8px #e9e9e933;
}

.popup_layer {
	background-color: rgba(0, 0, 0, 0.2);
}

.alert_layer .layer_container .layer_box {
	width: fit-content;
}

.gradient_bg {
	font-size: 17px;
	font-weight: 500;
	color: #fff;
	display: block;
}

.blue_gradient {
	background: linear-gradient(90deg, #0092db, #00aaff);
}

.yellow_gradient {
	background: linear-gradient(90deg, #ff9600, #ffcc00);
}

.gray_gradient {
	background: linear-gradient(90deg, #ccccd8, #e9e9e9);
	color: #333;
}

.round_btn_wrap {
	width: 100%;
	max-width: 420px;
	margin: 50px auto 20px;
	justify-content: center;
	display: flex;
}

.round_btn_wrap .gradient_bg {
	width: 100%;
	max-width: 420px;
	height: 50px;
	line-height: 50px;
	border-radius: 60px;
	text-align: center;
}

.round_btn_wrap .gradient_bg:not(:first-child) {
	margin-left: 20px;
}

.round_btn_wrap.full {
	flex-flow: column;
	display: flex;
}

.round_btn_wrap.full .gradient_bg {
	margin-left: 0;
}

.round_btn_wrap.full .gradient_bg:not(:first-child) {
	margin-top: 30px;
}

.round_btn_wrap .cancel_btn {
	background-color: #f5f5f5;
}

.radio_wrap {
	width: 100%;
	padding-left: 40px;
}

.radio_wrap label {
	position: relative;
	font-size: 18px;
	font-weight: 500;
	padding-left: 30px;
}

.radio_wrap label:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 22px;
	height: 22px;
	background-image: url('/assets/img/radio.png');
	background-repeat: no-repeat;
	background-size: 100%;
	margin: auto 0;
}

.radio_wrap input:checked + label:before {
	background-image: url('/assets/img/radio_active.png');
}

.chk_wrap label {
	position: relative;
	padding-left: 28px;
}

.chk_wrap label:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 15px;
	height: 15px;
	border: 2px solid #414141;
	border-radius: 4px;
	margin: auto 0;
	transition: 0.3s ease background-color;
}

.chk_wrap input:checked + label:before {
	background-color: #0092db;
	border-color: #0092db;
}

.chk_wrap input:checked + label:after {
	content: '';
	position: absolute;
	top: 1px;
	bottom: 0;
	left: 0;
	z-index: 1;
	width: 19px;
	height: 19px;
	margin: auto 0;
	background-image: url('/assets/img/white_check.png');
	background-repeat: no-repeat;
	background-size: 12px 10px;
	background-position: center;
}

.chk_wrap.big_chk label {
	font-size: 18px;
	font-weight: 500;
	padding-left: 35px;
}

.chk_wrap.big_chk label:before {
	width: 20px;
	height: 20px;
}

.chk_wrap.big_chk input:checked + label:after {
	width: 24px;
	height: 24px;
	background-size: 15px 11px;
}

.frm_wrap {
	max-width: 500px;
	width: 100%;
	margin: 0 auto;
}

.frm_wrap .inp_wrap:not(:first-child) {
	margin-top: 20px;
}

.frm_wrap .inp_wrap > label {
	font-size: 17px;
	padding-left: 15px;
	margin-bottom: 8px;
	cursor: initial;
	display: inline-block;
}

.frm_wrap .inp_wrap input:not(:nth-of-type(1)) {
	margin-top: 15px;
}

.frm_wrap .inp_wrap input:not([type='radio']):not([type='checkbox']):not([type='file']) {
	width: 100%;
	height: 55px;
	padding: 0 40px;
	font-size: 17px;
}

.frm_wrap .inp_wrap input[type='file'] + label {
	height: 55px;
	line-height: 53px;
	padding: 0 40px;
	border: 1px solid #ddd;
	font-size: 17px;
	border-radius: 20px;
	display: block;
}

.frm_wrap .inp_wrap .reset_wrap input {
	padding-right: 60px;
}

.frm_wrap .inp_wrap .reset_wrap .reset_btn {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 20px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background-color: #ccc;
	margin: auto 0;
}

.frm_wrap .inp_wrap .reset_wrap .reset_btn img {
	width: 12px;
	margin: 0 auto;
}

.frm_wrap .inp_wrap .radio_wrap,
.frm_wrap .inp_wrap .chk_wrap {
	height: 55px;
	padding: 0 40px;
	border: 1px solid #ddd;
	border-radius: 10px;
	align-items: center;
	display: flex;
}

.frm_wrap .inp_wrap .radio_wrap .r,
.frm_wrap .inp_wrap .chk_wrap .c {
	width: 100%;
}

.frm_wrap .inp_wrap input[name='birth'] {
	cursor: pointer;
}

.frm_wrap .inp_wrap .calendar_wrap img {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 20px;
	width: 18px;
	margin: auto 0;
}

.slider_wrap label {
	position: relative;
	width: 34px;
	height: 25px;
	cursor: pointer;
	display: block;
}

.slider_wrap label:before {
	content: '';
	width: inherit;
	height: inherit;
	background: url('/assets/img/slider_gr_bg.png') no-repeat center;
	background-size: 34px;
	display: block;
}

.slider_wrap label:after {
	content: '';
	position: absolute;
	top: 0;
	left: -5px;
	width: 24px;
	height: inherit;
	background: url('/assets/img/slider_gr_circle.png') no-repeat right;
	background-size: 21px;
}

.slider_wrap input:checked + label:before {
	background-image: url('/assets/img/slider_bl_bg.png');
}

.slider_wrap input:checked + label:after {
	left: unset;
	right: -2px;
	background-image: url('/assets/img/slider_bl_circle.png');
}

.orderby_btn {
	flex-shrink: 0;
}

.orderby_btn img {
	width: 19px;
}

.orderby_box {
	position: absolute;
	right: 0;
	bottom: -30px;
	z-index: 2;
	padding: 7px 10px;
	background-color: #fff;
	color: #666;
	font-size: 13px;
	font-weight: 300;
	border: 1px solid #d9d9d9;
	border-radius: 10px;
	display: none;
}

.orderby_box:before {
	content: '';
	position: absolute;
	top: -6px;
	right: 16px;
	width: 10px;
	height: 10px;
	border: 1px solid #d9d9d9;
	border-right: 0;
	border-bottom: 0;
	background-color: #fff;
	transform: rotate(45deg);
}

.orderby_box a {
	margin-left: 15px;
	float: left;
}

.orderby_box a:first-child {
	margin-left: 0;
}

.orderby_box a img {
	width: 14px;
	margin-right: 8px;
}

.text_blue {
	color: #0092db;
}

.full_calendar_wrap .fc {
	height: calc(100% - 46px);
	margin-bottom: 20px;
	display: block;
}

.full_calendar_wrap .fc .fc-toolbar-chunk button {
	background-color: #fff;
	padding: 0;
	border: 0;
	border-radius: 0;
	display: block;
}

.full_calendar_wrap .fc .fc-toolbar-chunk button .fc-icon {
	font-size: 28px;
	color: #333;
}

.full_calendar_wrap .fc .fc-toolbar-chunk .fc-toolbar-title {
	font-size: 18px;
	font-weight: 400;
}

.full_calendar_wrap .fc .fc-scrollgrid,
.full_calendar_wrap .fc .fc-scrollgrid * {
	border: 0;
	color: inherit;
}

.full_calendar_wrap .fc .fc-daygrid-day-top {
	justify-content: center;
}

.full_calendar_wrap .fc table th,
.full_calendar_wrap .fc table td {
	vertical-align: middle;
	background-color: #fff !important;
}

.full_calendar_wrap .fc td .fc-scrollgrid-sync-inner {
	width: 40px;
	height: 40px;
	line-height: 30px;
	margin: 0 auto;
}

.full_calendar_wrap .fc .fc-day .fc-scrollgrid-sync-inner {
	border-radius: 50%;
	cursor: pointer;
}

.full_calendar_wrap .fc .fc-day-today .fc-scrollgrid-sync-inner {
	background-color: #0092db;
	color: #fff;
}

.full_calendar_wrap .fc .fc-daygrid-day-events {
	margin-top: -4px;
}

.full_calendar_wrap .fc .fc-daygrid-day-events .fc-event {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	margin: 0 auto;
}

.full_calendar_wrap .fc .fc-select .fc-scrollgrid-sync-inner {
	background-color: #ffcb03;
}

.full_calendar_wrap .fc .fc-button:focus {
	box-shadow: unset !important;
}

@media(max-width: 650px) {
	.layer .layer_container .layer_box .border_img {
		width: 100%;
	}
}

@media(max-width: 540px) {
	.layer .layer_container .layer_box {
		min-width: unset;
	}
}

@media(max-width: 480px) {
	.round_btn_wrap.full .gradient_bg:not(:first-child) {
		margin-top: 15px;
	}

	.layer .layer_container .layer_box {
		padding: 20px 25px;
	}

	.layer .layer_container .layer_box .layer_title_wrap .title {
		font-size: 24px;
	}

	.layer .layer_container .layer_box .layer_title_wrap .explain {
		font-size: 14px;
	}

	.layer .layer_container .layer_box .border_img {
		margin: 15px 0;
	}

	.layer .layer_container .layer_box .box_title {
		margin-top: 20px;
	}

	.round_btn_wrap {
		margin: 30px auto 10px;
	}

	.layer .layer_container .layer_box .blue_gradient {
		box-shadow: 5px 5px 10px 5px #32afe63d;
	}

	.layer .layer_container .layer_box .yellow_gradient {
		box-shadow: 5px 5px 10px 5px #ffcc0033;
	}

	.layer .layer_container .layer_box .gray_gradient {
		box-shadow: 5px 5px 10px 5px #e9e9e933;
	}

	.frm_wrap .inp_wrap > label {
		font-size: 15px;
	}

	.frm_wrap .inp_wrap .radio_wrap,
	.frm_wrap .inp_wrap .chk_wrap {
		height: 45px;
		padding: 0 20px;
	}

	.frm_wrap .inp_wrap input:not([type='radio']):not([type='checkbox']):not([type='file']) {
		height: 45px;
		padding: 0 20px;
		font-size: 14px;
	}

	.chk_wrap.big_chk label {
		line-height: 18px;
		padding-left: 30px;
		font-size: 15px;
	}

	.chk_wrap.big_chk label:before {
		width: 16px;
		height: 16px;
	}

	.chk_wrap.big_chk input:checked + label:after {
		width: 20px;
		height: 20px;
		background-size: 12px 8px;
	}

	.radio_wrap label {
		font-size: 15px;
		padding-left: 25px;
	}

	.radio_wrap label:before {
		width: 18px;
		height: 18px;
	}
}

@media(max-width: 400px) {
	* {
		font-size: 14px;
	}

	.chk_wrap label {
		padding-left: 25px;
	}

	.chk_wrap label:before {
		width: 13px;
		height: 13px;
	}

	.chk_wrap input:checked + label:after {
		width: 17px;
		height: 17px;
		background-size: 10px 8px;
	}

	.chk_wrap.big_chk label {
		padding-left: 25px;
		font-size: 14px;
	}

	.chk_wrap.big_chk label:before {
		width: 14px;
		height: 14px;
	}

	.chk_wrap.big_chk input:checked + label:after {
		width: 18px;
		height: 18px;
	}

	.radio_wrap label {
		font-size: 14px;
	}

	.gradient_bg {
		font-size: 16px;
	}

	.round_btn_wrap .gradient_bg {
		height: 45px;
		line-height: 45px;
	}

	.layer .layer_container .layer_box ul.slider_ul li span {
		line-height: 18px;
		font-size: 15px;
	}

	.layer .layer_container .layer_box .layer_title_wrap .title {
		font-size: 22px;
	}

	.layer .layer_container .layer_box .layer_title_wrap .explain {
		font-size: 13px;
	}

	.frm_wrap .inp_wrap .radio_wrap {
		flex-flow: wrap;
	}

	.frm_wrap .inp_wrap .radio_wrap .r {
		width: 50%;
		margin: 5px 0;
	}

	.frm_wrap .inp_wrap .learning {
		height: auto;
		padding: 10px 20px;
	}
}

@media(max-width: 320px) {
	* {
		font-size: 13px;
	}

	.frm_wrap .inp_wrap .chk_wrap {
		height: auto;
		padding: 10px 20px;
		flex-flow: wrap;
	}

	.frm_wrap .inp_wrap .chk_wrap .c {
		width: 100%;
		margin: 5px 0;
	}
}