#app-loading, #app-loading:before, #app-loading:after {
  width: 2.5em;
  height: 2.5em;

  border-radius: 50%;

  -webkit-animation: loadinganimation 1.8s infinite ease-in-out;
  animation: loadingAnimation 1.8s infinite ease-in-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

#app-loading {
  position: relative;
  top: 0;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  transform: translate(-50%, 0);

  margin: 80px auto;

  font-size: 10px;
  color: #409eff;
  text-indent: -9999em;

  -webkit-animation-delay: -.16s;
  animation-delay: -.16s;
}

#app-loading:before, #app-loading:after {
  content: "";
  position: absolute;
  top: 0;
}

#app-loading:before {
  left: -3.5em;
  -webkit-animation-delay: -.32s;
  animation-delay: -.32s;
}

#app-loading:after {
  left: 3.5em;
}

@-webkit-keyframes loadingAnimation {
  0%, 80%, 100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }

  40% {
    box-shadow: 0 2.5em 0 0;
  }
}

@keyframes loadingAnimation {
  0%, 80%, 100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }

  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
