body fuse-splash-screen {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    color: #0f2f5f;
    z-index: 999999;
    pointer-events: none;
    opacity: 1;
    visibility: visible;
    transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

body fuse-splash-screen .spinner {
    width: 44px;
    height: 44px;
    border: 4px solid rgba(15, 47, 95, 0.16);
    border-top-color: #0f2f5f;
    border-radius: 9999px;
    animation: fuse-spin 0.8s linear infinite;
}

@keyframes fuse-spin {
    to {
        transform: rotate(360deg);
    }
}

body:not(.fuse-splash-screen-hidden) {
    overflow: hidden;
}

body.fuse-splash-screen-hidden fuse-splash-screen {
    visibility: hidden;
    opacity: 0;
}
