<style type="text/css">
.pulse {
fill-opacity: 0;
transform-origin: center;
animation-duration: 2s;
animation-name: pulse;
animation-iteration-count: infinite;
animation-timing-function : cubic-bezier(.17,.67,.83,.67)
}
@keyframes pulse {
from {
stroke-width: 4px;
stroke-opacity: 1;
transform: scale(0.3);
}
to {
stroke-width: 0;
stroke-opacity: 0;
transform: scale(2);
}
}
</style>
`