.fixed-wpp {
  position: fixed;
  bottom: 30px;
  left: 30px;
  right: unset;
  font-size: 14px;
  transition: bottom 0.2s;
  display: block;
  z-index: 11000;
}
.fixed-wpp::before {
  position: absolute;
  content: " ";
  z-index: -1;
  top: 0;
  left: 0;
  background-color: rgba(48, 183, 0, 0.5);
  width: 50px;
  height: 50px;
  border-radius: 100%;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
  opacity: 0.6;
  animation: pulse 1.5s ease-out;
  animation-iteration-count: infinite;
}
.fixed-wpp:hover {
  opacity: 0.7;
  transition: all 0.4s ease-in;
}
.fixed-wpp .fixed-wpp-button {
  position: relative;
  border-radius: 50%;
  box-shadow: 1px 1px 4px rgba(60, 60, 60, 0.4);
  transition: box-shadow 0.2s;
  cursor: pointer;
  overflow: hidden;
}
.fixed-wpp .fixed-wpp-button img, .fixed-wpp .fixed-wpp-button svg {
  position: absolute;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  border-radius: 50%;
}
.fixed-wpp:hover {
  bottom: 33px;
}
.fixed-wpp:hover .fixed-wpp-button {
  box-shadow: 1px 2px 8px rgba(60, 60, 60, 0.4);
}
.fixed-wpp .fixed-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: 0;
  opacity: 0;
  transition: bottom 0.1s ease-out, opacity 0.2s ease-out;
  transform-origin: bottom;
}
.fixed-wpp .fixed-wpp-popup.active {
  padding: 0 12px 12px;
  width: 260px;
  height: auto;
  bottom: 82px;
  opacity: 1;
}
.fixed-wpp .fixed-wpp-popup .fixed-wpp-message {
  background-color: #fff;
  padding: 8px;
  border-radius: 0 5px 5px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: opacity 0.2s;
}
.fixed-wpp .fixed-wpp-popup.active .fixed-wpp-message {
  opacity: 1;
  transition-delay: 0.2s;
}
.fixed-wpp .fixed-wpp-popup .fixed-wpp-head {
  text-align: right;
  color: #fff;
  margin: 0 -30px 10px;
  padding: 6px 12px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.fixed-wpp .fixed-wpp-input-message {
  background-color: #fff;
  margin: 10px -30px -30px;
  padding: 0 30px;
  display: flex;
  align-items: center;
}
.fixed-wpp .fixed-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;
}
.fixed-wpp .fixed-wpp-btn-send {
  margin-left: 12px;
  font-size: 0;
  cursor: pointer;
}
