/*WhatsApp Button==========================================*/
.whats-bnt{
    position: fixed;
    bottom: 10px; 
    z-index: 9999;
}

.whats-bnt.right{
  right:20px;
}
.whats-bnt.left{
  left:20px;
}

.whats-bnt.animate-jump{
  animation: lp-jump 2s infinite;
}
.whats-bnt.animate-zoom{
  animation: lp-zoom 2s infinite;
}

@keyframes lp-jump {
  0% {bottom: 10px;}
  50% {bottom: 20px;}
  100% {bottom: 10px;}
}   

@keyframes lp-zoom {
  0% {transform: scale(0.9);}
  50% {transform: scale(1.1)}
  100% {transform: scale(0.9)}
}   

.whats-bnt a img{
    width: var(--button-size);   
}
/*End - WhatsApp Button ===================================*/