.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 80px;
  right: 30px;
  background-color: #25d366;
  color: #fff !important;
  border-radius: 50px;
  text-align: center;
  font-size: 40px;
  box-shadow: 2px 2px 3px transparent;
  z-index: 100;
  animation: pulse 1.5s ease-out infinite, wiggle 1.5s infinite;
}

.float:hover {
  color: #000;
}

@keyframes wiggle {
  0% { transform: rotate(0deg); }
  80% { transform: rotate(0deg); }
  85% { transform: rotate(10deg); }
  95% { transform: rotate(-10deg); }
  100% { transform: rotate(0deg); }
}

@keyframes pulse {
  0% {
      box-shadow: 0 0 0 0 rgba(37, 211, 101, 0.907);
  }
  80% {
      box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}
