*, html, body, div, p { margin:0; padding:0 }
html, body { height: 100%; }

body
{
	font-family: Arial;
	font-size: 15px; color: #D7F9FF;
	background: #173745;
}

.preloader
{
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: radial-gradient(#0F78AB, #021B21);
	z-index: 100;
}

.preloader div
{
	position: absolute; top: 50%; left: 50%;
	margin-left: -100px; margin-top: -100px;
	width: 200px; height: 200px;
	background-color: snow;
	border-radius: 50%;
	opacity: 0.1;
	-webkit-animation: bounce 2.0s infinite ease-in-out;
	animation: bounce 2.0s infinite ease-in-out;
}

.preloader div:last-child { -webkit-animation-delay: -1.0s; animation-delay: -1.0s; }

@-webkit-keyframes bounce
{
	0%, 100% { -webkit-transform: scale(0.0) }
	50% { -webkit-transform: scale(1.0) }
}

@keyframes bounce
{
	0%, 100%
	{
		transform: scale(0.0);
		-webkit-transform: scale(0.0);
	}
	50%
	{
		transform: scale(1.0);
		-webkit-transform: scale(1.0);
	}
}

.mute
{
	position: absolute; top: 10px; right: 10px;
	padding: 10px; font-size: 10px;
	background: rgba(0,0,0,.2);
	cursor: pointer;
}