/**
	This file does note generate code.  It is imported by other sass files to include
	variables, mixins, and functions.
	*/
/* Settings
   -------------------------------------------------------------------------- */
/* Filter Colors
   -------------------------------------------------------------------------- */
/* Tools
   -------------------------------------------------------------------------- */
.hellobc-chatbot-widget {
  position: fixed;
  z-index: 1001;
  bottom: 0;
  width: 100%;
  max-width: 1920px;
}
.hellobc-chatbot-widget button[disabled] {
  cursor: initial !important;
}
.hellobc-chatbot-widget__prompt {
  font-family: "brandon-grotesque", sans-serif;
  font-size: 14px;
  color: black;
  line-height: 1;
  position: absolute;
  bottom: calc(100% + 10px);
  right: 0;
  display: none;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 202px;
  padding: 10px 15px;
  background-color: white;
  cursor: pointer;
  user-select: none;
}
.hellobc-chatbot-widget__fab-container {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  position: absolute;
  bottom: 24px;
  right: calc(var(--chatbotOffsetRight) + 24px);
}
.hellobc-chatbot-widget__fab {
  border: 0;
  background: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  z-index: 0;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 64px;
  height: 64px;
  background-color: rgba(66, 129, 122, 0.8);
  display: none;
}
.hellobc-chatbot-widget__fab--show {
  display: flex;
}
.hellobc-chatbot-widget__fab .v-icon__svg {
  transition: inherit;
  width: 60%;
  height: 60%;
  color: white;
}
.hellobc-chatbot-widget__fab:hover, .hellobc-chatbot-widget__fab:focus {
  background-color: rgba(255, 255, 255, 0.8);
}
.hellobc-chatbot-widget__fab:hover .v-icon__svg, .hellobc-chatbot-widget__fab:focus .v-icon__svg {
  color: #42817a;
}
.hellobc-chatbot-widget__chatbot {
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  padding-right: 0;
  max-height: var(--chatbotHeight);
  background-color: #f8f7f6;
  font-family: "open-sans", sans-serif;
  display: flex;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}
