.loading-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 32px;
  width: 100%;
  height: 320px;
  gap: 20px;
  flex-direction: column;
}

.loading-container .message {
  font-size: 32px;
  font-weight: bold;
  font-family: 'Nunito';
  color: var(--primary-dark);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.loading-container .wrapper {
  width: 200px;
  height: 60px;
  position: relative;
  z-index: 1;
}

.loading-container .circle {
  width: 20px;
  height: 20px;
  position: absolute;
  border-radius: 50%;
  background-color: var(--primary);
  left: 15%;
  transform-origin: 50%;
  animation: circle7124 .5s alternate infinite ease;
}

@keyframes circle7124 {
  0% {
    top: 60px;
    height: 5px;
    border-radius: 50px 50px 25px 25px;
    transform: scaleX(1.7);
    opacity: 1;
  }

  40% {
    height: 20px;
    border-radius: 50%;
    transform: scaleX(1);
    opacity: 0.8;
  }

  100% {
    top: 0%;
    opacity: 0.4;
  }
}

.loading-container .circle:nth-child(2) {
  left: 45%;
  animation-delay: .2s;
}

.loading-container .circle:nth-child(3) {
  left: auto;
  right: 15%;
  animation-delay: .3s;
}

.loading-container .shadow {
  width: 20px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(0,0,0,0.45);
  position: absolute;
  top: 62px;
  transform-origin: 50%;
  z-index: -1;
  left: 15%;
  filter: blur(1px);
  animation: shadow046 .5s alternate infinite ease;
}

@keyframes shadow046 {
  0% {
    transform: scaleX(1.5);
  }

  40% {
    transform: scaleX(1);
    opacity: .7;
  }

  100% {
    transform: scaleX(.4);
    opacity: .4;
  }
}

.loading-container .shadow:nth-child(4) {
  left: 45%;
  animation-delay: .2s
}

.loading-container .shadow:nth-child(5) {
  left: auto;
  right: 15%;
  animation-delay: .3s;
}
