/* preloader */

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9992;
  transition: opacity 0.5s ease;
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
}

.preloader.hidden2 {
  opacity: 0;
  display: none;
}

.preloader-ovl {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.2);
  width: 100vw;
  top: 0;
  height: 100vh;
  z-index: 9991;
}

.image-container {
  position: fixed;
  display: inline-block;
  z-index: 9994;
}

.image-container img {
  display: block;
  width: 350px;
}

.animated-line {
  position: absolute;
  top: 18%;
  height: 6px;
  background-color: #ffffff;
  width: 0;
}
