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;
    color: #F9FAFB;
    z-index: 999999;
    pointer-events: none;
    opacity: 1;
    visibility: visible;
    transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

body:not(.fuse-splash-screen-hidden) {
    overflow: hidden;
}

body.fuse-splash-screen-hidden fuse-splash-screen {
    visibility: hidden;
    opacity: 0;
}

.splashScreen {
    position: absolute;
    z-index: 4000;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex: 0 1 auto;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(5px) !important;
}

.splashScreen.reactReady .logo {
    animation: logo 900ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.splashScreen.reactReady .loadingBar {
    animation: loadingBar 450ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
    animation-delay: 450ms;
}

.inner {
    position: relative;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    height: 100%;
    max-height: 200px;
    max-width: 600px;
}

.logo {
    color: white;
    font-size: 4rem;
    text-align: center;
    transform: translate3d(0, 0, 0);
    position: absolute;
    z-index: 4030;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    max-height: 180px;
    width: 100%;
    max-width: 180px;
    margin: auto;
}

.logo img {
    width: auto;
    height: auto;
    display: inline;
}

.loadingBar {
    position: relative;
    z-index: 4010;
    width: 600px;
    height: 5px;
    background: rgba(255, 255, 255, 0.128);
    border-radius: 2px;
    overflow: hidden;
    opacity: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

@media (max-width: 700px) {
    .loadingBar {
        width: 300px;
    }
}

.bar {
    position: absolute;
    display: block;
    z-index: 4020;
    top: 0;
    left: 0;
    height: 5px;
    width: auto;
    min-width: 100px;
    background: #54ccff;
    border-radius: 0;
    animation: barAnimation 2.7s cubic-bezier(0.74, 0.23, 0.32, 0.82) infinite;
}

@keyframes logo {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(0, -150px, 0);
    }
}

@keyframes loadingBar {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes barAnimation {
    0% {
        transform: translateX(-150px) scaleX(1);
    }

    63% {
        transform: translateX(250px) scaleX(2.2);
    }

    100% {
        transform: translateX(625px) scaleX(1);
    }
}