Try this css
@-moz-keyframes Ani {
0% {
box-shadow: 0 0 0 rgba(255,120,0,0) !important;
border: 1px solid rgba(255,120,0,0) !important;
-webkit-transform: scale(0) !important;
transform: scale(0) !important;
}
70% {
box-shadow: 0 0 50px #ff7800 !important;
border: 1px solid #ff7800 !important;
-webkit-transform: scale(1) !important;
transform: scale(1) !important
}
100% {
box-shadow: 0 0 60px rgba(255,120,0,0);
border: 0 solid rgba(255,120,0,0);
-webkit-transform: scale(1.5);
transform: scale(1.5)
}
}
@-webkit-keyframes Ani {
0% {
box-shadow: 0 0 0 rgba(255,120,0,0) !important;
border: 1px solid rgba(255,120,0,0) !important;
-webkit-transform: scale(0) !important;
transform: scale(0) !important
}
70% {
box-shadow: 0 0 50px #ff7800 !important;
border: 1px solid #ff7800 !important;
-webkit-transform: scale(1) !important;
transform: scale(1) !important
}
100% {
box-shadow: 0 0 60px rgba(255,120,0,0);
border: 0 solid rgba(255,120,0,0);
-webkit-transform: scale(1.5);
transform: scale(1.5)
}
}
@keyframes Ani {
0% {
box-shadow: 0 0 0 rgba(255,120,0,0) !important;
border: 1px solid rgba(255,120,0,0) !important;
-webkit-transform: scale(0) !important;
transform: scale(0) !important
}
70% {
box-shadow: 0 0 50px #ff7800 !important;
border: 1px solid #ff7800 !important;
-webkit-transform: scale(1) !important;
transform: scale(1) !important
}
100% {
box-shadow: 0 0 60px rgba(255,120,0,0);
border: 0 solid rgba(255,120,0,0);
-webkit-transform: scale(1.5);
transform: scale(1.5)
}
}