/*
<div id="swg">
	<div id="swg_1" class="swg"></div>
	<div id="swg_2" class="swg"></div>
	<div id="swg_3" class="swg"></div>
	<div id="swg_4" class="swg"></div>
	<div id="swg_5" class="swg"></div>
	<div id="swg_6" class="swg"></div>
	<div id="swg_7" class="swg"></div>
	<div id="swg_8" class="swg"></div>
</div>
 */

#swg{
    position:relative;
    width:330px;
    height:40px;
    margin:auto;
}

.swg{
    position:absolute;
    top:0;
    background-color:rgb(55,103,171);
    width:40px;
    height:40px;
    animation-name:bounce_swg;
    -o-animation-name:bounce_swg;
    -ms-animation-name:bounce_swg;
    -webkit-animation-name:bounce_swg;
    -moz-animation-name:bounce_swg;
    animation-duration:0.775s;
    -o-animation-duration:0.775s;
    -ms-animation-duration:0.775s;
    -webkit-animation-duration:0.775s;
    -moz-animation-duration:0.775s;
    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;
}

#swg_1{
    left:0;
    animation-delay:0.316s;
    -o-animation-delay:0.316s;
    -ms-animation-delay:0.316s;
    -webkit-animation-delay:0.316s;
    -moz-animation-delay:0.316s;
}

#swg_2{
    left:41px;
    animation-delay:0.3925s;
    -o-animation-delay:0.3925s;
    -ms-animation-delay:0.3925s;
    -webkit-animation-delay:0.3925s;
    -moz-animation-delay:0.3925s;
}

#swg_3{
    left:83px;
    animation-delay:0.469s;
    -o-animation-delay:0.469s;
    -ms-animation-delay:0.469s;
    -webkit-animation-delay:0.469s;
    -moz-animation-delay:0.469s;
}

#swg_4{
    left:124px;
    animation-delay:0.5455s;
    -o-animation-delay:0.5455s;
    -ms-animation-delay:0.5455s;
    -webkit-animation-delay:0.5455s;
    -moz-animation-delay:0.5455s;
}

#swg_5{
    left:165px;
    animation-delay:0.622s;
    -o-animation-delay:0.622s;
    -ms-animation-delay:0.622s;
    -webkit-animation-delay:0.622s;
    -moz-animation-delay:0.622s;
}

#swg_6{
    left:206px;
    animation-delay:0.6985s;
    -o-animation-delay:0.6985s;
    -ms-animation-delay:0.6985s;
    -webkit-animation-delay:0.6985s;
    -moz-animation-delay:0.6985s;
}

#swg_7{
    left:248px;
    animation-delay:0.775s;
    -o-animation-delay:0.775s;
    -ms-animation-delay:0.775s;
    -webkit-animation-delay:0.775s;
    -moz-animation-delay:0.775s;
}

#swg_8{
    left:289px;
    animation-delay:0.8615s;
    -o-animation-delay:0.8615s;
    -ms-animation-delay:0.8615s;
    -webkit-animation-delay:0.8615s;
    -moz-animation-delay:0.8615s;
}



@keyframes bounce_swg{
    0%{
        background-color:rgb(55,103,171);
    }

    100%{
        background-color:rgb(255,255,255);
    }
}

@-o-keyframes bounce_swg{
    0%{
        background-color:rgb(55,103,171);
    }

    100%{
        background-color:rgb(255,255,255);
    }
}

@-ms-keyframes bounce_swg{
    0%{
        background-color:rgb(55,103,171);
    }

    100%{
        background-color:rgb(255,255,255);
    }
}

@-webkit-keyframes bounce_swg{
    0%{
        background-color:rgb(55,103,171);
    }

    100%{
        background-color:rgb(255,255,255);
    }
}

@-moz-keyframes bounce_swg{
    0%{
        background-color:rgb(55,103,171);
    }

    100%{
        background-color:rgb(255,255,255);
    }
}