@charset "utf-8";

/*
	** UI 관련 기본 CSS
*/


body.prevent {
	overflow: hidden;
}
::backdrop {
	background:rgba(0,0,0,0.5);
}


/* ## title ## */
.title-lg { font-size: 2.5em; margin-bottom: var(--space-md); }
.title-md { font-size: var(--font-size-26); margin-bottom: var(--space-sm); font-weight: 600}
.title-sm { font-size: var(--font-size-24); margin-bottom: var(--space-sm); }
.title-xs { font-size: var(--font-size-18); margin-bottom: var(--space-xs); }
.title-mb-0:is(.title-lg,.title-md,.title-sm,.title-xs) { margin-bottom:0; }
@media all and (max-width: 1023px) {
	.title-lg { font-size: 2.2em; }
	.title-md {font-size: var(--font-size-24)}
	.title-sm { font-size: var(--font-size-22); }
	.title-xs { font-size: var(--font-size-18); }
}
@media all and (max-width: 767px) {
	.title-lg { font-size: var(--font-size-30); }
	.title-md { font-size: var(--font-size-22); }
	.title-sm { font-size: var(--font-size-20); }
}


/* ## tab ## */
.tab-box {
	margin-bottom: var(--space-md);
}
.tab-list {
	display: flex;
	align-items: center;
}
.tab-item {
	flex: 1;
}
.tab-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: var(--height);
	padding: 0 8px;
	width: 100%;
	background: #f8f8f8;
	transition: var(--transition);
}
.tab-btn.active {
	background: var(--primary-color);
	color: #fff;
}
[data-tab-cont] {
	height: 0;
	opacity: 0;
	visibility: hidden;
}
[data-tab-cont].active {
	height: auto;
	opacity: 1;
	visibility: visible;
	transition: var(--transition);
}
@media all and (max-width: 1023px) {
	.tab-btn {
		height: var(--height);
	}
	.t-tab-scroll .tab-btn {
		white-space: nowrap;
	}
	.t-tab-scroll {
		overflow-x: auto;
		overflow-y: hidden;
	}
}
@media all and (max-width: 767px) {
	.tab-btn {
		height: var(--height);
	}
	.m-tab-scroll .tab-btn {
		white-space: nowrap;
	}
	.m-tab-scroll {
		overflow-x: auto;
		overflow-y: hidden;
	}
}
.tab-type02 .tab-list {
	gap: 10px;
}
.tab-type02 .tab-btn {
	border-radius: 99px;
	border: 1px solid var(--secondary-color);
	background: #fff;
	font-size: var(--font-size-17);
}
.tab-btn.active {
	background: var(--secondary-color);
}
.tab-type03 {
	--tab-height: calc(var(--height) + 10px);
}
.tab-type03 .tab-list {
	gap: 8px;
}
.tab-type03 .tab-btn {
	height: var(--tab-height);
	border-radius: 5px;
	border: 1px solid #ccc;
	background: #f7f7f7;
	color: #6a6a6a;
}
.tab-type03 .tab-btn.active {
	border-color: var(--secondary-color);
	background: #fff;
	color: var(--secondary-color);
}


/* ## table ## */
.table table {
	width: 100%;
	table-layout: fixed;
	border-top: 1px solid var(--secondary-color);
	text-align: center;
}
.table tr {
	border-bottom: 1px solid #dcdcdc;
}
.table :is(th, td) {
	padding: 15px 20px;
	border-left: 1px solid #dcdcdc;
	word-break: break-word;
}
.table th:first-child,
.table td:first-child {
	border-left:none;
}
.table .table-title {
	background: #efefef;
	color: #192547;
	font-size: var(--font-size-17);
}
.table-stripe tbody tr:nth-child(even) {
	background: #f8f8f8;
}
.table-sticky {
	max-height: 200px;
	overflow-y: auto;
}
.table-sticky .table-sticky-row {
	position: sticky;
	left: 0;
	top: 0;
	width: 100%;
}
@media all and (max-width: 1023px) {
	.t-table-scroll {
		overflow-x: auto;
	}
	.t-table-scroll table {
		width: 1100px;
	}
}
@media all and (max-width: 767px) {
	.table :is(th, td) {
		padding: 10px;
	}
	.m-table-scroll {
		overflow-x: auto;
	}
	.m-table-scroll table {
		width: 800px;
	}
	.table .table-title {
		font-size: var(--font-size-16);
	}
}


