.splashScreen
{
	height: 100%;
	width: 100%;
	overflow: hidden;
	background-color: #000000;
	position: fixed;
	top: 0;
	z-index: 999999;
	opacity: 1;
	transition: opacity 2s ease;
	font-family: 'Helvetica Neue', Arial, sans-serif;
}

.splashScreen .logoArea
{
	text-align: center;
	width: 500px;
	height: auto;
	min-height: 300px;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 30px;
}

.contentScreen
{
	height: 100%;
	width: 100%;
	overflow: hidden;
	transform: translate(-0%, -50%);
	position: fixed;
	top: 50%;
	z-index: 999998;
}

.splashScreenText
{
	position: relative;
	color: #FFFFFF;
	font-size: 62px;
	animation: fadeInUp 0.7s;
	font-weight: 300;
}

.splashScreenText span
{
	color: #378DE4;
}

#startButton
{
	background-color: transparent;
	border: 2px solid #378DE4;
	color: #378DE4;
	padding: 10px 20px;
	border-radius: 25px;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s ease;
	animation: fadeInUp 1s;
	animation-delay: 0.9s;
	opacity: 0;
	animation-fill-mode: forwards;
	font-weight: 500;
}

#startButton:hover
{
	background-color: #378DE4;
	color: #FFFFFF;
}

.splashScreenText:before
{
	content: attr(data-text);
	position: absolute;
	overflow: hidden;
	max-width: 7em;
	white-space: nowrap;
	animation: loading 8s linear;
}

@keyframes loading
{
	0%
	{
		max-width: 0;
	}
}

@keyframes fadeInUp
{
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes appearIn
{
	0% {
		transform: scale(0.3);
	} 

	100% {
		transform: scale(1);
	}
}

.splashSubtitle
{
	color: #FFFFFF;
	font-size: 18px;
	margin: 10px 0;
	animation: fadeInUp 1.5s;
	animation-delay: 0.3s;
	opacity: 0;
	animation-fill-mode: forwards;
}

.loadingText
{
	color: #ACB3BA;
	font-size: 14px;
	margin: 10px 0;
	animation: fadeInUp 2s;
	animation-delay: 0.6s;
	opacity: 0;
	animation-fill-mode: forwards;
}

.spinner
{
	border: 4px solid rgba(255, 255, 255, 0.3);
	border-top: 4px solid #FFFFFF;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	animation: spin 1s linear infinite;
	margin: 20px auto;
}

@keyframes spin
{
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

@keyframes fadeIn
{
	0% { opacity: 0; }
	100% { opacity: 1; }
}