﻿#spinningSquaresG {
    position: relative;
    width: 132px;
    height: 16px;
    margin: auto;
}

.spinningSquaresG {
    position: absolute;
    top: 0;
    background-color: rgb(16,104,163);
    width: 16px;
    height: 16px;
    animation-name: bounce_spinningSquaresG;
    -o-animation-name: bounce_spinningSquaresG;
    -ms-animation-name: bounce_spinningSquaresG;
    -webkit-animation-name: bounce_spinningSquaresG;
    -moz-animation-name: bounce_spinningSquaresG;
    animation-duration: 1.69s;
    -o-animation-duration: 1.69s;
    -ms-animation-duration: 1.69s;
    -webkit-animation-duration: 1.69s;
    -moz-animation-duration: 1.69s;
    animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-direction: normal;
    -o-animation-direction: normal;
    -ms-animation-direction: normal;
    -webkit-animation-direction: normal;
    -moz-animation-direction: normal;
    transform: scale(.3);
    -o-transform: scale(.3);
    -ms-transform: scale(.3);
    -webkit-transform: scale(.3);
    -moz-transform: scale(.3);
}

#spinningSquaresG_1 {
    left: 0;
    animation-delay: 0.68s;
    -o-animation-delay: 0.68s;
    -ms-animation-delay: 0.68s;
    -webkit-animation-delay: 0.68s;
    -moz-animation-delay: 0.68s;
}

#spinningSquaresG_2 {
    left: 16px;
    animation-delay: 0.85s;
    -o-animation-delay: 0.85s;
    -ms-animation-delay: 0.85s;
    -webkit-animation-delay: 0.85s;
    -moz-animation-delay: 0.85s;
}

#spinningSquaresG_3 {
    left: 33px;
    animation-delay: 1.01s;
    -o-animation-delay: 1.01s;
    -ms-animation-delay: 1.01s;
    -webkit-animation-delay: 1.01s;
    -moz-animation-delay: 1.01s;
}

#spinningSquaresG_4 {
    left: 49px;
    animation-delay: 1.18s;
    -o-animation-delay: 1.18s;
    -ms-animation-delay: 1.18s;
    -webkit-animation-delay: 1.18s;
    -moz-animation-delay: 1.18s;
}

#spinningSquaresG_5 {
    left: 66px;
    animation-delay: 1.35s;
    -o-animation-delay: 1.35s;
    -ms-animation-delay: 1.35s;
    -webkit-animation-delay: 1.35s;
    -moz-animation-delay: 1.35s;
}

#spinningSquaresG_6 {
    left: 82px;
    animation-delay: 1.52s;
    -o-animation-delay: 1.52s;
    -ms-animation-delay: 1.52s;
    -webkit-animation-delay: 1.52s;
    -moz-animation-delay: 1.52s;
}

#spinningSquaresG_7 {
    left: 99px;
    animation-delay: 1.69s;
    -o-animation-delay: 1.69s;
    -ms-animation-delay: 1.69s;
    -webkit-animation-delay: 1.69s;
    -moz-animation-delay: 1.69s;
}

#spinningSquaresG_8 {
    left: 115px;
    animation-delay: 1.86s;
    -o-animation-delay: 1.86s;
    -ms-animation-delay: 1.86s;
    -webkit-animation-delay: 1.86s;
    -moz-animation-delay: 1.86s;
}



@keyframes bounce_spinningSquaresG {
    0% {
        transform: scale(1);
        background-color: rgb(255,255,255);
    }

    100% {
        transform: scale(.3) rotate(90deg);
        background-color: rgb(16,104,163);
    }
}

@-o-keyframes bounce_spinningSquaresG {
    0% {
        -o-transform: scale(1);
        background-color: rgb(255,255,255);
    }

    100% {
        -o-transform: scale(.3) rotate(90deg);
        background-color: rgb(16,104,163);
    }
}

@-ms-keyframes bounce_spinningSquaresG {
    0% {
        -ms-transform: scale(1);
        background-color: rgb(255,255,255);
    }

    100% {
        -ms-transform: scale(.3) rotate(90deg);
        background-color: rgb(16,104,163);
    }
}

@-webkit-keyframes bounce_spinningSquaresG {
    0% {
        -webkit-transform: scale(1);
        background-color: rgb(255,255,255);
    }

    100% {
        -webkit-transform: scale(.3) rotate(90deg);
        background-color: rgb(16,104,163);
    }
}

@-moz-keyframes bounce_spinningSquaresG {
    0% {
        -moz-transform: scale(1);
        background-color: rgb(255,255,255);
    }

    100% {
        -moz-transform: scale(.3) rotate(90deg);
        background-color: rgb(16,104,163);
    }
}
