.wrapPreLoader {
  display: flex;
  min-height: 100vh;
  background-image: url('./mask-slider.svg');
  background-color: #fcf9f4;
}

.loading-container {
  align-items: center;
  justify-content: center;
  animation: rotate 3s linear infinite;
  height: 50px;
  transform-origin: bottom center;
  flex-direction: column;
  margin: auto;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

.circle {
  animation: grow 1.5s linear infinite;
  background-color: #facc81;
  border-radius: 50%;
  display: inline-block;
  margin: -10px;
  height: 40px;
  width: 40px;
  transform: scale(0);
}

.circle:nth-of-type(2) {
  animation-delay: 0.75s;
  background-color: #fdd593;
}

@keyframes grow {
  50% {
    transform: scale(1);
  }
}
