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: #f6f7fa;
    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: 20vw !important;
    max-height: 100px;
}

html[data-bs-theme="black-gold"] .page-loading .splash-screen,
html[data-bs-theme="dark"] .page-loading .splash-screen {
    background-color: #24262b;
    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;
}


.page-loading .splash-screen .loading-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    height: 100%;
    align-self: stretch;
    box-sizing: border-box;
}

html[data-bs-theme="black-gold"] .page-loading .splash-screen .loading-container>svg {
    fill: #f7e78c !important;
}

.page-loading .splash-screen .loading-container>svg {
    height: 40%;
    max-height: 1.25rem;
    max-width: 80%;
    stroke: transparent;
    fill: #0f79b7 !important;
}

.page-loading .splash-screen .loading-container circle {
    transform-origin: center;
    will-change: transform;
    animation-timing-function: linear;
}

.page-loading .splash-screen .loading-container circle:nth-child(1) {
    animation: circleAnimation1 .6s infinite
}

.page-loading .splash-screen .loading-container circle:nth-child(2) {
    animation: circleAnimation2 .6s infinite
}

.page-loading .splash-screen .loading-container circle:nth-child(3) {
    animation: circleAnimation2 .6s infinite
}

.page-loading .splash-screen .loading-container circle:nth-child(4) {
    animation: circleAnimation3 .6s infinite
}

@keyframes circleAnimation1 {
    0% {
        transform: scale(.4) translate(28.57%);
        opacity: .3
    }

    to {
        transform: scale(1) translate(0);
        opacity: 1
    }
}


@keyframes circleAnimation2 {
    0% {
        transform: translate(0)
    }

    to {
        transform: translate(28.57%)
    }
}

@keyframes circleAnimation3 {
    0% {
        transform: scale(1) translate(0);
        opacity: 1
    }

    to {
        transform: scale(.4) translate(-28.57%);
        opacity: .3
    }
}
