.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: #22260E;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__lottie {
  width: min(320px, 60vw);
  height: min(320px, 60vw);
}

.preloader__bar-track {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: rgba(247, 223, 187, 0.15);
}

.preloader__bar {
  height: 100%;
  width: 0%;
  background-color: #F7DFBB;
  transition: width 0.1s linear;
}
