/* wp-content/plugins/navel-whatsapp-float/assets/style.css */

.nwf-whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 60px;
  z-index: 9999;
  display: block;
  animation: nwf-bounce 2s ease-in-out infinite;
}

.nwf-whatsapp-float img {
  width: 60px;
  height: 60px;
}

/* Keyframes de la animación */
@keyframes nwf-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
