.indexLoadingDiv {
    overflow: hidden;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    /*opacity: 0.4;*/
    z-index: 1000;
    text-align:center;
    height:100%;
    /*color: #D5D6E2;*/
    color: #333333;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    /*background: #494A5F;*/
    background: #f5f5f9;
}
.indexLoadingDiv .indexLoadingSpan {
    font-size: 30px;
    white-space: nowrap;
    filter: blur(120px);
    width: 100%;
    height:100%;
    z-index: -1;
}
.indexLoadingDiv .indexLoadingPara {
    width: 100%;
    position: absolute; top: 45%;
    font-size: 20px;
}

.indexLoading h2 {
    color: #333333;
    margin: 0;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.indexLoading span {
    display: inline-block;
    vertical-align: middle;
    width: .6em;
    height: .6em;
    margin: .38em;
    background: #007DB6;
    border-radius: .6em;
    animation: loading 1s infinite alternate;
}

/*
 * Dots Colors
 * Smarter targeting vs nth-of-type?
 */
.indexLoading span:nth-of-type(2) {
    background: #008FB2;
    animation-delay: 0.2s;
}
.indexLoading span:nth-of-type(3) {
    background: #009B9E;
    animation-delay: 0.4s;
}
.indexLoading span:nth-of-type(4) {
    background: #00A77D;
    animation-delay: 0.6s;
}
.indexLoading span:nth-of-type(5) {
    background: #00B247;
    animation-delay: 0.8s;
}
.indexLoading span:nth-of-type(6) {
    background: #5AB027;
    animation-delay: 1.0s;
}
.indexLoading span:nth-of-type(7) {
    background: #A0B61E;
    animation-delay: 1.2s;
}

/*
 * Animation keyframes
 * Use transition opacity instead of keyframes?
 */
@keyframes loading {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}