/* Preloader Styles */

.loader {
  z-index: 20001;
  color: #fff;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  position: fixed;
  inset: 0% 0% auto;
  display: none;
}

.loader__bg {
  background-color: #000000;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.loader__container {
  z-index: 2;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.loader__bg-bar {
  z-index: 1;
  transform-origin: 0%;
  transform-style: preserve-3d;
  background-color: #fff;
  width: 100%;
  height: 0.5em;
  position: absolute;
  inset: auto 0% 0%;
  transform: scale3d(0, 1, 1);
}

.loader__gif-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 200px;
  width: 100%;
}

.loader__gif {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .loader__gif-wrap {
    max-width: 200px;
  }
}
