﻿/*whatsapp*/

.wpcontainer {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 100;
}

.pulse i {
    color: #fff;
    font-size: 2.4rem;
}

.pulse {
    background: #44bd32;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    
}
.pulse a{
    z-index:100;
}

    .pulse::before {
        content: "";
        position: absolute;
        width: calc(100% + 40px);
        height: calc(100% + 40px);
        border: 2px solid #44bd32;
        border-radius: 50%;
        animation: animate 1.5s linear infinite;
    }

    .pulse::after {
        content: "";
        position: absolute;
        width: calc(100% + 40px);
        height: calc(100% + 40px);
        border: 2px solid #44bd32;
        border-radius: 50%;
        animation: animate 1.5s linear infinite;
        animation-delay: 0.4s;
    }

@keyframes animate {
    0% {
        transform: scale(0.5);
        opacity: 0
    }

    50% {
        transform: scale(1);
        opacity: 1
    }

    100% {
        transform: scale(1.4);
        opacity: 0
    }
}

@media(max-width:767px) {
    .wpcontainer {
        position: fixed;
        bottom: 5px;
        right: 5px;
        z-index: 100;
    }
   
}
