:root {
  --wHelp-color-primary: #118c7e;
  --wHelp-color-dark-primary: #0d1321;
  --wHelp-color-secondary: #0b5a51;
  --wHelp-color-dark-secondary: #161e2e;
  --wHelp-color-active: #26c281;
  --wHelp-color-inactive: #f1a528;
  --wHelp-color-offline: #a4a4a4;
  --wHelp-color-message: #f1f0f0;
  --wHelp-color-light: #ffffff;
  --wHelp-color-dark: #222;
  --wHelp-color-dark-mode: #006289;
  --wHelp-color-dark-mode2: #0b5572;
  --wHelp-shadow: 0 7px 15px 1px rgb(55 62 70 / 7%);
}

[class*=wHelp] * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.wHelp-scroll {
  max-height: 295px;
  overflow-y: scroll;
}
.wHelp-scroll::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.wHelp-scroll::-webkit-scrollbar-track {
  background-color: var(--wHelp-color-message);
  margin-block: 4px;
}
.wHelp-scroll::-webkit-scrollbar-thumb {
  background: var(--wHelp-color-primary);
}
.wHelp-scroll::-webkit-scrollbar-thumb:hover {
  opacity: 0.2;
}

.wHelp__popup {
  position: absolute;
  width: 350px;
  bottom: 100%;
  right: 0;
  margin-bottom: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  box-shadow: var(--wHelp-shadow);
  border-radius: 5px;
  background-color: var(--wHelp-color-light);
}
@media screen and (max-width: 767px) {
  .wHelp__popup {
    width: 290px;
  }
}
.wHelp__popup.animation1 {
  transform: translate(20px);
}
.wHelp__popup.animation2 {
  transform: translate(0, 50px);
}
.wHelp__popup.animation3 {
  transform: translateY(100px) scale(0.7);
}
.wHelp__popup.animation4 {
  transform: scale(0.7);
}
.wHelp__popup.animation5 {
  transform: scale(0) rotate(720deg);
}
.wHelp__popup.animation6 {
  transform: translate(30%) translateZ(600px) rotate(10deg);
}
.wHelp__popup.animation7 {
  transform: translateY(100%) rotateX(90deg);
}
.wHelp__popup.animation8 {
  transform: translateZ(100px) translateX(-30%) rotateY(90deg);
}
.wHelp__popup.animation9 {
  transform: rotateY(-70deg);
}
.wHelp__popup.animation10 {
  transform: rotateX(-70deg);
}
.wHelp__popup.animation11 {
  transform: rotateX(-60deg);
  transform-origin: 50% 0;
}
.wHelp__popup.animation12 {
  transform: scale(2);
}
.wHelp__popup.animation13 {
  transform: translateY(-40%);
}
.wHelp__popup--header {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 20px;
  background-color: var(--wHelp-color-primary);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
@media screen and (max-width: 767px) {
  .wHelp__popup--header {
    padding: 15px;
  }
}
.wHelp__popup--header.header-center {
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.wHelp__popup--header .image {
  width: 50px;
  height: 50px;
  position: relative;
}
.wHelp__popup--header .image::before {
  content: "";
  bottom: 0px;
  right: 0px;
  width: 12px;
  height: 12px;
  box-sizing: border-box;
  background-color: var(--wHelp-color-active);
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  border: 1px solid var(--wHelp-color-primary);
}
.wHelp__popup--header .image img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wHelp__popup--header .info__name {
  font-size: 20px;
  line-height: 1;
  margin-bottom: 5px;
  color: var(--wHelp-color-light);
  font-weight: 700;
}
.wHelp__popup--header .info__title {
  font-size: 14px;
  line-height: 1.5;
  color: var(--wHelp-color-light);
  font-weight: 400;
}
.wHelp__popup__content {
  padding: 20px;
  padding-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .wHelp__popup__content {
    padding: 15px;
  }
}
.wHelp__popup__content .wHelp--checkbox {
  margin-top: -10px;
}
.wHelp__popup__content .sms {
  margin-bottom: 20px;
  padding-left: 10px;
}
.wHelp__popup__content .sms .image {
  width: 30px;
  height: 30px;
}
.wHelp__popup__content .sms .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.wHelp__popup__content .sms__text {
  padding: 10px;
  background-color: var(--wHelp-color-message);
  border-radius: 0 5px 5px;
  position: relative;
}
.wHelp__popup__content .sms__text::before {
  position: absolute;
  content: "";
  top: 0;
  left: -14px;
  border-bottom: 15px solid transparent;
  border-right: 15px solid var(--wHelp-color-message);
}
.wHelp__popup__content .sms__text p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--wHelp-color-dark);
}
.wHelp__popup__content .user-text {
  margin-bottom: 15px;
  max-height: 240px;
  overflow-y: auto;
  padding-right: 8px;
}
.wHelp__popup__content .user-text::-webkit-scrollbar {
  width: 0.3em;
  height: 0.5em;
}
.wHelp__popup__content .user-text::-webkit-scrollbar-track {
  background-color: var(--wHelp-color-message);
  margin-block: 0.5em;
}
.wHelp__popup__content .user-text::-webkit-scrollbar-thumb {
  background-color: var(--wHelp-color-primary);
}
.wHelp__popup__content .user-text::-webkit-scrollbar-thumb:hover {
  opacity: 0.2;
}
.wHelp__popup__content .user-text .form_field:not(:last-child) {
  margin-bottom: 10px;
}
.wHelp__popup__content .user-text label {
  width: 100%;
  margin-bottom: 4px;
  display: inline-block;
  line-height: 16px;
  font-weight: 400;
  font-size: 14px;
}
.wHelp__popup__content .user-text label.error {
  font-size: 14px;
  color: #ff0000;
  margin-top: 3px;
}
.wHelp__popup__content .user-text label span span, .wHelp__popup__content .user-text label span.error {
  color: #ff0000;
  font-size: 14px;
  margin-left: 3px;
}
.wHelp__popup__content .user-text input,
.wHelp__popup__content .user-text textarea {
  width: 100%;
  height: auto;
  max-height: 100px;
  padding: 8px 10px;
  font-size: 16px;
  border-radius: 3px !important;
  border: 1px solid var(--wHelp-color-message);
  transition: all 0.3s;
  background-color: var(--wHelp-color-message) !important;
}
.wHelp__popup__content .user-text input:focus,
.wHelp__popup__content .user-text textarea:focus {
  outline: none;
  border-color: var(--wHelp-color-primary);
}
.wHelp__popup__content .user-text input:hover,
.wHelp__popup__content .user-text textarea:hover {
  border-color: var(--wHelp-color-primary);
}
.wHelp__popup__content .user-text select {
  width: 100%;
  height: auto;
  padding: 8px 10px;
  font-size: 16px;
  border-radius: 3px !important;
}
.wHelp__popup__content .current-time {
  text-align: center;
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 14px;
}
.wHelp.wHelp-show .wHelp__popup {
  opacity: 1;
  visibility: visible;
}
.wHelp.wHelp-show .wHelp__popup.animation1 {
  transform: translateX(0);
}
.wHelp.wHelp-show .wHelp__popup.animation2 {
  transform: translate(0, 0);
}
.wHelp.wHelp-show .wHelp__popup.animation3 {
  transform: translateY(0) scale(1);
}
.wHelp.wHelp-show .wHelp__popup.animation4 {
  transform: scale(1);
}
.wHelp.wHelp-show .wHelp__popup.animation5 {
  transform: scale(1) rotate(0deg);
}
.wHelp.wHelp-show .wHelp__popup.animation6 {
  transform: translate(0%) translateZ(0) rotate(0deg);
}
.wHelp.wHelp-show .wHelp__popup.animation7 {
  transform: translateY(0%) rotateX(0deg);
}
.wHelp.wHelp-show .wHelp__popup.animation8 {
  transform: translateZ(0px) translateX(0%) rotateY(0deg);
}
.wHelp.wHelp-show .wHelp__popup.animation9 {
  transform: rotateY(0deg);
}
.wHelp.wHelp-show .wHelp__popup.animation10 {
  transform: rotateX(0deg);
}
.wHelp.wHelp-show .wHelp__popup.animation11 {
  transform: rotateX(0deg);
}
.wHelp.wHelp-show .wHelp__popup.animation12 {
  transform: scale(1);
}
.wHelp.wHelp-show .wHelp__popup.animation13 {
  transform: translateY(0%);
}

