:root {
    --primary: #0085CA;
}

html {
    -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;
    background: rgb(from var(--primary) r g b / 50%);
    backdrop-filter: saturate(180%) blur(20px);
}

html[data-bs-theme="dark"] .page-loading .splash-screen {
    background-color: rgba(21, 21, 33, 0.45);
    color: #ffffff;
}

.loading {
    font-size: 84px;
    font-weight: 700;
}

.loading.loading02 {
    pointer-events: none;
    user-select: none;
}

.loading.loading02 span {
    animation: loading02 1.2s infinite alternate;
    pointer-events: none;
    user-select: none;
    font-family: Arial, sans-serif;
}

.loading02 span:nth-child(2) {
    animation-delay: 0.2s;
}

.loading02 span:nth-child(3) {
    animation-delay: 0.4s;
}

.loading02 span:nth-child(4) {
    animation-delay: 0.6s;
}

.loading02 span:nth-child(5) {
    animation-delay: 0.8s;
}

@keyframes loading02 {
    0% {
        filter: blur(0) saturate(0);
        opacity: 1;
    }
    100% {
        filter: blur(8px) saturate(180%);
        opacity: .2;
    }
}
