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: #000000;
    color: #F9FAFB;
    z-index: 999999;
    pointer-events: none;
    opacity: 1;
    visibility: visible;
    transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1), visibility 400ms linear;
}

body fuse-splash-screen div {
    width: 120px;
    height: 120px;
    margin: auto;
    position: relative;
}

body fuse-splash-screen img {
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    max-width: 120px;
}

body fuse-splash-screen .sector {
    opacity: 0;
    -o-animation: pulseanimation 3s infinite;
    -moz-animation: pulseanimation 3s infinite;
    -webkit-animation: pulseanimation 3s infinite;
    animation: pulseanimation 3s infinite;
}

body fuse-splash-screen .sector.large {
    -o-animation-delay: 800ms;
    -moz-animation-delay: 800ms;
    -webkit-animation-delay: 800ms;
    animation-delay: 800ms;
}

body fuse-splash-screen .sector.medium {
    -o-animation-delay: 400ms;
    -moz-animation-delay: 400ms;
    -webkit-animation-delay: 400ms;
    animation-delay: 400ms;
}

body fuse-splash-screen .sector.small {
    -o-animation-delay: 0ms;
    -moz-animation-delay: 0ms;
    -webkit-animation-delay: 0ms;
    animation-delay: 0ms;
}

@keyframes pulseanimation {
    0% { opacity: 1 }
}

@-o-keyframes pulseanimation {
    0% { opacity: 1 }
}

@-moz-keyframes pulseanimation {
    0% { opacity: 1 }
}

@-webkit-keyframes pulseanimation {
    0% { opacity: 1 }
}

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

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

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    width: 80px;
    margin-left: -40px;
    margin-top: -10px;
}

.loader__dot {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #fff;
    animation: loader-bounce 1.4s ease-in-out 0s infinite both;
}

.loader__dot--first {
    animation-delay: -0.32s;
}

.loader__dot--second {
    animation-delay: -0.16s;
}

@keyframes loader-bounce {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes loader-bounce {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-o-keyframes loader-bounce {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes loader-bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}