/* ## radio ## */
.radio {
	--radio-size: 18px;
	--radio-border-radius: 100%;
}
.radio {
	display: inline-flex;
	align-items: center;
}
.radio-label {
	display: inline-flex;
	position: relative;
	cursor: pointer;
}
.radio-input,
.radio-check {
	width: var(--radio-size);
	height: var(--radio-size);
	border-radius: var(--radio-border-radius);
	overflow: hidden;
}
.radio-input {
	position: absolute;
	left: 0;
	top: 0;
}
.radio-check {
	position: relative;
	border: 1px solid #ddd;
	flex: 0 0 var(--radio-size);
	transition: var(--transition);
}
.radio-check::before {
	display: block;
	content:"";
	width: calc(var(--radio-size)  / 2);
	height: calc(var(--radio-size) / 2);
	position: absolute;
	left: -50%;
	top:50%;
	transform:translate(-50%, -50%);
	border-radius: var(--radio-border-radius);
	transition: var(--transition);
	background: var(--primary-color);
}
.radio-text {
	margin-left:8px;
	margin-right:20px;
}
.radio-input:checked + .radio-check {
	border-color:var(--primary-color);
}
.radio-input:checked + .radio-check::before {
	left: 50%;
}
.radio-label:has(.radio-input:disabled) {
	cursor: default;
}

.radio-type02 {
	height: 45px;
	border:1px solid #d2d2d2;
	overflow: hidden;
	border-radius: 8px;
}
.radio-type02 .radio-label {
	height: 100%;
	align-items: center;
	min-width: 80px;
	justify-content: center;
}
.radio-type02 .radio-label:not(:first-child) {
	border-left:1px solid #d2d2d2;
}
.radio-type02 .radio-text {
	margin:0;
}
.radio-type02 .radio-label:has(.radio-input:checked) {
	background:#868686;
	color: #fff;
}
@media all and (max-width: 767px) {
	.radio-type02 {
		height: 40px;
	}
	.radio-type02 .radio-label {
		min-width: 60px;
	}
}


/* ## checkbox ## */
.checkbox {
	--checkbox-size: 18px;
	--checkbox-border-radius:4px;
}
.checkbox {
	display: inline-flex;
	align-items: center;
}
.checkbox-label {
	display: inline-flex;
	position: relative;
	cursor: pointer;
	line-height: 1.2;
}
.checkbox-input,
.checkbox-check {
	width: var(--checkbox-size);
	height: var(--checkbox-size);
	border-radius: var(--checkbox-border-radius);
	overflow: hidden;
}
.checkbox-input {
	position: absolute;
	left:0;
	top:0;
}
.checkbox-check {
	position: relative;
	border:1px solid #ddd;
	background: #fff;
	flex:0 0 var(--checkbox-size);
	transition: var(--transition);
}
.checkbox-check::before {
	display: block;
	content:"\f00c";
	font-family: "Font Awesome 6 Pro";
	font-weight: 400;
	position: absolute;
	left:50%;
	top:50%;
	transform:translate(-200%, -50%) rotate(-90deg);
	transition: var(--transition);
	color: #fff;
	font-size: var(--font-size-14);
}
.checkbox-text {
	margin-left:8px;
	margin-right:20px;
}
.checkbox-input:checked + .checkbox-check {
	background:var(--secondary-color);
	border-color:var(--secondary-color);
}
.checkbox-input:checked + .checkbox-check::before {
	transform:translate(-50%, -50%);
}

.checkbox.checkbox-row {
	flex-direction: column;
	align-items: flex-start;
	gap: 12px 0;
}

