.bgSpinner {
    top: 0;
    width: 100%;
    height: 100%;
    background: #FFF;
    opacity: 0.3;
    position: fixed;
    z-index: 9998;
}

.spinner {
    top: 40%;
    left: 48%;
    width: 70px;
    text-align: center;
    position: fixed;
    z-index: 9999;
}

    .spinner > div {
        width: 18px;
        height: 18px;
        background-color: #153b5d;
        border-radius: 100% !important;
        display: inline-block;
        -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
        animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    }

    .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%, 80%, 100% {
        -webkit-transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1.0);
    }
}

@keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}

#loading-bar .bar {
    -webkit-transition: width 350ms;
    -moz-transition: width 350ms;
    -o-transition: width 350ms;
    transition: width 350ms;
    background: #F00;
    position: fixed;
    z-index: 10002;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    border-bottom-right-radius: 1px;
    border-top-right-radius: 1px;
}

#loading-bar .peg {
    position: absolute;
    width: 70px;
    right: 0;
    top: 0;
    height: 3px;
    opacity: .45;
    -moz-box-shadow: #F00 1px 0 6px 1px;
    -ms-box-shadow: #F00 1px 0 6px 1px;
    -webkit-box-shadow: #F00 1px 0 6px 1px;
    box-shadow: #F00 1px 0 6px 1px;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
}
