/* API 요청 후 컨텐츠 노출 (fadein) */
.api-loading main { 
	visibility: hidden; 
}

.fade-in { animation: fadeIn .18s ease-out; }

@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }
/* API 요청 후 컨텐츠 노출 (fadein) */

/* 요소 숨김 <div hidden></div> 형식으로 사용 */
[hidden] {
	display: none !important;
}

/* label-style */
.label-style.checkbox {
	display: flex;
	align-items: center;
	gap: 4px;
	cursor: pointer;
}
.label-style.checkbox input[type="checkbox"] + .label-icon {
	display: flex;
	flex: 0 0 auto;
	position: relative;
	width: 24px;
	height: 24px;
	border: 1px solid #D1D5DB;
	border-radius: 4px;
}
.label-style.checkbox input[type="checkbox"] + .label-icon:after {
	position: absolute;
	top: 3px;
	left: 7px;
	width: 6px;
	height: 10px;
	border: solid #D1D5DB;
	border-width: 0 2px 2px 0;
	content: "";
	transform: rotate(45deg);
}
.label-style.checkbox input[type="checkbox"]:checked + .label-icon {
	border: 1px solid #FF0078;
	background: #FF0078;
}
.label-style.checkbox input[type="checkbox"]:checked + .label-icon:after {
	border: solid #fff;
	border-width: 0 2px 2px 0;
}

#submitButton {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 40px;
	border-radius: 4px;
	background: #FF0078;
	font-size: 16px;
	color: #FFF;
}