/* Add custom CSS styles below */ 
.wa-s-n{
   animation: whatsapp-pulse 1.5s ease-in-out infinite;
  transform-origin: center;
}
 .wa-s-n::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.65);
  animation: whatsapp-pulse 1.5s ease-out infinite;
  pointer-events: none;
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.65);
  }

  70%,
  100% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
}