.sk-three-bounce {
  margin: auto;
  width: 70px;
  text-align: center;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.sk-three-bounce .sk-child {
  width: 18px;
  height: 18px;
  background-color: #0d6efd;
  border-radius: 100%;
  display: inline-block;
  animation: sk-bouncedelay 0.6s infinite ease-in-out both;
}

.sk-three-bounce .sk-bounce1 {
  animation-delay: -0.32s;
}
.sk-three-bounce .sk-bounce2 {
  animation-delay: -0.16s;
}

@keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
