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

.z-web-splash-screen {
  display: none;
}

.page-loading .z-web-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-color: #ffffff;
  color: #5e6278;
  line-height: 1;
  font-size: 14px;
  font-weight: 400;
}

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

.page-loading .z-web-splash-screen img {
  margin-left: calc(100vw - 100%);
  margin-bottom: 20px;
  height: 40px !important;
}

html[data-bs-theme='dark'] .page-loading .z-web-splash-screen {
  background-color: #121212;
  color: #ffffff;
}

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

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

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

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

.z-loader {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: conic-gradient(#0000 10%, #0069b4);
  -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 8px), #000 0);
  animation: s3 1s infinite linear;
}

.z-text-loader {
  margin-top: 2rem;
}

@keyframes s3 {
  to {
    transform: rotate(1turn);
  }
}