.checkbox.checkbox-type02 {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.checkbox-type02 .checkbox-label {
	padding: 5px 15px;
	border-radius: 4px;
	border: 1px solid #d2d2d2;
	color: #939393;
}
.checkbox-type02 .checkbox-label:has(.checkbox-input:checked) {
	background: #fff;
	border-color: var(--secondary-color);
	color: var(--secondary-color);
}
.checkbox-type02 .checkbox-text {
	font-size: var(--font-size-14);
	margin: 0;
}

.checkbox-type03 .checkbox-label {
	display: table;
	table-layout: fixed;
}
.checkbox-type03 :is(.checkbox-input, .checkbox-check) {
	width:30px;
	height: 30px;
	border-radius: 100%;
}
.checkbox-type03 .checkbox-check {
	background:#d3d3d3;
	display: table-cell;
	vertical-align: middle;
}
.checkbox-type03 .checkbox-check::before {
	transform:translate(-50%, -50%);
	font-weight: 900;
	font-size: var(--font-size-13);
}
.checkbox-type03 .checkbox-text {
	display: table-cell;
	vertical-align: middle;
	margin:0;
	white-space: nowrap;
	padding:0 8px;
}
.checkbox-type03 .checkbox-input:checked + .checkbox-check {
	background:var(--secondary-color);
	border-color:var(--secondary-color);
}
@media all and (max-width: 767px) {
	.checkbox-type03 :is(.checkbox-input, .checkbox-check) {
		width: 22px;
		height: 22px;
	}
	.checkbox-type03 .checkbox-text {
		padding:0 5px;
	}
}


/* ## switch ## */
.switch-label {
	--switch-size: 28px;
	--switch-radius: 25px;
	--switch-deactive-color:#dfdfdf;
}
.switch-label {
	display: inline-flex;
	align-items: center;
	position: relative;
}
input[type="checkbox"].switch-input {
	appearance: none;
	position: relative;
	background: var(--switch-deactive-color);
	border-radius: var(--switch-radius);
	width: calc(var(--switch-size) * 2);
	height: var(--switch-size);
	cursor: pointer;
}
.switch-input::before {
	display: block;
	content: "";
	position: absolute;
	left: 4px;
	top:50%;
	transform: translateY(-50%);
	width: calc(var(--switch-size) - 8px);
	height: calc(var(--switch-size) - 8px);
	border-radius: var(--switch-radius);
	background: #fff;
	transition: var(--transition);
}
input[type="checkbox"].switch-input:checked {
	background: var(--primary-color);
}
.switch-input:checked::before {
	left: calc(100% - calc(var(--switch-size) - 4px));
}
.switch-text {
	margin-left: 10px;
}
@media all and (max-width: 767px) {
	.switch-label {
		--switch-size: 24px;
	}
}


/* ## button ## */
.button {
	--button-height:var(--height);
	--button-padding: 20px;
	--button-font-size:1em;
}
.button-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap:10px;
	margin-top:var(--space-md);
}
.button-wrap.button-wrap-full .button {
	flex: 1 1 auto;
}
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0 10px;
	height: var(--button-height);
	padding:0 var(--button-padding);
	border-radius: var(--border-radius);
	background:#bcbcbc;
	border:1px solid #bcbcbc;
	color: #fff;
	transition: var(--transition);
	cursor: pointer;
	line-height: 1;
}
.button.button-color-primary {
	border-color:var(--primary-color);
	background-color: var(--primary-color);
}
.button.button-color-secondary {
	border-color:var(--secondary-color);
	background-color: var(--secondary-color);
}
.button.button-color-black {
	border-color:#111;
	background-color: #111;
}
.button.button-color-gray {
	border-color:#868686;
	background-color: #868686;
}
.button.button-line-primary {
	border-color: var(--primary-color);
	background-color: #fff;
	color: var(--primary-color);
}
.button.button-line-secondary {
	border-color: var(--secondary-color);
	background-color: #fff;
	color: var(--secondary-color);
}
.button.button-line-gray {
	border-color: #dfe4eb;
	background-color: #fdfdfd;
	color: #000;
}
.button.button-size-md {
	height: calc(var(--button-height) * 0.9);
	padding:0 calc(var(--button-padding) * 0.9);
	font-size: calc(var(--button-font-size) * 0.95);
}
.button.button-size-sm {
	height: calc(var(--button-height) * 0.8);
	padding:0 calc(var(--button-padding) * 0.5);
	font-size: calc(var(--button-font-size) * 0.9);
}
.button.button-size-full {
	width: 100%;
}
.button:hover {
	box-shadow: 2px 2px 1px rgba(0,0,0,0.3);
}
@media all and (max-width: 1023px) {
	.button {
		--button-height:var(--height);
	}
}
@media all and (max-width: 767px) {
	.button {
		--button-height:var(--height);
	}
	.button-wrap {
		margin-top:var(--space-sm);
		gap:5px;
	}
}


/* ## badge ## */
.badge {
	--badge-height:var(--height);
	--badge-padding: 20px;
	--badge-font-size:1em;
}
.badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding:0 20px;
	height: var(--badge-height);
	border-radius: var(--border-radius);
	background-color: #eee;
	border:1px solid #eee;
}
.badge.badge-color-primary {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	color: #fff;
}
.badge.badge-color-warning {
	background-color: #f16060;
	border-color: #f16060;
	color: #fff;
}
.badge.badge-color-black {
	background-color: #000000;
	border-color: #000000;
	color: #fff;
}
.badge.badge-color-gray {
	background-color: #b7b7b7;
	border-color: #b7b7b7;
	color: #fff;
}
.badge.badge-color-orange {
	background-color: #f88600;
	border-color: #f88600;
	color: #fff;
}
.badge.badge-line-primary {
	background-color: #fff;
	border-color: var(--primary-color);
	color: var(--primary-color);
}
.badge.badge-line-gray {
	background-color: #fff;
	border-color: #c9c9c9;
	color: #878787;
}
.badge.badge-size-md {
	height: calc(var(--badge-height) * 0.7);
	padding:0 calc(var(--badge-padding) * 0.7);
	font-size: calc(var(--badge-font-size) * 0.9);
}
.badge.badge-size-sm {
	height: calc(var(--badge-height) * 0.6);
	padding:0 calc(var(--badge-padding) * 0.6);
	font-size: calc(var(--badge-font-size) * 0.85);
}
@media all and (max-width: 1023px) {
	.badge {
		--badge-height:var(--height);
	}
}
@media all and (max-width: 767px) {
	.badge {
		--badge-height:var(--height);
	}
}


