.app-loading {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #f4f7f9;
}

.app-loading .app-loading-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  transform: translate3d(-50%, -50%, 0);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.app-loading .dots {
  display: flex;
  padding: 98px;
  justify-content: center;
  align-items: center;
}

.app-loading .app-loading-logo {
  display: block;
  width: 128px;
  margin: 0 auto;
  margin-bottom: 0;
}

.app-loading-dots {
  width: 128px;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.app-loading-dots i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  animation: wave 1s ease-in-out infinite;
}

.app-loading-dots i:nth-child(1) {
  background-color: #E53834;
  animation-delay: 0s;
}

.app-loading-dots i:nth-child(2) {
  background-color: #1E88E5;
  animation-delay: 0.2s;
}

.app-loading-dots i:nth-child(3) {
  background-color: #43A047;
  animation-delay: 0.4s;
}

.app-loading-dots i:nth-child(4) {
  background-color: #FDD834;
  animation-delay: 0.6s;
}

.app-loading-dots i:nth-child(5) {
  background-color: #FB8C00;
  animation-delay: 0.8s;
}
@keyframes wave {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
