.whiteBackground {
    background: white !important;
}

.loading-background {
    background: #F2F5FA !important;
}
#loading-container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
#loading-cloud {
    z-index: 2;
    position: absolute;
    left: calc(50% - 105px);
    top: calc(50% - 75px);
}
#loading-spinner {
    z-index: 3;
    position: absolute;
    width: 48px;
    left: calc(50% - 24px);
    opacity: 1;
    animation: spinning 800ms linear infinite;
    top: calc(50% - 24px);
}
#spinner {
    animation: coloring 800ms linear infinite;
}
@keyframes spinning {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@keyframes coloring {
    0% {
        fill: #005FE8;
    }
    25% {
        fill: #FFCD08;
    }
    50% {
        fill: #7D00CE;
    }
    75% {
        fill: #003F45;
    }
    100% {
        fill: #005FE8;
    }
}
