.wa-float{
  position: fixed;
  z-index: 2147483000;   display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 14px;
  border-radius: 999px;

  background: #25D366;            color: #0b0e13;
  text-decoration: none;

  box-shadow: 0 8px 28px rgba(0,0,0,.35);
  transition: transform .15s ease, box-shadow .15s ease, opacity .2s ease;
  will-change: transform;
}

.wa-float:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 38px rgba(0,0,0,.45);
}

.wa-float__icon{
  display: grid;
  place-items: center;
  width: 28px; height: 28px;
  color: #0b0e13;
}

.wa-float__label{
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  color: #0b0e13;
  white-space: nowrap;
}

@media (max-width: 768px){
  .wa-float{
    padding: 11px 12px;
    gap: 8px;
  }
  .wa-float__label{
    font-size: 13px;
  }
}

.wa-float--desktop-only{
  }
@media (max-width: 768px){
  .wa-float--desktop-only{ display: none !important; }
}
