.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 16px 0 10px;
  border-radius: 24px;
  background: #25d366;
  color: #fff !important;
  font: 600 13px/1.2 Arial, Helvetica, sans-serif;
  text-decoration: none !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .22);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus {
  background: #1ebe5d;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .28);
}

.whatsapp-float__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  font-weight: 700;
}

.whatsapp-float__text {
  white-space: nowrap;
}

@media (max-width: 520px) {
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 44px;
    padding-right: 13px;
  }

  .whatsapp-float__text {
    font-size: 12px;
  }
}
