/* whatsapp style */
@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.whatsapp_btn {
    position: fixed;
    bottom: 9px;
    z-index: 100;
    left: 7px;
}

@keyframes pulsing {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(66, 219, 135, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(66, 219, 135, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(66, 219, 135, 0);
    }
}

.whatsapp_icon {
    background-color: #42db87;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size: 30px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(0);
    animation: pulse 1.25s infinite;
    box-shadow: 0 0 0 0 #42db87;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(.66, 0, 0, 1);
    font-weight: 400;
    font-family: sans-serif;
    text-decoration: none !important;
    transition: all .3s ease-in-out;
    cursor: pointer;
}