.wHelp_button .chat-link {
  width: 100%;
  height: 100%;
  z-index: 999;
  position: absolute;
  bottom: 0;
  right: 0;
}
.wHelp_button.circle-bubble {
  position: relative;
  z-index: 999;
  width: 50px;
  height: 50px;
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wHelp-icon-normal-color);
}
.wHelp_button.circle-bubble .bubble__icon {
  background-color: transparent;
}
.wHelp_button.circle-bubble:hover, .wHelp_button.circle-bubble:focus {
  color: var(--wHelp-icon-hover-color);
}
.wHelp_button.bubble.wHelp_button {
  display: flex;
}

.wHelp_bubble .wHelp__send-message {
  padding: 10px 20px;
  border-radius: 30px;
  background-color: var(--wHelp-color-primary);
  color: var(--text-color);
  transition: all 0.3s;
  text-decoration: none;
  width: 100%;
  font-size: 14px;
  display: inline-block;
  text-align: center;
  position: relative;
  border: none;
  line-height: 22px;
  height: auto;
  min-height: auto;
  text-transform: capitalize;
  font-weight: 600;
}
.wHelp_bubble .wHelp__send-message:hover, .wHelp_bubble .wHelp__send-message:focus {
  background-color: var(--wHelp-color-secondary);
  color: var(--text-hover-color);
  border-color: var(--wHelp-color-secondary);
}
.wHelp_bubble .wHelp__send-message a {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.wHelp_bubble .wHelp__send-message i, .wHelp_bubble .wHelp__send-message svg {
  margin-right: 5px;
}
.wHelp_bubble.avatar-inactive .wHelp__popup--header .image::before {
  background-color: var(--wHelp-color-inactive) !important;
}
.wHelp_bubble.avatar-inactive .wHelp__send-message {
  background-color: var(--wHelp-color-offline);
  border-color: var(--wHelp-color-offline);
  cursor: not-allowed;
  color: var(--wHelp-color-light);
}
.wHelp_bubble.avatar-inactive .wHelp__send-message:hover {
  background-color: var(--wHelp-color-offline);
}
.wHelp_bubble.avatar-inactive.wHelp_button_advance {
  pointer-events: none;
}
.wHelp_bubble.avatar-inactive .wHelp-button-advance {
  background-color: var(--wHelp-color-offline) !important;
  color: var(--wHelp-color-light) !important;
  cursor: not-allowed;
  border-color: var(--wHelp-color-dark) !important;
}
.wHelp_bubble.avatar-inactive .wHelp-button-advance .online {
  display: none;
}
.wHelp_bubble.avatar-inactive .wHelp-button-advance .offline {
  background-color: var(--wHelp-color-inactive) !important;
}
.wHelp_bubble.avatar-active .wHelp_button_advance .offline {
  display: none;
}
.wHelp_bubble .condition__checked {
  background-color: var(--wHelp-color-offline);
  cursor: not-allowed !important;
  pointer-events: none;
}
.wHelp_bubble .condition__checked a {
  display: none;
}
.wHelp_bubble .condition__checked:hover, .wHelp_bubble .condition__checked:focus {
  cursor: not-allowed !important;
  border-color: var(--wHelp-color-offline);
}
.wHelp_bubble-multi .condition__checked {
  background-color: var(--wHelp-color-message);
  cursor: not-allowed !important;
  pointer-events: none;
}
.wHelp_bubble-multi .condition__checked a {
  display: none;
}
.wHelp_bubble-multi .condition__checked .user__info--online,
.wHelp_bubble-multi .condition__checked .user__info--offline {
  background-color: var(--wHelp-color-offline);
}
.wHelp_bubble-multi .condition__checked.avatar-inactive:hover, .wHelp_bubble-multi .condition__checked:hover, .wHelp_bubble-multi .condition__checked:focus {
  cursor: not-allowed !important;
  border-color: var(--wHelp-color-offline) !important;
}
.wHelp_bubble.avatar-inactive.button_advance {
  pointer-events: none;
}
.wHelp_bubble.avatar-inactive .wHelp_button_advance {
  background-color: var(--wHelp-color-offline) !important;
  color: var(--wHelp-color-light) !important;
  cursor: not-allowed;
  border-color: var(--wHelp-color-offline) !important;
}
.wHelp_bubble.avatar-inactive .wHelp_button_advance .online {
  display: none;
}
.wHelp_bubble.avatar-inactive .wHelp_button_advance .offline {
  background-color: var(--wHelp-color-inactive) !important;
}
.wHelp_bubble.avatar-active .offline {
  display: none;
}

.wHelp-multi.wHelp-grid .wHelp-multi__popup__content .condition__checked.user.avatar-inactive .image::before,
.wHelp-multi.wHelp-grid .wHelp-multi__popup__content .condition__checked.user .image::before {
  background-color: var(--wHelp-color-offline) !important;
}

.wHelp_button[class*=circle-animation-] .open-icon {
  color: var(--wHelp-icon-normal-color);
  transition: 0.4s ease all;
  left: 50%;
  top: 50%;
  position: absolute;
  line-height: 0;
}
.wHelp_button[class*=circle-animation-] .close-icon {
  position: absolute;
  transition: 0.4s ease all;
  color: var(--wHelp-icon-normal-color);
  opacity: 0;
  left: 50%;
  top: 50%;
  line-height: 0;
}
.wHelp_button[class*=circle-animation-]:hover .open-icon {
  color: var(--wHelp-icon-hover-color);
}
.wHelp_button[class*=circle-animation-]:hover .close-icon {
  color: var(--wHelp-icon-hover-color);
}
.wHelp_button.circle-animation-1 .open-icon {
  transform: translate(-50%, -50%);
}
.wHelp_button.circle-animation-1 .close-icon {
  transform: scale(0.7);
}
.wHelp_button.circle-animation-3 .open-icon {
  transform: translate(-50%, -50%);
}
.wHelp_button.circle-animation-3 .close-icon {
  transform: translate(-50%, -50%);
}
.wHelp_button:hover .bubble__icon {
  color: var(--wHelp-icon-hover-color);
  border-color: var(--wHelp-hover-icon-border-color);
}
.wHelp_button:hover .bubble__icon.icon_bg {
  background-color: var(--wHelp-icon-hover-bg-color);
}
.wHelp_button:hover .bubble__icon svg {
  fill: var(--wHelp-icon-hover-color);
}
.wHelp_button .bubble__icon {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 999;
  transition: all 0.4s;
  line-height: 0;
  right: -10px;
  color: var(--wHelp-icon-normal-color);
  border-radius: var(--wHelp-icon-border-radius);
  border: var(--wHelp-icon-border);
  border-color: var(--wHelp-icon-border-color);
}
.wHelp_button .bubble__icon i {
  font-size: 20px;
}
.wHelp_button .bubble__icon svg {
  width: 20px;
}
.wHelp_button .bubble__icon--open {
  left: 10px;
  top: 0px;
  position: relative;
  transition: 0.4s ease all;
}
.wHelp_button .bubble__icon--close {
  z-index: 2;
  position: relative;
  right: 9px;
  left: auto;
  top: auto;
  transition: 0.4s ease all;
  opacity: 0;
}
.wHelp_button .bubble__icon.icon_bg {
  right: 0;
  background-color: var(--wHelp-icon-normal-bg-color);
}
.wHelp_button .bubble__icon svg {
  fill: var(--wHelp-icon-normal-color);
}
.wHelp_button .bubble__icon.bubble-animation1 .bubble__icon--open {
  top: 0;
  left: 10px;
}
.wHelp_button .bubble__icon.bubble-animation1 .bubble__icon--close {
  left: 17px;
  top: 16px;
  transform: scale(0.7);
}
.wHelp_button.block_btn .bubble__icon {
  border: var(--wHelp-icon-border) !important;
}
.wHelp_button.large .bubble__icon.bubble-animation3 .bubble__icon--open {
  left: 13px;
}
.wHelp_button.large .bubble__icon.bubble-animation3 .bubble__icon--close {
  right: 12px;
}

.wHelp-show .wHelp_button[class*=circle-animation-] .open-icon {
  opacity: 0;
}
.wHelp-show .wHelp_button[class*=circle-animation-] .close-icon {
  opacity: 1;
}
.wHelp-show .wHelp_button.circle-animation-1 .open-icon {
  transform: scale(0.7);
}
.wHelp-show .wHelp_button.circle-animation-1 .close-icon {
  transform: scale(1) translate(-50%, -50%);
}
.wHelp-show .wHelp_button .bubble__icon.bubble-animation1 .bubble__icon--open {
  top: 20px;
  left: 30px;
  transform: scale(0.7);
}
.wHelp-show .wHelp_button .bubble__icon.bubble-animation1 .bubble__icon--close {
  transform: scale(1) translate(-26px, -16px);
}
.wHelp-show .wHelp_button.large .bubble__icon.bubble-animation1 .bubble__icon--close {
  transform: scale(1) translate(-29px, -16px);
}
.wHelp-show .wHelp_button.small .bubble__icon.bubble-animation1 .bubble__icon--close {
  transform: scale(1) translate(-26px, -15px);
}
.wHelp-show .bubble__icon--open {
  bottom: 35px;
  opacity: 0;
}
.wHelp-show .bubble__icon--close {
  opacity: 1;
}

.wHelp_bubble .no-results {
  text-align: center;
  font-size: 14px;
  color: red;
}
.wHelp_bubble .tooltip_text {
  visibility: visible;
  background-color: #f5f7f9;
  color: var(--wHelp-color-dark-primary);
  padding: 4px 10px;
  border-radius: 4px;
  position: absolute;
  z-index: 99999999999;
  transition: all 0.3s;
  left: 120%;
  right: unset;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  text-wrap: initial;
  text-transform: math-auto;
  line-height: 22px;
  letter-spacing: normal;
}
.wHelp_bubble .tooltip_text strong {
  font-weight: 600;
}
.wHelp_bubble .tooltip_text::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background-color: #f5f7f9;
  top: 50%;
  right: -4px;
  z-index: 99999;
  transform: translateY(-50%) rotate(130deg);
}
.wHelp_bubble.left_bottom .tooltip_text, .wHelp_bubble.left_middle .tooltip_text {
  right: auto;
  left: 100%;
  margin-left: 10px;
  margin-right: 0;
}
.wHelp_bubble.left_bottom .tooltip_text::after, .wHelp_bubble.left_middle .tooltip_text::after {
  left: -4px;
  right: auto;
}
.wHelp_bubble.wHelp-show .tooltip_text {
  visibility: hidden;
  top: 100%;
  opacity: 0;
}
.wHelp_bubble.wHelp-show .hover_tooltip .tooltip_text {
  opacity: 0;
  visibility: hidden;
  right: 90%;
}
.wHelp_bubble .hover_tooltip {
  transition: all 0.3s;
}
.wHelp_bubble .hover_tooltip .tooltip_text {
  opacity: 0;
  visibility: hidden;
  right: 90%;
}
.wHelp_bubble .hover_tooltip:hover .tooltip_text {
  opacity: 1;
  visibility: visible;
  right: 100%;
}
.wHelp_bubble.wHelp-show .hover_tooltip:hover .tooltip_text,
.wHelp_bubble.wHelp-show .hover_tooltip:hover .tooltip_text {
  opacity: 0;
  visibility: hidden;
  right: 90%;
}
.wHelp_bubble.avatar-inactive a {
  display: none;
}

