#lpp-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lpp-content {
  text-align: center;
}

.lpp-logo {
  max-width: 200px;
  margin-bottom: 10px;
  animation: logo-fade 2s ease-in-out infinite;
}

.lpp-percentage {
  font-size: 16px;
  font-weight: 500;
  color: #5BBAD8;
}

@keyframes logo-fade {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
