#root {
	height: 100%;
	background-color: #fd5f49;
}

/*.loader:empty::before {*/
/*	content: "";*/
/*	position: absolute;*/
/*	top: calc(50% - 4em);*/
/*	left: calc(50% - 4em);*/
/*	width: 6em;*/
/*	height: 6em;*/
/*	border: 1.1em solid rgba(0, 0, 0, 0.2);*/
/*	border-left: 1.1em solid #000000;*/
/*	border-radius: 50%;*/
/*	animation: load8 1.1s infinite linear;*/
/*}*/

/*@keyframes load8 {*/
/*	0% {*/
/*		transform: rotate(0deg);*/
/*	}*/
/*	100% {*/
/*		transform: rotate(360deg);*/
/*	}*/
/*}*/
body {
	height: 100%;
	background-color: #fd5f49;
}
.loader-initial {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-image: url("./bg-main.png");
}

.loader-initial .loader-logo {
	height: 160px;
	width: 100%;
	background-image: url("/logo-256.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.loader-initial .loader-progress-bar {
	width: 180px;
	height: 5px;
	margin-top: 10px;
	border-radius: 20px;
	background-color: rgba(255, 255, 255, .2);
	overflow: hidden;
}

.loader-initial .loader-progress-bar .loader-progress {
	width: 0;
	height: 100%;
	background-color: #ffffff;
	animation: expandWidth 0.3s 1;
	animation-fill-mode: forwards;
	animation-delay: 0;
}

@keyframes expandWidth {
	0% { width: 0; }
	100% { width: 90%; }
}

.app-ready .loader-initial {
		display: none;
}
