:root {
  --colors_accent: #f039b3;
  --colors_text: #0b3052;
  --colors_text_secondary: #536682;
  --colors_user_message: #aae0c8;
  --colors_agent_message: #98bcf5;
  --chat_bg: #fff;
  --colors_secondary: #f5f5f5;
  --colors_border: #e0e0e0;
  --colors_error: #c62828;
  --close_chat_btn_color: #abbccc;
}
.sb-chat--footer_textarea::placeholder {
  color: var(--close_chat_btn_color);
  font-family: sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  opacity: 1;
}
.sb-chat--footer_textarea::-webkit-input-placeholder {
  color: var(--close_chat_btn_color);
  font-family: sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  opacity: 1;
}
.sb-chat--footer_textarea::-moz-placeholder {
  color: var(--close_chat_btn_color);
  font-family: sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  opacity: 1;
}
.sb-chat--footer_textarea:-ms-input-placeholder {
  color: var(--close_chat_btn_color);
  font-family: sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  opacity: 1;
}
.sb-chat--footer_textarea:-moz-placeholder {
  color: var(--close_chat_btn_color);
  font-family: sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  opacity: 1;
}
body > #sb_ai_widget .sb-start-chat-btn {
  bottom: 30px;
  position: fixed;
  right: 20px;
  z-index: 1000;
}
body > #sb_ai_widget .sb-start-chat-btn .sb-start-chat-btn_txt.pos-bottom {
  bottom: 125%;
  left: 50%;
  top: auto;
  transform: translateX(-70%);
}
body
  > #sb_ai_widget
  .sb-start-chat-btn
  .sb-start-chat-btn_txt.pos-bottom:after {
  border-bottom: unset;
  border-left: 6px solid #0000;
  border-right: 6px solid #0000;
  border-top: 6px solid var(--chat_bg);
  bottom: -6px;
  left: 50%;
  top: auto;
  transform: translateX(20px);
}
body.moved--more > #sb_ai_widget .sb-start-chat-btn {
  bottom: 80px;
  position: fixed;
  right: 20px;
}
#sb_ai_widget_container {
  min-height: 2px;
}
.sb-chat-container:has(> .sb-chat--content.sb-chat--content_empty)
  .sb-chat--header
  .sb-chat--header_title {
  opacity: 0;
  transition: opacity 0.3s ease;
}
html body .sb-chat-container {
  --border-angle: 0turn;
  --main-bg: conic-gradient(
    from var(--border-angle),
    var(--chat_bg),
    var(--chat_bg) 5%
  );
  --gradient-border: conic-gradient(
    from var(--border-angle),
    var(--colors_accent),
    var(--colors_accent) 65%,
    color-mix(in srgb, var(--colors_accent), #000 15%) 85%,
    var(--colors_accent) 100%
  );
  align-items: stretch;
  animation: bg-spin 12s linear infinite;
  background:
    var(--main-bg) padding-box,
    var(--gradient-border) border-box,
    var(--main-bg) border-box;
  background-position: 50%;
  border: 3px solid #0000;
  border-radius: 24px;
  bottom: 24px;
  box-shadow: 2px 2px 15px 0 #2d33481a;
  color: var(--colors_text);
  display: flex;
  flex-direction: column;
  font-family: system-ui, Arial, sans-serif;
  gap: 20px;
  height: 490px;
  justify-content: flex-start;
  max-width: 420px;
  overflow: hidden;
  padding: 16px;
  position: fixed;
  right: 16px;
  width: 90%;
  z-index: 9999;
}
html body .sb-chat-container .sb-message-input form {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: flex-start;
  width: 100%;
}
html body .sb-chat-container .sb-message-input input[type="text"] {
  background: #0000;
  border: 1px solid var(--colors_border);
  border-radius: 36px;
  flex: 1;
  font-size: 16px !important;
  height: 36px;
  line-height: 1;
  margin: 0;
  min-width: unset;
  padding: 8px 12px 8px 16px;
  transition: border-color 0.2s;
}
html body .sb-chat-container .sb-message-input input[type="text"]:focus {
  border-color: var(--colors_accent);
}
html body .sb-chat-container .sb-message-input-closed-container {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  margin-bottom: 0;
  margin-top: auto;
  width: 100%;
}
html body .sb-chat-container .sb-message-input-closed {
  background: var(--colors_user_message);
  border: 1px solid var(--colors_user_message);
  border-radius: 24px;
  font-weight: 400;
  min-height: 36px;
  padding: 6px 16px;
}
html body .sb-chat-container .sb-message-input-closed,
html body .sb-chat-container .sb-start-new-session-btn {
  align-items: center;
  color: var(--colors_text);
  display: flex;
  font-size: 14px;
  justify-content: center;
  text-align: center;
  width: 100%;
}
html body .sb-chat-container .sb-start-new-session-btn {
  background: var(--colors_accent);
  border: 1px solid var(--colors_accent);
  border-radius: 24px;
  box-shadow: 0 2px 8px #0000001a;
  cursor: pointer;
  font-weight: 600;
  min-height: 44px;
  padding: 10px 24px;
  transition: all 0.2s ease;
}
html body .sb-chat-container .sb-start-new-session-btn:hover {
  background: color-mix(in srgb, var(--colors_accent), #000 10%);
  box-shadow: 0 4px 12px #00000026;
  transform: translateY(-1px);
}
html body .sb-chat-container .sb-start-new-session-btn:active {
  box-shadow: 0 2px 6px #0000001a;
  transform: translateY(0);
}
html body .sb-chat-container .sb-start-new-session-btn:focus {
  outline: 2px solid var(--colors_accent);
  outline-offset: 2px;
}
html body .sb-chat-container .sb-payment-link {
  align-items: center;
  background: linear-gradient(
    90deg,
    var(--colors_accent) 0,
    color-mix(in srgb, var(--colors_accent), #000 15%) 100%
  );
  border: none;
  border-radius: 1.5em;
  box-shadow: 0 2px 8px #1976d221;
  color: var(--colors_text);
  cursor: pointer;
  display: inline-flex;
  font-weight: 600;
  justify-content: center;
  margin: 0.3em 0;
  min-width: 150px;
  padding: 0.5em 1.4em;
  text-decoration: none;
  transition:
    background 0.2s,
    box-shadow 0.2s,
    transform 0.1s;
}
html body .sb-chat-container .sb-payment-link:focus,
html body .sb-chat-container .sb-payment-link:hover {
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--colors_accent), #000 15%) 0,
    var(--colors_accent) 100%
  );
  box-shadow: 0 4px 16px #1976d22e;
  color: var(--colors_text);
  text-decoration: none;
  transform: translateY(-2px);
}
html body .sb-chat--button {
  align-items: center;
  border: 1px solid var(--colors_accent);
  border-radius: 50%;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-flex;
  height: 36px;
  justify-content: center;
  min-width: 36px;
  padding: 4px;
  width: 36px;
}
html body .sb-chat--button svg {
  height: 16px;
}
html body .sb-chat--button_audio {
  background: #0000;
  color: var(--colors_text);
}
html body .sb-chat--button_send {
  background: var(--colors_accent);
  color: var(--colors_text);
}
html body .sb-chat--header {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: flex-start;
}
html body .sb-chat--header_title {
  flex: 1;
  font-size: 16px;
  font-weight: bolder;
  margin: 0;
  padding: 0;
}
html body .sb-chat--header_close-btn {
  align-items: center;
  background: #0000;
  border: none;
  box-sizing: border-box;
  color: var(--close_chat_btn_color);
  display: inline-flex;
  height: 26px;
  justify-content: center;
  padding: 2px;
  width: 26px;
}
html body .sb-chat--header_close-btn svg {
  height: 20px;
}
html body .sb-chat--header_close-btn:focus,
html body .sb-chat--header_close-btn:hover {
  color: var(--colors_error);
}
html body .sb-chat--content {
  align-items: flex-start;
  box-sizing: border-box;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 16px;
  margin-right: -8px;
  overflow-y: auto;
  padding-right: 8px;
  text-align: left;
}
html body .sb-chat--content_conversation {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: auto;
  width: 100%;
}
html body .sb-chat--content .sb-chat--greeting {
  align-items: center;
  display: none;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  text-align: center;
}
html body .sb-chat--content_empty {
  align-items: center;
  display: flex;
  justify-content: center;
}
html body .sb-chat--content_empty .sb-chat--greeting {
  display: flex;
}
html body .sb-chat--content_empty .sb-chat--content_conversation {
  display: none;
}
html body .sb-chat--content,
html body .sb-chat--content_conversation,
html body .sb-chat--content_empty {
  scrollbar-color: var(--colors_accent, #06adef) var(--colors_secondary);
  scrollbar-width: thin;
}
html body .sb-chat--content::-webkit-scrollbar,
html body .sb-chat--content_conversation::-webkit-scrollbar,
html body .sb-chat--content_empty::-webkit-scrollbar {
  border-radius: 16px;
  height: 5px;
  width: 5px;
}
html body .sb-chat--content::-webkit-scrollbar-track,
html body .sb-chat--content_conversation::-webkit-scrollbar-track,
html body .sb-chat--content_empty::-webkit-scrollbar-track {
  background: var(--colors_secondary);
  border-radius: 16px;
}
html body .sb-chat--content::-webkit-scrollbar-thumb,
html body .sb-chat--content_conversation::-webkit-scrollbar-thumb,
html body .sb-chat--content_empty::-webkit-scrollbar-thumb {
  background-color: var(--colors_accent, #06adef);
  border: 1px solid var(--colors_secondary);
  border-radius: 16px;
}
html body .sb-chat--content::-webkit-scrollbar-thumb:hover,
html body .sb-chat--content_conversation::-webkit-scrollbar-thumb:hover,
html body .sb-chat--content_empty::-webkit-scrollbar-thumb:hover {
  background-color: color-mix(in srgb, var(--colors_accent, #06adef), #000 15%);
  border-radius: 16px;
}
html body .sb-chat--greeting {
  text-align: center;
}
html body .sb-chat--greeting > * {
  margin: 0;
  padding: 0;
}
html body .sb-chat--greeting_icon {
  color: var(--colors_accent);
  display: inline-block;
  line-height: 0.5;
}
html body .sb-chat--greeting_icon svg {
  height: 48px;
}
html body .sb-chat--greeting_title {
  font-size: 18px;
  font-weight: bolder;
}
html body .sb-chat--greeting_txt {
  text-wrap: balance;
  color: var(--colors_text_secondary);
  font-size: 16px;
  font-weight: 400;
}
html body .sb-chat--failed-session {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  text-align: center;
  width: 100%;
}
html body .sb-chat--failed-session_icon {
  display: inline-block;
  line-height: 0.5;
}
html body .sb-chat--failed-session_icon svg {
  height: 150px;
  width: auto;
}
html body .sb-chat--failed-session_message {
  font-size: 16px;
  font-weight: bolder;
}
html body .sb-chat--footer {
  margin-bottom: 0;
  margin-top: auto;
}
html body .sb-chat--footer_grid {
  align-items: flex-end;
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}
html body .sb-chat--footer_input {
  background: #0000;
  border: 1px solid var(--colors_border);
  border-radius: 36px;
  box-sizing: border-box;
  flex: 1;
  font-size: 14px !important;
  height: 36px;
  line-height: 1.36;
  min-height: 36px;
  padding: 7px 12px 4px 16px;
  scrollbar-color: var(--colors_accent) var(--colors_user_message);
  scrollbar-width: thin;
  transition: all 0.25s ease;
}
html body .sb-chat--footer_input:focus {
  border-color: var(--colors_accent);
  outline: none;
}
html body .sb-chat--footer_input::-webkit-scrollbar {
  border-radius: 10px;
  height: 5px;
  width: 5px;
}
html body .sb-chat--footer_input::-webkit-scrollbar-track {
  background: var(--colors_accent);
  border-radius: 10px;
}
html body .sb-chat--footer_input::-webkit-scrollbar-thumb {
  background: var(--colors_user_message);
  border-radius: 10px;
}
html body .sb-chat--footer_input::-webkit-scrollbar-thumb:hover {
  background: var(--colors_accent);
}
html body .sb-chat--footer_input.expanded {
  border-color: var(--colors_accent);
  border-radius: 8px;
  height: auto;
  min-height: 108px;
  padding: 8px 12px 8px 16px;
}
html body .sb-chat--footer_btn-bar--row {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}
.sb-message {
  align-items: flex-start;
  border-radius: 8px;
  color: var(--colors_text);
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  gap: 8px;
  justify-content: flex-start;
  line-height: 1.66;
  max-width: 86%;
  position: relative;
  word-break: break-word;
}
.sb-message.sb-message-client {
  background-color: var(--colors_user_message);
  border-radius: 8px 8px 2px 8px;
  margin-left: auto;
  min-width: 180px;
  padding: 10px 16px;
}
.sb-message.sb-message-client .sb-chat--icon-recording {
  color: var(--colors_accent);
}
.sb-message.sb-message-bot {
  border-radius: 8px 8px 8px 2px;
  margin-right: auto;
}
.sb-message.sb-status-message-thinking {
  background: none;
  box-shadow: none;
  max-width: 36px;
  min-width: 0;
  padding: 10px 0 0;
}
.sb-message .sb-message-status {
  align-items: flex-end;
  display: flex;
  justify-content: flex-end;
  min-height: 14px;
}
.sb-message .sb-message-status-done {
  display: none;
}
.sb-message .sb-message-status .sb-status-dot {
  display: inline-block;
  vertical-align: middle;
}
.sb-message .sb-message-status .sb-status-dot.in_progress {
  animation: sb-status-blink 0.3s infinite alternate;
}
.sb-message .sb-message-status .sb-status-thinking {
  align-items: center;
  display: flex;
  gap: 4px;
}
.sb-message .sb-message-status .sb-thinking-dot {
  animation: sb-thinking-blink 1s infinite both;
  background: var(--colors_accent);
  border-radius: 50%;
  display: inline-block;
  height: 6px;
  opacity: 0.8;
  width: 6px;
}
.sb-start-chat-btn {
  background: var(--colors_accent);
  border: 1px solid var(--colors_accent);
  bottom: 20px;
  cursor: pointer;
  display: inline-flex !important;
  height: 50px;
  overflow: visible !important;
  padding: 4px !important;
  position: fixed;
  right: 20px;
  transition:
    background 0.2s,
    box-shadow 0.2s;
  width: 50px;
}
.sb-start-chat-btn,
.sb-start-chat-btn_txt {
  align-items: center;
  color: var(--colors_text);
  justify-content: center;
}
.sb-start-chat-btn_txt {
  background: var(--chat_bg);
  border: 1px solid var(--colors_accent);
  border-radius: 8px;
  display: flex;
  filter: drop-shadow(0 4px 12px rgba(0, 32, 51, 0.21));
  font-size: 12px;
  gap: 8px;
  line-height: 1.5;
  max-width: calc(85vw - 70px);
  min-height: 36px;
  min-width: 140px;
  padding: 6px 12px;
  pointer-events: none;
  position: absolute;
  text-align: left;
  transition: all 0.25s ease;
  user-select: none;
  white-space: normal;
}
.sb-start-chat-btn_txt:after {
  content: "";
  height: 0;
  position: absolute;
  width: 0;
}
.sb-start-chat-btn_txt.pos-bottom {
  left: 50%;
  top: 125%;
  transform: translateX(-50%);
}
.sb-start-chat-btn_txt.pos-bottom:after {
  border-bottom: 6px solid var(--chat_bg);
  border-left: 6px solid #0000;
  border-right: 6px solid #0000;
  left: 50%;
  top: -6px;
  transform: translateX(-50%);
}
.sb-start-chat-btn_txt.pos-top {
  bottom: 125%;
  left: 50%;
  transform: translateX(-80%);
}
.sb-start-chat-btn_txt.pos-top:after {
  border-left: 6px solid #0000;
  border-right: 6px solid #0000;
  border-top: 6px solid var(--chat_bg);
  bottom: -6px;
  left: 80%;
  transform: translateX(-50%);
}
.sb-start-chat-btn_txt.pos-left {
  right: 125%;
  top: 50%;
  transform: translateY(-50%);
}
.sb-start-chat-btn_txt.pos-left:after {
  border-bottom: 6px solid #0000;
  border-left: 6px solid var(--chat_bg);
  border-top: 6px solid #0000;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
}
.sb-start-chat-btn_txt.pos-right {
  left: 125%;
  top: 50%;
  transform: translateY(-50%);
}
.sb-start-chat-btn_txt.pos-right:after {
  border-bottom: 6px solid #0000;
  border-right: 6px solid var(--chat_bg);
  border-top: 6px solid #0000;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
}
.sb-start-chat-btn_txt .ai-icon {
  color: color-mix(in srgb, var(--colors_accent), #000 12%);
  height: 24px;
  min-width: 24px;
  width: 24px;
}
.sb-start-chat-btn:hover {
  color: var(--colors_text);
}
.sb-start-chat-btn:hover .sb-start-chat-btn_txt {
  opacity: 0;
  transform: scale(0.5) translate(-100%, 100%);
  visibility: hidden;
}
.sb-start-chat-btn:focus {
  outline: none;
}
.sb-start-chat-btn:focus-visible {
  outline: 1px solid var(--colors_accent);
  outline-offset: 2px;
}
.sb-start-chat-btn:focus:not(:focus-visible) {
  outline: none;
}
.sb-start-chat-btn svg {
  display: block;
  height: 36px;
  width: 36px;
}
.bar .sb-start-chat-btn {
  bottom: unset;
  position: relative;
  right: unset;
}
@keyframes sb-status-blink {
  0% {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}
@keyframes sb-thinking-blink {
  0%,
  80%,
  to {
    opacity: 0.3;
  }
  40% {
    opacity: 1;
  }
}
@keyframes bg-spin {
  to {
    --border-angle: 1turn;
  }
}
@property --border-angle {
  syntax: "<angle>";
  inherits: true;
  initial-value: 0turn;
}
/*# sourceMappingURL=app.css.map*/
