body sphere-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;
    z-index: 999999;
    pointer-events: none;
    opacity: 1;
    visibility: visible;
    transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

body sphere-splash-screen img {
    width: 120px;
    max-width: 120px;
}

body sphere-splash-screen .img {
    background-image: url('/assets/img/icons/Consort_RGB_Assets_Full Colour Icon.svg');
    background-repeat: no-repeat;
    background-position: center center;    
    background-size: 200px 200px;
    width: 200px;
    max-width: 200px;
    height: 100px;
    max-height: 100px;
}

.spinner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    width: 56px;
}

.spinner > div {
    width: 12px;
    height: 12px;
    background-color: #5798d4;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sphere-bouncedelay 1s infinite ease-in-out both;
    animation: sphere-bouncedelay 1s infinite ease-in-out both;
}

.spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes sphere-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0)
    }
    40% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sphere-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}

body:not(.sphere-splash-screen-hidden) {
    overflow: hidden;
}

body.sphere-splash-screen-hidden sphere-splash-screen {
    visibility: hidden;
    opacity: 0;
}
