.application-loading {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.application-loading div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  margin: 5px;
  border: 5px solid #808080;
  border-radius: 50%;
  animation: application-loading-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #808080 transparent transparent transparent;
}
.application-loading div:nth-child(1) {
  animation-delay: -0.45s;
}
.application-loading div:nth-child(2) {
  animation-delay: -0.3s;
}
.application-loading div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes application-loading-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
