#link_whatsapp{
    position: fixed;
    bottom: 10px;
    right: 30px;
    display: block;
    width: 80px;
    height: 80px;
    padding: 0px;
    text-align: center;
    border-radius: 3px 3px 0px 0px;
    background: url(../media/whatsapp.png) no-repeat center center;
    background-size: cover;
    /* box-shadow: 0px 0px 3px rgba(0,0,0,.5); */
    z-index: 9999;
    overflow: visible;
}

@-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);}
    40% {-webkit-transform: translateY(-30px) }
    60% {-webkit-transform: translateY(-20px);}
} 
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-30px);}
    60% {transform: translateY(-20px);}
} 


.bounce {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-name: bounce;
    animation-name: bounce;
}


#link_whatsapp .msj{
	position: absolute;
	top: -47px;
	left: -23px;
	background: white;
	display: none;
	font-size: 12px;
	color: #000;
	width: 112px;
	height: auto;
	border-radius: 3px;
	box-shadow: 0 0 2px rgba(0,0,0,0.5);
	border: 1px solid #000;
	padding: 8px 5px;
	line-height: 14px;
}

#link_whatsapp .msj.active{
	display: block;
}

#link_whatsapp .bubblecount{
	position: absolute;
	top: 15px;
	right: -2px;
	display: none;
	background: red;
	font-size: 12px;
	line-height: 10px;
	color: #fff;
	width: 10px;
	height: 10px;
	border-radius: 20px;
	box-shadow: 0 0 2px rgba(0,0,0,0.5);
	padding: 5px;
}

#link_whatsapp .bubblecount.active{
	display: block;
}
