.floating-wpp {
  position: fixed;
  bottom: 64px;
  left: 15px;
  font-size: 14px;
  z-index: 1000;
  transition: bottom 0.2s;
}
.floating-wpp-label {
  position: fixed;
  bottom: 36px;
  right: 15px;
  font-size: 14px;
  z-index: 1000;
  transition: bottom 0.2s;
  color: black;
}

.floating-wpp .floating-wpp-button {
  width: 56px;
  height: 56px;
  background-color: #128c7e;
  background-image: url(whatsapp.svg);
  background-position: center;
  background-size: 180%;
  border-radius: 50%;
  box-shadow: 1px 1px 4px rgba(60, 60, 60, 0.4);
  transition: box-shadow 0.2s;
  cursor: pointer;
  animation: wpp-pulse 2.6s ease-in-out infinite;
}
.floating-wpp:hover {
  bottom: 64px;
}
.floating-wpp:hover .floating-wpp-button {
  box-shadow: 1px 2px 8px rgba(60, 60, 60, 0.4);
}
.floating-wpp .floating-wpp-popup {
  border-radius: 6px;
  background-color: #e5ddd5;
  position: absolute;
  overflow: hidden;
  padding: 0;
  box-shadow: 1px 2px 8px rgba(60, 60, 60, 0.25);
  width: 0;
  height: 0;
  bottom: 82px;
  transition: width 0.2s, height 0.2s, padding 0.2s;
  transform-origin: bottom;
}
.floating-wpp .floating-wpp-popup.active {
  padding: 0 12px 12px 12px;
  width: 360px;
  height: auto;
}
.floating-wpp .floating-wpp-popup .floating-wpp-message {
  background-color: white;
  padding: 8px;
  border-radius: 0 5px 5px 5px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: opacity 0.2s;
}
.floating-wpp .floating-wpp-popup.active .floating-wpp-message {
  opacity: 1;
  transition-delay: 0.2s;
}
.floating-wpp .floating-wpp-popup .floating-wpp-head {
  text-align: right;
  color: white;
  margin: 0 -15px 10px -15px;
  padding: 6px 12px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.floating-wpp .floating-wpp-input-message {
  background-color: white;
  margin: 10px -15px -15px -15px;
  padding: 0 15px;
  display: flex;
  align-items: center;
}
.floating-wpp .floating-wpp-input-message textarea {
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: none;
  padding: 8px;
  margin: 10px 0;
  width: 100%;
  max-width: 100%;
  font-family: inherit;
  font-size: inherit;
  resize: none;
}
.floating-wpp .floating-wpp-btn-send {
  margin-left: 12px;
  font-size: 0;
  cursor: pointer;
}

@keyframes wpp-breathe {
  0% {
    transform: scale(1);
    box-shadow: 0 0 4px rgba(18, 140, 126, 0.4);
  }
  50% {
    transform: scale(1.07);
    box-shadow: 0 0 12px rgba(18, 140, 126, 0.55);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 4px rgba(18, 140, 126, 0.4);
  }
}

@keyframes wpp-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(18, 140, 126, 0.4);
  }
  50% {
    transform: scale(1.12);
    box-shadow: 0 0 16px rgba(18, 140, 126, 0.65);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(18, 140, 126, 0.4);
  }
}
