/*** Preloader ***/
#preloader {width: 640px; text-align: center; margin:0; position:absolute;}
#preloader p {margin: 0px 0; color: #CCC; text-align: center; font-weight: bold; position:relative; font-size: 45px;font-family: arial;}
#preloader .pool {position: absolute; display: none;}

/*** Progress Bar ***/

.meter {
	position: relative;
    padding: 10px;
    height: 30px;
    width: 500px;
	margin: auto;
	background: #CCC;
	top: 360px;
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	border-radius: 25px;
	-webkit-border-top-left-radius: 25px;
	-webkit-border-top-right-radius: 25px;
	-webkit-border-bottom-left-radius: 25px;
	-webkit-border-bottom-right-radius: 25px;
	-moz-border-top-left-radius: 25px;
	-moz-border-top-right-radius: 25px;
	-moz-border-bottom-left-radius: 25px;
	-moz-border-bottom-right-radius: 25px;
	border-top-left-radius: 25px;
	border-top-right-radius: 25px;
	border-bottom-left-radius: 25px;
	border-bottom-right-radius: 25px;
}

.meter > span {
	position: relative;
	display: block;
	height: 100%;
	background-color:#f2732f;
	overflow: hidden;
	
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	-webkit-border-top-left-radius: 20px;
	-webkit-border-top-right-radius: 20px;
	-webkit-border-bottom-left-radius: 20px;
	-webkit-border-bottom-right-radius: 20px;
	-moz-border-top-left-radius: 20px;
	-moz-border-top-right-radius: 20px;
	-moz-border-bottom-left-radius: 20px;
	-moz-border-bottom-right-radius: 20px;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}
.meter > span > span {
	position: absolute;
	top: 0; left: 0; bottom: 0; right: 0;
	background-image: 
		-webkit-gradient(linear, 0 0, 100% 100%, 
			color-stop(.25, #f2732f  ), 
			color-stop(.25, transparent), color-stop(.5, transparent), 
			color-stop(.5, #f2732f  ), 
			color-stop(.75, #f2732f  ), 
			color-stop(.75, transparent), to(transparent)
		);
	background-image: 
		-webkit-linear-gradient(
			-45deg, 
			#f2732f   25%, 
			transparent 25%, 
			transparent 50%, 
			#f2732f   50%, 
			#f2732f   75%, 
			transparent 75%, 
			transparent
		);
	background-image: 
		-moz-linear-gradient(
			-45deg, 
			#f2732f   25%, 
			transparent 25%, 
			transparent 50%, 
			#f2732f   50%, 
			#f2732f   75%, 
			transparent 75%, 
			transparent
		);
	background-image: 
		-ms-linear-gradient(
			-45deg, 
			#f2732f   25%, 
			transparent 25%, 
			transparent 50%, 
			#f2732f   50%, 
			#f2732f   75%, 
			transparent 75%, 
			transparent
		);
	z-index: 1;
	-webkit-background-size: 50px 50px;
	-moz-background-size: 50px 50px;
	background-size: 50px 50px;
	
	-webkit-animation: move 2s linear infinite;
	-moz-animation: move 2s linear infinite;
	animation: move 2s linear infinite;
	
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	-webkit-border-top-left-radius: 8px;
	-webkit-border-top-right-radius: 8px;
	-webkit-border-bottom-left-radius: 8px;
	-webkit-border-bottom-right-radius: 8px;
	-moz-border-top-left-radius: 8px;
	-moz-border-top-right-radius: 8px;
	-moz-border-bottom-left-radius: 8px;
	-moz-border-bottom-right-radius: 8px;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
	
	overflow: hidden;
}
.animate > span:after {
	display: none;
}
.meter > span:after, .animate > span > span {
	-webkit-animation: move 2s linear infinite;
	-moz-animation: move 2s linear infinite;
	animation: move 2s linear infinite;
}
@-webkit-keyframes move {
    0% {background-position: 0 0;}
    100% {background-position: 50px 50px;}
}
@-moz-keyframes move {
    0% {background-position: 0 0;}
    100% {background-position: 50px 50px;}
}
@keyframes move {
    0% {background-position: 0 0;}
    100% {background-position: 50px 50px;}
}

.ball {
  position: absolute;
  top: 50%; left: 50%; margin: -80px 0 0 -60px;
  width: 120px; height: 120px;
  padding: 6px;
  background-color: #97daf7;
  border-radius: 100%;
  box-shadow: inset 0 0 20px -5px #fff, inset 0 -40px 40px -20px #fff;
}
.ball:before {
  position: absolute;
  content: '';
  width: 40%; height: 25%;
  top: 20px; left: 10px;
  background: rgba(255,255,255,0.1); border-radius: 100%;
  -webkit-transform: rotate(-45deg); transform: rotate(-45deg);
}
.wave {
  width: 100%; height: 100%;
  border-radius: 100%;
  background: url(../preloader.png);
  -webkit-animation: wave-animation 1s infinite linear;
  animation: wave-animation 1s infinite linear;
  background-size: 200px 0px;
  background-repeat: repeat-x;
}

@-webkit-keyframes wave-animation {
  0% {background-position: 0 bottom;}
  100% {background-position: 200px bottom;}
}
@keyframes wave-animation {
  0% {background-position: 0 bottom;}
  100% {background-position: 200px bottom;}
}
@-webkit-keyframes loading-animation {
  0% {background-size: 200px 0px;}
  100% {background-size: 200px 200px;}
}
@keyframes loading-animation {
  0% {background-size: 200px 0px;}
  100% {background-size: 200px 200px;}
}
