.loading-wave {
    width: 50px;
    height: 25.5px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.loading-bar {
  width: 20px;
  height: 5px;
  margin: 0 5px;
  background-color: var(--orange);
  border-radius: 5px;
  animation: loading-wave-animation 1s ease-in-out infinite;
}

.loading-bar:nth-child(2) {
  animation-delay: 0.1s;
}

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

.loading-bar:nth-child(4) {
  animation-delay: 0.3s;
}

@keyframes loading-wave-animation {
  0% {
    height: 5px;
  }

  50% {
    height: 25.5px;
  }

  100% {
    height: 5px;
  }
}

