
#loading {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color:#082C66;
  z-index: 200000000000000;
}
#loading .logo-wrap {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 800px;
  height: 200px;
  z-index: 8;
  opacity: 1;
  background: #082C66 url('../img/logos.png') center no-repeat;
}
#loading .logo-wrap.on {
  opacity: 0;
  pointer-events: none;
  -webkit-animation: fadeOut 2s ease-in-out;
          animation: fadeOut 2s ease-in-out;
}
#loading .load-ball {
  position: absolute;
  top: -45px;
  left: 30%;
  pointer-events: none;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  z-index: 2;
  opacity: 0;
  background-color:#08a6f8;
}
#loading .load-ball.on {
  -webkit-animation: water-go 2s linear both;
          animation: water-go 2s linear both;
}
#loading .load-mask {
  width: 800px;
  height: 200px;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgba(8, 44, 102, 0.77);
  -webkit-animation: load-mask-go 3s ease-in-out both;
          animation: load-mask-go 3s ease-in-out both;
}
@keyframes load-mask-go {
  0% {
    left: 0px;
  }
  100% {
    left: 800px;
  }
}
@-webkit-keyframes water-go {
  0% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(15, 15);
            transform: scale(15, 15);
    opacity: 0.5;
    background-color: #08a6f8;
  }
  100% {
    -webkit-transform: scale(15, 15);
            transform: scale(15, 15);
    opacity: 1;
    background-color: #08a6f8;
  }
}

