
/* @dev Dev.M 캐러셀 편집기 iframe과 로딩 상태를 전체 화면에 표시한다. */
.dce-frame-lock{
	overflow:hidden;
}
/* @dev 채널톡 상담 버튼은 z-index 를 10000000 으로 잡아 어떤 요소보다 앞에 놓인다.
   설정 화면 쪽 값을 더 올리는 방식은 서로 값을 키우는 경쟁이 되므로,
   설정 화면이 열려 있는 동안 상담 버튼을 감춘다. 실측: 상담 버튼이 저장 버튼을 덮었다 */
.dce-frame-lock #ch-plugin{
	display:none !important;
}
.dce-frame-layer{
	position:fixed;
	inset:0;
	z-index:99400;
	background:#0b1220;
}
.dce-frame{
	position:absolute;
	inset:0;
	z-index:2;
	width:100%;
	height:100%;
	border:0;
	background:transparent;
}
.dce-frame-loading{
	position:absolute;
	inset:0;
	z-index:1;
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	gap:10px;
	padding:24px;
	background:rgba(11,18,32,.96);
	color:#e8edf6;
	text-align:center;
	font-family:Pretendard,"Noto Sans KR",-apple-system,sans-serif;
}
.dce-frame-loading__spin{
	width:48px;
	height:48px;
	margin-bottom:6px;
	border:4px solid rgba(255,255,255,.18);
	border-top-color:#3b82f6;
	border-radius:50%;
	animation:dce-frame-loading-spin .8s linear infinite;
}
.dce-frame-loading strong{
	font-size:17px;
}
.dce-frame-loading span:last-child{
	color:#94a3b8;
	font-size:13px;
}
.dce-frame-download{
	position:absolute;
	width:1px;
	height:1px;
	border:0;
	opacity:0;
	pointer-events:none;
}
@keyframes dce-frame-loading-spin{
	to{
		transform:rotate(360deg);
	}
}
@media (prefers-reduced-motion:reduce){
	.dce-frame-loading__spin{
		animation:none;
	}
}
