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, -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, sans-serif;
  background-color: #f4f6fa;
  color: #7e8299;
  line-height: 1;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.page-loading .splash-screen img {
  height: 52px !important;
  margin-bottom: 26px;
}

.page-loading .splash-screen .ccp-splash-spinner {
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border: 4px solid rgba(3, 149, 64, 0.18);
  border-top-color: #039540;
  border-radius: 50%;
  animation: ccp-splash-spin 0.8s linear infinite;
}

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

@keyframes ccp-splash-spin {
  to {
    transform: rotate(360deg);
  }
}

html[data-bs-theme='dark'] .page-loading .splash-screen {
  background-color: #0f1117;
  color: #cbd2e0;
}

html[data-bs-theme='dark'] .page-loading .splash-screen span {
  color: #cbd2e0;
}
