.pulse {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #5b6be3;
    border-radius: 50%;
    border: none;
    cursor: pointer;
}

.pulse-1::after,
.pulse-1::before {
    position: absolute;
    content: '';
    border-radius: 50%;
    border: 2px solid #fff;
    top: -20px;
    bottom: -20px;
    left: -20px;
    right: -20px;
    opacity: 0;
}

.pulse-1::after {
    animation-delay: 0.5s;
}

.pulse-2 svg {
    transition: transform 0.5s;
    animation: rattle 1.5s linear infinite;
}

@keyframes animate {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}


@keyframes rattle {
    0% {
        transform: rotate(0deg);
    }

    20% {
        transform: rotate(-10deg);
    }

    40% {
        transform: rotate(0deg);
    }

    60% {
        transform: rotate(10deg);
    }

    60% {
        transform: rotate(20deg);
    }

    100% {
        transform: rotate(10deg);
    }
}

.pulse-1 {
    background-color: #333333;
    position: fixed;
    bottom: 30px;
    left: 30px;
	z-index:1000;
}

.pulse-2 {
    background-color: #25d366;
    animation: pulse-effect-2 2s linear infinite;
    position: fixed;
    bottom: 30px;
    right: 30px;
	z-index:1000;
}


@keyframes pulse-effect {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 109, 74, 0.7);
    }

    40% {
        box-shadow: 0 0 0 50px rgba(255, 109, 74, 0), 0 0 0 0 rgba(255, 109, 74, 0.7);
    }

    80% {
        box-shadow: 0 0 0 50px rgba(255, 109, 74, 0), 0 0 0 30px rgba(255, 109, 74, 0);
    }


    100% {
        box-shadow: 0px 0px 2px 30px rgba(255, 109, 74, 0), 0 0 0 30px rgba(255, 109, 74, 0);
    }
}

@keyframes pulse-effect-2 {
    0% {
        box-shadow: 0 0 0 0 #25d366;
    }

    40% {
        box-shadow: 0 0 0 50px rgba(255, 109, 74, 0), 0 0 0 0 #25d366;
    }

    80% {
        box-shadow: 0 0 0 50px rgba(255, 109, 74, 0), 0 0 0 30px rgba(255, 109, 74, 0);
    }


    100% {
        box-shadow: 0px 0px 2px 30px rgba(255, 109, 74, 0), 0 0 0 30px rgba(255, 109, 74, 0);
    }
}