html {
  font-size: 13px;
  font-weight: 400;
  font-family: Inter,Helvetica,sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.splash-screen {
  display: none;
}

.page-loading .splash-screen {
  position: absolute;
  z-index: 99999;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: Inter, Helvetica, 'sans-serif';
  background-color: #fff;
}

.page-loading .splash-screen .loading-text {
  color: #99A1B7;
  margin-left: 1.25rem;
  font-size: 1.075rem;
  font-weight: 500;
}

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

.loader {
  width: 2rem;
  height: 2rem;
  border: 0.185rem solid #808080;
  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;
}

@keyframes animate {
  0%{
      transform: translateY(0) rotate(0deg);
      opacity: 1;
      border-radius: 0;
  }
  100%{
      transform: translateY(-1000px) rotate(720deg);
      opacity: 0;
      border-radius: 50%;
  }
}

.background-animate {
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  /* background: #4e54c8; */
  background: #7727e0;
  overflow: hidden;
  position: relative;
}
.background-animate .cub {
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  animation: animate 19s linear infinite;
}

.background-animate .cub:nth-child(0) {
  left: 16%;
  width: 148px;
  height: 148px;
  bottom: -148px;
  animation-delay: 1s;
}
.background-animate .cub:nth-child(1) {
  left: 24%;
  width: 100px;
  height: 100px;
  bottom: -100px;
  animation-delay: 2s;
}
.background-animate .cub:nth-child(2) {
  left: 88%;
  width: 121px;
  height: 121px;
  bottom: -121px;
  animation-delay: 1s;
}
.background-animate .cub:nth-child(3) {
  left: 27%;
  width: 140px;
  height: 140px;
  bottom: -140px;
  animation-delay: 2s;
}
.background-animate .cub:nth-child(4) {
  left: 76%;
  width: 182px;
  height: 182px;
  bottom: -182px;
  animation-delay: 1s;
}
.background-animate .cub:nth-child(5) {
  left: 70%;
  width: 158px;
  height: 158px;
  bottom: -158px;
  animation-delay: 17s;
}
.background-animate .cub:nth-child(6) {
  left: 9%;
  width: 191px;
  height: 191px;
  bottom: -191px;
  animation-delay: 23s;
}
.background-animate .cub:nth-child(7) {
  left: 63%;
  width: 127px;
  height: 127px;
  bottom: -127px;
  animation-delay: 32s;
}
.background-animate .cub:nth-child(8) {
  left: 15%;
  width: 183px;
  height: 183px;
  bottom: -183px;
  animation-delay: 34s;
}
.background-animate .cub:nth-child(9) {
  left: 52%;
  width: 111px;
  height: 111px;
  bottom: -111px;
  animation-delay: 2s;
}
.splash-screen img.dark-logo,
.splash-screen img.light-logo{
  width: 10%;
}