.whatsapp-floating  {
  position: fixed;
  bottom: 65px;
  right: 30px;
  cursor: pointer;
  z-index: 99;
  color: #fff;
  background: rgb(18, 140, 126);
  width: 55px;
  height: 55px;
  text-align: center;
  line-height: 65px;
  padding: 0;
  margin: 0;
  border-radius: 100%;
}
.whatsapp-floating i {
  font-size: 30px;
}
.whatsapp-popup {
  position: fixed;
  bottom: 50px;
  right: 20px;
  z-index: 99;
  transition: bottom .2s;
}
.whatsapp-popup .floating-wpp-button {
  position: relative;
  border-radius: 50%;
  box-shadow: 1px 1px 4px rgba(60,60,60,.4);
  transition: box-shadow .2s;
  cursor: pointer;
  overflow: hidden;
  background: #25D366 !important;
}
.whatsapp-popup .floating-wpp-button img, .whatsapp-popup .floating-wpp-button svg {
  position: absolute;
  width: 85%;
  height: auto;
  object-fit: cover;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%,-50%,0);
}
.whatsapp-popup:hover {
  bottom: 55px;
}
.whatsapp-popup:hover .floating-wpp-button {
  box-shadow: 1px 2px 8px rgba(60,60,60,.4);
}
.whatsapp-popup .floating-wpp-popup {
  border-radius: 6px;
  background-color: #E5DDD5;
  position: absolute;
  overflow: hidden;
  padding: 0;
  box-shadow: 1px 2px 8px rgba(60,60,60,.25);
  width: 0;
  height: 0;
  bottom: 0;
  opacity: 0;
  transition: bottom .1s ease-out,opacity .2s ease-out;
  transform-origin: bottom;
}
.whatsapp-popup .floating-wpp-popup.active {
  padding: 0 12px 12px;
  width: 260px;
  height: auto;
  bottom: 82px;
  right: 0;
  opacity: 1;
}
.whatsapp-popup .floating-wpp-popup .floating-wpp-message {
  background-color: #fff;
  padding: 8px;
  border-radius: 0 5px 5px;
  box-shadow: 1px 1px 1px rgba(0,0,0,.15);
  opacity: 0;
  transition: opacity .2s;
}
.whatsapp-popup .floating-wpp-popup.active .floating-wpp-message {
  opacity: 1;
  transition-delay: .2s;
}
.whatsapp-popup .floating-wpp-popup .floating-wpp-head  {
  text-align: right;
  color: #fff;
  margin: 0 -15px 10px;
  padding: 6px 12px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.whatsapp-popup .floating-wpp-input-message {
  background-color: #fff;
  margin: 10px -15px -15px;
  padding: 0 15px;
  display: flex;
  align-items: center;
}
.whatsapp-popup .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;
}
.whatsapp-popup .floating-wpp-btn-send {
  margin-left: 12px;
  font-size: 0;
  cursor: pointer;
}
