body fuse-splash-screen {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #FFFFFF;
    color: #F9FAFB;
    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 img.logo-image {
    width: 120px;
    max-width: 120px;
    animation: bounce 300ms alternate infinite cubic-bezier(.2, .65, .6, 1) both
}

@keyframes bounce {
    from {
        transform: translateY(0px) scaleX(1.1);
    }

    to {
        transform: translateY(-15px) scaleX(1);
    }
}

body fuse-splash-screen img.logo-text {
    width: 200px;
    max-width: 200px;
}

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

body.fuse-splash-screen-hidden fuse-splash-screen {
    pointer-events: none;
    animation: fade-out 0.5s ease-out both 0.5s;
}

@keyframes fade-out {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}
