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 {
    color: #5e6278;
    transition: none !important;
    -webkit-font-smoothing: antialiased;
}

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

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

.dotted-loader {
    width: 600px;
    height: 600px;
    position: absolute;
    left: calc(50% - 300px);
    top: calc(50% - 300px);
}

.dotted-loader::after,
.dotted-loader::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    left: calc(50% - 50px);
    top: calc(50% - 50px);
    border-radius: 50%;
    border: 4px #0075ff;
    border-style: dotted solid dotted solid;
    animation: turn-left 1.5s linear infinite;
}

.dotted-loader::before {
    left: calc(50% - 75px);
    top: calc(50% - 75px);
    width: 150px;
    height: 150px;
    border-style: dotted dotted solid solid;
    animation: turn-right 1.5s linear infinite;
}

@keyframes turn-right {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes turn-left {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}