@import "https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap";
#treel-chat {
  font-family: Manrope, sans-serif;
  --black: #000;
  --white: #fff;
  --alpha-black-70: rgba(0, 0, 0, 0.7);
  --Content-Primary: #3b3040;
  --Content-Secondary: #676273;
  --Content-Tertiary: #8f8b99;
  --Content-Muted: #a6a4b2;
  --Content-Inverse: #ffffff;
  --Content-AI: #cc285f;
  --primary-10: #bf0040;
  --secondary-20: rgba(242, 87, 35, 1);
  --assistant-25: #66688f;
  --assistant-30: #ffebf1;
  --assistant-40: rgba(249, 247, 250, 1);
  --assistant-41: rgba(247, 245, 238, 1);
  --assistant-50: #f6f7ff;
  --assistant-gradient-color-1: #f25824;
  --assistant-gradient-color-2: #f22469;
  --gradient-brand: linear-gradient(
    45deg,
    var(--assistant-gradient-color-1) 0%,
    var(--assistant-gradient-color-2) 100%
  );
  --input-gradient-color-1: #e52284;
  --input-gradient-color-2: #e55322;
  --gradient-input: linear-gradient(
    90deg,
    var(--input-gradient-color-1) 0%,
    var(--input-gradient-color-2) 100%
  );
  --neutral-10: #797a75;
  --neutral-20: #a6a7a4;
  --neutral-30: #c9cac6;
  --neutral-40: #e7e8e5;
  --neutral-50: #f6f7f4;
  --neutral-60: #f9f9f8;
  --alert-20: #dd4363;
  --alert-30: #ffdde4;
  --display-toggle-size: 50px;
  --display-toggle-inline-inset: 20px;
  --display-toggle-block-inset: 20px;
  --floating-suggestions-gap: 10px;
  --Sizing-size-xxs: 30px;
  --Sizing-size-s: 40px;
  --Sizing-size-l: 50px;
  --Spacing-space-none: 0px;
  --Spacing-space-s: 20px;
}
.assistant-widget h1,
.assistant-widget h2,
.assistant-widget h3,
.assistant-widget h4,
.assistant-widget h5,
.assistant-widget h6 {
  margin: 0;
}
.assistant-widget h1 {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}
.assistant-widget h2 {
  font-size: 19px;
  font-weight: 600;
  line-height: 26px;
}
.assistant-widget h3 {
  font-size: 17px;
  font-weight: 600;
  line-height: 24px;
}
.assistant-widget h4 {
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
}
.assistant-widget span,
.assistant-widget p,
.assistant-widget a,
.assistant-widget label,
.assistant-widget input,
.assistant-widget button,
.assistant-widget code {
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
}
.assistant-widget code {
  white-space: break-spaces;
}
.assistant-widget ul,
.assistant-widget ol {
  padding-inline-start: 1rem;
  margin: 0;
}
.assistant-widget ol ul {
  list-style-type: disc;
}
.assistant-widget li {
  line-height: 20px;
}
.assistant-widget li ul,
.assistant-widget li ol,
.assistant-widget li + li {
  margin-block-start: 4px;
}
.assistant-widget p {
  margin: 0;
}
.typography-caption-regular {
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px;
}
.typography-body-2-regular {
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.body-large {
  font-size: 17px !important;
}
.body-small {
  font-size: 15px !important;
}
.caption {
  font-size: 13px !important;
}
@media screen and (max-width: 600px) {
  .body-large {
    font-size: 19px !important;
  }
  .body-small {
    font-size: 16px !important;
  }
  .caption {
    font-size: 14px !important;
  }
}
.floating-suggestions.s-uxfv-7cOH5Dp {
  position: relative;
  --button-height: 46px;
}
@media screen and (max-width: 600px) {
  .floating-suggestions.s-uxfv-7cOH5Dp {
    display: none;
  }
}
@media screen and (min-width: 601px) {
  .floating-suggestions.s-uxfv-7cOH5Dp {
    display: grid;
    justify-items: end;
    gap: 8px;
    visibility: visible;
    max-height: var(--button-height);
    overflow: hidden;
  }
  button.askAssistantButton.s-uxfv-7cOH5Dp {
    animation: s-uxfv-7cOH5Dp-showUp 0.3s ease-out forwards;
  }
}
.hide.s-uxfv-7cOH5Dp {
  display: none;
  visibility: hidden;
}
button.s-uxfv-7cOH5Dp {
  display: flex;
  gap: 8px;
  width: fit-content;
  padding: 12px;
  border-radius: 10px;
  border-width: 1px;
  border-style: solid;
  border-color: #fce;
  background: linear-gradient(90deg, #ffebf1, #fff2e6);
  cursor: pointer;
  color: var(--primary-10);
  transition:
    transform 0.3s,
    opacity 0.3s,
    background-color 0.3s;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
}
button.s-uxfv-7cOH5Dp:hover {
  background-color: var(--assistant-50);
}
@keyframes s-uxfv-7cOH5Dp-showUp {
  0% {
    transform: translate(100%) scale(0.1);
    opacity: 0;
  }
  to {
    transform: translate(0) scale(1);
    opacity: 1;
  }
}
.hide-on-mobile.s-vT5v7NCTFOvB {
  display: flex;
  visibility: visible;
}
.hide-on-desktop.s-vT5v7NCTFOvB {
  display: none;
  visibility: hidden;
}
@media screen and (max-width: 600px) {
  .hide-on-mobile.s-vT5v7NCTFOvB {
    display: none;
    visibility: hidden;
  }
  .hide-on-desktop.s-vT5v7NCTFOvB {
    display: flex;
    visibility: visible;
  }
}
.modal-dialog.s-CbKqU8tqPnSX.s-CbKqU8tqPnSX {
  box-sizing: border-box;
  border: none;
  position: fixed;
  visibility: hidden;
  border-radius: 16px;
  background: var(--white);
  box-shadow:
    -2px 0 5px #0000000d,
    -8px 0 20px #0000001a;
  overflow: hidden;
  max-height: unset;
  max-width: unset;
  padding: 0;
  inset-block-start: 10px;
  inset-inline-start: unset;
  inset-inline-end: 10px;
  margin: unset;
}
.overlay.s-CbKqU8tqPnSX.s-CbKqU8tqPnSX {
  height: 100vh;
  width: 100vw;
  position: fixed;
  inset-inline-start: 0;
  inset-block-start: 0;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  z-index: -1;
}
.modal-dialog.opened.s-CbKqU8tqPnSX.s-CbKqU8tqPnSX {
  visibility: visible;
  height: calc(100dvh - 20px);
  width: 550px;
  animation: s-CbKqU8tqPnSX-zoom 0.5s cubic-bezier(0.34, 0.9, 0.64, 1);
}
.modal-dialog.opened.s-CbKqU8tqPnSX .overlay.s-CbKqU8tqPnSX {
  animation: s-CbKqU8tqPnSX-fade 0.2s ease-out;
}
@keyframes s-CbKqU8tqPnSX-zoom {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes s-CbKqU8tqPnSX-fade {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media screen and (max-width: 600px) {
  .modal-dialog.opened.s-CbKqU8tqPnSX.s-CbKqU8tqPnSX {
    inset-inline-start: 0;
    width: 100%;
    border-radius: 0;
    inset-block-start: 0;
    inset-block-end: 0;
    height: 100%;
    max-height: 100%;
  }
}
.button.s-5xw9RGpuDz7F {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.75px;
  transition:
    color 0.3s,
    background-color 0.3s;
}
.button.s-5xw9RGpuDz7F:disabled {
  color: var(--neutral-10);
  background: var(--neutral-40);
  pointer-events: none;
}
.primary.s-5xw9RGpuDz7F:not(:disabled) {
  color: var(--white);
  background: #4fa741;
}
.primary.s-5xw9RGpuDz7F:not(:disabled):hover,
.primary.s-5xw9RGpuDz7F:not(:disabled):focus-visible {
  background: #2b941a;
}
.primary.s-5xw9RGpuDz7F:not(:disabled):active {
  background: #0e6e0a;
}
.toned.s-5xw9RGpuDz7F:not(:disabled) {
  color: var(--toned-color);
  background: var(--toned-bg-color);
}
.toned.s-5xw9RGpuDz7F:not(:disabled):hover,
.toned.s-5xw9RGpuDz7F:not(:disabled):focus-visible {
  color: var(--toned-color-hover);
  background: var(--toned-bg-color-hover);
}
.toned.s-5xw9RGpuDz7F:not(:disabled):active {
  background: var(--toned-bg-color-active);
}
.regular.s-5xw9RGpuDz7F {
  height: 50px;
  padding: 0 24px;
}
.dense.s-5xw9RGpuDz7F {
  height: 40px;
  padding: 0 16px;
}
.oops.s-qo8lXgh12X8w.s-qo8lXgh12X8w {
  display: flex;
  padding: 40px 80px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--Spacing-space-s, 20px);
  flex: 1 0 0;
  align-self: stretch;
}
.oops.s-qo8lXgh12X8w div.s-qo8lXgh12X8w {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.oops.s-qo8lXgh12X8w span.s-qo8lXgh12X8w {
  color: #000;
  text-align: center;
}
.text.s-qo8lXgh12X8w.s-qo8lXgh12X8w {
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.title.s-qo8lXgh12X8w.s-qo8lXgh12X8w {
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: 44px;
}
.footer-skeleton.s-5Pl3XGGkgzj1 {
  display: grid;
  grid-template-rows: repeat(2, min-content);
  gap: 8px;
  border-block-start: none;
  color: var(--neutral-20);
  padding-block: 0 8px;
  padding-inline: 20px;
}
input.s-5Pl3XGGkgzj1 {
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  padding: 12px 16px;
  background-color: transparent;
  border: 1px solid var(--neutral-40);
  border-radius: 25px;
  opacity: 0.5;
}
input.s-5Pl3XGGkgzj1::placeholder {
  color: var(--neutral-30);
}
span.s-5Pl3XGGkgzj1 {
  color: #797a75;
  text-align: center;
  font-feature-settings:
    "clig" off,
    "liga" off;
  font-size: 11px;
  font-weight: 400;
  line-height: 16px;
  white-space: break-spaces;
  word-wrap: break-word;
}
@media screen and (max-width: 600px) {
  .footer-skeleton.s-5Pl3XGGkgzj1 {
    padding-block-start: 0;
  }
  span.s-5Pl3XGGkgzj1 {
    display: none;
    visibility: hidden;
  }
}
.avatar.s-aYs66fnJBZ0D.s-aYs66fnJBZ0D {
  grid-area: avatar;
  border-radius: 50%;
  height: 32px;
  width: 32px;
}
.name.s-aYs66fnJBZ0D.s-aYs66fnJBZ0D {
  grid-area: name;
  border-radius: 100px;
  height: 15px;
  width: 42px;
  margin-block-start: 4px;
  margin-block-end: 12px;
}
.content.s-aYs66fnJBZ0D.s-aYs66fnJBZ0D {
  grid-area: content;
  border-radius: 10px;
  height: 30px;
  width: 240px;
}
.skeleton-message.s-aYs66fnJBZ0D.s-aYs66fnJBZ0D {
  display: grid;
  grid-template-areas: "avatar name" ". content";
  column-gap: 12px;
  grid-template-columns: 32px 1fr;
  grid-template-rows: auto 1fr;
}
.skeleton-message.s-aYs66fnJBZ0D > .s-aYs66fnJBZ0D {
  background-color: var(--neutral-30);
  background-image: linear-gradient(
    90deg,
    var(--neutral-40) 0px,
    var(--neutral-50) 90px,
    var(--neutral-40) 180px
  );
  background-size: 470px;
  animation: shine-animation 1.75s infinite linear;
}
.content-skeleton.s-FpI1e29Km2rk {
  display: grid;
  grid-template-rows: repeat(4, min-content);
  gap: 24px;
  padding: 20px;
  margin-block-start: auto;
}
.modal-content-container.s-pii6owsw2YWQ {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.footer-wrapper.s-pii6owsw2YWQ {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #ffffffd9;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
@media screen and (max-width: 600px) {
  .modal-content-container.s-pii6owsw2YWQ {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .footer-wrapper.s-pii6owsw2YWQ {
    position: relative;
    margin-top: auto;
    flex-shrink: 0;
    bottom: auto;
  }
}
.container.s-c7K3tzCuheNy.s-c7K3tzCuheNy {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.container.s-c7K3tzCuheNy.s-c7K3tzCuheNy header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: 16px 20px;
  padding-block: 18px;
  flex-shrink: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fffc;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.title.s-c7K3tzCuheNy.s-c7K3tzCuheNy {
  box-sizing: border-box;
  width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 24px;
}
.close.s-c7K3tzCuheNy.s-c7K3tzCuheNy {
  display: inline-flex;
  align-items: center;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  color: var(--black);
}
.widgetLogo.s-c7K3tzCuheNy.s-c7K3tzCuheNy {
  display: inline-grid;
  grid-template-columns: 26px 1fr;
  align-items: center;
  flex-grow: 1;
  gap: 1ex;
  pointer-events: none;
}
.widgetLogo.s-c7K3tzCuheNy.s-c7K3tzCuheNy .body-large {
  height: 22px;
}
.disclaimer-mobile.s-c7K3tzCuheNy.s-c7K3tzCuheNy {
  display: none;
  visibility: hidden;
  text-align: center;
  max-width: 100%;
}
.modal-content-wrapper.s-c7K3tzCuheNy.s-c7K3tzCuheNy {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
#assistantWidgetContainer.s-c7K3tzCuheNy.s-c7K3tzCuheNy {
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: var(--floating-suggestions-gap);
  inset-inline-end: var(--display-toggle-inline-inset);
  inset-block-end: var(--display-toggle-block-inset);
}
.expandedWidgetContainer.s-c7K3tzCuheNy.s-c7K3tzCuheNy {
  box-shadow: 0 8px 40px -8px #0000001a;
}
#assistantToggle.s-c7K3tzCuheNy.s-c7K3tzCuheNy {
  display: flex;
  width: var(--display-toggle-size);
  height: var(--display-toggle-size);
  padding: 13px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
  border-radius: 100px;
  background: var(--gradient-brand);
  box-shadow: 4px -4px 8px #ff8f40 inset;
  box-shadow: -4px 4px 8px #ff66b2 inset;
}
.assistant-widget div {
  box-sizing: border-box;
}
@media screen and (max-width: 600px) {
  .title.s-c7K3tzCuheNy.s-c7K3tzCuheNy {
    position: relative;
    display: grid;
    place-content: center;
  }
  .close.s-c7K3tzCuheNy.s-c7K3tzCuheNy {
    position: absolute;
    inset-inline-end: 0;
  }
  .widgetLogo.s-c7K3tzCuheNy.s-c7K3tzCuheNy {
    justify-content: center;
  }
  .disclaimer-mobile.s-c7K3tzCuheNy.s-c7K3tzCuheNy {
    display: flex;
    visibility: visible;
    justify-content: center;
    margin-top: 8px;
  }
}
@media screen and (max-width: 400px) {
  .container.s-c7K3tzCuheNy header.s-c7K3tzCuheNy {
    padding-inline: 0;
  }
  .title.s-c7K3tzCuheNy.s-c7K3tzCuheNy {
    padding-inline: 16px 18px;
  }
  .disclaimer-mobile.s-c7K3tzCuheNy.s-c7K3tzCuheNy {
    padding-inline: 10px;
  }
}
.container.s-Kd7slrJyo7Jm {
  display: flex;
  padding: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  -webkit-user-select: none;
  user-select: none;
}
.failed-to-load-box.s-Kd7slrJyo7Jm {
  display: flex;
  height: 50px;
  padding: 0 10px 0 15px;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  background: var(--black);
}
span.s-Kd7slrJyo7Jm {
  color: var(--white);
}
button.s-Kd7slrJyo7Jm {
  display: flex;
  height: 35px;
  padding: 0 10px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
  gap: 5px;
  color: #89db6d;
  -webkit-tap-highlight-color: transparent;
  transition: 0.3s color;
}
button.s-Kd7slrJyo7Jm:hover {
  color: #6f9e3f;
}
.suggestion-skeleton.s-wBvj2sWgWs8W {
  display: grid;
  grid-template-rows: repeat(2, min-content);
  gap: 8px;
  padding: 16px 10px;
}
.line.s-wBvj2sWgWs8W {
  height: 11px;
  width: 230px;
  border-radius: 10px;
  background-image: linear-gradient(
    244deg,
    var(--neutral-40) 0px,
    var(--neutral-50) 60px,
    var(--neutral-40) 120px
  );
  background-size: 470px;
  animation: shine-animation 1.75s infinite linear;
}
.second.s-wBvj2sWgWs8W {
  width: 180px;
}
.suggestions-skeleton.s-1ua7jMKEZoQR {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-block-start: 2px;
}
.help-container.s-GNK08OqWWP00.s-GNK08OqWWP00 {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.help-container.s-GNK08OqWWP00.s-GNK08OqWWP00 > div {
  max-width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.help-container.s-GNK08OqWWP00.s-GNK08OqWWP00 > div span {
  align-self: stretch;
  color: #797a75;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
}
.suggestions.s-GNK08OqWWP00.s-GNK08OqWWP00 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  flex-wrap: wrap;
  margin-top: 20px;
}
.suggestions.s-GNK08OqWWP00.s-GNK08OqWWP00 button {
  display: flex;
  padding: 12px 16px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2px;
  border-radius: 12px;
  background-color: var(--assistant-40);
  cursor: pointer;
  border: none;
  transition: background-color 0.3s ease-out;
}
.suggestions.s-GNK08OqWWP00.s-GNK08OqWWP00 button:hover {
  background-color: var(--assistant-41);
}
.suggestions.s-GNK08OqWWP00.s-GNK08OqWWP00 button span:nth-child(1) {
  color: #000;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
}
.suggestions.s-GNK08OqWWP00.s-GNK08OqWWP00 button span:nth-child(2) {
  color: var(--assistant-25);
  font-size: 13px;
  font-weight: 400;
  line-height: 17px;
  text-align: left;
}
@media screen and (max-width: 600px) {
  .suggestions.s-GNK08OqWWP00.s-GNK08OqWWP00 {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    min-height: 83px;
    margin-inline-end: -16px;
    padding-bottom: 8px;
    flex-direction: column;
  }
  .suggestions.s-GNK08OqWWP00.s-GNK08OqWWP00::-webkit-scrollbar {
    display: none;
  }
  .suggestions.s-GNK08OqWWP00 button.s-GNK08OqWWP00 {
    flex: none;
    max-width: 70%;
  }
}
@media screen and (max-width: 340px) {
  .suggestions.s-GNK08OqWWP00 button.s-GNK08OqWWP00 {
    max-width: 90%;
  }
}
.indicatorContainer.s-tsDxMGONiopw.s-tsDxMGONiopw {
  display: flex;
  width: 474px;
  align-items: flex-start;
  gap: 12px;
}
.typingIndicator.s-tsDxMGONiopw.s-tsDxMGONiopw {
  display: flex;
  padding: 10px 15px;
  flex-direction: row;
  align-items: flex-start;
  border-radius: 20px;
  background: #f6f7f4;
  position: relative;
  gap: 4px;
}
.typingIndicator.s-tsDxMGONiopw span.s-tsDxMGONiopw {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 100%;
  background-color: #a6a7a4;
  opacity: 0;
}
.typingIndicator.s-tsDxMGONiopw span.s-tsDxMGONiopw:nth-child(1) {
  animation: s-tsDxMGONiopw-opacitychange 1s ease-in-out infinite;
}
.typingIndicator.s-tsDxMGONiopw span.s-tsDxMGONiopw:nth-child(2) {
  animation: s-tsDxMGONiopw-opacitychange 1s ease-in-out 0.33s infinite;
}
.typingIndicator.s-tsDxMGONiopw span.s-tsDxMGONiopw:nth-child(3) {
  animation: s-tsDxMGONiopw-opacitychange 1s ease-in-out 0.66s infinite;
}
@keyframes s-tsDxMGONiopw-opacitychange {
  0%,
  to {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
}
@media screen and (max-width: 600px) {
  .indicatorContainer.s-tsDxMGONiopw.s-tsDxMGONiopw {
    width: 100%;
  }
}
.chat-display.s-nPgM6n4uJmSd {
  --message-status-success: inline-flex;
  padding: 110px 10px 120px;
  padding-inline-end: 5px;
  background-color: #fff;
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  overscroll-behavior: contain;
}
.chat-display.s-nPgM6n4uJmSd::-webkit-scrollbar {
  display: none;
}
.message-list.s-nPgM6n4uJmSd {
  display: flex;
  flex-direction: column;
  margin-inline: auto;
  max-width: 800px;
  overflow: hidden;
}
.chat-display.failed.s-nPgM6n4uJmSd .message:not(:has(+ .message)) {
  --message-bg: #d0021b;
  --message-status-color: var(--alert-30);
  --message-status-failed: inline-flex;
  --message-status-success: none;
}
.chat-display.sending.s-nPgM6n4uJmSd .message:not(:has(+ .message)) {
  --message-status-sending: inline-flex;
  --message-status-success: none;
  --message-status-failed: none;
}
@media screen and (max-width: 600px) {
  .chat-display.s-nPgM6n4uJmSd {
    padding: 130px 10px 20px;
    height: auto;
  }
  .message-list.s-nPgM6n4uJmSd {
    gap: 10px;
  }
}
.disclaimer-button.s-LtsGawaQnyvU.s-LtsGawaQnyvU {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 13px;
  color: var(--neutral-10);
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  outline: none;
}
.disclaimer-button.s-LtsGawaQnyvU.s-LtsGawaQnyvU:hover {
  text-decoration: underline;
}
.disclaimer-button.s-LtsGawaQnyvU.s-LtsGawaQnyvU:focus {
  outline: none;
}
.disclaimer-button.s-LtsGawaQnyvU svg.s-LtsGawaQnyvU {
  flex-shrink: 0;
}
@media screen and (max-width: 600px) {
  .disclaimer-button.s-LtsGawaQnyvU.s-LtsGawaQnyvU {
    font-size: 12px;
  }
  .disclaimer-button.s-LtsGawaQnyvU svg.s-LtsGawaQnyvU {
    width: 14px;
    height: 14px;
  }
}
.icon.s-HHZ7BzwcILGp {
  fill: #fff;
  color: #fff;
}
.icon-disabled.s-HHZ7BzwcILGp {
  fill: #a6a7a4;
  color: #a6a7a4;
}
@media screen and (max-width: 600px) {
  .icon-disabled.s-HHZ7BzwcILGp {
    fill: #d9d9d9;
    color: #d9d9d9;
  }
}
.chat-field.s-oNq8FGfeyE4N.s-oNq8FGfeyE4N {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  background: #fff;
}
.input-wrapper.s-oNq8FGfeyE4N.s-oNq8FGfeyE4N {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  background:
    linear-gradient(#fff 0, #fff 0) padding-box,
    var(--gradient-brand) border-box;
  border: 1px solid transparent;
  padding: 1px;
  border-radius: 25px;
  transition: border-color 0.3s;
}
.input-wrapper.s-oNq8FGfeyE4N .text-input.s-oNq8FGfeyE4N::placeholder {
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  color: var(--neutral-20);
  opacity: 1;
}
.input-wrapper.s-oNq8FGfeyE4N.s-oNq8FGfeyE4N:disabled {
  background-color: #f6f7f4;
  border-color: #c9cac6;
  border: 1px solid #f6f7f4;
}
button.s-oNq8FGfeyE4N.s-oNq8FGfeyE4N {
  position: absolute;
  inset-inline-end: 5px;
  width: 32px;
  height: 32px;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 100px;
  background-color: var(--secondary-20);
  transition: background-color 0.3s ease;
}
button.s-oNq8FGfeyE4N.s-oNq8FGfeyE4N:disabled {
  position: absolute;
  inset-inline-end: 5px;
  border: none;
  background: none;
  padding: 5px;
  pointer-events: none;
  cursor: not-allowed;
}
.text-input.s-oNq8FGfeyE4N.s-oNq8FGfeyE4N {
  background: transparent;
  color: var(--Content-Primary);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  transition: all 0.3s;
  flex-grow: 1;
  padding: 12px 48px 12px 16px;
  caret-color: #e53a53;
  border: none;
  outline: none;
  resize: none;
  min-height: 20px;
  max-height: 80px;
  font-family: inherit;
  display: block;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.text-input.s-oNq8FGfeyE4N.s-oNq8FGfeyE4N::-webkit-scrollbar {
  display: none;
}
.text-input.s-oNq8FGfeyE4N.s-oNq8FGfeyE4N:disabled,
.text-input.s-oNq8FGfeyE4N.s-oNq8FGfeyE4N:disabled::placeholder {
  color: #c9cac6;
}
.hide-on-desktop.s-oNq8FGfeyE4N.s-oNq8FGfeyE4N {
  display: none;
  visibility: hidden;
}
.hide-on-phone.s-oNq8FGfeyE4N.s-oNq8FGfeyE4N {
  display: flex;
  visibility: visible;
}
@media screen and (max-width: 600px) {
  form.s-oNq8FGfeyE4N.s-oNq8FGfeyE4N {
    width: 100%;
  }
  .chat-field.s-oNq8FGfeyE4N.s-oNq8FGfeyE4N {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
  }
  .input-wrapper.s-oNq8FGfeyE4N.s-oNq8FGfeyE4N {
    display: flex;
    flex: 1 0 0;
    position: relative;
    border-radius: 25px;
  }
  button.s-oNq8FGfeyE4N.s-oNq8FGfeyE4N {
    position: static;
    display: flex;
    width: 40px;
    height: 40px;
    padding: 8px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
  }
  button.s-oNq8FGfeyE4N.s-oNq8FGfeyE4N:disabled {
    position: static;
    background: #f6f7f4;
    width: 40px;
    height: 40px;
    padding: 8px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 100px;
  }
  .hide-on-phone.s-oNq8FGfeyE4N.s-oNq8FGfeyE4N {
    display: none;
    visibility: hidden;
  }
  .input-wrapper.s-oNq8FGfeyE4N:has(textarea:focus)
    + button.hide-on-desktop.s-oNq8FGfeyE4N,
  .input-wrapper.s-oNq8FGfeyE4N:has(textarea:not(:placeholder-shown))
    + button.hide-on-desktop.s-oNq8FGfeyE4N {
    display: flex;
    visibility: visible;
  }
}
.input-wrapper.s-oNq8FGfeyE4N.s-oNq8FGfeyE4N:has(textarea:focus) {
  border: 1px solid var(--neutral-30);
}
.input-wrapper.s-oNq8FGfeyE4N.s-oNq8FGfeyE4N:has(textarea:focus)
  textarea::placeholder {
  opacity: 0.4;
}
.input-wrapper.s-oNq8FGfeyE4N:has(textarea:placeholder-shown)
  button.s-oNq8FGfeyE4N {
  display: none;
}
.badges-container.s-9zmN9XXG3Y3e {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.badges-container.mobile.s-9zmN9XXG3Y3e {
  align-items: center;
}
.badge-link.s-9zmN9XXG3Y3e {
  display: inline-block;
  line-height: 0;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}
.badge-link.s-9zmN9XXG3Y3e:hover {
  transform: scale(1.05);
  opacity: 0.9;
}
.badge-link.s-9zmN9XXG3Y3e:active {
  transform: scale(0.98);
}
.cta-banner-container.s-TC2HffVfaso8 {
  padding: 12px 16px;
  width: 100%;
}
.cta-banner.s-TC2HffVfaso8 {
  width: 100%;
  display: flex;
  align-items: center;
  border-radius: 24px;
  overflow: hidden;
}
.login-cta.s-TC2HffVfaso8 {
  padding: 16px;
  background: var(--Fill-Bg-Warm, #fcf6f0);
  flex-direction: column;
  gap: 16px;
}
.cta-content.s-TC2HffVfaso8 {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 4px;
}
.icon-wrapper.s-TC2HffVfaso8 {
  flex-shrink: 0;
}
.text-content.s-TC2HffVfaso8 {
  flex: 1;
  color: var(--Content-Primary, #3b3040);
  font-size: 16px;
  line-height: 20.8px;
}
.text-bold.s-TC2HffVfaso8 {
  font-family: Manrope, system-ui, sans-serif;
  font-weight: 700;
}
.text-regular.s-TC2HffVfaso8 {
  font-family: Manrope, system-ui, sans-serif;
  font-weight: 500;
}
.text-medium.s-TC2HffVfaso8 {
  font-family: Manrope, system-ui, sans-serif;
  font-weight: 600;
}
.cta-button.s-TC2HffVfaso8 {
  border: none;
  cursor: pointer;
  font-family: Figtree, system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0.75px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  border-radius: 16px;
  overflow: hidden;
}
.cta-button.primary.s-TC2HffVfaso8 {
  background: linear-gradient(
    90deg,
    var(--Gradient-Primary-Stop-1, #79b33f) 0%,
    var(--Gradient-Primary-Stop-2, #79b33f) 100%
  );
  padding: 10px 24px;
  height: 50px;
  width: 100%;
}
.cta-button.s-TC2HffVfaso8:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px #79b33f4d;
}
.cta-button.s-TC2HffVfaso8:active {
  transform: translateY(0);
}
.app-cta.s-TC2HffVfaso8 {
  padding: 12px;
  background: linear-gradient(90deg, #ffeae5, #fff4e5);
  gap: 12px;
}
.app-icon-wrapper.s-TC2HffVfaso8 {
  flex-shrink: 0;
}
.app-content.s-TC2HffVfaso8 {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.app-text.s-TC2HffVfaso8 {
  color: #a62900;
  font-size: 16px;
  line-height: 20.8px;
}
.app-subtitle.s-TC2HffVfaso8 {
  display: none;
}
.badges-wrapper.s-TC2HffVfaso8 {
  display: flex;
  align-items: center;
}
@media (min-width: 600px) {
  .cta-banner-container.s-TC2HffVfaso8 {
    padding: 20px;
  }
  .login-cta.s-TC2HffVfaso8 {
    flex-direction: row;
    height: 80px;
    padding: 16px;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
  }
  .cta-content.s-TC2HffVfaso8 {
    flex: 1;
    padding: 4px;
  }
  .cta-button.primary.s-TC2HffVfaso8 {
    width: 120px;
    height: 40px;
    padding: 10px 16px;
  }
  .app-cta.s-TC2HffVfaso8 {
    flex-direction: row;
    padding: 16px;
    gap: 16px;
    border-radius: 32px;
  }
  .app-content.s-TC2HffVfaso8 {
    justify-content: center;
  }
  .app-text.s-TC2HffVfaso8 {
    color: var(--Content-Primary, #3b3040);
  }
  .app-subtitle.s-TC2HffVfaso8 {
    display: block;
    color: var(--Content-Secondary, #676273);
    font-size: 12px;
    font-family: Manrope, system-ui, sans-serif;
    font-weight: 500;
    line-height: 15.6px;
  }
  .badges-wrapper.s-TC2HffVfaso8 {
    flex-direction: column;
    gap: 8px;
  }
}
@media (max-width: 599px) {
  .app-cta.s-TC2HffVfaso8 {
    border-radius: 20px;
  }
  .badges-wrapper.s-TC2HffVfaso8 .badges-container {
    align-items: center;
  }
}
:root {
  --Fill-Bg-Warm: #fcf6f0;
  --Content-Primary: #3b3040;
  --Content-Secondary: #676273;
  --Gradient-Primary-Stop-1: #79b33f;
  --Gradient-Primary-Stop-2: #79b33f;
}
.footer-container.s-1erdp_PvG-Jl {
  display: flex;
  flex-direction: column;
}
.input-container.s-1erdp_PvG-Jl {
  display: grid;
  grid-template-rows: repeat(2, min-content);
  gap: 8px;
  border-block-start: none;
  color: var(--neutral-20);
  padding-block: 0 8px;
  padding-inline: 20px;
}
.disclaimer-container.s-1erdp_PvG-Jl {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .input-container.s-1erdp_PvG-Jl {
    padding-block: 10px 15px;
    padding-inline: 15px;
  }
  .disclaimer-container.s-1erdp_PvG-Jl {
    display: none;
    visibility: hidden;
  }
}
.thinking-status.s-KGK5A7vmDH43 {
  padding: 8px 20px;
  margin-top: 4px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.thinking-gradient.s-KGK5A7vmDH43 {
  font-size: 14px;
  font-weight: 600;
  background: linear-gradient(
    90deg,
    var(--neutral-10) 0%,
    var(--assistant-gradient-color-1) 35%,
    var(--assistant-gradient-color-2) 50%,
    var(--assistant-gradient-color-1) 65%,
    var(--neutral-10) 100%
  );
  background-size: 400px 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: s-KGK5A7vmDH43-gradient-shift 3s linear infinite;
}
@keyframes s-KGK5A7vmDH43-gradient-shift {
  0% {
    background-position-x: 0;
  }
  to {
    background-position-x: 400px;
  }
}
svg.s-Q_eLaVBT2Cpk {
  display: block;
}
.carousel-header.s-F1_Ul9KkB88J {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  height: 40px;
  opacity: 1;
  transition:
    0.3s height,
    0.3s opacity;
}
html:not([dir]) .hide-on-rtl,
[dir="rtl"] .hide-on-ltr.s-F1_Ul9KkB88J,
[dir="ltr"] .hide-on-rtl.s-F1_Ul9KkB88J {
  display: none;
}
.carousel-header.hide.s-F1_Ul9KkB88J {
  opacity: 0;
  height: 0;
}
.carousel-viewport.s-F1_Ul9KkB88J {
  overflow: hidden;
  margin-inline-end: -20px;
}
.carousel-viewport.s-F1_Ul9KkB88J.skeleton-container {
  display: flex;
  gap: 20px;
}
.carousel-container.s-F1_Ul9KkB88J {
  backface-visibility: hidden;
  touch-action: pan-y;
  display: flex;
  max-width: 500px;
  margin-inline-end: -30px;
}
.full-screen .carousel-container {
  max-width: calc(100vw - 40px);
}
.arrows-container.s-F1_Ul9KkB88J {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
}
.carousel-arrow.s-F1_Ul9KkB88J {
  background: transparent;
  border: none;
  padding: 8px;
  border-radius: 0;
  cursor: pointer;
  line-height: 0;
}
.dots-container.s-F1_Ul9KkB88J {
  display: flex;
  padding: 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.carousel-dot.s-F1_Ul9KkB88J {
  width: 8px;
  height: 8px;
  border: none;
  border-radius: 100%;
  background: var(--neutral-30);
  cursor: pointer;
  padding: 0;
  transition:
    width 0.3s ease,
    border-radius 0.3s ease;
}
.carousel-dot.active.s-F1_Ul9KkB88J {
  background: var(--black);
  width: 24px;
  border-radius: 10px;
}
@media screen and (min-width: 601px) {
  .carousel.s-F1_Ul9KkB88J {
    margin-inline-start: 44px;
  }
}
@media screen and (max-width: 600px) {
  .carousel.s-F1_Ul9KkB88J {
    width: calc(100vw - 32px);
  }
  .carousel-header.s-F1_Ul9KkB88J {
    display: none;
  }
  .carousel-container.s-F1_Ul9KkB88J {
    max-width: 344px;
  }
}
.slide.s-HwMlcMS3jn6L {
  --slide-spacing: 20px;
  flex: 0 0 200px;
  min-width: 0;
  max-width: 100%;
  margin-inline-end: var(--slide-spacing);
}
@media screen and (max-width: 600px) {
  .slide.s-HwMlcMS3jn6L {
    --slide-spacing: 16px;
    flex: 0 0 187px;
  }
}
@media screen and (min-width: 599px) {
  .slide.s-HwMlcMS3jn6L:last-child {
    flex: 0 0 210px;
  }
}
div.s-B_88P2P3ggVx {
  display: flex;
  flex-direction: column;
  gap: 0.6em;
}
.image.s-wHckl4XSACcy.s-wHckl4XSACcy {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.image.s-wHckl4XSACcy > img.s-wHckl4XSACcy {
  max-width: 100%;
}
.product-card-s.s-zd9epflE7Lmx.s-zd9epflE7Lmx {
  width: 100%;
  background: var(--Fill-Bg-Default, white);
  box-shadow: 0 4px 20px -8px #0000001a;
  overflow: hidden;
  border-radius: 24px;
  outline: 1px rgba(0, 0, 0, 0.05) solid;
  display: flex;
  flex-direction: column;
}
.frame-861.s-zd9epflE7Lmx.s-zd9epflE7Lmx {
  height: 230px;
  padding: 16px;
  position: relative;
  border-radius: 8px;
  display: flex;
  transition: background-color 0.2s ease;
}
.product-01.s-zd9epflE7Lmx.s-zd9epflE7Lmx {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.product-01 .image {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.product-01 .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.badge.s-zd9epflE7Lmx.s-zd9epflE7Lmx {
  position: absolute;
  top: 15px;
  left: 15px;
  min-width: 36px;
  height: 26px;
  padding: 0 8px;
  background: var(--Palette-Orange-30, #f29c24);
  overflow: hidden;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.label.s-zd9epflE7Lmx.s-zd9epflE7Lmx {
  padding: 0 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge_text.s-zd9epflE7Lmx.s-zd9epflE7Lmx {
  color: var(--Fill-Bg-Default, white);
  font-size: 14px;
  font-family: Manrope, system-ui, sans-serif;
  font-weight: 600;
  line-height: 18.2px;
  white-space: nowrap;
}
.clickable-area.s-zd9epflE7Lmx.s-zd9epflE7Lmx {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: left;
  transition: opacity 0.2s ease;
}
.clickable-area.s-zd9epflE7Lmx.s-zd9epflE7Lmx:hover {
  opacity: 0.95;
}
.clickable-area.s-zd9epflE7Lmx:hover .frame-861.s-zd9epflE7Lmx {
  background-color: var(--Palette-Neutral-98, #f9f9fc);
}
.clickable-area.s-zd9epflE7Lmx.s-zd9epflE7Lmx:focus {
  outline: none;
}
.clickable-area.s-zd9epflE7Lmx.s-zd9epflE7Lmx:focus-visible {
  outline: 2px solid #79b33f;
  outline-offset: 2px;
  border-radius: 24px;
}
.content-group.s-zd9epflE7Lmx.s-zd9epflE7Lmx {
  flex: 1;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.non-clickable-section.s-zd9epflE7Lmx.s-zd9epflE7Lmx {
  padding: 0 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.top-section.s-zd9epflE7Lmx.s-zd9epflE7Lmx {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.product-title.s-zd9epflE7Lmx.s-zd9epflE7Lmx {
  color: var(--Content-Primary, #3b3040);
  font-size: 16px;
  font-family: Manrope, system-ui, sans-serif;
  font-weight: 700;
  line-height: 20.8px;
  text-align: left;
  transition: color 0.2s ease;
}
.clickable-area.s-zd9epflE7Lmx:hover .product-title.s-zd9epflE7Lmx {
  color: #79b33f;
}
.description.s-zd9epflE7Lmx.s-zd9epflE7Lmx {
  color: var(--Content-Secondary, #676273);
  font-size: 14px;
  font-family: Manrope, system-ui, sans-serif;
  font-weight: 500;
  line-height: 18.2px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
.price-rate-group.s-zd9epflE7Lmx.s-zd9epflE7Lmx {
  display: flex;
  align-items: center;
}
.price-text.s-zd9epflE7Lmx.s-zd9epflE7Lmx {
  color: var(--Content-Primary, #3b3040);
  font-size: 16px;
  font-family: Manrope, system-ui, sans-serif;
  font-weight: 700;
  line-height: 20.8px;
}
.bottom-section.s-zd9epflE7Lmx.s-zd9epflE7Lmx {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.packaging-info.s-zd9epflE7Lmx.s-zd9epflE7Lmx {
  padding: 8px 12px;
  background: var(--Palette-Neutral-98, #f5f5fa);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.packaging-text.s-zd9epflE7Lmx.s-zd9epflE7Lmx {
  color: var(--Content-Secondary, #676273);
  font-size: 14px;
  font-family: Manrope, system-ui, sans-serif;
  font-weight: 500;
  line-height: 18.2px;
}
.button-primary.s-zd9epflE7Lmx.s-zd9epflE7Lmx {
  height: 40px;
  padding: 0 16px;
  background: linear-gradient(
    90deg,
    var(--Gradient-Primary-Stop-1, #79b33f) 0%,
    var(--Gradient-Primary-Stop-2, #79b33f) 100%
  );
  overflow: hidden;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.button-primary.s-zd9epflE7Lmx.s-zd9epflE7Lmx:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px #79b33f4d;
}
.button-primary.s-zd9epflE7Lmx.s-zd9epflE7Lmx:active:not(:disabled) {
  transform: translateY(0);
}
.button-primary.disabled.s-zd9epflE7Lmx.s-zd9epflE7Lmx,
.button-primary.s-zd9epflE7Lmx.s-zd9epflE7Lmx:disabled {
  background: var(--Palette-Neutral-98, #f5f5fa);
  cursor: not-allowed;
}
.button-text.s-zd9epflE7Lmx.s-zd9epflE7Lmx {
  color: #fff;
  font-size: 15px;
  font-family: Figtree, system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 20px;
  letter-spacing: 0.75px;
  text-align: center;
}
.button-primary.disabled.s-zd9epflE7Lmx .button-text.s-zd9epflE7Lmx,
.button-primary.s-zd9epflE7Lmx:disabled .button-text.s-zd9epflE7Lmx {
  color: #797a75;
}
@media screen and (max-width: 600px) {
  .product-card-s.s-zd9epflE7Lmx.s-zd9epflE7Lmx {
    width: 187px;
  }
  .frame-861.s-zd9epflE7Lmx.s-zd9epflE7Lmx {
    height: 200px;
  }
}
.task-logging-banner-container.s-W2o6JMVcBj_5 {
  padding: 12px 16px;
  width: 100%;
}
.task-logging-banner.s-W2o6JMVcBj_5 {
  width: 100%;
  display: flex;
  align-items: center;
  border-radius: 24px;
  background: linear-gradient(90deg, #e5f1ff, #f0f6ff);
  padding: 16px;
  gap: 16px;
}
.banner-icon-wrapper.s-W2o6JMVcBj_5 {
  flex-shrink: 0;
}
.banner-content.s-W2o6JMVcBj_5 {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.banner-text.s-W2o6JMVcBj_5 {
  color: var(--Content-Primary, #3b3040);
  font-size: 16px;
  line-height: 20.8px;
}
.app-info.s-W2o6JMVcBj_5 {
  display: none;
  color: var(--Content-Secondary, #676273);
  font-size: 12px;
  line-height: 15.6px;
}
.text-bold.s-W2o6JMVcBj_5 {
  font-family: Manrope, system-ui, sans-serif;
  font-weight: 700;
}
.text-regular.s-W2o6JMVcBj_5 {
  font-family: Manrope, system-ui, sans-serif;
  font-weight: 500;
}
.task-logging-button.s-W2o6JMVcBj_5 {
  background: #4169e1;
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 10px 24px;
  font-family: Figtree, system-ui, sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.task-logging-button.s-W2o6JMVcBj_5:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px #4169e14d;
}
.task-logging-button.s-W2o6JMVcBj_5:active {
  transform: translateY(0);
}
.badges-wrapper.s-W2o6JMVcBj_5 {
  display: flex;
  align-items: center;
}
@media (min-width: 600px) {
  .task-logging-banner-container.s-W2o6JMVcBj_5 {
    padding: 20px;
  }
  .task-logging-banner.s-W2o6JMVcBj_5 {
    border-radius: 32px;
    padding: 16px 20px;
  }
  .app-info.s-W2o6JMVcBj_5 {
    display: block;
  }
  .badges-wrapper.s-W2o6JMVcBj_5 {
    flex-direction: column;
    gap: 8px;
  }
}
@media (max-width: 599px) {
  .task-logging-banner.s-W2o6JMVcBj_5 {
    border-radius: 20px;
    gap: 12px;
  }
  .banner-content.s-W2o6JMVcBj_5 {
    min-width: 0;
  }
  .banner-text.s-W2o6JMVcBj_5 {
    word-wrap: break-word;
  }
}
:root {
  --Content-Primary: #3b3040;
  --Content-Secondary: #676273;
}
.text-message.s-djxRg46gqZFw {
  font-style: normal;
  font-weight: 500;
  font-style: Medium;
  line-height: 145%;
  letter-spacing: 0%;
  width: 100%;
}
.products-container.s-djxRg46gqZFw {
  display: flex;
}
.product-widget-wrapper.s-djxRg46gqZFw {
  margin-top: 16px;
  margin-bottom: 16px;
}
@media screen and (max-width: 600px) {
  .product-widget-wrapper.s-djxRg46gqZFw {
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .text-message.s-djxRg46gqZFw {
    align-self: stretch;
  }
  .text-message * {
    font-size: 17px !important;
    line-height: 24px !important;
  }
}
.content.s-_8VKegZ_kw02 {
  display: grid;
  grid-auto-rows: min-content;
  gap: 8px;
}
.text-box.s-_8VKegZ_kw02 {
  display: flex;
  flex-direction: column;
  gap: 8px;
  visibility: visible;
}
.report-button.s-_8VKegZ_kw02 {
  align-self: flex-start;
  background: none;
  border: none;
  color: var(--neutral-10);
  font-size: 13px;
  cursor: pointer;
  padding: 0;
  margin-top: 4px;
}
@media screen and (max-width: 600px) {
  .content.s-_8VKegZ_kw02 {
    display: none;
    visibility: hidden;
  }
}
.message-mobile.s-PUsAIFYW3W0D {
  display: none;
  visibility: hidden;
}
@media screen and (max-width: 600px) {
  .message-mobile.s-PUsAIFYW3W0D {
    visibility: visible;
    display: flex;
    min-width: 20px;
    max-width: 345px;
    width: fit-content;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    position: relative;
    padding: 10px 15px;
    text-align: start;
    border: 0;
    border-radius: 20px 20px 4px;
    background: var(--neutral-50);
    color: var(--color);
    -webkit-tap-highlight-color: transparent;
  }
  .user.s-PUsAIFYW3W0D {
    max-width: var(--user-message-max-width);
    margin-left: auto;
    color: #000;
    background: #f5f5fa;
    border-radius: 20px;
  }
  [dir="rtl"] .user.s-PUsAIFYW3W0D {
    margin-left: 0;
    margin-right: auto;
    border-radius: 20px;
  }
  .assistant.s-PUsAIFYW3W0D {
    border-radius: 20px 20px 20px 4px;
    color: #000;
    background: var(--neutral-50);
  }
  .assistant.with-product.s-PUsAIFYW3W0D {
    padding-inline: 0;
    background: none;
  }
  .report-button.s-PUsAIFYW3W0D {
    align-self: flex-start;
    background: none;
    border: none;
    color: var(--neutral-10);
    font-size: 13px;
    cursor: pointer;
    padding: 0;
    margin-top: 4px;
  }
}
.message.s-Y6rT4T05XENL.s-Y6rT4T05XENL {
  --status-color: var(--neutral-20);
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0fr;
  border-radius: 20px;
  -webkit-tap-highlight-color: transparent;
  width: fit-content;
}
.message:has(.content[data-sender="user"]) {
  justify-self: end;
  max-width: 70%;
  margin-left: auto;
  width: fit-content;
}
.message:has(.message-desktop .content[data-sender="user"]) .message-desktop {
  background-color: #f5f5fa;
  border-radius: 20px;
  padding: 12px 16px;
}
.message:has(.content[data-sender="assistant"]) {
  justify-self: stretch;
  width: 100%;
}
[dir="rtl"] .message:has(.content[data-sender="user"]) {
  justify-self: start;
  margin-left: 0;
  margin-right: auto;
}
[dir="rtl"]
  .message:has(.message-desktop .content[data-sender="user"])
  .message-desktop {
  border-radius: 20px;
}
.message.interactive.s-Y6rT4T05XENL.s-Y6rT4T05XENL {
  cursor: pointer;
  transition:
    background-color 0.3s,
    grid-template-columns 0.5s;
}
.message-desktop.s-Y6rT4T05XENL.s-Y6rT4T05XENL {
  display: flex;
  visibility: visible;
}
.actions.s-Y6rT4T05XENL button.s-Y6rT4T05XENL {
  border: 0;
  cursor: pointer;
  background-color: transparent;
  color: var(--neutral-10);
  transition:
    color 0.3s,
    background-color 0.3s;
  -webkit-tap-highlight-color: transparent;
}
.actions.s-Y6rT4T05XENL button.s-Y6rT4T05XENL:disabled {
  color: var(--neutral-40);
}
@media screen and (min-width: 601px) {
  .message.s-Y6rT4T05XENL.s-Y6rT4T05XENL {
    padding-block: 10px;
  }
  .message.ai:not(:has(.carousel)) {
    padding-inline: 10px;
  }
  .message.ai + .message.ai {
    padding-block: 0;
  }
  .actions.s-Y6rT4T05XENL.s-Y6rT4T05XENL {
    position: absolute;
    inset-inline-end: 0;
    inset-block-start: -20px;
    gap: 8px;
    padding: 2px;
    border: 1px solid var(--neutral-40);
    border-radius: 6px;
    background-color: var(--white);
  }
  .actions.s-Y6rT4T05XENL button.s-Y6rT4T05XENL {
    height: 24px;
    padding: 4px;
    border-radius: 4px;
  }
  .actions.s-Y6rT4T05XENL button.s-Y6rT4T05XENL:not(:disabled):hover {
    cursor: pointer;
    color: var(--primary-10);
    background-color: var(--neutral-50);
  }
  .actions.s-Y6rT4T05XENL button.s-Y6rT4T05XENL:not(:disabled):active {
    color: var(--secondary-20);
    background-color: var(--neutral-60);
  }
  .message.interactive.s-Y6rT4T05XENL:not(:hover) .actions.s-Y6rT4T05XENL {
    visibility: hidden;
    display: none;
  }
  @keyframes s-Y6rT4T05XENL-appear {
    0% {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  .message.interactive.s-Y6rT4T05XENL:hover .actions.s-Y6rT4T05XENL {
    visibility: visible;
    display: grid;
    grid-template-columns: 1fr 1fr;
    animation: s-Y6rT4T05XENL-appear 0.3s;
  }
}
@media screen and (max-width: 600px) {
  .message-desktop.s-Y6rT4T05XENL.s-Y6rT4T05XENL {
    display: none;
    visibility: hidden;
  }
  @keyframes s-Y6rT4T05XENL-slide-width {
    0% {
      width: 0;
      opacity: 0;
    }
    50% {
      width: 100%;
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  .message.s-Y6rT4T05XENL.s-Y6rT4T05XENL {
    --user-message-max-width: 278px;
  }
  .message.interactive.s-Y6rT4T05XENL.s-Y6rT4T05XENL {
    grid-template-columns: auto 0fr;
    justify-content: end;
    margin-left: auto;
    width: fit-content;
  }
  [dir="rtl"] .message.interactive.s-Y6rT4T05XENL.s-Y6rT4T05XENL {
    justify-content: start;
    margin-left: 0;
    margin-right: auto;
  }
  .message.interactive.s-Y6rT4T05XENL .actions.s-Y6rT4T05XENL {
    position: static;
    gap: 16px;
    grid-template-columns: 1fr 1fr;
  }
  .actions.s-Y6rT4T05XENL button.s-Y6rT4T05XENL {
    padding: 0;
  }
  .actions.s-Y6rT4T05XENL button.s-Y6rT4T05XENL:not(:disabled):active {
    color: var(--primary-10);
  }
  .actions.s-Y6rT4T05XENL svg {
    height: 25px;
    width: 25px;
  }
  .message.interactive.show-actions.s-Y6rT4T05XENL.s-Y6rT4T05XENL {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    width: auto;
  }
  .message.interactive.s-Y6rT4T05XENL:not(.show-actions)
    .actions.s-Y6rT4T05XENL {
    display: none;
    visibility: hidden;
  }
  .message.interactive.show-actions.s-Y6rT4T05XENL .actions.s-Y6rT4T05XENL {
    display: grid;
    visibility: visible;
    overflow: hidden;
    animation: s-Y6rT4T05XENL-slide-width 0.5s;
  }
  .message.s-Y6rT4T05XENL:not(:has(+ .message)) .message-mobile.user {
    background: var(--message-bg, #f5f5fa);
  }
}
.modal-backdrop.s-R3err-MyV5VJ.s-R3err-MyV5VJ {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #00000080;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: s-R3err-MyV5VJ-fadeIn 0.2s ease-out;
  overflow: hidden;
  border-radius: 16px;
}
#disclaimer-title.s-R3err-MyV5VJ.s-R3err-MyV5VJ {
  margin: auto;
}
@keyframes s-R3err-MyV5VJ-fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.modal-content.s-R3err-MyV5VJ.s-R3err-MyV5VJ {
  background-color: #fff;
  border-radius: 32px;
  max-width: calc(100% - 40px);
  max-height: calc(100% - 40px);
  width: 90%;
  margin: 20px;
  box-shadow: 0 4px 20px #00000026;
  animation: s-R3err-MyV5VJ-slideIn 0.3s ease-out;
  display: flex;
  flex-direction: column;
}
@keyframes s-R3err-MyV5VJ-slideIn {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.modal-header.s-R3err-MyV5VJ.s-R3err-MyV5VJ {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 20px 24px;
}
.close-button.s-R3err-MyV5VJ.s-R3err-MyV5VJ {
  background: var(--neutral-50);
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 18px;
  color: var(--neutral-10);
  transition:
    background-color 0.2s,
    color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.close-button.s-R3err-MyV5VJ.s-R3err-MyV5VJ:hover {
  background-color: var(--neutral-50);
  color: var(--black);
}
.close-button.s-R3err-MyV5VJ.s-R3err-MyV5VJ:active {
  background-color: var(--neutral-40);
}
.modal-body.s-R3err-MyV5VJ.s-R3err-MyV5VJ {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
}
.modal-body.s-R3err-MyV5VJ p.s-R3err-MyV5VJ {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--black);
  white-space: pre-wrap;
}
@media screen and (max-width: 600px) {
  .modal-content.s-R3err-MyV5VJ.s-R3err-MyV5VJ {
    max-width: calc(100% - 20px);
    max-height: calc(100% - 20px);
    margin: 10px;
  }
  .modal-header.s-R3err-MyV5VJ.s-R3err-MyV5VJ {
    padding: 16px 20px;
  }
  .modal-body.s-R3err-MyV5VJ.s-R3err-MyV5VJ {
    padding: 20px;
  }
}
.modal-backdrop.s-1bdSIqRpEn3g.s-1bdSIqRpEn3g {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #00000080;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: s-1bdSIqRpEn3g-fadeIn 0.2s ease-out;
  overflow: hidden;
  border-radius: 16px;
}
@keyframes s-1bdSIqRpEn3g-fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.modal-content.s-1bdSIqRpEn3g.s-1bdSIqRpEn3g {
  background-color: #fff;
  border-radius: 16px;
  max-width: calc(100% - 40px);
  max-height: calc(100% - 40px);
  width: 400px;
  margin: 20px;
  box-shadow: 0 4px 20px #00000026;
  animation: s-1bdSIqRpEn3g-slideIn 0.3s ease-out;
  display: flex;
  flex-direction: column;
}
@keyframes s-1bdSIqRpEn3g-slideIn {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.modal-header.s-1bdSIqRpEn3g.s-1bdSIqRpEn3g {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
}
.modal-header.s-1bdSIqRpEn3g h2.s-1bdSIqRpEn3g {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
}
.close-button.s-1bdSIqRpEn3g.s-1bdSIqRpEn3g {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  color: var(--neutral-10);
  transition:
    background-color 0.2s,
    color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.close-button.s-1bdSIqRpEn3g.s-1bdSIqRpEn3g:hover {
  background-color: var(--neutral-50);
  color: var(--black);
}
.close-button.s-1bdSIqRpEn3g.s-1bdSIqRpEn3g:active {
  background-color: var(--neutral-40);
}
.modal-body.s-1bdSIqRpEn3g.s-1bdSIqRpEn3g {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.modal-body.s-1bdSIqRpEn3g textarea.s-1bdSIqRpEn3g {
  padding: 12px;
  border: 1px solid var(--neutral-30);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  resize: vertical;
  min-height: 100px;
  transition: border-color 0.2s;
}
.modal-body.s-1bdSIqRpEn3g textarea.s-1bdSIqRpEn3g:focus {
  outline: none;
  border-color: var(--secondary-20);
}
.submit-button.s-1bdSIqRpEn3g.s-1bdSIqRpEn3g {
  background: var(--gradient-input);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition:
    opacity 0.2s,
    transform 0.1s;
  align-self: center;
}
.submit-button.s-1bdSIqRpEn3g.s-1bdSIqRpEn3g:hover:not(:disabled) {
  opacity: 0.9;
}
.submit-button.s-1bdSIqRpEn3g.s-1bdSIqRpEn3g:active:not(:disabled) {
  transform: scale(0.98);
}
.submit-button.s-1bdSIqRpEn3g.s-1bdSIqRpEn3g:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.thank-you-message.s-1bdSIqRpEn3g.s-1bdSIqRpEn3g {
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.check-icon.s-1bdSIqRpEn3g.s-1bdSIqRpEn3g {
  animation: s-1bdSIqRpEn3g-checkPop 0.4s ease-out;
}
@keyframes s-1bdSIqRpEn3g-checkPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.thank-you-message.s-1bdSIqRpEn3g h3.s-1bdSIqRpEn3g {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: var(--black);
}
.thank-you-message.s-1bdSIqRpEn3g p.s-1bdSIqRpEn3g {
  margin: 0;
  font-size: 15px;
  color: var(--neutral-10);
  line-height: 1.5;
}
@media screen and (max-width: 600px) {
  .modal-content.s-1bdSIqRpEn3g.s-1bdSIqRpEn3g {
    max-width: calc(100% - 20px);
    max-height: calc(100% - 20px);
    margin: 10px;
  }
  .modal-header.s-1bdSIqRpEn3g.s-1bdSIqRpEn3g {
    padding: 16px 20px;
  }
  .modal-body.s-1bdSIqRpEn3g.s-1bdSIqRpEn3g {
    padding: 20px;
  }
}
