@charset "UTF-8";

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  background: #000;
}

#preloader .logo {
  position: absolute;
  width: 150px;
  height: 100vh;
  background-image: url(../images/pretty-baby-logo.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -57%);
  -webkit-transform: translate(-50%, -57%);
  -moz-transform: translate(-50%, -57%);
  -ms-transform: translate(-50%, -57%);
  -o-transform: translate(-50%, -57%);
}


#preloader .loader_text {
    position: absolute;
    font-size: 100px;
    font-weight: 700;
    color: var(--bs-light);
    z-index: 2;
    bottom: 20px;
    right: 20px;
}

#preloader .loader_bar {
  position: absolute;
  width: 100%;
  height: 0;
  z-index: 1;
  background-color:var(--bs-master);
  bottom:0;
  left: 0;
}

/* #preloader .loader_bar:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: orange;
  animation: fill 0.3s ease;
} */

/* @keyframes fill {
  0% {
    height: 0%;
  }

  100% {
    height: 100%;
  }
} */