#wckWhatsapp{
    position:fixed;
    width:60px;
    height:60px;
    right:20px;
    bottom:15px;
    text-align:center;
    z-index:99;
    background:#8BC34A;
    background:#1A9337;
    border-radius:50%;

    /* CÓDIGO PARA CHAMAR A ANIMAÇÃO * /
    -webkit-animation: wkrWhatsappAnime 6s linear alternate 6;
    -moz-animation: wkrWhatsappAnime 6.0s linear infinite;
    -ms-animation: wkrWhatsappAnime 6.0s linear infinite;
    -o-animation: wkrWhatsappAnime 6.0s linear infinite;
    animation: wkrWhatsappAnime 6.0s linear infinite;
    */
}

#wckWhatsapp a{
    position:absolute;
    width:100%;
    height:100%;
    top:0px;
    left:0px;
    line-height:60px;
    text-align:center;
    color:#FFF;
    font-size:25px;
}

/* KEY FRAMES PARA FAZER OS GIROS */
@-webkit-keyframes wkrWhatsappAnime {
	0% { bottom:15px;}
	50% { bottom:30px;}
	100% { bottom:15px;}
}
@-moz-keyframes wkrWhatsappAnime {
	0% { bottom:15px;}
	50% { bottom:30px;}
	100% { bottom:15px;}
}
@-ms-keyframes wkrWhatsappAnime {
	0% { bottom:15px;}
	50% { bottom:30px;}
	100% { bottom:15px;}
}
@-o-keyframes wkrWhatsappAnime {
	0% { bottom:15px;}
	50% { bottom:30px;}
	100% { bottom:15px;}
}
@keyframes wkrWhatsappAnime {
	0% { bottom:15px;}
	50% { bottom:30px;}
	100% { bottom:15px;}
}