.pulse2 {
    display: block;
    position: absolute;
    top: 7px;
    right: 8px;
    width: 20px;
    height: 20px;
    font-size: 30px;
    border-radius: 76%;
    background: #22c03c;
}

.pulse2:before {
    content: '';
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    position: absolute;
    border-radius: 50%;
    background: rgba(34, 192, 60, 0.6);
    cursor: pointer;
    box-shadow: 0 0 0 rgb(34 192 60 / 90%);
    animation: pulse 1s linear infinite;
}