#loader div.loader2 {
	display: table;
	opacity: 1;
	position: fixed;
	z-index: 100000;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	animation-timing-function: ease-in;
	border-top: 1px solid #ccc;
	
	border: 1px solid #000;
	background-image: linear-gradient(
		-45deg,
		#fff 25%,
		#e2f7ff 25%, #e2f7ff 50%,
		#fff 50%, #fff 75%,
		#e2f7ff 75%, #e2f7ff
	  );
	background-size: 5px 5px;
}
.spinner {
	display: table-cell;
	vertical-align: middle;
	margin: 100px auto 0;
	width: 70px;
	line-height: 3.0;
	text-align: center;
}

.spinner > div {
  width: 18px;
  height: 18px;
  background-color: #00A2E5;

  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;
}

.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);
  }
}

#loader div.loader2.slideDown {
	top:100vh;
	opacity:0;
	transition: top 0.5s ease-out 1s, opacity 0.5s ease-out 1s;
	border:none;
}
