.loading {
  text-align: center;
  padding-top: 100px;
}

#app-loading,
#app-loading:before,
#app-loading:after {
  border-radius: 50%;
  width: 3.5em;
  height: 3.5em;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: loadingAnimation 1.8s infinite ease-in-out;
  animation: loadingAnimation 1.8s infinite ease-in-out;
}

#app-loading {
  color: #304156;
  font-size: 10px;
  margin: 80px auto;
  position: relative;
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
  top: 0;
}

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

#app-loading:before {
  left: -5.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

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

@-webkit-keyframes loadingAnimation {
  0% {
    box-shadow: 0 3.5em 0 0;
  }
  80%,
  100% {
    box-shadow: 0 3.5em 0 -2.7em;
  }
  40% {
    box-shadow: 0 3.5em 0 0;
  }
}

@keyframes loadingAnimation {
  0% {
    box-shadow: 0 3.5em 0 0;
  }
  80%,
  100% {
    box-shadow: 0 3.5em 0 -2.7em;
  }
  40% {
    box-shadow: 0 3.5em 0 0;
  }
}
