/*loading*/

.progress {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #fff;
	color: #000;
	z-index: 9999999999;
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 20px;
	padding-top: calc(20px + env(safe-area-inset-top, 0));
	padding-right: calc(20px + env(safe-area-inset-right, 0));
	padding-bottom: calc(20px + env(safe-area-inset-bottom, 0));
	padding-left: calc(20px + env(safe-area-inset-left, 0));
}

.progress-inner {
	width: 100%;
	max-width: 520px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 28px;
	padding: 12px;
	text-align: center;
}

.progress-logo {
	display: block;
	width: 250px;
	max-width: 72vw;
	height: auto;
	opacity: 1;
}

.progress-loader {
	position: relative;
	width: 48px;
	height: 48px;
	flex-shrink: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	align-items: center;
}

.progress-spinner {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 2px solid rgba(0, 0, 0, 0.12);
	border-top-color: #000;
	border-radius: 50%;
	animation: progress-spin 0.8s linear infinite;
	-webkit-animation: progress-spin 0.8s linear infinite;
	will-change: transform;
}

.progress-text {
	font-family: var(--Sans);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.02em;
	color: #000;
	line-height: 1;
}

@-webkit-keyframes progress-spin {
	to {
		-webkit-transform: rotate(360deg);
	}
}

@keyframes progress-spin {
	to {
		transform: rotate(360deg);
	}
}

@media (prefers-reduced-motion: reduce) {
	.progress-spinner {
		animation-duration: 1.6s;
	}
}

/*////RWD////*/
@media screen and (max-width: 1024px) {
	.progress-inner {
		max-width: 460px;
	}

	.progress-logo {
		width: 260px;
		max-width: 68vw;
	}
}

@media screen and (max-width: 480px) {
	.progress {
		padding: 16px;
		padding-top: calc(16px + env(safe-area-inset-top, 0));
		padding-right: calc(16px + env(safe-area-inset-right, 0));
		padding-bottom: calc(16px + env(safe-area-inset-bottom, 0));
		padding-left: calc(16px + env(safe-area-inset-left, 0));
	}

	.progress-inner {
		gap: 22px;
		max-width: 360px;
	}

	.progress-logo {
		width: 180px;
		max-width: 74vw;
	}

	.progress-loader {
		width: 40px;
		height: 40px;
	}

	.progress-spinner {
		border-width: 1.5px;
	}
}

@media (orientation: landscape) and (max-height: 767px) {
	.progress-inner {
		gap: 18px;
		max-width: 520px;
	}

	.progress-logo {
		width: 180px;
		max-width: 40vw;
	}
}

@media screen and (max-width: 360px) {
	.progress-logo {
		width: 160px;
		max-width: 72vw;
	}

	.progress-loader {
		width: 34px;
		height: 34px;
	}
}

@media screen and (max-width: 320px) {
	.progress-inner {
		gap: 14px;
	}

	.progress-logo {
		width: 138px;
		max-width: 74vw;
	}

	.progress-loader {
		width: 30px;
		height: 30px;
	}

	.progress-spinner {
		border-width: 1.5px;
	}
}

/*loading end*/
