/* WhatsApp Icon */

a.show-wp-button {
    background: #27ae60;
    font-size: 30px;
    line-height: 48px;
    width: 60px;
    height: 60px;
    color: #fff;
    text-align: center;
    display: block;
    position: fixed;
    z-index: 9999;
    margin: 0 auto;
    left: 25px;
    bottom: 25px;
    border-radius: 100%;
    border: solid 5px #27ae60;
    animation: showwpbutton 2s ease infinite;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
}

a.show-wp-button .fa {
    color: #fff;
}

.show-wp-button span.text {
    background: #444;
    border-radius: 4px;
    border: 1px solid #444;
    color: #f1f1f1;
    line-height: 30px;
    font-size: 12px;
    font-weight: 500;
    width: 120px;
    left: 70px;
    top: 10px;
    position: absolute;
}

@keyframes showwpbutton {
    0% {
        transform:scale(1)
    }
    15% {
        box-shadow:0 0 0 3px rgba(255,
        255,
        255,
        .4)
    }
    25% {
        box-shadow:0 0 0 7px rgba(49,
        179,
        103,
        .4),
        0 0 0 20px rgba(255,
        255,
        255,
        .9)
    }
    25% {
        box-shadow:0 0 0 14px rgba(39,
        174,
        96,
        .4),
        0 0 0 30px rgba(205,
        251,
        224,
        .53)
    }
    100% {}
}

@media only screen and (max-width: 767px){
    .show-wp-button span.text{
        display: none;
    }
}