.floating-wpp {
  position: fixed;
!important;
  bottom: 15px;
  left: 15px;
  font-size: 12px;
  transition: bottom 0.2s;
  float: right;
  z-index: 999;
}

.floating-wpp .floating-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;
}

.floating-wpp .floating-wpp-button img,
.floating-wpp .floating-wpp-button svg {
  max-width: 60%;
  max-height: 60%;
  position: absolute;
  filter: invert(100%);
  -webkit-filter: invert(100%);
  object-fit: cover;
  top: 25%;
  left: 20%;
}

.floating-wpp:hover {
  bottom: 17px;
}

.floating-wpp:hover .floating-wpp-button {
  box-shadow: 1px 2px 8px rgba(60, 60, 60, 0.4);
}

.floating-wpp .floating-wpp-popup {
  /*border: 2px solid white;*/
  border-radius: 6px;
  background-color: #e1e1e1;
  position: absolute;
  overflow: hidden;
  padding: 0;
  box-shadow: 1px 2px 8px rgba(60, 60, 60, 0.25);
  width: 0px;
  height: 0px;
  bottom: 0;
  opacity: 0;
  transition: bottom 0.1s ease-out, opacity 0.2s ease-out;
  transform-origin: bottom;
}

.floating-wpp .floating-wpp-popup.active {
  width: 350px;
  height: 510px;
  bottom: 82px;
  opacity: 1;
}

.floating-wpp-chat-area {
  overflow-y: auto;
  overflow-x: hidden;
  height: 400px;
  width: 100%;
  margin: 0;
  padding: 12px 12px 12px 12px;
  opacity: 1
}

.floating-wpp .floating-wpp-popup .floating-wpp-message {
  background-color: palevioletred;
  padding: 8px;
  border-radius: 0px 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 .floating-wpp-contact-centre {
  background-color: lightyellow;
  padding: 8px 15px 8px;
  border-radius: 0px 5px 5px 5px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: opacity 0.2s;
  word-break: break-word;
  margin-left: 0;
  margin-right: auto;
  display: inline-block;
  max-width: 80%;
}

.floating-wpp .floating-wpp-popup.active .floating-wpp-contact-centre {
  opacity: 1;
  transition-delay: 0.2s;
}

.floating-wpp .floating-wpp-popup .floating-wpp-external {
  background-color: lightblue;
  padding: 8px 15px 8px;
  border-radius: 5px 5px 0px 5px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: opacity 0.2s;
  text-align: left;
  word-break: break-word;
  display: inline-block;
  margin-left: auto;
  margin-right: 0;
  max-width: 80%;
}

.floating-wpp .floating-wpp-popup.active .floating-wpp-external {
  opacity: 1;
  transition-delay: 0.2s;
}

.floating-wpp .floating-wpp-popup .floating-wpp-head {
  text-align: right;
  color: white;
  padding: 6px 12px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  opacity: 1;
}

.floating-wpp .floating-wpp-input-message {
  background-color: white;
  /*margin: 10px -15px -15px -15px;*/
  padding: 0 15px;
  /*display: flex;*/
  align-items: center;
  /*position: absolute;*/
  height: 100px;
  width: 100%
}

.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%;
  height: 50px;
  font-family: inherit;
  font-size: inherit;
  resize: none;
}

.floating-wpp .floating-wpp-btn-send {
  margin-left: 12px;
  font-size: 0;
  cursor: pointer;
}

.start-chat {
  border: 1px solid #ccc;
  background-color: #F1516D;
  color: white;
  border-radius: 4px;
  box-shadow: grey;
  font-family: inherit;
  font-size: inherit;
  text-align: center;
  cursor: pointer;
  float: bottom;
}

.start-chat:hover {
  box-shadow: 1px 2px 8px rgba(60, 60, 60, 0.4);
}

.chat-date-external {
  float: right;
}

.chat-date-contact-centre {
  float: left;
}

.chat-external-float {
  display: flex;
  justify-content: flex-end
}

.chat-contact-centre-float {
  display: flex;
}

.end-conversation {
  text-align: center;
}
