/* ===== Loader CSS ===== */
#loaderBackground {
  overflow: hidden;
  background-color: rgb(0, 0, 0);
  display: block;
  content: "";
  position: fixed;
  z-index: 665;
  width: 100vw;
  height: 100%;
  min-height: 100vh;
  top: 0;
  left: 0;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

#site-loader {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 666;
  background: url("/wp-content/uploads/2023/07/logo-store98.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 50px;
  height: 50px;
  transform: translate(-50%, -50%);
  animation: fade-in linear;
  animation-duration: 0.85s;
}
#site-loader .circle {
  position: absolute;
  border: 3px solid transparent;
  border-top-color: white;
  border-radius: 50%;
  margin: -50px 0 0 -50px;
  animation: rotate-loader linear infinite;
}
#site-loader .circle.one {
  display: none;
  height: 50px;
  width: 50px;
  left: 50px;
  top: 50px;
  animation-duration: 0.85s;
}
#site-loader .circle.two {
  height: 85px;
  width: 85px;
  top: 33px;
  left: 33px;
  animation-duration: 0.95s;
}
#site-loader .circle.three {
  height: 140px;
  width: 140px;
  top: 5px;
  left: 5px;
  animation-duration: 1.05s;
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes rotate-loader {
  from {
    transform: rotateZ(360deg);
  }
  to {
    transform: rotateZ(0deg);
  }
}