@media (min-width: 1025px) { .wapp-float { display: none !important; } }

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
  70% { transform: scale(1.12); box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.wapp-float {
  animation: pulse 2.2s infinite;
  position: fixed;
  bottom: 80px;
  right: 18px;
  z-index: 99999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display:flex;
  justify-content:center;
  align-items:center;
}
