.tone_mid
{
	font-weight:500;
	color: rgba(255, 255, 255, 0.95);
}

#preloader_wrapper 
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-image: url('../res/bg.png');
	background-color: #f2f2f2;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

.preloader 
{
	width: 85vw;
	max-width: 450px;
	height: auto;
	padding: 30px 20px;
	background-color: #3f3f40;
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 20px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
	font-family: 'KairosSans', sans-serif;
}

.loading_text 
{
	color: white;
	font-size: 1.1rem;
	font-weight:700;
	opacity: 0.8;
}

.progress_container 
{
	width: 80%;
	height: 2px;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 3px;
	overflow: hidden;
	position: relative;
}

.progress_fill 
{
	width: 0%;
	height: 100%;
	background-color: #f3f319;
	border-radius: 3px;
	/*animation: fill_simulation 3s ease-in-out forwards;*/
}
/*
@keyframes fill_simulation 
{
	0% {
	width: 0%;
	}
	50% {
	width: 60%;
	}
	100% {
	width: 100%;
	}
}
*/
