.chatbot {
  font-family: Roboto, 'Open Sans', sans-serif;
  background-color: #235090;
  color: #fff;
  padding: 20px;
  overflow: visible; }
  .chatbot * {
    box-sizing: border-box; }
  .chatbot-enter {
    position: absolute;
    top: 100%;
    opacity: 0.01; }
    .chatbot-enter-active {
      opacity: 1;
      top: 0;
      transition: all 500ms ease-in; }
  .chatbot-leave {
    opacity: 1; }
    .chatbot-leave-active {
      opacity: 0.01;
      transition: opacity 500ms ease-in; }
  .chatbot__content {
    position: relative; }
  .chatbot__esteban-image {
    display: inline-block;
    margin-right: 10px;
    vertical-align: top;
    width: 40px; }
    .chatbot__esteban-image > img {
      height: 40px; }
  .chatbot__heading {
    color: #fff;
    display: inline-block;
    font-size: 16px;
    font-weight: 700; }
  .chatbot__tooltip {
    color: #fff;
    border-bottom: 1px dotted #fff;
    font-size: 14px;
    font-weight: 400; }
  .chatbot__form-group {
    margin-bottom: 10px; }
  .chatbot__form-page {
    margin-top: 10px;
    width: 100%;
    background-color: #fff;
    color: #000;
    padding: 10px;
    box-sizing: border-box; }
    .chatbot__form-page:before {
      content: "";
      position: absolute;
      width: 0;
      height: 0;
      border-left: 8px solid transparent;
      border-right: 8px solid transparent;
      border-bottom: 8px solid #fff;
      top: -8px;
      left: 10px;
      z-index: 5; }
    .chatbot__form-page__title {
      font-size: 16px;
      margin-bottom: 15px; }
    .chatbot__form-page__content {
      margin: 0 auto; }
    .chatbot__form-page__submit-btn {
      margin-bottom: 10px;
      display: inline-block;
      padding: 5px 12px;
      font-family: "Roboto", sans-serif;
      font-size: 16px;
      font-weight: 400;
      border-radius: 4px;
      border: 1px solid #c3c3ca;
      color: #302c2c;
      margin: 0;
      line-height: 1.5;
      cursor: pointer;
      white-space: pre-wrap;
      text-align: center;
      touch-action: manipulation;
      -ms-touch-action: manipulation;
      color: #fff;
      background-color: #0fb2f6;
      border: 1px solid #0fb2f6;
      width: 100%; }
      .chatbot__form-page__submit-btn:hover, .chatbot__form-page__submit-btn.pxl-btn--active, .chatbot__form-page__submit-btn:active {
        background-color: #0891ca;
        border: 1px solid #0891ca;
        color: #fff; }
      .chatbot__form-page__submit-btn:disabled, .chatbot__form-page__submit-btn.pxl-btn--disabled, .chatbot__form-page__submit-btn.disabled:hover {
        background-color: #0891ca;
        color: #fff;
        box-shadow: none;
        border: 1px solid #0891ca; }
    .chatbot__form-page__btn {
      display: inline-block;
      padding: 5px 12px;
      font-family: "Roboto", sans-serif;
      font-size: 16px;
      font-weight: 400;
      border-radius: 4px;
      border: 1px solid #c3c3ca;
      color: #302c2c;
      margin: 0;
      line-height: 1.5;
      cursor: pointer;
      white-space: pre-wrap;
      text-align: center;
      touch-action: manipulation;
      -ms-touch-action: manipulation;
      margin-bottom: 10px !important;
      background-color: #fff;
      border-color: #86b62d !important;
      box-shadow: none !important;
      width: 100%; }
      .chatbot__form-page__btn.btn {
        padding-left: 35px !important; }
        .chatbot__form-page__btn.btn > span.button-icon {
          color: #86b62d;
          float: right; }
      .chatbot__form-page__btn:hover {
        border-color: #59791e !important; }

/* TOOL TIP STYLE */
/* Add this attribute to the element that needs a tooltip */
[data-tooltip] {
  position: relative;
  z-index: 2;
  cursor: default;
  /* Hide the tooltip content by default */
  /* Position tooltip above the element */
  /* This adds the triangle to make the tooltip look like a speech bubble */
  /* Show tooltip content on hover */ }
  [data-tooltip]:before, [data-tooltip]:after {
    visibility: hidden;
    opacity: 0;
    pointer-events: none; }
  [data-tooltip]:before {
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-bottom: 5px;
    margin-left: -50px;
    padding: 10px 20px;
    width: 300px;
    border-radius: 3px;
    background-color: #000;
    color: #fff;
    content: attr(data-tooltip);
    text-align: center;
    font-size: 14px;
    line-height: 1.2; }
  [data-tooltip]:after {
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    width: 0;
    border-top: 5px solid #000;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    content: " ";
    font-size: 0;
    line-height: 0; }
  [data-tooltip]:hover:before, [data-tooltip]:hover:after {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
    -webkit-transition: opacity 0.3s ease-in-out; }

