@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&display=swap');

@font-face {
	font-family: 'S-CoreDream-2';
	src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-2ExtraLight.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'S-CoreDream-5';
	src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-5Medium.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'S-CoreDream-6';
	src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-6Bold.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'S-CoreDream-7';
	src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-7ExtraBold.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

body {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
	color: #000;
  word-break: break-all;
  word-wrap: break-word;
  letter-spacing: -0.5px;
}

/* Form */
input[type="text"],
input[type="password"],
select, option, textarea {
	font-family: 'Noto Sans KR', sans-serif;
	outline: none;
}
input[type="text"]:focus,
input[type="password"]:focus,
select:focus, option:focus, textarea:focus {
	outline: none;
}
input[type="radio"] {
	position: absolute;
	width: 0;
	height: 0;
	opacity: 0;
}
input[type="radio"] + label {
	display: inline-block;
	padding-left: 25px;
	font-size: 15px;
	line-height: 20px;
	background-image: url("/Images/common/form/input_radio.png");
	background-repeat: no-repeat;
	background-position: 0 center;
	cursor: pointer;
}
input[type="radio"]:checked + label {
	background-image: url("/Images/common/form/input_radio_checked.png");
}
input[type="checkbox"] {
	position: absolute;
	width: 0;
	height: 0;
	opacity: 0;
}
input[type="checkbox"] + label {
	display: inline-block;
	padding-left: 25px;
	font-size: 15px;
	line-height: 20px;
	background-image: url("/Images/common/form/input_checkbox.png");
	background-repeat: no-repeat;
	background-position: 0 center;
	cursor: pointer;
}
input[type="checkbox"]:checked + label {
	background-image: url("/Images/common/form/input_checkbox_checked.png");
}
input[type="checkbox"] + label.lg {
	display: inline-block;
	padding-left: 31px;
	line-height: 26px;
	background-image: url("/Images/common/form/input_checkbox_lg.png");
	background-repeat: no-repeat;
	background-position: 0 center;
	cursor: pointer;
}
input[type="checkbox"]:checked + label.lg {
	background-image: url("/Images/common/form/input_checkbox_lg_checked.png");
}
select {
	-webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
	background-image: url("/Images/common/form/select.png");
	background-repeat: no-repeat;
	background-position: right 13px center;
}
select::-ms-expand {
  display:none;
}
select:disabled {
  color: #333;
  background-color: #f5f5f5;
}
textarea {
	resize: none;
}

/* Column */
.full {
	width: 100% !important;
}

/* Display */
.blind {
	display: none !important;
}
.dis-ib {
	display: inline-block !important;
}

/* Text Align */
.text-left {
	text-align: left !important;
}

/* Margin */
.mt0 {
	margin-top: 0 !important;
}
.mr0 {
	margin-right: 0 !important;
}

/* Padding */
.pt0 {
	padding-top: 0 !important;
}
.pb0 {
	padding-bottom: 0 !important;
}

/* Weight */
.fw-reg {
	font-weight: 400 !important;
}
.fw-mid {
	font-weight: 500 !important;
}
.fw-bold {
	font-weight: 700 !important;
}

/* Color */
.fc-gray {
	color: #999999 !important;
}
.fc-red {
	color: #ED4B4B !important;
}
.fc-blue {
	color: #3D66DC !important;
}
.fc-skyblue {
	color: #127AC9 !important;
}
.fc-paleblue {
	color: #68A2CC !important;
}
.fc-darkblue {
	color: #2E4B9C !important;
}
.fc-green {
	color: #2FBA79 !important;
}
.fc-darkgreen {
	color: #74BB9A !important;
}
.fc-yellow {
	color: #FFC400 !important;
}

/* Scroll */
.scroll {	overflow-y: auto; }
.scroll::-webkit-scrollbar { width: 6px; }
.scroll::-webkit-scrollbar-track { background-color: transparent; }
.scroll::-webkit-scrollbar-thumb { background-color: #707070;	border-radius: 6px; }
.scroll-wrap {	overflow-y: auto; }
.scroll-wrap::-webkit-scrollbar { width: 6px; }
.scroll-wrap::-webkit-scrollbar-track { background-color: transparent; }
.scroll-wrap::-webkit-scrollbar-thumb { background-color: #707070;	border-radius: 6px; }

/* Column */
.col-2 {
	width: 50%;
}

/* Text Decoration */
.line {
	position: relative;
}
.line::before {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 100%;
	height: 15px;
	background-color: #FFF0D2;
	z-index: -1;
}

/* Text Overflow */
.ellipsis {
	display: block;
	width: 100%;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

/* Icon */
.icon {
	display: inline-block;
	background-repeat: no-repeat;
	background-position: center;
	vertical-align: middle;
}
.icon i {
	font-size: 0;
}
.icon.attach {
	display: block;
	position: absolute;
	right: 311px;
	top: 24px;
	width: 16px;
	height: 16px;
	background-image: url("/images/common/icon_attach.png");
}
.icon.search-blue {
	width: 19px;
	height: 19px;
	background-image: url("/images/common/icon_search_blue.png");
}
.icon.new.orange {
	width: 9px;
	height: 9px;
	background-image: url("/images/common/icon_new_orange.png");
}
.icon.new.black {
	width: 43px;
	height: 24px;
	background-image: url("/images/common/icon_new_black.png");
}
.icon.new.blue {
	width: 36px;
	height: 19px;
	background-image: url("/images/common/icon_new_blue.png");
}
.icon.eye {
	width: 17px;
	height: 12px;
	background-image: url("/images/common/icon_eye.png");
}
.icon.book {
	width: 29px;
	height: 29px;
	background-image: url("/images/common/icon_book.png");
}

/* Btn */
.btn-group {
	text-align: center;
}
.btn-group a {
  display: inline-block;
	text-align: center;
	vertical-align: middle;
	-webkit-transition: 0.1s;
	transition: 0.1s;
}
.btn-group a span {
	background-repeat: no-repeat;
}
.btn-group a.blue {
	color: #fff;
	background-color: #4E7BFB;
}
.btn-group a.green {
	color: #fff;
	background-color: #2FBA79;
}
.btn-group a.gray {
	background-color: #EFEFEF;
}
.btn-group a.gray:hover {
	background-color: #E7E7E7;
}
.btn-group a.dark-blue {
	color: #fff;
	background-color: #2E4B9C;
}
.btn-group a.lg {
	width: 216px;
	margin: 0 3px;
	font-size: 19px;
	font-weight: 700;
	line-height: 54px;
	border-radius: 27px;
}
.btn-group a.xl {
	width: 328px;
	font-size: 19px;
	font-weight: 700;
	line-height: 63px;
	border-radius: 32px;
}
.btn-group a.lg.dark-blue {
	font-weight: 500;
	line-height: 56px;
}
.btn-group a.lg.dark-blue.check span {
	padding-left: 24px;
	background-image: url("/Images/common/icon_btn_check.png");
	background-position: 0 center;
}
.btn-group a.lg.dark-blue.write span {
	padding-left: 29px;
	background-image: url("/Images/common/icon_btn_write.png");
	background-position: 0 center;
}
.btn-group a.lg.gray {
	color: #222;
}
.btn-group a.xl.gray.arrow {
	padding-left: 10px;
}
.btn-group a.xl.gray.arrow span {
	padding-right: 30px;
	background-image: url("/Images/common/arrow_btn_black_lg.png");
	background-position: right center;
}
.btn-group a.lg.blue.arrow span,
.btn-group a.lg.green.arrow span {
	padding-right: 24px;
	background-image: url("/Images/common/arrow_btn_white_lg.png");
	background-position: right center;
}
.btn-group a.lg.gradi {
	font-size: 19px;
	font-weight: 700;
	color: #fff;
	line-height: 55px;
	background-image: url("/Images/common/bg_btn_gradi_lg.png");
	background-position: center;
	border-radius: 10px;
}
.btn-group a.lg.gradi.arrow {
	width: 193px;
}
.btn-group a.lg.gradi.arrow span {
	padding-right: 19px;
	background-image: url("/Images/common/arrow_btn_gradi_lg.png");
	background-position: right center;
}
.btn-group a.lg.gradi.plus {
	width: 179px;
}
.btn-group a.lg.gradi.plus span {
	padding-right: 19px;
	background-image: url("/Images/common/icon_plus_btn_gradi_lg.png");
	background-position: right 10px;
}
.btn-group a.md {
	padding: 8px 20px;
	font-size: 16px;
	font-weight: 700;
	border-radius: 19px;
}
.btn-group a.md.gray {
	color: #5b5b5b;
}
.btn-group a.sm {
	font-size: 14px;
	padding: 0 13px;	
	line-height: 28px;
}
.btn-group a.sm.round {
	border-radius: 15px;	
}
.btn-group a.sm.round.white {
	color: #666666;
	background-color: #fff;
	border: 1px solid #CBCBCB;
}
.btn-group a.sm.round.gray {
	color: #666666;
}
.btn-group a.sm.round.gray span {
	padding-right: 10px;
	background-image: url("/Images/common/arrow_btn_gray_sm.png");
	background-position: right center;
}

/* Tab Menu */
.tab-menu {
	font-size: 0;
	text-align: center;
	border-bottom: 2px solid #E3E3E3;
}
.tab-menu ul {
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: flex-start;
}
.tab-menu ul li {
	position: relative;
	margin: 0 2px;
}
.tab-menu ul li:first-of-type {
	margin-left: 0;
}
.tab-menu ul li a {
	position: relative;
	display: inline-block;
	padding: 11px 15px;
	font-size: 16px;
	font-weight: 500;
	color: #8E8E8E;
}
.tab-menu ul li a.active {
	color: #3D6BEF;
}
.tab-menu ul li a.active::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: #4E7BFB;
}

/* Table */
.table {
  width: 100%;
  max-width: 100%;
	table-layout: fixed;
}

/* Board */
.board {
	width: 100%;
	max-width: 100%;
}

/* Pagination */
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}
.pagination > li {
  display: inline;
}
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #337ab7;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  color: #23527c;
  background-color: #eee;
  border-color: #ddd;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 2;
  color: #fff;
  cursor: default;
  background-color: #337ab7;
  border-color: #337ab7;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}

/*** Terms Content ***/
.terms-content h2 {
	margin-top: 40px;
	font-size: 15px;
	font-weight: 700;
	color: #2E4B9C;
}
.terms-content h2:first-of-type {
	margin-top: 0;
}
.terms-content h3 {
	margin-top: 25px;
	font-size: 15px;
	font-weight: 700;
	color: #2E4B9C;
}
.terms-content p {
	margin-top: 11px;
	font-size: 14px;
	color: #454545;
	line-height: 22px;
}
.terms-content table {
	width: 100%;
	border: 1px solid #444;
	border-collapse: collapse;
}
.terms-content table caption {
	font-size: 0;
}
.terms-content table tr th,
.terms-content table tr td {
	padding: 10px;
	font-size: 14px;
	font-weight: normal;
	color: #454545;
	border: 1px solid #444;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.terms-content table tr th {
	text-align: center;
	background: #f1f1f1;
}

/*** loading ***/
.loading {
	text-align: center;
}
.loading.write {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.7);
	z-index: 19;
}
.loading.write .lds-ring {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -22px 0 0 -22px;
}
.lds-ring {
  display: inline-block;
  position: relative;
  width: 60px;
  height: 60px;
  text-align: center;
}
.lds-ring div {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 44px;
  height: 44px;
  margin: 8px;
  border: 8px solid #4E7BFB;
  border-radius: 50%;
  -webkit-animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #4E7BFB transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  -webkit-animation-delay: -0.45s;
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  -webkit-animation-delay: -0.15s;
  animation-delay: -0.15s;
}
@-webkit-keyframes lds-ring {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes lds-ring {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}