.wpp {
    font: 400 normal 15px/1.3 -apple-system, BlinkMacSystemFont, Roboto, "Open Sans", "Helvetica Neue", sans-serif;
    position: fixed;
    bottom: var(--wpp-offset-bottom, var(--wpp-offset, 20px));
    right: var(--wpp-offset-right, var(--wpp-offset, 20px));
  }
  .wpp__container {
    min-width: 360px;
    border-radius: var(--wpp-border-radius, 10px);
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 12px 24px 0px;
    transition: opacity 0.3s ease 0s, transform 0.3s ease 0s;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  .wpp__container.wpp__container--closed {
    transform: translate3d(0, var(--wpp-offset-bottom, var(--wpp-offset, 20px)), 0);
    opacity: 0;
    pointer-events: none;
  }
  .wpp__close-btn {
    background-color: transparent;
    border: 0;
    cursor: pointer;
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    width: 36px;
    height: 36px;
    opacity: 0.4;
    outline: none;
  }
  .wpp__close-btn:hover, .wpp__close-btn:focus {
    opacity: 0.8;
  }
  .wpp__close-btn:before, .wpp__close-btn:after {
    content: "";
    position: absolute;
    width: 12px;
    height: 2px;
    background-color: var(--wpp-close-btn-color, #ffffff);
    display: block;
    border-radius: 2px;
  }
  .wpp__close-btn:before {
    transform: rotate(45deg);
  }
  .wpp__close-btn:after {
    transform: rotate(-45deg);
  }
  .wpp__header {
    background: var(--wpp-header-background, #397ad4);
    color: var(--wpp-header-color, #fff);
    display: flex;
    align-items: center;
    padding: 24px 20px;
  }
  .wpp__header__info {
    margin: 0 16px;
  }
  .wpp__user-image__container {
    background-color: #fff;
    overflow: hidden;
    border-radius: 50%;
    width: 52px;
    height: 52px;
  }
  .wpp__user-image__image {
    background-image: var(--wpp-user-avatar, url("../../image/chat-profile.jpeg"));
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: contain;
  }
  .wpp__user-name {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
  }
  .wpp__user-answer-time {
    font-size: 13px;
    line-height: 1.384;
  }
  .wpp__chat {
    padding: 20px;
    background: var(--wpp-chat-background-color, #e6ddd4);
    position: relative;
  }
  .wpp__chat::before {
    content: "";
    background-image: var(--wpp-chat-background-image, url("https://elfsight.com/assets/chats/patterns/whatsapp.png"));
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: var(--wpp-chat-background-image-opacity, 0.08);
  }
  .wpp__chat__message {
    background: var(--wpp-chat-message-background, #fff);
    position: relative;
    z-index: 2;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 7px 14px 6px;
    border-radius: 0px 8px 8px;
  }
  .wpp__chat__message::before {
    position: absolute;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAmCAMAAADp2asXAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAACQUExURUxpccPDw9ra2m9vbwAAAAAAADExMf///wAAABoaGk9PT7q6uqurqwsLCycnJz4+PtDQ0JycnIyMjPf3915eXvz8/E9PT/39/RMTE4CAgAAAAJqamv////////r6+u/v7yUlJeXl5f///5ycnOXl5XNzc/Hx8f///xUVFf///+zs7P///+bm5gAAAM7Ozv///2fVensAAAAvdFJOUwCow1cBCCnqAhNAnY0WIDW2f2/hSeo99g1lBYT87vDXG8/6d8oL4sgM5szrkgl660OiZwAAAHRJREFUKM/ty7cSggAABNFVUQFzwizmjPz/39k4YuFWtm55bw7eHR6ny63+alnswT3/rIDzUSC7CrAziPYCJCsB+gbVkgDtVIDh+DsE9OTBpCtAbSBAZSEQNgWIygJ0RgJMDWYNAdYbAeKtAHODlkHIv997AkLqIVOXVU84AAAAAElFTkSuQmCC);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    top: 0px;
    left: -12px;
    width: 12px;
    height: 19px;
  }
  .wpp__chat__message__author {
    color: var(--wpp-chat-message-author-color, #999);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.384;
    margin-bottom: 4px;
  }
  .wpp__chat__message__content {
    color: var(--wpp-chat-message-color, #111);
    font-size: 14px;
    line-height: 1.357;
  }
  .wpp__chat__message__timestamp {
    text-align: right;
    margin-top: 4px;
    font-size: 12px;
    line-height: 16px;
    color: var(--wpp-chat-message-timestamp-color, #999);
    margin-right: -8px;
    margin-bottom: -4px;
  }
  .wpp__cta {
    padding: 20px;
  }
  .wpp__cta__button {
    background: var(--wpp-cta-button-background, #1255b2);
    border-radius: 100px;
    color: var(--wpp-cta-button-color, #fff);
    display: block;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.333;
    outline: none;
    padding: 8px 12px;
    text-align: center;
    text-decoration: none;
  }
  .wpp__cta__button:hover .wpp__cta__button__text, .wpp__cta__button:focus .wpp__cta__button__text {
    text-decoration: underline;
  }
  .wpp__cta__button__icon {
    vertical-align: middle;
  }
  .wpp__cta__button__icon .fa-whatsapp {
    height: 16px;
    width: 16px;
  }
  .wpp__toggle {
    align-items: center;
    background: var(--wpp-toggle-button-background, #1255b2);
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 12px;
    display: flex;
    height: 64px;
    justify-content: center;
    margin: 20px 0 0 auto;
    text-decoration: none;
    width: 64px;
  }
  .wpp__toggle__icon {
    color: var(--wpp-toggle-button-color, #ffffff);
  }
  .wpp__toggle__icon .fa-whatsapp {
    width: 32px;
    height: 32px;
  }
  .wpp__toggle__text {
    font-size: 0;
  }