#splashScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 991;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 1;
    visibility: visible;
    transition: all .25s;
}

#splashScreen.loaded {
    opacity: 0;
    visibility: hidden;
}

#splashScreen img {
    margin-bottom: 16px;
}

.loader-circle {
    width: 24px;
    height: 24px;
    border: 3px solid transparent;
    border-right-color: #1e569b;
    border-top-color: #3a74bb;
    border-radius: 50%;
    animation: rotatingLoader .75s linear infinite;
}

@keyframes rotatingLoader {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}