@import url(http://fonts.googleapis.com/css?family=Open+Sans:600);

*{
	outline: 0;
	text-decoration: none;
	font-family: 'Open Sans', Arial;
	font-weight: 600;
	-webkit-user-select: none;
}
body{
	margin: 0;
	padding: 0;
	background: rgb(255 255, 255);
}

#wrapper{
	width: 100vw;
	height: 100vh;
	position: relative;
	margin: 0;
	padding: 0;
}

.spinner {
	position: fixed;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9) center center no-repeat;
	pointer-events: all;
	z-index: 1;
}
.spinner .loading-container {
	opacity: 0.8;
	top: 40%;
	left: 50%;
	position: absolute;
	width: 40px;
	height: 40px;
	-webkit-transform: translate(-25px, -25px);
	        transform: translate(-25px, -25px);
}
.loading-container .ball {
	background-color: rgba(0, 0, 0, 0);
	border: 5px solid rgba(0, 183, 229, 0.9);
	opacity: 0.9;
	border-top: 5px solid rgba(0, 0, 0, 0);
	border-left: 5px solid rgba(0, 0, 0, 0);
	border-radius: 50px;
	box-shadow: 0 0 35px rgb(33, 135, 231);
	width: 40px;
	height: 40px;
	margin: 0 auto;
	-webkit-animation: spin 0.5s infinite linear;
	        animation: spin 0.5s infinite linear;
}
.loading-container .ball-inner {
	background-color: rgba(0, 0, 0, 0);
	border: 5px solid rgba(0, 183, 229, 0.9);
	opacity: 0.9;
	border-top: 5px solid rgba(0, 0, 0, 0);
	border-left: 5px solid rgba(0, 0, 0, 0);
	border-radius: 50px;
	box-shadow: 0 0 15px rgb(33, 135, 231);
	width: 20px;
	height: 20px;
	margin: 10px 0 0 10px;
	position: relative;
	top: -50px;
	-webkit-animation: spin 0.5s infinite reverse linear;
	        animation: spin 0.5s infinite reverse linear;
}
.ball-text {
	color: rgba(0, 183, 229, 0.9);
	text-transform: uppercase;
	text-align: center;
	opacity: 0.8;
	width: 100vw;
	top: 40%;
	left: 0;
	font-size: 15px;
	position: absolute;
	-webkit-transform: translatey(25px);
	        transform: translatey(25px);
	-webkit-animation: pulse 1s infinite alternate ease-in-out;
	        animation: pulse 1s infinite alternate ease-in-out;
	margin: 0;
	text-shadow: 0 0 35px rgb(33, 135, 231), 0 0 35px rgb(33, 135, 231), 0 0 35px rgb(33, 135, 231);
}
@-webkit-keyframes pulse {
	0% {
		opacity: 0.8;
	}
	100% {
		opacity: 0.4;
	}
}
@keyframes pulse {
	0% {
		opacity: 0.8;
	}
	100% {
		opacity: 0.4;
	}
}
@-webkit-keyframes spin {
	0% {
		-webkit-transform:rotate(0deg);
		        transform:rotate(0deg);
	}
	100% { 
		-webkit-transform:rotate(360deg); 
		        transform:rotate(360deg); 
	}
}
@keyframes spin {
	0% {
		-webkit-transform:rotate(0deg);
		        transform:rotate(0deg);
	}
	100% { 
		-webkit-transform:rotate(360deg); 
		        transform:rotate(360deg); 
	}
}