.whatsapp_flutuante {
    box-sizing: border-box;
    border-radius: 50%;
    color: white;
    width: 60px;
    height: 60px;
    position: fixed;
    right: 0;
    bottom: 0;
    margin-bottom: 50px;
    margin-right: 10px;
    text-decoration: none;
    animation: shake_whatsapp_flutuante 10s infinite;
    
}

.whatsapp_flutuante:hover {
    box-shadow: 0 0 8px rgba(163, 163, 163, 0.781);
}

.whatsapp_flutuante img {
    box-sizing: border-box;
    width: 100%;
    height: auto;
}

@keyframes shake_whatsapp_flutuante {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    1% { transform: translate(-1px, -2px) rotate(-1deg); }
    1.5% { transform: translate(-3px, 0px) rotate(1deg); }
    2.5% { transform: translate(4px, 3px) rotate(0deg); }
    3% { transform: translate(2px, -2px) rotate(1deg); }
    3.5% { transform: translate(-1px, 2px) rotate(-1deg); }
    4% { transform: translate(-3px, 1px) rotate(0deg); }
    4.5% { transform: translate(3px, 1px) rotate(-1deg); }
    5% { transform: translate(-2px, -2px) rotate(1deg); }
    5.5% { transform: translate(1px, 2px) rotate(0deg); }
    6% { transform: translate(1px, -2px) rotate(-1deg); }
  }
  
@media(max-width: 658px) {

	.whatsapp_flutuante {
		width: 40px;
		height: 40px;
	}
}