@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
:root {
  --primary-color: #97D700;
  --primary-dark-color: #0A503C;
  --secondary-color: #fff;
  --btn-color: #0A503C;
  --chat-bg-color: #dfdfdf;
  --chat-lang-hover: #f5f5f5;
  --chat-header-bg-color: #97D700;
  --chat-header-text-color: #fff;
  --chat-own-bg-color: #dddddd;
  --chat-btn-hover-color: #333333;
  --chat-content-max-height: 200px;
  --chat-header-height: 50px;
  --chat-right: 20px;
  --chat-bottom: 20px;
  --chat-width: 33%;
  --chat-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2);
  --chat-transition: 0.3s ease;
  --chat-button-size: 40px;
  --chat-radius: 5px;
  --chat-avatar-size: 24px; }

.chatBot {
  position: fixed;
  bottom: var(--chat-bottom);
  right: var(--chat-right);
  width: var(--chat-width);
  z-index: 1000;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 14px; }
  @media (max-width: 768px) {
    .chatBot {
      width: calc(100% - var(--chat-right) - var(--chat-right)); } }
  .chatBot ul {
    color: var(--e-global-color-text);
    line-height: 1.5em;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    pointer-events: all;
    border: 0;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    outline: 0;
    vertical-align: baseline;
    list-style: disc;
    box-sizing: border-box;
    list-style-type: none;
    margin: 0;
    padding: 0; }
    .chatBot ul li {
      margin: 0 !important; }
  .chatBot svg {
    transition: var(--chat-transition); }
    .chatBot svg path {
      transition: var(--chat-transition); }
  .chatBot button:hover {
    color: var(--btn-color);
    background-color: transparent; }
  .chatBot.show .chatBox {
    transform: translateX(0);
    pointer-events: all;
    max-width: 100%;
    width: 100%;
    min-height: 400px;
    height: 60vh; }
  .chatBot.show .chatButton-content {
    transform: translateY(0); }
  .chatBot.show .chatButton--top {
    display: block !important;
    box-shadow: none; }
  .chatBot .chatOut {
    display: flex;
    align-items: flex-end;
    gap: 20px; }
  .chatBot .chatRate {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    gap: 10px;
    filter: drop-shadow(var(--chat-shadow));
    background-color: var(--secondary-color);
    padding: 10px;
    border-radius: var(--chat-radius);
    opacity: 0;
    transform: translate(0, 20px);
    transition: var(--chat-transition);
    margin-top: -200px;
    transition-delay: .4s;
    pointer-events: none; }
    .chatBot .chatRate::after {
      content: "";
      position: absolute;
      bottom: calc(var(--chat-button-size) / 2);
      right: 0;
      width: 15px;
      height: 15px;
      background-color: var(--secondary-color);
      transform: translate(50%, 50%) rotate(45deg); }
    .chatBot .chatRate.show {
      opacity: 1;
      transform: translate(0, 0);
      pointer-events: all;
      margin-top: 0px; }
    .chatBot .chatRate-title {
      color: var(--chat-btn-hover-color);
      font-size: 12px;
      display: none; }
      @media (min-width: 768px) {
        .chatBot .chatRate-title {
          display: flex; } }
    .chatBot .chatRate-stars {
      display: none;
      align-items: center;
      gap: 5px; }
      .chatBot .chatRate-stars.show {
        display: flex; }
    .chatBot .chatRate-star {
      cursor: pointer;
      min-height: calc(var(--chat-button-size) - 20px);
      min-width: calc(var(--chat-button-size) - 20px);
      height: calc(var(--chat-button-size) - 20px);
      width: calc(var(--chat-button-size) - 20px);
      transition: var(--chat-transition); }
      .chatBot .chatRate-star:hover path {
        fill: var(--primary-color) !important; }
      .chatBot .chatRate-star.hover path {
        fill: var(--primary-color); }
      .chatBot .chatRate-star path {
        fill: #EDEDED;
        transition: var(--chat-transition); }
      .chatBot .chatRate-star.active path {
        fill: var(--primary-dark-color); }
  .chatBot .chatButton {
    line-height: normal;
    font-weight: normal;
    text-transform: none;
    font-family: Montserrat, sans-serif;
    height: var(--chat-button-size);
    min-height: var(--chat-button-size);
    width: var(--chat-button-size);
    min-width: var(--chat-button-size);
    background-color: var(--primary-color);
    color: var(--btn-color);
    border: none;
    cursor: pointer;
    margin: 0;
    box-shadow: var(--chat-shadow);
    transition: var(--chat-transition);
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 100%;
    padding: 0;
    z-index: 1; }
    .chatBot .chatButton:not(.chatButton--top):hover, .chatBot .chatButton:focus {
      background-color: var(--primary-dark-color);
      color: var(--chat-header-text-color); }
      .chatBot .chatButton:not(.chatButton--top):hover svg path, .chatBot .chatButton:focus svg path {
        fill: var(--chat-header-text-color); }
    .chatBot .chatButton.chatButton--top:hover, .chatBot .chatButton.chatButton--top:focus {
      background-color: var(--primary-color); }
    .chatBot .chatButton.chatButton--top {
      display: none; }
    .chatBot .chatButton.big {
      min-width: 180px;
      border-radius: var(--chat-radius); }
      @media (max-width: 768px) {
        .chatBot .chatButton.big {
          min-width: 40px;
          max-width: 100%; } }
    .chatBot .chatButton.hide {
      display: none; }
    .chatBot .chatButton span {
      min-width: max-content;
      text-align: left;
      padding: 0 10px 0 var(--chat-button-size);
      transition: var(--chat-transition); }
    .chatBot .chatButton-content {
      display: flex;
      flex-direction: column;
      width: var(--chat-button-size);
      min-width: var(--chat-button-size);
      transition: var(--chat-transition);
      position: absolute;
      left: 0;
      top: 0;
      transform: translateY(calc(var(--chat-button-size) * -1)); }
    .chatBot .chatButton-icon {
      min-height: var(--chat-button-size);
      min-width: var(--chat-button-size);
      height: var(--chat-button-size);
      width: var(--chat-button-size);
      display: flex;
      justify-content: center;
      align-items: center; }
  .chatBot .chatBox {
    position: absolute;
    bottom: calc(100% + 10px);
    right: 0;
    width: var(--chat-width);
    transition: var(--chat-transition);
    background-color: var(--secondary-color);
    border-radius: var(--chat-radius);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateX(calc(100% + var(--chat-right)));
    pointer-events: none;
    overflow: visible; }
    .chatBot .chatBox-header {
      background-color: var(--chat-header-bg-color);
      color: var(--btn-color);
      padding: 0;
      height: var(--chat-header-height);
      min-height: var(--chat-header-height);
      display: flex;
      justify-content: space-between;
      align-items: center; }
      .chatBot .chatBox-header-title {
        font-weight: 600;
        font-size: 14px;
        flex: 1; }
      .chatBot .chatBox-header-languageSelect {
        display: flex;
        align-items: center;
        font-size: 14px;
        position: relative;
        user-select: none;
        height: var(--chat-header-height);
        min-height: var(--chat-header-height); }
        .chatBot .chatBox-header-languageSelect.show .chatBox-header-languageSelect-lang svg {
          transform: rotate(0); }
        .chatBot .chatBox-header-languageSelect.show .chatBox-header-languageSelect-list {
          transform: translateY(0);
          opacity: 1;
          pointer-events: all; }
        .chatBot .chatBox-header-languageSelect::after {
          content: "";
          position: absolute;
          top: 50%;
          left: 0;
          width: 1px;
          height: 40%;
          transform: translateY(-50%);
          background-color: var(--btn-color); }
        .chatBot .chatBox-header-languageSelect-lang {
          display: flex;
          align-items: center;
          gap: 5px;
          cursor: pointer;
          height: 100%;
          padding: 0 15px;
          font-weight: 500;
          border: none;
          background: transparent;
          color: #000000; }
          .chatBot .chatBox-header-languageSelect-lang:hover, .chatBot .chatBox-header-languageSelect-lang:focus {
            text-decoration: underline;
            color: var(--btn-color);
            background-color: transparent; }
          .chatBot .chatBox-header-languageSelect-lang svg {
            transition: var(--chat-transition);
            transform: rotate(-180deg); }
            .chatBot .chatBox-header-languageSelect-lang svg.show {
              transform: rotate(0); }
            .chatBot .chatBox-header-languageSelect-lang svg path {
              fill: var(--btn-color); }
        .chatBot .chatBox-header-languageSelect-list {
          position: absolute;
          top: 100%;
          right: 0;
          min-width: max-content;
          width: calc(var(--chat-width) * 0.4);
          background-color: var(--secondary-color);
          box-shadow: var(--chat-shadow);
          display: flex;
          flex-direction: column;
          color: black;
          transition: var(--chat-transition);
          transform: translateY(-10px);
          opacity: 0;
          pointer-events: none;
          visibility: hidden; }
          .chatBot .chatBox-header-languageSelect-list li {
            padding: 10px;
            border-bottom: 1px solid var(--chat-bg-color);
            cursor: pointer;
            font-weight: 400 !important; }
            .chatBot .chatBox-header-languageSelect-list li:hover {
              background-color: var(--chat-lang-hover); }
            .chatBot .chatBox-header-languageSelect-list li.active {
              background-color: var(--chat-lang-hover); }
          .chatBot .chatBox-header-languageSelect-list.show {
            transform: translateY(0);
            opacity: 1;
            pointer-events: all;
            visibility: visible; }
    .chatBot .chatBox-content {
      height: calc(60vh - 100px);
      overflow: auto;
      scrollbar-width: thin;
      padding: 15px;
      display: flex;
      flex-direction: column;
      gap: 6px; }
      .chatBot .chatBox-content-msg {
        display: flex;
        gap: 10px;
        margin-bottom: 20px !important; }
        .chatBot .chatBox-content-msg.own {
          justify-content: flex-end; }
          .chatBot .chatBox-content-msg.own .chatBox-content-msg-container {
            flex-direction: row-reverse; }
          .chatBot .chatBox-content-msg.own .chatBox-content-msg-avatar {
            display: none; }
          .chatBot .chatBox-content-msg.own .chatBox-content-msg-list {
            background-color: var(--chat-own-bg-color); }
        .chatBot .chatBox-content-msg-container {
          max-width: 80%;
          display: flex;
          gap: 10px; }
        .chatBot .chatBox-content-msg-avatar {
          border-radius: 100%;
          width: var(--chat-avatar-size);
          height: var(--chat-avatar-size);
          min-width: var(--chat-avatar-size);
          min-height: var(--chat-avatar-size);
          overflow: hidden;
          background: var(--chat-header-bg-color); }
          .chatBot .chatBox-content-msg-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            margin-top: -3px;
            margin-left: -1px; }
        .chatBot .chatBox-content-msg-list {
          display: flex;
          flex-direction: column;
          color: var(--chat-btn-hover-color);
          border-radius: var(--chat-radius);
          font-weight: 400;
          font-size: 14px;
          overflow: hidden;
          background-color: var(--chat-lang-hover); }
        .chatBot .chatBox-content-msg-text {
          padding: 10px;
          margin: 0px; }
          .chatBot .chatBox-content-msg-text h1 {
            font-size: 18px;
            margin: 10px 0; }
          .chatBot .chatBox-content-msg-text h2 {
            font-size: 16px;
            margin: 10px 0; }
          .chatBot .chatBox-content-msg-text h3, .chatBot .chatBox-content-msg-text h4 {
            font-size: 14px;
            margin: 10px 0; }
          .chatBot .chatBox-content-msg-text p {
            margin: 0px; }
        .chatBot .chatBox-content-msg-question {
          background: none;
          border: none;
          border-top: 1px solid #DDDDDD;
          font-weight: 500;
          padding: 10px;
          margin: 0;
          text-align: left;
          color: var(--btn-color);
          cursor: pointer;
          margin-bottom: 10px; }
          .chatBot .chatBox-content-msg-question:last-child {
            margin-bottom: 0; }
          .chatBot .chatBox-content-msg-question:hover:not(.active) {
            text-decoration: underline;
            color: var(--btn-color);
            background-color: white; }
          .chatBot .chatBox-content-msg-question:focus, .chatBot .chatBox-content-msg-question.active {
            color: var(--btn-color);
            background-color: var(--chat-header-bg-color); }
          .chatBot .chatBox-content-msg-question.hide {
            display: none; }
    .chatBot .chatBox-bottomBar {
      border-top: 1px solid var(--chat-bg-color);
      display: flex;
      align-items: center;
      position: relative; }
      .chatBot .chatBox-bottomBar-optionsButton-menu {
        position: absolute;
        bottom: 100%;
        left: 10px;
        width: 210px;
        box-shadow: var(--chat-shadow);
        background-color: var(--secondary-color);
        transition: var(--chat-transition);
        transform: translate(0, 10px);
        pointer-events: none;
        opacity: 0; }
        .chatBot .chatBox-bottomBar-optionsButton-menu.show {
          transform: translate(0, 0);
          pointer-events: all;
          opacity: 1; }
        .chatBot .chatBox-bottomBar-optionsButton-menu-item {
          padding: 10px;
          cursor: pointer;
          border-bottom: 1px solid var(--chat-bg-color); }
          .chatBot .chatBox-bottomBar-optionsButton-menu-item:hover {
            text-decoration: underline; }
          .chatBot .chatBox-bottomBar-optionsButton-menu-item:last-child {
            border-bottom: none; }
      .chatBot .chatBox-bottomBar-optionsButton-button, .chatBot .chatBox-bottomBar-sendMessage {
        pointer-events: all;
        box-sizing: inherit;
        font: inherit;
        overflow: visible;
        -webkit-appearance: button;
        margin: 0;
        vertical-align: baseline;
        line-height: var(--ast-body-line-height, 1.65em);
        font-family: inherit;
        outline: 0;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border-radius: 23px 23px 23px 23px;
        padding: 10px 15px;
        background: none;
        border: none;
        font-size: 14px;
        cursor: pointer;
        transition: background-color 0.3s ease;
        color: var(--btn-color);
        background-color: transparent !important;
        padding: 10px 15px;
        background: none !important;
        color: white;
        border: none;
        font-size: 14px;
        cursor: pointer;
        transition: background-color 0.3s ease; }
        .chatBot .chatBox-bottomBar-optionsButton-button:hover, .chatBot .chatBox-bottomBar-optionsButton-button:focus, .chatBot .chatBox-bottomBar-sendMessage:hover, .chatBot .chatBox-bottomBar-sendMessage:focus {
          color: var(--btn-color);
          background-color: transparent; }
          .chatBot .chatBox-bottomBar-optionsButton-button:hover svg path, .chatBot .chatBox-bottomBar-optionsButton-button:focus svg path, .chatBot .chatBox-bottomBar-sendMessage:hover svg path, .chatBot .chatBox-bottomBar-sendMessage:focus svg path {
            fill: var(--chat-btn-hover-color); }
      .chatBot .chatBox-bottomBar-userInput {
        vertical-align: baseline;
        font-family: 'Roboto',sans-serif;
        font-weight: 400;
        line-height: var(--ast-body-line-height, 1.65em);
        outline: none;
        -webkit-appearance: none;
        color: #666;
        box-shadow: none;
        box-sizing: border-box;
        transition: all .2s linear;
        cursor: default;
        flex-grow: 1;
        padding: 8px;
        height: 100%;
        border-radius: 5px;
        border: none;
        background: none;
        font-size: 14px;
        flex-grow: 1;
        padding: 8px;
        height: 100%;
        border-radius: 5px;
        border: none;
        background: none !important;
        background-color: none !important;
        font-size: 14px;
        max-width: calc(100% - 100px); }
        .chatBot .chatBox-bottomBar-userInput:focus {
          outline: none; }
  .chatBot .lds-ellipsis,
  .chatBot .lds-ellipsis div {
    box-sizing: border-box; }
  .chatBot .lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px; }
  .chatBot .lds-ellipsis div {
    position: absolute;
    top: 33.33333px;
    width: 13.33333px;
    height: 13.33333px;
    border-radius: 50%;
    background: currentColor;
    animation-timing-function: cubic-bezier(0, 1, 1, 0); }
  .chatBot .lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite; }
  .chatBot .lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite; }
  .chatBot .lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite; }
  .chatBot .lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite; }
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0); }
  100% {
    transform: scale(1); } }
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1); }
  100% {
    transform: scale(0); } }
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0); }
  100% {
    transform: translate(24px, 0); } }
  .chatBot button.chatBox-content-msg-stas {
    background: white;
    color: var(--chat-btn-hover-color);
    border: none;
    width: auto;
    font-weight: normal;
    text-transform: none;
    border-radius: 0;
    padding: 10px;
    display: inline-block;
    overflow: hidden; }
    .chatBot button.chatBox-content-msg-stas:hover, .chatBot button.chatBox-content-msg-stas:focus {
      background: var(--chat-header-bg-color);
      color: var(--btn-color); }
    .chatBot button.chatBox-content-msg-stas.first-child {
      border-top-left-radius: 5px;
      border-top-right-radius: 5px; }
    .chatBot button.chatBox-content-msg-stas.last-child {
      border-bottom-left-radius: 5px;
      border-bottom-right-radius: 5px; }
  .chatBot button.chatBox-bottomBar-sendMessage.hide {
    display: none; }

ul {
  list-style-type: none;
  margin: 0;
  padding: 0; }

.dialog-message.dialog-lightbox-message {
  display: none !important; }

/*# sourceMappingURL=styles.css.map */