/* ## select ## */
.select {
	--select-height: var(--height);
	--select-space:0;
}
.select {
	display: inline-flex;
	align-items: center;
	position: relative;
}
.select-btn {
	display: inline-flex;
	align-items: center;
	gap: 15px;
	width: 100%;
	height: var(--select-height);
	font-size: var(--font-size-18);
	font-weight: 600;
	color: #949494;
	text-align: left;
	border-bottom:1px solid #c9c9c9;
	padding:0 calc(var(--select-space) * 2) 0 var(--select-space);
	border-radius: 0;
	position: relative;
}
.select-btn::after {
	display: block;
	content:"\f107";
	font-family:"Font Awesome 6 Pro";
	font-weight: 300;
	position: absolute;
	right:var(--select-space);
	top:50%;
	transform:translateY(-50%);
	transition: var(--transition);
}
.select-btn.active,
.select-btn:hover {
	border-color: var(--secondary-color);
}
.select-btn.active::after {
	transform:translateY(-50%) rotate(180deg);
}
.select-list {
	width: 100%;
	background: #fff;
	border:1px solid #dcdcdc;
	position: absolute;
	left:0;
	top:calc(var(--select-height) + 10px);
	border-radius: var(--border-radius);
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	z-index: 5;
}
.select-option {
	display: block;
	width: 100%;
	text-align: left;
	padding:12px 20px;
	border-bottom:1px solid #dcdcdc;
	border-radius: 0;
}
.select-option:last-child {
	border-bottom: 0;
}
.select-option:hover {
	background:#e6f1ff;
}
[data-select-list],
[data-toggle] {
	opacity: 0;
	visibility: hidden;
}
[data-select-list].active,
[data-toggle].active {
	opacity: 1;
	visibility: visible;
}
@media all and (max-width: 1023px) {
	.select-btn {
		font-size: var(--font-size-17);
		gap:8px;
	}
	.select-option {
		padding:12px 15px;
	}
}
@media all and (max-width: 1023px) {
	.select-btn {
		font-size: var(--font-size-16);
	}
	.select-option {
		padding:12px 10px;
		font-size: var(--font-size-15);
	}
}


/* ## modal ## */
.modal {
	max-width: 700px;
	width: calc(100% - 40px);
	border:none;
	padding:0;
	overflow: hidden;
	border-radius: var(--border-radius);
}
.modal.modal-size-lg {
	max-width: 960px;
}
.modal-box {
	max-height: calc(100vh - 40px);
	overflow-y: auto;
	overflow-x: hidden;
	position: relative;
}
.modal-header {
	position: sticky;
	left: 0;
	top:0;
	padding:20px 60px 20px 40px;
	display: flex;
	align-items: center;
}
.modal-title {
	font-size: var(--font-size-24);
	font-weight: 600;
}
.modal-body {
	padding:0 40px 20px;
}
.modal-text {
	font-size: var(--font-size-18);
}
.modal-close {
	position: absolute;
	right:15px;
	top:10px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: var(--font-size-26);
}
.modal-close::before {
	display: block;
	content:"\f00d";
	font-family: "Font Awesome 6 Pro";
	font-weight: 400;
}
.modal-desc-item {
	padding: 25px 20px;
	margin-bottom: 16px;
	border-radius: 10px;
	background: #f7f7f7;
}
.modal-desc-item .title {
	margin-bottom: 10px;
	color: var(--primary-color);
}
.modal-desc-item .policy-list > li {
	color: #5c5c5c;
}
.modal.modal-size-sm {
	max-width: 460px;
}
.modal-size-sm .modal-header {
	padding-left: 25px;
}
.modal-size-sm .modal-title {
	font-size: var(--font-size-18);
}
.modal-size-sm .modal-close {
	font-size: var(--font-size-20);
}
.modal-type02 .modal-header {
	background: var(--secondary-color);
	color: #fff;
}
.modal-type02 .modal-close {
	color: #fff;
}
.modal-type02 .modal-body {
	padding:30px 40px;
}
@media all and (max-width: 767px) {
	.modal-header {
		padding:15px 45px 15px 20px;
	}
	.modal-title {
		font-size: var(--font-size-18);
	}
	.modal-close {
		width: 30px;
		height: 30px;
		right:10px;
		font-size: var(--font-size-24);
	}
	.modal-body {
		padding:0 20px 20px;
	}
	.modal-text {
		font-size: var(--font-size-16);
	}
	.modal-desc-item {
		padding: 20px 15px;
		margin-bottom: 10px;
	}
	.modal-size-sm .modal-title {
		font-size: var(--font-size-16);
	}
	.modal-type02 .modal-body {
		padding:20px;
	}
}
.modal-slide .swiper-slide {
	display: flex;
	justify-content: center;
	align-items: center;
}
.modal-slide .swiper-slide .img-box {
	width: 100%;
	aspect-ratio: 5 / 3;
}
.modal-slide .swiper-slide .img-box img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.modal-slide .swiper-main {
	position: relative;
}
.modal-slide .swiper-thumbs {
	margin-top: 15px;
}
.modal-slide .swiper-thumbs .swiper-slide {
	opacity: 0.4;
}
.modal-slide .swiper-thumbs .swiper-slide-thumb-active {
	opacity: 1;
}
.modal-slide .swiper-thumbs .swiper-slide .img-box {
	aspect-ratio: 3 / 2;
}
.modal-slide .swiper-thumbs .swiper-slide .img-box img {
	object-fit: cover;
}
.modal-slide .swiper-button {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	color: #000;
}
.modal-slide .swiper-button:hover {
	border-radius: 50%;
	background: var(--secondary-color);
	border-color: var(--secondary-color);
	color: #fff;
}
.modal-slide .swiper-button.swiper-button-prev {
	left: -15px;
}
.modal-slide .swiper-button.swiper-button-next {
	right: -15px;
}
@media all and (max-width: 767px) {
	.modal-slide .swiper-thumbs {
		margin-top: 8px;
	}
	.modal-slide .swiper-button {
		display: block !important;
		width: 35px;
		height: 35px;
	}
}



