html,
body {
    background: #fff;
}
a{
    text-decoration: none;
}
.init-loading {
    width: 98%;
    height: 20px;
    position: absolute;
    top: 40%;
    text-align: center;
    z-index: 9999;
    font-size: 12px;
    line-height: 20px;
}

.loading span {
    display: inline-block;
    vertical-align: middle;
    width: 10px;
    height: 10px;
    margin: 6px;
    background: #007db6;
    border-radius: 5px;
    -webkit-animation: loading 1s infinite alternate;
    animation: loading 1s infinite alternate;
}

/*
* Dots Colors
* Smarter targeting vs nth-of-type?
*/
.loading span:nth-of-type(2) {
    background: #008fb2;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.loading span:nth-of-type(3) {
    background: #009b9e;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.loading span:nth-of-type(4) {
    background: #00a77d;
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.loading span:nth-of-type(5) {
    background: #00b247;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.loading span:nth-of-type(6) {
    background: #5ab027;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.loading span:nth-of-type(7) {
    background: #a0b61e;
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
}

/*
* Animation keyframes
* Use transition opacity instead of keyframes?
*/
@-webkit-keyframes loading {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes loading {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.loading-text {
    color: #f0a70a;
    margin: 0;
    font: 14px verdana;
    text-transform: uppercase;
    letter-spacing: 2px;
}