.wHelp_bubble {
  z-index: 99999999999;
  position: fixed;
}
.wHelp_bubble .tooltip_text {
  right: 100%;
  left: auto;
  margin-right: 10px;
}
.wHelp_bubble.right_bottom {
  bottom: var(--right_bottom_value_bottom);
  right: var(--right_bottom_value_right);
}
.wHelp_bubble.left_bottom {
  bottom: var(--left_bottom_value_bottom);
  left: var(--left_bottom_value_left);
}
.wHelp_bubble.left_bottom .wHelp__popup,
.wHelp_bubble.left_bottom .wHelp-multi__popup {
  right: auto;
}
.wHelp_bubble.right_middle {
  right: var(--right_middle_value_right);
  top: auto;
  bottom: 50%;
  left: auto;
}
.wHelp_bubble.right_middle.wHelp-show {
  bottom: 20%;
}
.wHelp_bubble.left_middle {
  left: var(--left_middle_value_left);
  top: auto;
  bottom: 50%;
  right: auto;
}
.wHelp_bubble.left_middle.wHelp-show {
  bottom: 20%;
}
.wHelp_bubble.left_middle .wHelp__popup,
.wHelp_bubble.left_middle .wHelp-multi__popup {
  right: auto;
}
.wHelp_bubble .tooltip_text {
  width: var(--bubble_button_tooltip_width);
  background-color: var(--bubble_button_tooltip_background);
}
.wHelp_bubble .tooltip_text::after {
  background-color: var(--bubble_button_tooltip_background);
}

