.wrapPreLoader {
  display:flex;
  min-height: 90vh;
  /*background-color: #f2f4f8;*/
  background-color: white;
}

.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: #fc8621; */
  background-color: #0190fe;
  border-radius: 50%;
  display: inline-block;
  margin: -10px;
  height: 40px;
  width: 40px;
  transform: scale(0);
}

.circle:nth-of-type(2) {
  animation-delay: .75s;
  /* background-color: #f9e0ae */
  background-color: rgba(1, 144, 254, 0.5)
}

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