/* ## tooltip ## */
.tooltip {
	position: relative;
	display: inline-flex;
}
.tooltip-text {
	font-size: var(--font-size-13);
	padding:3px 10px;
	border-radius: var(--border-radius);
	background: #555;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	left:0;
	bottom:calc(-100% - 5px);
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
	z-index: 5;
}
.tooltip-btn:hover + .tooltip-text {
	opacity: 1;
	visibility: visible;
}


/* ## loading ## */
.loading {
	display: none;
	align-items: center;
	justify-content: center;
	pointer-events: auto;
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 500;
	width: 40px;
	height: 40px;
	border: 4px solid var(--primary-color);
	border-bottom-color: transparent;
	border-radius: 50%;
	box-sizing: border-box;
	animation: loading 1.2s linear infinite;
}
.loading.active {
	display: flex;
}
.loading.inner {
	position: absolute;
	width: 30px;
	height: 30px;
	border-width: 3px;
}
@keyframes loading {
	0% {transform: translate(-50%, -50%) rotate(0deg);}
	100% {transform: translate(-50%, -50%) rotate(360deg);}
}


/* ## count ## */
.count-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom:10px;
}
.count-title {
	flex:1;
	align-items: center;
	gap:0 5px;
	line-height: 1;
}
.count {
	flex:1;
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	border-radius: var(--border-radius);
	gap:0 5px;
}
.count-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex:0 0 28px;
	height: 28px;
	border:1px solid #bbb;
	border-radius: var(--border-radius);
	color: #000;
}
.count-value {
	display: block;
	width: 100%;
	flex:0 0 65px;
	text-align: center;
	border-color: #d3dbd9;
	height: 35px !important;
}
@media all and (max-width: 767px) {
	.count-box {
		flex-wrap: wrap;
		gap:5px 20px;
	}
	.count {
		justify-content: flex-start;
	}
	.count-value {
		flex: 1 1 auto;
	}
}
@media all and (max-width: 419px) {
	.count-box {
		margin-bottom:15px;
	}
	.count-title,
	.count {
		flex: 0 0 100%;
	}
}


/* ## alert ## */
.alert {
	border:none;
	max-width: 350px;
	width: calc(100% - 40px);
	border-radius: var(--border-radius);
	padding:0;
}
.alert-text {
	padding:50px 30px;
	text-align: center;
}
.alert-btn-box {
	display: flex;
	align-items: center;
}
.alert .button {
	border-radius: 0;
	flex:1 1 auto;
}
@media all and (max-width: 767px) {
	.alert-text {
		padding:35px 25px;
	}
}



/* ## rating ## */
.rating {
	position: relative;
	color: #ddd;
	display: inline-flex;
	gap:2px;
}
.rating-star {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: var(--font-size-18);
}
.rating-star::before {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: "Font Awesome 6 Pro";
	content:"\f005";
	font-weight: 900;
}
.rating .range {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	opacity: 0;
	padding:0;
	cursor: pointer;
}
.rating.active {
	width: 0;
	position: absolute;
	left: 0;
	top: 0;
	color: var(--primary-color);
	overflow: hidden;
	pointer-events: none;
	white-space: nowrap;
}
.rating.disabled {
	pointer-events: none;
	cursor: none;
}




