/**********************
 *CSS Animations by:
 *http://codepen.io/vivinantony
***********************/
.spinner1 {
  width: 40px;
  height: 40px;
  position: relative;
}

.loading {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	width: 100%;
	height: 100%;
	background-color: #fff;
}
.loader {
	position: fixed;
	top: 48%;
	left: 50%;
	margin-left:-145px;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 9999;
	color: #2a2b2f;
}

.spinner7 {
  width: 290px;
  height: 30px;
  text-align: center;
}

.spinner7 > div {
  background-color: #727171;
  height: 66px;
  width: 66px;
  margin-left:3px;
  border-radius: 50%;
  display: inline-block;
  -webkit-animation: stretchdelay 1s ease-in-out;
  animation: stretchdelay 1s ease-in-out;
  animation-fill-mode: forwards;
  opacity: 0;
}



.spinner7 .circ1 {
  color:#fff;
  padding-top:11px
}

.spinner7 .circ2 {
  -webkit-animation-delay: 0.05s;
  animation-delay: 0.05s;
  color:#fff;
  padding-top:11px
}

.spinner7 .circ3 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
  color:#fff;
  padding-top:11px
}

.spinner7 .circ4 {
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
  color:#fff;
  padding-top:11px
}



@-webkit-keyframes stretchdelay {
  0% { -webkit-transform: translateX(300px);opacity:0}  
  100% { -webkit-transform: translateX(0px);opacity:1}
}

@keyframes stretchdelay {
  0% { transform: translateX(300px);opacity:0}  
  100% { transform: translateX(0px);opacity:1}
}