@media (min-width: 768px) {
  .hellobc-chatbot-widget__chatbot {
    max-height: unset;
    padding: 0;
    max-width: 550px;
    height: 80vh;
    right: calc(var(--chatbotOffsetRight) + 24px);
    border-radius: 8px 8px 0 0;
  }
}
.hellobc-chatbot-widget--show .hellobc-chatbot-widget__chatbot {
  opacity: 1;
  visibility: visible;
}
.hellobc-chatbot-widget__header {
  position: relative;
  display: flex;
  align-items: center;
  height: 84px;
  padding: 0 24px;
  background-color: white;
  border: 1px solid #e5e5e5;
  border-bottom: 1px solid #f1f1f1;
}
@media (min-width: 768px) {
  .hellobc-chatbot-widget__header {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
  }
}
.hellobc-chatbot-widget__close {
  border: 0;
  background: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
  position: absolute;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 -8px 0 auto;
  padding: 8px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 500;
  color: #A8483D;
}
.hellobc-chatbot-widget__close:hover {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .hellobc-chatbot-widget__close {
    right: 20px;
  }
}
.hellobc-chatbot-widget__close .v-icon__svg {
  width: 20px;
  height: 20px;
}
.hellobc-chatbot-widget__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px 0 33px;
}
.hellobc-chatbot-widget__messages {
  position: relative;
  flex: 1 0 0;
  overflow: hidden auto;
  margin-bottom: 24px;
  padding: 0 24px;
}
.hellobc-chatbot-widget__welcome-message {
  margin-bottom: 24px;
  font-size: 22px;
  line-height: 1.43;
  letter-spacing: 0.03em;
  font-weight: 500;
  color: #333333;
}
.hellobc-chatbot-widget__thinking-dots {
  padding-left: 0;
  list-style: none;
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2px;
  margin: 0 0 -2px;
  vertical-align: middle;
}
.hellobc-chatbot-widget__thinking-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  width: 8px;
  height: 8px;
}
.hellobc-chatbot-widget__thinking-dot::before {
  content: "";
  display: block;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  background-color: #0EC6C6;
  transition: all 100ms linear;
  animation: thinking-dot 600ms infinite;
}
.hellobc-chatbot-widget__thinking-dot:first-child::before {
  animation-delay: 0s;
}
.hellobc-chatbot-widget__thinking-dot:nth-child(2)::before {
  animation-delay: 100ms;
}
.hellobc-chatbot-widget__thinking-dot:last-child::before {
  animation-delay: 200ms;
}
@keyframes thinking-dot {
  0% {
    width: 6px;
    height: 6px;
  }
  15% {
    width: 8px;
    height: 8px;
  }
  30% {
    width: 6px;
    height: 6px;
  }
}
.hellobc-chatbot-widget__suggestions {
  display: none;
  gap: 24px;
}
.hellobc-chatbot-widget__suggestions .owl-stage {
  padding-left: 0 !important;
}
.hellobc-chatbot-widget__suggestions .owl-next i,
.hellobc-chatbot-widget__suggestions .owl-prev i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}
.hellobc-chatbot-widget__suggestions .owl-next i::before,
.hellobc-chatbot-widget__suggestions .owl-prev i::before {
  top: 13px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px !important;
  color: #76ACA9;
}
.hellobc-chatbot-widget__input-wrapper {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  position: relative;
  box-shadow: 0 3px 5px 0 rgba(118, 172, 169, 0.16);
  border: 5px solid #ddd;
  border-radius: 5px;
  box-sizing: content-box;
  margin: 0 19px;
  height: 48px;
  background-color: white;
}
.hellobc-chatbot-widget__input-wrapper:has(:focus) {
  height: 100px;
}
.hellobc-chatbot-widget__input[type=text] {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  position: relative;
  z-index: 1;
  border: none;
  height: 48px;
  padding: 0 72px 0 24px;
  background: transparent;
  line-height: 1.43;
  font-weight: 500;
  color: #333333;
}
.hellobc-chatbot-widget__input[type=text]::placeholder {
  color: #888888;
}
.hellobc-chatbot-widget__input[type=text]:focus, .hellobc-chatbot-widget__input[type=text]:active {
  border: none;
  padding-right: 24px;
}
.hellobc-chatbot-widget__input-character-counter {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  position: absolute;
  z-index: 0;
  bottom: 12px;
  left: 24px;
  opacity: 0;
  visibility: hidden;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.03em;
  font-weight: 500;
  text-overflow: ellipsis;
  color: #888888;
  pointer-events: none;
}
.hellobc-chatbot-widget__input-wrapper:has(:focus) .hellobc-chatbot-widget__input-character-counter {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.hellobc-chatbot-widget__input-controls {
  position: absolute;
  z-index: 2;
  bottom: 12px;
  right: 24px;
  display: flex;
  gap: 21px;
}
.hellobc-chatbot-widget__input-control {
  border: 0;
  background: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  margin: -5px;
  padding: 5px;
  font-size: 0;
  color: #76ACA9;
}
.hellobc-chatbot-widget__input-control:hover, .hellobc-chatbot-widget__input-control:focus {
  color: #42817a;
}
.hellobc-chatbot-widget__input-control .v-icon__svg {
  width: 24px;
  height: 24px;
  pointer-events: none;
}
.hellobc-chatbot-widget__record {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  display: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.hellobc-chatbot-widget__input-wrapper:has(:focus) .hellobc-chatbot-widget__record {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.hellobc-chatbot-widget__disclaimer {
  margin-top: 24px;
  padding: 0 24px;
  font-size: 11px;
  line-height: 1.43;
  letter-spacing: 0.03em;
  font-weight: 500;
  text-align: center;
  color: #b0afaf;
}
.hellobc-chatbot-widget__terms-and-conditions {
  display: inline-block;
  margin: 10px auto 0;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.03em;
  font-weight: 500;
  color: #b0afaf;
}

.hellobc-chatbot-widget-suggestion {
  border: 0;
  background: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 5px;
  width: 100%;
  height: 145px;
  padding: 16px 24px;
}
@media only screen and (min-width: 400px) {
  .hellobc-chatbot-widget-suggestion {
    width: 311px;
  }
}
.hellobc-chatbot-widget-suggestion__eyebrow {
  position: relative;
  z-index: 1;
  order: 1;
  display: flex;
  align-items: center;
  border-radius: 12px;
  height: 24px;
  padding: 0 13px 0 32px;
  background: #e0e0e0;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.2em;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  color: #939598;
}
.hellobc-chatbot-widget-suggestion__eyebrow:not(:last-child) {
  margin-bottom: 16px;
}
.hellobc-chatbot-widget-suggestion__eyebrow-icon {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  background-color: white;
  pointer-events: none;
}
.hellobc-chatbot-widget-suggestion__eyebrow-icon .v-icon__svg {
  width: 16px;
  height: 16px;
}
.hellobc-chatbot-widget-suggestion__content {
  z-index: 2;
  order: 2;
  font-size: 16px;
  line-height: 1.43;
  font-weight: 500;
  text-align: left;
  color: white;
}
.hellobc-chatbot-widget-suggestion__image {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  order: 0;
  width: 100%;
  height: 100%;
}
.hellobc-chatbot-widget-suggestion:hover .hellobc-chatbot-widget-suggestion__image {
  transform: scale(1.1);
}
.hellobc-chatbot-widget-suggestion__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.hellobc-chatbot-widget-message {
  font-weight: 500;
  color: #333;
}
.hellobc-chatbot-widget__welcome-message + .hellobc-chatbot-widget-message, .hellobc-chatbot-widget__suggestions + .hellobc-chatbot-widget-message, .hellobc-chatbot-widget__newsletter-signup + .hellobc-chatbot-widget-message {
  border-top: 1px solid #dbdbdb;
  padding-top: 32px;
}
.hellobc-chatbot-widget-message:not(:last-child) {
  margin-bottom: 64px;
}
.hellobc-chatbot-widget-message__sender {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 14px;
  line-height: 1.43;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #333333;
}
.hellobc-chatbot-widget-message__sender .v-icon__svg {
  width: 24px;
  height: 24px;
}
.hellobc-chatbot-widget-message--user .hellobc-chatbot-widget-message__sender .v-icon__svg {
  color: #76ACA9;
}
.hellobc-chatbot-widget-message--ai .hellobc-chatbot-widget-message__sender .v-icon__svg {
  color: #A8483D;
}
.hellobc-chatbot-widget-message__response {
  font-size: 16px;
  line-height: 1.43;
  letter-spacing: 0.03em;
}
.hellobc-chatbot-widget-message__response:not(:last-child), .hellobc-chatbot-widget-message__response p {
  margin-bottom: 16px;
}
.hellobc-chatbot-widget-message__actions {
  display: flex;
  gap: 16px;
}
.hellobc-chatbot-widget-message__actions:not(:last-child) {
  margin-bottom: 5px;
}
.hellobc-chatbot-widget-message__action {
  border: 0;
  background: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
  margin: -5px;
  padding: 5px;
  color: #333;
}
.hellobc-chatbot-widget-message__action .v-icon__svg {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  width: 24px;
  height: 24px;
  color: inherit;
  pointer-events: none;
}
.hellobc-chatbot-widget-message__action[disabled] {
  opacity: 0.4;
}
.hellobc-chatbot-widget-message__actions:not(:has(.rated)) .hellobc-chatbot-widget-message__action--like:not([disabled]):hover, .hellobc-chatbot-widget-message__actions:not(:has(.rated)) .hellobc-chatbot-widget-message__action--like:not([disabled]):focus, .hellobc-chatbot-widget-message__actions:not(:has(.rated)) .hellobc-chatbot-widget-message__action--dislike:not([disabled]):hover, .hellobc-chatbot-widget-message__actions:not(:has(.rated)) .hellobc-chatbot-widget-message__action--dislike:not([disabled]):focus {
  color: #76ACA9;
}
.hellobc-chatbot-widget-message__action.rated {
  opacity: 1;
  color: #76ACA9;
}
.hellobc-chatbot-widget-message__action--copy:hover, .hellobc-chatbot-widget-message__action--copy:focus, .hellobc-chatbot-widget-message__action--tts:hover, .hellobc-chatbot-widget-message__action--tts:focus {
  color: #76ACA9;
}
.hellobc-chatbot-widget-message__action--tts {
  display: none;
}
.hellobc-chatbot-widget-message__follow-up-questions {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 1px;
}
.hellobc-chatbot-widget-message__follow-up-questions:has(*) {
  display: flex;
}
.hellobc-chatbot-widget-message__follow-up-question-container {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
}
.hellobc-chatbot-widget-message__follow-up-question-container .v-icon__svg {
  position: relative;
  top: 5px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: #76ACA9;
}
.hellobc-chatbot-widget-message__follow-up-question-container:not(:first-child) .v-icon__svg {
  display: none;
}
.hellobc-chatbot-widget-message__follow-up-question {
  border: 0;
  background: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
  display: flex;
  gap: 8px;
  border: 1px solid #76ACA9;
  border-radius: 7px;
  padding: 1px 8px;
  font-size: 16px;
  line-height: 1.42;
  letter-spacing: 0.03em;
  font-weight: 500;
  color: #76ACA9;
}

/*# sourceMappingURL=hellobc-chatbot-widget.css.map */