.dark-mode .wHelp_button {
  border: 1px solid var(--wHelp-color-dark-mode);
  color: var(--wHelp-color-dark-mode);
}
.dark-mode .wHelp_button .bubble__icon {
  background-color: var(--wHelp-color-dark-mode);
}
.dark-mode .wHelp_button .bubble__icon .bubble__icon--open {
  color: var(--wHelp-color-light);
}
.dark-mode .wHelp_button .bubble__icon--open {
  color: var(--wHelp-color-dark-mode);
}
.dark-mode .wHelp_button.bubble-transparent .bubble__icon .bubble__icon--open {
  color: var(--wHelp-color-dark-mode);
}
.dark-mode .wHelp_button:hover {
  background-color: var(--wHelp-color-dark-mode2);
}
.dark-mode .wHelp_button:hover .bubble__icon .bubble__icon--open {
  color: var(--wHelp-color-dark-mode);
}
.dark-mode .current-time {
  color: var(--wHelp-color-light);
}
.dark-mode .wHelp__popup {
  background-color: var(--wHelp-color-dark-primary);
}
.dark-mode .wHelp__popup--header {
  background-color: var(--wHelp-color-dark-mode);
}
.dark-mode .wHelp__popup--header .info__name {
  color: var(--wHelp-color-light);
}
.dark-mode .wHelp__popup--header .info__title {
  color: var(--wHelp-color-light);
}
.dark-mode .wHelp__popup__content .sms__text {
  background-color: var(--wHelp-color-dark-secondary);
  color: var(--wHelp-color-light);
}
.dark-mode .wHelp__popup__content .sms__text::before {
  border-right: 15px solid var(--wHelp-color-dark-secondary);
}
.dark-mode .wHelp__popup__content .user-text input,
.dark-mode .wHelp__popup__content .user-text textarea {
  background-color: var(--wHelp-color-dark-secondary) !important;
  border: var(--wHelp-color-dark-mode);
  color: var(--wHelp-color-light);
}
.dark-mode .wHelp__popup__content .user-text input::placeholder,
.dark-mode .wHelp__popup__content .user-text textarea::placeholder {
  color: var(--wHelp-color-light);
}
.dark-mode .wHelp__popup__content .user-text label {
  color: var(--wHelp-color-light);
}
.dark-mode .wHelp__popup__content .user-text label.error {
  color: #ff0000;
}
.dark-mode .wHelp__popup .wcp-branding {
  background-color: var(--wHelp-color-dark-secondary);
}
.dark-mode .wHelp__send-message {
  background-color: var(--wHelp-color-dark-mode);
}
.dark-mode .wHelp__send-message:hover {
  background-color: var(--wHelp-color-dark-mode2);
}
.dark-mode .wHelp-bubble.circle-bubble {
  background-color: var(--wHelp-color-dark-mode);
}
.dark-mode .wHelp-bubble.circle-bubble:hover {
  background-color: var(--wHelp-color-dark-mode2);
}
.dark-mode .wHelp-multi__popup--header {
  background-color: var(--wHelp-color-dark-mode);
}
.dark-mode .wHelp-multi__popup__content {
  background-color: var(--wHelp-color-dark-primary);
}
.dark-mode .wHelp-multi__popup__content .user {
  background-color: var(--wHelp-color-dark-secondary);
  color: var(--wHelp-color-light);
}
.dark-mode .wHelp-multi__popup__content .user .user__info--name,
.dark-mode .wHelp-multi__popup__content .user .user__info--title,
.dark-mode .wHelp-multi__popup__content .user .user__info--online,
.dark-mode .wHelp-multi__popup__content .user .user__info--offline {
  color: var(--wHelp-color-light);
}
.dark-mode .wHelp-multi__popup__content .search input {
  border: 1px solid var(--wHelp-color-dark-mode);
  background-color: var(--wHelp-color-dark-secondary);
  color: var(--wHelp-color-light);
}
.dark-mode .wHelp-scroll::-webkit-scrollbar-thumb {
  background-color: var(--wHelp-color-dark-mode);
}
.dark-mode .wHelp-scroll::-webkit-scrollbar-track {
  background: var(--wHelp-color-dark-secondary);
}
.dark-mode .wHelp--checkbox {
  color: var(--wHelp-color-light);
}
.dark-mode .wHelp--checkbox label {
  color: var(--wHelp-color-light);
}
.dark-mode .wHelp--checkbox label a {
  color: var(--wHelp-color-light);
  text-decoration: none !important;
}

