/* Preloader */
.xet-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  background: #000;
}
.xet-preloader .loading {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--xet-theme-color);
  animation: spin 2s linear infinite;
}
.xet-preloader .loading::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #8fc559;
  animation: spin 3s linear infinite;
}
.xet-preloader .loading::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #c5b059;
  animation: spin 1.5s linear infinite;
}
.xet-preloader .loading-text {
  opacity: 0;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  text-align: center;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: bold;
  color: #fff;
  animation: loading-text-opacity 1.5s linear 0s infinite normal;
}
.site-loaded {
  background: #000;
}
.site-loaded .xet-preloader {
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s 0.9s ease-in-out;
}
.site-loaded .xet-layout {
  opacity: 0;
}
body.site-show .xet-layout {
  opacity: 1;
  transition-property: opacity;
  transition-delay: 0.1s;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.28, 0.12, 0.22, 1);
}
@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes loading-text-opacity {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*# sourceMappingURL=c6f1cdd5f57303bffd21c8787882cb2207ac52dc.preloader.scss.map */
