.loader-wrapper {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background-color: #EDF2FE;
}

.loader-3 {
  width: 10em;
  display: flex;
  justify-content: space-evenly;
}

.circle {
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
}

.circle:nth-child(1) {
  background-color: #33326F;
}

.circle:nth-child(2) {
  background-color: #33326F;
}

.circle:nth-child(3) {
  background-color: #33326F;
}

.circle:nth-child(4) {
  background-color: #33326F;
}

.circle:nth-child(5) {
  background-color: #33326F;
}

.circle::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  animation: animateLoader38 2s ease-out infinite;
}

.circle:nth-child(1)::before {
  background-color: #33326F;
}

.circle:nth-child(2)::before {
  background-color: #33326F;
  animation-delay: 0.2s;
}

.circle:nth-child(3)::before {
  background-color: #33326F;
  animation-delay: 0.4s;
}

.circle:nth-child(4)::before {
  background-color: #33326F;
  animation-delay: 0.6s;
}

.circle:nth-child(5)::before {
  background-color: #33326F;
  animation-delay: 0.8s;
}

@keyframes animateLoader38 {
  0% {
    transform: scale(1);
  }

  50%,
  75% {
    transform: scale(2.5);
  }

  80%,
  100% {
    opacity: 0;
  }
}