@charset "UTF-8";


.modalBg {
	background: rgba(0, 0, 0, 0.5);
	position: fixed;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
	display: none;
	z-index: 1000;
}

.loader-wrap {
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.loader,
.loader:after {
	border-radius: 50%;
	width: 5em;
	height: 5em;

}

.loader {
	margin: 60px auto;
	font-size: 10px;
	position: relative;
	text-indent: -9999em;
	border-top: 1.1em solid rgba(255, 255, 255, 0.2);
	border-right: 1.1em solid rgba(255, 255, 255, 0.2);
	border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
	border-left: 1.1em solid #ffffff;
	transform: translateZ(0);
	animation: load8 1.1s infinite linear;
}
@keyframes load8 {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.modalBg>#msg {
	font-size: clamp(16px, 2vw, 18px);
	line-height: clamp(20px, 2.5vw, 28px);
	text-align: center;
	background: white;
	padding: clamp(10px, 2vw, 20px);
	border-radius: clamp(4px, 2vw, 10px);
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.notice {
	font-size: 16px;
	line-height: 24px;
	color: white;
	background: var(--bg2);
	text-align: center;
	position: fixed;
	width: 100vw;
	bottom: -30px;
	left: 0;
	z-index: 9000;
	opacity: 0;
	transition: 0.3s;
}

#closeBtnmodalBg {
	color: white;
	font-size: 30px;
	position: fixed;
	top: 10px;
	right: 10px;
	cursor: pointer;
}

#modalWin {
	text-align: center;
	background: white;
	z-index: 1001;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	padding: clamp(10px, 2vw, 30px);
	width: calc(100% - 60px);
	max-width: 600px;
	display: inline-block;
	overflow-y: auto;
	height: auto;
	max-height: 80vh;
}

#modalWin #modalWinConf li {
	display: inline-block;
}

#modalWin #modalWinConf button {
	color: black;
	font-size: 24px;
	font-weight: bold;
	background: var(--bg1);
	margin: 20px;
	padding: 4px 10px;
	border-radius: 4px;
}

#btnClose {
	color: white;
	font-size: 26px;
	font-weight: bold;
	z-index: 12;
	position: absolute;
	top: 10px;
	right: clamp(10px, 2vw, 20px);
	cursor: pointer;
}