/*!  build: ProofX Admin
     copyright: https://vuejs-core.cn/shop-vite
 */
figure {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 8em;
  height: 2em;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4em;
}

.dot {
  width: 0.4em;
  height: 1.2em;
  background: #4e88f3;
  border-radius: 0.2em;
  animation: bounce 1.4s ease-in-out infinite both;
}

.dot:nth-child(1) {
  animation-delay: -0.4s;
}

.dot:nth-child(2) {
  animation-delay: -0.3s;
}

.dot:nth-child(3) {
  animation-delay: -0.2s;
}

.dot:nth-child(4) {
  animation-delay: -0.1s;
}

.dot:nth-child(5) {
  animation-delay: 0s;
}

@keyframes bounce {
  0%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
}
