body.page-loading {
  margin: 0;
  height: 100%;
  overflow: hidden;
}

.splash-screen {
  display: none;
  z-index: 1056;
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
  justify-content: center;
  align-items: center;
}

.splash-screen-overlay {
  z-index: 1057;
  position: fixed;
  background: white;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  opacity: 0.6;
}
.page-loading .splash-screen {
  position: absolute;
  z-index: 1000;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  line-height: 1;
  font-size: 14px;
  font-weight: 400;
}

.page-loading .splash-screen span {
  color: #5e6278;
  transition: none !important;
  -webkit-font-smoothing: antialiased;
}

/* .page-loading .splash-screen img {
  margin-left: calc(100vw - 100%);
  margin-bottom: 30px;
  height: 100px !important;
} */

html[data-bs-theme="dark"] .page-loading .splash-screen {
  background-color: #151521;
  color: #ffffff;
}

.splash-screen .dark-logo {
  display: none;
}

.splash-screen .light-logo {
  display: block;
}

html[data-bs-theme="dark"] .splash-screen .light-logo {
  display: none;
}

html[data-bs-theme="dark"] .splash-screen .dark-logo {
  display: block;
}

/* progress bar styles */

.loader-wrapper {
  position: relative;
  /* background-color: rgba(31, 41, 55, 0.2); */
  /* border-radius: 1rem; */
  padding: 1rem;
  /* backdrop-filter: blur(4px); */
}

.logo-container {
  position: relative;
  width: 192px;
  height: 64px;
  margin-bottom: 8px;
}

.logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Progress Indicator Styles */
.progress-indicator {
  width: 192px;
  height: 4px;
  background-color: rgba(253, 254, 255, 0.994);
  border-radius: 9999px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 50%;
  border-radius: 9999px;
  background: linear-gradient(
    to right,
    rgba(205, 204, 204, 0.7),
    rgba(127, 127, 127, 0.9),
    rgba(17, 24, 39, 0.7)
  );
  animation: progress 1.5s ease-in-out infinite;
}

.progress-bar-static {
  animation: none;
}
@keyframes progress {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(200%);
  }
}

.splash-screen-content {
  display: block;
  background: #7d7d7d;
  z-index: 10057;
  border-radius: 15px;
}
