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

.splash-screen {
  display: none;
}

.page-loading .splash-screen {
  position: absolute;
  z-index: 1000;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: Inter, Helvetica, "sans-serif";
  background: #fff3eb;
  color: #5e6278;
  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: 30px !important;
}

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

.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;
}

.page-loading .splash-screen .loading-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 100%;
  align-self: stretch;
  box-sizing: border-box;
  background-image: url("assets/images/ui/loading.svg");
  background-size: 50% 50%;
  background-position: center;
  background-repeat: no-repeat;
}

.page-loading .splash-screen .loading-container > svg {
  height: 40%;
  max-height: 1.25rem;
  max-width: 80%;
  stroke: transparent;
  fill: #f39b19 !important;
}

.page-loading .splash-screen .loading-container circle {
  transform-origin: center;
  will-change: transform;
  animation-timing-function: linear;
}

.page-loading .splash-screen .loading-container circle:nth-child(1) {
  animation: circleAnimation1 0.6s infinite;
}

.page-loading .splash-screen .loading-container circle:nth-child(2) {
  animation: circleAnimation1 0.6s infinite;
}

.page-loading .splash-screen .loading-container circle:nth-child(3) {
  animation: circleAnimation2 0.6s infinite;
}

.page-loading .splash-screen .loading-container circle:nth-child(4) {
  animation: circleAnimation2 0.6s infinite;
}

.page-loading .splash-screen .loading-container circle:last-child {
  animation: circleAnimation3 0.6s infinite;
}
@keyframes circleAnimation1 {
  0% {
    transform: scale(0.4) translate(28.57%);
    opacity: 0.3;
  }

  to {
    transform: scale(1) translate(0);
    opacity: 1;
  }
}

@keyframes circleAnimation2 {
  0% {
    transform: translate(0);
  }

  to {
    transform: translate(28.57%);
  }
}

@keyframes circleAnimation3 {
  0% {
    transform: scale(1) translate(0);
    opacity: 1;
  }

  to {
    transform: scale(0.4) translate(-28.57%);
    opacity: 0.3;
  }
}
