.main-container{
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.indexload {
  position: relative;
  margin: 50px auto;
  width: 100px;
}

.indexload .gear {
  position: absolute;
  z-index: 10;
  width: 40px;
  height: 40px;
  -webkit-animation: spin 5s infinite;
          animation: spin 5s infinite;
}

.indexload .two {
  left: 40px;
  width: 80px;
  height: 80px;
  -webkit-animation: spin-reverse 5s infinite;
          animation: spin-reverse 5s infinite;
}

.indexload .three {
  top: 45px;
  left: -10px;
  width: 60px;
  height: 60px;
}

@-webkit-keyframes spin {
  50% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  50% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes spin-reverse {
  50% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
@keyframes spin-reverse {
  50% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
.indexload .lil-circle {
  position: absolute;
  border-radius: 50%;
  -webkit-box-shadow: inset 0 0 10px 2px gray, 0 0 50px white;
          box-shadow: inset 0 0 10px 2px gray, 0 0 50px white;
  width: 100px;
  height: 100px;
  opacity: 0.65;
}

.indexload .blur-circle {
  position: absolute;
  top: -19px;
  left: -19px;

}

.Ltext {
  color: lightgray;
  font-size: 18px;
  font-family: "Open Sans", sans-serif;
  text-align: center;
}
