/* CSS Document */

/*boton whatsapp*/
#whatsapp-flotante{
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    border-radius: 100px;
    width: fit-content;
    overflow: hidden;
    z-index:99;
}
#whatsapp-flotante img{
    height: 80px;
    width: 80px;
}
/*boton whatsapp responsive*/
@media(max-width:768px){
	#whatsapp-flotante img{
		transform:scale(0.75);
	}
	#whatsapp-flotante{
    	bottom: 10px;
		right: 10px;
	}
}