.night-mode .wHelp-multi__popup {
  background-color: var(--wHelp-color-dark-primary);
}
.night-mode .wHelp-multi__popup .user {
  background-color: var(--wHelp-color-dark-secondary);
  color: var(--wHelp-color-light);
}
.night-mode .wHelp-multi__popup .search input {
  background-color: var(--wHelp-color-dark-secondary);
  color: var(--wHelp-color-light);
}
.night-mode .wHelp-multi__popup__content .user__info--name,
.night-mode .wHelp-multi__popup__content .user__info--title {
  color: var(--wHelp-color-light);
}
.night-mode .wHelp--checkbox label {
  color: var(--wHelp-color-light);
}
.night-mode .wHelp--checkbox label a {
  color: var(--wHelp-color-light);
  text-decoration: none !important;
}
.night-mode .wHelp__popup {
  background-color: var(--wHelp-color-dark-primary);
}
.night-mode .wHelp__popup--header .info__name {
  color: var(--wHelp-color-light);
}
.night-mode .wHelp__popup--header .info__title {
  color: var(--wHelp-color-light);
}
.night-mode .wHelp__popup .sms__text {
  background-color: var(--wHelp-color-dark-secondary);
  color: var(--wHelp-color-light);
}
.night-mode .wHelp__popup .sms__text::before {
  border-right-color: var(--wHelp-color-dark-secondary);
}
.night-mode .wHelp__popup .current-time {
  color: var(--wHelp-color-light);
}
.night-mode .wHelp__popup .user-text input,
.night-mode .wHelp__popup .user-text textarea {
  background-color: var(--wHelp-color-dark-secondary) !important;
  border: var(--wHelp-color-dark-mode);
  color: var(--wHelp-color-light);
}
.night-mode .wHelp__popup .user-text input::placeholder,
.night-mode .wHelp__popup .user-text textarea::placeholder {
  color: var(--wHelp-color-light);
}
.night-mode .wHelp__popup .user-text label {
  color: var(--wHelp-color-light);
}
.night-mode .wHelp__popup .user-text label.error {
  color: #ff0000;
}
.night-mode .wHelp-scroll::-webkit-scrollbar-track {
  background-color: var(--wHelp-color-dark-secondary);
}
.night-mode .wHelp--checkbox {
  color: var(--wHelp-color-light);
}

