/*.spinner {*/
/*margin: 100px auto 0;*/
/*width: 70px;*/
/*text-align: center;*/
/*}*/

.spinner > div {
    width: 14px;
    height: 14px;
    background-color: #009DE0;

    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 2s infinite ease-in-out both;
    animation: sk-bouncedelay 2s infinite ease-in-out both;
}

.cssload-wrapper {
    background-color: #DCECF0;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
}

.cssload-loader {
    position: absolute;
    left: calc(50% - 34px);
    top: calc(50% + 15px);
    width: 100px;
    height: 112px;
    border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    perspective: 1400px;
    background-color: #DCECF0
}

.cssload-img {
    position: absolute;
    left: calc(50% - 36px);
    top: calc(50% - 20px);
}

.spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
    0%, 66%, 100% {
        -webkit-transform: scale(0.4);
    }
    33% {
        -webkit-transform: scale(1.2)
    }
}

@keyframes sk-bouncedelay {
    0%, 66%, 100% {
        -webkit-transform: scale(0.4);
        transform: scale(0.4);
        background-color: #009DE0;
        border: 2px solid #009DE0;
        border-radius: 10px;
    }
    33% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        background-color: #DCECF0;
        border: 2px solid #009DE0;
        border-radius: 10px;
        opacity: 0.3;
    }
}