/* ## agree ## */
.agree-box {
	width: 100%;
}
.agree-box:not(:first-child) {
	border-top:1px solid #e7e7e7;
}
.agree-box pre {
	max-height: 200px;
	padding: 20px;
	background: #f5f5f5;
	white-space: pre-line;
	overflow-y: auto;
	margin:0;
	font-family: inherit;
	font-size: var(--font-size-15);
}
.agree-check {
	text-align: right;
	margin-top:var(--space-xs);
}
.agree-header,
.agree-body {
	padding:20px 50px;
}
.agree-header {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.agree-header .btn {
	color: var(--primary-color);
	font-size: var(--font-size-16);
}
.agree-body {
	color: #616161;
	font-size: var(--font-size-15);
	max-height: 150px;
	overflow-y: auto;
	display: none;
	border-top:1px solid #e7e7e7;
}
.agree-body.active {
	display: block;
}
@media all and (max-width: 1023px) {
	.agree-header,
	.agree-body {
		padding:20px 30px;
	}
}
@media all and (max-width: 767px) {
	.agree-header .checkbox-text {
		font-size: var(--font-size-15);
	}
	.agree-header,
	.agree-body {
		padding:15px 20px;
	}
	.agree-header .btn {
		font-size: var(--font-size-14);
	}
}



/* ## paging ## */
.paging {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: var(--space-md);
}
.paging-pages {
	display: flex;
	align-items: center;
	gap: 4px;
}
.paging-pages :is(a, span) {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: #eee;
	border:1px solid #eee;
	border-radius: var(--border-radius);
	font-size: var(--font-size-15);
	transition: var(--transition);
}
.paging-pages span {
	font-weight: 600;
	background: var(--primary-color);
	color: #fff;
}
.paging-first::before,
.paging-prev::before,
.paging-next::before,
.paging-last::before {
	display: block;
	font-family: "Font Awesome 6 Pro";
	font-weight: 400;
	color: #a0a0a0;
}
.paging-first::before {
	content: "\f100";
}
.paging-prev::before {
	content: "\f104";
}
.paging-next::before {
	content: "\f105";
}
.paging-last::before {
	content: "\f101";
}
@media all and (max-width: 767px) {
	.paging-pages {
		gap: 3px;
	}
	.paging-pages :is(a, span) {
		width: 30px;
		height: 30px;
	}
}



/* ## search ## */
.search-wrap {
	padding: 30px;
	text-align: center;
	background: #fafafa;
	border: 1px solid #ececec;
	margin-bottom: var(--space-md);
}
.search-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 5px;
}
.search-field {
	flex: 0 0 140px;
}
.search-field select {
	width: 100%;
}
.search-form {
	position: relative;
	flex: 0 0 auto;
}
.search-btn {
	position: absolute;
	right: 0;
	width: var(--height);
	height: 100%;
}
.search-btn::before {
	display: block;
	content:"\f002";
	font-family: "Font Awesome 6 Pro";
	font-weight: 900;
}
@media all and (max-width: 767px) {
	.search-wrap {
		padding: 0;
		background: transparent;
		border: none;
	}
	.search-field {
		flex-grow: 1;
	}
	.search-form {
		flex-grow: 1;
	}
}



/* ## form ## */
.form {
	border-top: 1px solid #313131;
}
.form-row {
	display: flex;
	border-bottom: 1px solid #ddd;
}
.form-title {
	flex: 0 0 200px;
	display: flex;
	align-items: center;
	gap:0 5px;
	background: #f9f9f9;
	padding: 0 30px;
}
.form-item {
	flex: 1 1 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 5px 5px;
	padding: 15px 20px;
}
.form-item.form-block {
	display: block;
}
.form-group {
	display: flex;
	align-items: center;
	width: 100%;
	gap:10px;
	margin-bottom:5px;
}
.form-group:last-child {
	margin-bottom:0;
}
.form-group.form-size-md {
	width: 80%;
}
.form-group.form-size-sm {
	width: 50%;
}
.form-group.form-size-xs {
	width: 30%;
}
.form-input {
	width: 100%;
}
.form-group.form-group-button .button {
	flex:0 0 auto;
}
.form-required::after {
	display: inline-flex;
	align-items: center;
	width: 5px;
	height: 5px;
	content:"";
	background:var(--primary-color);
	margin-left:5px;
	border-radius: 100%;
}
.form-input:required:not([type="checkbox"], [type="radio"], [type="file"], [type="color"]):focus,
.form-input:required:not([type="checkbox"], [type="radio"], [type="file"], [type="color"], select):valid {
	border-color: var(--primary-color);
}
.form-input:disabled {
	background: #f1f1f1;
}
@media all and (max-width: 1023px) {
	.form-group:is(.form-size-md,.form-size-sm,.form-size-xs) {
		width: 100%;
	}
	.form-title {
		flex: 0 0 160px;
		padding: 0 20px;
	}
	.form-info {
		font-size: var(--font-size-15);
	}
}
@media all and (max-width: 767px) {
	.form-row {
		display: block;
		padding: 15px 10px;
	}
	.form-title {
		flex: 0 0 160px;
		margin-bottom:5px;
		background: none;
		padding: 0;
	}
	.form-item {
		padding: 0;
	}
	.form-group {
		gap:5px;
	}
}
.form-board-title {
	font-size: var(--font-size-20);
	font-weight: 600;
	padding-bottom:20px;
	border-bottom:2px solid #000;
}
@media all and (max-width: 767px) {
	.form-board-title {
		padding-bottom:12px;
		border-width: 1px;
		font-size: var(--font-size-18);
	}
}



