#loading_container {
	position:fixed; top:0;right: 0;bottom: 0;left: 0;
	display: flex; align-items: center; flex-direction: column;
	justify-content: center;
	transition: all linear .5s;
}
#loading_progress_container {
	padding: 0 .5% 0 .3%;
	width: 25%; min-width: 200px;
	font-size: 24px;
}

#loading_progress {
	border-radius: 10px;
	width: 100%;
	height: 8px;
	background-color: #4d4b4b;
}
#loading_progress_value {
	border-radius: 10px;
	width: 0;
	height: 8px;
	background-color: #1263d2;
	transition: all .8s ease;
}

#loading_logo {
	margin-left: auto;margin-right: auto; width: 25%;
	min-width: 200px;
	height: min-content;
	animation: 2s linear 0s infinite alternate load_pulsar;
}
@keyframes load_pulsar {
	from { opacity: 10%; }
	to { opacity: 100%; }
}

#ajax_progress_container {
	position: fixed;top: 0;left: 0; width: 100%; background-color: #4f4f4f; height: 6px;
	transition: all linear .5s; display: flex; align-items: center; opacity: 0;
	border: 1px solid #262626;
}
#ajax_progress {
	width: 0; background-color: #2072f9; height: 6px; transition: all .5s linear;
}