#app {
	position: absolute;
	left: 50%;
	transform: translate(-50%, 0%);
	width: 100%;
	height: 100vh;
	height: 100dvh;
}

body {
	padding: 0;
	margin: 0;
	overflow: hidden;
	background: #0b1327;
	width: 100%;
	height: 100vh;
	height: 100dvh;
}

.splashBackground {
	position: fixed;
	inset: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.preloader,
.preloader2 {
	width: 1000px;
	height: 1000px;
}

.preloader2 {
	width: 2000px;
	height: 2000px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s ease-in-out;
	padding: 0;
}

.preloader_inner {
	position: absolute;
	left: 50%;
	transform: translate(-50%, 0%);
	height: 100%;
	aspect-ratio: 1000 / 1000;
	background-size: 100% 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.preloader_inner2 {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}

#preloader2 .progress_bar2 {
	position: absolute;
	top: calc(100% - var(--loader-center-bottom, 110px));
	left: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1221px;
	height: 263px;
	padding: 0;
	transform: translate(-50%, -50%);
	animation: loaderFadeIn 0.6s ease-in-out 0.6s forwards;
}

#preloader2 #divStart {
	position: absolute;
	top: calc(100% - var(--loader-center-bottom, 110px));
	left: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin: 0;
	transform: translate(-50%, -50%);
	text-align: center;
}

@keyframes loaderFadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@media (prefers-reduced-motion: reduce) {
	#preloader2 .progress_bar2 {
		animation: none;
		opacity: 1;
	}
}