/* ## share ## */
.share-box {
	position: relative;
	display: inline-flex;
}
.share-open {
	width: 45px;
	height: 45px;
}
.share-item {
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	background:#fff;
	border:1px solid #dfdfdf;
	transition: 0.2s ease-in-out;
	opacity: 0;
	visibility: hidden;
	z-index: 5;
}
.share-item.active {
	top: 0;
	opacity: 1;
	visibility: visible;
}
.share-list li {
	position: relative;
}
.share-list li::after {
	display: block;
	content:"";
	width: 15px;
	height: 1px;
	background:#dfdfdf;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
.share-lnk {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	text-align: center;
	position: relative;
	color: #555;
	line-height: 1;
	font-size: var(--font-size-18);
}
.share-lnk:hover {
	color: var(--primary-color);
}
.share-lnk:where(.kakao,.band,.blog)::after {
	content:"";
	display: block;
	width: 100%;
}
.share-lnk.kakao::after {
	height: 20px;
	background:url("https://project.impacsys.kr/imPublish/img/icon-kakao.svg") no-repeat center top;
}
.share-lnk.band::after {
	height: 22px;
	background:url("https://project.impacsys.kr/imPublish/img/icon-band.svg") no-repeat center top;
}
.share-lnk.blog::after {
	height: 20px;
	background:url("https://project.impacsys.kr/imPublish/img/icon-blog.svg") no-repeat center top;
}
.share-lnk:where(.kakao,.band,.blog):hover::after {
	filter: invert(40%) sepia(73%) saturate(3463%) hue-rotate(201deg) brightness(104%) contrast(101%);
}
.share-close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 45px;
	font-size: var(--font-size-20);
	color: #707070;
}
@media all and (max-width: 767px) {
	.share-open {
		width: 35px;
		height: 33px;
	}
	.share-lnk {
		width: 35px;
		height: 33px;
		font-size: 1em;
	}
	.share-lnk.kakao::after {
		height: 17px;
	}
	.share-lnk.band::after {
		height: 18px;
	}
	.share-lnk.blog::after {
		height: 17px;
	}
	.share-list li::after {
		width: 12px;
	}
	.share-close {
		height: 33px;
		font-size: var(--font-size-18);
	}
}



