

.loader-1{
	position: fixed;
	background:#fff;
	z-index:11000;
	height:100%;
	width:100%;
	overflow:hidden;
}

* {
  margin: 0px;
  padding: 0px;
  border: 0px;
}

.sk-cube-grid {
  height: 20px;
  margin: auto;
  width: 30px;
  position: relative;
  top: 50%;
}

.sk-cube-grid .sk-cube {
  width: 16%;
  height: 100%;
    margin-left: 1px;
  background-color: #365271;
  float: left;
  -webkit-animation: sk-cubeGridScaleDelay 1.1s infinite ease-in-out;
          animation: sk-cubeGridScaleDelay 1.1s infinite ease-in-out;
}
.sk-cube-grid .sk-cube1 {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s; }
.sk-cube-grid .sk-cube2 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s; }
.sk-cube-grid .sk-cube3 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s; }
.sk-cube-grid .sk-cube4 {
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s; }
.sk-cube-grid .sk-cube5 {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s; }


@-webkit-keyframes sk-cubeGridScaleDelay {
  0%, 70%, 100% {
    -webkit-transform: scale3D(1, 1, 1);
            transform: scale3D(1, 1, 1);
  } 35% {
    -webkit-transform: scale3D(1, 2, 1);
            transform: scale3D(1, 2, 1);
  }
}

@keyframes sk-cubeGridScaleDelay {
  0%, 70%, 100% {
    -webkit-transform: scale3D(1, 1, 1);
            transform: scale3D(1, 1, 1);
  } 35% {
    -webkit-transform: scale3D(1, 2, 1);
            transform: scale3D(1, 2, 1);
  } 
}