.chat-client-whatsapp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px 12px 30px;
  background-color: #00BFA5;
  cursor: pointer;
  animation: pulseWpp 1.3s infinite;

  position: fixed;
  width: 235px;
  bottom: 0;
  right: 65;
  z-index: 999;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  transition: all ease-in-out 0.5s;
}

.chat-client-whatsapp span {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}

@-webkit-keyframes pulseWpp {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 191, 165, 1);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(0, 191, 165, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 191, 165, 0);
  }
}


@media (max-width: 599px) {
  .chat-client-whatsapp {
    width: 90%;
    animation: none;
    transform: translateX(-6%);
    right: 0;
    bottom: 0;
  }
}