body fuse-splash-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    color: hwb(211 69% 14%);
    font-family: Satoshi, ui-sans-serif, system-ui, -apple-system,
        BlinkMacSystemFont, sans-serif;
    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 {
    width: 120px;
    max-width: 120px;
}

body fuse-splash-screen .splash-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

body fuse-splash-screen .splash-brand-mark img {
    width: 92px;
    max-width: 92px;
    filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.18));
}

body fuse-splash-screen .splash-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

body fuse-splash-screen .splash-brand-title {
    background: linear-gradient(120deg, #52525b 0%, #18181b 45%, #000000 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 0.1px;
}

body fuse-splash-screen .splash-brand-subtitle {
    color: #71717a;
    font-size: 24px;
    font-weight: 500;
}

body fuse-splash-screen .splash-brand-subline {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}

body fuse-splash-screen .splash-brand-icon {
    color: #00a651;
    font-size: 20px;
    width: 20px;
    height: 20px;
    line-height: 20px;
}

body fuse-splash-screen .spinner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    width: 56px;
}

@media (max-width: 900px) {
    body fuse-splash-screen .splash-brand-title {
        font-size: 24px;
    }

    body fuse-splash-screen .splash-brand-subtitle {
        font-size: 16px;
    }

    body fuse-splash-screen .splash-brand-icon {
        font-size: 16px;
        width: 16px;
        height: 16px;
        line-height: 16px;
    }

    body fuse-splash-screen .splash-brand-mark img {
        width: 74px;
        max-width: 74px;
    }
}

body fuse-splash-screen .spinner > div {
    width: 12px;
    height: 12px;
    background-color: #27272a;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: fuse-bouncedelay 1s infinite ease-in-out both;
    animation: fuse-bouncedelay 1s infinite ease-in-out both;
}

body fuse-splash-screen .spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

body fuse-splash-screen .spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes fuse-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0)
    }
    40% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes fuse-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}

body:not(.fuse-splash-screen-hidden) {
    overflow: hidden;
}

body.fuse-splash-screen-hidden fuse-splash-screen {
    visibility: hidden;
    opacity: 0;
}
