/*
<div class="spinner">
  <div class="bounce1"></div>
  <div class="bounce2"></div>
  <div class="bounce3"></div>
</div>
*/
#preload {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #009fc7;
	z-index:1050;
	opacity:1;
}

#ploading {
	text-align: center;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 400;
	color: #9fd1ea;
}

#load_bar_container {
	position: relative;
	margin: 10px auto;
	width: 200px;
	height: 3px;
	background: #31b9e1;
}

#load_bar {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	background: #9fd1ea;
	width: 0%;
	height: 3px;
	transition: width .2s;
}

#load_container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.preload {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #e9e9e9;
	z-index:1050;
	opacity:1;
}

.ploading {
	text-align: center;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 400;
	color: #a1a1a1;
}

.load_bar_container {
	position: relative;
	margin: 10px auto;
	width: 200px;
	height: 3px;
	background: #fff;
}

.load_bar {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	background: #9fd1ea;
	width: 0%;
	height: 3px;
	transition: width .2s;
}

.load_container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.spinner {
  margin: 0px auto 0;
  width: 70px;
  text-align: center;
}

.spinner > div {
  width: 10px;
  height: 10px;
  background-color: #31b9e1;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.preload .spinner > div {
  background-color: #a1a1a1;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}