/* Preloader */
.theme-loader {
    background-image: linear-gradient(113deg, rgb(214, 40, 40) 14%, rgb(1, 10, 15) 100%);
}
.theme-loader {
   align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: 9999999;
}

.spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: flex;
}

.spinner-bounce {
  will-change: transform;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  background: #fff;
  display: inline-block;
  animation: bounces 1s ease-in-out infinite alternate;
  transform-origin: 50% 50%;
}
.spinner-bounce.one {
  margin-right: 15px;
}
.spinner-bounce.two {
  margin-right: 15px;
  animation-delay: 0.4s;
}
.spinner-bounce.three {
  animation-delay: 0.8s;
}

@keyframes bounces {
  0% {
    transform: scale(1);
    background: #fff;
  }
  50% {
    background: #fff;
  }
  100% {
    transform: scale(0.2);
    background: #fff;
  }
}