body {
	margin: 0;
	padding: 0;
}

#splash-screen {
	position: absolute;
	z-index: 1000;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	/*background-color: #EEF0F8;*/
	background-color: inherit;
	transition: all .5s ease;
}

#splash-screen img {
	/*margin-left: calc(100vw - 100%);*/
	/*margin-bottom: 30px;*/
	/*animation: rotateInverse 3s linear infinite;*/
	position: absolute;
	top: 50%;
	left: 50%;
	/* bring your own prefixes */
	transform: translate(-50%, -50%);
}

#splash-screen.hidden {
	opacity: 0;
	visibility: hidden;
}

.splash-spinner {
	animation: rotate 2s linear infinite;
	margin-left: calc(100vw - 100%);
	width: 50px;
	height: 50px;
}

.splash-spinner .path {
	stroke: #3699FF;
	stroke-linecap: round;
	animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotateInverse {
	100% {
		transform: rotate(-360deg);
	}
}

@keyframes rotate {
	100% {
		transform: rotate(360deg);
	}
}

@keyframes dash {
	0% {
		stroke-dasharray: 1, 150;
		stroke-dashoffset: 0;
	}
	50% {
		stroke-dasharray: 90, 150;
		stroke-dashoffset: -35;
	}
	100% {
		stroke-dasharray: 90, 150;
		stroke-dashoffset: -124;
	}
}

/*
 * CONTENT SPLASH SCREEN
 */
.splash-screen {
	position: absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
	transition: all .5s ease;
}

.splash-screen img {
	position: absolute;
	top: 50%;
	left: 50%;
	/* bring your own prefixes */
	transform: translate(-50%, -50%);
}
