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: #F1F5F9;
    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 .progress {
    position: relative;
    width: 80%;
    max-width: 400px;
    border-radius: 30px;
    background-color: #fff;
}

body fuse-splash-screen .progress .color {
    background-color: #f3c623;
    width: 0px;
    height: 10px;
    border-radius: 15px;
    animation: progress 4s infinite linear;
}


@keyframes progress {
    0% {
        width: 0%;
    }
    25% {
        width: 50%;
    }
    50% {
        width: 75%;
    }
    75% {
        width: 85%;
    }
    100% {
        width: 100%;
    }
}

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

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

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

body.fuse-splash-screen-remove .fuse-splash-screen-hidden-content {
    display: none !important;
    z-index: -1 !important;
    position: relative;
}
