.animation {
animation-name: roundScale;
animation-duration: 1.3s;
animation-iteration-count: infinite;
top: 0px!important;
@keyframes roundScale {
50% {
transform: scale(1.3);
-webkit-transform: scale(1.3);
-moz-transform: scale(1.3);
-o-transform: scale(1.3);
-ms-transform: scale(1.3);
}
}
}