
.pulse {
    position: relative;
    background: #89A122;
    margin-top: 10px;
}

.pulse span {
    position:absolute;
    left: 0;
    top: 0;
    width:100%;
    height:100%;
    background: none;
    border-radius: inherit;
    opacity: .8;
    border: 1px solid #89A122;;
    animation: pulseAnimate 4s ease-out infinite; 
    animation-delay: calc(1s * var(--i));
}

@keyframes pulseAnimate {
    100% {
        opacity: 0;
        transform: scale(2);
    }
}
    */