.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: -45px;
	margin-top: -45px;
	width: 90px;
	height: 90px;
	border-radius: 7px;
	background: #f7931d;
	background: radial-gradient(circle, #f7931d 0%, #fff200 100%);
	z-index: 2;
}

.splash-logo {
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -30px;
	margin-top: -30px;
	width: 60px;
	height: 60px;
	z-index: 3;
}

.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;
	}
}