fuse-splash-screen {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
}

fuse-splash-screen img {
    width: 128px;
    max-width: 128px;
}

fuse-splash-screen .spinner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    margin-top: 32px;
}

fuse-splash-screen .spinner > div {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin: 0 4px;
    background-color: #4f46e5;
    border-radius: 100%;
    animation: fuse-splash-screen-bounce 1.4s ease-in-out infinite both;
}

fuse-splash-screen .spinner .bounce1 {
    animation-delay: -0.32s;
}

fuse-splash-screen .spinner .bounce2 {
    animation-delay: -0.16s;
}

@keyframes fuse-splash-screen-bounce {
    0%,
    80%,
    100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

body.fuse-splash-screen-hidden fuse-splash-screen {
    display: none;
}
