.spa-preloader {
  color: #fff;
  height: 100%;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  transition: opacity 300ms ease-out;
  user-select: none;
  width: 100vw;
  z-index: 4000;
}

.spa-preloader__bg {
  background:
    url(/f/media/countdown/bg.jpg) 50% no-repeat,
    url(/f/media/countdown/bg_lqip.jpg) no-repeat 50% #3a45ef;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.spa-preloader__content {
  align-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  position: absolute;
  width: 100%;
  z-index: 2;
}

.spa-preloader__image {
  animation: 2.5s cubic-bezier(0.65, 0.2, 0.35, 0.8) preloader-image-anim infinite;
  height: 172px;
  width: 172px;
}

#_spa-preloader-percent:not(:empty):after {
  content: '%';
}

.spa-preloader.active {
  opacity: 1;
}


@keyframes preloader-image-anim {
  to {
    transform: rotate(360deg);
  }
}