.wHelp_button {
  text-decoration: none !important;
  padding: var(--wHelp-padding);
  border-radius: var(--wHelp-border-radius);
  font-weight: 600;
  display: inline-flex;
  font-size: 16px;
  gap: 10px;
  align-items: center;
  transition: all 0.3s;
  cursor: pointer;
  z-index: 999;
  color: var(--wHelp-text-color);
  background-color: var(--wHelp-background);
  border: var(--wHelp-border);
  border-color: var(--wHelp-border-color);
}
.wHelp_button:focus, .wHelp_button:hover {
  background-color: var(--wHelp-hover-background);
  color: var(--wHelp-text-hover-color);
  border-color: var(--wHelp-border-hover-color);
}
.wHelp_button:focus.wHelp_button_advance img, .wHelp_button:hover.wHelp_button_advance img {
  border-color: var(--wHelp-hover-icon-border-color);
}
.wHelp_button .bubble__icon svg {
  fill: var(--wHelp-icon-normal-color);
}
.wHelp_button.block_btn {
  padding: var(--wHelp-padding) !important;
  border-radius: var(--wHelp-border-radius) !important;
  border: var(--wHelp-border) !important;
}
.wHelp_button.block_btn.size-small {
  font-size: 14px;
}
.wHelp_button.block_btn.size-small .bubble__icon {
  width: 30px;
  height: 30px;
}
.wHelp_button.block_btn.size-small .bubble__icon span {
  font-size: 18px;
}
.wHelp_button.block_btn.size-medium {
  font-size: 16px;
}
.wHelp_button.block_btn.size-large {
  font-size: 18px;
}
.wHelp_button.block_btn.size-large .bubble__icon {
  width: 40px;
  height: 40px;
}
.wHelp_button.block_btn.size-large .bubble__icon span {
  font-size: 25px;
}
.wHelp_button.block_btn .bubble__icon span {
  display: contents;
}
.wHelp_button.shortcode_btn {
  border-radius: var(--wHelp-border-radius) !important;
  padding: var(--wHelp-padding) !important;
  border: var(--wHelp-border);
}
.wHelp_button.small {
  font-size: 14px;
}
.wHelp_button.small.circle-bubble {
  width: 40px;
  height: 40px;
  font-size: 20px;
}
.wHelp_button.small .bubble__icon {
  width: 30px;
  height: 30px;
}
.wHelp_button.small .bubble__icon i {
  font-size: 18px;
}
.wHelp_button.small .bubble__icon svg {
  width: 18px;
}
.wHelp_button.small.wHelp_button_advance {
  font-size: inherit;
}
.wHelp_button.small.wHelp_button_advance .info {
  font-size: 9px;
}
.wHelp_button.small.wHelp_button_advance .wHelp_title {
  font-size: 14px;
}
.wHelp_button.small.wHelp_button_advance img {
  width: 50px;
  height: 50px;
}
.wHelp_button.large {
  font-size: 18px;
}
.wHelp_button.large.circle-bubble {
  width: 60px;
  height: 60px;
  font-size: 30px;
}
.wHelp_button.large .bubble__icon {
  width: 45px;
  height: 45px;
}
.wHelp_button.large .bubble__icon i {
  font-size: 25px;
}
.wHelp_button.large .bubble__icon svg {
  width: 25px;
}
.wHelp_button.large .bubble__icon.bubble-animation1 .bubble__icon--open {
  left: 13px;
}
.wHelp_button.large.wHelp_button_advance {
  font-size: inherit;
}
.wHelp_button.large.wHelp_button_advance .info {
  font-size: 12px;
}
.wHelp_button.large.wHelp_button_advance .wHelp_title {
  font-size: 18px;
}
.wHelp_button.large.wHelp_button_advance img {
  width: 60px;
  height: 60px;
}
.wHelp_button.wHelp-btn-rounded {
  border-radius: 50px;
}
.wHelp_button.wHelp-btn-effect:hover {
  transform: translateY(-10px);
}
.wHelp_button.wHelp_button_advance {
  line-height: 1;
  position: relative;
}
.wHelp_button.wHelp_button_advance a {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.wHelp_button.wHelp_button_advance img {
  width: 55px;
  height: 55px;
  border-radius: var(--wHelp-icon-border-radius);
  object-fit: cover;
  padding: 0;
  border: var(--wHelp-icon-border);
}
.wHelp_button.wHelp_button_advance .info-wrapper {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.wHelp_button.wHelp_button_advance .info {
  font-size: 10px;
  line-height: 1;
}
.wHelp_button.wHelp_button_advance .wHelp_title {
  font-weight: 700;
  line-height: 1;
  font-size: 16px;
}
.wHelp_button.wHelp_button_advance .online,
.wHelp_button.wHelp_button_advance .offline {
  display: inline-block;
  padding: 5px;
  background-color: var(--wHelp-color-active);
  color: var(--wHelp-color-light);
  font-size: 10px;
  border-radius: 5px;
  line-height: 1;
  margin-bottom: 0;
  max-width: 70px;
  text-align: center;
}
.wHelp_button.avatar-active .offline {
  display: none;
}
.wHelp_button.avatar-inactive {
  border: none;
}
.wHelp_button.avatar-inactive, .wHelp_button.avatar-inactive:hover {
  background-color: var(--wHelp-color-offline) !important;
  color: var(--wHelp-color-light) !important;
  cursor: not-allowed;
  border-color: var(--wHelp-color-offline) !important;
}
.wHelp_button.avatar-inactive .online, .wHelp_button.avatar-inactive:hover .online {
  display: none;
}
.wHelp_button.avatar-inactive .offline, .wHelp_button.avatar-inactive:hover .offline {
  background-color: var(--wHelp-color-inactive) !important;
}
.wHelp_button.avatar-inactive.wHelp_button_advance {
  pointer-events: none;
}
.wHelp_button.wooCommerce_button {
  margin: var(--wHelp-margin);
}
.wHelp_button.wooCommerce_button i, .wHelp_button.wooCommerce_button .bubble__icon {
  margin: 0 !important;
}

.wcp-branding {
  font-size: 10px;
  text-align: center;
  display: block;
  background: var(--wHelp-color-dark-primary);
  color: var(--wHelp-color-light);
  padding: 5px;
  border-radius: 0px 0 5px 5px;
  line-height: 1.5;
}

.wcp-branding a {
  color: var(--wHelp-color-light) !important;
  text-decoration: none;
}

.wHelp--checkbox {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 20px;
}
.wHelp--checkbox label {
  display: contents;
  color: var(--wHelp-color-dark);
}
.wHelp--checkbox label a {
  color: var(--wHelp-color-dark);
  text-decoration: none !important;
}

@media screen and (max-width: 991px) {
  .desktop,
  .bubble.wooCommerce-desktop-only {
    display: none;
  }
}

@media screen and (min-width: 991px) {
  .tablet,
  .bubble.wooCommerce-tablet-only {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .tablet,
  .bubble.wooCommerce-tablet-only {
    display: none;
  }
}

@media screen and (min-width: 576px) {
  .wHelp-mobile-only,
  .bubble.wooCommerce-mobile-only {
    display: none;
  }
}

@media screen and (min-width: 991px) {
  .mobile,
  .bubble.wooCommerce-mobile-tablet-only {
    display: none;
  }
}

.avatar-inactive a.WhatsApptext {
  display: none;
  pointer-events: none;
}

.ast-sticky-add-to-cart .wHelp_button {
  display: none;
}

.wHelp_bubble .wHelp_button {
  margin: 0 !important;
}

/*# sourceMappingURL=chat-help-style.css.map */
