.splash-screen {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
  left: 0;
  right: 0;
  bottom: 0;
	background-color: white;
	z-index: 1;
}

.splash-loader,
.splash-loader:before,
.splash-loader:after {
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -60px;
	margin-top: -60px;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: #AAAAAA;
	background: radial-gradient(circle, #AAAAAA 0%, #990f44 100%);
	z-index: 2;
}

.splash-logo {
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -40px;
	margin-top: -40px;
	height: 80px;
	z-index: 3;
	object-fit: contain;
}

.splash-loader {
	background: transparent;
}

.splash-loader:before {
content: "";
animation: bounce 1.5s infinite;
}
.splash-loader:after {
content: "";
animation: bounce 1.5s -0.4s infinite;
}

@keyframes bounce {
	0% {
		transform: scale(0.3);
		-webkit-transform: scale(0.3);
		opacity: 1;
	}
	100% {
		transform: scale(2);
		-webkit-transform: scale(2);
		opacity: 0;
	}
}

@-webkit-keyframes bounce {
	0% {
		transform: scale(0.3);
		-webkit-transform: scale(0.3);
		opacity: 1;
	}
	100% {
		transform: scale(2);
		-webkit-transform: scale(2);
		opacity: 0;
	}
}