@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope.ttf");
  unicode-range: U+0020-024F;
}

@font-face {
  font-family: "Cairo";
  src: url("../fonts/cairo.ttf");
  unicode-range: U+0600-06FF;
}

html {
  font-size: 13px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Manrope", "Cairo", sans-serif !important;
}

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

.splash-screen {
  display: none;
}

.splash-screen {
  position: fixed;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #fff;
}

.splash-screen .loading-text {
  color: #99a1b7;
  font-size: 1.075rem;
  font-weight: 500;
}

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

.splash-screen .dark-logo {
  display: none;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
    hue-rotate(93deg) brightness(103%) contrast(103%);
}

.splash-screen .logo {
  width: 8rem;
  height: auto;
  margin-bottom: 1.25rem;
  object-fit: contain;
}

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

.loader {
  width: 2rem;
  height: 2rem;
  border: 0.185rem solid #1b84ff;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 0.65s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loader-wrapper {
  display: flex;
  align-items: center;
  margin-top: 1.25rem;
}
