#progress .loading-area {
  display: flex;
  justify-content: center;

  gap: 5px;
}
#progress .loading-area span {
  display: inline-block;
  color: var(--loading_color_text);
  font-weight: bold;
  font-size: clamp(16px, 5vw, 32px);
  animation: rotate 1.5s infinite linear;
}
#progress .loading-area span:nth-child(2) {
  animation-delay: 0.1s;
}
#progress .loading-area span:nth-child(3) {
  animation-delay: 0.2s;
}
#progress .loading-area span:nth-child(4) {
  animation-delay: 0.3s;
}
#progress .loading-area span:nth-child(5) {
  animation-delay: 0.4s;
}
#progress .loading-area span:nth-child(6) {
  animation-delay: 0.5s;
}
#progress .loading-area span:nth-child(7) {
  animation-delay: 0.6s;
}
#progress .loading-area span:nth-child(8) {
  animation-delay: 0.7s;
}
#progress .loading-area span:nth-child(9) {
  animation-delay: 0.8s;
}
#progress .loading-area span:nth-child(10) {
  animation-delay: 0.9s;
}
#progress .loading-area span:nth-child(11) {
  animation-delay: 1.0s;
}
#progress .loading-area span:nth-child(12) {
  animation-delay: 1.1s;
}
#progress .loading-area span:nth-child(13) {
  animation-delay: 1.2s;
}
#progress .loading-area span:nth-child(14) {
  animation-delay: 1.3s;
}
#progress .loading-area span:nth-child(15) {
  animation-delay: 1.4s;
}
@keyframes rotate {
  10% {
    transform: scale(1.2);
  }
}