/* ## datepicker ## */
.datepicker {
	position: relative;
	max-width: 220px;
}
.datepicker::after {
	content: "\f133";
	font-family: "Font Awesome 6 Pro";
	font-weight: 400;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	color: #979797;
}
.datepicker-input {
	width: 100%;
}
.ui-datepicker .ui-icon {
	display: none;
}
.ui-datepicker {
	width: 17em;
	padding: 0.2em 0.4em 0;
	display: none;
	background: #fff;
	box-shadow: 2px 10px 30px rgba(0,0,0,0.12);
}
.ui-datepicker a {
	color: #666;
}
.ui-datepicker-header {
	position: relative;
	margin: 0.5em 0;
}
.ui-datepicker .ui-datepicker-title {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0 2%;
	min-height: 50px;
	margin: 0 2.3em;
	font-weight: bold;
}
.ui-datepicker .ui-datepicker-title select {
	height: 30px;
	line-height: 30px;
}
.ui-datepicker :is(select.ui-datepicker-month, select.ui-datepicker-year) {
	width: 45%;
}
.ui-datepicker :is(.ui-datepicker-prev, .ui-datepicker-next) {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.ui-datepicker .ui-datepicker-prev {
	left: 2px;
}
.ui-datepicker .ui-datepicker-next {
	right: 2px;
}
.ui-datepicker .ui-datepicker-prev::after {
	content: "\f104";
	font-family: "Font Awesome 6 Pro";
	font-weight: 400;
}
.ui-datepicker .ui-datepicker-next::after {
	content: "\f105";
	font-family: "Font Awesome 6 Pro";
	font-weight: 400;
}
.ui-datepicker table {
	width: 100%;
	margin: 0 0 0.5em;
	font-size: var(--font-size-13);
}
.ui-datepicker th {
	width: 14.28%;
	padding: 0.7em 0.1em;
	font-weight: 600;
}
.ui-datepicker td {
	padding: 0.05em;
}
.ui-datepicker td :is(span, a) {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 35px;
	height: 35px;
	margin: 0 auto;
	border-radius: 50%;
	text-align: center;
}
.ui-datepicker .ui-datepicker-buttonpane {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid #dddddd;
	margin: 0.2em 0 0.5em 0;
}
.ui-datepicker .ui-datepicker-buttonpane button {
	padding: 0.8em;
	background: #fff;
	font-size: var(--font-size-14);
	color: var(--primary-color);
	font-weight: 300;
}
.ui-datepicker-other-month a:not(.ui-state-active) {
	opacity: 0.6;
}
.ui-corner-all {
	border-radius: 15px;
}
.ui-state-disabled {
	cursor: default !important;
	pointer-events: none;
	opacity: 0.3;
}
.ui-state-hover {
	background: #f5f5f5;
}
.ui-datepicker .ui-state-highlight {
	border: 1px solid var(--primary-color);
	background: #fff;
	color: var(--primary-color);
}
.ui-datepicker .ui-state-active {
	background: var(--primary-color);
	color: #fff !important;
}
.ui-datepicker .ui-state-error {
	border: 1px solid #f1a899;
	background: #fddfdf;
	color: #5f3f3f !important;
}
.ui-datepicker :is(th:first-child, td:first-child a) {
	color: #EE4E4E;
}



/* ## calendar ## */
.calendar-box {
	display: flex;
	align-items: flex-start;

}
.calendar {
	flex:1 1 auto;
	width: 100%;
	padding: 0 30px;
}
.calendar:first-child {
	border-right: 1px solid #eee;
}
.calendar .fc-customPrev-button::before,
.calendar .fc-customNext-button::before {
	display: block;
	content:"\f104";
	font-weight: 400;
	font-family: "Font Awesome 6 Pro";
	font-size: var(--font-size-22);
	padding:0 10px;
	color: #000;
}
.calendar .fc-customNext-button::before {
	content: "\f105";
}
.calendar.fc .fc-toolbar-title {
	font-size: var(--font-size-20);
	font-weight: 600;
}
.calendar.fc .fc-header-toolbar {
	margin-bottom:10px;
}
.calendar .fc-header-toolbar .fc-button {
	background: none !important;
	border:none !important;
	color: #7D7D7D !important;
	box-shadow: none !important;
	padding:0;
}
.calendar .fc-header-toolbar .fc-button .fc-icon {
	font-size: var(--font-size-30);
}
.calendar.fc .fc-scrollgrid,
.calendar.fc td,
.calendar.fc th {
	border:none;
}
.calendar.fc .fc-col-header-cell {
	padding:10px 0;
	border-bottom:2px solid #eee;
}
.calendar.fc .fc-col-header-cell-cushion {
	color: #000;
}
.calendar.fc .fc-daygrid-body {
	margin-top:10px;
}
.calendar.fc .fc-cell-shaded,
.calendar.fc .fc-day-disabled {
	background: none;
}
.calendar.fc .fc-daygrid-day-top {
	flex-direction: row;
	justify-content: center;
}
.calendar.fc .fc-daygrid-body-natural .fc-daygrid-day-events {
	display: none;
}
.calendar.fc .fc-daygrid-day-number {
	color: #000;
	padding:0;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.calendar.fc .fc-daygrid-day {
	cursor: pointer;
	border-radius: 25px;
}
.calendar.fc .fc-daygrid-day.fc-day-today {
	background:none;
	background:#ECECEC;
}
.calendar .fc-day-sat :is(.fc-daygrid-day-number, .fc-col-header-cell-cushion) {
	color: #006db2;
}
.calendar .fc-day-sun :is(.fc-daygrid-day-number, .fc-col-header-cell-cushion) {
	color: #da393f;
}
.calendar.fc .fc-daygrid-day.active {
	background:var(--secondary-color);
}
.calendar.fc .fc-daygrid-day.range {
	border-radius: 0;
	background: #e6f1ff;
}
.calendar.fc .fc-daygrid-day.active.start {
	border-radius: 20px 0 0 20px;
}
.calendar.fc .fc-daygrid-day.active.end {
	border-radius: 0 20px 20px 0;
}
.calendar.fc .fc-daygrid-day.active.start.end {
	border-radius: 20px;
}
.calendar.fc .fc-daygrid-day.active .fc-daygrid-day-number {
	color: #fff;
}
.calendar.fc .fc-daygrid-day.range .fc-daygrid-day-number {
	color: #000;
}
.calendar.fc .fc-daygrid-day.disable {
	pointer-events: none;
}
.calendar.fc .fc-daygrid-day.disable .fc-daygrid-day-number {
	color: #C8C8C8;
}
@media all and (max-width: 767px) {
	.calendar-box {
		display: block;
	}
	.calendar {
		padding:0;
	}
	.calendar:first-child {
		border:none;
		margin-bottom:20px;
	}
}


/* ## list ## */
.list-type {
	margin-top:10px;
}
.list-type li {
	padding-left:12px;
	position: relative;
	margin-top:5px;
}
.list-type li::before {
	display: block;
	content:"";
	width: 4px;
	height: 4px;
	background:#000;
	position: absolute;
	left:0;
	top:8px;
}