.preloader-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#loader-logo {
  width: 420px;
  margin-bottom: 20px;
}

.percentage {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #D73939;
}

/* Progress Bar */
.progress-bar {
  width: 200px;
  height: 6px;
  background-color: #eee;
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0;
  background-color: #3498db;
  transition: width 0.1s ease;
}

/* HTML: <div class="loader"></div> */
.bar {
  height: 4px;
  width: 130px;
  margin-bottom: 5px;
  --c:no-repeat linear-gradient(#082252 0 0);
  background: var(--c),var(--c),#2f2f303b;
  background-size: 60% 100%;
  animation: l16 3s infinite;
}
@keyframes l16 {
  0%   {background-position:-150% 0,-150% 0}
  66%  {background-position: 250% 0,-150% 0}
  100% {background-position: 250% 0, 250% 0}
}
