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-color: #f9f9f9;
  color: #5e6278;
  line-height: 1;
  font-size: 14px;
  font-weight: 400;
}

.page-loading .splash-screen span {
  font-family: 'Montserrat', sans-serif;
  color: #2EA5F5;
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  transition: none !important;
  margin: 0;
  text-transform: uppercase;
}

.page-loading .splash-screen p {
  font-family: 'Montserrat', sans-serif;
  color: #2EA5F5;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  transition: none !important;
  -webkit-font-smoothing: antialiased;
  margin-top: 12px;
  text-transform: uppercase;
  animation: fadeInOut 1.5s infinite ease-in-out;
}

.page-loading .splash-screen h1 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 55px;
  font-style: normal;
  font-weight: 700;
  line-height: 55px;
  text-transform: uppercase;
  color: #2EA5F5;
  animation: fadeInOut 1.5s infinite ease-in-out;
}

.page-loading .splash-screen img {
  margin-bottom: 0;
  height: 50px !important;
  animation: fadeInOut 1.5s infinite ease-in-out;
}

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

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.loading-image {
  animation: fadeInOut 1.5s infinite ease-in-out;
}