.page-spinner-bar {
    position: fixed;
    z-index: 10060;
    width: 100px;
    top: 50%;
    /*left: 50%;*/
    margin-left: -55px;
    text-align: center;
    vertical-align:middle;
}

.page-spinner-bar>div {
    margin: 0 5px;
    width: 18px;
    height: 18px;
    display: inline-block;
    -webkit-animation: bounceDelay 1.4s infinite ease-in-out;
    animation: bounceDelay 1.4s infinite ease-in-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.page-spinner-bar>div {
    background: #31c7b2;
    border-radius: 100%!important;
}

.page-spinner-bar .bounce1 {
    -webkit-animation-delay: -.32s;
    animation-delay: -.32s;
    /*background-color: #6fa7d7;*/
    left: 47%;
}

.page-spinner-bar .bounce2 {
    -webkit-animation-delay: -.16s;
    animation-delay: -.16s;
     left: 49%;
}

@-webkit-keyframes bounceDelay {
    0%,100%,80% {
        -webkit-transform: scale(0)
    }

    40% {
        -webkit-transform: scale(1)
    }
}

@keyframes bounceDelay {
    0%,100%,80% {
        transform: scale(0);
        -webkit-transform: scale(0)
    }

    40% {
        transform: scale(1);
        -webkit-transform: scale(1)
    }
} 