.loading-screen {
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background-color: var(--dark);
	z-index: 9999;
	transition: opacity .5s ease-in-out;
}
.loading-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 80%;
	max-width: 480px;
}

.logo-container {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 120px;
	margin-bottom: 2rem;
	overflow: hidden;
}
.logo-wrapper {
	position: relative;
	width: 240px;
	height: 48px;
}
.agentec-logo {
	display: block;
	width: 100%;
	height: auto;
}
.logo-mask {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, var(--dark), var(--dark));
	transition: height .8s ease;
}
.loading-progress-container {
	width: 100%;
	text-align: center;
}
.loading-progress-container .progress-bar {
	width: 100%;
	height: .1rem;
	margin-bottom: 1rem;
	background-color: var(--dark-gray);
	border-radius: 4px;
	overflow: hidden;
}
.loading-progress-container .progress-fill {
	width: 0;
	height: 100%;
	background-color: var(--quaternary);
	transition: width .3s ease-out;
}
.loading-progress-container .progress-text {
	color: var(--light-gray);
	font-size: 1.4rem;
	font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
	.loading-container {
		width: 90%;
	}
	.logo-container {
		height: 10rem;
	}
	.logo-wrapper {
	}
}

@media (max-width: 480px) {
	.loading-container {
		width: 95%;
	}
	.logo-container {
		height: 8rem;
	}
	.logo-wrapper {
		width: 180px;
		height: 36px;
	}
	.loading-progress-container .progress-text {
		 font-size: 1.2rem;
	}
}