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: fixed;
    z-index: 99999;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
      Helvetica, Arial, sans-serif;
    background-color: rgb(255,254,252);
    opacity: 1;
    transition: opacity 120ms ease-out;

    .kt-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      gap: 6px;
      height: 34px;
      padding: 0 12px;
      background-color: rgb(83, 58, 252);
      border: 0;
      border-radius: 6px;
      box-shadow: oklab(0 0 0 / 0.051) 0 1px 2px 0;
      color: #fff;
      cursor: pointer;
      font-size: 13px;
      font-weight: 500;
      line-height: 19px;
    }
  }

  .page-loading .splash-screen.splash-screen--hidden {
    opacity: 0;
    pointer-events: none;
  }
  
  .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: #0f1115;
    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: 1.2rem;
    height: 1.2rem;
    border: 0.185rem solid #533afc;
    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;
  }
