@carbon/ai-chat 1.8.0 → 1.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/es/aiChatEntry.js +19 -17
- package/dist/es/aiChatEntry.js.map +1 -1
- package/dist/es/chat.ChatAppEntry.js +902 -1141
- package/dist/es/chat.ChatAppEntry.js.map +1 -1
- package/dist/es/chat.LayoutCustomProperties.js +26 -0
- package/dist/es/chat.LayoutCustomProperties.js.map +1 -1
- package/dist/es/chat.languageUtils.js +86 -23
- package/dist/es/chat.languageUtils.js.map +1 -1
- package/dist/es/serverEntry.js +2 -2
- package/dist/es/web-components/cds-aichat-container/index.js +8 -8
- package/dist/es/web-components/cds-aichat-custom-element/index.js +8 -8
- package/dist/es-custom/aiChatEntry.js +19 -17
- package/dist/es-custom/aiChatEntry.js.map +1 -1
- package/dist/es-custom/chat.ChatAppEntry.js +902 -1141
- package/dist/es-custom/chat.ChatAppEntry.js.map +1 -1
- package/dist/es-custom/chat.LayoutCustomProperties.js +26 -0
- package/dist/es-custom/chat.LayoutCustomProperties.js.map +1 -1
- package/dist/es-custom/chat.languageUtils.js +86 -23
- package/dist/es-custom/chat.languageUtils.js.map +1 -1
- package/dist/es-custom/serverEntry.js +2 -2
- package/dist/es-custom/web-components/cds-aichat-container/index.js +8 -8
- package/dist/es-custom/web-components/cds-aichat-custom-element/index.js +8 -8
- package/dist/types/aiChatEntry.d.ts +3 -2
- package/dist/types/{serverEntry-j0I5r7y2.d.ts → serverEntry-CrD9G5Ot.d.ts} +434 -37
- package/dist/types/serverEntry.d.ts +2 -1
- package/package.json +6 -6
- package/telemetry.yml +0 -8
|
@@ -2,7 +2,7 @@ import isEqual from "lodash-es/isEqual.js";
|
|
|
2
2
|
|
|
3
3
|
import React, { useMemo, createContext, useContext, useRef, useCallback, useEffect, createElement, PureComponent, useState, useImperativeHandle, forwardRef, Component, useLayoutEffect, Suspense, Fragment } from "react";
|
|
4
4
|
|
|
5
|
-
import { useSyncExternalStore as useSyncExternalStore$1 } from "use-sync-external-store/shim";
|
|
5
|
+
import { useSyncExternalStore as useSyncExternalStore$1 } from "use-sync-external-store/shim/index.js";
|
|
6
6
|
|
|
7
7
|
import { compute } from "compute-scroll-into-view";
|
|
8
8
|
|
|
@@ -16,7 +16,7 @@ import merge from "lodash-es/merge.js";
|
|
|
16
16
|
|
|
17
17
|
import cloneDeep from "lodash-es/cloneDeep.js";
|
|
18
18
|
|
|
19
|
-
import {
|
|
19
|
+
import { i as MessageResponseTypes, h as MessageInputType, M as MessageErrorState, e as FileStatusValue, f as HumanAgentMessageType, s as InternalMessageRequestType, b as ButtonItemType, t as consoleError, k as MinimizeButtonIconType, m as PanelType, d as CornersType, u as WORKSPACE_CUSTOM_PANEL_ID, D as DEFAULT_CUSTOM_PANEL_ID, B as BusEventType, v as debugLog, j as MessageSendSource, w as consoleWarn, O as OnErrorType, g as HumanAgentsOnlineStatus, x as sleep, y as callOnError, z as consoleLog, A as isEnableDebugLog, C as CancellationReason, G as safeFetchTextWithTimeout, q as normalizeModuleInterop, c as CarbonTheme, J as WA_CONSOLE_PREFIX, p as enLanguagePack, o as WriteableElementName, K as setEnableDebugLog, L as consoleDebug, n as ViewType, V as ViewChangeReason, E as ErrorType, S as ScreenShareState, N as resolveOrTimeout, Q as loadLocale, T as MainWindowOpenReason, P as PageObjectId, H as HeaderMenuClickType, X as RESPONSE_TYPE_TIMEOUT_MS, Y as getResponsiveElementPaddingValue, Z as THROW_ERROR, W as WidthOptions, _ as RIGHT_TO_LEFT_MARK, $ as loadDayjsLocale, a0 as ENGLISH_US_DATE_FORMAT, I as IFrameItemDisplayOption, U as UserType, F as FeedbackInteractionType, a1 as createDidCatchErrorData, R as ReasoningStepOpenState, a2 as isValidForUpload } from "./chat.languageUtils.js";
|
|
20
20
|
|
|
21
21
|
import mergeWith from "lodash-es/mergeWith.js";
|
|
22
22
|
|
|
@@ -36,7 +36,7 @@ import { createComponent } from "@lit/react";
|
|
|
36
36
|
|
|
37
37
|
import { BUTTON_TOOLTIP_POSITION, BUTTON_SIZE, BUTTON_KIND, BUTTON_TYPE, BUTTON_TOOLTIP_ALIGNMENT } from "@carbon/web-components/es/components/button/defs.js";
|
|
38
38
|
|
|
39
|
-
import CarbonButtonElement from "@carbon/web-components/es/components/button/button.js";
|
|
39
|
+
import CarbonButtonElement, { BUTTON_SIZE as BUTTON_SIZE$1 } from "@carbon/web-components/es/components/button/button.js";
|
|
40
40
|
|
|
41
41
|
import CarbonLayerElement from "@carbon/web-components/es/components/layer/layer.js";
|
|
42
42
|
|
|
@@ -50,9 +50,9 @@ import OverflowMenuVertical16 from "@carbon/icons/es/overflow-menu--vertical/16.
|
|
|
50
50
|
|
|
51
51
|
import Restart16 from "@carbon/icons/es/restart/16.js";
|
|
52
52
|
|
|
53
|
-
import
|
|
53
|
+
import RightPanelOpen16 from "@carbon/icons/es/right-panel--open/16.js";
|
|
54
54
|
|
|
55
|
-
import
|
|
55
|
+
import RightPanelClose16 from "@carbon/icons/es/right-panel--close/16.js";
|
|
56
56
|
|
|
57
57
|
import SubtractLarge16 from "@carbon/icons/es/subtract--large/16.js";
|
|
58
58
|
|
|
@@ -64,21 +64,9 @@ import "@carbon/web-components/es/components/ai-label/ai-label-action-button.js"
|
|
|
64
64
|
|
|
65
65
|
import CDSAILabel from "@carbon/web-components/es/components/ai-label/ai-label.js";
|
|
66
66
|
|
|
67
|
-
import
|
|
68
|
-
|
|
69
|
-
import CarbonOverflowMenuElement$1 from "@carbon/web-components/es/components/overflow-menu/overflow-menu-body.js";
|
|
70
|
-
|
|
71
|
-
import CarbonOverflowMenuItemElement from "@carbon/web-components/es/components/overflow-menu/overflow-menu-item.js";
|
|
72
|
-
|
|
73
|
-
import { __decorate } from "tslib";
|
|
74
|
-
|
|
75
|
-
import { html, unsafeCSS, css, LitElement } from "lit";
|
|
76
|
-
|
|
77
|
-
import { property } from "lit/decorators.js";
|
|
78
|
-
|
|
79
|
-
import { carbonElement } from "@carbon/ai-chat-components/es/globals/decorators/index.js";
|
|
67
|
+
import ChatHeader from "@carbon/ai-chat-components/es/react/chat-header.js";
|
|
80
68
|
|
|
81
|
-
import throttle
|
|
69
|
+
import throttle from "lodash-es/throttle.js";
|
|
82
70
|
|
|
83
71
|
import DownToBottom16 from "@carbon/icons/es/down-to-bottom/16.js";
|
|
84
72
|
|
|
@@ -88,6 +76,8 @@ import UserAvatar32 from "@carbon/icons/es/user--avatar/32.js";
|
|
|
88
76
|
|
|
89
77
|
import Markdown from "@carbon/ai-chat-components/es/react/markdown.js";
|
|
90
78
|
|
|
79
|
+
import CarbonClickableTileElement from "@carbon/web-components/es/components/tile/clickable-tile.js";
|
|
80
|
+
|
|
91
81
|
import ChatButton$1, { CHAT_BUTTON_KIND, CHAT_BUTTON_SIZE } from "@carbon/ai-chat-components/es/react/chat-button.js";
|
|
92
82
|
|
|
93
83
|
import Processing from "@carbon/ai-chat-components/es/react/processing.js";
|
|
@@ -182,6 +172,8 @@ import CarbonDropdownElement from "@carbon/web-components/es/components/dropdown
|
|
|
182
172
|
|
|
183
173
|
import CarbonDropdownItemElement from "@carbon/web-components/es/components/dropdown/dropdown-item.js";
|
|
184
174
|
|
|
175
|
+
import { DROPDOWN_SIZE } from "@carbon/web-components/es/components/dropdown/defs.js";
|
|
176
|
+
|
|
185
177
|
import ChainOfThought from "@carbon/ai-chat-components/es/react/chain-of-thought.js";
|
|
186
178
|
|
|
187
179
|
import ChainOfThoughtStep from "@carbon/ai-chat-components/es/react/chain-of-thought-step.js";
|
|
@@ -196,12 +188,20 @@ import { FILE_UPLOADER_ITEM_SIZE, FILE_UPLOADER_ITEM_STATE } from "@carbon/web-c
|
|
|
196
188
|
|
|
197
189
|
import CarbonFileUploaderItemElement from "@carbon/web-components/es/components/file-uploader/file-uploader-item.js";
|
|
198
190
|
|
|
191
|
+
import { __decorate } from "tslib";
|
|
192
|
+
|
|
193
|
+
import { carbonElement } from "@carbon/ai-chat-components/es/globals/decorators/index.js";
|
|
194
|
+
|
|
199
195
|
import "@carbon/web-components/es/components/icon-button/index.js";
|
|
200
196
|
|
|
201
197
|
import { iconLoader } from "@carbon/web-components/es/globals/internal/icon-loader.js";
|
|
202
198
|
|
|
203
199
|
import StopFilled16 from "@carbon/icons/es/stop--filled/16.js";
|
|
204
200
|
|
|
201
|
+
import { html, unsafeCSS, css, LitElement } from "lit";
|
|
202
|
+
|
|
203
|
+
import { property } from "lit/decorators.js";
|
|
204
|
+
|
|
205
205
|
import ChatPanel from "@carbon/ai-chat-components/es/react/panel.js";
|
|
206
206
|
|
|
207
207
|
import ChevronDown20 from "@carbon/icons/es/chevron--down/20.js";
|
|
@@ -399,7 +399,7 @@ function getScrollbarWidth() {
|
|
|
399
399
|
}
|
|
400
400
|
|
|
401
401
|
function doFocus(element, preventScroll = false) {
|
|
402
|
-
if (element &&
|
|
402
|
+
if (element && getDeepActiveElement() !== element && tabbable(element, {
|
|
403
403
|
getShadowRoot: true
|
|
404
404
|
})) {
|
|
405
405
|
element.focus({
|
|
@@ -469,79 +469,113 @@ function getScrollBottom(element) {
|
|
|
469
469
|
return 0;
|
|
470
470
|
}
|
|
471
471
|
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
472
|
+
function getDeepActiveElement() {
|
|
473
|
+
let activeElement = document.activeElement;
|
|
474
|
+
while (activeElement) {
|
|
475
|
+
if (activeElement instanceof HTMLSlotElement) {
|
|
476
|
+
const assignedElements = activeElement.assignedElements({
|
|
477
|
+
flatten: true
|
|
478
|
+
});
|
|
479
|
+
const focusedAssigned = assignedElements.find(el => {
|
|
480
|
+
if (el.shadowRoot?.activeElement) {
|
|
481
|
+
return true;
|
|
482
|
+
}
|
|
483
|
+
return el === document.activeElement || el.contains(document.activeElement);
|
|
484
|
+
});
|
|
485
|
+
if (focusedAssigned) {
|
|
486
|
+
activeElement = focusedAssigned;
|
|
487
|
+
continue;
|
|
488
|
+
}
|
|
489
|
+
}
|
|
490
|
+
const shadowRoot = activeElement.shadowRoot;
|
|
491
|
+
if (shadowRoot?.activeElement) {
|
|
492
|
+
activeElement = shadowRoot.activeElement;
|
|
493
|
+
continue;
|
|
494
|
+
}
|
|
495
|
+
break;
|
|
496
|
+
}
|
|
497
|
+
return activeElement;
|
|
482
498
|
}
|
|
483
499
|
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
let screenHeight = 0;
|
|
487
|
-
|
|
488
|
-
if (isBrowser()) {
|
|
489
|
-
screenWidth = window.screen.width;
|
|
490
|
-
screenHeight = window.screen.height;
|
|
500
|
+
function isSlotElement(node) {
|
|
501
|
+
return node.nodeName === "SLOT";
|
|
491
502
|
}
|
|
492
503
|
|
|
493
|
-
const
|
|
494
|
-
|
|
495
|
-
const IS_ANDROID = isBrowser() && /Android/.test(navigator.userAgent);
|
|
496
|
-
|
|
497
|
-
const IS_MOBILE = IS_IOS || IS_ANDROID;
|
|
498
|
-
|
|
499
|
-
const IS_PHONE = IS_MOBILE && (screenWidth < 500 || screenHeight < 500);
|
|
500
|
-
|
|
501
|
-
const IS_PHONE_IN_PORTRAIT_MODE = IS_PHONE && screenWidth < 500;
|
|
502
|
-
|
|
503
|
-
function isSessionStorageAvailable() {
|
|
504
|
-
if (!isBrowser() || !window.sessionStorage) {
|
|
505
|
-
return false;
|
|
506
|
-
}
|
|
507
|
-
try {
|
|
508
|
-
window.sessionStorage.setItem("web-chat-test-item", "true");
|
|
509
|
-
window.sessionStorage.getItem("web-chat-test-item");
|
|
510
|
-
window.sessionStorage.removeItem("web-chat-test-item");
|
|
511
|
-
return true;
|
|
512
|
-
} catch {
|
|
513
|
-
return false;
|
|
514
|
-
}
|
|
515
|
-
}
|
|
504
|
+
const ANNOUNCE_INPUT_TYPES = new Set([ "button", "date", "datetime-local", "email", "file", "month", "number", "range", "reset", "search", "submit", "tel", "text", "time", "url", "week" ]);
|
|
516
505
|
|
|
517
|
-
const
|
|
506
|
+
const ANNOUNCE_NODE_EXCLUDE_ATTRIBUTE = "data-cds-aichat-exclude-node-read";
|
|
518
507
|
|
|
519
|
-
function
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
508
|
+
function nodeToText(node, strings) {
|
|
509
|
+
if (isElement(node)) {
|
|
510
|
+
if ((typeof window === "undefined" || window.getComputedStyle(node).display !== "none") && node.getAttribute("aria-hidden") !== "true" && !node.hasAttribute(ANNOUNCE_NODE_EXCLUDE_ATTRIBUTE) && node.tagName !== "BUTTON" && node.getAttribute("role") !== "button") {
|
|
511
|
+
trimAndPush(node.getAttribute("aria-label"), strings);
|
|
512
|
+
if (isInputNode(node) && ANNOUNCE_INPUT_TYPES.has(node.type.toLowerCase())) {
|
|
513
|
+
if (node.value === "") {
|
|
514
|
+
trimAndPush(node.placeholder, strings);
|
|
515
|
+
} else {
|
|
516
|
+
trimAndPush(node.value, strings);
|
|
517
|
+
}
|
|
518
|
+
} else if (isTextAreaNode(node)) {
|
|
519
|
+
if (node.value === "") {
|
|
520
|
+
trimAndPush(node.placeholder, strings);
|
|
521
|
+
}
|
|
522
|
+
} else if (isImageNode(node)) {
|
|
523
|
+
trimAndPush(node.alt, strings);
|
|
524
|
+
}
|
|
525
|
+
if (isSlotElement(node)) {
|
|
526
|
+
const parent = node.parentElement;
|
|
527
|
+
if (parent && parent.getAttribute("aria-hidden") === "true") {
|
|
528
|
+
return;
|
|
529
|
+
}
|
|
530
|
+
const assignedNodes = node.assignedNodes({
|
|
531
|
+
flatten: true
|
|
532
|
+
});
|
|
533
|
+
if (assignedNodes.length > 0) {
|
|
534
|
+
assignedNodes.forEach(assignedNode => {
|
|
535
|
+
nodeToText(assignedNode, strings);
|
|
536
|
+
});
|
|
537
|
+
return;
|
|
538
|
+
}
|
|
539
|
+
}
|
|
540
|
+
if (node.shadowRoot) {
|
|
541
|
+
node.shadowRoot.childNodes?.forEach(childNode => {
|
|
542
|
+
nodeToText(childNode, strings);
|
|
543
|
+
});
|
|
544
|
+
} else if (node.childNodes) {
|
|
545
|
+
node.childNodes.forEach(childNode => {
|
|
546
|
+
nodeToText(childNode, strings);
|
|
547
|
+
});
|
|
548
|
+
}
|
|
549
|
+
}
|
|
550
|
+
} else if (isTextNode(node)) {
|
|
551
|
+
trimAndPush(node.data, strings);
|
|
524
552
|
}
|
|
525
553
|
}
|
|
526
554
|
|
|
527
|
-
function
|
|
528
|
-
if (
|
|
529
|
-
|
|
555
|
+
function trimAndPush(value, strings) {
|
|
556
|
+
if (value) {
|
|
557
|
+
value = value.trim();
|
|
558
|
+
if (value) {
|
|
559
|
+
strings.push(value.replaceAll("\n", " "));
|
|
560
|
+
}
|
|
530
561
|
}
|
|
531
|
-
operation();
|
|
532
|
-
return null;
|
|
533
562
|
}
|
|
534
563
|
|
|
535
|
-
const
|
|
564
|
+
const VisuallyHidden = React.forwardRef((props, ref) => React.createElement("div", {
|
|
565
|
+
ref,
|
|
566
|
+
...props,
|
|
567
|
+
className: `cds-aichat--visually-hidden ${props.className || ""}`
|
|
568
|
+
}, props.children));
|
|
536
569
|
|
|
537
|
-
|
|
570
|
+
VisuallyHidden.displayName = "VisuallyHidden";
|
|
538
571
|
|
|
539
572
|
class AriaAnnouncerComponent extends React.PureComponent {
|
|
540
573
|
constructor() {
|
|
541
574
|
super(...arguments);
|
|
542
575
|
this.ref1 = React.createRef();
|
|
543
576
|
this.ref2 = React.createRef();
|
|
544
|
-
this.
|
|
577
|
+
this.ref3 = React.createRef();
|
|
578
|
+
this.currentRefIndex = 0;
|
|
545
579
|
this.doAnnouncements = () => {
|
|
546
580
|
const strings = [];
|
|
547
581
|
this.pendingValues.forEach(elementToAnnounce => {
|
|
@@ -551,13 +585,17 @@ class AriaAnnouncerComponent extends React.PureComponent {
|
|
|
551
585
|
nodeToText(elementToAnnounce, strings);
|
|
552
586
|
}
|
|
553
587
|
});
|
|
554
|
-
const
|
|
588
|
+
const refs = [ this.ref1, this.ref2, this.ref3 ];
|
|
589
|
+
const useElement = refs[this.currentRefIndex].current;
|
|
555
590
|
if (useElement) {
|
|
556
591
|
useElement.innerText = strings.join(" ");
|
|
557
|
-
|
|
558
|
-
|
|
592
|
+
refs.forEach((ref, index) => {
|
|
593
|
+
if (index !== this.currentRefIndex && ref.current) {
|
|
594
|
+
ref.current.innerHTML = "";
|
|
595
|
+
}
|
|
596
|
+
});
|
|
559
597
|
}
|
|
560
|
-
this.
|
|
598
|
+
this.currentRefIndex = (this.currentRefIndex + 1) % 3;
|
|
561
599
|
this.pendingValues = null;
|
|
562
600
|
};
|
|
563
601
|
}
|
|
@@ -589,52 +627,13 @@ class AriaAnnouncerComponent extends React.PureComponent {
|
|
|
589
627
|
}), React.createElement("div", {
|
|
590
628
|
ref: this.ref2,
|
|
591
629
|
"aria-live": "polite"
|
|
630
|
+
}), React.createElement("div", {
|
|
631
|
+
ref: this.ref3,
|
|
632
|
+
"aria-live": "polite"
|
|
592
633
|
}));
|
|
593
634
|
}
|
|
594
635
|
}
|
|
595
636
|
|
|
596
|
-
function nodeToText(node, strings) {
|
|
597
|
-
if (isElement(node)) {
|
|
598
|
-
if ((!isBrowser() || window.getComputedStyle(node).display !== "none") && node.getAttribute("aria-hidden") !== "true" && !node.hasAttribute(ANNOUNCE_NODE_EXCLUDE_ATTRIBUTE)) {
|
|
599
|
-
trimAndPush(node.getAttribute("aria-label"), strings);
|
|
600
|
-
if (isInputNode(node) && ANNOUNCE_INPUT_TYPES.has(node.type.toLowerCase())) {
|
|
601
|
-
if (node.value === "") {
|
|
602
|
-
trimAndPush(node.placeholder, strings);
|
|
603
|
-
} else {
|
|
604
|
-
trimAndPush(node.value, strings);
|
|
605
|
-
}
|
|
606
|
-
} else if (isTextAreaNode(node)) {
|
|
607
|
-
if (node.value === "") {
|
|
608
|
-
trimAndPush(node.placeholder, strings);
|
|
609
|
-
}
|
|
610
|
-
} else if (isImageNode(node)) {
|
|
611
|
-
trimAndPush(node.alt, strings);
|
|
612
|
-
}
|
|
613
|
-
if (node.shadowRoot) {
|
|
614
|
-
node.shadowRoot.childNodes?.forEach(childNode => {
|
|
615
|
-
nodeToText(childNode, strings);
|
|
616
|
-
});
|
|
617
|
-
}
|
|
618
|
-
if (node.childNodes) {
|
|
619
|
-
node.childNodes.forEach(childNode => {
|
|
620
|
-
nodeToText(childNode, strings);
|
|
621
|
-
});
|
|
622
|
-
}
|
|
623
|
-
}
|
|
624
|
-
} else if (isTextNode(node)) {
|
|
625
|
-
trimAndPush(node.data, strings);
|
|
626
|
-
}
|
|
627
|
-
}
|
|
628
|
-
|
|
629
|
-
function trimAndPush(value, strings) {
|
|
630
|
-
if (value) {
|
|
631
|
-
value = value.trim();
|
|
632
|
-
if (value) {
|
|
633
|
-
strings.push(value.replaceAll("\n", " "));
|
|
634
|
-
}
|
|
635
|
-
}
|
|
636
|
-
}
|
|
637
|
-
|
|
638
637
|
function hasNodeType(value) {
|
|
639
638
|
return value.nodeType !== undefined;
|
|
640
639
|
}
|
|
@@ -971,6 +970,7 @@ function renderAsUserDefinedMessage(messageItem) {
|
|
|
971
970
|
case MessageResponseTypes.CAROUSEL:
|
|
972
971
|
case MessageResponseTypes.BUTTON:
|
|
973
972
|
case MessageResponseTypes.GRID:
|
|
973
|
+
case MessageResponseTypes.SYSTEM:
|
|
974
974
|
return false;
|
|
975
975
|
|
|
976
976
|
default:
|
|
@@ -1088,6 +1088,14 @@ function getMessageIDForUserInput(localMessageItems, allMessagesByID) {
|
|
|
1088
1088
|
return null;
|
|
1089
1089
|
}
|
|
1090
1090
|
|
|
1091
|
+
function getSpeakerName(message, assistantName) {
|
|
1092
|
+
const responseUserProfile = message?.message_options?.response_user_profile;
|
|
1093
|
+
if (!responseUserProfile || !responseUserProfile?.nickname) {
|
|
1094
|
+
return assistantName;
|
|
1095
|
+
}
|
|
1096
|
+
return responseUserProfile.nickname;
|
|
1097
|
+
}
|
|
1098
|
+
|
|
1091
1099
|
function outputItemToLocalItem(messageItem, fullMessage, isLatestWelcomeNode = false) {
|
|
1092
1100
|
const id = streamItemID(fullMessage.id, messageItem) || uuid(UUIDType.LOCAL_MESSAGE);
|
|
1093
1101
|
const localMessage = {
|
|
@@ -1803,7 +1811,7 @@ function agentUpdateIsTyping(isTyping) {
|
|
|
1803
1811
|
};
|
|
1804
1812
|
}
|
|
1805
1813
|
|
|
1806
|
-
const VERSION = "1.
|
|
1814
|
+
const VERSION = "1.9.0";
|
|
1807
1815
|
|
|
1808
1816
|
const TIME_TO_ENTRANCE_ANIMATION_START = 15e3;
|
|
1809
1817
|
|
|
@@ -2008,7 +2016,12 @@ const DEFAULT_THEME_STATE = {
|
|
|
2008
2016
|
derivedCarbonTheme: null,
|
|
2009
2017
|
originalCarbonTheme: null,
|
|
2010
2018
|
aiEnabled: true,
|
|
2011
|
-
corners:
|
|
2019
|
+
corners: {
|
|
2020
|
+
startStart: CornersType.ROUND,
|
|
2021
|
+
startEnd: CornersType.ROUND,
|
|
2022
|
+
endStart: CornersType.ROUND,
|
|
2023
|
+
endEnd: CornersType.ROUND
|
|
2024
|
+
}
|
|
2012
2025
|
};
|
|
2013
2026
|
|
|
2014
2027
|
deepFreeze(DEFAULT_THEME_STATE);
|
|
@@ -2307,6 +2320,7 @@ class ChatActionsImpl {
|
|
|
2307
2320
|
this.alreadyHydrated = false;
|
|
2308
2321
|
this.restartGeneration = 0;
|
|
2309
2322
|
this.messageGenerations = new Map;
|
|
2323
|
+
this.announcedStreamingStarts = new Set;
|
|
2310
2324
|
this.chunkQueue = [];
|
|
2311
2325
|
this.serviceManager = serviceManager;
|
|
2312
2326
|
}
|
|
@@ -2427,7 +2441,10 @@ class ChatActionsImpl {
|
|
|
2427
2441
|
const {store} = this.serviceManager;
|
|
2428
2442
|
const state = store.getState();
|
|
2429
2443
|
const inputState = selectInputState(state);
|
|
2430
|
-
|
|
2444
|
+
let previousValue = inputState[field] ?? "";
|
|
2445
|
+
if (field === "rawValue" && previousValue === "\n") {
|
|
2446
|
+
previousValue = "";
|
|
2447
|
+
}
|
|
2431
2448
|
let nextValue;
|
|
2432
2449
|
try {
|
|
2433
2450
|
nextValue = updater(previousValue);
|
|
@@ -2444,7 +2461,7 @@ class ChatActionsImpl {
|
|
|
2444
2461
|
const payload = {
|
|
2445
2462
|
[field]: nextValue
|
|
2446
2463
|
};
|
|
2447
|
-
if (field === "rawValue"
|
|
2464
|
+
if (field === "rawValue") {
|
|
2448
2465
|
payload.displayValue = nextValue;
|
|
2449
2466
|
}
|
|
2450
2467
|
store.dispatch(actions.updateInputState(payload, selectIsInputToHumanAgent(state)));
|
|
@@ -2568,6 +2585,10 @@ class ChatActionsImpl {
|
|
|
2568
2585
|
if (isStreamPartialItem(chunk)) {
|
|
2569
2586
|
const extractedMessageID = messageID || "streaming_metadata" in chunk && chunk.streaming_metadata?.response_id;
|
|
2570
2587
|
this.serviceManager.messageService.markCurrentMessageAsStreaming(extractedMessageID, chunk.partial_item?.streaming_metadata?.id);
|
|
2588
|
+
if (extractedMessageID && !this.announcedStreamingStarts.has(extractedMessageID)) {
|
|
2589
|
+
this.announcedStreamingStarts.add(extractedMessageID);
|
|
2590
|
+
this.announceStreamingStart(extractedMessageID, chunk);
|
|
2591
|
+
}
|
|
2571
2592
|
}
|
|
2572
2593
|
const chunkPromise = resolvablePromise();
|
|
2573
2594
|
this.chunkQueue.push({
|
|
@@ -2581,6 +2602,27 @@ class ChatActionsImpl {
|
|
|
2581
2602
|
}
|
|
2582
2603
|
return chunkPromise;
|
|
2583
2604
|
}
|
|
2605
|
+
announceStreamingStart(messageID, chunk) {
|
|
2606
|
+
const {store} = this.serviceManager;
|
|
2607
|
+
const {config} = store.getState();
|
|
2608
|
+
const assistantName = config.public.assistantName;
|
|
2609
|
+
const chunkProfile = isStreamPartialItem(chunk) ? chunk.partial_response?.message_options?.response_user_profile : undefined;
|
|
2610
|
+
const message = store.getState().allMessagesByID[messageID];
|
|
2611
|
+
const messageWithProfile = chunkProfile ? {
|
|
2612
|
+
...message,
|
|
2613
|
+
message_options: {
|
|
2614
|
+
...message?.message_options,
|
|
2615
|
+
response_user_profile: chunkProfile
|
|
2616
|
+
}
|
|
2617
|
+
} : message;
|
|
2618
|
+
const speakerName = getSpeakerName(messageWithProfile, assistantName);
|
|
2619
|
+
store.dispatch(actions.announceMessage({
|
|
2620
|
+
messageID: "messages_streamingStart",
|
|
2621
|
+
messageValues: {
|
|
2622
|
+
sender: speakerName
|
|
2623
|
+
}
|
|
2624
|
+
}));
|
|
2625
|
+
}
|
|
2584
2626
|
async processChunkQueue() {
|
|
2585
2627
|
const {chunk, options, chunkPromise} = this.chunkQueue[0];
|
|
2586
2628
|
const {store} = this.serviceManager;
|
|
@@ -2978,6 +3020,7 @@ class ChatActionsImpl {
|
|
|
2978
3020
|
}
|
|
2979
3021
|
this.restarting = true;
|
|
2980
3022
|
this.restartGeneration++;
|
|
3023
|
+
this.announcedStreamingStarts.clear();
|
|
2981
3024
|
store.dispatch(actions.setIsRestarting(true));
|
|
2982
3025
|
serviceManager.restartCount++;
|
|
2983
3026
|
if (state.config.public.messaging.messageLoadingIndicatorTimeoutSecs !== 0) {
|
|
@@ -4354,6 +4397,61 @@ class ThemeWatcherService {
|
|
|
4354
4397
|
}
|
|
4355
4398
|
}
|
|
4356
4399
|
|
|
4400
|
+
function isBrowser() {
|
|
4401
|
+
return typeof window !== "undefined" && typeof navigator !== "undefined";
|
|
4402
|
+
}
|
|
4403
|
+
|
|
4404
|
+
let screenWidth = 0;
|
|
4405
|
+
|
|
4406
|
+
let screenHeight = 0;
|
|
4407
|
+
|
|
4408
|
+
if (isBrowser()) {
|
|
4409
|
+
screenWidth = window.screen.width;
|
|
4410
|
+
screenHeight = window.screen.height;
|
|
4411
|
+
}
|
|
4412
|
+
|
|
4413
|
+
const IS_IOS = isBrowser() && /iPad|iPhone|iPod/.test(navigator.userAgent);
|
|
4414
|
+
|
|
4415
|
+
const IS_ANDROID = isBrowser() && /Android/.test(navigator.userAgent);
|
|
4416
|
+
|
|
4417
|
+
const IS_MOBILE = IS_IOS || IS_ANDROID;
|
|
4418
|
+
|
|
4419
|
+
const IS_PHONE = IS_MOBILE && (screenWidth < 500 || screenHeight < 500);
|
|
4420
|
+
|
|
4421
|
+
const IS_PHONE_IN_PORTRAIT_MODE = IS_PHONE && screenWidth < 500;
|
|
4422
|
+
|
|
4423
|
+
function isSessionStorageAvailable() {
|
|
4424
|
+
if (!isBrowser() || !window.sessionStorage) {
|
|
4425
|
+
return false;
|
|
4426
|
+
}
|
|
4427
|
+
try {
|
|
4428
|
+
window.sessionStorage.setItem("web-chat-test-item", "true");
|
|
4429
|
+
window.sessionStorage.getItem("web-chat-test-item");
|
|
4430
|
+
window.sessionStorage.removeItem("web-chat-test-item");
|
|
4431
|
+
return true;
|
|
4432
|
+
} catch {
|
|
4433
|
+
return false;
|
|
4434
|
+
}
|
|
4435
|
+
}
|
|
4436
|
+
|
|
4437
|
+
const IS_SESSION_STORAGE = memoizeFunction(isSessionStorageAvailable);
|
|
4438
|
+
|
|
4439
|
+
function getURLHostName(url) {
|
|
4440
|
+
try {
|
|
4441
|
+
return new URL(url).hostname;
|
|
4442
|
+
} catch {
|
|
4443
|
+
return url;
|
|
4444
|
+
}
|
|
4445
|
+
}
|
|
4446
|
+
|
|
4447
|
+
function conditionalSetTimeout(operation, timeout) {
|
|
4448
|
+
if (timeout) {
|
|
4449
|
+
return setTimeout(operation, timeout);
|
|
4450
|
+
}
|
|
4451
|
+
operation();
|
|
4452
|
+
return null;
|
|
4453
|
+
}
|
|
4454
|
+
|
|
4357
4455
|
let innerStorage = {};
|
|
4358
4456
|
|
|
4359
4457
|
const storage$1 = {
|
|
@@ -5704,11 +5802,47 @@ function doCreateStore(publicConfig, serviceManager) {
|
|
|
5704
5802
|
return createAppStore(reducerFunction, initialState);
|
|
5705
5803
|
}
|
|
5706
5804
|
|
|
5805
|
+
function isPerCornerConfig(corners) {
|
|
5806
|
+
return typeof corners === "object" && corners !== null && (corners.startStart !== undefined || corners.startEnd !== undefined || corners.endStart !== undefined || corners.endEnd !== undefined);
|
|
5807
|
+
}
|
|
5808
|
+
|
|
5809
|
+
function normalizeCorners(corners, defaultValue) {
|
|
5810
|
+
if (isPerCornerConfig(corners)) {
|
|
5811
|
+
return {
|
|
5812
|
+
startStart: corners.startStart ?? defaultValue,
|
|
5813
|
+
startEnd: corners.startEnd ?? defaultValue,
|
|
5814
|
+
endStart: corners.endStart ?? defaultValue,
|
|
5815
|
+
endEnd: corners.endEnd ?? defaultValue
|
|
5816
|
+
};
|
|
5817
|
+
}
|
|
5818
|
+
const cornerValue = corners ?? defaultValue;
|
|
5819
|
+
return {
|
|
5820
|
+
startStart: cornerValue,
|
|
5821
|
+
startEnd: cornerValue,
|
|
5822
|
+
endStart: cornerValue,
|
|
5823
|
+
endEnd: cornerValue
|
|
5824
|
+
};
|
|
5825
|
+
}
|
|
5826
|
+
|
|
5707
5827
|
function getThemeCornersType(publicConfig) {
|
|
5708
|
-
|
|
5709
|
-
|
|
5828
|
+
const layoutState = getLayoutState(publicConfig);
|
|
5829
|
+
if (layoutState.showFrame === false || IS_PHONE) {
|
|
5830
|
+
return {
|
|
5831
|
+
startStart: CornersType.SQUARE,
|
|
5832
|
+
startEnd: CornersType.SQUARE,
|
|
5833
|
+
endStart: CornersType.SQUARE,
|
|
5834
|
+
endEnd: CornersType.SQUARE
|
|
5835
|
+
};
|
|
5836
|
+
}
|
|
5837
|
+
if (publicConfig.layout?.corners === CornersType.SQUARE) {
|
|
5838
|
+
return {
|
|
5839
|
+
startStart: CornersType.SQUARE,
|
|
5840
|
+
startEnd: CornersType.SQUARE,
|
|
5841
|
+
endStart: CornersType.SQUARE,
|
|
5842
|
+
endEnd: CornersType.SQUARE
|
|
5843
|
+
};
|
|
5710
5844
|
}
|
|
5711
|
-
return DEFAULT_THEME_STATE.corners;
|
|
5845
|
+
return normalizeCorners(publicConfig.layout?.corners, DEFAULT_THEME_STATE.corners.startStart);
|
|
5712
5846
|
}
|
|
5713
5847
|
|
|
5714
5848
|
function getLayoutState(publicConfig) {
|
|
@@ -5848,6 +5982,7 @@ function createServiceManager(appConfig) {
|
|
|
5848
5982
|
[WriteableElementName.AI_TOOLTIP_AFTER_DESCRIPTION_ELEMENT]: document.createElement("div"),
|
|
5849
5983
|
[WriteableElementName.WELCOME_NODE_BEFORE_ELEMENT]: document.createElement("div"),
|
|
5850
5984
|
[WriteableElementName.HEADER_BOTTOM_ELEMENT]: document.createElement("div"),
|
|
5985
|
+
[WriteableElementName.HEADER_FIXED_ACTIONS_ELEMENT]: document.createElement("div"),
|
|
5851
5986
|
[WriteableElementName.BEFORE_INPUT_ELEMENT]: document.createElement("div"),
|
|
5852
5987
|
[WriteableElementName.AFTER_INPUT_ELEMENT]: document.createElement("div"),
|
|
5853
5988
|
[WriteableElementName.FOOTER_ELEMENT]: document.createElement("div"),
|
|
@@ -6876,6 +7011,7 @@ function validateCustomServiceDesk(serviceDesk) {
|
|
|
6876
7011
|
}
|
|
6877
7012
|
|
|
6878
7013
|
const DEFAULT_PUBLIC_CONFIG = {
|
|
7014
|
+
assistantName: "watsonx",
|
|
6879
7015
|
openChatByDefault: false,
|
|
6880
7016
|
shouldTakeFocusIfOpensAutomatically: true,
|
|
6881
7017
|
serviceDesk: {},
|
|
@@ -7251,6 +7387,62 @@ async function applyConfigChangesDynamically(changes, newConfig, serviceManager)
|
|
|
7251
7387
|
}
|
|
7252
7388
|
}
|
|
7253
7389
|
|
|
7390
|
+
function useAriaAnnouncer() {
|
|
7391
|
+
return useContext(AriaAnnouncerContext);
|
|
7392
|
+
}
|
|
7393
|
+
|
|
7394
|
+
function matchesShortcut(event, config) {
|
|
7395
|
+
let keyMatches = false;
|
|
7396
|
+
if (event.code) {
|
|
7397
|
+
let expectedCode;
|
|
7398
|
+
if (config.key.length === 1 && /[a-zA-Z]/.test(config.key)) {
|
|
7399
|
+
expectedCode = `Key${config.key.toUpperCase()}`;
|
|
7400
|
+
} else if (config.key.length === 1 && /[0-9]/.test(config.key)) {
|
|
7401
|
+
expectedCode = `Digit${config.key}`;
|
|
7402
|
+
} else {
|
|
7403
|
+
expectedCode = config.key.charAt(0).toUpperCase() + config.key.slice(1);
|
|
7404
|
+
}
|
|
7405
|
+
keyMatches = event.code === expectedCode;
|
|
7406
|
+
}
|
|
7407
|
+
if (!keyMatches && event.key) {
|
|
7408
|
+
keyMatches = event.key.toLowerCase() === config.key.toLowerCase();
|
|
7409
|
+
}
|
|
7410
|
+
if (!keyMatches) {
|
|
7411
|
+
return false;
|
|
7412
|
+
}
|
|
7413
|
+
const altMatches = !!config.modifiers.alt === event.altKey;
|
|
7414
|
+
const shiftMatches = !!config.modifiers.shift === event.shiftKey;
|
|
7415
|
+
const ctrlMatches = !!config.modifiers.ctrl === event.ctrlKey;
|
|
7416
|
+
const metaMatches = !!config.modifiers.meta === event.metaKey;
|
|
7417
|
+
return altMatches && shiftMatches && ctrlMatches && metaMatches;
|
|
7418
|
+
}
|
|
7419
|
+
|
|
7420
|
+
function formatShortcutForDisplay(config) {
|
|
7421
|
+
const parts = [];
|
|
7422
|
+
if (config.modifiers.ctrl) {
|
|
7423
|
+
parts.push("Ctrl");
|
|
7424
|
+
}
|
|
7425
|
+
if (config.modifiers.alt) {
|
|
7426
|
+
parts.push("Alt");
|
|
7427
|
+
}
|
|
7428
|
+
if (config.modifiers.shift) {
|
|
7429
|
+
parts.push("Shift");
|
|
7430
|
+
}
|
|
7431
|
+
if (config.modifiers.meta) {
|
|
7432
|
+
const isMac = typeof navigator !== "undefined" && /Mac|iPhone|iPad|iPod/.test(navigator.platform);
|
|
7433
|
+
parts.push(isMac ? "Cmd" : "Meta");
|
|
7434
|
+
}
|
|
7435
|
+
const key = config.key.length === 1 ? config.key.toUpperCase() : config.key;
|
|
7436
|
+
parts.push(key);
|
|
7437
|
+
return parts.join(" + ");
|
|
7438
|
+
}
|
|
7439
|
+
|
|
7440
|
+
const DEFAULT_MESSAGE_FOCUS_TOGGLE_SHORTCUT = {
|
|
7441
|
+
key: "F6",
|
|
7442
|
+
modifiers: {},
|
|
7443
|
+
is_on: true
|
|
7444
|
+
};
|
|
7445
|
+
|
|
7254
7446
|
class AppShellErrorBoundary extends React.Component {
|
|
7255
7447
|
componentDidCatch(error, errorInfo) {
|
|
7256
7448
|
this.props.onError(error, errorInfo);
|
|
@@ -7654,24 +7846,6 @@ const AISlug = createComponent({
|
|
|
7654
7846
|
react: React
|
|
7655
7847
|
});
|
|
7656
7848
|
|
|
7657
|
-
const OverflowMenu = createComponent({
|
|
7658
|
-
tagName: "cds-overflow-menu",
|
|
7659
|
-
elementClass: CarbonOverflowMenuElement,
|
|
7660
|
-
react: React
|
|
7661
|
-
});
|
|
7662
|
-
|
|
7663
|
-
const OverflowMenuBody = createComponent({
|
|
7664
|
-
tagName: "cds-overflow-menu-body",
|
|
7665
|
-
elementClass: CarbonOverflowMenuElement$1,
|
|
7666
|
-
react: React
|
|
7667
|
-
});
|
|
7668
|
-
|
|
7669
|
-
const OverflowMenuItem = createComponent({
|
|
7670
|
-
tagName: "cds-overflow-menu-item",
|
|
7671
|
-
elementClass: CarbonOverflowMenuItemElement,
|
|
7672
|
-
react: React
|
|
7673
|
-
});
|
|
7674
|
-
|
|
7675
7849
|
function WriteableElement({slotName, id, className, wrapperSlot}) {
|
|
7676
7850
|
if (!wrapperSlot) {
|
|
7677
7851
|
return React.createElement("div", {
|
|
@@ -7694,83 +7868,6 @@ function WriteableElement({slotName, id, className, wrapperSlot}) {
|
|
|
7694
7868
|
|
|
7695
7869
|
var WriteableElement$1 = React.memo(WriteableElement);
|
|
7696
7870
|
|
|
7697
|
-
var css_248z$2 = "cds-chat-header-title{\n text-align:center;\n}\n\n.cds-aichat--chat-header-title{\n font-size:var(--cds-body-01-font-size, 0.875rem);\n font-weight:var(--cds-body-01-font-weight, 400);\n line-height:var(--cds-body-01-line-height, 1.42857);\n letter-spacing:var(--cds-body-01-letter-spacing, 0.16px);\n overflow:hidden;\n overflow-wrap:break-word;\n text-overflow:ellipsis;\n white-space:nowrap;\n word-wrap:break-word;\n}\n\n.cds-aichat--chat-header-title .cds-aichat--chat-header-title__title:only-child{\n padding-inline-end:0.25rem;\n}\n\n.cds-aichat--chat-header-title__name{\n font-weight:600;\n}";
|
|
7698
|
-
|
|
7699
|
-
function chatHeaderTitleTemplate(customElementClass) {
|
|
7700
|
-
const {title, name} = customElementClass;
|
|
7701
|
-
return html`<div class="cds-aichat--chat-header-title">
|
|
7702
|
-
<span
|
|
7703
|
-
className="cds-aichat--chat-header-title__title"
|
|
7704
|
-
data-testid="header_title"
|
|
7705
|
-
?hidden="${!title}"
|
|
7706
|
-
>${title}</span
|
|
7707
|
-
>
|
|
7708
|
-
<span
|
|
7709
|
-
class="cds-aichat--chat-header-title__name"
|
|
7710
|
-
data-testid="header_name"
|
|
7711
|
-
?hidden="${!name}"
|
|
7712
|
-
>${name}</span
|
|
7713
|
-
>
|
|
7714
|
-
</div>`;
|
|
7715
|
-
}
|
|
7716
|
-
|
|
7717
|
-
let ChatHeaderTitleElement = class ChatHeaderTitleElement extends LitElement {
|
|
7718
|
-
render() {
|
|
7719
|
-
return chatHeaderTitleTemplate(this);
|
|
7720
|
-
}
|
|
7721
|
-
};
|
|
7722
|
-
|
|
7723
|
-
ChatHeaderTitleElement.styles = css`
|
|
7724
|
-
${unsafeCSS(css_248z$2)}
|
|
7725
|
-
`;
|
|
7726
|
-
|
|
7727
|
-
__decorate([ property({
|
|
7728
|
-
type: String
|
|
7729
|
-
}) ], ChatHeaderTitleElement.prototype, "title", void 0);
|
|
7730
|
-
|
|
7731
|
-
__decorate([ property({
|
|
7732
|
-
type: String
|
|
7733
|
-
}) ], ChatHeaderTitleElement.prototype, "name", void 0);
|
|
7734
|
-
|
|
7735
|
-
ChatHeaderTitleElement = __decorate([ carbonElement("cds-aichat-chat-header-title") ], ChatHeaderTitleElement);
|
|
7736
|
-
|
|
7737
|
-
const ChatHeaderTitle = createComponent({
|
|
7738
|
-
tagName: `cds-aichat-chat-header-title`,
|
|
7739
|
-
elementClass: ChatHeaderTitleElement,
|
|
7740
|
-
react: React
|
|
7741
|
-
});
|
|
7742
|
-
|
|
7743
|
-
const CloseLarge = carbonIconToReact(CloseLarge16);
|
|
7744
|
-
|
|
7745
|
-
const Home = carbonIconToReact(Home16);
|
|
7746
|
-
|
|
7747
|
-
const OverflowMenuVertical = carbonIconToReact(OverflowMenuVertical16);
|
|
7748
|
-
|
|
7749
|
-
const Restart = carbonIconToReact(Restart16);
|
|
7750
|
-
|
|
7751
|
-
const RightPanelClose = carbonIconToReact(RightPanelClose16);
|
|
7752
|
-
|
|
7753
|
-
const SidePanelClose = carbonIconToReact(SidePanelClose16);
|
|
7754
|
-
|
|
7755
|
-
const SubtractLarge = carbonIconToReact(SubtractLarge16);
|
|
7756
|
-
|
|
7757
|
-
function HeaderButton({onClick, buttonRef, className, children, buttonKind, isReversible = true, tooltipPosition, testId, label, disabled = false}) {
|
|
7758
|
-
const buttonKindVal = buttonKind || BUTTON_KIND.GHOST;
|
|
7759
|
-
return React.createElement(Button, {
|
|
7760
|
-
ref: buttonRef,
|
|
7761
|
-
className: cx(className, {
|
|
7762
|
-
"cds-aichat--direction-has-reversible-svg": isReversible
|
|
7763
|
-
}),
|
|
7764
|
-
onClick,
|
|
7765
|
-
size: BUTTON_SIZE.MEDIUM,
|
|
7766
|
-
kind: buttonKindVal,
|
|
7767
|
-
tooltipPosition,
|
|
7768
|
-
"data-testid": testId,
|
|
7769
|
-
disabled,
|
|
7770
|
-
tooltipText: label
|
|
7771
|
-
}, children);
|
|
7772
|
-
}
|
|
7773
|
-
|
|
7774
7871
|
function Header(props, ref) {
|
|
7775
7872
|
const {onClose, onRestart, onToggleHomeScreen, headerDisplayName, isHomeScreenActive, headerConfigOverride} = props;
|
|
7776
7873
|
const serviceManager = useServiceManager();
|
|
@@ -7799,11 +7896,10 @@ function Header(props, ref) {
|
|
|
7799
7896
|
const memoizedCustomMenuOptions = useMemo(() => customMenuOptions || undefined, [ customMenuOptions ]);
|
|
7800
7897
|
const headerConfig = mergedHeaderConfig;
|
|
7801
7898
|
const {isConnectingOrConnected} = useSelector(selectHumanAgentDisplayState, shallowEqual);
|
|
7899
|
+
const isOpen = useSelector(state => state.persistedToBrowserStorage.viewState.mainWindow);
|
|
7802
7900
|
const isRestarting = useSelector(state => state.isRestarting);
|
|
7803
7901
|
const backButtonRef = useRef(undefined);
|
|
7804
|
-
const
|
|
7805
|
-
const closeButtonRef = useRef(undefined);
|
|
7806
|
-
const overflowRef = useRef(undefined);
|
|
7902
|
+
const chatHeaderRef = useRef(null);
|
|
7807
7903
|
const isRTL = document.dir === "rtl";
|
|
7808
7904
|
const showRestartButton = headerConfig?.showRestartButton;
|
|
7809
7905
|
const showAiLabel = headerConfig?.showAiLabel;
|
|
@@ -7821,32 +7917,51 @@ function Header(props, ref) {
|
|
|
7821
7917
|
const aiSlugDescription = languagePack.ai_slug_description;
|
|
7822
7918
|
const allowHomeScreen = homeScreenIsOn && !isConnectingOrConnected && !isHomeScreenActive;
|
|
7823
7919
|
const showBackButton = Boolean(allowHomeScreen && onToggleHomeScreen);
|
|
7920
|
+
const overflowItems = memoizedCustomMenuOptions?.map(option => option.text);
|
|
7921
|
+
if (overflowItems && allowHomeScreen) {
|
|
7922
|
+
overflowItems.splice(0, 0, languagePack.homeScreen_overflowMenuHomeScreen);
|
|
7923
|
+
}
|
|
7924
|
+
const handleBackButtonClick = useCallback(() => {
|
|
7925
|
+
const event = {
|
|
7926
|
+
type: BusEventType.HEADER_MENU_CLICK,
|
|
7927
|
+
clickType: HeaderMenuClickType.HOMESCREEN_BUTTON,
|
|
7928
|
+
menuItemText: backButtonLabel
|
|
7929
|
+
};
|
|
7930
|
+
serviceManager.fire(event);
|
|
7931
|
+
onToggleHomeScreen?.();
|
|
7932
|
+
}, [ onToggleHomeScreen, backButtonLabel, serviceManager ]);
|
|
7933
|
+
const handleOverflowMenuClick = useCallback(() => {
|
|
7934
|
+
const event = {
|
|
7935
|
+
type: BusEventType.HEADER_MENU_CLICK,
|
|
7936
|
+
clickType: HeaderMenuClickType.OVERFLOW_MENU_OPENED
|
|
7937
|
+
};
|
|
7938
|
+
serviceManager.fire(event);
|
|
7939
|
+
}, [ serviceManager ]);
|
|
7824
7940
|
const overflowClicked = useCallback(index => {
|
|
7941
|
+
const menuItemText = overflowItems?.[index];
|
|
7942
|
+
const event = {
|
|
7943
|
+
type: BusEventType.HEADER_MENU_CLICK,
|
|
7944
|
+
clickType: HeaderMenuClickType.OVERFLOW_MENU_ITEM,
|
|
7945
|
+
menuItemIndex: index,
|
|
7946
|
+
menuItemText
|
|
7947
|
+
};
|
|
7948
|
+
serviceManager.fire(event);
|
|
7825
7949
|
if (index === 0 && allowHomeScreen) {
|
|
7826
7950
|
onToggleHomeScreen?.();
|
|
7827
7951
|
} else {
|
|
7828
7952
|
const handler = memoizedCustomMenuOptions?.[allowHomeScreen ? index - 1 : index]?.handler;
|
|
7829
7953
|
handler?.();
|
|
7830
7954
|
}
|
|
7831
|
-
}, [ memoizedCustomMenuOptions, onToggleHomeScreen, allowHomeScreen ]);
|
|
7832
|
-
const overflowItems = memoizedCustomMenuOptions?.map(option => option.text);
|
|
7833
|
-
if (overflowItems && allowHomeScreen) {
|
|
7834
|
-
overflowItems.splice(0, 0, languagePack.homeScreen_overflowMenuHomeScreen);
|
|
7835
|
-
}
|
|
7955
|
+
}, [ memoizedCustomMenuOptions, onToggleHomeScreen, allowHomeScreen, overflowItems, serviceManager ]);
|
|
7836
7956
|
useImperativeHandle(ref, () => ({
|
|
7837
7957
|
requestFocus: () => {
|
|
7838
|
-
if (
|
|
7839
|
-
|
|
7840
|
-
return true;
|
|
7958
|
+
if (chatHeaderRef.current) {
|
|
7959
|
+
return chatHeaderRef.current.requestFocus();
|
|
7841
7960
|
}
|
|
7842
7961
|
if (backButtonRef.current) {
|
|
7843
7962
|
doFocusRef(backButtonRef, false, true);
|
|
7844
7963
|
return true;
|
|
7845
7964
|
}
|
|
7846
|
-
if (restartButtonRef.current && !isRestarting) {
|
|
7847
|
-
doFocusRef(restartButtonRef, false, true);
|
|
7848
|
-
return true;
|
|
7849
|
-
}
|
|
7850
7965
|
return false;
|
|
7851
7966
|
}
|
|
7852
7967
|
}));
|
|
@@ -7857,108 +7972,96 @@ function Header(props, ref) {
|
|
|
7857
7972
|
const shouldShowAiLabel = showAiLabel !== undefined ? showAiLabel : true;
|
|
7858
7973
|
const showAiSlugContent = shouldShowAiLabel && !!(aiSlugLabel || aiSlugTitle || aiSlugDescription || aiSlugAfterDescriptionElement);
|
|
7859
7974
|
const useHideCloseButton = hideCloseButton ?? false;
|
|
7860
|
-
|
|
7861
|
-
|
|
7862
|
-
|
|
7863
|
-
|
|
7864
|
-
|
|
7865
|
-
|
|
7866
|
-
|
|
7867
|
-
|
|
7868
|
-
|
|
7869
|
-
|
|
7975
|
+
const actions = useMemo(() => {
|
|
7976
|
+
const actionsArray = [ ...headerConfig?.actions || [] ];
|
|
7977
|
+
if (showRestartButton) {
|
|
7978
|
+
actionsArray.push({
|
|
7979
|
+
text: restartButtonLabel ?? "",
|
|
7980
|
+
icon: Restart16,
|
|
7981
|
+
onClick: onRestart ?? (() => {}),
|
|
7982
|
+
disabled: isRestarting,
|
|
7983
|
+
size: BUTTON_SIZE$1.MEDIUM,
|
|
7984
|
+
fixed: true
|
|
7985
|
+
});
|
|
7986
|
+
}
|
|
7987
|
+
if (!useHideCloseButton) {
|
|
7988
|
+
let closeIconToUse = SubtractLarge16;
|
|
7989
|
+
switch (minimizeButtonIconType) {
|
|
7990
|
+
case MinimizeButtonIconType.CLOSE:
|
|
7991
|
+
closeIconToUse = CloseLarge16;
|
|
7992
|
+
break;
|
|
7870
7993
|
|
|
7871
|
-
|
|
7872
|
-
|
|
7873
|
-
|
|
7874
|
-
slot: "icon"
|
|
7875
|
-
});
|
|
7876
|
-
break;
|
|
7994
|
+
case MinimizeButtonIconType.MINIMIZE:
|
|
7995
|
+
closeIconToUse = SubtractLarge16;
|
|
7996
|
+
break;
|
|
7877
7997
|
|
|
7878
|
-
|
|
7879
|
-
|
|
7880
|
-
|
|
7881
|
-
"aria-label": closeButtonLabel,
|
|
7882
|
-
slot: "icon"
|
|
7883
|
-
});
|
|
7884
|
-
break;
|
|
7998
|
+
case MinimizeButtonIconType.SIDE_PANEL_LEFT:
|
|
7999
|
+
closeIconToUse = isOpen ? RightPanelOpen16 : RightPanelClose16;
|
|
8000
|
+
break;
|
|
7885
8001
|
|
|
7886
|
-
|
|
7887
|
-
|
|
7888
|
-
|
|
7889
|
-
closeIcon = React.createElement(RightPanelClose, {
|
|
7890
|
-
"aria-label": closeButtonLabel,
|
|
7891
|
-
slot: "icon"
|
|
7892
|
-
});
|
|
7893
|
-
break;
|
|
8002
|
+
case MinimizeButtonIconType.SIDE_PANEL_RIGHT:
|
|
8003
|
+
closeIconToUse = isOpen ? RightPanelClose16 : RightPanelOpen16;
|
|
8004
|
+
break;
|
|
7894
8005
|
|
|
7895
|
-
|
|
7896
|
-
|
|
7897
|
-
|
|
7898
|
-
|
|
7899
|
-
|
|
8006
|
+
default:
|
|
8007
|
+
closeIconToUse = SubtractLarge16;
|
|
8008
|
+
break;
|
|
8009
|
+
}
|
|
8010
|
+
actionsArray.push({
|
|
8011
|
+
text: closeButtonLabel ?? "",
|
|
8012
|
+
icon: closeIconToUse,
|
|
8013
|
+
onClick: onClose,
|
|
8014
|
+
size: BUTTON_SIZE$1.MEDIUM,
|
|
8015
|
+
fixed: true,
|
|
8016
|
+
testId: PageObjectId.CLOSE_CHAT
|
|
7900
8017
|
});
|
|
7901
|
-
break;
|
|
7902
8018
|
}
|
|
7903
|
-
|
|
7904
|
-
|
|
7905
|
-
const
|
|
7906
|
-
|
|
7907
|
-
|
|
7908
|
-
|
|
7909
|
-
|
|
7910
|
-
|
|
7911
|
-
|
|
7912
|
-
|
|
7913
|
-
|
|
7914
|
-
|
|
7915
|
-
|
|
7916
|
-
|
|
7917
|
-
|
|
7918
|
-
|
|
7919
|
-
|
|
7920
|
-
|
|
7921
|
-
|
|
7922
|
-
|
|
7923
|
-
|
|
7924
|
-
}
|
|
7925
|
-
}, item))));
|
|
7926
|
-
} else if (showBackButton) {
|
|
7927
|
-
leftContent = React.createElement(HeaderButton, {
|
|
7928
|
-
className: "cds-aichat--header__back-button",
|
|
7929
|
-
label: backButtonLabel,
|
|
7930
|
-
onClick: onToggleHomeScreen,
|
|
7931
|
-
buttonRef: backButtonRef,
|
|
7932
|
-
tooltipPosition: isRTL ? BUTTON_TOOLTIP_POSITION.LEFT : BUTTON_TOOLTIP_POSITION.RIGHT
|
|
7933
|
-
}, React.createElement(Home, {
|
|
7934
|
-
"aria-label": backButtonLabel,
|
|
7935
|
-
slot: "icon"
|
|
7936
|
-
}));
|
|
7937
|
-
}
|
|
8019
|
+
return actionsArray;
|
|
8020
|
+
}, [ closeButtonLabel, headerConfig?.actions, isOpen, isRestarting, minimizeButtonIconType, onClose, onRestart, restartButtonLabel, showRestartButton, useHideCloseButton ]);
|
|
8021
|
+
const navigationType = overflowItems ? "overflow" : showBackButton ? "back" : "none";
|
|
8022
|
+
const navigationOverflowItemsWithHandlers = useMemo(() => {
|
|
8023
|
+
if (!overflowItems) {
|
|
8024
|
+
return undefined;
|
|
8025
|
+
}
|
|
8026
|
+
return overflowItems.map((text, index) => {
|
|
8027
|
+
const menuOption = allowHomeScreen && index === 0 ? undefined : memoizedCustomMenuOptions?.[allowHomeScreen ? index - 1 : index];
|
|
8028
|
+
return {
|
|
8029
|
+
text,
|
|
8030
|
+
onClick: menuOption?.href ? undefined : () => {
|
|
8031
|
+
overflowClicked?.(index);
|
|
8032
|
+
},
|
|
8033
|
+
href: menuOption?.href,
|
|
8034
|
+
target: menuOption?.target,
|
|
8035
|
+
disabled: menuOption?.disabled,
|
|
8036
|
+
testId: menuOption?.testId
|
|
8037
|
+
};
|
|
8038
|
+
});
|
|
8039
|
+
}, [ overflowItems, overflowClicked, memoizedCustomMenuOptions, allowHomeScreen ]);
|
|
7938
8040
|
return React.createElement("div", {
|
|
7939
8041
|
className: "cds-aichat--header__container"
|
|
7940
|
-
}, React.createElement(
|
|
7941
|
-
|
|
7942
|
-
|
|
7943
|
-
|
|
7944
|
-
|
|
7945
|
-
|
|
7946
|
-
|
|
7947
|
-
|
|
7948
|
-
|
|
7949
|
-
|
|
7950
|
-
|
|
7951
|
-
|
|
7952
|
-
|
|
7953
|
-
|
|
7954
|
-
|
|
7955
|
-
|
|
8042
|
+
}, React.createElement(ChatHeader, {
|
|
8043
|
+
ref: chatHeaderRef,
|
|
8044
|
+
actions,
|
|
8045
|
+
overflow: true,
|
|
8046
|
+
headerTitle,
|
|
8047
|
+
headerName: chatHeaderDisplayName,
|
|
8048
|
+
navigationType,
|
|
8049
|
+
navigationBackIcon: Home16,
|
|
8050
|
+
navigationBackLabel: backButtonLabel,
|
|
8051
|
+
navigationBackOnClick: handleBackButtonClick,
|
|
8052
|
+
navigationOverflowItems: navigationOverflowItemsWithHandlers,
|
|
8053
|
+
navigationOverflowLabel: overflowMenuTooltip,
|
|
8054
|
+
navigationOverflowAriaLabel: overflowMenuAriaLabel,
|
|
8055
|
+
navigationOverflowIcon: OverflowMenuVertical16,
|
|
8056
|
+
navigationOverflowOnClick: handleOverflowMenuClick,
|
|
8057
|
+
navigationTooltipAlign: isRTL ? "left" : "right"
|
|
7956
8058
|
}, showAiSlugContent && React.createElement(AISlug, {
|
|
8059
|
+
slot: "decorator",
|
|
7957
8060
|
className: "cds-aichat--header__slug",
|
|
7958
8061
|
size: AI_LABEL_SIZE.EXTRA_SMALL,
|
|
7959
|
-
alignment: isRTL ? POPOVER_ALIGNMENT.BOTTOM_LEFT : POPOVER_ALIGNMENT.BOTTOM_RIGHT,
|
|
7960
8062
|
"aria-label": aiSlugLabel,
|
|
7961
|
-
role: "button"
|
|
8063
|
+
role: "button",
|
|
8064
|
+
alignment: isRTL ? POPOVER_ALIGNMENT.BOTTOM_LEFT : POPOVER_ALIGNMENT.BOTTOM_RIGHT
|
|
7962
8065
|
}, React.createElement("div", {
|
|
7963
8066
|
role: "dialog",
|
|
7964
8067
|
slot: "body-text"
|
|
@@ -7968,27 +8071,11 @@ function Header(props, ref) {
|
|
|
7968
8071
|
className: "cds-aichat--header__slug-title"
|
|
7969
8072
|
}, aiSlugTitle), React.createElement("div", {
|
|
7970
8073
|
className: "cds-aichat--header__slug-description"
|
|
7971
|
-
}, React.createElement("div", null, aiSlugDescription), aiSlugAfterDescriptionElement))),
|
|
7972
|
-
|
|
7973
|
-
|
|
7974
|
-
|
|
7975
|
-
|
|
7976
|
-
disabled: isRestarting,
|
|
7977
|
-
tooltipPosition: isRTL ? BUTTON_TOOLTIP_POSITION.RIGHT : BUTTON_TOOLTIP_POSITION.LEFT
|
|
7978
|
-
}, React.createElement(Restart, {
|
|
7979
|
-
"aria-label": restartButtonLabel ?? "",
|
|
7980
|
-
slot: "icon"
|
|
7981
|
-
})), !useHideCloseButton && React.createElement(HeaderButton, {
|
|
7982
|
-
className: cx("cds-aichat--header__close-button", {
|
|
7983
|
-
"cds-aichat--reverse-icon": closeReverseIcon
|
|
7984
|
-
}),
|
|
7985
|
-
isReversible: closeIsReversible,
|
|
7986
|
-
label: closeButtonLabel ?? "",
|
|
7987
|
-
onClick: onClose,
|
|
7988
|
-
buttonRef: closeButtonRef,
|
|
7989
|
-
tooltipPosition: isRTL ? BUTTON_TOOLTIP_POSITION.RIGHT : BUTTON_TOOLTIP_POSITION.LEFT,
|
|
7990
|
-
testId: PageObjectId.CLOSE_CHAT
|
|
7991
|
-
}, closeIcon)))));
|
|
8074
|
+
}, React.createElement("div", null, aiSlugDescription), aiSlugAfterDescriptionElement))), React.createElement(WriteableElement$1, {
|
|
8075
|
+
wrapperSlot: "fixed-actions",
|
|
8076
|
+
slotName: WriteableElementName.HEADER_FIXED_ACTIONS_ELEMENT,
|
|
8077
|
+
id: `headerFixedActionsElement${serviceManager.namespace.suffix}`
|
|
8078
|
+
})));
|
|
7992
8079
|
}
|
|
7993
8080
|
|
|
7994
8081
|
const HeaderExport = React.memo(forwardRef(Header));
|
|
@@ -8045,7 +8132,7 @@ function useShouldSanitizeHTML() {
|
|
|
8045
8132
|
return Boolean(config.shouldSanitizeHTML);
|
|
8046
8133
|
}
|
|
8047
8134
|
|
|
8048
|
-
function
|
|
8135
|
+
function MarkdownWithDefaults(props) {
|
|
8049
8136
|
const {text, removeHTML, overrideSanitize, streaming, highlight = true} = props;
|
|
8050
8137
|
let doSanitize = useShouldSanitizeHTML();
|
|
8051
8138
|
if (overrideSanitize !== undefined) {
|
|
@@ -8054,7 +8141,6 @@ function RichText(props) {
|
|
|
8054
8141
|
const languagePack = useLanguagePack();
|
|
8055
8142
|
const {formatMessage} = useIntl();
|
|
8056
8143
|
const locale = useSelector(state => state.config.public.locale || "en");
|
|
8057
|
-
const debug = useSelector(state => state.config.public.debug);
|
|
8058
8144
|
const getPaginationSupplementalText = useMemo(() => ({count}) => formatMessage({
|
|
8059
8145
|
id: "table_paginationSupplementalText"
|
|
8060
8146
|
}, {
|
|
@@ -8072,14 +8158,8 @@ function RichText(props) {
|
|
|
8072
8158
|
}, {
|
|
8073
8159
|
count
|
|
8074
8160
|
}), [ formatMessage ]);
|
|
8075
|
-
if (debug) {
|
|
8076
|
-
debugLog("Receiving markdown text", {
|
|
8077
|
-
text,
|
|
8078
|
-
streaming
|
|
8079
|
-
});
|
|
8080
|
-
}
|
|
8081
8161
|
return React.createElement(Markdown, {
|
|
8082
|
-
|
|
8162
|
+
markdown: text,
|
|
8083
8163
|
sanitizeHTML: doSanitize,
|
|
8084
8164
|
streaming,
|
|
8085
8165
|
highlight,
|
|
@@ -8095,11 +8175,13 @@ function RichText(props) {
|
|
|
8095
8175
|
showLessText: languagePack.codeSnippet_showLessText,
|
|
8096
8176
|
showMoreText: languagePack.codeSnippet_showMoreText,
|
|
8097
8177
|
tooltipContent: languagePack.codeSnippet_tooltipContent,
|
|
8098
|
-
getLineCountText
|
|
8099
|
-
|
|
8178
|
+
getLineCountText,
|
|
8179
|
+
codeSnippetAriaLabelReadOnly: languagePack.codeSnippet_ariaLabelReadOnly,
|
|
8180
|
+
codeSnippetAriaLabelEditable: languagePack.codeSnippet_ariaLabelEditable
|
|
8181
|
+
});
|
|
8100
8182
|
}
|
|
8101
8183
|
|
|
8102
|
-
const
|
|
8184
|
+
const MarkdownWithDefaultsExport = React.memo(MarkdownWithDefaults, (prevProps, nextProps) => {
|
|
8103
8185
|
const textEqual = prevProps.text === nextProps.text;
|
|
8104
8186
|
const htmlConversionEqual = prevProps.removeHTML === nextProps.removeHTML;
|
|
8105
8187
|
const sanitizeEqual = prevProps.overrideSanitize === nextProps.overrideSanitize;
|
|
@@ -8132,7 +8214,7 @@ function AvailabilityMessage({availability, fallbackText}) {
|
|
|
8132
8214
|
availabilityText = fallbackText;
|
|
8133
8215
|
}
|
|
8134
8216
|
if (availabilityText) {
|
|
8135
|
-
return React.createElement(
|
|
8217
|
+
return React.createElement(MarkdownWithDefaultsExport, {
|
|
8136
8218
|
overrideSanitize: true,
|
|
8137
8219
|
text: availabilityText,
|
|
8138
8220
|
highlight: true
|
|
@@ -8250,17 +8332,42 @@ function LatestWelcomeNodes({children}) {
|
|
|
8250
8332
|
|
|
8251
8333
|
var LatestWelcomeNodes$1 = React.memo(LatestWelcomeNodes);
|
|
8252
8334
|
|
|
8335
|
+
const ClickableTile = createComponent({
|
|
8336
|
+
tagName: "cds-clickable-tile",
|
|
8337
|
+
elementClass: CarbonClickableTileElement,
|
|
8338
|
+
react: React
|
|
8339
|
+
});
|
|
8340
|
+
|
|
8253
8341
|
function MessagesScrollHandle({ariaLabel, buttonRef, onBlur, onClick, onFocus}) {
|
|
8254
|
-
|
|
8255
|
-
|
|
8256
|
-
|
|
8342
|
+
const handleKeyDown = event => {
|
|
8343
|
+
if (event.key === "Escape") {
|
|
8344
|
+
event.preventDefault();
|
|
8345
|
+
event.target.blur();
|
|
8346
|
+
} else if ((event.key === "Enter" || event.key === " ") && onClick) {
|
|
8347
|
+
event.preventDefault();
|
|
8348
|
+
onClick();
|
|
8349
|
+
}
|
|
8350
|
+
};
|
|
8351
|
+
if (IS_MOBILE) {
|
|
8352
|
+
return React.createElement("button", {
|
|
8353
|
+
type: "button",
|
|
8354
|
+
className: "cds-aichat--messages--scroll-handle",
|
|
8355
|
+
ref: buttonRef,
|
|
8356
|
+
tabIndex: 0,
|
|
8357
|
+
"aria-label": ariaLabel,
|
|
8358
|
+
onClick,
|
|
8359
|
+
onFocus,
|
|
8360
|
+
onBlur
|
|
8361
|
+
});
|
|
8362
|
+
}
|
|
8363
|
+
return React.createElement(ClickableTile, {
|
|
8364
|
+
className: "cds-aichat--messages--scroll-handle-desktop",
|
|
8257
8365
|
ref: buttonRef,
|
|
8258
|
-
tabIndex: 0,
|
|
8259
|
-
"aria-label": ariaLabel,
|
|
8260
8366
|
onClick,
|
|
8367
|
+
onKeyDown: handleKeyDown,
|
|
8261
8368
|
onFocus,
|
|
8262
8369
|
onBlur
|
|
8263
|
-
});
|
|
8370
|
+
}, ariaLabel);
|
|
8264
8371
|
}
|
|
8265
8372
|
|
|
8266
8373
|
class MountChildrenOnDelay extends PureComponent {
|
|
@@ -8345,18 +8452,18 @@ function MessagesTypingIndicator({carbonTheme, index, isTypingMessage, isVisible
|
|
|
8345
8452
|
function MessagesView({bottomScrollHandle, bottomSpacerRef, humanAgentBanner, messagesContainerRef, onScroll, regularMessages, scrollDownButton, scrollHandleHasFocus, topScrollHandle, typingIndicator}) {
|
|
8346
8453
|
return React.createElement("div", {
|
|
8347
8454
|
className: "cds-aichat--messages--holder"
|
|
8348
|
-
}, humanAgentBanner, React.createElement("div", {
|
|
8455
|
+
}, humanAgentBanner, topScrollHandle, React.createElement("div", {
|
|
8349
8456
|
className: cx("cds-aichat--messages__wrapper", {
|
|
8350
8457
|
"cds-aichat--messages__wrapper--scroll-handle-has-focus": scrollHandleHasFocus
|
|
8351
8458
|
}),
|
|
8352
8459
|
ref: messagesContainerRef,
|
|
8353
8460
|
onScroll
|
|
8354
|
-
},
|
|
8461
|
+
}, React.createElement("div", {
|
|
8355
8462
|
className: "cds-aichat--messages"
|
|
8356
8463
|
}, regularMessages, typingIndicator, React.createElement("div", {
|
|
8357
8464
|
id: "chat-bottom-spacer",
|
|
8358
8465
|
ref: bottomSpacerRef
|
|
8359
|
-
}), scrollDownButton), bottomScrollHandle)
|
|
8466
|
+
}), scrollDownButton)), bottomScrollHandle);
|
|
8360
8467
|
}
|
|
8361
8468
|
|
|
8362
8469
|
function SystemMessage({message, standalone = true}) {
|
|
@@ -8391,373 +8498,7 @@ function withServiceManager(Component) {
|
|
|
8391
8498
|
return Wrapped;
|
|
8392
8499
|
}
|
|
8393
8500
|
|
|
8394
|
-
|
|
8395
|
-
|
|
8396
|
-
function getDefaultExportFromCjs(x) {
|
|
8397
|
-
return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, "default") ? x["default"] : x;
|
|
8398
|
-
}
|
|
8399
|
-
|
|
8400
|
-
var isObject_1;
|
|
8401
|
-
|
|
8402
|
-
var hasRequiredIsObject;
|
|
8403
|
-
|
|
8404
|
-
function requireIsObject() {
|
|
8405
|
-
if (hasRequiredIsObject) return isObject_1;
|
|
8406
|
-
hasRequiredIsObject = 1;
|
|
8407
|
-
function isObject(value) {
|
|
8408
|
-
var type = typeof value;
|
|
8409
|
-
return value != null && (type == "object" || type == "function");
|
|
8410
|
-
}
|
|
8411
|
-
isObject_1 = isObject;
|
|
8412
|
-
return isObject_1;
|
|
8413
|
-
}
|
|
8414
|
-
|
|
8415
|
-
var _freeGlobal;
|
|
8416
|
-
|
|
8417
|
-
var hasRequired_freeGlobal;
|
|
8418
|
-
|
|
8419
|
-
function require_freeGlobal() {
|
|
8420
|
-
if (hasRequired_freeGlobal) return _freeGlobal;
|
|
8421
|
-
hasRequired_freeGlobal = 1;
|
|
8422
|
-
var freeGlobal = typeof commonjsGlobal == "object" && commonjsGlobal && commonjsGlobal.Object === Object && commonjsGlobal;
|
|
8423
|
-
_freeGlobal = freeGlobal;
|
|
8424
|
-
return _freeGlobal;
|
|
8425
|
-
}
|
|
8426
|
-
|
|
8427
|
-
var _root;
|
|
8428
|
-
|
|
8429
|
-
var hasRequired_root;
|
|
8430
|
-
|
|
8431
|
-
function require_root() {
|
|
8432
|
-
if (hasRequired_root) return _root;
|
|
8433
|
-
hasRequired_root = 1;
|
|
8434
|
-
var freeGlobal = require_freeGlobal();
|
|
8435
|
-
var freeSelf = typeof self == "object" && self && self.Object === Object && self;
|
|
8436
|
-
var root = freeGlobal || freeSelf || Function("return this")();
|
|
8437
|
-
_root = root;
|
|
8438
|
-
return _root;
|
|
8439
|
-
}
|
|
8440
|
-
|
|
8441
|
-
var now_1;
|
|
8442
|
-
|
|
8443
|
-
var hasRequiredNow;
|
|
8444
|
-
|
|
8445
|
-
function requireNow() {
|
|
8446
|
-
if (hasRequiredNow) return now_1;
|
|
8447
|
-
hasRequiredNow = 1;
|
|
8448
|
-
var root = require_root();
|
|
8449
|
-
var now = function() {
|
|
8450
|
-
return root.Date.now();
|
|
8451
|
-
};
|
|
8452
|
-
now_1 = now;
|
|
8453
|
-
return now_1;
|
|
8454
|
-
}
|
|
8455
|
-
|
|
8456
|
-
var _trimmedEndIndex;
|
|
8457
|
-
|
|
8458
|
-
var hasRequired_trimmedEndIndex;
|
|
8459
|
-
|
|
8460
|
-
function require_trimmedEndIndex() {
|
|
8461
|
-
if (hasRequired_trimmedEndIndex) return _trimmedEndIndex;
|
|
8462
|
-
hasRequired_trimmedEndIndex = 1;
|
|
8463
|
-
var reWhitespace = /\s/;
|
|
8464
|
-
function trimmedEndIndex(string) {
|
|
8465
|
-
var index = string.length;
|
|
8466
|
-
while (index-- && reWhitespace.test(string.charAt(index))) {}
|
|
8467
|
-
return index;
|
|
8468
|
-
}
|
|
8469
|
-
_trimmedEndIndex = trimmedEndIndex;
|
|
8470
|
-
return _trimmedEndIndex;
|
|
8471
|
-
}
|
|
8472
|
-
|
|
8473
|
-
var _baseTrim;
|
|
8474
|
-
|
|
8475
|
-
var hasRequired_baseTrim;
|
|
8476
|
-
|
|
8477
|
-
function require_baseTrim() {
|
|
8478
|
-
if (hasRequired_baseTrim) return _baseTrim;
|
|
8479
|
-
hasRequired_baseTrim = 1;
|
|
8480
|
-
var trimmedEndIndex = require_trimmedEndIndex();
|
|
8481
|
-
var reTrimStart = /^\s+/;
|
|
8482
|
-
function baseTrim(string) {
|
|
8483
|
-
return string ? string.slice(0, trimmedEndIndex(string) + 1).replace(reTrimStart, "") : string;
|
|
8484
|
-
}
|
|
8485
|
-
_baseTrim = baseTrim;
|
|
8486
|
-
return _baseTrim;
|
|
8487
|
-
}
|
|
8488
|
-
|
|
8489
|
-
var _Symbol;
|
|
8490
|
-
|
|
8491
|
-
var hasRequired_Symbol;
|
|
8492
|
-
|
|
8493
|
-
function require_Symbol() {
|
|
8494
|
-
if (hasRequired_Symbol) return _Symbol;
|
|
8495
|
-
hasRequired_Symbol = 1;
|
|
8496
|
-
var root = require_root();
|
|
8497
|
-
var Symbol = root.Symbol;
|
|
8498
|
-
_Symbol = Symbol;
|
|
8499
|
-
return _Symbol;
|
|
8500
|
-
}
|
|
8501
|
-
|
|
8502
|
-
var _getRawTag;
|
|
8503
|
-
|
|
8504
|
-
var hasRequired_getRawTag;
|
|
8505
|
-
|
|
8506
|
-
function require_getRawTag() {
|
|
8507
|
-
if (hasRequired_getRawTag) return _getRawTag;
|
|
8508
|
-
hasRequired_getRawTag = 1;
|
|
8509
|
-
var Symbol = require_Symbol();
|
|
8510
|
-
var objectProto = Object.prototype;
|
|
8511
|
-
var hasOwnProperty = objectProto.hasOwnProperty;
|
|
8512
|
-
var nativeObjectToString = objectProto.toString;
|
|
8513
|
-
var symToStringTag = Symbol ? Symbol.toStringTag : undefined;
|
|
8514
|
-
function getRawTag(value) {
|
|
8515
|
-
var isOwn = hasOwnProperty.call(value, symToStringTag), tag = value[symToStringTag];
|
|
8516
|
-
try {
|
|
8517
|
-
value[symToStringTag] = undefined;
|
|
8518
|
-
var unmasked = true;
|
|
8519
|
-
} catch (e) {}
|
|
8520
|
-
var result = nativeObjectToString.call(value);
|
|
8521
|
-
if (unmasked) {
|
|
8522
|
-
if (isOwn) {
|
|
8523
|
-
value[symToStringTag] = tag;
|
|
8524
|
-
} else {
|
|
8525
|
-
delete value[symToStringTag];
|
|
8526
|
-
}
|
|
8527
|
-
}
|
|
8528
|
-
return result;
|
|
8529
|
-
}
|
|
8530
|
-
_getRawTag = getRawTag;
|
|
8531
|
-
return _getRawTag;
|
|
8532
|
-
}
|
|
8533
|
-
|
|
8534
|
-
var _objectToString;
|
|
8535
|
-
|
|
8536
|
-
var hasRequired_objectToString;
|
|
8537
|
-
|
|
8538
|
-
function require_objectToString() {
|
|
8539
|
-
if (hasRequired_objectToString) return _objectToString;
|
|
8540
|
-
hasRequired_objectToString = 1;
|
|
8541
|
-
var objectProto = Object.prototype;
|
|
8542
|
-
var nativeObjectToString = objectProto.toString;
|
|
8543
|
-
function objectToString(value) {
|
|
8544
|
-
return nativeObjectToString.call(value);
|
|
8545
|
-
}
|
|
8546
|
-
_objectToString = objectToString;
|
|
8547
|
-
return _objectToString;
|
|
8548
|
-
}
|
|
8549
|
-
|
|
8550
|
-
var _baseGetTag;
|
|
8551
|
-
|
|
8552
|
-
var hasRequired_baseGetTag;
|
|
8553
|
-
|
|
8554
|
-
function require_baseGetTag() {
|
|
8555
|
-
if (hasRequired_baseGetTag) return _baseGetTag;
|
|
8556
|
-
hasRequired_baseGetTag = 1;
|
|
8557
|
-
var Symbol = require_Symbol(), getRawTag = require_getRawTag(), objectToString = require_objectToString();
|
|
8558
|
-
var nullTag = "[object Null]", undefinedTag = "[object Undefined]";
|
|
8559
|
-
var symToStringTag = Symbol ? Symbol.toStringTag : undefined;
|
|
8560
|
-
function baseGetTag(value) {
|
|
8561
|
-
if (value == null) {
|
|
8562
|
-
return value === undefined ? undefinedTag : nullTag;
|
|
8563
|
-
}
|
|
8564
|
-
return symToStringTag && symToStringTag in Object(value) ? getRawTag(value) : objectToString(value);
|
|
8565
|
-
}
|
|
8566
|
-
_baseGetTag = baseGetTag;
|
|
8567
|
-
return _baseGetTag;
|
|
8568
|
-
}
|
|
8569
|
-
|
|
8570
|
-
var isObjectLike_1;
|
|
8571
|
-
|
|
8572
|
-
var hasRequiredIsObjectLike;
|
|
8573
|
-
|
|
8574
|
-
function requireIsObjectLike() {
|
|
8575
|
-
if (hasRequiredIsObjectLike) return isObjectLike_1;
|
|
8576
|
-
hasRequiredIsObjectLike = 1;
|
|
8577
|
-
function isObjectLike(value) {
|
|
8578
|
-
return value != null && typeof value == "object";
|
|
8579
|
-
}
|
|
8580
|
-
isObjectLike_1 = isObjectLike;
|
|
8581
|
-
return isObjectLike_1;
|
|
8582
|
-
}
|
|
8583
|
-
|
|
8584
|
-
var isSymbol_1;
|
|
8585
|
-
|
|
8586
|
-
var hasRequiredIsSymbol;
|
|
8587
|
-
|
|
8588
|
-
function requireIsSymbol() {
|
|
8589
|
-
if (hasRequiredIsSymbol) return isSymbol_1;
|
|
8590
|
-
hasRequiredIsSymbol = 1;
|
|
8591
|
-
var baseGetTag = require_baseGetTag(), isObjectLike = requireIsObjectLike();
|
|
8592
|
-
var symbolTag = "[object Symbol]";
|
|
8593
|
-
function isSymbol(value) {
|
|
8594
|
-
return typeof value == "symbol" || isObjectLike(value) && baseGetTag(value) == symbolTag;
|
|
8595
|
-
}
|
|
8596
|
-
isSymbol_1 = isSymbol;
|
|
8597
|
-
return isSymbol_1;
|
|
8598
|
-
}
|
|
8599
|
-
|
|
8600
|
-
var toNumber_1;
|
|
8601
|
-
|
|
8602
|
-
var hasRequiredToNumber;
|
|
8603
|
-
|
|
8604
|
-
function requireToNumber() {
|
|
8605
|
-
if (hasRequiredToNumber) return toNumber_1;
|
|
8606
|
-
hasRequiredToNumber = 1;
|
|
8607
|
-
var baseTrim = require_baseTrim(), isObject = requireIsObject(), isSymbol = requireIsSymbol();
|
|
8608
|
-
var NAN = 0 / 0;
|
|
8609
|
-
var reIsBadHex = /^[-+]0x[0-9a-f]+$/i;
|
|
8610
|
-
var reIsBinary = /^0b[01]+$/i;
|
|
8611
|
-
var reIsOctal = /^0o[0-7]+$/i;
|
|
8612
|
-
var freeParseInt = parseInt;
|
|
8613
|
-
function toNumber(value) {
|
|
8614
|
-
if (typeof value == "number") {
|
|
8615
|
-
return value;
|
|
8616
|
-
}
|
|
8617
|
-
if (isSymbol(value)) {
|
|
8618
|
-
return NAN;
|
|
8619
|
-
}
|
|
8620
|
-
if (isObject(value)) {
|
|
8621
|
-
var other = typeof value.valueOf == "function" ? value.valueOf() : value;
|
|
8622
|
-
value = isObject(other) ? other + "" : other;
|
|
8623
|
-
}
|
|
8624
|
-
if (typeof value != "string") {
|
|
8625
|
-
return value === 0 ? value : +value;
|
|
8626
|
-
}
|
|
8627
|
-
value = baseTrim(value);
|
|
8628
|
-
var isBinary = reIsBinary.test(value);
|
|
8629
|
-
return isBinary || reIsOctal.test(value) ? freeParseInt(value.slice(2), isBinary ? 2 : 8) : reIsBadHex.test(value) ? NAN : +value;
|
|
8630
|
-
}
|
|
8631
|
-
toNumber_1 = toNumber;
|
|
8632
|
-
return toNumber_1;
|
|
8633
|
-
}
|
|
8634
|
-
|
|
8635
|
-
var debounce_1;
|
|
8636
|
-
|
|
8637
|
-
var hasRequiredDebounce;
|
|
8638
|
-
|
|
8639
|
-
function requireDebounce() {
|
|
8640
|
-
if (hasRequiredDebounce) return debounce_1;
|
|
8641
|
-
hasRequiredDebounce = 1;
|
|
8642
|
-
var isObject = requireIsObject(), now = requireNow(), toNumber = requireToNumber();
|
|
8643
|
-
var FUNC_ERROR_TEXT = "Expected a function";
|
|
8644
|
-
var nativeMax = Math.max, nativeMin = Math.min;
|
|
8645
|
-
function debounce(func, wait, options) {
|
|
8646
|
-
var lastArgs, lastThis, maxWait, result, timerId, lastCallTime, lastInvokeTime = 0, leading = false, maxing = false, trailing = true;
|
|
8647
|
-
if (typeof func != "function") {
|
|
8648
|
-
throw new TypeError(FUNC_ERROR_TEXT);
|
|
8649
|
-
}
|
|
8650
|
-
wait = toNumber(wait) || 0;
|
|
8651
|
-
if (isObject(options)) {
|
|
8652
|
-
leading = !!options.leading;
|
|
8653
|
-
maxing = "maxWait" in options;
|
|
8654
|
-
maxWait = maxing ? nativeMax(toNumber(options.maxWait) || 0, wait) : maxWait;
|
|
8655
|
-
trailing = "trailing" in options ? !!options.trailing : trailing;
|
|
8656
|
-
}
|
|
8657
|
-
function invokeFunc(time) {
|
|
8658
|
-
var args = lastArgs, thisArg = lastThis;
|
|
8659
|
-
lastArgs = lastThis = undefined;
|
|
8660
|
-
lastInvokeTime = time;
|
|
8661
|
-
result = func.apply(thisArg, args);
|
|
8662
|
-
return result;
|
|
8663
|
-
}
|
|
8664
|
-
function leadingEdge(time) {
|
|
8665
|
-
lastInvokeTime = time;
|
|
8666
|
-
timerId = setTimeout(timerExpired, wait);
|
|
8667
|
-
return leading ? invokeFunc(time) : result;
|
|
8668
|
-
}
|
|
8669
|
-
function remainingWait(time) {
|
|
8670
|
-
var timeSinceLastCall = time - lastCallTime, timeSinceLastInvoke = time - lastInvokeTime, timeWaiting = wait - timeSinceLastCall;
|
|
8671
|
-
return maxing ? nativeMin(timeWaiting, maxWait - timeSinceLastInvoke) : timeWaiting;
|
|
8672
|
-
}
|
|
8673
|
-
function shouldInvoke(time) {
|
|
8674
|
-
var timeSinceLastCall = time - lastCallTime, timeSinceLastInvoke = time - lastInvokeTime;
|
|
8675
|
-
return lastCallTime === undefined || timeSinceLastCall >= wait || timeSinceLastCall < 0 || maxing && timeSinceLastInvoke >= maxWait;
|
|
8676
|
-
}
|
|
8677
|
-
function timerExpired() {
|
|
8678
|
-
var time = now();
|
|
8679
|
-
if (shouldInvoke(time)) {
|
|
8680
|
-
return trailingEdge(time);
|
|
8681
|
-
}
|
|
8682
|
-
timerId = setTimeout(timerExpired, remainingWait(time));
|
|
8683
|
-
}
|
|
8684
|
-
function trailingEdge(time) {
|
|
8685
|
-
timerId = undefined;
|
|
8686
|
-
if (trailing && lastArgs) {
|
|
8687
|
-
return invokeFunc(time);
|
|
8688
|
-
}
|
|
8689
|
-
lastArgs = lastThis = undefined;
|
|
8690
|
-
return result;
|
|
8691
|
-
}
|
|
8692
|
-
function cancel() {
|
|
8693
|
-
if (timerId !== undefined) {
|
|
8694
|
-
clearTimeout(timerId);
|
|
8695
|
-
}
|
|
8696
|
-
lastInvokeTime = 0;
|
|
8697
|
-
lastArgs = lastCallTime = lastThis = timerId = undefined;
|
|
8698
|
-
}
|
|
8699
|
-
function flush() {
|
|
8700
|
-
return timerId === undefined ? result : trailingEdge(now());
|
|
8701
|
-
}
|
|
8702
|
-
function debounced() {
|
|
8703
|
-
var time = now(), isInvoking = shouldInvoke(time);
|
|
8704
|
-
lastArgs = arguments;
|
|
8705
|
-
lastThis = this;
|
|
8706
|
-
lastCallTime = time;
|
|
8707
|
-
if (isInvoking) {
|
|
8708
|
-
if (timerId === undefined) {
|
|
8709
|
-
return leadingEdge(lastCallTime);
|
|
8710
|
-
}
|
|
8711
|
-
if (maxing) {
|
|
8712
|
-
clearTimeout(timerId);
|
|
8713
|
-
timerId = setTimeout(timerExpired, wait);
|
|
8714
|
-
return invokeFunc(lastCallTime);
|
|
8715
|
-
}
|
|
8716
|
-
}
|
|
8717
|
-
if (timerId === undefined) {
|
|
8718
|
-
timerId = setTimeout(timerExpired, wait);
|
|
8719
|
-
}
|
|
8720
|
-
return result;
|
|
8721
|
-
}
|
|
8722
|
-
debounced.cancel = cancel;
|
|
8723
|
-
debounced.flush = flush;
|
|
8724
|
-
return debounced;
|
|
8725
|
-
}
|
|
8726
|
-
debounce_1 = debounce;
|
|
8727
|
-
return debounce_1;
|
|
8728
|
-
}
|
|
8729
|
-
|
|
8730
|
-
var throttle_1;
|
|
8731
|
-
|
|
8732
|
-
var hasRequiredThrottle;
|
|
8733
|
-
|
|
8734
|
-
function requireThrottle() {
|
|
8735
|
-
if (hasRequiredThrottle) return throttle_1;
|
|
8736
|
-
hasRequiredThrottle = 1;
|
|
8737
|
-
var debounce = requireDebounce(), isObject = requireIsObject();
|
|
8738
|
-
var FUNC_ERROR_TEXT = "Expected a function";
|
|
8739
|
-
function throttle(func, wait, options) {
|
|
8740
|
-
var leading = true, trailing = true;
|
|
8741
|
-
if (typeof func != "function") {
|
|
8742
|
-
throw new TypeError(FUNC_ERROR_TEXT);
|
|
8743
|
-
}
|
|
8744
|
-
if (isObject(options)) {
|
|
8745
|
-
leading = "leading" in options ? !!options.leading : leading;
|
|
8746
|
-
trailing = "trailing" in options ? !!options.trailing : trailing;
|
|
8747
|
-
}
|
|
8748
|
-
return debounce(func, wait, {
|
|
8749
|
-
leading,
|
|
8750
|
-
maxWait: wait,
|
|
8751
|
-
trailing
|
|
8752
|
-
});
|
|
8753
|
-
}
|
|
8754
|
-
throttle_1 = throttle;
|
|
8755
|
-
return throttle_1;
|
|
8756
|
-
}
|
|
8757
|
-
|
|
8758
|
-
var throttleExports = requireThrottle();
|
|
8759
|
-
|
|
8760
|
-
var throttle = getDefaultExportFromCjs(throttleExports);
|
|
8501
|
+
const AUTO_SCROLL_EXTRA = 28 - 8;
|
|
8761
8502
|
|
|
8762
8503
|
const VISIBLE_BOTTOM_PORTION_PX = 100;
|
|
8763
8504
|
|
|
@@ -8851,46 +8592,6 @@ function hasMessagesOutOfView({clientHeight, domSpacerHeight, scrollHeight, scro
|
|
|
8851
8592
|
return remainingPixelsToScroll > thresholdPx;
|
|
8852
8593
|
}
|
|
8853
8594
|
|
|
8854
|
-
function resolveStreamingSpacerSyncDecision({currentSpacerHeight, domSpacerHeight, isCurrentlyStreaming, isNearPin, minDeltaPx}) {
|
|
8855
|
-
if (!isCurrentlyStreaming || !isNearPin) {
|
|
8856
|
-
return {
|
|
8857
|
-
shouldSync: false,
|
|
8858
|
-
targetDomSpacerHeight: domSpacerHeight
|
|
8859
|
-
};
|
|
8860
|
-
}
|
|
8861
|
-
const shrinkDelta = domSpacerHeight - currentSpacerHeight;
|
|
8862
|
-
if (shrinkDelta < minDeltaPx) {
|
|
8863
|
-
return {
|
|
8864
|
-
shouldSync: false,
|
|
8865
|
-
targetDomSpacerHeight: domSpacerHeight
|
|
8866
|
-
};
|
|
8867
|
-
}
|
|
8868
|
-
if (currentSpacerHeight >= domSpacerHeight) {
|
|
8869
|
-
return {
|
|
8870
|
-
shouldSync: false,
|
|
8871
|
-
targetDomSpacerHeight: domSpacerHeight
|
|
8872
|
-
};
|
|
8873
|
-
}
|
|
8874
|
-
return {
|
|
8875
|
-
shouldSync: true,
|
|
8876
|
-
targetDomSpacerHeight: currentSpacerHeight
|
|
8877
|
-
};
|
|
8878
|
-
}
|
|
8879
|
-
|
|
8880
|
-
function applyStreamingSpacerDomSync({savedScrollTop, scrollElement, spacerElem, targetDomSpacerHeight}) {
|
|
8881
|
-
if (!spacerElem) {
|
|
8882
|
-
return null;
|
|
8883
|
-
}
|
|
8884
|
-
spacerElem.style.minBlockSize = `${Math.max(0, targetDomSpacerHeight)}px`;
|
|
8885
|
-
if (scrollElement.scrollTop < savedScrollTop) {
|
|
8886
|
-
scrollElement.scrollTop = savedScrollTop;
|
|
8887
|
-
}
|
|
8888
|
-
return {
|
|
8889
|
-
correctedScrollTop: scrollElement.scrollTop,
|
|
8890
|
-
newLastScrollHeight: scrollElement.scrollHeight
|
|
8891
|
-
};
|
|
8892
|
-
}
|
|
8893
|
-
|
|
8894
8595
|
function resolvePublicSpacerReconciliationAction({pinnedMessageComponent}) {
|
|
8895
8596
|
if (!pinnedMessageComponent) {
|
|
8896
8597
|
return {
|
|
@@ -8964,69 +8665,122 @@ function recalculatePinnedMessageSpacer({pinnedMessageComponent, scrollElement,
|
|
|
8964
8665
|
if (!spacerElem || !targetElem) {
|
|
8965
8666
|
return null;
|
|
8966
8667
|
}
|
|
8967
|
-
const
|
|
8668
|
+
const currentScrollTop = scrollElement.scrollTop;
|
|
8669
|
+
const clientHeight = scrollElement.clientHeight;
|
|
8670
|
+
const spacerRect = spacerElem.getBoundingClientRect();
|
|
8968
8671
|
const scrollerRect = scrollElement.getBoundingClientRect();
|
|
8969
|
-
const
|
|
8970
|
-
const
|
|
8971
|
-
const deficit =
|
|
8672
|
+
const spacerOffset = spacerRect.top - scrollerRect.top + currentScrollTop;
|
|
8673
|
+
const visibleBottom = currentScrollTop + clientHeight;
|
|
8674
|
+
const deficit = Math.max(0, Math.ceil(visibleBottom - spacerOffset));
|
|
8972
8675
|
spacerElem.style.minBlockSize = `${deficit}px`;
|
|
8973
|
-
return
|
|
8676
|
+
return {
|
|
8677
|
+
deficit,
|
|
8678
|
+
scrollTop: currentScrollTop
|
|
8679
|
+
};
|
|
8974
8680
|
}
|
|
8975
8681
|
|
|
8976
|
-
function
|
|
8977
|
-
|
|
8978
|
-
|
|
8979
|
-
|
|
8980
|
-
|
|
8981
|
-
|
|
8682
|
+
function processResizeEntries(entries, messageSizes, settleTimers, observer, animationPollingState, config) {
|
|
8683
|
+
let totalDelta = 0;
|
|
8684
|
+
let hasSignificantChange = false;
|
|
8685
|
+
entries.forEach(entry => {
|
|
8686
|
+
const {blockSize} = entry.borderBoxSize[0];
|
|
8687
|
+
const prevSize = messageSizes.get(entry.target);
|
|
8688
|
+
if (prevSize != null) {
|
|
8689
|
+
const delta = blockSize - prevSize;
|
|
8690
|
+
if (Math.abs(delta) > config.significantChangeThreshold) {
|
|
8691
|
+
hasSignificantChange = true;
|
|
8692
|
+
totalDelta += delta;
|
|
8693
|
+
if (delta < 0 && animationPollingState && !animationPollingState.rafId) {
|
|
8694
|
+
startAnimationPolling(entry.target, animationPollingState, config.onSignificantResize);
|
|
8695
|
+
}
|
|
8696
|
+
}
|
|
8697
|
+
}
|
|
8698
|
+
messageSizes.set(entry.target, blockSize);
|
|
8699
|
+
const existingTimer = settleTimers.get(entry.target);
|
|
8700
|
+
if (existingTimer) {
|
|
8701
|
+
clearTimeout(existingTimer);
|
|
8702
|
+
}
|
|
8703
|
+
const timer = setTimeout(() => {
|
|
8704
|
+
observer.unobserve(entry.target);
|
|
8705
|
+
settleTimers.delete(entry.target);
|
|
8706
|
+
messageSizes.delete(entry.target);
|
|
8707
|
+
}, config.settleTimeout);
|
|
8708
|
+
settleTimers.set(entry.target, timer);
|
|
8709
|
+
});
|
|
8710
|
+
if (hasSignificantChange) {
|
|
8711
|
+
config.onSignificantResize(totalDelta);
|
|
8982
8712
|
}
|
|
8983
|
-
|
|
8984
|
-
|
|
8985
|
-
|
|
8986
|
-
|
|
8987
|
-
|
|
8988
|
-
|
|
8713
|
+
}
|
|
8714
|
+
|
|
8715
|
+
function startAnimationPolling(element, state, onHeightChange) {
|
|
8716
|
+
if (state.rafId !== null) {
|
|
8717
|
+
cancelAnimationFrame(state.rafId);
|
|
8718
|
+
}
|
|
8719
|
+
state.element = element;
|
|
8720
|
+
state.previousHeight = Math.round(element.getBoundingClientRect().height);
|
|
8721
|
+
state.stableFrames = 0;
|
|
8722
|
+
state.onHeightChange = onHeightChange;
|
|
8723
|
+
const poll = () => {
|
|
8724
|
+
if (!state.element) {
|
|
8725
|
+
return;
|
|
8726
|
+
}
|
|
8727
|
+
const currentHeight = Math.round(state.element.getBoundingClientRect().height);
|
|
8728
|
+
const delta = currentHeight - state.previousHeight;
|
|
8729
|
+
if (delta !== 0) {
|
|
8730
|
+
state.onHeightChange(delta);
|
|
8731
|
+
state.previousHeight = currentHeight;
|
|
8732
|
+
state.stableFrames = 0;
|
|
8733
|
+
} else {
|
|
8734
|
+
state.stableFrames++;
|
|
8735
|
+
}
|
|
8736
|
+
if (state.stableFrames < 5) {
|
|
8737
|
+
state.rafId = requestAnimationFrame(poll);
|
|
8738
|
+
} else {
|
|
8739
|
+
state.rafId = null;
|
|
8740
|
+
state.element = null;
|
|
8741
|
+
}
|
|
8989
8742
|
};
|
|
8743
|
+
state.rafId = requestAnimationFrame(poll);
|
|
8744
|
+
}
|
|
8745
|
+
|
|
8746
|
+
function stopAnimationPolling(state) {
|
|
8747
|
+
if (!state) {
|
|
8748
|
+
return;
|
|
8749
|
+
}
|
|
8750
|
+
if (state.rafId !== null) {
|
|
8751
|
+
cancelAnimationFrame(state.rafId);
|
|
8752
|
+
state.rafId = null;
|
|
8753
|
+
}
|
|
8754
|
+
state.element = null;
|
|
8755
|
+
state.stableFrames = 0;
|
|
8990
8756
|
}
|
|
8991
8757
|
|
|
8992
8758
|
function createMessageResizeObserver(config) {
|
|
8993
|
-
const {onSignificantResize, hasPinnedMessage,
|
|
8759
|
+
const {onSignificantResize, hasPinnedMessage, settleTimeout = 3e3, significantChangeThreshold = 10} = config;
|
|
8994
8760
|
const messageSizes = new Map;
|
|
8995
8761
|
const settleTimers = new Map;
|
|
8996
|
-
const
|
|
8762
|
+
const animationPollingState = {
|
|
8763
|
+
rafId: null,
|
|
8764
|
+
element: null,
|
|
8765
|
+
previousHeight: 0,
|
|
8766
|
+
stableFrames: 0,
|
|
8767
|
+
onHeightChange: () => {}
|
|
8768
|
+
};
|
|
8769
|
+
const observer = new ResizeObserver(entries => {
|
|
8997
8770
|
if (!hasPinnedMessage()) {
|
|
8998
8771
|
return;
|
|
8999
8772
|
}
|
|
9000
|
-
|
|
9001
|
-
|
|
9002
|
-
|
|
9003
|
-
|
|
9004
|
-
if (prevSize != null && Math.abs(blockSize - prevSize) > significantChangeThreshold) {
|
|
9005
|
-
hasSignificantChange = true;
|
|
9006
|
-
}
|
|
9007
|
-
messageSizes.set(entry.target, blockSize);
|
|
9008
|
-
const existingTimer = settleTimers.get(entry.target);
|
|
9009
|
-
if (existingTimer) {
|
|
9010
|
-
clearTimeout(existingTimer);
|
|
9011
|
-
}
|
|
9012
|
-
const timer = setTimeout(() => {
|
|
9013
|
-
observer.unobserve(entry.target);
|
|
9014
|
-
settleTimers.delete(entry.target);
|
|
9015
|
-
messageSizes.delete(entry.target);
|
|
9016
|
-
}, settleTimeout);
|
|
9017
|
-
settleTimers.set(entry.target, timer);
|
|
8773
|
+
processResizeEntries(entries, messageSizes, settleTimers, observer, animationPollingState, {
|
|
8774
|
+
significantChangeThreshold,
|
|
8775
|
+
settleTimeout,
|
|
8776
|
+
onSignificantResize
|
|
9018
8777
|
});
|
|
9019
|
-
|
|
9020
|
-
onSignificantResize();
|
|
9021
|
-
}
|
|
9022
|
-
}, throttleTimeout, {
|
|
9023
|
-
leading: false,
|
|
9024
|
-
trailing: true
|
|
9025
|
-
}));
|
|
8778
|
+
});
|
|
9026
8779
|
return {
|
|
9027
8780
|
observer,
|
|
9028
8781
|
messageSizes,
|
|
9029
|
-
settleTimers
|
|
8782
|
+
settleTimers,
|
|
8783
|
+
animationPollingState
|
|
9030
8784
|
};
|
|
9031
8785
|
}
|
|
9032
8786
|
|
|
@@ -9040,13 +8794,33 @@ function updateObservedMessages(state, messageElements) {
|
|
|
9040
8794
|
}
|
|
9041
8795
|
|
|
9042
8796
|
function cleanupMessageResizeObserver(state) {
|
|
9043
|
-
const {observer, messageSizes, settleTimers} = state;
|
|
8797
|
+
const {observer, messageSizes, settleTimers, animationPollingState} = state;
|
|
8798
|
+
stopAnimationPolling(animationPollingState);
|
|
9044
8799
|
observer.disconnect();
|
|
9045
8800
|
settleTimers.forEach(timer => clearTimeout(timer));
|
|
9046
8801
|
settleTimers.clear();
|
|
9047
8802
|
messageSizes.clear();
|
|
9048
8803
|
}
|
|
9049
8804
|
|
|
8805
|
+
function hasNewNonStreamingResponse(newItems, allMessagesByID) {
|
|
8806
|
+
return newItems.some(item => {
|
|
8807
|
+
if (item.ui_state.streamingState) {
|
|
8808
|
+
return false;
|
|
8809
|
+
}
|
|
8810
|
+
const message = allMessagesByID[item.fullMessageID];
|
|
8811
|
+
const isResp = message && isResponse(message);
|
|
8812
|
+
return isResp;
|
|
8813
|
+
});
|
|
8814
|
+
}
|
|
8815
|
+
|
|
8816
|
+
function applySafariScrollAnchoringRestore(currentScrollTop, snapshot) {
|
|
8817
|
+
const restoreTarget = getAnchoringRestoreTarget({
|
|
8818
|
+
currentScrollTop,
|
|
8819
|
+
snapshot
|
|
8820
|
+
});
|
|
8821
|
+
return restoreTarget;
|
|
8822
|
+
}
|
|
8823
|
+
|
|
9050
8824
|
function buildRenderableMessageMetadata(localMessageItems, allMessagesByID, messageIDForInput) {
|
|
9051
8825
|
const metadata = [];
|
|
9052
8826
|
let previousMessageID = null;
|
|
@@ -9327,7 +9101,7 @@ function InlineError({text}) {
|
|
|
9327
9101
|
className: "cds-aichat--inline-error--icon"
|
|
9328
9102
|
})), React.createElement("div", {
|
|
9329
9103
|
className: "cds-aichat--inline-error--text"
|
|
9330
|
-
}, React.createElement(
|
|
9104
|
+
}, React.createElement(MarkdownWithDefaultsExport, {
|
|
9331
9105
|
removeHTML: true,
|
|
9332
9106
|
text: text || languagePack.errors_generalContent,
|
|
9333
9107
|
highlight: true
|
|
@@ -9612,10 +9386,6 @@ function ConnectToHumanAgent(props) {
|
|
|
9612
9386
|
}));
|
|
9613
9387
|
}
|
|
9614
9388
|
|
|
9615
|
-
function useAriaAnnouncer() {
|
|
9616
|
-
return useContext(AriaAnnouncerContext);
|
|
9617
|
-
}
|
|
9618
|
-
|
|
9619
9389
|
const AISkeletonPlaceholder = createComponent({
|
|
9620
9390
|
tagName: "cds-ai-skeleton-placeholder",
|
|
9621
9391
|
elementClass: CarbonAISkeletonPlaceholder,
|
|
@@ -9708,8 +9478,9 @@ function TranscriptComponent({text, label, language}) {
|
|
|
9708
9478
|
"cds-aichat--media-transcript__content--visible": isExpanded
|
|
9709
9479
|
})
|
|
9710
9480
|
}, React.createElement(Markdown, {
|
|
9711
|
-
sanitizeHTML: true
|
|
9712
|
-
|
|
9481
|
+
sanitizeHTML: true,
|
|
9482
|
+
markdown: text
|
|
9483
|
+
})));
|
|
9713
9484
|
}
|
|
9714
9485
|
|
|
9715
9486
|
const TranscriptComponentExport = React.memo(TranscriptComponent);
|
|
@@ -9774,7 +9545,6 @@ function MediaPlayerComponent({type, source, title, description, ariaLabel, isMi
|
|
|
9774
9545
|
}, [ skeletonHidden ]);
|
|
9775
9546
|
function renderMediaPlayerSkeleton() {
|
|
9776
9547
|
return React.createElement(Card, {
|
|
9777
|
-
isFlush: true,
|
|
9778
9548
|
className: "cds-aichat--media-player__skeleton"
|
|
9779
9549
|
}, React.createElement("div", {
|
|
9780
9550
|
slot: "media"
|
|
@@ -9885,19 +9655,12 @@ function AudioComponent({source, ...props}) {
|
|
|
9885
9655
|
const AudioComponentExport = React.memo(AudioComponent);
|
|
9886
9656
|
|
|
9887
9657
|
function Image(props) {
|
|
9888
|
-
const {imageError, title, description, displayURL, hideIconAndTitle,
|
|
9889
|
-
const ariaAnnouncer = useAriaAnnouncer();
|
|
9658
|
+
const {imageError, title, description, displayURL, hideIconAndTitle, renderIcon, inline} = props;
|
|
9890
9659
|
const [isLoaded, setIsLoaded] = useState(false);
|
|
9891
9660
|
const [isError, setIsError] = useState(false);
|
|
9892
9661
|
const rootRef = useRef(undefined);
|
|
9893
|
-
const needsAnnouncementRef = useRef(needsAnnouncement);
|
|
9894
9662
|
const hasText = Boolean(title || description || displayURL);
|
|
9895
9663
|
const Icon = renderIcon;
|
|
9896
|
-
useEffect(() => {
|
|
9897
|
-
if (isLoaded && needsAnnouncementRef.current) {
|
|
9898
|
-
ariaAnnouncer(rootRef.current);
|
|
9899
|
-
}
|
|
9900
|
-
}, [ ariaAnnouncer, isLoaded ]);
|
|
9901
9664
|
if (isError) {
|
|
9902
9665
|
return React.createElement(InlineError, {
|
|
9903
9666
|
text: imageError
|
|
@@ -10705,7 +10468,7 @@ function ConversationalSearchText(props) {
|
|
|
10705
10468
|
}, [ text, highlightCitation, showCitationsToggle, streamingState ]);
|
|
10706
10469
|
return React.createElement("div", {
|
|
10707
10470
|
className: "cds-aichat--conversational-search-text"
|
|
10708
|
-
}, React.createElement(
|
|
10471
|
+
}, React.createElement(MarkdownWithDefaultsExport, {
|
|
10709
10472
|
text: html,
|
|
10710
10473
|
overrideSanitize: false,
|
|
10711
10474
|
streaming: streamingState && !streamingState.isDone,
|
|
@@ -11269,7 +11032,7 @@ function IFrameMessage({localMessage, displayOverride}) {
|
|
|
11269
11032
|
function Description({className, text, removeHTML = false}) {
|
|
11270
11033
|
return React.createElement("div", {
|
|
11271
11034
|
className: `cds-aichat--description ${className}`
|
|
11272
|
-
}, React.createElement(
|
|
11035
|
+
}, React.createElement(MarkdownWithDefaultsExport, {
|
|
11273
11036
|
text,
|
|
11274
11037
|
removeHTML,
|
|
11275
11038
|
highlight: true
|
|
@@ -11311,45 +11074,38 @@ function SelectComponent(props) {
|
|
|
11311
11074
|
const {title, description, options, onChange, languagePack, disableUserInputs, serviceManager, removeHTML} = props;
|
|
11312
11075
|
const [isBeingOpened, setIsBeingOpened] = useState(false);
|
|
11313
11076
|
const rootRef = useRef(undefined);
|
|
11077
|
+
const pendingSelectionRef = useRef(null);
|
|
11314
11078
|
const counter = useCounter();
|
|
11315
11079
|
const id = `${counter}${serviceManager.namespace.suffix}`;
|
|
11316
|
-
const handleToggle =
|
|
11317
|
-
|
|
11318
|
-
|
|
11319
|
-
|
|
11320
|
-
|
|
11321
|
-
|
|
11322
|
-
|
|
11323
|
-
|
|
11324
|
-
|
|
11325
|
-
|
|
11326
|
-
if (
|
|
11327
|
-
|
|
11080
|
+
const handleToggle = e => {
|
|
11081
|
+
const isOpen = e.detail.open;
|
|
11082
|
+
if (isOpen) {
|
|
11083
|
+
setIsBeingOpened(true);
|
|
11084
|
+
requestAnimationFrame(() => {
|
|
11085
|
+
if (rootRef.current) {
|
|
11086
|
+
doScrollElementIntoView(rootRef.current, true);
|
|
11087
|
+
}
|
|
11088
|
+
setIsBeingOpened(false);
|
|
11089
|
+
});
|
|
11090
|
+
} else if (pendingSelectionRef.current) {
|
|
11091
|
+
onChange({
|
|
11092
|
+
selectedItem: pendingSelectionRef.current
|
|
11093
|
+
});
|
|
11094
|
+
pendingSelectionRef.current = null;
|
|
11328
11095
|
}
|
|
11329
11096
|
};
|
|
11330
11097
|
const handleSelected = e => {
|
|
11331
11098
|
const label = e.detail.item.textContent;
|
|
11332
11099
|
const text = e.detail.item.value;
|
|
11333
|
-
|
|
11334
|
-
|
|
11335
|
-
|
|
11336
|
-
|
|
11337
|
-
|
|
11338
|
-
text
|
|
11339
|
-
}
|
|
11100
|
+
pendingSelectionRef.current = {
|
|
11101
|
+
label,
|
|
11102
|
+
value: {
|
|
11103
|
+
input: {
|
|
11104
|
+
text
|
|
11340
11105
|
}
|
|
11341
11106
|
}
|
|
11342
|
-
}
|
|
11107
|
+
};
|
|
11343
11108
|
};
|
|
11344
|
-
useEffect(() => {
|
|
11345
|
-
setTimeout(() => {
|
|
11346
|
-
const listBox = rootRef.current?.querySelector("cds-dropdown")?.shadowRoot?.querySelector(".cds--list-box--md");
|
|
11347
|
-
if (listBox) {
|
|
11348
|
-
listBox.style.blockSize = "unset";
|
|
11349
|
-
listBox.style.maxBlockSize = "unset";
|
|
11350
|
-
}
|
|
11351
|
-
});
|
|
11352
|
-
}, []);
|
|
11353
11109
|
return React.createElement("div", {
|
|
11354
11110
|
ref: rootRef
|
|
11355
11111
|
}, React.createElement(Metablock, {
|
|
@@ -11366,10 +11122,10 @@ function SelectComponent(props) {
|
|
|
11366
11122
|
label: languagePack.options_select,
|
|
11367
11123
|
"title-text": languagePack.options_select,
|
|
11368
11124
|
hideLabel: true,
|
|
11125
|
+
size: DROPDOWN_SIZE.MEDIUM,
|
|
11369
11126
|
"aria-label": disableUserInputs ? languagePack.options_ariaOptionsDisabled : title,
|
|
11370
11127
|
disabled: disableUserInputs,
|
|
11371
11128
|
onToggled: handleToggle,
|
|
11372
|
-
onKeyDown: handleKeyDown,
|
|
11373
11129
|
onSelected: handleSelected
|
|
11374
11130
|
}, options.map(option => React.createElement(DropdownItem, {
|
|
11375
11131
|
value: option.value.input.text,
|
|
@@ -11446,7 +11202,7 @@ function StreamingRichText(props) {
|
|
|
11446
11202
|
} else {
|
|
11447
11203
|
textToUse = text;
|
|
11448
11204
|
}
|
|
11449
|
-
return React.createElement(React.Fragment, null, React.createElement(
|
|
11205
|
+
return React.createElement(React.Fragment, null, React.createElement(MarkdownWithDefaultsExport, {
|
|
11450
11206
|
text: textToUse,
|
|
11451
11207
|
removeHTML,
|
|
11452
11208
|
streaming: streamingState && !streamingState.isDone,
|
|
@@ -11550,7 +11306,7 @@ function MessageTypeComponent(props) {
|
|
|
11550
11306
|
}), React.createElement("div", {
|
|
11551
11307
|
role: "heading",
|
|
11552
11308
|
"aria-level": 2
|
|
11553
|
-
}, React.createElement(
|
|
11309
|
+
}, React.createElement(MarkdownWithDefaultsExport, {
|
|
11554
11310
|
text: userText,
|
|
11555
11311
|
removeHTML: true,
|
|
11556
11312
|
overrideSanitize: true
|
|
@@ -11855,15 +11611,15 @@ function MessageTypeComponent(props) {
|
|
|
11855
11611
|
toolLabelText: languagePack.chainOfThought_toolLabel
|
|
11856
11612
|
}, step.description ? React.createElement("div", {
|
|
11857
11613
|
slot: "description"
|
|
11858
|
-
}, React.createElement(
|
|
11614
|
+
}, React.createElement(MarkdownWithDefaultsExport, {
|
|
11859
11615
|
text: step.description
|
|
11860
11616
|
})) : null, requestMarkdown ? React.createElement("div", {
|
|
11861
11617
|
slot: "input"
|
|
11862
|
-
}, React.createElement(
|
|
11618
|
+
}, React.createElement(MarkdownWithDefaultsExport, {
|
|
11863
11619
|
text: requestMarkdown
|
|
11864
11620
|
})) : null, responseMarkdown ? React.createElement("div", {
|
|
11865
11621
|
slot: "output"
|
|
11866
|
-
}, React.createElement(
|
|
11622
|
+
}, React.createElement(MarkdownWithDefaultsExport, {
|
|
11867
11623
|
text: responseMarkdown
|
|
11868
11624
|
})) : null));
|
|
11869
11625
|
})));
|
|
@@ -11955,14 +11711,15 @@ function MessageTypeComponent(props) {
|
|
|
11955
11711
|
onSubmit: event => onSubmit(isPositive, event.detail),
|
|
11956
11712
|
initialValues: feedbackHistory && feedbackHistory?.is_positive === isPositive ? feedbackInitialValues : null,
|
|
11957
11713
|
showTextArea: show_text_area,
|
|
11958
|
-
|
|
11714
|
+
showBody: show_prompt,
|
|
11959
11715
|
title: title || languagePack.feedback_defaultTitle,
|
|
11960
|
-
|
|
11716
|
+
body: prompt || languagePack.feedback_defaultPrompt,
|
|
11961
11717
|
categories: filteredCategories,
|
|
11718
|
+
categoriesLabel: languagePack.feedback_categoriesLabel,
|
|
11962
11719
|
placeholder: placeholder || languagePack.feedback_defaultPlaceholder,
|
|
11963
11720
|
disclaimer,
|
|
11964
|
-
|
|
11965
|
-
|
|
11721
|
+
primaryLabel: languagePack.feedback_submitLabel,
|
|
11722
|
+
secondaryLabel: languagePack.feedback_cancelLabel
|
|
11966
11723
|
});
|
|
11967
11724
|
}
|
|
11968
11725
|
return {
|
|
@@ -12136,10 +11893,6 @@ class MessageComponent extends PureComponent {
|
|
|
12136
11893
|
moveFocus = MoveFocusType.PREVIOUS;
|
|
12137
11894
|
} else if (event.key === "ArrowDown") {
|
|
12138
11895
|
moveFocus = MoveFocusType.NEXT;
|
|
12139
|
-
} else if (event.key === "Home") {
|
|
12140
|
-
moveFocus = MoveFocusType.FIRST;
|
|
12141
|
-
} else if (event.key === "End") {
|
|
12142
|
-
moveFocus = MoveFocusType.LAST;
|
|
12143
11896
|
} else if (event.key === "Escape") {
|
|
12144
11897
|
moveFocus = MoveFocusType.INPUT;
|
|
12145
11898
|
} else if (event.key === "Enter" || event.key === " ") {
|
|
@@ -12154,7 +11907,7 @@ class MessageComponent extends PureComponent {
|
|
|
12154
11907
|
};
|
|
12155
11908
|
}
|
|
12156
11909
|
getWidgetSaidMessage() {
|
|
12157
|
-
const {intl,
|
|
11910
|
+
const {intl, localMessageItem, message, assistantName} = this.props;
|
|
12158
11911
|
let messageId;
|
|
12159
11912
|
if (localMessageItem.item.agent_message_type) {
|
|
12160
11913
|
if (localMessageItem.item.response_type === MessageResponseTypes.TEXT) {
|
|
@@ -12168,7 +11921,7 @@ class MessageComponent extends PureComponent {
|
|
|
12168
11921
|
return messageId ? intl.formatMessage({
|
|
12169
11922
|
id: messageId
|
|
12170
11923
|
}, {
|
|
12171
|
-
assistantName
|
|
11924
|
+
assistantName: getSpeakerName(message, assistantName)
|
|
12172
11925
|
}) : null;
|
|
12173
11926
|
}
|
|
12174
11927
|
componentDidCatch(error, errorInfo) {
|
|
@@ -12214,11 +11967,12 @@ class MessageComponent extends PureComponent {
|
|
|
12214
11967
|
const whoAnnouncement = isRequest(message) ? languagePack.messages_youSaid : intl.formatMessage({
|
|
12215
11968
|
id: "messages_assistantSaid"
|
|
12216
11969
|
}, {
|
|
12217
|
-
assistantName
|
|
11970
|
+
assistantName: getSpeakerName(message, assistantName)
|
|
12218
11971
|
});
|
|
12219
11972
|
const strings = [ whoAnnouncement ];
|
|
12220
11973
|
nodeToText(this.messageRef.current, strings);
|
|
12221
|
-
|
|
11974
|
+
const ariaLabel = strings.join(" ");
|
|
11975
|
+
this.focusHandleRef.current.setAttribute("aria-label", ariaLabel);
|
|
12222
11976
|
doFocusRef(this.focusHandleRef, true);
|
|
12223
11977
|
}
|
|
12224
11978
|
renderFailedRenderMessage() {
|
|
@@ -12373,13 +12127,15 @@ class MessageComponent extends PureComponent {
|
|
|
12373
12127
|
const isAutoControlled = this.isAutoReasoning(this.props.message);
|
|
12374
12128
|
const containerOpen = this.getReasoningContainerOpen(reasoning);
|
|
12375
12129
|
return React.createElement("div", {
|
|
12376
|
-
className: "cds-aichat--message__reasoning-steps"
|
|
12130
|
+
className: cx("cds-aichat--message__reasoning-steps", {
|
|
12131
|
+
"cds-aichat--message__reasoning-steps--open": containerOpen
|
|
12132
|
+
})
|
|
12377
12133
|
}, React.createElement(ReasoningStepsComponent, {
|
|
12378
12134
|
controlled: true,
|
|
12379
12135
|
id: this.getReasoningContainerId(),
|
|
12380
12136
|
open: containerOpen,
|
|
12381
12137
|
onToggle: isAutoControlled ? this.handleAutoReasoningToggle : undefined
|
|
12382
|
-
}, hasContent && reasoning?.content && React.createElement(
|
|
12138
|
+
}, hasContent && reasoning?.content && React.createElement(MarkdownWithDefaultsExport, {
|
|
12383
12139
|
text: reasoning.content,
|
|
12384
12140
|
highlight: true,
|
|
12385
12141
|
streaming
|
|
@@ -12393,7 +12149,7 @@ class MessageComponent extends PureComponent {
|
|
|
12393
12149
|
this.handleUserControlReasoningStep(index);
|
|
12394
12150
|
this.handleAutoReasoningStepToggle(index, event);
|
|
12395
12151
|
};
|
|
12396
|
-
const stepContent = step.content ? React.createElement(
|
|
12152
|
+
const stepContent = step.content ? React.createElement(MarkdownWithDefaultsExport, {
|
|
12397
12153
|
text: step.content,
|
|
12398
12154
|
highlight: true,
|
|
12399
12155
|
streaming
|
|
@@ -12578,7 +12334,8 @@ class MessageComponent extends PureComponent {
|
|
|
12578
12334
|
}),
|
|
12579
12335
|
ref: this.ref
|
|
12580
12336
|
}, this.renderFocusHandle(), showAvatarLine && this.renderAvatarLine(localMessageItem, message), React.createElement("div", {
|
|
12581
|
-
className: "cds-aichat--message--padding"
|
|
12337
|
+
className: "cds-aichat--message--padding",
|
|
12338
|
+
"aria-hidden": this.state.focusHandleHasFocus ? "true" : undefined
|
|
12582
12339
|
}, isResponse(message) && React.createElement("div", {
|
|
12583
12340
|
className: "cds-aichat--assistant-message"
|
|
12584
12341
|
}, readWidgetSaid && React.createElement(VisuallyHidden, null, this.getWidgetSaidMessage()), React.createElement("div", {
|
|
@@ -12687,7 +12444,11 @@ const STREAM_END_NEAR_PIN_THRESHOLD_PX = 60;
|
|
|
12687
12444
|
|
|
12688
12445
|
const SCROLL_DOWN_THRESHOLD_PX = 60;
|
|
12689
12446
|
|
|
12690
|
-
const
|
|
12447
|
+
const WINDOW_RESIZE_THROTTLE_MS = 200;
|
|
12448
|
+
|
|
12449
|
+
const AUTO_SCROLL_THROTTLE_MS = 150;
|
|
12450
|
+
|
|
12451
|
+
const SCROLL_NOTIFICATION_THROTTLE_MS = 200;
|
|
12691
12452
|
|
|
12692
12453
|
class MessagesComponent extends PureComponent {
|
|
12693
12454
|
constructor() {
|
|
@@ -12703,59 +12464,16 @@ class MessagesComponent extends PureComponent {
|
|
|
12703
12464
|
this.scrollHandleBottomRef = React.createRef();
|
|
12704
12465
|
this.agentBannerRef = React.createRef();
|
|
12705
12466
|
this.pinnedMessageComponent = null;
|
|
12706
|
-
this.currentSpacerHeight = 0;
|
|
12707
|
-
this.lastScrollHeight = 0;
|
|
12708
12467
|
this.pinnedScrollTop = 0;
|
|
12709
12468
|
this.domSpacerHeight = 0;
|
|
12710
12469
|
this.bottomSpacerRef = React.createRef();
|
|
12711
|
-
this.onResize = throttle
|
|
12470
|
+
this.onResize = throttle(() => {
|
|
12712
12471
|
this.renderScrollDownNotification();
|
|
12713
12472
|
this.doAutoScrollInternal();
|
|
12714
|
-
},
|
|
12473
|
+
}, WINDOW_RESIZE_THROTTLE_MS, {
|
|
12715
12474
|
leading: true,
|
|
12716
12475
|
trailing: true
|
|
12717
12476
|
});
|
|
12718
|
-
this.syncStreamingSpacerToDomThrottled = throttle$1(() => {
|
|
12719
|
-
const scrollElement = this.messagesContainerWithScrollingRef.current;
|
|
12720
|
-
const spacerElem = this.bottomSpacerRef.current;
|
|
12721
|
-
if (!scrollElement || !spacerElem || !this.pinnedMessageComponent) {
|
|
12722
|
-
return;
|
|
12723
|
-
}
|
|
12724
|
-
const isCurrentlyStreaming = hasActiveStreaming(this.props.localMessageItems);
|
|
12725
|
-
const streamEndAction = resolveStreamEndAction({
|
|
12726
|
-
nearPinThresholdPx: STREAM_END_NEAR_PIN_THRESHOLD_PX,
|
|
12727
|
-
pinnedScrollTop: this.pinnedScrollTop,
|
|
12728
|
-
scrollTop: scrollElement.scrollTop
|
|
12729
|
-
});
|
|
12730
|
-
const isNearPin = streamEndAction === "re_pin_and_scroll";
|
|
12731
|
-
const syncDecision = resolveStreamingSpacerSyncDecision({
|
|
12732
|
-
currentSpacerHeight: this.currentSpacerHeight,
|
|
12733
|
-
domSpacerHeight: this.domSpacerHeight,
|
|
12734
|
-
isCurrentlyStreaming,
|
|
12735
|
-
isNearPin,
|
|
12736
|
-
minDeltaPx: STREAMING_SPACER_SYNC_MIN_DELTA_PX
|
|
12737
|
-
});
|
|
12738
|
-
if (!syncDecision.shouldSync) {
|
|
12739
|
-
return;
|
|
12740
|
-
}
|
|
12741
|
-
const savedScrollTop = scrollElement.scrollTop;
|
|
12742
|
-
const syncResult = applyStreamingSpacerDomSync({
|
|
12743
|
-
savedScrollTop,
|
|
12744
|
-
scrollElement,
|
|
12745
|
-
spacerElem,
|
|
12746
|
-
targetDomSpacerHeight: syncDecision.targetDomSpacerHeight
|
|
12747
|
-
});
|
|
12748
|
-
if (!syncResult) {
|
|
12749
|
-
return;
|
|
12750
|
-
}
|
|
12751
|
-
this.domSpacerHeight = syncDecision.targetDomSpacerHeight;
|
|
12752
|
-
this.currentSpacerHeight = syncDecision.targetDomSpacerHeight;
|
|
12753
|
-
this.lastScrollHeight = syncResult.newLastScrollHeight;
|
|
12754
|
-
this.renderScrollDownNotification();
|
|
12755
|
-
}, AUTO_SCROLL_THROTTLE_TIMEOUT, {
|
|
12756
|
-
leading: false,
|
|
12757
|
-
trailing: true
|
|
12758
|
-
});
|
|
12759
12477
|
this.scheduleAutoScroll = (options = {}, includePublicSpacerReconciliation = false) => {
|
|
12760
12478
|
requestAnimationFrame(() => {
|
|
12761
12479
|
const scrollElement = this.messagesContainerWithScrollingRef.current;
|
|
@@ -12782,7 +12500,7 @@ class MessagesComponent extends PureComponent {
|
|
|
12782
12500
|
consoleError("An error occurred while attempting to scroll.", error);
|
|
12783
12501
|
}
|
|
12784
12502
|
};
|
|
12785
|
-
this.doAutoScrollThrottled = throttle
|
|
12503
|
+
this.doAutoScrollThrottled = throttle(this.doAutoScrollInternal, AUTO_SCROLL_THROTTLE_MS, {
|
|
12786
12504
|
leading: true,
|
|
12787
12505
|
trailing: true
|
|
12788
12506
|
});
|
|
@@ -12803,12 +12521,12 @@ class MessagesComponent extends PureComponent {
|
|
|
12803
12521
|
doScrollElement(scrollElement, bottomDistanceFromTop - scrollElement.offsetHeight, 0, animate);
|
|
12804
12522
|
}
|
|
12805
12523
|
};
|
|
12806
|
-
this.renderScrollDownNotification = throttle
|
|
12524
|
+
this.renderScrollDownNotification = throttle(() => {
|
|
12807
12525
|
const shouldRender = this.checkMessagesOutOfView();
|
|
12808
12526
|
this.setState({
|
|
12809
12527
|
scrollDown: shouldRender
|
|
12810
12528
|
});
|
|
12811
|
-
},
|
|
12529
|
+
}, SCROLL_NOTIFICATION_THROTTLE_MS, {
|
|
12812
12530
|
leading: false,
|
|
12813
12531
|
trailing: true
|
|
12814
12532
|
});
|
|
@@ -12826,14 +12544,14 @@ class MessagesComponent extends PureComponent {
|
|
|
12826
12544
|
case MoveFocusType.NEXT:
|
|
12827
12545
|
index = currentMessageIndex + 1;
|
|
12828
12546
|
if (index >= localMessageItems.length) {
|
|
12829
|
-
index =
|
|
12547
|
+
index = localMessageItems.length - 1;
|
|
12830
12548
|
}
|
|
12831
12549
|
break;
|
|
12832
12550
|
|
|
12833
12551
|
case MoveFocusType.PREVIOUS:
|
|
12834
12552
|
index = currentMessageIndex - 1;
|
|
12835
12553
|
if (index < 0) {
|
|
12836
|
-
index =
|
|
12554
|
+
index = 0;
|
|
12837
12555
|
}
|
|
12838
12556
|
break;
|
|
12839
12557
|
|
|
@@ -12857,11 +12575,23 @@ class MessagesComponent extends PureComponent {
|
|
|
12857
12575
|
});
|
|
12858
12576
|
this.scrollPanelObserver.observe(this.messagesContainerWithScrollingRef.current);
|
|
12859
12577
|
this.messageResizeObserverState = createMessageResizeObserver({
|
|
12860
|
-
onSignificantResize:
|
|
12861
|
-
this.
|
|
12578
|
+
onSignificantResize: delta => {
|
|
12579
|
+
const scrollElement = this.messagesContainerWithScrollingRef.current;
|
|
12580
|
+
const spacerElem = this.bottomSpacerRef.current;
|
|
12581
|
+
if (scrollElement && spacerElem && this.pinnedMessageComponent) {
|
|
12582
|
+
const maxScrollTop = scrollElement.scrollHeight - scrollElement.clientHeight;
|
|
12583
|
+
const wasBrowserCapped = scrollElement.scrollTop >= maxScrollTop - 2 && scrollElement.scrollTop < this.pinnedScrollTop;
|
|
12584
|
+
this.domSpacerHeight = Math.max(0, this.domSpacerHeight - delta);
|
|
12585
|
+
spacerElem.style.minBlockSize = `${this.domSpacerHeight}px`;
|
|
12586
|
+
const scrollDelta = Math.abs(scrollElement.scrollTop - this.pinnedScrollTop);
|
|
12587
|
+
const hasScrolledAway = scrollDelta > 50;
|
|
12588
|
+
if (!hasScrolledAway || wasBrowserCapped) {
|
|
12589
|
+
scrollElement.scrollTop = this.pinnedScrollTop;
|
|
12590
|
+
}
|
|
12591
|
+
}
|
|
12862
12592
|
},
|
|
12863
12593
|
hasPinnedMessage: () => this.pinnedMessageComponent !== null,
|
|
12864
|
-
|
|
12594
|
+
significantChangeThreshold: 2
|
|
12865
12595
|
});
|
|
12866
12596
|
this.updateObservedMessages();
|
|
12867
12597
|
}
|
|
@@ -12884,18 +12614,7 @@ class MessagesComponent extends PureComponent {
|
|
|
12884
12614
|
this.updateObservedMessages();
|
|
12885
12615
|
}
|
|
12886
12616
|
if (countChanged) {
|
|
12887
|
-
this.
|
|
12888
|
-
const hasNewNonStreamingResponse = newItems.some(item => {
|
|
12889
|
-
if (item.ui_state.streamingState) {
|
|
12890
|
-
return false;
|
|
12891
|
-
}
|
|
12892
|
-
const message = this.props.allMessagesByID[item.fullMessageID];
|
|
12893
|
-
const isResp = message && isResponse(message);
|
|
12894
|
-
return isResp;
|
|
12895
|
-
});
|
|
12896
|
-
if (hasNewNonStreamingResponse) {
|
|
12897
|
-
this.doAutoScrollThrottled();
|
|
12898
|
-
}
|
|
12617
|
+
this.handleCountChanged();
|
|
12899
12618
|
return;
|
|
12900
12619
|
}
|
|
12901
12620
|
if (!this.pinnedMessageComponent) {
|
|
@@ -12906,56 +12625,9 @@ class MessagesComponent extends PureComponent {
|
|
|
12906
12625
|
newItems
|
|
12907
12626
|
});
|
|
12908
12627
|
if (isCurrentlyStreaming) {
|
|
12909
|
-
|
|
12910
|
-
if (el) {
|
|
12911
|
-
const restoreTarget = getAnchoringRestoreTarget({
|
|
12912
|
-
currentScrollTop: el.scrollTop,
|
|
12913
|
-
snapshot
|
|
12914
|
-
});
|
|
12915
|
-
if (restoreTarget !== null) {
|
|
12916
|
-
el.scrollTop = restoreTarget;
|
|
12917
|
-
}
|
|
12918
|
-
}
|
|
12919
|
-
this.handleStreamingChunk();
|
|
12920
|
-
this.syncStreamingSpacerToDomThrottled();
|
|
12628
|
+
this.handleStreamingUpdate(snapshot);
|
|
12921
12629
|
} else if (wasStreaming) {
|
|
12922
|
-
this.
|
|
12923
|
-
const elEnd = this.messagesContainerWithScrollingRef.current;
|
|
12924
|
-
if (elEnd) {
|
|
12925
|
-
const restoreTarget = getAnchoringRestoreTarget({
|
|
12926
|
-
currentScrollTop: elEnd.scrollTop,
|
|
12927
|
-
snapshot
|
|
12928
|
-
});
|
|
12929
|
-
if (restoreTarget !== null) {
|
|
12930
|
-
elEnd.scrollTop = restoreTarget;
|
|
12931
|
-
}
|
|
12932
|
-
}
|
|
12933
|
-
requestAnimationFrame(() => {
|
|
12934
|
-
const scrollElement = this.messagesContainerWithScrollingRef.current;
|
|
12935
|
-
if (!scrollElement || !this.pinnedMessageComponent) {
|
|
12936
|
-
return;
|
|
12937
|
-
}
|
|
12938
|
-
const scrollTopForDecision = snapshot !== null ? snapshot : scrollElement.scrollTop;
|
|
12939
|
-
const streamEndAction = resolveStreamEndAction({
|
|
12940
|
-
nearPinThresholdPx: STREAM_END_NEAR_PIN_THRESHOLD_PX,
|
|
12941
|
-
pinnedScrollTop: this.pinnedScrollTop,
|
|
12942
|
-
scrollTop: scrollTopForDecision
|
|
12943
|
-
});
|
|
12944
|
-
if (streamEndAction === "re_pin_and_scroll") {
|
|
12945
|
-
this.executePinAndScroll(this.pinnedMessageComponent, scrollElement);
|
|
12946
|
-
} else {
|
|
12947
|
-
const savedScrollTop = scrollTopForDecision;
|
|
12948
|
-
const spacerElem = this.bottomSpacerRef.current;
|
|
12949
|
-
if (spacerElem) {
|
|
12950
|
-
spacerElem.style.minBlockSize = "0px";
|
|
12951
|
-
}
|
|
12952
|
-
this.currentSpacerHeight = 0;
|
|
12953
|
-
this.domSpacerHeight = 0;
|
|
12954
|
-
if (scrollElement.scrollTop < savedScrollTop) {
|
|
12955
|
-
scrollElement.scrollTop = savedScrollTop;
|
|
12956
|
-
}
|
|
12957
|
-
}
|
|
12958
|
-
});
|
|
12630
|
+
this.handleStreamEndUpdate(snapshot);
|
|
12959
12631
|
}
|
|
12960
12632
|
}
|
|
12961
12633
|
componentWillUnmount() {
|
|
@@ -12966,7 +12638,6 @@ class MessagesComponent extends PureComponent {
|
|
|
12966
12638
|
cleanupMessageResizeObserver(this.messageResizeObserverState);
|
|
12967
12639
|
this.messageResizeObserverState = null;
|
|
12968
12640
|
}
|
|
12969
|
-
this.syncStreamingSpacerToDomThrottled.cancel();
|
|
12970
12641
|
this.doAutoScrollThrottled.cancel();
|
|
12971
12642
|
this.renderScrollDownNotification.cancel();
|
|
12972
12643
|
}
|
|
@@ -12992,33 +12663,21 @@ class MessagesComponent extends PureComponent {
|
|
|
12992
12663
|
if (!result) {
|
|
12993
12664
|
return;
|
|
12994
12665
|
}
|
|
12995
|
-
this.currentSpacerHeight = result.currentSpacerHeight;
|
|
12996
12666
|
this.domSpacerHeight = result.currentSpacerHeight;
|
|
12997
|
-
this.lastScrollHeight = result.lastScrollHeight;
|
|
12998
12667
|
this.pinnedMessageComponent = result.pinnedMessageComponent;
|
|
12999
12668
|
this.pinnedScrollTop = result.scrollTop;
|
|
13000
12669
|
debugAutoScroll(`[autoScroll] Pinned message, scrollTop=${result.scrollTop}, spacer=${result.currentSpacerHeight}px`);
|
|
13001
12670
|
}
|
|
13002
12671
|
executeRecalculateSpacer(scrollElement) {
|
|
13003
|
-
const
|
|
12672
|
+
const result = recalculatePinnedMessageSpacer({
|
|
13004
12673
|
pinnedMessageComponent: this.pinnedMessageComponent,
|
|
13005
12674
|
scrollElement,
|
|
13006
12675
|
spacerElem: this.bottomSpacerRef.current
|
|
13007
12676
|
});
|
|
13008
|
-
if (
|
|
12677
|
+
if (result === null) {
|
|
13009
12678
|
return;
|
|
13010
12679
|
}
|
|
13011
|
-
this.
|
|
13012
|
-
this.domSpacerHeight = spacerHeight;
|
|
13013
|
-
}
|
|
13014
|
-
handleStreamingChunk() {
|
|
13015
|
-
const result = consumeStreamingChunk({
|
|
13016
|
-
currentSpacerHeight: this.currentSpacerHeight,
|
|
13017
|
-
lastScrollHeight: this.lastScrollHeight,
|
|
13018
|
-
scrollElement: this.messagesContainerWithScrollingRef.current
|
|
13019
|
-
});
|
|
13020
|
-
this.currentSpacerHeight = result.currentSpacerHeight;
|
|
13021
|
-
this.lastScrollHeight = result.lastScrollHeight;
|
|
12680
|
+
this.domSpacerHeight = result.deficit;
|
|
13022
12681
|
}
|
|
13023
12682
|
executeResolvedAutoScrollAction(options, scrollElement) {
|
|
13024
12683
|
const action = resolveAutoScrollAction({
|
|
@@ -13036,8 +12695,7 @@ class MessagesComponent extends PureComponent {
|
|
|
13036
12695
|
|
|
13037
12696
|
case "scroll_to_bottom":
|
|
13038
12697
|
{
|
|
13039
|
-
const isStreaming =
|
|
13040
|
-
this.syncStreamingSpacerToDomThrottled.cancel();
|
|
12698
|
+
const isStreaming = this.props.localMessageItems.some(item => item.ui_state.streamingState && !item.ui_state.streamingState.isDone);
|
|
13041
12699
|
const scrollTop = isStreaming ? Math.max(0, action.scrollTop - this.domSpacerHeight) : action.scrollTop;
|
|
13042
12700
|
doScrollElement(scrollElement, scrollTop, 0, action.preferAnimate && !isStreaming);
|
|
13043
12701
|
return;
|
|
@@ -13071,15 +12729,86 @@ class MessagesComponent extends PureComponent {
|
|
|
13071
12729
|
if (scrollElement.scrollTop < savedScrollTop) {
|
|
13072
12730
|
scrollElement.scrollTop = savedScrollTop;
|
|
13073
12731
|
}
|
|
13074
|
-
this.lastScrollHeight = scrollElement.scrollHeight;
|
|
13075
12732
|
this.renderScrollDownNotification();
|
|
13076
12733
|
}
|
|
12734
|
+
handleCountChanged() {
|
|
12735
|
+
this.doAutoScrollInternal();
|
|
12736
|
+
const hasNewResponse = hasNewNonStreamingResponse(this.props.localMessageItems, this.props.allMessagesByID);
|
|
12737
|
+
if (hasNewResponse) {
|
|
12738
|
+
this.doAutoScrollThrottled();
|
|
12739
|
+
}
|
|
12740
|
+
}
|
|
12741
|
+
handleStreamingUpdate(snapshot) {
|
|
12742
|
+
const el = this.messagesContainerWithScrollingRef.current;
|
|
12743
|
+
if (!el) {
|
|
12744
|
+
return;
|
|
12745
|
+
}
|
|
12746
|
+
const restoreTarget = applySafariScrollAnchoringRestore(el.scrollTop, snapshot);
|
|
12747
|
+
if (restoreTarget !== null) {
|
|
12748
|
+
el.scrollTop = restoreTarget;
|
|
12749
|
+
}
|
|
12750
|
+
}
|
|
12751
|
+
handleStreamEndUpdate(snapshot) {
|
|
12752
|
+
const scrollElement = this.messagesContainerWithScrollingRef.current;
|
|
12753
|
+
if (!scrollElement) {
|
|
12754
|
+
return;
|
|
12755
|
+
}
|
|
12756
|
+
const restoreTarget = applySafariScrollAnchoringRestore(scrollElement.scrollTop, snapshot);
|
|
12757
|
+
if (restoreTarget !== null) {
|
|
12758
|
+
scrollElement.scrollTop = restoreTarget;
|
|
12759
|
+
}
|
|
12760
|
+
this.executeStreamEndScrollAction(snapshot);
|
|
12761
|
+
}
|
|
12762
|
+
executeStreamEndScrollAction(snapshot) {
|
|
12763
|
+
requestAnimationFrame(() => {
|
|
12764
|
+
const scrollElement = this.messagesContainerWithScrollingRef.current;
|
|
12765
|
+
if (!scrollElement || !this.pinnedMessageComponent) {
|
|
12766
|
+
return;
|
|
12767
|
+
}
|
|
12768
|
+
const scrollTopForDecision = snapshot ?? scrollElement.scrollTop;
|
|
12769
|
+
const streamEndAction = resolveStreamEndAction({
|
|
12770
|
+
nearPinThresholdPx: STREAM_END_NEAR_PIN_THRESHOLD_PX,
|
|
12771
|
+
pinnedScrollTop: this.pinnedScrollTop,
|
|
12772
|
+
scrollTop: scrollTopForDecision
|
|
12773
|
+
});
|
|
12774
|
+
if (streamEndAction === "re_pin_and_scroll") {
|
|
12775
|
+
this.executePinAndScroll(this.pinnedMessageComponent, scrollElement);
|
|
12776
|
+
} else {
|
|
12777
|
+
const savedScrollTop = scrollTopForDecision;
|
|
12778
|
+
const spacerElem = this.bottomSpacerRef.current;
|
|
12779
|
+
if (spacerElem) {
|
|
12780
|
+
spacerElem.style.minBlockSize = "0px";
|
|
12781
|
+
}
|
|
12782
|
+
this.domSpacerHeight = 0;
|
|
12783
|
+
if (scrollElement.scrollTop < savedScrollTop) {
|
|
12784
|
+
scrollElement.scrollTop = savedScrollTop;
|
|
12785
|
+
}
|
|
12786
|
+
}
|
|
12787
|
+
});
|
|
12788
|
+
}
|
|
13077
12789
|
requestHumanAgentBannerFocus() {
|
|
13078
12790
|
if (this.agentBannerRef.current) {
|
|
13079
12791
|
return this.agentBannerRef.current.requestFocus();
|
|
13080
12792
|
}
|
|
13081
12793
|
return false;
|
|
13082
12794
|
}
|
|
12795
|
+
requestFocusOnFirstItemOfLastMessage() {
|
|
12796
|
+
const {localMessageItems} = this.props;
|
|
12797
|
+
if (localMessageItems.length === 0) {
|
|
12798
|
+
return false;
|
|
12799
|
+
}
|
|
12800
|
+
const lastItem = localMessageItems[localMessageItems.length - 1];
|
|
12801
|
+
const lastMessageID = lastItem.fullMessageID;
|
|
12802
|
+
const firstItemOfLastMessage = localMessageItems.find(item => item.fullMessageID === lastMessageID);
|
|
12803
|
+
if (firstItemOfLastMessage) {
|
|
12804
|
+
const ref = this.messageRefs.get(firstItemOfLastMessage.ui_state.id);
|
|
12805
|
+
if (ref) {
|
|
12806
|
+
ref.requestHandleFocus();
|
|
12807
|
+
return true;
|
|
12808
|
+
}
|
|
12809
|
+
}
|
|
12810
|
+
return false;
|
|
12811
|
+
}
|
|
13083
12812
|
doScrollToMessage(messageID, animate = false) {
|
|
13084
12813
|
try {
|
|
13085
12814
|
const {localMessageItems} = this.props;
|
|
@@ -13211,16 +12940,34 @@ class MessagesComponent extends PureComponent {
|
|
|
13211
12940
|
}
|
|
13212
12941
|
renderScrollHandle(atTop) {
|
|
13213
12942
|
const {languagePack} = this.props.config.derived;
|
|
12943
|
+
const {intl, config} = this.props;
|
|
13214
12944
|
let labelKey;
|
|
12945
|
+
let ariaLabel;
|
|
13215
12946
|
if (IS_MOBILE) {
|
|
13216
12947
|
labelKey = atTop ? "messages_scrollHandle" : "messages_scrollHandleEnd";
|
|
12948
|
+
ariaLabel = languagePack[labelKey] || languagePack.messages_scrollHandle;
|
|
13217
12949
|
} else {
|
|
13218
|
-
|
|
12950
|
+
const shortcutConfig = config.public.keyboardShortcuts?.messageFocusToggle || DEFAULT_MESSAGE_FOCUS_TOGGLE_SHORTCUT;
|
|
12951
|
+
const shortcutsEnabled = shortcutConfig.is_on !== false;
|
|
12952
|
+
if (shortcutsEnabled) {
|
|
12953
|
+
labelKey = atTop ? "messages_scrollHandleDetailed" : "messages_scrollHandleEndDetailed";
|
|
12954
|
+
const shortcutText = formatShortcutForDisplay(shortcutConfig);
|
|
12955
|
+
ariaLabel = intl.formatMessage({
|
|
12956
|
+
id: labelKey
|
|
12957
|
+
}, {
|
|
12958
|
+
shortcut: shortcutText
|
|
12959
|
+
});
|
|
12960
|
+
} else {
|
|
12961
|
+
labelKey = atTop ? "messages_scrollHandleDetailedNoShortcut" : "messages_scrollHandleEndDetailedNoShortcut";
|
|
12962
|
+
ariaLabel = intl.formatMessage({
|
|
12963
|
+
id: labelKey
|
|
12964
|
+
});
|
|
12965
|
+
}
|
|
13219
12966
|
}
|
|
13220
12967
|
const onClick = IS_MOBILE ? undefined : () => this.requestMoveFocus(atTop ? MoveFocusType.FIRST : MoveFocusType.LAST, 0);
|
|
13221
12968
|
return React.createElement(MessagesScrollHandle, {
|
|
13222
12969
|
buttonRef: atTop ? this.scrollHandleTopRef : this.scrollHandleBottomRef,
|
|
13223
|
-
ariaLabel
|
|
12970
|
+
ariaLabel,
|
|
13224
12971
|
onClick,
|
|
13225
12972
|
onFocus: () => this.setState({
|
|
13226
12973
|
scrollHandleHasFocus: true
|
|
@@ -13277,7 +13024,7 @@ class MessagesComponent extends PureComponent {
|
|
|
13277
13024
|
statusMessage: isMessageLoadingCounter ? isMessageLoadingText : undefined,
|
|
13278
13025
|
processingLabel: languagePack.messages_processingLabel
|
|
13279
13026
|
});
|
|
13280
|
-
const scrollDownButton = scrollDown ? React.createElement(MessagesScrollToBottomButton, {
|
|
13027
|
+
const scrollDownButton = scrollDown && !scrollHandleHasFocus ? React.createElement(MessagesScrollToBottomButton, {
|
|
13281
13028
|
ariaLabel: languagePack.messages_scrollMoreButton,
|
|
13282
13029
|
onClick: () => this.doAutoScrollInternal({
|
|
13283
13030
|
scrollToBottom: 0,
|
|
@@ -13698,13 +13445,17 @@ const ContentEditableInput = forwardRef(({ariaLabel, autoSize, disabled, display
|
|
|
13698
13445
|
"cds-aichat--text-area--auto-size": autoSize,
|
|
13699
13446
|
"cds-aichat--text-area--disabled": disabled
|
|
13700
13447
|
})
|
|
13701
|
-
}, React.createElement("div", {
|
|
13448
|
+
}, !rawValue && placeholder && React.createElement("div", {
|
|
13449
|
+
className: "cds-aichat--text-area-placeholder",
|
|
13450
|
+
"aria-hidden": "true"
|
|
13451
|
+
}, placeholder), React.createElement("div", {
|
|
13702
13452
|
ref: editorRef,
|
|
13703
13453
|
"aria-label": ariaLabel,
|
|
13704
13454
|
"aria-multiline": "true",
|
|
13455
|
+
"aria-live": "off",
|
|
13456
|
+
"aria-atomic": "false",
|
|
13705
13457
|
className: "cds-aichat--text-area-textarea",
|
|
13706
13458
|
contentEditable: !disabled,
|
|
13707
|
-
"data-placeholder": placeholder,
|
|
13708
13459
|
"data-testid": testId,
|
|
13709
13460
|
"aria-disabled": disabled,
|
|
13710
13461
|
onBlur,
|
|
@@ -13739,10 +13490,11 @@ const STOP_TYPING_PERIOD = 5e3;
|
|
|
13739
13490
|
const INPUT_MAX_CHARS = 1e4;
|
|
13740
13491
|
|
|
13741
13492
|
function Input(props, ref) {
|
|
13742
|
-
const {isInputVisible, placeholder, disableInput, disableSend, disableUploadButton, pendingUploads, allowedFileUploadTypes, allowMultipleFileUploads, showUploadButton, onFilesSelectedForUpload, onSendInput,
|
|
13493
|
+
const {isInputVisible, placeholder, disableInput, disableSend, disableUploadButton, pendingUploads, allowedFileUploadTypes, allowMultipleFileUploads, showUploadButton, onFilesSelectedForUpload, onSendInput, serviceManager, onUserTyping, languagePack, isStopStreamingButtonVisible, isStopStreamingButtonDisabled, maxInputChars, trackInputState = false} = props;
|
|
13743
13494
|
const store = serviceManager.store;
|
|
13744
13495
|
const inputID = `${serviceManager.namespace.suffix}-${useCounter()}`;
|
|
13745
13496
|
const [textAreaHasFocus, setTextAreaHasFocus] = useState(false);
|
|
13497
|
+
const [hasAnnouncedShortcut, setHasAnnouncedShortcut] = useState(false);
|
|
13746
13498
|
const trackedInputState = trackInputState ? selectInputState(store.getState()) : null;
|
|
13747
13499
|
const [rawInputValue, setRawInputValue] = useState(trackedInputState?.rawValue ?? "");
|
|
13748
13500
|
const [displayInputValue, setDisplayInputValue] = useState(trackedInputState?.displayValue ?? "");
|
|
@@ -13792,6 +13544,12 @@ function Input(props, ref) {
|
|
|
13792
13544
|
}
|
|
13793
13545
|
}
|
|
13794
13546
|
function onKeyDown(event) {
|
|
13547
|
+
const shortcutConfig = serviceManager.store.getState().config.public.keyboardShortcuts?.messageFocusToggle || DEFAULT_MESSAGE_FOCUS_TOGGLE_SHORTCUT;
|
|
13548
|
+
const shortcutsEnabled = shortcutConfig.is_on !== false;
|
|
13549
|
+
if (shortcutsEnabled && matchesShortcut(event.nativeEvent, shortcutConfig)) {
|
|
13550
|
+
event.preventDefault();
|
|
13551
|
+
return;
|
|
13552
|
+
}
|
|
13795
13553
|
if (isEnterKey(event)) {
|
|
13796
13554
|
if (disableSend || isStopStreamingButtonVisible) {
|
|
13797
13555
|
event.preventDefault();
|
|
@@ -13834,15 +13592,23 @@ function Input(props, ref) {
|
|
|
13834
13592
|
displayValue: ""
|
|
13835
13593
|
}, isInputToHumanAgent));
|
|
13836
13594
|
}
|
|
13837
|
-
if (blurOnSend) {
|
|
13838
|
-
textAreaRef.current?.doBlur();
|
|
13839
|
-
} else {
|
|
13840
|
-
textAreaRef.current?.takeFocus();
|
|
13841
|
-
}
|
|
13842
13595
|
}
|
|
13843
13596
|
}
|
|
13844
13597
|
function onInputFocus() {
|
|
13845
13598
|
setTextAreaHasFocus(true);
|
|
13599
|
+
if (!hasAnnouncedShortcut) {
|
|
13600
|
+
const shortcutConfig = serviceManager.store.getState().config.public.keyboardShortcuts?.messageFocusToggle || DEFAULT_MESSAGE_FOCUS_TOGGLE_SHORTCUT;
|
|
13601
|
+
if (shortcutConfig.is_on) {
|
|
13602
|
+
const key = shortcutConfig.key;
|
|
13603
|
+
serviceManager.store.dispatch(actions.announceMessage({
|
|
13604
|
+
messageID: "input_keyboardShortcutAnnouncement",
|
|
13605
|
+
messageValues: {
|
|
13606
|
+
key
|
|
13607
|
+
}
|
|
13608
|
+
}));
|
|
13609
|
+
setHasAnnouncedShortcut(true);
|
|
13610
|
+
}
|
|
13611
|
+
}
|
|
13846
13612
|
}
|
|
13847
13613
|
function onInputBlur() {
|
|
13848
13614
|
setTextAreaHasFocus(false);
|
|
@@ -13852,6 +13618,21 @@ function Input(props, ref) {
|
|
|
13852
13618
|
textAreaRef.current?.takeFocus();
|
|
13853
13619
|
}
|
|
13854
13620
|
}
|
|
13621
|
+
function requestFocus() {
|
|
13622
|
+
if (!IS_MOBILE && isInputVisible) {
|
|
13623
|
+
textAreaRef.current?.takeFocus();
|
|
13624
|
+
return hasFocus();
|
|
13625
|
+
}
|
|
13626
|
+
return false;
|
|
13627
|
+
}
|
|
13628
|
+
function hasFocus() {
|
|
13629
|
+
const inputElement = textAreaRef.current?.getHTMLElement();
|
|
13630
|
+
if (!inputElement) {
|
|
13631
|
+
return false;
|
|
13632
|
+
}
|
|
13633
|
+
const activeElement = getDeepActiveElement();
|
|
13634
|
+
return activeElement === inputElement || inputElement.contains(activeElement);
|
|
13635
|
+
}
|
|
13855
13636
|
function onRemoveFile(fileID) {
|
|
13856
13637
|
const isInputToHumanAgent = selectIsInputToHumanAgent(serviceManager.store.getState());
|
|
13857
13638
|
serviceManager.store.dispatch(actions.removeFileUpload(fileID, isInputToHumanAgent));
|
|
@@ -13889,7 +13670,9 @@ function Input(props, ref) {
|
|
|
13889
13670
|
setTextAreaHasFocus(false);
|
|
13890
13671
|
}
|
|
13891
13672
|
useImperativeHandle(ref, () => ({
|
|
13892
|
-
takeFocus
|
|
13673
|
+
takeFocus,
|
|
13674
|
+
requestFocus,
|
|
13675
|
+
hasFocus
|
|
13893
13676
|
}));
|
|
13894
13677
|
const {input_buttonLabel, input_placeholder, input_ariaLabel, input_uploadButtonLabel, input_stopResponse} = languagePack;
|
|
13895
13678
|
const visibleRawValue = disableInput ? "" : rawInputValue;
|
|
@@ -14441,14 +14224,12 @@ const DisclaimerPanel = ({disclaimerHTML, disclaimerAcceptButtonRef, onAcceptDis
|
|
|
14441
14224
|
theme: isDarkTheme ? "dark" : "light",
|
|
14442
14225
|
label: languagePack.disclaimer_icon_label
|
|
14443
14226
|
})), React.createElement("h1", {
|
|
14444
|
-
className: "cds-aichat--disclaimer__title"
|
|
14445
|
-
"aria-describedby": disclaimerDescriptionClassName
|
|
14227
|
+
className: "cds-aichat--disclaimer__title"
|
|
14446
14228
|
}, languagePack.disclaimer_title), React.createElement("div", {
|
|
14447
14229
|
dangerouslySetInnerHTML: {
|
|
14448
14230
|
__html: disclaimerHTML
|
|
14449
14231
|
},
|
|
14450
|
-
className: disclaimerDescriptionClassName
|
|
14451
|
-
role: "dialog"
|
|
14232
|
+
className: disclaimerDescriptionClassName
|
|
14452
14233
|
})),
|
|
14453
14234
|
footer: React.createElement(Button, {
|
|
14454
14235
|
className: "cds-aichat--disclaimer__accept-button",
|
|
@@ -14748,7 +14529,7 @@ const CatastrophicErrorPanel = ({assistantName, languagePack, onRestart}) => {
|
|
|
14748
14529
|
className: "cds-aichat--catastrophic-error__error-heading"
|
|
14749
14530
|
}, languagePack.errors_somethingWrong), React.createElement("div", {
|
|
14750
14531
|
className: "cds-aichat--catastrophic-error__error-body"
|
|
14751
|
-
}, React.createElement(
|
|
14532
|
+
}, React.createElement(MarkdownWithDefaultsExport, {
|
|
14752
14533
|
text: errorBodyText,
|
|
14753
14534
|
highlight: true
|
|
14754
14535
|
})), onRestart && React.createElement(ChatButton, {
|
|
@@ -14813,6 +14594,7 @@ function AppShellPanels({serviceManager, languagePack, isHydratingComplete, shou
|
|
|
14813
14594
|
return React.createElement("div", {
|
|
14814
14595
|
slot: "panels"
|
|
14815
14596
|
}, React.createElement(ChatPanel, {
|
|
14597
|
+
panelAriaLabel: languagePack.aria_catastrophicErrorPanel,
|
|
14816
14598
|
open: Boolean(catastrophicErrorType),
|
|
14817
14599
|
aiEnabled: config.public.aiEnabled ? true : false,
|
|
14818
14600
|
priority: 100,
|
|
@@ -14826,6 +14608,7 @@ function AppShellPanels({serviceManager, languagePack, isHydratingComplete, shou
|
|
|
14826
14608
|
languagePack,
|
|
14827
14609
|
onRestart
|
|
14828
14610
|
}))), React.createElement(ChatPanel, {
|
|
14611
|
+
panelAriaLabel: languagePack.aria_hydrationPanel,
|
|
14829
14612
|
open: shouldShowHydrationPanel,
|
|
14830
14613
|
priority: 90,
|
|
14831
14614
|
aiEnabled: config.public.aiEnabled ? true : false,
|
|
@@ -14846,6 +14629,7 @@ function AppShellPanels({serviceManager, languagePack, isHydratingComplete, shou
|
|
|
14846
14629
|
isHydrated: isHydratingComplete,
|
|
14847
14630
|
languagePack
|
|
14848
14631
|
}))), React.createElement(ChatPanel, {
|
|
14632
|
+
panelAriaLabel: panelTitle || languagePack.aria_customPanel,
|
|
14849
14633
|
open: customPanelState.isOpen,
|
|
14850
14634
|
priority: 60,
|
|
14851
14635
|
fullWidth: "fullWidth" in customPanelState.options && customPanelState.options.fullWidth ? true : false,
|
|
@@ -14916,6 +14700,7 @@ function AppShellPanels({serviceManager, languagePack, isHydratingComplete, shou
|
|
|
14916
14700
|
className: "cds-aichat--custom-panel__content-container"
|
|
14917
14701
|
})
|
|
14918
14702
|
})), disclaimerContent && React.createElement(ChatPanel, {
|
|
14703
|
+
panelAriaLabel: languagePack.aria_disclaimerPanel,
|
|
14919
14704
|
open: showDisclaimer,
|
|
14920
14705
|
priority: 80,
|
|
14921
14706
|
aiEnabled: config.public.aiEnabled ? true : false,
|
|
@@ -14936,6 +14721,7 @@ function AppShellPanels({serviceManager, languagePack, isHydratingComplete, shou
|
|
|
14936
14721
|
slot: "footer",
|
|
14937
14722
|
className: "cds-aichat--disclaimer__footer"
|
|
14938
14723
|
}, disclaimerContent.footer)), React.createElement(ChatPanel, {
|
|
14724
|
+
panelAriaLabel: responsePanelState.localMessageItem?.item?.panel.title || languagePack.aria_responsePanel,
|
|
14939
14725
|
open: responsePanelState.isOpen,
|
|
14940
14726
|
priority: 50,
|
|
14941
14727
|
fullWidth: responsePanelState.localMessageItem?.item?.panel.full_width ? true : false,
|
|
@@ -14993,6 +14779,7 @@ function AppShellPanels({serviceManager, languagePack, isHydratingComplete, shou
|
|
|
14993
14779
|
})
|
|
14994
14780
|
})
|
|
14995
14781
|
})), React.createElement(ChatPanel, {
|
|
14782
|
+
panelAriaLabel: iFramePanelState.messageItem?.title || iFramePanelState.messageItem?.source || languagePack.aria_iframePanel,
|
|
14996
14783
|
open: iFramePanelState.isOpen,
|
|
14997
14784
|
priority: 40,
|
|
14998
14785
|
showFrame: true,
|
|
@@ -15016,6 +14803,7 @@ function AppShellPanels({serviceManager, languagePack, isHydratingComplete, shou
|
|
|
15016
14803
|
messageItem: iFramePanelState.messageItem
|
|
15017
14804
|
})
|
|
15018
14805
|
})), React.createElement(ChatPanel, {
|
|
14806
|
+
panelAriaLabel: viewSourcePanelState.citationItem?.title || languagePack.aria_viewSourcePanel,
|
|
15019
14807
|
open: viewSourcePanelState.isOpen,
|
|
15020
14808
|
priority: 30,
|
|
15021
14809
|
showFrame: true,
|
|
@@ -15216,46 +15004,6 @@ function useWindowOpenState({viewStateMainWindow, isHydrated, useCustomHostEleme
|
|
|
15216
15004
|
};
|
|
15217
15005
|
}
|
|
15218
15006
|
|
|
15219
|
-
function useAutoFocusManagement({shouldTakeFocusIfOpensAutomatically, hasSentNonWelcomeMessage, localMessageIDs, allMessageItemsByID, allMessagesByID, requestFocus}) {
|
|
15220
|
-
const [shouldAutoFocus, setShouldAutoFocus] = useState(shouldTakeFocusIfOpensAutomatically ?? true);
|
|
15221
|
-
const prevHasSentNonWelcomeMessage = usePrevious(hasSentNonWelcomeMessage);
|
|
15222
|
-
const prevMessageIDs = usePrevious(localMessageIDs);
|
|
15223
|
-
const lastMessageItemID = arrayLastValue(localMessageIDs);
|
|
15224
|
-
const prevLastMessageItemID = usePrevious(lastMessageItemID);
|
|
15225
|
-
useEffect(() => {
|
|
15226
|
-
const shouldTakeFocus = shouldTakeFocusIfOpensAutomatically ?? true;
|
|
15227
|
-
setShouldAutoFocus(shouldTakeFocus);
|
|
15228
|
-
}, [ shouldTakeFocusIfOpensAutomatically ]);
|
|
15229
|
-
useEffect(() => {
|
|
15230
|
-
const shouldTakeFocus = shouldTakeFocusIfOpensAutomatically ?? true;
|
|
15231
|
-
if (!shouldTakeFocus) {
|
|
15232
|
-
return;
|
|
15233
|
-
}
|
|
15234
|
-
const prevMessageCount = prevMessageIDs?.length ?? localMessageIDs.length;
|
|
15235
|
-
const currentMessageCount = localMessageIDs.length;
|
|
15236
|
-
const previouslySentNonWelcome = prevHasSentNonWelcomeMessage ?? hasSentNonWelcomeMessage;
|
|
15237
|
-
if (!previouslySentNonWelcome && hasSentNonWelcomeMessage && !shouldAutoFocus) {
|
|
15238
|
-
setShouldAutoFocus(true);
|
|
15239
|
-
} else if (prevMessageCount > currentMessageCount && shouldAutoFocus) {
|
|
15240
|
-
setShouldAutoFocus(false);
|
|
15241
|
-
} else if (prevMessageCount < currentMessageCount && !shouldAutoFocus) {
|
|
15242
|
-
setShouldAutoFocus(true);
|
|
15243
|
-
}
|
|
15244
|
-
}, [ localMessageIDs, hasSentNonWelcomeMessage, prevHasSentNonWelcomeMessage, prevMessageIDs, shouldTakeFocusIfOpensAutomatically, shouldAutoFocus ]);
|
|
15245
|
-
useEffect(() => {
|
|
15246
|
-
if (lastMessageItemID && lastMessageItemID !== prevLastMessageItemID && shouldAutoFocus) {
|
|
15247
|
-
const lastMessageItem = allMessageItemsByID[lastMessageItemID];
|
|
15248
|
-
const lastMessage = allMessagesByID[lastMessageItem?.fullMessageID];
|
|
15249
|
-
if (!lastMessage?.ui_state_internal?.from_history) {
|
|
15250
|
-
requestFocus();
|
|
15251
|
-
}
|
|
15252
|
-
}
|
|
15253
|
-
}, [ allMessageItemsByID, allMessagesByID, lastMessageItemID, prevLastMessageItemID, requestFocus, shouldAutoFocus ]);
|
|
15254
|
-
return {
|
|
15255
|
-
shouldAutoFocus
|
|
15256
|
-
};
|
|
15257
|
-
}
|
|
15258
|
-
|
|
15259
15007
|
function useFocusManager({shouldAutoFocus, showDisclaimer, iFramePanelIsOpen, viewSourcePanelIsOpen, customPanelIsOpen, responsePanelIsOpen, disclaimerRef, iframePanelRef, viewSourcePanelRef, customPanelRef, responsePanelRef, inputRef}) {
|
|
15260
15008
|
const requestFocus = useCallback(() => {
|
|
15261
15009
|
try {
|
|
@@ -15283,48 +15031,6 @@ function useFocusManager({shouldAutoFocus, showDisclaimer, iFramePanelIsOpen, vi
|
|
|
15283
15031
|
return requestFocus;
|
|
15284
15032
|
}
|
|
15285
15033
|
|
|
15286
|
-
function useWorkspaceAnnouncements({serviceManager}) {
|
|
15287
|
-
const intl = useIntl();
|
|
15288
|
-
const announceToScreenReader = useAriaAnnouncer();
|
|
15289
|
-
useEffect(() => {
|
|
15290
|
-
const handleWorkspaceOpen = event => {
|
|
15291
|
-
const title = event.data?.workspaceId || event.data?.message?.title || event.data?.additionalData?.title;
|
|
15292
|
-
const message = title ? intl.formatMessage({
|
|
15293
|
-
id: "workspace_opened"
|
|
15294
|
-
}, {
|
|
15295
|
-
title
|
|
15296
|
-
}) : intl.formatMessage({
|
|
15297
|
-
id: "workspace_opened_no_title"
|
|
15298
|
-
});
|
|
15299
|
-
announceToScreenReader(message);
|
|
15300
|
-
};
|
|
15301
|
-
const handleWorkspaceClose = () => {
|
|
15302
|
-
const message = intl.formatMessage({
|
|
15303
|
-
id: "workspace_closed"
|
|
15304
|
-
});
|
|
15305
|
-
announceToScreenReader(message);
|
|
15306
|
-
};
|
|
15307
|
-
serviceManager.eventBus.on({
|
|
15308
|
-
type: BusEventType.WORKSPACE_OPEN,
|
|
15309
|
-
handler: handleWorkspaceOpen
|
|
15310
|
-
});
|
|
15311
|
-
serviceManager.eventBus.on({
|
|
15312
|
-
type: BusEventType.WORKSPACE_CLOSE,
|
|
15313
|
-
handler: handleWorkspaceClose
|
|
15314
|
-
});
|
|
15315
|
-
return () => {
|
|
15316
|
-
serviceManager.eventBus.off({
|
|
15317
|
-
type: BusEventType.WORKSPACE_OPEN,
|
|
15318
|
-
handler: handleWorkspaceOpen
|
|
15319
|
-
});
|
|
15320
|
-
serviceManager.eventBus.off({
|
|
15321
|
-
type: BusEventType.WORKSPACE_CLOSE,
|
|
15322
|
-
handler: handleWorkspaceClose
|
|
15323
|
-
});
|
|
15324
|
-
};
|
|
15325
|
-
}, [ serviceManager, intl, announceToScreenReader ]);
|
|
15326
|
-
}
|
|
15327
|
-
|
|
15328
15034
|
function useStyleInjection({containerRef, hostElement, cssVariableOverrideString, visualViewportStyles, appStyles, applicationStylesheet, cssVariableOverrideStylesheet, visualViewportStylesheet}) {
|
|
15329
15035
|
useEffect(() => {
|
|
15330
15036
|
if (!containerRef.current) {
|
|
@@ -15556,7 +15262,7 @@ function calculateChatWidthBreakpoint(width) {
|
|
|
15556
15262
|
return ChatWidthBreakpoint.NARROW;
|
|
15557
15263
|
}
|
|
15558
15264
|
|
|
15559
|
-
var css_248z = ".cds--layout--size-xs{\n --cds-layout-size-height-context:var(--cds-layout-size-height-xs, 1.5rem);\n --cds-layout-size-height:var(--cds-layout-size-height-context);\n}\n\n.cds--layout-constraint--size__default-xs{\n --cds-layout-size-height:var(--cds-layout-size-height-context, var(--cds-layout-size-height-xs, 1.5rem));\n}\n\n.cds--layout-constraint--size__min-xs{\n --cds-layout-size-height-min:var(--cds-layout-size-height-xs, 1.5rem);\n}\n\n.cds--layout-constraint--size__max-xs{\n --cds-layout-size-height-max:var(--cds-layout-size-height-xs, 1.5rem);\n}\n\n.cds--layout--size-sm{\n --cds-layout-size-height-context:var(--cds-layout-size-height-sm, 2rem);\n --cds-layout-size-height:var(--cds-layout-size-height-context);\n}\n\n.cds--layout-constraint--size__default-sm{\n --cds-layout-size-height:var(--cds-layout-size-height-context, var(--cds-layout-size-height-sm, 2rem));\n}\n\n.cds--layout-constraint--size__min-sm{\n --cds-layout-size-height-min:var(--cds-layout-size-height-sm, 2rem);\n}\n\n.cds--layout-constraint--size__max-sm{\n --cds-layout-size-height-max:var(--cds-layout-size-height-sm, 2rem);\n}\n\n.cds--layout--size-md{\n --cds-layout-size-height-context:var(--cds-layout-size-height-md, 2.5rem);\n --cds-layout-size-height:var(--cds-layout-size-height-context);\n}\n\n.cds--layout-constraint--size__default-md{\n --cds-layout-size-height:var(--cds-layout-size-height-context, var(--cds-layout-size-height-md, 2.5rem));\n}\n\n.cds--layout-constraint--size__min-md{\n --cds-layout-size-height-min:var(--cds-layout-size-height-md, 2.5rem);\n}\n\n.cds--layout-constraint--size__max-md{\n --cds-layout-size-height-max:var(--cds-layout-size-height-md, 2.5rem);\n}\n\n.cds--layout--size-lg{\n --cds-layout-size-height-context:var(--cds-layout-size-height-lg, 3rem);\n --cds-layout-size-height:var(--cds-layout-size-height-context);\n}\n\n.cds--layout-constraint--size__default-lg{\n --cds-layout-size-height:var(--cds-layout-size-height-context, var(--cds-layout-size-height-lg, 3rem));\n}\n\n.cds--layout-constraint--size__min-lg{\n --cds-layout-size-height-min:var(--cds-layout-size-height-lg, 3rem);\n}\n\n.cds--layout-constraint--size__max-lg{\n --cds-layout-size-height-max:var(--cds-layout-size-height-lg, 3rem);\n}\n\n.cds--layout--size-xl{\n --cds-layout-size-height-context:var(--cds-layout-size-height-xl, 4rem);\n --cds-layout-size-height:var(--cds-layout-size-height-context);\n}\n\n.cds--layout-constraint--size__default-xl{\n --cds-layout-size-height:var(--cds-layout-size-height-context, var(--cds-layout-size-height-xl, 4rem));\n}\n\n.cds--layout-constraint--size__min-xl{\n --cds-layout-size-height-min:var(--cds-layout-size-height-xl, 4rem);\n}\n\n.cds--layout-constraint--size__max-xl{\n --cds-layout-size-height-max:var(--cds-layout-size-height-xl, 4rem);\n}\n\n.cds--layout--size-2xl{\n --cds-layout-size-height-context:var(--cds-layout-size-height-2xl, 5rem);\n --cds-layout-size-height:var(--cds-layout-size-height-context);\n}\n\n.cds--layout-constraint--size__default-2xl{\n --cds-layout-size-height:var(--cds-layout-size-height-context, var(--cds-layout-size-height-2xl, 5rem));\n}\n\n.cds--layout-constraint--size__min-2xl{\n --cds-layout-size-height-min:var(--cds-layout-size-height-2xl, 5rem);\n}\n\n.cds--layout-constraint--size__max-2xl{\n --cds-layout-size-height-max:var(--cds-layout-size-height-2xl, 5rem);\n}\n\n.cds--layout--density-condensed{\n --cds-layout-density-padding-inline-context:var(--cds-layout-density-padding-inline-condensed, 0.5rem);\n --cds-layout-density-padding-inline:var(--cds-layout-density-padding-inline-context);\n}\n\n.cds--layout-constraint--density__default-condensed{\n --cds-layout-density-padding-inline:var(--cds-layout-density-padding-inline-context, var(--cds-layout-density-padding-inline-condensed, 0.5rem));\n}\n\n.cds--layout-constraint--density__min-condensed{\n --cds-layout-density-padding-inline-min:var(--cds-layout-density-padding-inline-condensed, 0.5rem);\n}\n\n.cds--layout-constraint--density__max-condensed{\n --cds-layout-density-padding-inline-max:var(--cds-layout-density-padding-inline-condensed, 0.5rem);\n}\n\n.cds--layout--density-normal{\n --cds-layout-density-padding-inline-context:var(--cds-layout-density-padding-inline-normal, 1rem);\n --cds-layout-density-padding-inline:var(--cds-layout-density-padding-inline-context);\n}\n\n.cds--layout-constraint--density__default-normal{\n --cds-layout-density-padding-inline:var(--cds-layout-density-padding-inline-context, var(--cds-layout-density-padding-inline-normal, 1rem));\n}\n\n.cds--layout-constraint--density__min-normal{\n --cds-layout-density-padding-inline-min:var(--cds-layout-density-padding-inline-normal, 1rem);\n}\n\n.cds--layout-constraint--density__max-normal{\n --cds-layout-density-padding-inline-max:var(--cds-layout-density-padding-inline-normal, 1rem);\n}\n\n:root{\n --cds-layout-size-height-xs:1.5rem;\n --cds-layout-size-height-sm:2rem;\n --cds-layout-size-height-md:2.5rem;\n --cds-layout-size-height-lg:3rem;\n --cds-layout-size-height-xl:4rem;\n --cds-layout-size-height-2xl:5rem;\n --cds-layout-size-height-min:0px;\n --cds-layout-size-height-max:999999999px;\n --cds-layout-density-padding-inline-condensed:0.5rem;\n --cds-layout-density-padding-inline-normal:1rem;\n --cds-layout-density-padding-inline-min:0px;\n --cds-layout-density-padding-inline-max:999999999px;\n}\n\n:host{\n block-size:100%;\n --cds-layout-size-height-xs:1.5rem;\n --cds-layout-size-height-sm:2rem;\n --cds-layout-size-height-md:2.5rem;\n --cds-layout-size-height-lg:3rem;\n --cds-layout-size-height-xl:4rem;\n --cds-layout-size-height-2xl:5rem;\n --cds-layout-size-height-min:0px;\n --cds-layout-size-height-max:999999999px;\n --cds-layout-density-padding-inline-condensed:0.5rem;\n --cds-layout-density-padding-inline-normal:1rem;\n --cds-layout-density-padding-inline-min:0px;\n --cds-layout-density-padding-inline-max:999999999px;\n}\n:host html,\n:host body,\n:host div,\n:host span,\n:host applet,\n:host object,\n:host iframe,\n:host h1,\n:host h2,\n:host h3,\n:host h4,\n:host h5,\n:host h6,\n:host p,\n:host blockquote,\n:host pre,\n:host a,\n:host abbr,\n:host acronym,\n:host address,\n:host big,\n:host cite,\n:host code,\n:host del,\n:host dfn,\n:host em,\n:host img,\n:host ins,\n:host kbd,\n:host q,\n:host s,\n:host samp,\n:host small,\n:host strike,\n:host strong,\n:host sub,\n:host sup,\n:host tt,\n:host var,\n:host b,\n:host u,\n:host i,\n:host center,\n:host dl,\n:host dt,\n:host dd,\n:host ol,\n:host ul,\n:host li,\n:host fieldset,\n:host form,\n:host label,\n:host legend,\n:host table,\n:host caption,\n:host tbody,\n:host tfoot,\n:host thead,\n:host tr,\n:host th,\n:host td,\n:host article,\n:host aside,\n:host canvas,\n:host details,\n:host embed,\n:host figure,\n:host figcaption,\n:host footer,\n:host header,\n:host hgroup,\n:host menu,\n:host nav,\n:host output,\n:host ruby,\n:host section,\n:host summary,\n:host time,\n:host mark,\n:host audio,\n:host video{\n padding:0;\n border:0;\n margin:0;\n font:inherit;\n font-feature-settings:\"liga\" 1;\n font-size:100%;\n vertical-align:baseline;\n}\n:host button,\n:host select,\n:host input,\n:host textarea{\n border-radius:0;\n font-family:inherit;\n}\n:host{\n}\n:host article,\n:host aside,\n:host details,\n:host figcaption,\n:host figure,\n:host footer,\n:host header,\n:host hgroup,\n:host menu,\n:host nav,\n:host section{\n display:block;\n}\n:host body{\n background-color:var(--cds-background, #ffffff);\n color:var(--cds-text-primary, #161616);\n line-height:1;\n}\n:host ol,\n:host ul{\n list-style:none;\n}\n:host blockquote,\n:host q{\n quotes:none;\n}\n:host blockquote::before,\n:host blockquote::after,\n:host q::before,\n:host q::after{\n content:none;\n}\n:host table{\n border-collapse:collapse;\n border-spacing:0;\n}\n:host html{\n box-sizing:border-box;\n}\n:host *,\n:host *::before,\n:host *::after{\n box-sizing:inherit;\n}\n:host html{\n font-size:100%;\n}\n:host body{\n font-weight:400;\n font-family:'IBM Plex Sans', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', sans-serif;\n -moz-osx-font-smoothing:grayscale;\n -webkit-font-smoothing:antialiased;\n text-rendering:optimizeLegibility;\n}\n:host code{\n font-family:'IBM Plex Mono', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', monospace;\n}\n:host strong{\n font-weight:600;\n}\n@media screen and (-ms-high-contrast: active){\n :host svg{\n fill:ButtonText;\n }\n}\n:host h1{\n font-size:var(--cds-heading-06-font-size, 2.625rem);\n font-weight:var(--cds-heading-06-font-weight, 300);\n line-height:var(--cds-heading-06-line-height, 1.199);\n letter-spacing:var(--cds-heading-06-letter-spacing, 0);\n}\n:host h2{\n font-size:var(--cds-heading-05-font-size, 2rem);\n font-weight:var(--cds-heading-05-font-weight, 400);\n line-height:var(--cds-heading-05-line-height, 1.25);\n letter-spacing:var(--cds-heading-05-letter-spacing, 0);\n}\n:host h3{\n font-size:var(--cds-heading-04-font-size, 1.75rem);\n font-weight:var(--cds-heading-04-font-weight, 400);\n line-height:var(--cds-heading-04-line-height, 1.28572);\n letter-spacing:var(--cds-heading-04-letter-spacing, 0);\n}\n:host h4{\n font-size:var(--cds-heading-03-font-size, 1.25rem);\n font-weight:var(--cds-heading-03-font-weight, 400);\n line-height:var(--cds-heading-03-line-height, 1.4);\n letter-spacing:var(--cds-heading-03-letter-spacing, 0);\n}\n:host h5{\n font-size:var(--cds-heading-02-font-size, 1rem);\n font-weight:var(--cds-heading-02-font-weight, 600);\n line-height:var(--cds-heading-02-line-height, 1.5);\n letter-spacing:var(--cds-heading-02-letter-spacing, 0);\n}\n:host h6{\n font-size:var(--cds-heading-01-font-size, 0.875rem);\n font-weight:var(--cds-heading-01-font-weight, 600);\n line-height:var(--cds-heading-01-line-height, 1.42857);\n letter-spacing:var(--cds-heading-01-letter-spacing, 0.16px);\n}\n:host p{\n font-size:var(--cds-body-02-font-size, 1rem);\n font-weight:var(--cds-body-02-font-weight, 400);\n line-height:var(--cds-body-02-line-height, 1.5);\n letter-spacing:var(--cds-body-02-letter-spacing, 0);\n}\n:host a{\n color:var(--cds-link-primary, #0062fe);\n}\n:host em{\n font-style:italic;\n}\n:host{\n}\n@keyframes cds-aichat-fade-in{\n 0%{\n opacity:0;\n }\n 100%{\n opacity:1;\n }\n}\n@keyframes cds-aichat-fade-in-up{\n 0%{\n opacity:0;\n transform:translateY(32px);\n }\n 50%{\n transform:translateY(0);\n }\n 100%{\n opacity:1;\n }\n}\n@keyframes cds-aichat-fade-out{\n 0%{\n opacity:1;\n }\n 100%{\n opacity:0;\n }\n}\n@keyframes cds-aichat-fade-in-img{\n 0%{\n filter:grayscale(100%);\n opacity:0;\n }\n 100%{\n filter:grayscale(0%);\n opacity:1;\n }\n}\n@keyframes cds-aichat-slide-in-from-right{\n from{\n inset-inline-start:100%;\n }\n to{\n inset-inline-start:0;\n }\n}\n@keyframes cds-aichat-slide-out-to-right{\n from{\n inset-inline-start:0;\n }\n to{\n inset-inline-start:100%;\n }\n}\n@keyframes cds-aichat-slide-out-to-top{\n from{\n inset-block-start:0;\n }\n to{\n inset-block-start:-100%;\n }\n}\n@keyframes cds-aichat-slide-in-from-left{\n from{\n inset-inline-end:100%;\n }\n to{\n inset-inline-end:0;\n }\n}\n@keyframes cds-aichat-slide-out-to-left{\n from{\n inset-inline-end:0;\n }\n to{\n inset-inline-end:100%;\n }\n}\n@keyframes cds-aichat-slide-in-from-bottom{\n from{\n inset-block-start:100%;\n }\n to{\n inset-block-start:0;\n }\n}\n@keyframes cds-aichat-slide-out-to-bottom{\n from{\n inset-block-start:0;\n }\n to{\n inset-block-start:100%;\n }\n}\n@keyframes cds-aichat-widget-in{\n 0%{\n inset-block-end:0;\n opacity:0;\n }\n 100%{\n inset-block-end:var(--cds-aichat-bottom-position, 3rem);\n opacity:1;\n }\n}\n@keyframes cds-aichat-widget-in-mobile{\n 0%{\n opacity:0;\n }\n 100%{\n opacity:1;\n }\n}\n@keyframes cds-aichat-widget-out{\n 0%{\n opacity:1;\n }\n 100%{\n opacity:0;\n }\n}\n@keyframes cds-aichat-fade-in-up-back-button{\n 0%{\n opacity:0;\n transform:translate(-50%, calc(-100% - 1rem + 2rem));\n }\n 15%{\n opacity:0;\n }\n 50%{\n transform:translate(-50%, calc(-100% - 1rem));\n }\n 100%{\n opacity:1;\n }\n}\n@keyframes cds-aichat-widget-in{\n 0%{\n inset-block-end:calc(var(--cds-aichat-bottom-position, 3rem) - 2rem);\n opacity:0;\n }\n 100%{\n inset-block-end:var(--cds-aichat-bottom-position, 3rem);\n opacity:1;\n }\n}\n@keyframes cds-aichat-widget-out{\n 0%{\n opacity:1;\n }\n 100%{\n opacity:0;\n }\n}\n:host{\n}\n:host .cds-aichat--container--render{\n --cds-aichat-max-height:640px;\n --cds-aichat-min-height:max(\n 150px,\n calc(min(256px, 100vh) - var(--cds-aichat-bottom-position))\n );\n --cds-aichat-messages-max-width:672px;\n --cds-aichat-messages-min-width:320px;\n --cds-aichat-workspace-min-width:480px;\n --cds-aichat-bottom-position:3rem;\n --cds-aichat-right-position:2rem;\n --cds-aichat-top-position:auto;\n --cds-aichat-left-position:auto;\n --cds-aichat-z-index:99999;\n --cds-aichat-border-radius:0;\n --cds-aichat-card-border-radius:0.5rem;\n --cds-aichat-card-max-width:424px;\n --cds-aichat-width:min(380px, var(--cds-aichat-max-width));\n --cds-aichat-height:calc(100vh - (2 * 2rem));\n --cds-aichat-launcher-default-size:56px;\n --cds-aichat-launcher-position-bottom:3rem;\n --cds-aichat-launcher-position-right:2rem;\n --cds-aichat-launcher-extended-width:280px;\n --cds-aichat-launcher-color-background:var(--cds-button-primary, #0f62fe);\n --cds-aichat-launcher-color-avatar:var(--cds-text-on-color, #ffffff);\n --cds-aichat-launcher-color-background-hover:var(--cds-button-primary-hover, #0050e6);\n --cds-aichat-launcher-color-background-active:var(--cds-button-primary-active, #002d9c);\n --cds-aichat-launcher-color-focus-border:var(--cds-text-on-color, #ffffff);\n --cds-aichat-launcher-mobile-color-text:var(--cds-text-on-color, #ffffff);\n --cds-aichat-launcher-expanded-message-color-text:var(--cds-text-on-color, #ffffff);\n --cds-aichat-launcher-expanded-message-color-background:var(--cds-button-primary, #0f62fe);\n --cds-aichat-launcher-expanded-message-color-background-hover:var(--cds-button-primary-hover, #0050e6);\n --cds-aichat-launcher-expanded-message-color-background-active:var(--cds-button-primary-active, #002d9c);\n --cds-aichat-launcher-expanded-message-color-focus-border:var(--cds-text-on-color, #ffffff);\n --cds-aichat-unread-indicator-color-background:var(--cds-support-error, #da1e28);\n --cds-aichat-unread-indicator-color-text:var(--cds-text-on-color, #ffffff);\n}\n:host .cds-aichat--container--render .cds-aichat--widget--rounded{\n --cds-aichat-border-radius:0.5rem;\n}\n:host .cds-aichat--container--render.cds-aichat--is-phone{\n --cds-aichat-width:calc(100vw - 4px);\n --cds-aichat-height:calc(100vh - 4px);\n --cds-aichat-left-position:2;\n --cds-aichat-top-position:2;\n --cds-aichat-max-width:auto;\n --cds-aichat-max-height:auto;\n --cds-aichat-min-height:auto;\n --cds-aichat-right-position:auto;\n}\n@supports (height: 100dvh){\n :host .cds-aichat--container--render.cds-aichat--is-phone{\n --cds-aichat-width:calc(100dvw - 4px);\n --cds-aichat-height:calc(100dvh - 4px);\n }\n}\n:host{\n}\n:host .cds-aichat--overlay-panel--catastrophic_panel .cds-aichat--overlay-panel{\n display:flex;\n flex-direction:column;\n}\n:host .cds-aichat--catastrophic-error{\n display:flex;\n flex:1;\n flex-direction:column;\n justify-content:center;\n border-radius:0.5rem;\n}\n:host .cds-aichat--catastrophic-error .cds-aichat--catastrophic-error__error-text-container > svg{\n margin-inline-start:calc(2rem * -1);\n max-block-size:128px;\n max-inline-size:128px;\n padding-inline-start:0.25rem;\n}\n:host .cds-aichat--catastrophic-error__error-text-container{\n margin-block-start:1.5rem;\n margin-inline:2rem;\n}\n:host .cds-aichat--catastrophic-error__error-heading{\n font-size:var(--cds-heading-04-font-size, 1.75rem);\n font-weight:var(--cds-heading-04-font-weight, 400);\n line-height:var(--cds-heading-04-line-height, 1.28572);\n letter-spacing:var(--cds-heading-04-letter-spacing, 0);\n}\n:host .cds-aichat--catastrophic-error__error-body{\n color:var(--cds-text-secondary, #525252);\n font-size:var(--cds-body-01-font-size, 0.875rem);\n font-weight:var(--cds-body-01-font-weight, 400);\n line-height:var(--cds-body-01-line-height, 1.42857);\n letter-spacing:var(--cds-body-01-letter-spacing, 0.16px);\n margin-block-start:1rem;\n}\n:host .cds-aichat--catastrophic-error__restart-button{\n display:block;\n margin-block-start:1rem;\n}\n:host{\n}\n:host .cds-aichat--disclaimer__content.cds-aichat--panel-content,\n:host .cds-aichat--wide-width .cds-aichat--disclaimer__content.cds-aichat--panel-content{\n box-sizing:border-box;\n padding:0 2rem 0 2rem;\n color:var(--cds-text-primary, #161616);\n min-block-size:100%;\n}\n:host .cds-aichat--disclaimer__icon{\n padding:1.5rem 0 1.5rem 0;\n margin-inline-start:calc(1.5rem * -1);\n}\n:host .cds-aichat--disclaimer__icon > svg{\n block-size:128px;\n inline-size:128px;\n}\n:host .cds-aichat--disclaimer__title{\n display:block;\n font-size:var(--cds-heading-04-font-size, 1.75rem);\n font-weight:var(--cds-heading-04-font-weight, 400);\n line-height:var(--cds-heading-04-line-height, 1.28572);\n letter-spacing:var(--cds-heading-04-letter-spacing, 0);\n inline-size:100%;\n padding-block-end:1rem;\n}\n:host .cds-aichat--disclaimer__description{\n font-size:var(--cds-body-01-font-size, 0.875rem);\n font-weight:var(--cds-body-01-font-weight, 400);\n line-height:var(--cds-body-01-line-height, 1.42857);\n letter-spacing:var(--cds-body-01-letter-spacing, 0.16px);\n padding-block-end:1rem;\n}\n:host .cds-aichat--disclaimer__footer{\n display:flex;\n justify-content:flex-end;\n}\n:host .cds-aichat--disclaimer__accept-button{\n margin-inline-start:auto;\n}\n:host .cds-aichat--wide-width cds-button.cds-aichat--disclaimer__accept-button{\n inline-size:288px;\n}\n:host .cds-aichat--narrow-width .cds-aichat--disclaimer__footer,\n:host .cds-aichat--standard-width .cds-aichat--disclaimer__footer{\n justify-content:stretch;\n}\n:host .cds-aichat--narrow-width cds-button.cds-aichat--disclaimer__accept-button,\n:host .cds-aichat--standard-width cds-button.cds-aichat--disclaimer__accept-button{\n inline-size:100%;\n margin-inline-start:0;\n max-inline-size:unset;\n}\n:host{\n}\n:host .cds-aichat--hydrating-container{\n display:flex;\n overflow:hidden;\n flex-direction:column;\n block-size:100%;\n}\n:host .cds-aichat--hydrating{\n display:flex;\n align-items:center;\n justify-content:center;\n block-size:100%;\n}\n:host .cds-aichat--hydrating .cds-aichat--loading-spinner{\n block-size:48px;\n inline-size:48px;\n margin-block-start:-64px;\n}\n:host .cds-aichat--hydrating .cds-aichat--loading-spinner path{\n stroke:var(--cds-interactive, #0f62fe);\n}\n:host{\n}\n:host .cds-aichat--i-frame-panel{\n position:relative;\n display:flex;\n flex-direction:column;\n background-color:var(--cds-chat-shell-background, #ffffff);\n}\n:host .cds-aichat--i-frame-panel__content{\n position:relative;\n display:flex;\n flex:1;\n}\n:host .cds-aichat--i-frame-panel__content .cds-aichat--i-frame-component__status-container{\n background-color:var(--cds-chat-shell-background, #ffffff);\n}\n:host .cds-aichat--i-frame-panel__content .cds-aichat--i-frame-component__wrapper{\n flex:1;\n block-size:unset;\n}\n:host{\n}\n:host .cds-aichat--i-frame-panel,\n:host .cds-aichat--view-source-panel,\n:host .cds-aichat--custom-panel{\n box-sizing:border-box;\n block-size:100%;\n border-end-end-radius:var(--cds-aichat-rounded-modifier-radius-end-end, 0);\n border-end-start-radius:var(--cds-aichat-rounded-modifier-radius-end-start, 0);\n border-start-end-radius:var(--cds-aichat-rounded-modifier-radius-start-end, 0);\n border-start-start-radius:var(--cds-aichat-rounded-modifier-radius-start-start, 0);\n}\n:host{\n}\n:host .cds-aichat--confirm-modal{\n position:absolute;\n z-index:100;\n display:flex;\n flex-direction:column;\n justify-content:center;\n background-color:var(--cds-overlay, rgba(0, 0, 0, 0.6));\n block-size:100%;\n font-size:var(--cds-body-01-font-size, 0.875rem);\n font-weight:var(--cds-body-01-font-weight, 400);\n line-height:var(--cds-body-01-line-height, 1.42857);\n letter-spacing:var(--cds-body-01-letter-spacing, 0.16px);\n font-family:var(--cds-aichat-font-family, \"IBM Plex Sans\", \"Helvetica Neue\", arial, sans-serif);\n inline-size:100%;\n inset-block-start:0;\n}\n:host .cds-aichat--confirm-modal .cds-aichat--confirm-modal__container{\n margin:auto;\n background-color:var(--cds-background, #ffffff);\n max-inline-size:min(var(--cds-aichat-messages-max-width, 672px) - 1rem * 2, 512px);\n}\n:host .cds-aichat--confirm-modal .cds-aichat--confirm-modal__title{\n padding:1rem;\n font-size:var(--cds-heading-compact-01-font-size, 0.875rem);\n font-weight:var(--cds-heading-compact-01-font-weight, 600);\n line-height:var(--cds-heading-compact-01-line-height, 1.28572);\n letter-spacing:var(--cds-heading-compact-01-letter-spacing, 0.16px);\n}\n:host .cds-aichat--confirm-modal .cds-aichat--confirm-modal__message{\n padding:0 1rem 3rem 1rem;\n}\n:host .cds-aichat--confirm-modal .cds-aichat--confirm-modal__no-button{\n margin-inline-end:1px;\n}\n:host .cds-aichat--confirm-modal .cds-aichat--confirm-modal__button-container{\n display:flex;\n border-block-start:solid 1px var(--cds-layer-03, #f4f4f4);\n}\n:host .cds-aichat--confirm-modal .cds-aichat--confirm-modal__button-container *{\n flex:1;\n}\n:host{\n}\n:host .cds-aichat--modal-host{\n position:fixed;\n z-index:calc(var(--cds-aichat-z-index, 99999) + 1);\n display:none;\n block-size:100vh;\n inline-size:100vw;\n inset-block-start:0;\n inset-inline-start:0;\n pointer-events:none;\n}\n:host{\n}\n:host .cds-aichat--modal-host:has(> *){\n display:block;\n pointer-events:auto;\n}\n:host .cds-aichat--modal-host > *{\n pointer-events:auto;\n}\n:host{\n}\n:host .cds-aichat--icon-holder{\n display:flex;\n align-items:center;\n justify-content:center;\n block-size:100%;\n inline-size:100%;\n}\n:host{\n}\n:host .cds-aichat--visually-hidden{\n position:absolute;\n overflow:hidden;\n block-size:1px;\n clip:rect(0 0 0 0);\n clip-path:inset(50%);\n inline-size:1px;\n inset-block-start:0;\n white-space:nowrap;\n}\n:host{\n}\n:host .cds-aichat--widget--max-width .cds-aichat--home-screen__home-screen-bottom-element,\n:host .cds-aichat--home-screen{\n margin:auto;\n max-inline-size:var(--cds-aichat-messages-max-width, 672px);\n}\n:host .cds-aichat--home-screen{\n position:relative;\n display:flex;\n flex-direction:column;\n block-size:100%;\n}\n:host{\n}\n:host .cds-aichat--home-screen__content{\n display:flex;\n overflow:hidden;\n flex:1;\n flex-direction:column;\n}\n:host .cds-aichat--home-screen__body-wrapper{\n position:relative;\n display:flex;\n overflow:auto;\n flex:1;\n flex-direction:column;\n}\n:host .cds-aichat--home-screen__body{\n display:flex;\n flex-direction:column;\n justify-content:center;\n padding:0 1rem 2rem;\n}\n:host{\n}\n:host .cds-aichat--home-screen__body--custom-content{\n flex-grow:1;\n flex-shrink:0;\n min-block-size:90%;\n}\n:host .cds-aichat--home-screen__body--custom-content > *{\n flex-shrink:0;\n}\n:host{\n}\n:host .cds-aichat--home-screen__body--no-custom-content{\n flex:1;\n padding-block-end:0;\n}\n:host .cds-aichat--home-screen__greeting{\n color:var(--cds-text-primary, #161616);\n font-size:var(--cds-heading-04-font-size, 1.75rem);\n font-weight:var(--cds-heading-04-font-weight, 400);\n line-height:var(--cds-heading-04-line-height, 1.28572);\n letter-spacing:var(--cds-heading-04-letter-spacing, 0);\n margin-block-start:2rem;\n}\n@media screen and (prefers-reduced-motion: no-preference){\n :host .cds-aichat--home-screen.cds-aichat--home-screen--hydration-complete .cds-aichat--home-screen__greeting{\n animation:400ms cubic-bezier(0, 0, 0.3, 1) cds-aichat-fade-in-up 70ms both;\n }\n}\n:host .cds-aichat--home-screen__starters{\n margin-block-start:2rem;\n}\n:host{\n}\n:host .cds-aichat--home-screen__body--no-custom-content .cds-aichat--home-screen__starters{\n margin-block-end:2rem;\n}\n:host{\n}\n:host .cds-aichat--home-screen__body--custom-content-only{\n flex-grow:unset;\n flex-shrink:unset;\n padding:0;\n margin:0;\n min-block-size:unset;\n}\n:host .cds-aichat--home-screen__starter-wrapper{\n display:block;\n margin-block-end:0.75rem;\n}\n:host .cds-aichat--home-screen__starter-wrapper:last-child{\n margin-block-end:0;\n}\n:host cds-aichat-button.cds-aichat--home-screen__starter{\n display:block;\n max-inline-size:100%;\n will-change:opacity;\n word-break:break-word;\n}\n:host .cds-aichat--home-screen__starter-wrapper:nth-child(1){\n --cds-aichat-homescreen-starter-index:1;\n}\n:host .cds-aichat--home-screen__starter-wrapper:nth-child(2){\n --cds-aichat-homescreen-starter-index:2;\n}\n:host .cds-aichat--home-screen__starter-wrapper:nth-child(3){\n --cds-aichat-homescreen-starter-index:3;\n}\n:host .cds-aichat--home-screen__starter-wrapper:nth-child(4){\n --cds-aichat-homescreen-starter-index:4;\n}\n:host .cds-aichat--home-screen__starter-wrapper:nth-child(5){\n --cds-aichat-homescreen-starter-index:5;\n}\n@media screen and (prefers-reduced-motion: no-preference){\n :host .cds-aichat--home-screen.cds-aichat--home-screen--hydration-complete .cds-aichat--home-screen__starter-wrapper{\n animation:400ms cubic-bezier(0, 0, 0.3, 1) cds-aichat-fade-in-up calc(var(--cds-aichat-homescreen-starter-index) * 120ms) both;\n }\n}\n@media screen and (prefers-reduced-motion: no-preference){\n :host .cds-aichat--home-screen.cds-aichat--home-screen--hydration-complete .cds-aichat--home-screen__starters--animate-group .cds-aichat--home-screen__starter-wrapper{\n animation:400ms cubic-bezier(0, 0, 0.3, 1) cds-aichat-fade-in-up 120ms both;\n }\n}\n@media screen and (prefers-reduced-motion: no-preference){\n :host .cds-aichat--home-screen.cds-aichat--home-screen--hydration-complete .cds-aichat--home-screen__custom-content--animation{\n animation:400ms cubic-bezier(0, 0, 0.3, 1) cds-aichat-fade-in-up 330ms both;\n }\n}\n:host .cds-aichat--home-screen__back-button{\n display:block;\n margin-block-end:1rem;\n margin-block-start:auto;\n margin-inline:auto;\n}\n:host .cds-aichat--home-screen__back-button .cds-aichat--home-screen__back-button-content{\n display:flex;\n}\n:host .cds-aichat--home-screen__back-button .cds-aichat--home-screen__back-button-content .cds-aichat--home-screen__back-button-content-text{\n margin-inline-end:0.5rem;\n white-space:nowrap;\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--home-screen__back-button .cds-aichat--home-screen__back-button-content .cds-aichat--home-screen__back-button-content-text{\n margin-inline:0.5rem unset;\n}\n@keyframes cds-aichat-fade-in-up-back-button{\n 0%{\n opacity:0;\n transform:translateY(2rem);\n }\n 15%{\n opacity:0;\n }\n 50%{\n transform:translateY(0);\n }\n 100%{\n opacity:1;\n }\n}\n@media screen and (prefers-reduced-motion: no-preference){\n :host .cds-aichat--home-screen.cds-aichat--home-screen--hydration-complete .cds-aichat--home-screen__back-button{\n animation:400ms cubic-bezier(0, 0, 0.3, 1) cds-aichat-fade-in-up-back-button 350ms both;\n }\n}\n:host{\n}\n:host .cds--layout--size-xs{\n --cds-layout-size-height-context:var(--cds-layout-size-height-xs, 1.5rem);\n --cds-layout-size-height:var(--cds-layout-size-height-context);\n}\n:host .cds--layout-constraint--size__default-xs{\n --cds-layout-size-height:var(--cds-layout-size-height-context, var(--cds-layout-size-height-xs, 1.5rem));\n}\n:host .cds--layout-constraint--size__min-xs{\n --cds-layout-size-height-min:var(--cds-layout-size-height-xs, 1.5rem);\n}\n:host .cds--layout-constraint--size__max-xs{\n --cds-layout-size-height-max:var(--cds-layout-size-height-xs, 1.5rem);\n}\n:host .cds--layout--size-sm{\n --cds-layout-size-height-context:var(--cds-layout-size-height-sm, 2rem);\n --cds-layout-size-height:var(--cds-layout-size-height-context);\n}\n:host .cds--layout-constraint--size__default-sm{\n --cds-layout-size-height:var(--cds-layout-size-height-context, var(--cds-layout-size-height-sm, 2rem));\n}\n:host .cds--layout-constraint--size__min-sm{\n --cds-layout-size-height-min:var(--cds-layout-size-height-sm, 2rem);\n}\n:host .cds--layout-constraint--size__max-sm{\n --cds-layout-size-height-max:var(--cds-layout-size-height-sm, 2rem);\n}\n:host .cds--layout--size-md{\n --cds-layout-size-height-context:var(--cds-layout-size-height-md, 2.5rem);\n --cds-layout-size-height:var(--cds-layout-size-height-context);\n}\n:host .cds--layout-constraint--size__default-md{\n --cds-layout-size-height:var(--cds-layout-size-height-context, var(--cds-layout-size-height-md, 2.5rem));\n}\n:host .cds--layout-constraint--size__min-md{\n --cds-layout-size-height-min:var(--cds-layout-size-height-md, 2.5rem);\n}\n:host .cds--layout-constraint--size__max-md{\n --cds-layout-size-height-max:var(--cds-layout-size-height-md, 2.5rem);\n}\n:host .cds--layout--size-lg{\n --cds-layout-size-height-context:var(--cds-layout-size-height-lg, 3rem);\n --cds-layout-size-height:var(--cds-layout-size-height-context);\n}\n:host .cds--layout-constraint--size__default-lg{\n --cds-layout-size-height:var(--cds-layout-size-height-context, var(--cds-layout-size-height-lg, 3rem));\n}\n:host .cds--layout-constraint--size__min-lg{\n --cds-layout-size-height-min:var(--cds-layout-size-height-lg, 3rem);\n}\n:host .cds--layout-constraint--size__max-lg{\n --cds-layout-size-height-max:var(--cds-layout-size-height-lg, 3rem);\n}\n:host .cds--layout--size-xl{\n --cds-layout-size-height-context:var(--cds-layout-size-height-xl, 4rem);\n --cds-layout-size-height:var(--cds-layout-size-height-context);\n}\n:host .cds--layout-constraint--size__default-xl{\n --cds-layout-size-height:var(--cds-layout-size-height-context, var(--cds-layout-size-height-xl, 4rem));\n}\n:host .cds--layout-constraint--size__min-xl{\n --cds-layout-size-height-min:var(--cds-layout-size-height-xl, 4rem);\n}\n:host .cds--layout-constraint--size__max-xl{\n --cds-layout-size-height-max:var(--cds-layout-size-height-xl, 4rem);\n}\n:host .cds--layout--size-2xl{\n --cds-layout-size-height-context:var(--cds-layout-size-height-2xl, 5rem);\n --cds-layout-size-height:var(--cds-layout-size-height-context);\n}\n:host .cds--layout-constraint--size__default-2xl{\n --cds-layout-size-height:var(--cds-layout-size-height-context, var(--cds-layout-size-height-2xl, 5rem));\n}\n:host .cds--layout-constraint--size__min-2xl{\n --cds-layout-size-height-min:var(--cds-layout-size-height-2xl, 5rem);\n}\n:host .cds--layout-constraint--size__max-2xl{\n --cds-layout-size-height-max:var(--cds-layout-size-height-2xl, 5rem);\n}\n:host .cds--layout--density-condensed{\n --cds-layout-density-padding-inline-context:var(--cds-layout-density-padding-inline-condensed, 0.5rem);\n --cds-layout-density-padding-inline:var(--cds-layout-density-padding-inline-context);\n}\n:host .cds--layout-constraint--density__default-condensed{\n --cds-layout-density-padding-inline:var(--cds-layout-density-padding-inline-context, var(--cds-layout-density-padding-inline-condensed, 0.5rem));\n}\n:host .cds--layout-constraint--density__min-condensed{\n --cds-layout-density-padding-inline-min:var(--cds-layout-density-padding-inline-condensed, 0.5rem);\n}\n:host .cds--layout-constraint--density__max-condensed{\n --cds-layout-density-padding-inline-max:var(--cds-layout-density-padding-inline-condensed, 0.5rem);\n}\n:host .cds--layout--density-normal{\n --cds-layout-density-padding-inline-context:var(--cds-layout-density-padding-inline-normal, 1rem);\n --cds-layout-density-padding-inline:var(--cds-layout-density-padding-inline-context);\n}\n:host .cds--layout-constraint--density__default-normal{\n --cds-layout-density-padding-inline:var(--cds-layout-density-padding-inline-context, var(--cds-layout-density-padding-inline-normal, 1rem));\n}\n:host .cds--layout-constraint--density__min-normal{\n --cds-layout-density-padding-inline-min:var(--cds-layout-density-padding-inline-normal, 1rem);\n}\n:host .cds--layout-constraint--density__max-normal{\n --cds-layout-density-padding-inline-max:var(--cds-layout-density-padding-inline-normal, 1rem);\n}\n:host :root{\n --cds-layout-size-height-xs:1.5rem;\n --cds-layout-size-height-sm:2rem;\n --cds-layout-size-height-md:2.5rem;\n --cds-layout-size-height-lg:3rem;\n --cds-layout-size-height-xl:4rem;\n --cds-layout-size-height-2xl:5rem;\n --cds-layout-size-height-min:0px;\n --cds-layout-size-height-max:999999999px;\n --cds-layout-density-padding-inline-condensed:0.5rem;\n --cds-layout-density-padding-inline-normal:1rem;\n --cds-layout-density-padding-inline-min:0px;\n --cds-layout-density-padding-inline-max:999999999px;\n}\n:host{\n}\n:host :root{\n --cds-layer:var(--cds-layer-01, #f4f4f4);\n --cds-layer-active:var(--cds-layer-active-01, #c6c6c6);\n --cds-layer-background:var(--cds-layer-background-01, #ffffff);\n --cds-layer-hover:var(--cds-layer-hover-01, #e8e8e8);\n --cds-layer-selected:var(--cds-layer-selected-01, #e0e0e0);\n --cds-layer-selected-hover:var(--cds-layer-selected-hover-01, #d1d1d1);\n --cds-layer-accent:var(--cds-layer-accent-01, #e0e0e0);\n --cds-layer-accent-hover:var(--cds-layer-accent-hover-01, #d1d1d1);\n --cds-layer-accent-active:var(--cds-layer-accent-active-01, #a8a8a8);\n --cds-field:var(--cds-field-01, #f4f4f4);\n --cds-field-hover:var(--cds-field-hover-01, #e8e8e8);\n --cds-border-subtle:var(--cds-border-subtle-00, #e0e0e0);\n --cds-border-subtle-selected:var(--cds-border-subtle-selected-01, #c6c6c6);\n --cds-border-strong:var(--cds-border-strong-01, #8d8d8d);\n --cds-border-tile:var(--cds-border-tile-01, #c6c6c6);\n}\n:host .cds--layer-one{\n --cds-layer:var(--cds-layer-01, #f4f4f4);\n --cds-layer-active:var(--cds-layer-active-01, #c6c6c6);\n --cds-layer-background:var(--cds-layer-background-01, #ffffff);\n --cds-layer-hover:var(--cds-layer-hover-01, #e8e8e8);\n --cds-layer-selected:var(--cds-layer-selected-01, #e0e0e0);\n --cds-layer-selected-hover:var(--cds-layer-selected-hover-01, #d1d1d1);\n --cds-layer-accent:var(--cds-layer-accent-01, #e0e0e0);\n --cds-layer-accent-hover:var(--cds-layer-accent-hover-01, #d1d1d1);\n --cds-layer-accent-active:var(--cds-layer-accent-active-01, #a8a8a8);\n --cds-field:var(--cds-field-01, #f4f4f4);\n --cds-field-hover:var(--cds-field-hover-01, #e8e8e8);\n --cds-border-subtle:var(--cds-border-subtle-00, #e0e0e0);\n --cds-border-subtle-selected:var(--cds-border-subtle-selected-01, #c6c6c6);\n --cds-border-strong:var(--cds-border-strong-01, #8d8d8d);\n --cds-border-tile:var(--cds-border-tile-01, #c6c6c6);\n}\n:host .cds--layer-two{\n --cds-layer:var(--cds-layer-02, #ffffff);\n --cds-layer-active:var(--cds-layer-active-02, #c6c6c6);\n --cds-layer-background:var(--cds-layer-background-02, #f4f4f4);\n --cds-layer-hover:var(--cds-layer-hover-02, #e8e8e8);\n --cds-layer-selected:var(--cds-layer-selected-02, #e0e0e0);\n --cds-layer-selected-hover:var(--cds-layer-selected-hover-02, #d1d1d1);\n --cds-layer-accent:var(--cds-layer-accent-02, #e0e0e0);\n --cds-layer-accent-hover:var(--cds-layer-accent-hover-02, #d1d1d1);\n --cds-layer-accent-active:var(--cds-layer-accent-active-02, #a8a8a8);\n --cds-field:var(--cds-field-02, #ffffff);\n --cds-field-hover:var(--cds-field-hover-02, #e8e8e8);\n --cds-border-subtle:var(--cds-border-subtle-01, #c6c6c6);\n --cds-border-subtle-selected:var(--cds-border-subtle-selected-02, #c6c6c6);\n --cds-border-strong:var(--cds-border-strong-02, #8d8d8d);\n --cds-border-tile:var(--cds-border-tile-02, #a8a8a8);\n}\n:host .cds--layer-three{\n --cds-layer:var(--cds-layer-03, #f4f4f4);\n --cds-layer-active:var(--cds-layer-active-03, #c6c6c6);\n --cds-layer-background:var(--cds-layer-background-03, #ffffff);\n --cds-layer-hover:var(--cds-layer-hover-03, #e8e8e8);\n --cds-layer-selected:var(--cds-layer-selected-03, #e0e0e0);\n --cds-layer-selected-hover:var(--cds-layer-selected-hover-03, #d1d1d1);\n --cds-layer-accent:var(--cds-layer-accent-03, #e0e0e0);\n --cds-layer-accent-hover:var(--cds-layer-accent-hover-03, #d1d1d1);\n --cds-layer-accent-active:var(--cds-layer-accent-active-03, #a8a8a8);\n --cds-field:var(--cds-field-03, #f4f4f4);\n --cds-field-hover:var(--cds-field-hover-03, #e8e8e8);\n --cds-border-subtle:var(--cds-border-subtle-02, #e0e0e0);\n --cds-border-subtle-selected:var(--cds-border-subtle-selected-03, #c6c6c6);\n --cds-border-strong:var(--cds-border-strong-03, #8d8d8d);\n --cds-border-tile:var(--cds-border-tile-03, #c6c6c6);\n}\n:host .cds--layer-one.cds--layer__with-background{\n background-color:var(--cds-layer-background);\n}\n:host .cds--layer-two.cds--layer__with-background{\n background-color:var(--cds-layer-background);\n}\n:host .cds--layer-three.cds--layer__with-background{\n background-color:var(--cds-layer-background);\n}\n@keyframes cds--hide-feedback{\n 0%{\n opacity:1;\n visibility:inherit;\n }\n 100%{\n opacity:0;\n visibility:hidden;\n }\n}\n@keyframes cds--show-feedback{\n 0%{\n opacity:0;\n visibility:hidden;\n }\n 100%{\n opacity:1;\n visibility:inherit;\n }\n}\n@keyframes cds--skeleton{\n 0%{\n opacity:0.3;\n transform:scaleX(0);\n transform-origin:left;\n }\n 20%{\n opacity:1;\n transform:scaleX(1);\n transform-origin:left;\n }\n 28%{\n transform:scaleX(1);\n transform-origin:right;\n }\n 51%{\n transform:scaleX(0);\n transform-origin:right;\n }\n 58%{\n transform:scaleX(0);\n transform-origin:right;\n }\n 82%{\n transform:scaleX(1);\n transform-origin:right;\n }\n 83%{\n transform:scaleX(1);\n transform-origin:left;\n }\n 96%{\n transform:scaleX(0);\n transform-origin:left;\n }\n 100%{\n opacity:0.3;\n transform:scaleX(0);\n transform-origin:left;\n }\n}\n:host .cds--assistive-text,\n:host .cds--visually-hidden{\n position:absolute;\n overflow:hidden;\n padding:0;\n border:0;\n margin:-1px;\n block-size:1px;\n clip:rect(0, 0, 0, 0);\n inline-size:1px;\n visibility:inherit;\n white-space:nowrap;\n}\n:host .cds--popover-container{\n display:inline-block;\n}\n:host .cds--popover-container:not(.cds--popover--auto-align){\n position:relative;\n}\n:host .cds--popover--high-contrast .cds--popover{\n --cds-popover-background-color:var(--cds-background-inverse, #393939);\n --cds-popover-text-color:var(--cds-text-inverse, #ffffff);\n}\n:host .cds--popover--drop-shadow .cds--popover{\n filter:var(--cds-popover-drop-shadow, drop-shadow(0 0.125rem 0.125rem rgba(0, 0, 0, 0.2)));\n}\n:host .cds--popover--border > .cds--popover > .cds--popover-content{\n outline:1px solid var(--cds-popover-border-color, var(--cds-border-subtle));\n outline-offset:-1px;\n}\n:host .cds--popover--caret{\n --cds-popover-offset:0.625rem;\n}\n:host .cds--popover{\n position:absolute;\n z-index:6000;\n inset:0;\n pointer-events:none;\n}\n:host .cds--popover-content{\n --cds-layout-size-height-sm:2rem;\n}\n:host .cds--popover-content.cds--layout--size-sm, :host .cds--layout--size-sm :where(.cds--popover-content){\n --cds-layout-size-height:var(--cds-layout-size-height-sm);\n}\n:host .cds--popover-content{\n --cds-layout-size-height-md:2.5rem;\n}\n:host .cds--popover-content.cds--layout--size-md, :host .cds--layout--size-md :where(.cds--popover-content){\n --cds-layout-size-height:var(--cds-layout-size-height-md);\n}\n:host .cds--popover-content{\n --cds-layout-size-height-lg:3rem;\n}\n:host .cds--popover-content.cds--layout--size-lg, :host .cds--layout--size-lg :where(.cds--popover-content){\n --cds-layout-size-height:var(--cds-layout-size-height-lg);\n}\n:host .cds--popover-content{\n box-sizing:border-box;\n padding:0;\n border:0;\n margin:0;\n font-family:inherit;\n font-size:100%;\n vertical-align:baseline;\n}\n:host .cds--popover-content *,\n:host .cds--popover-content *::before,\n:host .cds--popover-content *::after{\n box-sizing:inherit;\n}\n:host .cds--popover-content{\n position:absolute;\n z-index:6000;\n display:none;\n border-radius:var(--cds-popover-border-radius, 2px);\n background-color:var(--cds-popover-background-color, var(--cds-layer));\n color:var(--cds-popover-text-color, var(--cds-text-primary, #161616));\n inline-size:-moz-max-content;\n inline-size:max-content;\n max-inline-size:23rem;\n pointer-events:auto;\n}\n:host .cds--popover--open > .cds--popover > .cds--popover-content{\n display:block;\n}\n:host .cds--popover--background-token__background > .cds--popover > .cds--popover-content{\n background-color:var(--cds-background, #ffffff);\n}\n:host .cds--popover-content::before{\n position:absolute;\n display:none;\n content:\"\";\n}\n:host .cds--popover--open > .cds--popover > .cds--popover-content::before{\n display:block;\n}\n:host .cds--popover-caret,\n:host .cds--popover--auto-align.cds--popover-caret{\n position:absolute;\n z-index:6000;\n display:none;\n will-change:transform;\n}\n:host .cds--popover-caret::after,\n:host .cds--popover--auto-align.cds--popover-caret::after{\n position:absolute;\n display:block;\n background-color:var(--cds-popover-background-color, var(--cds-layer));\n content:\"\";\n}\n:host .cds--popover-caret::before,\n:host .cds--popover--auto-align.cds--popover-caret::before{\n position:absolute;\n display:none;\n background-color:var(--cds-popover-border-color, var(--cds-border-subtle));\n content:\"\";\n}\n:host .cds--popover--background-token__background > .cds--popover > .cds--popover-caret::after{\n background-color:var(--cds-background, #ffffff);\n}\n:host .cds--popover--border .cds--popover-caret::before,\n:host .cds--popover--border .cds--popover--auto-align.cds--popover-caret::before{\n display:block;\n}\n:host .cds--popover--caret.cds--popover--open > .cds--popover > .cds--popover-caret{\n display:block;\n}\n:host .cds--popover--auto-align.cds--popover--caret.cds--popover--open > .cds--popover > .cds--popover-content > .cds--popover-caret{\n display:block;\n}\n:host .cds--popover--tab-tip > .cds--popover > .cds--popover-caret{\n display:none;\n}\n:host .cds--popover--bottom:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content{\n inset-block-end:0;\n inset-inline-start:50%;\n transform:translate(-50%, calc(100% + var(--cds-popover-offset, 0rem)));\n}\n:host [dir=rtl] .cds--popover--bottom:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content{\n transform:translate(50%, calc(100% + var(--cds-popover-offset, 0rem)));\n}\n:host .cds--popover--bottom-left:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,\n:host .cds--popover--bottom-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content{\n inset-block-end:0;\n inset-inline-start:calc(50% - var(--cds-popover-offset, 0rem));\n transform:translate(calc(-1 * var(--cds-popover-offset, 0rem)), calc(100% + var(--cds-popover-offset, 0rem)));\n}\n:host [dir=rtl] .cds--popover--bottom-left:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,\n:host [dir=rtl] .cds--popover--bottom-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content{\n inset-inline-end:calc(50% - var(--cds-popover-offset, 0rem));\n inset-inline-start:initial;\n}\n:host .cds--popover--bottom-right:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,\n:host .cds--popover--bottom-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content{\n inset-block-end:0;\n inset-inline-end:calc(50% - var(--cds-popover-offset, 0rem));\n transform:translate(var(--cds-popover-offset, 0rem), calc(100% + var(--cds-popover-offset, 0rem)));\n}\n:host [dir=rtl] .cds--popover--bottom-right:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,\n:host [dir=rtl] .cds--popover--bottom-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content{\n inset-inline-start:calc(50% - var(--cds-popover-offset, 0rem));\n}\n:host .cds--popover--bottom > .cds--popover > .cds--popover-content::before,\n:host .cds--popover--bottom-left > .cds--popover > .cds--popover-content::before,\n:host .cds--popover--bottom-start > .cds--popover > .cds--popover-content::before,\n:host .cds--popover--bottom-right > .cds--popover > .cds--popover-content::before,\n:host .cds--popover--bottom-end > .cds--popover > .cds--popover-content::before{\n block-size:var(--cds-popover-offset, 0rem);\n inset-block-start:0;\n inset-inline:0;\n transform:translateY(-100%);\n}\n:host .cds--popover--bottom > .cds--popover > .cds--popover-caret,\n:host .cds--popover--bottom-left > .cds--popover > .cds--popover-caret,\n:host .cds--popover--bottom-start > .cds--popover > .cds--popover-caret,\n:host .cds--popover--bottom-right > .cds--popover > .cds--popover-caret,\n:host .cds--popover--bottom-end > .cds--popover > .cds--popover-caret{\n block-size:var(--cds-popover-caret-height, 0.375rem);\n inline-size:var(--cds-popover-caret-width, 0.75rem);\n inset-block-end:0;\n inset-inline-start:50%;\n transform:translate(-50%, var(--cds-popover-offset, 0rem));\n}\n:host .cds--popover--bottom > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--bottom-left > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--bottom-start > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--bottom-right > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--bottom-end > .cds--popover > .cds--popover-caret::after{\n block-size:var(--cds-popover-caret-height, 0.375rem);\n clip-path:polygon(0% 100%, 50% 0%, 100% 100%);\n inline-size:var(--cds-popover-caret-width, 0.75rem);\n}\n:host .cds--popover--border.cds--popover--bottom > .cds--popover > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--bottom-left > .cds--popover > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--bottom-start > .cds--popover > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--bottom-right > .cds--popover > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--bottom-end > .cds--popover > .cds--popover-caret::before{\n block-size:var(--cds-popover-caret-height, 0.375rem);\n clip-path:polygon(0% 100%, 50% 0%, 100% 100%);\n inline-size:var(--cds-popover-caret-width, 0.75rem);\n}\n:host .cds--popover--border.cds--popover--bottom > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--bottom-left > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--bottom-start > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--bottom-right > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--bottom-end > .cds--popover > .cds--popover-caret::after{\n inline-size:calc(var(--cds-popover-caret-width, 0.75rem) - 1px);\n inset-block-start:1px;\n inset-inline-start:0.5px;\n}\n:host [dir=rtl] .cds--popover--bottom > .cds--popover > .cds--popover-caret,\n:host [dir=rtl] .cds--popover--bottom-left > .cds--popover > .cds--popover-caret,\n:host [dir=rtl] .cds--popover--bottom-start > .cds--popover > .cds--popover-caret,\n:host [dir=rtl] .cds--popover--bottom-right > .cds--popover > .cds--popover-caret,\n:host [dir=rtl] .cds--popover--bottom-end > .cds--popover > .cds--popover-caret{\n transform:translate(50%, var(--cds-popover-offset, 0rem));\n}\n:host .cds--popover--bottom.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret,\n:host .cds--popover--bottom-left.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret,\n:host .cds--popover--bottom-start.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret,\n:host .cds--popover--bottom-right.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret,\n:host .cds--popover--bottom-end.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret{\n block-size:var(--cds-popover-caret-height, 0.375rem);\n inline-size:var(--cds-popover-caret-width, 0.75rem);\n}\n:host .cds--popover--bottom.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--bottom-left.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--bottom-start.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--bottom-right.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--bottom-end.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after{\n block-size:var(--cds-popover-caret-height, 0.375rem);\n clip-path:polygon(0% 100%, 50% 0%, 100% 100%);\n inline-size:var(--cds-popover-caret-width, 0.75rem);\n}\n:host .cds--popover--border.cds--popover--bottom.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--bottom-left.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--bottom-start.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--bottom-right.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--bottom-end.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before{\n block-size:var(--cds-popover-caret-height, 0.375rem);\n clip-path:polygon(0% 100%, 50% 0%, 100% 100%);\n inline-size:var(--cds-popover-caret-width, 0.75rem);\n}\n:host .cds--popover--border.cds--popover--bottom.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--bottom-left.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--bottom-start.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--bottom-right.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--bottom-end.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after{\n inline-size:calc(var(--cds-popover-caret-width, 0.75rem) - 1px);\n inset-block-start:1px;\n inset-inline-start:0.5px;\n}\n:host .cds--popover--top:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content{\n inset-block-start:0;\n inset-inline-start:50%;\n transform:translate(-50%, calc(-100% - var(--cds-popover-offset, 0rem)));\n}\n:host [dir=rtl] .cds--popover--top:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content{\n transform:translate(50%, calc(-100% - var(--cds-popover-offset, 0rem)));\n}\n:host .cds--popover--top-left:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,\n:host .cds--popover--top-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content{\n inset-block-start:0;\n inset-inline-start:calc(50% - var(--cds-popover-offset, 0rem));\n transform:translate(calc(-1 * var(--cds-popover-offset, 0rem)), calc(-100% - var(--cds-popover-offset, 0rem)));\n}\n:host [dir=rtl] .cds--popover--top-left:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,\n:host [dir=rtl] .cds--popover--top-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content{\n inset-inline-end:calc(50% - var(--cds-popover-offset, 0rem));\n inset-inline-start:initial;\n}\n:host .cds--popover--top-right:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,\n:host .cds--popover--top-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content{\n inset-block-start:0;\n inset-inline-end:calc(50% - var(--cds-popover-offset, 0rem));\n transform:translate(var(--cds-popover-offset, 0rem), calc(-100% - var(--cds-popover-offset, 0rem)));\n}\n:host [dir=rtl] .cds--popover--top-right:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,\n:host [dir=rtl] .cds--popover--top-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content{\n inset-inline-start:calc(50% - var(--cds-popover-offset, 0rem));\n}\n:host .cds--popover--top > .cds--popover > .cds--popover-content::before,\n:host .cds--popover--top-left > .cds--popover > .cds--popover-content::before,\n:host .cds--popover--top-start > .cds--popover > .cds--popover-content::before,\n:host .cds--popover--top-right > .cds--popover > .cds--popover-content::before,\n:host .cds--popover--top-end > .cds--popover > .cds--popover-content::before{\n block-size:var(--cds-popover-offset, 0rem);\n inset-block-end:0;\n inset-inline:0;\n transform:translateY(100%);\n}\n:host .cds--popover--top > .cds--popover > .cds--popover-caret,\n:host .cds--popover--top-left > .cds--popover > .cds--popover-caret,\n:host .cds--popover--top-start > .cds--popover > .cds--popover-caret,\n:host .cds--popover--top-right > .cds--popover > .cds--popover-caret,\n:host .cds--popover--top-end > .cds--popover > .cds--popover-caret{\n block-size:var(--cds-popover-caret-height, 0.375rem);\n inline-size:var(--cds-popover-caret-width, 0.75rem);\n inset-block-start:0;\n inset-inline-start:50%;\n transform:translate(-50%, calc(-1 * var(--cds-popover-offset, 0rem)));\n}\n:host .cds--popover--top > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--top-left > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--top-start > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--top-right > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--top-end > .cds--popover > .cds--popover-caret::after{\n block-size:var(--cds-popover-caret-height, 0.375rem);\n clip-path:polygon(0% 0%, 50% 100%, 100% 0%);\n inline-size:var(--cds-popover-caret-width, 0.75rem);\n}\n:host .cds--popover--border.cds--popover--top > .cds--popover > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--top-left > .cds--popover > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--top-start > .cds--popover > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--top-right > .cds--popover > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--top-end > .cds--popover > .cds--popover-caret::before{\n block-size:var(--cds-popover-caret-height, 0.375rem);\n clip-path:polygon(0% 0%, 50% 100%, 100% 0%);\n inline-size:var(--cds-popover-caret-width, 0.75rem);\n}\n:host .cds--popover--border.cds--popover--top > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--top-left > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--top-start > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--top-right > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--top-end > .cds--popover > .cds--popover-caret::after{\n inline-size:calc(var(--cds-popover-caret-width, 0.75rem) - 1px);\n inset-block-start:-1px;\n inset-inline-start:0.5px;\n}\n:host [dir=rtl] .cds--popover--top:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret,\n:host [dir=rtl] .cds--popover--top-left:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret,\n:host [dir=rtl] .cds--popover--top-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret,\n:host [dir=rtl] .cds--popover--top-right:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret,\n:host [dir=rtl] .cds--popover--top-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret{\n transform:translate(50%, calc(-1 * var(--cds-popover-offset, 0rem)));\n}\n:host .cds--popover--top.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret,\n:host .cds--popover--top-left.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret,\n:host .cds--popover--top-start.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret,\n:host .cds--popover--top-right.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret,\n:host .cds--popover--top-end.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret{\n block-size:var(--cds-popover-caret-height, 0.375rem);\n inline-size:var(--cds-popover-caret-width, 0.75rem);\n}\n:host .cds--popover--top.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--top-left.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--top-start.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--top-right.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--top-end.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after{\n block-size:var(--cds-popover-caret-height, 0.375rem);\n clip-path:polygon(0% 0%, 50% 100%, 100% 0%);\n inline-size:var(--cds-popover-caret-width, 0.75rem);\n}\n:host .cds--popover--border.cds--popover--top.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--top-left.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--top-start.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--top-right.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--top-end.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before{\n block-size:var(--cds-popover-caret-height, 0.375rem);\n clip-path:polygon(0% 0%, 50% 100%, 100% 0%);\n inline-size:var(--cds-popover-caret-width, 0.75rem);\n}\n:host .cds--popover--border.cds--popover--top.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--top-left.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--top-start.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--top-right.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--top-end.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after{\n inline-size:calc(var(--cds-popover-caret-width, 0.75rem) - 1px);\n inset-block-start:-1px;\n inset-inline-start:0.5px;\n}\n:host .cds--popover--right:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content{\n inset-block-start:50%;\n inset-inline-start:100%;\n transform:translate(var(--cds-popover-offset, 0rem), -50%);\n}\n:host .cds--popover--right-top:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,\n:host .cds--popover--right-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content{\n inset-block-start:50%;\n inset-inline-start:100%;\n transform:translate(var(--cds-popover-offset, 0rem), calc(0.5 * var(--cds-popover-offset, 0rem) * -1 - 16px));\n}\n:host .cds--popover--right-bottom:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,\n:host .cds--popover--right-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content{\n inset-block-end:50%;\n inset-inline-start:100%;\n transform:translate(var(--cds-popover-offset, 0rem), calc(0.5 * var(--cds-popover-offset, 0rem) + 16px));\n}\n:host [dir=rtl] .cds--popover--right:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,\n:host [dir=rtl] .cds--popover--right-bottom:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,\n:host [dir=rtl] .cds--popover--right-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,\n:host [dir=rtl] .cds--popover--right-top:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,\n:host [dir=rtl] .cds--popover--right-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content{\n inset-inline-end:100%;\n inset-inline-start:initial;\n}\n:host .cds--popover--right > .cds--popover > .cds--popover-content::before,\n:host .cds--popover--right-top > .cds--popover > .cds--popover-content::before,\n:host .cds--popover--right-start > .cds--popover > .cds--popover-content::before,\n:host .cds--popover--right-bottom > .cds--popover > .cds--popover-content::before,\n:host .cds--popover--right-end > .cds--popover > .cds--popover-content::before{\n inline-size:var(--cds-popover-offset, 0rem);\n inset-block:0;\n inset-inline-start:0;\n transform:translateX(-100%);\n}\n:host .cds--popover--right:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret,\n:host .cds--popover--right-top:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret,\n:host .cds--popover--right-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret,\n:host .cds--popover--right-bottom:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret,\n:host .cds--popover--right-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret{\n block-size:var(--cds-popover-caret-width, 0.75rem);\n inline-size:var(--cds-popover-caret-height, 0.375rem);\n inset-block-start:50%;\n inset-inline-start:100%;\n transform:translate(calc(var(--cds-popover-offset, 0rem) - 100%), -50%);\n}\n:host .cds--popover--right:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--right-top:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--right-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--right-bottom:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--right-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after{\n block-size:var(--cds-popover-caret-width, 0.75rem);\n clip-path:polygon(0% 50%, 100% 0%, 100% 100%);\n inline-size:var(--cds-popover-caret-height, 0.375rem);\n}\n:host [dir=rtl] .cds--popover--right:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret,\n:host [dir=rtl] .cds--popover--right-top:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret,\n:host [dir=rtl] .cds--popover--right-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret,\n:host [dir=rtl] .cds--popover--right-bottom:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret,\n:host [dir=rtl] .cds--popover--right-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret{\n inset-inline-end:100%;\n inset-inline-start:initial;\n}\n:host .cds--popover--border.cds--popover--right:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--right-top:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--right-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--right-bottom:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--right-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::before{\n block-size:var(--cds-popover-caret-width, 0.75rem);\n clip-path:polygon(0% 50%, 100% 0%, 100% 100%);\n inline-size:var(--cds-popover-caret-height, 0.375rem);\n}\n:host .cds--popover--border.cds--popover--right:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--right-top:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--right-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--right-bottom:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--right-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after{\n inset-inline-start:1px;\n}\n:host [dir=rtl] .cds--popover--border.cds--popover--right:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,\n:host [dir=rtl] .cds--popover--border.cds--popover--right-top:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,\n:host [dir=rtl] .cds--popover--border.cds--popover--right-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,\n:host [dir=rtl] .cds--popover--border.cds--popover--right-bottom:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,\n:host [dir=rtl] .cds--popover--border.cds--popover--right-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after{\n inset-inline-start:-1px;\n}\n:host .cds--popover--right.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret,\n:host .cds--popover--right-top.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret,\n:host .cds--popover--right-start.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret,\n:host .cds--popover--right-bottom.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret,\n:host .cds--popover--right-end.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret{\n block-size:var(--cds-popover-caret-width, 0.75rem);\n inline-size:var(--cds-popover-caret-height, 0.375rem);\n}\n:host .cds--popover--right.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--right-top.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--right-start.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--right-bottom.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--right-end.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after{\n block-size:var(--cds-popover-caret-width, 0.75rem);\n clip-path:polygon(0% 50%, 100% 0%, 100% 100%);\n inline-size:var(--cds-popover-caret-height, 0.375rem);\n}\n:host .cds--popover--border.cds--popover--right.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--right-top.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--right-start.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--right-bottom.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--right-end.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before{\n block-size:var(--cds-popover-caret-width, 0.75rem);\n clip-path:polygon(0% 50%, 100% 0%, 100% 100%);\n inline-size:var(--cds-popover-caret-height, 0.375rem);\n}\n:host .cds--popover--border.cds--popover--right.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--right-top.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--right-start.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--right-bottom.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--right-end.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after{\n inset-inline-start:1px;\n}\n:host [dir=rtl] .cds--popover--border.cds--popover--right.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,\n:host [dir=rtl] .cds--popover--border.cds--popover--right-top.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,\n:host [dir=rtl] .cds--popover--border.cds--popover--right-start.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,\n:host [dir=rtl] .cds--popover--border.cds--popover--right-bottom.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,\n:host [dir=rtl] .cds--popover--border.cds--popover--right-end.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before{\n margin-inline-start:1px;\n}\n:host [dir=rtl] .cds--popover--border.cds--popover--right.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host [dir=rtl] .cds--popover--border.cds--popover--right-top.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host [dir=rtl] .cds--popover--border.cds--popover--right-start.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host [dir=rtl] .cds--popover--border.cds--popover--right-bottom.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host [dir=rtl] .cds--popover--border.cds--popover--right-end.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after{\n inset-inline-start:0;\n}\n:host .cds--popover--left:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content{\n inset-block-start:50%;\n inset-inline-end:100%;\n transform:translate(calc(-1 * var(--cds-popover-offset, 0rem) + 0.1px), -50%);\n}\n:host .cds--popover--left-top:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,\n:host .cds--popover--left-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content{\n inset-block-start:50%;\n inset-inline-end:100%;\n transform:translate(calc(-1 * var(--cds-popover-offset, 0rem)), calc(-0.5 * var(--cds-popover-offset, 0rem) - 16px));\n}\n:host .cds--popover--left-bottom:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,\n:host .cds--popover--left-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content{\n inset-block-end:50%;\n inset-inline-end:100%;\n transform:translate(calc(-1 * var(--cds-popover-offset, 0rem)), calc(0.5 * var(--cds-popover-offset, 0rem) + 16px));\n}\n:host [dir=rtl] .cds--popover--left:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,\n:host [dir=rtl] .cds--popover--left-bottom:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,\n:host [dir=rtl] .cds--popover--left-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,\n:host [dir=rtl] .cds--popover--left-top:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,\n:host [dir=rtl] .cds--popover--left-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content{\n inset-inline-end:initial;\n inset-inline-start:100%;\n}\n:host .cds--popover--left > .cds--popover > .cds--popover-content::before,\n:host .cds--popover--left-top > .cds--popover > .cds--popover-content::before,\n:host .cds--popover--left-start > .cds--popover > .cds--popover-content::before,\n:host .cds--popover--left-bottom > .cds--popover > .cds--popover-content::before,\n:host .cds--popover--left-end > .cds--popover > .cds--popover-content::before{\n inline-size:var(--cds-popover-offset, 0rem);\n inset-block:0;\n inset-inline-end:0;\n transform:translateX(100%);\n}\n:host .cds--popover--left:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret,\n:host .cds--popover--left-top:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret,\n:host .cds--popover--left-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret,\n:host .cds--popover--left-bottom:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret,\n:host .cds--popover--left-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret{\n block-size:var(--cds-popover-caret-width, 0.75rem);\n inline-size:var(--cds-popover-caret-height, 0.375rem);\n inset-block-start:50%;\n inset-inline-end:100%;\n transform:translate(calc(-1 * var(--cds-popover-offset, 0rem) + 100%), -50%);\n}\n:host .cds--popover--left:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--left-top:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--left-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--left-bottom:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--left-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after{\n block-size:var(--cds-popover-caret-width, 0.75rem);\n clip-path:polygon(0% 0%, 100% 50%, 0% 100%);\n inline-size:var(--cds-popover-caret-height, 0.375rem);\n}\n:host [dir=rtl] .cds--popover--left:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret,\n:host [dir=rtl] .cds--popover--left-top:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret,\n:host [dir=rtl] .cds--popover--left-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret,\n:host [dir=rtl] .cds--popover--left-bottom:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret,\n:host [dir=rtl] .cds--popover--left-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret{\n inset-inline-end:initial;\n inset-inline-start:100%;\n}\n:host .cds--popover--border.cds--popover--left:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--left-top:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--left-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--left-bottom:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--left-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::before{\n block-size:var(--cds-popover-caret-width, 0.75rem);\n clip-path:polygon(0% 0%, 100% 50%, 0% 100%);\n inline-size:var(--cds-popover-caret-height, 0.375rem);\n}\n:host .cds--popover--border.cds--popover--left:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--left-top:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--left-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--left-bottom:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--left-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after{\n inset-inline-start:-1px;\n}\n:host [dir=rtl] .cds--popover--border.cds--popover--left:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,\n:host [dir=rtl] .cds--popover--border.cds--popover--left-top:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,\n:host [dir=rtl] .cds--popover--border.cds--popover--left-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,\n:host [dir=rtl] .cds--popover--border.cds--popover--left-bottom:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,\n:host [dir=rtl] .cds--popover--border.cds--popover--left-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after{\n inset-inline-start:1px;\n}\n:host .cds--popover--left.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret,\n:host .cds--popover--left-top.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret,\n:host .cds--popover--left-start.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret,\n:host .cds--popover--left-bottom.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret,\n:host .cds--popover--left-end.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret{\n block-size:var(--cds-popover-caret-width, 0.75rem);\n inline-size:var(--cds-popover-caret-height, 0.375rem);\n}\n:host .cds--popover--left.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--left-top.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--left-start.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--left-bottom.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--left-end.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after{\n block-size:var(--cds-popover-caret-width, 0.75rem);\n clip-path:polygon(0% 0%, 100% 50%, 0% 100%);\n inline-size:var(--cds-popover-caret-height, 0.375rem);\n}\n:host .cds--popover--border.cds--popover--left.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--left-top.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--left-start.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--left-bottom.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--left-end.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before{\n block-size:var(--cds-popover-caret-width, 0.75rem);\n clip-path:polygon(0% 0%, 100% 50%, 0% 100%);\n inline-size:var(--cds-popover-caret-height, 0.375rem);\n}\n:host .cds--popover--border.cds--popover--left.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--left-top.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--left-start.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--left-bottom.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--left-end.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after{\n inset-inline-start:-1px;\n}\n:host [dir=rtl] .cds--popover--border.cds--popover--left.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,\n:host [dir=rtl] .cds--popover--border.cds--popover--left-top.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,\n:host [dir=rtl] .cds--popover--border.cds--popover--left-start.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,\n:host [dir=rtl] .cds--popover--border.cds--popover--left-bottom.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,\n:host [dir=rtl] .cds--popover--border.cds--popover--left-end.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before{\n margin-inline-start:-1px;\n}\n:host [dir=rtl] .cds--popover--border.cds--popover--left.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host [dir=rtl] .cds--popover--border.cds--popover--left-top.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host [dir=rtl] .cds--popover--border.cds--popover--left-start.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host [dir=rtl] .cds--popover--border.cds--popover--left-bottom.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host [dir=rtl] .cds--popover--border.cds--popover--left-end.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after{\n inset-inline-start:0;\n}\n:host .cds--popover--tab-tip > .cds--popover > .cds--popover-content{\n border-radius:0;\n}\n:host .cds--popover--tab-tip.cds--popover--top-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,\n:host .cds--popover--tab-tip.cds--popover--bottom-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,\n:host [dir=rtl] .cds--popover--tab-tip.cds--popover--top-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,\n:host [dir=rtl] .cds--popover--tab-tip.cds--popover--bottom-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content{\n inset-inline-start:0;\n}\n:host .cds--popover--tab-tip.cds--popover--top-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,\n:host .cds--popover--tab-tip.cds--popover--bottom-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,\n:host [dir=rtl] .cds--popover--tab-tip.cds--popover--top-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,\n:host [dir=rtl] .cds--popover--tab-tip.cds--popover--bottom-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content{\n inset-inline-end:0;\n inset-inline-start:initial;\n}\n:host .cds--popover--tab-tip .cds--popover{\n will-change:filter;\n}\n:host .cds--popover--tab-tip__button{\n display:inline-block;\n padding:0;\n border:0;\n -webkit-appearance:none;\n -moz-appearance:none;\n appearance:none;\n background:none;\n cursor:pointer;\n text-align:start;\n inline-size:100%;\n box-sizing:border-box;\n padding:0;\n border:0;\n margin:0;\n font-family:inherit;\n font-size:100%;\n vertical-align:baseline;\n}\n:host .cds--popover--tab-tip__button *,\n:host .cds--popover--tab-tip__button *::before,\n:host .cds--popover--tab-tip__button *::after{\n box-sizing:inherit;\n}\n:host .cds--popover--tab-tip__button::-moz-focus-inner{\n border:0;\n}\n:host .cds--popover--tab-tip__button{\n position:relative;\n display:inline-flex;\n align-items:center;\n justify-content:center;\n block-size:2rem;\n inline-size:2rem;\n}\n:host .cds--popover--tab-tip__button:focus{\n outline:2px solid var(--cds-focus, #0f62fe);\n outline-offset:-2px;\n}\n@media screen and (prefers-contrast){\n :host .cds--popover--tab-tip__button:focus{\n outline-style:dotted;\n }\n}\n:host .cds--popover--tab-tip__button:hover{\n background-color:var(--cds-layer-hover);\n}\n:host .cds--popover--tab-tip__button svg{\n fill:var(--cds-icon-primary, #161616);\n}\n:host .cds--popover--tab-tip.cds--popover--open .cds--popover--tab-tip__button{\n background:var(--cds-layer);\n box-shadow:0 2px 2px rgba(0, 0, 0, 0.2);\n}\n:host .cds--popover--tab-tip.cds--popover--open .cds--popover--tab-tip__button:not(:focus)::after{\n position:absolute;\n z-index:6001;\n background:var(--cds-layer);\n block-size:2px;\n content:\"\";\n inline-size:100%;\n inset-block-end:0;\n}\n:host .cds--popover--tab-tip__button svg{\n fill:var(--cds-icon-primary, #161616);\n}\n:host .cds--tooltip{\n --cds-popover-offset:12px;\n}\n:host .cds--tooltip-content{\n font-size:var(--cds-body-01-font-size, 0.875rem);\n font-weight:var(--cds-body-01-font-weight, 400);\n line-height:var(--cds-body-01-line-height, 1.42857);\n letter-spacing:var(--cds-body-01-letter-spacing, 0.16px);\n padding:var(--cds-tooltip-padding-block, 1rem) var(--cds-tooltip-padding-inline, 1rem);\n max-inline-size:18rem;\n overflow-wrap:break-word;\n}\n:host .cds--icon-tooltip{\n --cds-tooltip-padding-block:0.125rem;\n --cds-popover-caret-width:0.5rem;\n --cds-popover-caret-height:0.25rem;\n --cds-popover-offset:0.5rem;\n}\n:host .cds--icon-tooltip .cds--tooltip-content{\n font-size:var(--cds-body-compact-01-font-size, 0.875rem);\n font-weight:var(--cds-body-compact-01-font-weight, 400);\n line-height:var(--cds-body-compact-01-line-height, 1.28572);\n letter-spacing:var(--cds-body-compact-01-letter-spacing, 0.16px);\n}\n:host .cds--definition-term{\n display:inline-block;\n padding:0;\n border:0;\n -webkit-appearance:none;\n -moz-appearance:none;\n appearance:none;\n background:none;\n cursor:pointer;\n text-align:start;\n inline-size:100%;\n box-sizing:border-box;\n padding:0;\n border:0;\n margin:0;\n font-family:inherit;\n font-size:100%;\n vertical-align:baseline;\n}\n:host .cds--definition-term *,\n:host .cds--definition-term *::before,\n:host .cds--definition-term *::after{\n box-sizing:inherit;\n}\n:host .cds--definition-term::-moz-focus-inner{\n border:0;\n}\n:host .cds--definition-term{\n border-radius:0;\n border-block-end:1px dotted var(--cds-border-strong);\n color:var(--cds-text-primary, #161616);\n}\n:host .cds--definition-term:focus{\n outline:1px solid var(--cds-focus, #0f62fe);\n}\n@media screen and (prefers-contrast){\n :host .cds--definition-term:focus{\n outline-style:dotted;\n }\n}\n:host .cds--definition-term:focus{\n border-block-end-color:var(--cds-border-interactive, #0f62fe);\n}\n:host .cds--definition-term:hover{\n border-block-end-color:var(--cds-border-interactive, #0f62fe);\n}\n:host .cds--definition-tooltip{\n font-size:var(--cds-body-01-font-size, 0.875rem);\n font-weight:var(--cds-body-01-font-weight, 400);\n line-height:var(--cds-body-01-line-height, 1.42857);\n letter-spacing:var(--cds-body-01-letter-spacing, 0.16px);\n padding:0.5rem 1rem;\n max-inline-size:11rem;\n text-wrap:auto;\n word-break:break-word;\n}\n:host{\n}\n:host .cds--btn{\n --cds-layout-size-height-local:clamp(max(var(--cds-layout-size-height-min), var(--cds-layout-size-height-xs)), var(--cds-layout-size-height, var(--cds-layout-size-height-lg)), min(var(--cds-layout-size-height-max), var(--cds-layout-size-height-2xl)));\n --cds-layout-density-padding-inline-local:clamp(var(--cds-layout-density-padding-inline-min), var(--cds-layout-density-padding-inline, var(--cds-layout-density-padding-inline-normal)), var(--cds-layout-density-padding-inline-max));\n --temp-1lh:(\n var(--cds-body-compact-01-line-height, 1.28572) * 1em\n );\n --temp-expressive-1lh:(\n var(--cds-body-compact-02-line-height, 1.375) * 1em\n );\n --temp-padding-block-max:calc(\n (var(--cds-layout-size-height-lg) - var(--temp-1lh)) / 2 -\n 0.0625rem\n );\n box-sizing:border-box;\n padding:0;\n border:0;\n margin:0;\n font-family:inherit;\n font-size:100%;\n vertical-align:baseline;\n}\n:host .cds--btn *,\n:host .cds--btn *::before,\n:host .cds--btn *::after{\n box-sizing:inherit;\n}\n:host .cds--btn{\n font-size:var(--cds-body-compact-01-font-size, 0.875rem);\n font-weight:var(--cds-body-compact-01-font-weight, 400);\n line-height:var(--cds-body-compact-01-line-height, 1.28572);\n letter-spacing:var(--cds-body-compact-01-letter-spacing, 0.16px);\n position:relative;\n display:inline-flex;\n flex-shrink:0;\n justify-content:space-between;\n border-radius:0;\n margin:0;\n cursor:pointer;\n inline-size:-moz-max-content;\n inline-size:max-content;\n max-inline-size:20rem;\n min-block-size:var(--cds-layout-size-height-local);\n outline:none;\n padding-block:min((var(--cds-layout-size-height-local) - var(--temp-1lh)) / 2 - 0.0625rem, var(--temp-padding-block-max));\n padding-inline:calc(var(--cds-layout-density-padding-inline-local) - 0.0625rem) calc(var(--cds-layout-density-padding-inline-local) * 3 + 1rem - 0.0625rem);\n text-align:start;\n text-decoration:none;\n transition:background 70ms cubic-bezier(0, 0, 0.38, 0.9), box-shadow 70ms cubic-bezier(0, 0, 0.38, 0.9), border-color 70ms cubic-bezier(0, 0, 0.38, 0.9), outline 70ms cubic-bezier(0, 0, 0.38, 0.9);\n vertical-align:top;\n}\n:host .cds--btn:disabled, :host .cds--btn:hover:disabled, :host .cds--btn:focus:disabled, :host .cds--btn.cds--btn--disabled, :host .cds--btn.cds--btn--disabled:hover, :host .cds--btn.cds--btn--disabled:focus{\n border-color:var(--cds-button-disabled, #c6c6c6);\n background:var(--cds-button-disabled, #c6c6c6);\n box-shadow:none;\n color:var(--cds-text-on-color-disabled, #8d8d8d);\n cursor:not-allowed;\n}\n:host .cds--btn .cds--btn__icon{\n position:absolute;\n flex-shrink:0;\n block-size:1rem;\n inline-size:1rem;\n inset-block-start:min((var(--cds-layout-size-height-local) - 1rem) / 2 - 0.0625rem, var(--temp-padding-block-max));\n inset-inline-end:var(--cds-layout-density-padding-inline-local);\n margin-block-start:0.0625rem;\n}\n:host .cds--btn::-moz-focus-inner{\n padding:0;\n border:0;\n}\n:host .cds--btn--primary{\n border-width:1px;\n border-style:solid;\n border-color:transparent;\n background-color:var(--cds-button-primary, #0f62fe);\n color:var(--cds-text-on-color, #ffffff);\n}\n:host .cds--btn--primary:hover{\n background-color:var(--cds-button-primary-hover, #0050e6);\n}\n:host .cds--btn--primary:focus{\n border-color:var(--cds-button-focus-color, var(--cds-focus, #0f62fe));\n box-shadow:inset 0 0 0 1px var(--cds-button-focus-color, var(--cds-focus, #0f62fe)), inset 0 0 0 2px var(--cds-background, #ffffff);\n}\n:host .cds--btn--primary:active{\n background-color:var(--cds-button-primary-active, #002d9c);\n}\n:host .cds--btn--primary .cds--btn__icon,\n:host .cds--btn--primary .cds--btn__icon path:not([data-icon-path]):not([fill=none]){\n fill:currentColor;\n}\n:host .cds--btn--primary:hover{\n color:var(--cds-text-on-color, #ffffff);\n}\n:host .cds--btn--secondary{\n border-width:1px;\n border-style:solid;\n border-color:transparent;\n background-color:var(--cds-button-secondary, #393939);\n color:var(--cds-text-on-color, #ffffff);\n}\n:host .cds--btn--secondary:hover{\n background-color:var(--cds-button-secondary-hover, #474747);\n}\n:host .cds--btn--secondary:focus{\n border-color:var(--cds-button-focus-color, var(--cds-focus, #0f62fe));\n box-shadow:inset 0 0 0 1px var(--cds-button-focus-color, var(--cds-focus, #0f62fe)), inset 0 0 0 2px var(--cds-background, #ffffff);\n}\n:host .cds--btn--secondary:active{\n background-color:var(--cds-button-secondary-active, #6f6f6f);\n}\n:host .cds--btn--secondary .cds--btn__icon,\n:host .cds--btn--secondary .cds--btn__icon path:not([data-icon-path]):not([fill=none]){\n fill:currentColor;\n}\n:host .cds--btn--secondary:hover, :host .cds--btn--secondary:focus{\n color:var(--cds-text-on-color, #ffffff);\n}\n:host .cds--btn--tertiary{\n border-width:1px;\n border-style:solid;\n border-color:var(--cds-button-tertiary, #0f62fe);\n background-color:transparent;\n color:var(--cds-button-tertiary, #0f62fe);\n}\n:host .cds--btn--tertiary:hover{\n background-color:var(--cds-button-tertiary-hover, #0050e6);\n}\n:host .cds--btn--tertiary:focus{\n border-color:var(--cds-button-focus-color, var(--cds-focus, #0f62fe));\n box-shadow:inset 0 0 0 1px var(--cds-button-focus-color, var(--cds-focus, #0f62fe)), inset 0 0 0 2px var(--cds-background, #ffffff);\n}\n:host .cds--btn--tertiary:active{\n background-color:var(--cds-button-tertiary-active, #002d9c);\n}\n:host .cds--btn--tertiary .cds--btn__icon,\n:host .cds--btn--tertiary .cds--btn__icon path:not([data-icon-path]):not([fill=none]){\n fill:currentColor;\n}\n:host .cds--btn--tertiary:hover{\n color:var(--cds-text-inverse, #ffffff);\n}\n:host .cds--btn--tertiary:focus{\n background-color:var(--cds-button-tertiary, #0f62fe);\n color:var(--cds-text-inverse, #ffffff);\n}\n:host .cds--btn--tertiary:active{\n border-color:transparent;\n background-color:var(--cds-button-tertiary-active, #002d9c);\n color:var(--cds-text-inverse, #ffffff);\n}\n:host .cds--btn--tertiary:disabled, :host .cds--btn--tertiary:hover:disabled, :host .cds--btn--tertiary:focus:disabled, :host .cds--btn--tertiary.cds--btn--disabled, :host .cds--btn--tertiary.cds--btn--disabled:hover, :host .cds--btn--tertiary.cds--btn--disabled:focus{\n background:transparent;\n color:var(--cds-text-disabled, rgba(22, 22, 22, 0.25));\n outline:none;\n}\n:host .cds--btn--ghost{\n border-width:1px;\n border-style:solid;\n border-color:transparent;\n background-color:transparent;\n color:var(--cds-link-primary, #0f62fe);\n}\n:host .cds--btn--ghost:hover{\n background-color:var(--cds-background-hover, rgba(141, 141, 141, 0.12));\n}\n:host .cds--btn--ghost:focus{\n border-color:var(--cds-button-focus-color, var(--cds-focus, #0f62fe));\n box-shadow:inset 0 0 0 1px var(--cds-button-focus-color, var(--cds-focus, #0f62fe)), inset 0 0 0 2px var(--cds-background, #ffffff);\n}\n:host .cds--btn--ghost:active{\n background-color:var(--cds-background-active, rgba(141, 141, 141, 0.5));\n}\n:host .cds--btn--ghost .cds--btn__icon,\n:host .cds--btn--ghost .cds--btn__icon path:not([data-icon-path]):not([fill=none]){\n fill:currentColor;\n}\n:host .cds--btn--ghost{\n padding-inline-end:calc(var(--cds-layout-density-padding-inline-local) - 0.0625rem);\n}\n:host .cds--btn--ghost .cds--btn__icon{\n position:static;\n align-self:center;\n margin-inline-start:0.5rem;\n}\n:host .cds--btn--ghost:hover, :host .cds--btn--ghost:active{\n color:var(--cds-link-primary-hover, #0043ce);\n}\n:host .cds--btn--ghost:active{\n background-color:var(--cds-background-active, rgba(141, 141, 141, 0.5));\n}\n:host .cds--btn--ghost:disabled, :host .cds--btn--ghost:hover:disabled, :host .cds--btn--ghost:focus:disabled, :host .cds--btn--ghost.cds--btn--disabled, :host .cds--btn--ghost.cds--btn--disabled:hover, :host .cds--btn--ghost.cds--btn--disabled:focus{\n border-color:transparent;\n background:transparent;\n color:var(--cds-text-disabled, rgba(22, 22, 22, 0.25));\n outline:none;\n}\n:host .cds--btn--ghost:not([disabled]) svg{\n fill:var(--cds-icon-primary, #161616);\n}\n:host .cds--btn--icon-only{\n align-items:center;\n justify-content:center;\n padding:0;\n block-size:var(--cds-layout-size-height-local);\n inline-size:var(--cds-layout-size-height-local);\n padding-block-start:0;\n}\n:host .cds--btn--icon-only > :first-child{\n min-inline-size:1rem;\n}\n:host .cds--btn--icon-only .cds--btn__icon{\n position:static;\n}\n:host .cds--btn--icon-only.cds--btn--ghost .cds--btn__icon, :host .cds--btn--icon-only.cds--btn--danger--ghost .cds--btn__icon{\n margin:0;\n}\n:host .cds--btn--icon-only.cds--btn--danger--ghost{\n padding-inline-end:calc(var(--cds-layout-density-padding-inline-local) - 1rem);\n}\n:host .cds--btn--xs:not(.cds--btn--icon-only){\n padding-block-start:1.5px;\n}\n:host .cds--btn--xs:not(.cds--btn--icon-only) .cds--btn__icon,\n:host .cds--btn--sm:not(.cds--btn--icon-only) .cds--btn__icon,\n:host .cds--btn--md:not(.cds--btn--icon-only) .cds--btn__icon{\n margin-block-start:0;\n}\n:host .cds--btn--icon-only.cds--btn--selected{\n background:var(--cds-background-selected, rgba(141, 141, 141, 0.2));\n}\n:host .cds--btn path[data-icon-path=inner-path]{\n fill:none;\n}\n:host .cds--btn--ghost.cds--btn--icon-only .cds--btn__icon path:not([data-icon-path]):not([fill=none]),\n:host .cds--btn--ghost.cds--btn--icon-only .cds--btn__icon{\n fill:var(--cds-icon-primary, #161616);\n}\n:host .cds--btn--ghost.cds--btn--icon-only[disabled] .cds--btn__icon path:not([data-icon-path]):not([fill=none]),\n:host .cds--btn--ghost.cds--btn--icon-only[disabled] .cds--btn__icon,\n:host .cds--btn.cds--btn--icon-only.cds--btn--ghost[disabled]:hover .cds--btn__icon{\n fill:var(--cds-icon-on-color-disabled, #8d8d8d);\n}\n:host .cds--btn--ghost.cds--btn--icon-only[disabled]{\n cursor:not-allowed;\n}\n:host .cds--icon-tooltip--disabled .cds--tooltip-trigger__wrapper{\n cursor:not-allowed;\n}\n:host .cds--icon-tooltip--disabled .cds--btn--icon-only[disabled]{\n pointer-events:none;\n}\n:host .cds--btn--danger{\n border-width:1px;\n border-style:solid;\n border-color:transparent;\n background-color:var(--cds-button-danger-primary, #da1e28);\n color:var(--cds-text-on-color, #ffffff);\n}\n:host .cds--btn--danger:hover{\n background-color:var(--cds-button-danger-hover, #b81921);\n}\n:host .cds--btn--danger:focus{\n border-color:var(--cds-button-focus-color, var(--cds-focus, #0f62fe));\n box-shadow:inset 0 0 0 1px var(--cds-button-focus-color, var(--cds-focus, #0f62fe)), inset 0 0 0 2px var(--cds-background, #ffffff);\n}\n:host .cds--btn--danger:active{\n background-color:var(--cds-button-danger-active, #750e13);\n}\n:host .cds--btn--danger .cds--btn__icon,\n:host .cds--btn--danger .cds--btn__icon path:not([data-icon-path]):not([fill=none]){\n fill:currentColor;\n}\n:host .cds--btn--danger:hover{\n color:var(--cds-text-on-color, #ffffff);\n}\n:host .cds--btn--danger--tertiary{\n border-width:1px;\n border-style:solid;\n border-color:var(--cds-button-danger-secondary, #da1e28);\n background-color:transparent;\n color:var(--cds-button-danger-secondary, #da1e28);\n}\n:host .cds--btn--danger--tertiary:hover{\n background-color:var(--cds-button-danger-hover, #b81921);\n}\n:host .cds--btn--danger--tertiary:focus{\n border-color:var(--cds-button-focus-color, var(--cds-focus, #0f62fe));\n box-shadow:inset 0 0 0 1px var(--cds-button-focus-color, var(--cds-focus, #0f62fe)), inset 0 0 0 2px var(--cds-background, #ffffff);\n}\n:host .cds--btn--danger--tertiary:active{\n background-color:var(--cds-button-danger-active, #750e13);\n}\n:host .cds--btn--danger--tertiary .cds--btn__icon,\n:host .cds--btn--danger--tertiary .cds--btn__icon path:not([data-icon-path]):not([fill=none]){\n fill:currentColor;\n}\n:host .cds--btn--danger--tertiary:hover{\n border-color:var(--cds-button-danger-hover, #b81921);\n color:var(--cds-text-on-color, #ffffff);\n}\n:host .cds--btn--danger--tertiary:focus{\n background-color:var(--cds-button-danger-primary, #da1e28);\n color:var(--cds-text-on-color, #ffffff);\n}\n:host .cds--btn--danger--tertiary:active{\n border-color:var(--cds-button-danger-active, #750e13);\n background-color:var(--cds-button-danger-active, #750e13);\n color:var(--cds-text-on-color, #ffffff);\n}\n:host .cds--btn--danger--tertiary:disabled, :host .cds--btn--danger--tertiary:hover:disabled, :host .cds--btn--danger--tertiary:focus:disabled, :host .cds--btn--danger--tertiary.cds--btn--disabled, :host .cds--btn--danger--tertiary.cds--btn--disabled:hover, :host .cds--btn--danger--tertiary.cds--btn--disabled:focus{\n background:transparent;\n color:var(--cds-text-disabled, rgba(22, 22, 22, 0.25));\n outline:none;\n}\n:host .cds--btn--danger--ghost{\n border-width:1px;\n border-style:solid;\n border-color:transparent;\n background-color:transparent;\n color:var(--cds-button-danger-secondary, #da1e28);\n}\n:host .cds--btn--danger--ghost:hover{\n background-color:var(--cds-button-danger-hover, #b81921);\n}\n:host .cds--btn--danger--ghost:focus{\n border-color:var(--cds-button-focus-color, var(--cds-focus, #0f62fe));\n box-shadow:inset 0 0 0 1px var(--cds-button-focus-color, var(--cds-focus, #0f62fe)), inset 0 0 0 2px var(--cds-background, #ffffff);\n}\n:host .cds--btn--danger--ghost:active{\n background-color:var(--cds-button-danger-active, #750e13);\n}\n:host .cds--btn--danger--ghost .cds--btn__icon,\n:host .cds--btn--danger--ghost .cds--btn__icon path:not([data-icon-path]):not([fill=none]){\n fill:currentColor;\n}\n:host .cds--btn--danger--ghost{\n padding-inline-end:calc(var(--cds-layout-density-padding-inline-local) - 0.0625rem);\n}\n:host .cds--btn--danger--ghost .cds--btn__icon{\n position:static;\n margin-inline-start:0.5rem;\n}\n:host .cds--btn--danger--ghost:hover, :host .cds--btn--danger--ghost:active{\n color:var(--cds-text-on-color, #ffffff);\n}\n:host .cds--btn--danger--ghost:disabled, :host .cds--btn--danger--ghost:hover:disabled, :host .cds--btn--danger--ghost:focus:disabled, :host .cds--btn--danger--ghost.cds--btn--disabled, :host .cds--btn--danger--ghost.cds--btn--disabled:hover, :host .cds--btn--danger--ghost.cds--btn--disabled:focus{\n border-color:transparent;\n background:transparent;\n color:var(--cds-text-disabled, rgba(22, 22, 22, 0.25));\n outline:none;\n}\n:host .cds--btn--expressive{\n font-size:var(--cds-body-compact-02-font-size, 1rem);\n font-weight:var(--cds-body-compact-02-font-weight, 400);\n line-height:var(--cds-body-compact-02-line-height, 1.375);\n letter-spacing:var(--cds-body-compact-02-letter-spacing, 0);\n padding-block:min((var(--cds-layout-size-height-local) - var(--temp-expressive-1lh)) / 2 - 0.0625rem, var(--temp-padding-block-max));\n}\n:host .cds--btn--icon-only.cds--btn--expressive{\n padding:12px 13px;\n}\n:host .cds--btn.cds--btn--expressive .cds--btn__icon{\n block-size:1.25rem;\n inline-size:1.25rem;\n}\n:host .cds--btn-set .cds--btn.cds--btn--expressive{\n max-inline-size:20rem;\n}\n:host .cds--btn.cds--skeleton{\n position:relative;\n padding:0;\n border:none;\n background:var(--cds-skeleton-background, #e8e8e8);\n box-shadow:none;\n pointer-events:none;\n}\n:host .cds--btn.cds--skeleton:hover, :host .cds--btn.cds--skeleton:focus, :host .cds--btn.cds--skeleton:active{\n border:none;\n cursor:default;\n outline:none;\n}\n:host .cds--btn.cds--skeleton::before{\n position:absolute;\n animation:3000ms ease-in-out cds--skeleton infinite;\n background:var(--cds-skeleton-element, #c6c6c6);\n block-size:100%;\n content:\"\";\n inline-size:100%;\n inset-inline-start:0;\n will-change:transform-origin, transform, opacity;\n}\n@media (prefers-reduced-motion: reduce){\n :host .cds--btn.cds--skeleton::before{\n animation:none;\n }\n}\n@media screen and (-ms-high-contrast: active), (forced-colors: active){\n :host .cds--btn.cds--skeleton{\n background:CanvasText;\n }\n :host .cds--btn.cds--skeleton::before{\n background:Canvas;\n forced-color-adjust:none;\n }\n}\n:host .cds--btn.cds--skeleton{\n inline-size:9.375rem;\n}\n:host .cds--btn-set{\n display:flex;\n}\n:host .cds--btn-set--stacked{\n flex-direction:column;\n}\n:host .cds--btn-set .cds--btn{\n inline-size:100%;\n max-inline-size:12.25rem;\n}\n:host .cds--btn-set .cds--btn:not(:focus){\n box-shadow:-0.0625rem 0 0 0 var(--cds-button-separator, #e0e0e0);\n}\n:host .cds--btn-set .cds--btn:first-of-type:not(:focus){\n box-shadow:inherit;\n}\n:host .cds--btn-set .cds--btn:focus + .cds--btn{\n box-shadow:inherit;\n}\n:host .cds--btn-set--stacked .cds--btn:not(:focus){\n box-shadow:0 -0.0625rem 0 0 var(--cds-button-separator, #e0e0e0);\n}\n:host .cds--btn-set--stacked .cds--btn:first-of-type:not(:focus){\n box-shadow:inherit;\n}\n:host .cds--btn-set .cds--btn.cds--btn--disabled{\n box-shadow:-0.0625rem 0 0 0 var(--cds-icon-on-color-disabled, #8d8d8d);\n}\n:host .cds--btn-set .cds--btn.cds--btn--disabled:first-of-type{\n box-shadow:none;\n}\n:host .cds--btn-set--stacked .cds--btn.cds--btn--disabled{\n box-shadow:0 -0.0625rem 0 0 var(--cds-layer-selected-disabled, #8d8d8d);\n}\n:host .cds--btn-set--stacked .cds--btn.cds--btn--disabled:first-of-type{\n box-shadow:none;\n}\n:host .cds--btn-set .cds--btn.cds--btn--loading{\n border-color:transparent;\n background-color:transparent;\n box-shadow:none;\n}\n:host .cds--btn--sm .cds--badge-indicator{\n margin-block-start:0.25rem;\n margin-inline-end:0.25rem;\n}\n@media screen and (-ms-high-contrast: active), (forced-colors: active){\n :host .cds--btn:focus{\n color:Highlight;\n outline:1px solid Highlight;\n }\n}\n:host [dir=rtl] .cds--btn-set .cds--btn:not(:focus){\n box-shadow:0.0625rem 0 0 0 var(--cds-button-separator, #e0e0e0);\n}\n:host .cds--btn-set--fluid{\n container-type:inline-size;\n}\n:host .cds--btn-set--fluid .cds--btn-set__fluid-inner{\n --flex-direction:row;\n display:flex;\n flex-direction:var(--flex-direction);\n align-items:stretch;\n justify-content:flex-end;\n inline-size:100%;\n}\n:host .cds--btn-set--fluid .cds--btn-set__fluid-inner .cds--btn{\n flex:0 1 25%;\n max-inline-size:14.5rem;\n}\n:host .cds--btn-set--fluid .cds--btn-set__fluid-inner--auto-stack .cds--btn{\n min-inline-size:11rem;\n}\n:host .cds--btn-set--fluid .cds--btn-set__fluid-inner .cds--btn--ghost,\n:host .cds--btn-set--fluid .cds--btn-set__fluid-inner .cds--btn--danger--ghost{\n flex:1 1 25%;\n max-inline-size:none;\n padding-inline-start:2rem;\n}\n@container (width <= 11rem){\n :host .cds--btn-set--fluid .cds--btn-set__fluid-inner--auto-stack:has(:nth-child(1):last-child){\n --flex-direction:column;\n }\n :host .cds--btn-set--fluid .cds--btn-set__fluid-inner--auto-stack:has(:nth-child(1):last-child) .cds--btn{\n flex:initial;\n inline-size:100%;\n max-inline-size:none;\n }\n :host .cds--btn-set--fluid .cds--btn-set__fluid-inner--auto-stack:has(:nth-child(1):last-child) .cds--btn--ghost{\n padding-inline-start:1rem;\n }\n}\n@container (width <= 22rem){\n :host .cds--btn-set--fluid .cds--btn-set__fluid-inner--auto-stack:has(:nth-child(2):last-child){\n --flex-direction:column;\n }\n :host .cds--btn-set--fluid .cds--btn-set__fluid-inner--auto-stack:has(:nth-child(2):last-child) .cds--btn{\n flex:initial;\n inline-size:100%;\n max-inline-size:none;\n }\n :host .cds--btn-set--fluid .cds--btn-set__fluid-inner--auto-stack:has(:nth-child(2):last-child) .cds--btn--ghost{\n padding-inline-start:1rem;\n }\n}\n@container (width <= 33rem){\n :host .cds--btn-set--fluid .cds--btn-set__fluid-inner--auto-stack:has(:nth-child(3):last-child){\n --flex-direction:column;\n }\n :host .cds--btn-set--fluid .cds--btn-set__fluid-inner--auto-stack:has(:nth-child(3):last-child) .cds--btn{\n flex:initial;\n inline-size:100%;\n max-inline-size:none;\n }\n :host .cds--btn-set--fluid .cds--btn-set__fluid-inner--auto-stack:has(:nth-child(3):last-child) .cds--btn--ghost{\n padding-inline-start:1rem;\n }\n}\n@container (width <= 44rem){\n :host .cds--btn-set--fluid .cds--btn-set__fluid-inner--auto-stack:has(:nth-child(4):last-child){\n --flex-direction:column;\n }\n :host .cds--btn-set--fluid .cds--btn-set__fluid-inner--auto-stack:has(:nth-child(4):last-child) .cds--btn{\n flex:initial;\n inline-size:100%;\n max-inline-size:none;\n }\n :host .cds--btn-set--fluid .cds--btn-set__fluid-inner--auto-stack:has(:nth-child(4):last-child) .cds--btn--ghost{\n padding-inline-start:1rem;\n }\n}\n@container (width <= 44rem){\n :host .cds--btn-set--fluid .cds--btn-set__fluid-inner:has(:nth-child(2):last-child) .cds--btn{\n flex-basis:50%;\n max-inline-size:none;\n }\n}\n@container (width <= 33rem){\n :host .cds--btn-set--fluid .cds--btn-set__fluid-inner:has(:nth-child(1):last-child) .cds--btn{\n flex:1 1 100%;\n max-inline-size:none;\n }\n}\n:host .cds-aichat--response-user-avatar img{\n block-size:100%;\n inline-size:100%;\n}\n:host .cds-aichat--response-user-avatar svg{\n fill:currentcolor;\n}\n:host .cds-aichat--response-user-avatar .cds-aichat--response-user-avatar__circle{\n border:2px solid currentcolor;\n border-radius:50%;\n background-color:transparent;\n font-weight:bold;\n}\n:host .cds-aichat--response-user-avatar .cds-aichat--response-user-avatar__circle .cds-aichat--response-user-avatar__letter{\n display:flex;\n align-items:center;\n justify-content:center;\n block-size:100%;\n text-align:center;\n}\n:host{\n}\n:host .cds-aichat--human-agent-banner__body{\n display:flex;\n align-items:center;\n padding:1rem;\n background-color:var(--cds-chat-shell-background, #ffffff);\n border-block-end:1px solid var(--cds-border-subtle-01, #c6c6c6);\n font-size:var(--cds-body-01-font-size, 0.875rem);\n font-weight:var(--cds-body-01-font-weight, 400);\n line-height:var(--cds-body-01-line-height, 1.42857);\n letter-spacing:var(--cds-body-01-letter-spacing, 0.16px);\n}\n:host .cds-aichat--widget--max-width .cds-aichat--human-agent-banner__body{\n margin:0 auto;\n max-inline-size:var(--cds-aichat-messages-max-width, 672px);\n}\n:host .cds-aichat--human-agent-banner .cds-aichat--response-user-avatar{\n margin:0 0.75rem 0 0;\n block-size:32px;\n inline-size:32px;\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--human-agent-banner .cds-aichat--response-user-avatar{\n margin:0 0 0 0.75rem;\n}\n:host .cds-aichat--human-agent-banner .cds-aichat--response-user-avatar img{\n border-radius:16px;\n}\n:host .cds-aichat--human-agent-banner__human-agent-info{\n display:flex;\n flex:1;\n flex-direction:column;\n justify-content:center;\n padding:0 1rem 0 0;\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--human-agent-banner__human-agent-info{\n padding:0 0 0 1rem;\n}\n:host .cds-aichat--human-agent-banner__human-agent-line1{\n font-weight:600;\n}\n:host .cds-aichat--human-agent-banner--connected .cds-aichat--agent-banner__agent-line1{\n font-size:var(--cds-body-02-font-size, 1rem);\n font-weight:var(--cds-body-02-font-weight, 400);\n line-height:var(--cds-body-02-line-height, 1.5);\n letter-spacing:var(--cds-body-02-letter-spacing, 0);\n}\n:host .cds-aichat--human-agent-banner__human-agent-line2{\n padding-block-start:0.25rem;\n}\n:host .cds-aichat--human-agent-banner__human-agent-line2,\n:host .cds-aichat--human-agent-banner__human-agent-line2 p{\n font-size:var(--cds-body-01-font-size, 0.875rem);\n font-weight:var(--cds-body-01-font-weight, 400);\n line-height:var(--cds-body-01-line-height, 1.42857);\n letter-spacing:var(--cds-body-01-letter-spacing, 0.16px);\n}\n:host .cds-aichat--agent-banner__stop-sharing-button{\n inline-size:100%;\n max-inline-size:unset;\n}\n:host{\n}\n:host .cds-aichat--widget--max-width .cds-aichat--header-bottom-element{\n margin:auto;\n max-inline-size:var(--cds-aichat-messages-max-width, 672px);\n}\n:host .cds-aichat--header__container{\n background-color:var(--cds-chat-shell-background, #ffffff);\n border-start-end-radius:var(--cds-aichat-rounded-modifier-radius-start-end, 0);\n border-start-start-radius:var(--cds-aichat-rounded-modifier-radius-start-start, 0);\n}\n:host .cds-aichat--header{\n display:flex;\n box-sizing:unset;\n justify-content:center;\n background-color:var(--cds-chat-header-background, #ffffff);\n block-size:40px;\n border-block-end:1px solid var(--cds-border-subtle-00, #e0e0e0);\n border-start-end-radius:var(--cds-aichat-rounded-modifier-radius-start-end, 0);\n border-start-start-radius:var(--cds-aichat-rounded-modifier-radius-start-start, 0);\n inline-size:100%;\n font-size:var(--cds-body-01-font-size, 0.875rem);\n font-weight:var(--cds-body-01-font-weight, 400);\n line-height:var(--cds-body-01-line-height, 1.42857);\n letter-spacing:var(--cds-body-01-letter-spacing, 0.16px);\n}\n:host .cds-aichat--header--content{\n position:relative;\n display:flex;\n border-start-end-radius:var(--cds-aichat-rounded-modifier-radius-start-end, 0);\n border-start-start-radius:var(--cds-aichat-rounded-modifier-radius-start-start, 0);\n inline-size:100%;\n}\n:host .cds-aichat--widget--max-width .cds-aichat--header--content{\n max-inline-size:var(--cds-aichat-messages-max-width, 672px);\n}\n:host .cds-aichat--header__buttons{\n display:flex;\n align-items:center;\n}\n:host .cds-aichat--header__buttons .cds-aichat--header__slug{\n margin:0.5rem;\n}\n:host .cds-aichat--header__center-container{\n display:flex;\n overflow:hidden;\n flex:1;\n align-items:center;\n margin:0 0.25rem;\n}\n:host .cds-aichat--header__center-container:first-child{\n margin:0 1rem;\n}\n:host .cds-aichat--header__slug-description{\n font-size:var(--cds-body-01-font-size, 0.875rem);\n font-weight:var(--cds-body-01-font-weight, 400);\n line-height:var(--cds-body-01-line-height, 1.42857);\n letter-spacing:var(--cds-body-01-letter-spacing, 0.16px);\n}\n:host .cds-aichat--header__slug-label{\n color:var(--cds-text-secondary, #525252);\n padding-block-end:0.75rem;\n font-size:var(--cds-body-compact-01-font-size, 0.875rem);\n font-weight:var(--cds-body-compact-01-font-weight, 400);\n line-height:var(--cds-body-compact-01-line-height, 1.28572);\n letter-spacing:var(--cds-body-compact-01-letter-spacing, 0.16px);\n}\n:host .cds-aichat--header__slug-title{\n padding-block-end:0.75rem;\n}\n:host .cds-aichat--header__overflow-menu{\n max-block-size:488px;\n}\n:host .cds-aichat--header__overflow-menu svg,\n:host .cds-aichat--header__back-button svg,\n:host .cds-aichat--header__restart-button svg,\n:host .cds-aichat--header__close-button svg{\n block-size:16px;\n inline-size:16px;\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--home-screen-header button.cds-aichat--header__back-button{\n transform:none;\n}\n:host .cds-aichat--header--with-avatar .cds-aichat--header__center-container{\n margin-inline-start:0;\n}\n:host .cds-aichat--header__left-items,\n:host .cds-aichat--chat-header-overflow-menu__host-element,\n:host .cds-aichat--header__title-container{\n max-inline-size:100%;\n}\n:host .cds-aichat--header__left-items :first-child{\n border-start-start-radius:var(--cds-aichat-rounded-modifier-radius-start-start, 0);\n}\n:host .cds-aichat--header__left-items :first-child::part(button){\n border-start-start-radius:var(--cds-aichat-rounded-modifier-radius-start-start, 0);\n}\n:host .cds-aichat--header__right-buttons :last-child::part(button){\n border-start-end-radius:var(--cds-aichat-rounded-modifier-radius-start-end, 0);\n}\n:host cds-aichat-chat-header-avatar{\n align-self:center;\n margin-inline:0.5rem;\n}\n:host cds-aichat-chat-header-avatar + .cds-aichat--header__separator{\n margin-inline-start:0.5rem;\n}\n:host .cds-aichat--wide-width.cds-aichat--widget--max-width .cds-aichat--header__center-container:first-child{\n margin:0 1rem 0 0;\n}\n:host .cds-aichat--header--with-avatar .cds-aichat--header__center-container:first-child > cds-aichat-chat-header-avatar{\n margin-inline-start:0.75rem;\n}\n:host .cds-aichat--header--with-avatar .cds-aichat--header__center-container:first-child > cds-aichat-chat-header-avatar .cds-aichat--container--render .cds-aichat--reverse-icon svg{\n transform:scaleX(-1);\n}\n:host .cds-aichat--header--with-avatar .cds-aichat--header__center-container:first-child > cds-aichat-chat-header-avatar .cds-aichat--container--render[dir=rtl] .cds-aichat--reverse-icon svg{\n transform:scaleX(1);\n}\n:host{\n}\n:host .cds-aichat--input-and-completions{\n position:relative;\n border-end-end-radius:var(--cds-aichat-rounded-modifier-radius-end-end, 0);\n border-end-start-radius:var(--cds-aichat-rounded-modifier-radius-end-start, 0);\n inline-size:100%;\n}\n:host .cds-aichat--input-container{\n position:relative;\n z-index:1;\n display:flex;\n box-sizing:border-box;\n align-items:center;\n background-color:var(--cds-chat-prompt-background, #ffffff);\n border-block-start:1px solid var(--cds-border-subtle-01, #c6c6c6);\n border-end-end-radius:var(--cds-aichat-rounded-modifier-radius-end-end, 0);\n border-end-start-radius:var(--cds-aichat-rounded-modifier-radius-end-start, 0);\n color:var(--cds-text-primary, #161616);\n inline-size:100%;\n min-block-size:0;\n outline:2px solid transparent;\n outline-offset:-2px;\n padding-block:0.75rem;\n padding-inline:1rem 0.5rem;\n}\n:host .cds-aichat--container--render.cds-aichat--container-disable-mobile-enhancements .cds-aichat--widget--max-width .cds-aichat--input-and-completions,\n:host .cds-aichat--container--render:not(.cds-aichat--is-phone-portrait-mode) .cds-aichat--widget--max-width .cds-aichat--input-and-completions{\n margin:0 auto;\n max-inline-size:var(--cds-aichat-messages-max-width, 672px);\n}\n:host .cds-aichat--container--render.cds-aichat--container-disable-mobile-enhancements .cds-aichat--widget--max-width .cds-aichat--input-container,\n:host .cds-aichat--container--render:not(.cds-aichat--is-phone-portrait-mode) .cds-aichat--widget--max-width .cds-aichat--input-container{\n border:1px solid var(--cds-border-subtle-00, #e0e0e0);\n border-radius:0.5rem;\n}\n:host .cds-aichat--ai-theme .cds-aichat--input-container{\n border:1px solid transparent;\n background:linear-gradient(to bottom, var(--cds-chat-prompt-background, #ffffff), var(--cds-chat-prompt-background, #ffffff)) padding-box, linear-gradient(to bottom, var(--cds-border-subtle-00, #e0e0e0), var(--cds-chat-prompt-background, #ffffff)) border-box;\n}\n:host .cds-aichat--input-container--show-upload-button{\n padding-inline-start:0.5rem;\n}\n:host .cds-aichat--input-container__text-and-upload{\n display:flex;\n align-items:center;\n}\n:host .cds-aichat--input-container__text-and-upload > *:not(:last-child),\n:host .cds-aichat--input-container > *:not(:last-child){\n margin-inline-end:0.5rem;\n}\n:host .cds-aichat--input-container__files-container{\n overflow:auto;\n margin-block-start:0.5rem;\n max-block-size:200px;\n}\n:host .cds-aichat--input-container__files-container cds-file-uploader-item{\n margin-block-end:0;\n}\n:host .cds-aichat--input-container__upload-button-container{\n display:inline-block;\n inline-size:32px;\n vertical-align:top;\n}\n:host .cds-aichat--input-container .cds-aichat--input-container__upload-button{\n display:flex;\n align-items:center;\n justify-content:center;\n block-size:32px;\n color:var(--cds-text-primary, #161616);\n cursor:pointer;\n inline-size:32px;\n}\n:host .cds-aichat--input-container__upload-input:focus + .cds-aichat--input-container__upload-button{\n box-shadow:inset 0 0 0 2px var(--cds-focus, #0f62fe);\n}\n:host .cds-aichat--input-container__upload-button:hover{\n background-color:var(--cds-background-hover, rgba(141, 141, 141, 0.12));\n}\n:host .cds-aichat--input-container__upload-button:active{\n background-color:var(--cds-background-active, rgba(141, 141, 141, 0.5));\n}\n:host .cds-aichat--input-container .cds-aichat--input-container__upload-button--disabled{\n cursor:default;\n opacity:0.5;\n}\n:host label.cds-aichat--input-container__upload-button--disabled:hover{\n background-color:transparent;\n}\n:host .cds-aichat--input-container__left-container{\n position:relative;\n display:flex;\n overflow:hidden;\n flex:1 0;\n flex-direction:column;\n justify-content:center;\n block-size:100%;\n}\n:host .cds-aichat--input-container--has-focus{\n outline-color:var(--cds-focus, #0f62fe);\n}\n:host .cds-aichat--input-container .cds-aichat--input-container__left-container .cds-aichat--text-area .cds-aichat--text-area-textarea{\n border:none;\n}\n:host .cds-aichat--assistant-container .cds-aichat--input-container{\n display:flex;\n}\n:host .cds-aichat--input-container .cds-aichat--text-area{\n display:inline-block;\n overflow:hidden;\n font-size:var(--cds-body-01-font-size, 0.875rem);\n font-weight:var(--cds-body-01-font-weight, 400);\n line-height:var(--cds-body-01-line-height, 1.42857);\n letter-spacing:var(--cds-body-01-letter-spacing, 0.16px);\n inline-size:100%;\n min-block-size:0;\n}\n:host .cds-aichat--input-container--show-upload-button .cds-aichat--text-area{\n inline-size:calc(100% - 32px);\n}\n:host .cds-aichat--input-container .cds-aichat--text-area .cds-aichat--text-area-textarea{\n position:relative;\n display:block;\n border:none;\n margin:0;\n background:transparent;\n color:var(--cds-text-primary, #161616);\n}\n:host .cds-aichat--input-container .cds-aichat--text-area .cds-aichat--text-area-textarea,\n:host .cds-aichat--input-container .cds-aichat--text-area .cds-aichat--text-area-sizer{\n max-block-size:157px;\n}\n:host .cds-aichat--input-container .cds-aichat--text-area .cds-aichat--text-area-textarea[data-has-content=false]::before{\n position:absolute;\n color:var(--cds-text-placeholder, rgba(22, 22, 22, 0.4));\n content:attr(data-placeholder);\n inset:0;\n pointer-events:none;\n white-space:pre-wrap;\n word-wrap:break-word;\n font-size:var(--cds-body-02-font-size, 1rem);\n font-weight:var(--cds-body-02-font-weight, 400);\n line-height:var(--cds-body-02-line-height, 1.5);\n letter-spacing:var(--cds-body-02-letter-spacing, 0);\n}\n:host .cds-aichat--input-container__send-button-container,\n:host .cds-aichat--input-container__upload-button-container{\n display:flex;\n flex:0 1;\n align-self:flex-start;\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--input-container__send-button svg{\n transform:scale(-1, 1);\n}\n:host cds-button.cds-aichat--input-container__send-button svg{\n block-size:1rem;\n cursor:inherit;\n fill:var(--cds-interactive, #0f62fe);\n inline-size:1rem;\n}\n:host cds-button.cds-aichat--input-container__send-button:active svg,\n:host cds-button.cds-aichat--input-container__send-button:focus svg,\n:host cds-button.cds-aichat--input-container__send-button:active:focus svg{\n fill:var(--cds-interactive, #0f62fe);\n}\n:host cds-button.cds-aichat--input-container__send-button[disabled]:hover svg,\n:host cds-button.cds-aichat--input-container__send-button[disabled] svg{\n fill:var(--cds-icon-disabled, rgba(22, 22, 22, 0.25));\n}\n:host .cds-aichat--before-input-element{\n margin:auto;\n max-inline-size:var(--cds-aichat-messages-max-width, 672px);\n}\n:host{\n}\n:host .cds-aichat--launcher__button-container{\n position:fixed;\n z-index:var(--cds-aichat-z-index, 99999);\n border-radius:28px;\n animation:cds-aichat-launcher-in 150ms cubic-bezier(0, 0, 0.3, 1) both;\n background-color:var(--cds-background, #ffffff);\n block-size:var(--cds-aichat-launcher-default-size, 56px);\n box-shadow:var(--cds-aichat-box-shadow, 1px 0 4px hsla(0, 0%, 9%, 0.3));\n font-family:var(--cds-aichat-font-family, \"IBM Plex Sans\", \"Helvetica Neue\", arial, sans-serif);\n inline-size:var(--cds-aichat-launcher-default-size, 56px);\n inset-block-end:var(--cds-aichat-launcher-position-bottom, 3rem);\n inset-inline-end:var(--cds-aichat-launcher-position-right, 2rem);\n transition:inline-size 240ms cubic-bezier(0.2, 0, 0.38, 0.9);\n}\n:host .cds-aichat--launcher__button-container--hidden{\n visibility:hidden;\n}\n:host .cds-aichat--count-indicator{\n position:absolute;\n display:flex;\n align-items:center;\n justify-content:center;\n padding:0 4px;\n border-radius:10px;\n background-color:var(--cds-aichat-unread-indicator-color-background, var(--cds-support-error, #da1e28));\n box-shadow:1px 0.125rem 0.125rem rgba(23, 23, 23, 0.3);\n color:var(--cds-aichat-unread-indicator-color-text, var(--cds-text-on-color, #ffffff));\n inset-block-start:calc(-1 * 0.25rem);\n inset-inline-end:calc(-1 * 0.25rem);\n min-block-size:20px;\n min-inline-size:20px;\n font-size:var(--cds-caption-01-font-size, 0.75rem);\n font-weight:var(--cds-caption-01-font-weight, 400);\n line-height:var(--cds-caption-01-line-height, 1.33333);\n letter-spacing:var(--cds-caption-01-letter-spacing, 0.32px);\n}\n:host cds-button.cds-aichat--launcher__button::part(button){\n position:static;\n display:flex;\n align-items:center;\n justify-content:center;\n padding:0;\n border-radius:28px;\n background-color:var(--cds-aichat-launcher-color-background, var(--cds-button-primary, #0f62fe));\n block-size:var(--cds-aichat-launcher-default-size, 56px);\n inline-size:var(--cds-aichat-launcher-default-size, 56px);\n transition:inline-size 240ms cubic-bezier(0.2, 0, 0.38, 0.9), background 250ms ease-in-out, transform 150ms ease;\n}\n:host cds-button.cds-aichat--launcher__button::part(button) svg{\n block-size:24px;\n fill:var(--cds-aichat-launcher-color-avatar, var(--cds-text-on-color, #ffffff));\n inline-size:24px;\n}\n:host cds-button.cds-aichat--launcher__button::part(button):focus{\n border-width:2px;\n box-shadow:inset 0 0 0 2px var(--cds-aichat-launcher-color-focus-border, var(--cds-text-on-color, #ffffff));\n}\n:host .cds-aichat--launcher__svg{\n fill:currentcolor;\n}\n:host .cds-aichat--launcher__avatar{\n border-radius:50%;\n block-size:32px;\n inline-size:32px;\n -webkit-user-select:none;\n -moz-user-select:none;\n user-select:none;\n}\n:host .cds-aichat--launcher__wrapper{\n display:flex;\n}\n:host .cds-aichat--launcher__icon-holder{\n display:flex;\n align-items:center;\n}\n:host .cds-aichat--launcher-extended__text-holder{\n overflow:hidden;\n flex:1;\n padding:0.75rem 0 0.75rem 0.75rem;\n inline-size:0;\n text-align:start;\n}\n:host .cds-aichat--launcher-extended__greeting{\n display:flex;\n align-items:center;\n block-size:100%;\n color:var(--cds-aichat-launcher-mobile-color-text, var(--cds-text-on-color, #ffffff));\n inline-size:calc(100% - 12px);\n inset-block-end:0;\n opacity:0;\n word-break:break-word;\n font-size:var(--cds-body-01-font-size, 0.875rem);\n font-weight:var(--cds-body-01-font-weight, 400);\n line-height:var(--cds-body-01-line-height, 1.42857);\n letter-spacing:var(--cds-body-01-letter-spacing, 0.16px);\n}\n:host .cds-aichat--launcher-extended__greeting-text{\n display:-webkit-box;\n overflow:hidden;\n -webkit-box-orient:vertical;\n -webkit-line-clamp:2;\n line-clamp:2;\n text-overflow:ellipsis;\n}\n:host .cds-aichat--launcher__skip-link{\n position:absolute;\n overflow:hidden;\n padding:0;\n border:0;\n margin:-1px;\n block-size:1px;\n clip:rect(0 0 0 0);\n inline-size:1px;\n white-space:nowrap;\n}\n:host .cds-aichat--launcher__skip-link:focus{\n position:static;\n padding:0.125rem 0.25rem;\n border-radius:999px;\n margin:0 0 0.25rem 0;\n background:var(--cds-background-inverse, #393939);\n block-size:auto;\n clip:auto;\n color:var(--cds-text-on-color, #ffffff);\n inline-size:auto;\n white-space:normal;\n}\n:host cds-button.cds-aichat--launcher-extended__close-button{\n position:absolute;\n z-index:2;\n inset-block-start:-24px;\n inset-inline-end:0;\n transform:translate(50%, 50%);\n}\n:host cds-button.cds-aichat--launcher-extended__close-button::part(button){\n padding:0;\n border-radius:50%;\n block-size:24px;\n inline-size:24px;\n}\n:host{\n}\n@keyframes cds-aichat-launcher-opening-text-holder{\n from{\n inline-size:0;\n }\n to{\n inline-size:var(--cds-aichat-launcher-extended-width, 280px);\n }\n}\n@keyframes cds-aichat-launcher-closing-text-holder{\n from{\n inline-size:var(--cds-aichat-launcher-extended-width, 280px);\n }\n to{\n inline-size:0;\n }\n}\n@keyframes cds-aichat-launcher-opening-greeting{\n from{\n opacity:0;\n }\n to{\n opacity:1;\n }\n}\n@keyframes cds-aichat-launcher-closing-greeting{\n from{\n opacity:1;\n }\n to{\n opacity:0;\n }\n}\n:host{\n}\n:host .cds-aichat--launcher__button-container--opening .cds-aichat--launcher-extended__text-holder{\n animation:cds-aichat-launcher-opening-text-holder 240ms cubic-bezier(0.2, 0, 0.38, 0.9) forwards;\n}\n:host .cds-aichat--launcher__button-container--opening .cds-aichat--launcher-extended__greeting{\n animation:cds-aichat-launcher-opening-greeting 70ms cubic-bezier(0.2, 0, 0.38, 0.9) forwards;\n animation-delay:240ms;\n}\n:host{\n}\n:host .cds-aichat--launcher__button-container--open .cds-aichat--launcher-extended__text-holder{\n inline-size:var(--cds-aichat-launcher-extended-width, 280px);\n}\n:host .cds-aichat--launcher__button-container--open .cds-aichat--launcher-extended__greeting{\n opacity:1;\n}\n:host{\n}\n:host .cds-aichat--launcher__button-container--closing .cds-aichat--launcher-extended__greeting{\n animation:cds-aichat-launcher-closing-greeting 70ms cubic-bezier(0.2, 0, 0.38, 0.9) forwards;\n}\n:host .cds-aichat--launcher__button-container--closing .cds-aichat--launcher-extended__text-holder{\n animation:cds-aichat-launcher-closing-text-holder 240ms cubic-bezier(0.2, 0, 0.38, 0.9) forwards;\n animation-delay:70ms;\n}\n:host{\n}\n:host .cds-aichat--launcher__button-container--closed .cds-aichat--launcher-extended__text-holder{\n display:none;\n inline-size:0;\n}\n:host .cds-aichat--launcher__button-container--closed .cds-aichat--launcher-extended__greeting{\n opacity:0;\n}\n:host .cds-aichat--launcher__button-container--closed .cds-aichat--launcher-extended__close-button{\n display:none;\n}\n:host{\n}\n:host .cds-aichat--launcher__button-container--opening,\n:host .cds-aichat--launcher__button-container--open{\n inline-size:calc(var(--cds-aichat-launcher-extended-width, 280px) + var(--cds-aichat-launcher-default-size, 56px));\n}\n:host .cds-aichat--launcher__button-container--opening cds-button.cds-aichat--launcher__button::part(button),\n:host .cds-aichat--launcher__button-container--open cds-button.cds-aichat--launcher__button::part(button){\n inline-size:calc(var(--cds-aichat-launcher-extended-width, 280px) + var(--cds-aichat-launcher-default-size, 56px));\n}\n:host{\n}\n:host .cds-aichat--launcher__button-container--closing,\n:host .cds-aichat--launcher__button-container--closed{\n inline-size:var(--cds-aichat-launcher-default-size, 56px);\n}\n:host .cds-aichat--launcher__button-container--closing cds-button.cds-aichat--launcher__button::part(button),\n:host .cds-aichat--launcher__button-container--closed cds-button.cds-aichat--launcher__button::part(button){\n inline-size:var(--cds-aichat-launcher-default-size, 56px);\n}\n:host [dir=rtl] .cds-aichat--count-indicator{\n inset-inline:calc(-1 * 0.125rem) unset;\n}\n:host [dir=rtl] cds-button.cds-aichat--launcher-extended__close-button{\n transform:translate(-50%, 50%);\n}\n:host [dir=rtl] .cds-aichat--launcher__button-container .cds-aichat--launcher-extended__wrapper{\n inset-inline:0 unset;\n}\n:host [dir=rtl] .cds-aichat--launcher__button-container .cds-aichat--launcher-extended__text-holder{\n padding:0.75rem 0.75rem 0.75rem 0;\n}\n@keyframes cds-aichat-launcher-in{\n 0%{\n inset-block-end:calc(var(--cds-aichat-launcher-position-bottom, 3rem) - 1rem);\n opacity:0;\n }\n 100%{\n inset-block-end:var(--cds-aichat-launcher-position-bottom, 3rem);\n opacity:1;\n }\n}\n:host{\n}\n@media (prefers-reduced-motion: reduce){\n :host .cds-aichat--launcher__button-container{\n animation-duration:70ms;\n transition:none;\n }\n :host{\n }\n :host .cds-aichat--launcher__button-container--opening .cds-aichat--launcher-extended__text-holder,\n :host .cds-aichat--launcher__button-container--opening .cds-aichat--launcher-extended__greeting{\n animation-delay:0ms;\n animation-duration:70ms;\n }\n :host .cds-aichat--launcher__button-container--closing .cds-aichat--launcher-extended__text-holder,\n :host .cds-aichat--launcher__button-container--closing .cds-aichat--launcher-extended__greeting{\n animation-delay:0ms;\n animation-duration:70ms;\n }\n :host{\n }\n :host cds-button.cds-aichat--launcher__button::part(button){\n transition:background 250ms ease-in-out, transform 150ms ease;\n }\n}\n:host{\n}\n:host .cds-aichat--max-width-small{\n max-inline-size:291px;\n}\n:host .cds-aichat--max-width-medium{\n max-inline-size:438px;\n}\n:host .cds-aichat--max-width-large{\n max-inline-size:585px;\n}\n:host{\n}\n:host .cds-aichat--connect-to-human-agent{\n max-inline-size:var(--cds-aichat-card-max-width, 424px);\n}\n:host .cds-aichat--connect-to-human-agent__title{\n font-size:var(--cds-heading-02-font-size, 1rem);\n font-weight:var(--cds-heading-02-font-weight, 600);\n line-height:var(--cds-heading-02-line-height, 1.5);\n letter-spacing:var(--cds-heading-02-letter-spacing, 0);\n padding-block-end:0.25rem;\n}\n:host .cds-aichat--connect-to-human-agent__text{\n padding-block-end:1.5rem;\n}\n:host .cds-aichat--connect-to-agent__text p,\n:host .cds-aichat--connect-to-human-agent__request-button svg{\n margin-inline-start:2rem;\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--connect-to-human-agent__request-button svg{\n margin-inline:0 2rem;\n transform:scaleX(-1);\n}\n:host .cds-aichat--message .cds-aichat--connect-to-human-agent__warning a,\n:host .cds-aichat--message .cds-aichat--connect-to-human-agent__warning a:visited{\n color:var(--cds-link-inverse, #78a9ff);\n}\n:host .cds-aichat--connect-to-human-agent__suspended-warning{\n color:var(--cds-support-error, #da1e28);\n padding-block-start:0.75rem;\n}\n:host{\n}\n:host .cds-aichat--card-message-component{\n overflow:hidden;\n padding:0;\n}\n:host{\n}\n:host .cds-aichat-preview-card__sm{\n max-inline-size:18.1875rem;\n}\n:host .cds-aichat-preview-card [slot=body]{\n padding:1rem;\n}\n:host .cds-aichat-preview-card [slot=body] .cds-aichat-preview-card--title{\n font-size:var(--cds-body-compact-02-font-size, 1rem);\n font-weight:var(--cds-body-compact-02-font-weight, 400);\n line-height:var(--cds-body-compact-02-line-height, 1.375);\n letter-spacing:var(--cds-body-compact-02-letter-spacing, 0);\n margin-block-end:0.125rem;\n}\n:host .cds-aichat-preview-card [slot=body] .cds-aichat-preview-card--subtitle{\n font-size:var(--cds-helper-text-01-font-size, 0.75rem);\n line-height:var(--cds-helper-text-01-line-height, 1.33333);\n letter-spacing:var(--cds-helper-text-01-letter-spacing, 0.32px);\n color:var(--cds-text-secondary, #525252);\n}\n:host{\n}\n:host :root{\n --swiper-theme-color:#007aff;\n}\n:host :host{\n position:relative;\n display:block;\n margin-left:auto;\n margin-right:auto;\n z-index:1;\n}\n:host .swiper{\n margin-left:auto;\n margin-right:auto;\n position:relative;\n overflow:hidden;\n list-style:none;\n padding:0;\n z-index:1;\n display:block;\n}\n:host .swiper-vertical > .swiper-wrapper{\n flex-direction:column;\n}\n:host .swiper-wrapper{\n position:relative;\n width:100%;\n height:100%;\n z-index:1;\n display:flex;\n transition-property:transform;\n transition-timing-function:var(--swiper-wrapper-transition-timing-function, initial);\n box-sizing:content-box;\n}\n:host .swiper-android .swiper-slide,\n:host .swiper-ios .swiper-slide,\n:host .swiper-wrapper{\n transform:translate3d(0px, 0, 0);\n}\n:host .swiper-horizontal{\n touch-action:pan-y;\n}\n:host .swiper-vertical{\n touch-action:pan-x;\n}\n:host .swiper-slide{\n flex-shrink:0;\n width:100%;\n height:100%;\n position:relative;\n transition-property:transform;\n display:block;\n}\n:host .swiper-slide-invisible-blank{\n visibility:hidden;\n}\n:host{\n}\n:host .swiper-autoheight,\n:host .swiper-autoheight .swiper-slide{\n height:auto;\n}\n:host .swiper-autoheight .swiper-wrapper{\n align-items:flex-start;\n transition-property:transform, height;\n}\n:host .swiper-backface-hidden .swiper-slide{\n transform:translateZ(0);\n backface-visibility:hidden;\n}\n:host{\n}\n:host .swiper-3d.swiper-css-mode .swiper-wrapper{\n perspective:1200px;\n}\n:host .swiper-3d .swiper-wrapper{\n transform-style:preserve-3d;\n}\n:host .swiper-3d{\n perspective:1200px;\n}\n:host .swiper-3d .swiper-slide,\n:host .swiper-3d .swiper-cube-shadow{\n transform-style:preserve-3d;\n}\n:host{\n}\n:host .swiper-css-mode > .swiper-wrapper{\n overflow:auto;\n scrollbar-width:none;\n -ms-overflow-style:none;\n}\n:host .swiper-css-mode > .swiper-wrapper::-webkit-scrollbar{\n display:none;\n}\n:host .swiper-css-mode > .swiper-wrapper > .swiper-slide{\n scroll-snap-align:start start;\n}\n:host .swiper-css-mode.swiper-horizontal > .swiper-wrapper{\n scroll-snap-type:x mandatory;\n}\n:host .swiper-css-mode.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child{\n margin-inline-start:var(--swiper-slides-offset-before);\n scroll-margin-inline-start:var(--swiper-slides-offset-before);\n}\n:host .swiper-css-mode.swiper-horizontal > .swiper-wrapper > .swiper-slide:last-child{\n margin-inline-end:var(--swiper-slides-offset-after);\n}\n:host .swiper-css-mode.swiper-vertical > .swiper-wrapper{\n scroll-snap-type:y mandatory;\n}\n:host .swiper-css-mode.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child{\n margin-block-start:var(--swiper-slides-offset-before);\n scroll-margin-block-start:var(--swiper-slides-offset-before);\n}\n:host .swiper-css-mode.swiper-vertical > .swiper-wrapper > .swiper-slide:last-child{\n margin-block-end:var(--swiper-slides-offset-after);\n}\n:host .swiper-css-mode.swiper-free-mode > .swiper-wrapper{\n scroll-snap-type:none;\n}\n:host .swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide{\n scroll-snap-align:none;\n}\n:host .swiper-css-mode.swiper-centered > .swiper-wrapper::before{\n content:\"\";\n flex-shrink:0;\n order:9999;\n}\n:host .swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide{\n scroll-snap-align:center center;\n scroll-snap-stop:always;\n}\n:host .swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child{\n margin-inline-start:var(--swiper-centered-offset-before);\n}\n:host .swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before{\n height:100%;\n min-height:1px;\n width:var(--swiper-centered-offset-after);\n}\n:host .swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child{\n margin-block-start:var(--swiper-centered-offset-before);\n}\n:host .swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before{\n width:100%;\n min-width:1px;\n height:var(--swiper-centered-offset-after);\n}\n:host{\n}\n:host .swiper-3d .swiper-slide-shadow,\n:host .swiper-3d .swiper-slide-shadow-left,\n:host .swiper-3d .swiper-slide-shadow-right,\n:host .swiper-3d .swiper-slide-shadow-top,\n:host .swiper-3d .swiper-slide-shadow-bottom,\n:host .swiper-3d .swiper-slide-shadow,\n:host .swiper-3d .swiper-slide-shadow-left,\n:host .swiper-3d .swiper-slide-shadow-right,\n:host .swiper-3d .swiper-slide-shadow-top,\n:host .swiper-3d .swiper-slide-shadow-bottom{\n position:absolute;\n left:0;\n top:0;\n width:100%;\n height:100%;\n pointer-events:none;\n z-index:10;\n}\n:host .swiper-3d .swiper-slide-shadow{\n background:rgba(0, 0, 0, 0.15);\n}\n:host .swiper-3d .swiper-slide-shadow-left{\n background-image:linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));\n}\n:host .swiper-3d .swiper-slide-shadow-right{\n background-image:linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));\n}\n:host .swiper-3d .swiper-slide-shadow-top{\n background-image:linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));\n}\n:host .swiper-3d .swiper-slide-shadow-bottom{\n background-image:linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));\n}\n:host .swiper-lazy-preloader{\n width:42px;\n height:42px;\n position:absolute;\n left:50%;\n top:50%;\n margin-left:-21px;\n margin-top:-21px;\n z-index:10;\n transform-origin:50%;\n box-sizing:border-box;\n border:4px solid var(--swiper-preloader-color, var(--swiper-theme-color));\n border-radius:50%;\n border-top-color:transparent;\n}\n:host .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,\n:host .swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader{\n animation:swiper-preloader-spin 1s infinite linear;\n}\n:host .swiper-lazy-preloader-white{\n --swiper-preloader-color:#fff;\n}\n:host .swiper-lazy-preloader-black{\n --swiper-preloader-color:#000;\n}\n@keyframes swiper-preloader-spin{\n 0%{\n transform:rotate(0deg);\n }\n 100%{\n transform:rotate(360deg);\n }\n}\n:host{\n}\n:host button.cds-aichat--carousel-container__navigation-button,\n:host .cds-aichat--carousel-container__controls{\n display:flex;\n align-items:center;\n color:var(--cds-text-secondary, #525252);\n -moz-column-gap:0.5rem;\n column-gap:0.5rem;\n}\n:host .cds-aichat--carousel-container__navigation{\n display:flex;\n align-items:center;\n justify-content:flex-end;\n inline-size:100%;\n max-inline-size:var(--cds-aichat-card-max-width, 424px);\n}\n:host .cds-aichat--carousel-container__navigation cds-button::part(button){\n color:currentcolor;\n}\n:host .cds-aichat--carousel-container__navigation-button{\n padding:0;\n color:currentcolor;\n inline-size:32px;\n}\n:host .cds-aichat--carousel-container__navigation-button:first-of-type{\n margin-inline-end:0.5rem;\n}\n:host .cds-aichat--carousel-container__navigation-button:last-of-type{\n margin-inline-start:0.5rem;\n}\n:host button.cds-aichat--carousel-container__navigation-button > svg{\n fill:var(--cds-text-secondary, #525252);\n}\n:host .swiper .cds-aichat--body-message-components{\n flex:1;\n}\n:host .cds-aichat--carousel-container__slide--wide.swiper-slide{\n max-inline-size:100%;\n}\n:host .cds-aichat--carousel-container__controls--standard,\n:host .cds-aichat--carousel-container__controls--wide{\n padding-block-start:0.5rem;\n padding-inline:12px 16px;\n}\n:host .cds-aichat--carousel-container--one-slide{\n max-inline-size:var(--cds-aichat-card-max-width, 424px);\n}\n:host .swiper,\n:host .swiper-wrapper{\n z-index:unset;\n}\n:host .swiper-wrapper{\n align-items:stretch;\n block-size:unset;\n}\n:host .swiper-wrapper .swiper-slide{\n block-size:unset;\n}\n:host .swiper-slide,\n:host .swiper-slide > *{\n max-inline-size:var(--cds-aichat-card-max-width, 424px);\n}\n:host{\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--conversational-search-citations{\n animation:none;\n padding-block-start:16px;\n }\n}\n:host .cds-aichat--conversational-search-citations{\n animation:400ms cubic-bezier(0, 0, 0.3, 1) cds-chat-fade-in both;\n padding-block-start:16px;\n}\n:host .cds-aichat--conversational-search-citations .swiper-slide{\n block-size:unset;\n}\n:host .cds-aichat--conversational-search .cds-aichat--carousel-container__controls{\n padding-block-end:0;\n}\n:host .cds-aichat--standard-width .cds-aichat--conversational-search .cds-aichat--carousel-container--one-slide,\n:host .cds-aichat--wide-width .cds-aichat--conversational-search .cds-aichat--carousel-container--one-slide,\n:host .cds-aichat--wide-width .cds-aichat--conversational-search-disclaimer,\n:host .cds-aichat--standard-width .cds-aichat--conversational-search-disclaimer{\n margin-inline:56px 16px;\n}\n:host .cds-aichat--narrow-width .cds-aichat--conversational-search .cds-aichat--carousel-container--one-slide,\n:host .cds-aichat--narrow-width .cds-aichat--conversational-search-disclaimer{\n margin-inline:16px;\n}\n:host{\n}\n:host .cds-aichat--conversational-search-text__CitationsToggleContainer{\n padding-block-start:0.75rem;\n}\n:host .cds-aichat--narrow-width .cds-aichat--received--conversational-search .cds-aichat--received--feedback,\n:host .cds-aichat--narrow-width .cds-aichat--conversational-search-text{\n margin-inline-start:16px;\n}\n:host .cds-aichat--conversational-search-text__citations-toggle-container{\n display:block;\n padding-block-start:0.25rem;\n}\n:host .cds-aichat--conversational-search-text__citations-toggle{\n margin:0;\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--conversational-search-text__segment:nth-last-child(1 of .cds-aichat--conversational-search-text__segment){\n margin-inline:0.25rem 0;\n}\n:host{\n}\n:host .cds-aichat--date-picker__confirm-button{\n display:block;\n}\n:host .cds-aichat--date-picker__confirm-button::part(button){\n display:block;\n margin-block-start:0.75rem;\n margin-inline-start:auto;\n}\n:host{\n}\n:host .cds-aichat--inline-error{\n display:flex;\n flex-direction:row;\n margin-inline-start:-16px;\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--inline-error{\n margin-inline:unset -16px;\n}\n:host .cds-aichat--inline-error--icon-holder{\n display:flex;\n flex:0 0 1rem;\n align-items:flex-start;\n margin:0.125rem 0.5rem 0 1rem;\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--inline-error--icon-holder{\n margin:0.125rem 1rem 0 0.5rem;\n}\n:host .cds-aichat--inline-error--icon{\n block-size:1rem;\n inline-size:1rem;\n}\n:host .cds-aichat--inline-error--text{\n flex:1;\n font-size:var(--cds-body-01-font-size, 0.875rem);\n font-weight:var(--cds-body-01-font-weight, 400);\n line-height:var(--cds-body-01-line-height, 1.42857);\n letter-spacing:var(--cds-body-01-letter-spacing, 0.16px);\n margin-block-start:1px;\n}\n:host .cds-aichat--inline-error .cds-aichat--inline-error--text{\n color:var(--cds-text-error, #da1e28);\n}\n:host{\n}\n:host .cds-aichat--grid{\n display:flex;\n flex-direction:column;\n inline-size:100%;\n row-gap:0.5rem;\n}\n:host .cds-aichat--grid__row{\n display:flex;\n -moz-column-gap:0.5rem;\n column-gap:0.5rem;\n inline-size:100%;\n}\n:host .cds-aichat--grid__cell{\n display:flex;\n flex-direction:column;\n inline-size:100%;\n row-gap:0.5rem;\n}\n:host .cds-aichat--grid__cell .cds-aichat--message-user-defined-response{\n inline-size:100%;\n}\n:host .cds-aichat--grid .cds-aichat--image{\n border:none;\n}\n:host .cds-aichat--grid .cds-aichat--image__image-wrapper{\n background-color:transparent;\n}\n:host .cds-aichat--grid .cds-aichat--image__skeleton{\n display:none;\n}\n:host .cds-aichat--grid .cds-aichat--media-player__skeleton{\n display:none;\n}\n:host .cds-aichat--grid .cds-aichat--media-player__root{\n inline-size:100%;\n}\n:host .cds-aichat--grid .cds-aichat--media-player__root .cds-aichat--grid .cds-aichat--image,\n:host .cds-aichat--grid .cds-aichat--media-player__root .cds-aichat--grid .cds-aichat--media-player,\n:host .cds-aichat--grid .cds-aichat--media-player__root .cds-aichat--grid .cds-aichat--media-player__skeleton{\n border-radius:0;\n}\n:host{\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--i-frame-preview-card .cds-aichat--image{\n position:unset;\n transition:none;\n }\n}\n:host .cds-aichat--i-frame-preview-card .cds-aichat--image{\n position:unset;\n transition:150ms cubic-bezier(0.2, 0, 0.38, 0.9);\n}\n:host .cds-aichat--i-frame-preview-card:focus .cds-aichat--image{\n outline:2px solid var(--cds-focus, #0f62fe);\n}\n:host .cds-aichat--i-frame-preview-card:hover .cds-aichat--image{\n background-color:var(--cds-layer-hover);\n text-decoration:underline;\n}\n:host{\n}\n:host .cds-aichat--inline-i-frame{\n position:relative;\n overflow:hidden;\n background:transparent;\n inline-size:100%;\n padding-block-start:var(--padding-top, 0);\n}\n:host .cds-aichat--inline-i-frame .cds-aichat--i-frame-component__wrapper{\n position:absolute;\n inset-block-start:0;\n inset-inline-start:0;\n}\n:host{\n}\n:host .cds-aichat--i-frame-component__wrapper{\n position:relative;\n overflow:hidden;\n background:transparent;\n}\n:host .cds-aichat--i-frame-component__wrapper,\n:host .cds-aichat--i-frame-component__i-frame{\n block-size:100%;\n inline-size:100%;\n}\n:host .cds-aichat--i-frame-component__status-container{\n position:absolute;\n display:flex;\n align-items:center;\n justify-content:center;\n background-color:var(--cds-chat-shell-background, #ffffff);\n block-size:100%;\n inline-size:100%;\n inset-block-start:0;\n inset-inline-start:0;\n}\n:host .cds-aichat--i-frame-component__status-container .cds-aichat--loading-spinner{\n block-size:48px;\n inline-size:48px;\n}\n:host .cds-aichat--i-frame-panel .cds-aichat--panel-content{\n display:flex;\n flex:1;\n flex-direction:column;\n}\n:host .cds-aichat--i-frame-panel__content{\n block-size:100%;\n inline-size:100%;\n}\n:host{\n}\n:host .cds-aichat--image{\n overflow:hidden;\n padding:0;\n min-block-size:0;\n min-inline-size:0;\n}\n:host cds-ai-skeleton-placeholder.cds-aichat--image__skeleton::part(skeleton-placeholder\n ),\n:host cds-skeleton-placeholder.cds-aichat--image__skeleton::part(placeholder){\n block-size:192px;\n inline-size:100%;\n}\n:host .cds-aichat--image__image-wrapper{\n background-color:var(--cds-layer-02, #ffffff);\n}\n:host .cds-aichat--image__image{\n display:none;\n block-size:0;\n max-inline-size:100%;\n opacity:0;\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--image__image--loaded{\n animation:none;\n animation-duration:110ms;\n animation-iteration-count:1;\n animation-timing-function:cubic-bezier(0.2, 0, 0.38, 0.9);\n block-size:auto;\n opacity:1;\n }\n}\n:host .cds-aichat--image__image--loaded{\n animation-duration:110ms;\n animation-iteration-count:1;\n animation-name:cds-chat-fade-in-img;\n animation-timing-function:cubic-bezier(0.2, 0, 0.38, 0.9);\n block-size:auto;\n opacity:1;\n}\n:host{\n}\n:host .cds-aichat--image .cds-aichat--image__image--loaded{\n display:block;\n margin:auto;\n}\n:host .cds-aichat--image__text-and-icon .cds-aichat--text-holder-tile__url{\n padding-inline-end:calc(1rem + 2px);\n}\n:host .cds-aichat--image__icon-only .cds-aichat--image__icon{\n padding:0.75rem;\n border-radius:var(--cds-aichat-card-border-radius, 0.5rem);\n background-color:var(--cds-overlay, rgba(0, 0, 0, 0.6));\n fill:var(--cds-icon-on-color, #ffffff);\n}\n:host svg.cds-aichat--image__icon{\n display:block;\n margin-block-end:1rem;\n margin-inline:auto 1rem;\n}\n:host .cds-aichat--image__icon-only .cds-aichat--image__icon,\n:host svg.cds-aichat--image__icon--link{\n position:absolute;\n margin:0;\n inset-block-end:1rem;\n inset-inline-end:1rem;\n}\n:host svg.cds-aichat--image__icon--link{\n color:var(--cds-link-primary, #0f62fe);\n}\n:host .cds-aichat--container--render[dir=rtl] svg.cds-aichat--image__icon--link{\n inset-inline:0.5rem unset;\n}\n:host{\n}\n:host .cds-aichat--button-holder{\n margin-block-start:0.5rem;\n}\n:host .cds-aichat--button-holder ul{\n padding:0;\n margin:0;\n list-style:none;\n}\n:host .cds-aichat--button-holder ul li{\n display:inline-block;\n padding:0 0.5rem 0.5rem 0;\n margin:0;\n}\n:host{\n}\n:host .cds-aichat--select-holder{\n padding:0 1px;\n inline-size:100%;\n margin-block-start:1rem;\n max-inline-size:380px;\n}\n:host{\n}\n:host .cds-aichat--custom-select-temporary-padding{\n padding-block-end:5rem;\n}\n:host cds-dropdown::part(trigger-button){\n block-size:2.5rem;\n}\n:host cds-dropdown::part(menu-body){\n position:static;\n}\n:host{\n}\n:host .cds-aichat--text-area{\n position:relative;\n block-size:-moz-fit-content;\n block-size:fit-content;\n}\n:host .cds-aichat--text-area .cds-aichat--text-area-textarea,\n:host .cds-aichat--text-area .cds-aichat--text-area-sizer{\n font-size:var(--cds-body-02-font-size, 1rem);\n font-weight:var(--cds-body-02-font-weight, 400);\n line-height:var(--cds-body-02-line-height, 1.5);\n letter-spacing:var(--cds-body-02-letter-spacing, 0);\n padding:0;\n border:2px solid transparent;\n margin:0;\n block-size:100%;\n inline-size:100%;\n white-space:pre-wrap;\n word-wrap:break-word;\n}\n:host .cds-aichat--text-area .cds-aichat--text-area-textarea:focus{\n border:2px solid var(--cds-focus, #0f62fe);\n border-radius:0;\n outline:0;\n}\n:host .cds-aichat--text-area .cds-aichat--text-area-textarea::-moz-focus-inner{\n border:2px solid var(--cds-focus, #0f62fe);\n border-radius:0;\n outline:0;\n}\n:host .cds-aichat--text-area.cds-aichat--text-area--auto-size .cds-aichat--text-area-textarea{\n position:absolute;\n overflow:hidden;\n inset-block-start:0;\n resize:none;\n}\n:host{\n}\n:host .cds-aichat--text-area .cds-aichat--text-area-sizer{\n padding-block-end:1px;\n visibility:hidden;\n white-space:pre-wrap;\n word-wrap:break-word;\n}\n:host{\n}\n:host .cds-aichat--body-message-components__message-wrapper{\n padding:1rem;\n}\n:host .cds-aichat--body-message-components__message-wrapper.cds-aichat--body-message-components__message-wrapper--short-bottom-padding{\n padding-block-end:0.75rem;\n}\n:host .cds-aichat--body-message-components .cds-aichat--media-player__skeleton,\n:host .cds-aichat--body-message-components .cds-aichat--media-player,\n:host .cds-aichat--body-message-components .cds-aichat--image{\n border:none;\n}\n:host{\n}\n:host .cds-aichat--body-message-components__message-wrapper.cds-aichat--body-message-components__message-wrapper--short-bottom-padding + .cds-aichat--body-message-components__message-wrapper:not(.cds-aichat--body-message-components__message-wrapper--full-width){\n padding-block-start:0;\n}\n:host .cds-aichat--body-message-components__message-wrapper.cds-aichat--body-message-components__message-wrapper--full-width{\n padding:0;\n}\n:host .cds-aichat--body-message-components__message-wrapper.cds-aichat--body-message-components__message-wrapper--full-width .cds-aichat--body-message-components__message-wrapper .cds-aichat--image,\n:host .cds-aichat--body-message-components__message-wrapper.cds-aichat--body-message-components__message-wrapper--full-width .cds-aichat--body-message-components__message-wrapper .cds-aichat--media-player,\n:host .cds-aichat--body-message-components__message-wrapper.cds-aichat--body-message-components__message-wrapper--full-width .cds-aichat--body-message-components__message-wrapper .cds-aichat--media-player__skeleton{\n border-radius:0;\n}\n:host{\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--clickable-image{\n position:relative;\n overflow:hidden;\n padding:0;\n border:none;\n border-radius:var(--cds-aichat-card-border-radius, 0.5rem);\n background-color:unset;\n color:unset;\n cursor:pointer;\n inline-size:100%;\n max-inline-size:var(--cds-aichat-card-max-width, 424px);\n outline:none;\n outline-offset:-2px;\n text-align:unset;\n transition:none;\n }\n}\n:host .cds-aichat--clickable-image{\n position:relative;\n overflow:hidden;\n padding:0;\n border:none;\n border-radius:var(--cds-aichat-card-border-radius, 0.5rem);\n background-color:unset;\n color:unset;\n cursor:pointer;\n inline-size:100%;\n max-inline-size:var(--cds-aichat-card-max-width, 424px);\n outline:none;\n outline-offset:-2px;\n text-align:unset;\n transition:150ms cubic-bezier(0.2, 0, 0.38, 0.9);\n}\n:host a.cds-aichat--clickable-image .cds-aichat--text-holder-tile__title{\n color:var(--cds-text-primary, #161616);\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--clickable-image .cds-aichat--image{\n position:unset;\n transition:none;\n }\n}\n:host .cds-aichat--clickable-image .cds-aichat--image{\n position:unset;\n transition:150ms cubic-bezier(0.2, 0, 0.38, 0.9);\n}\n:host .cds-aichat--clickable-image .cds-aichat--image__image{\n -webkit-user-select:none;\n -moz-user-select:none;\n user-select:none;\n}\n:host .cds-aichat--clickable-image:disabled{\n cursor:not-allowed;\n}\n:host .cds-aichat--clickable-image:disabled .cds-aichat--image{\n opacity:0.5;\n}\n:host .cds-aichat--clickable-image:enabled:focus{\n outline:2px solid var(--cds-focus, #0f62fe);\n}\n:host .cds-aichat--clickable-image:enabled:hover .cds-aichat--image{\n background-color:var(--cds-layer-hover);\n text-decoration:underline;\n}\n:host .cds-aichat--clickable-image:enabled:hover .cds-aichat--image__image{\n opacity:0.8;\n}\n:host{\n}\n:host .cds-aichat--description{\n font-size:var(--cds-body-01-font-size, 0.875rem);\n font-weight:var(--cds-body-01-font-weight, 400);\n line-height:var(--cds-body-01-line-height, 1.42857);\n letter-spacing:var(--cds-body-01-letter-spacing, 0.16px);\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--disclaimer__title,\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--disclaimer__description{\n text-align:end;\n}\n:host{\n}\n:host .cds-aichat--footer-button-components{\n display:flex;\n inline-size:100%;\n}\n:host .cds-aichat--footer-button-components cds-button.cds-aichat--button-item{\n flex:auto;\n}\n:host .cds-aichat--footer-button-components cds-button[href][kind=ghost] svg{\n fill:var(--cds-link-primary, #0f62fe);\n}\n:host cds-aichat-card .cds-aichat--footer-button-components:not(.cds-aichat--footer-button-components--column){\n gap:0.0625rem;\n}\n:host cds-aichat-card .cds-aichat--footer-button-components:not(.cds-aichat--footer-button-components--column):not(:has([kind=ghost])){\n background-color:var(--cds-button-separator, #e0e0e0);\n}\n:host cds-aichat-card .cds-aichat--footer-button-components:not(.cds-aichat--footer-button-components--column):has([kind=ghost]){\n border-block-start:0.0625rem solid var(--cds-chat-bubble-border, #e0e0e0);\n}\n:host cds-aichat-card .cds-aichat--footer-button-components:not(.cds-aichat--footer-button-components--column) .cds-aichat--button-item:first-child::part(button){\n border-end-start-radius:max(0px, 0.5rem - 0.0625rem);\n}\n:host cds-aichat-card .cds-aichat--footer-button-components:not(.cds-aichat--footer-button-components--column) .cds-aichat--button-item:last-child::part(button){\n border-end-end-radius:max(0px, 0.5rem - 0.0625rem);\n}\n:host cds-aichat-card .cds-aichat--footer-button-components.cds-aichat--footer-button-components--column{\n flex-direction:column;\n}\n:host cds-aichat-card .cds-aichat--footer-button-components.cds-aichat--footer-button-components--column .cds-aichat--button-item[kind=ghost]{\n border-block-start:0.0625rem solid var(--cds-chat-bubble-border, #e0e0e0);\n}\n:host cds-aichat-card .cds-aichat--footer-button-components.cds-aichat--footer-button-components--column .cds-aichat--button-item:last-child::part(button){\n border-end-end-radius:max(0px, 0.5rem - 0.0625rem);\n border-end-start-radius:max(0px, 0.5rem - 0.0625rem);\n}\n:host .cds-aichat--overlay-panel .cds-aichat--footer-button-components:not(.cds-aichat--footer-button-components--column){\n gap:0.0625rem;\n}\n:host .cds-aichat--overlay-panel .cds-aichat--footer-button-components:not(.cds-aichat--footer-button-components--column):not(:has([kind=ghost])){\n background-color:var(--cds-button-separator, #e0e0e0);\n}\n:host .cds-aichat--overlay-panel .cds-aichat--footer-button-components:not(.cds-aichat--footer-button-components--column):has([kind=ghost]){\n border-block-start:0.0625rem solid var(--cds-chat-bubble-border, #e0e0e0);\n}\n:host .cds-aichat--overlay-panel .cds-aichat--footer-button-components:not(.cds-aichat--footer-button-components--column) .cds-aichat--button-item:first-child::part(button){\n border-end-start-radius:max(0px, var(--cds-aichat-rounded-modifier-radius-end-end, 0) - 0.0625rem);\n}\n:host .cds-aichat--overlay-panel .cds-aichat--footer-button-components:not(.cds-aichat--footer-button-components--column) .cds-aichat--button-item:last-child::part(button){\n border-end-end-radius:max(0px, var(--cds-aichat-rounded-modifier-radius-end-end, 0) - 0.0625rem);\n}\n:host .cds-aichat--overlay-panel .cds-aichat--footer-button-components.cds-aichat--footer-button-components--column{\n flex-direction:column;\n}\n:host .cds-aichat--overlay-panel .cds-aichat--footer-button-components.cds-aichat--footer-button-components--column .cds-aichat--button-item[kind=ghost]{\n border-block-start:0.0625rem solid var(--cds-chat-bubble-border, #e0e0e0);\n}\n:host .cds-aichat--overlay-panel .cds-aichat--footer-button-components.cds-aichat--footer-button-components--column .cds-aichat--button-item:last-child::part(button){\n border-end-end-radius:max(0px, var(--cds-aichat-rounded-modifier-radius-end-end, 0) - 0.0625rem);\n border-end-start-radius:max(0px, var(--cds-aichat-rounded-modifier-radius-end-end, 0) - 0.0625rem);\n}\n:host .cds-aichat--widget--with-branding-banner .cds-aichat--overlay-panel .cds-aichat--footer-button-components .cds-aichat--button-item:first-child::part(button),\n:host .cds-aichat--widget:not(.cds-aichat--widget--rounded,\n.cds-aichat--widget--with-branding-banner) .cds-aichat--overlay-panel .cds-aichat--footer-button-components .cds-aichat--button-item:first-child::part(button){\n border-end-start-radius:0;\n}\n:host .cds-aichat--widget--with-branding-banner .cds-aichat--overlay-panel .cds-aichat--footer-button-components .cds-aichat--button-item:last-child::part(button),\n:host .cds-aichat--widget:not(.cds-aichat--widget--rounded,\n.cds-aichat--widget--with-branding-banner) .cds-aichat--overlay-panel .cds-aichat--footer-button-components .cds-aichat--button-item:last-child::part(button){\n border-end-end-radius:0;\n}\n:host .cds-aichat--widget--with-branding-banner .cds-aichat--overlay-panel .cds-aichat--footer-button-components--column .cds-aichat--button-item.cds-aichat--button-item:last-child::part(button),\n:host .cds-aichat--footer-button-components.cds-aichat--footer-button-components--column .cds-aichat--button-item.cds-aichat--button-item:not(:last-child::part(button)){\n border-end-end-radius:0;\n border-end-start-radius:0;\n}\n:host{\n}\n:host .cds-aichat--media-player,\n:host .cds-aichat--media-player__skeleton{\n overflow:hidden;\n padding:0;\n}\n:host .cds-aichat--media-player__wrapper{\n overflow:hidden;\n}\n:host .cds-aichat--media-player__skeleton-container,\n:host .cds-aichat--media-player__wrapper{\n position:relative;\n padding-block-start:0;\n}\n:host .cds-aichat--media-player__background{\n background-color:var(--cds-layer-accent-01, #e0e0e0);\n}\n:host .cds-aichat--media-player__background--audio{\n display:flex;\n align-items:center;\n justify-content:center;\n}\n:host .cds-aichat--media-player__player iframe{\n block-size:100%;\n inline-size:100%;\n max-block-size:100%;\n max-inline-size:100%;\n}\n:host .cds-aichat--media-player__music-icon{\n fill:var(--cds-icon-on-color, #ffffff);\n}\n:host cds-ai-skeleton-placeholder.cds-aichat--media-player__skeleton-player::part(skeleton-placeholder\n ),\n:host cds-skeleton-placeholder.cds-aichat--media-player__skeleton-player::part(placeholder\n ),\n:host .cds-aichat--media-player__background,\n:host .cds-aichat--media-player__player{\n position:absolute;\n border-radius:0;\n inset-block-start:0;\n inset-inline-start:0;\n}\n:host cds-ai-skeleton-placeholder.cds-aichat--media-player__skeleton-player::part(skeleton-placeholder\n ),\n:host cds-skeleton-placeholder.cds-aichat--media-player__skeleton-player::part(placeholder\n ),\n:host .cds-aichat--media-player__background{\n block-size:100%;\n inline-size:100%;\n}\n:host .cds-aichat--media-player__root{\n inline-size:100%;\n}\n:host .cds-aichat--media-player__skeleton-text-container{\n padding:1rem;\n}\n:host .cds-aichat--media-transcript{\n padding:0 1rem 1rem 1rem;\n}\n:host .cds-aichat--media-transcript__toggle{\n font-size:var(--cds-label-01-font-size, 0.75rem);\n font-weight:var(--cds-label-01-font-weight, 400);\n line-height:var(--cds-label-01-line-height, 1.33333);\n letter-spacing:var(--cds-label-01-letter-spacing, 0.32px);\n display:flex;\n align-items:center;\n justify-content:space-between;\n padding:0;\n border:0;\n margin:0;\n background-color:transparent;\n color:var(--cds-text-secondary, #525252);\n cursor:pointer;\n text-align:start;\n}\n:host .cds-aichat--media-transcript__toggle:hover{\n background-color:var(--cds-layer-hover-01, #e8e8e8);\n}\n:host .cds-aichat--media-transcript__toggle:focus{\n outline:2px solid var(--cds-focus, #0f62fe);\n outline-offset:-2px;\n}\n:host .cds-aichat--media-transcript__toggle-label{\n display:flex;\n align-items:center;\n font-weight:600;\n}\n:host .cds-aichat--media-transcript__language{\n color:var(--cds-text-secondary, #525252);\n font-weight:400;\n}\n:host .cds-aichat--media-transcript__toggle-icon{\n flex-shrink:0;\n margin-inline-start:0.5rem;\n}\n:host .cds-aichat--media-transcript__content--visible{\n padding-block-start:0.5rem;\n}\n:host{\n}\n:host .cds-aichat--received--metablock{\n color:var(--cds-text-primary, #161616);\n font-size:var(--cds-body-01-font-size, 0.875rem);\n font-weight:var(--cds-body-01-font-weight, 400);\n line-height:var(--cds-body-01-line-height, 1.42857);\n letter-spacing:var(--cds-body-01-letter-spacing, 0.16px);\n}\n:host .cds-aichat--received--metablock-content:nth-child(2){\n margin-block-start:0.5rem;\n}\n:host{\n}\n:host .cds-aichat--text-holder-tile{\n display:flex;\n padding:1rem;\n min-block-size:initial;\n}\n:host .cds-aichat--text-holder-tile__icon{\n flex:0 1 auto;\n margin:0.125rem 0.5rem 0 0;\n}\n:host .cds-aichat--text-holder-tile__wrapper{\n flex:1 1;\n align-self:center;\n}\n:host .cds-aichat--text-holder-tile__title{\n font-size:var(--cds-body-02-font-size, 1rem);\n font-weight:var(--cds-body-02-font-weight, 400);\n line-height:var(--cds-body-02-line-height, 1.5);\n letter-spacing:var(--cds-body-02-letter-spacing, 0);\n font-weight:400;\n min-block-size:unset;\n}\n:host .cds-aichat--text-holder-tile__description{\n color:var(--cds-text-secondary, #525252);\n}\n:host .cds-aichat--text-holder-tile__description,\n:host .cds-aichat--text-holder-tile__url{\n font-size:var(--cds-caption-01-font-size, 0.75rem);\n font-weight:var(--cds-caption-01-font-weight, 400);\n line-height:var(--cds-caption-01-line-height, 1.33333);\n letter-spacing:var(--cds-caption-01-letter-spacing, 0.32px);\n min-block-size:unset;\n}\n:host .cds-aichat--text-holder-tile__description-margin{\n margin-block-start:0.125rem;\n}\n:host .cds-aichat--text-holder-tile__url{\n color:var(--cds-link-primary, #0f62fe);\n}\n:host .cds-aichat--text-holder-tile__url-margin{\n margin-block-start:1rem;\n}\n@supports (-webkit-line-clamp: 3){\n :host .cds-aichat--text-holder-tile__description{\n display:-webkit-box;\n overflow:hidden;\n -webkit-box-orient:vertical;\n -webkit-line-clamp:3;\n white-space:normal;\n }\n}\n@supports (-webkit-line-clamp: 2){\n :host .cds-aichat--text-holder-tile__title{\n display:-webkit-box;\n overflow:hidden;\n -webkit-box-orient:vertical;\n -webkit-line-clamp:2;\n white-space:normal;\n }\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--text-holder-tile__icon{\n margin-inline:0.5rem 0;\n}\n:host{\n}\n:host .cds-aichat--search-result-highlight{\n background-color:var(--cds-highlight, #d0e2ff);\n}\n:host{\n}\n:host .cds-aichat--citation-card{\n display:block;\n inline-size:100%;\n}\n:host .cds-aichat--message a.cds-aichat--citation-card--clickable,\n:host .cds-aichat--message button.cds-aichat--citation-card--clickable{\n padding:0;\n border:none;\n border-radius:0.5rem;\n cursor:pointer;\n inline-size:100%;\n padding-inline-end:0;\n}\n:host .cds-aichat--message a.cds-aichat--citation-card--clickable cds-aichat-card,\n:host .cds-aichat--message button.cds-aichat--citation-card--clickable cds-aichat-card{\n border:none;\n box-shadow:0 0 0 1px inset var(--cds-chat-bubble-border, #e0e0e0);\n transition:150ms cubic-bezier(0.2, 0, 0.38, 0.9);\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--message a.cds-aichat--citation-card--clickable cds-aichat-card,\n :host .cds-aichat--message button.cds-aichat--citation-card--clickable cds-aichat-card{\n border:none;\n box-shadow:0 0 0 1px inset var(--cds-chat-bubble-border, #e0e0e0);\n transition:none;\n }\n}\n:host .cds-aichat--message a.cds-aichat--citation-card--clickable:focus,\n:host .cds-aichat--message button.cds-aichat--citation-card--clickable:focus{\n text-decoration:none;\n}\n:host .cds-aichat--message a.cds-aichat--citation-card--clickable:focus cds-aichat-card,\n:host .cds-aichat--message button.cds-aichat--citation-card--clickable:focus cds-aichat-card{\n box-shadow:0 0 0 2px inset var(--cds-focus, #0f62fe);\n text-decoration:none;\n}\n:host .cds-aichat--message a.cds-aichat--citation-card--clickable:hover,\n:host .cds-aichat--message button.cds-aichat--citation-card--clickable:hover{\n text-decoration:none;\n}\n:host .cds-aichat--message a.cds-aichat--citation-card--clickable:hover cds-aichat-card,\n:host .cds-aichat--message button.cds-aichat--citation-card--clickable:hover cds-aichat-card{\n background:var(--cds-layer-hover-01, #e8e8e8);\n text-decoration:none;\n}\n:host .cds-aichat--message a.cds-aichat--citation-card--clickable:active,\n:host .cds-aichat--message button.cds-aichat--citation-card--clickable:active{\n text-decoration:none;\n}\n:host .cds-aichat--message a.cds-aichat--citation-card--clickable:active cds-aichat-card,\n:host .cds-aichat--message button.cds-aichat--citation-card--clickable:active cds-aichat-card{\n box-shadow:0 0 0 2px inset var(--cds-focus, #0f62fe);\n text-decoration:none;\n}\n:host .cds-aichat--citation-card-header{\n block-size:128px;\n}\n:host .cds-aichat--citation-card-title{\n color:var(--cds-text-secondary, #525252);\n font-size:var(--cds-body-02-font-size, 1rem);\n font-weight:var(--cds-body-02-font-weight, 400);\n line-height:var(--cds-body-02-line-height, 1.5);\n letter-spacing:var(--cds-body-02-letter-spacing, 0);\n padding-block-end:0.5rem;\n}\n:host .cds-aichat--citation-card-text{\n display:-webkit-box;\n overflow:hidden;\n -webkit-box-orient:vertical;\n color:var(--cds-text-secondary, #525252);\n font-size:var(--cds-body-01-font-size, 0.875rem);\n font-weight:var(--cds-body-01-font-weight, 400);\n line-height:var(--cds-body-01-line-height, 1.42857);\n letter-spacing:var(--cds-body-01-letter-spacing, 0.16px);\n -webkit-line-clamp:5;\n line-clamp:5;\n text-align:start;\n white-space:normal;\n}\n:host .cds-aichat--citation-card-footer{\n display:flex;\n justify-content:space-between;\n color:var(--cds-link-primary, #0f62fe);\n padding-block-start:1rem;\n}\n:host .cds-aichat--citation-card-label,\n:host .cds-aichat--citation-card-icon{\n font-size:var(--cds-caption-01-font-size, 0.75rem);\n font-weight:var(--cds-caption-01-font-weight, 400);\n line-height:var(--cds-caption-01-line-height, 1.33333);\n letter-spacing:var(--cds-caption-01-letter-spacing, 0.32px);\n}\n:host .cds-aichat--citation-card-icon{\n display:flex;\n align-items:center;\n}\n:host .cds-aichat--message a:hover.cds-aichat--citation-card--clickable{\n cursor:pointer;\n text-decoration:none;\n}\n:host{\n}\n:host .cds-aichat--view-source-panel{\n position:relative;\n display:flex;\n flex-direction:column;\n block-size:100%;\n}\n:host .cds-aichat--view-source-panel .cds-aichat--panel-content{\n flex:1;\n}\n:host .cds-aichat--view-source-panel__content{\n overflow:auto;\n background-color:var(--cds-background, #ffffff);\n block-size:100%;\n}\n:host{\n}\n:host .cds-aichat--error-icon{\n fill:var(--cds-support-error, #da1e28);\n vertical-align:middle;\n}\n:host .cds-aichat--error-icon path[data-icon-path=inner-path]{\n fill:var(--cds-icon-on-color, #ffffff);\n opacity:1;\n}\n:host{\n}\n:host .cds-aichat--response-stopped{\n font-size:var(--cds-body-01-font-size, 0.875rem);\n font-weight:var(--cds-body-01-font-weight, 400);\n line-height:var(--cds-body-01-line-height, 1.42857);\n letter-spacing:var(--cds-body-01-letter-spacing, 0.16px);\n color:var(--cds-text-secondary, #525252);\n font-style:italic;\n margin-block-start:1rem;\n text-align:center;\n}\n:host .cds-aichat--standard-width .cds-aichat--conversational-search + .cds-aichat--response-stopped,\n:host .cds-aichat--wide-width .cds-aichat--conversational-search + .cds-aichat--response-stopped{\n padding-inline-start:56px;\n}\n:host .cds-aichat--narrow-width .cds-aichat--conversational-search + .cds-aichat--response-stopped{\n padding-inline-start:16px;\n}\n:host{\n}\n:host .cds-aichat--system-message-standalone{\n display:flex;\n align-items:center;\n justify-content:center;\n padding:1rem 0.5rem;\n margin:0.5rem 0;\n}\n:host .cds-aichat--system-message-standalone-text{\n font-size:var(--cds-body-01-font-size, 0.875rem);\n font-weight:var(--cds-body-01-font-weight, 400);\n line-height:var(--cds-body-01-line-height, 1.42857);\n letter-spacing:var(--cds-body-01-letter-spacing, 0.16px);\n padding:0.5rem 1rem;\n border-radius:0.25rem;\n background-color:transparent;\n color:var(--cds-text-secondary, #525252);\n font-style:italic;\n max-inline-size:600px;\n text-align:center;\n}\n:host .cds-aichat--received .cds-aichat--system-message-inline,\n:host .cds-aichat--sent .cds-aichat--system-message-inline{\n font-size:var(--cds-body-01-font-size, 0.875rem);\n font-weight:var(--cds-body-01-font-weight, 400);\n line-height:var(--cds-body-01-line-height, 1.42857);\n letter-spacing:var(--cds-body-01-letter-spacing, 0.16px);\n padding:0.5rem 0;\n margin:0.5rem 0;\n border-block-end:1px solid var(--cds-border-subtle-01, #c6c6c6);\n border-block-start:1px solid var(--cds-border-subtle-01, #c6c6c6);\n color:var(--cds-text-secondary, #525252);\n font-style:italic;\n text-align:center;\n}\n:host{\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--message{\n position:relative;\n display:block;\n margin:0;\n animation:none;\n }\n}\n:host .cds-aichat--message{\n position:relative;\n display:block;\n margin:0;\n}\n:host .cds-aichat--message.cds-aichat--message--has-focus::after{\n position:absolute;\n box-sizing:border-box;\n border:solid 2px var(--cds-focus, #0f62fe);\n block-size:100%;\n content:\"\";\n inline-size:100%;\n inset-block-start:0;\n pointer-events:none;\n}\n:host{\n}\n:host .cds-aichat--message.cds-aichat--message--first-message.cds-aichat--message--has-focus::after{\n block-size:calc(100% - 0.5rem);\n inset-block-start:0.5rem;\n}\n:host .cds-aichat--message.cds-aichat--message--last-message.cds-aichat--message--has-focus::after{\n block-size:calc(100% - 2rem + 0.5rem);\n inset-block-end:calc(2rem - 0.5rem);\n}\n:host .cds-aichat--message .cds-aichat--message-vertical-padding,\n:host .cds-aichat--message .cds-aichat--ui-customization-element--response{\n padding-block-start:1rem;\n}\n:host .cds-aichat--message--with-avatar-line .cds-aichat--message-vertical-padding,\n:host .cds-aichat--message--with-avatar-line .cds-aichat--ui-customization-element--response,\n:host .cds-aichat--message--option-response-without-title-or-description .cds-aichat--message-vertical-padding{\n padding-block-start:0;\n}\n:host .cds-aichat--message--option-response-without-title-or-description .cds-aichat--ui-customization-element--response{\n padding-block-start:0;\n}\n:host .cds-aichat--message.cds-aichat--message--custom .cds-aichat--message-vertical-padding,\n:host .cds-aichat--message.cds-aichat--message--custom .cds-aichat--ui-customization-element--response{\n padding-block:0;\n}\n:host .cds-aichat--message__avatar-line + .cds-aichat--message--padding .cds-aichat--assistant-message > div.cds-aichat--received,\n:host .cds-aichat--message__avatar-line + .cds-aichat--message--padding .cds-aichat--assistant-message > div.cds-aichat--received.cds-aichat--received--carousel:not(.cds-aichat--received--carousel-single):first-child,\n:host .cds-aichat--message__avatar-line + .cds-aichat--message--padding .cds-aichat--assistant-message > div.cds-aichat--received.cds-aichat--received--full-width:first-child{\n margin-block-start:0.5rem;\n}\n:host .cds-aichat--message.cds-aichat--message--last-message .cds-aichat--message--padding{\n padding-block-end:1.5rem;\n}\n:host .cds-aichat--sent-container{\n display:flex;\n justify-content:flex-end;\n}\n:host .cds-aichat--message .cds-aichat--received,\n:host .cds-aichat--message .cds-aichat--sent-container{\n flex-grow:1;\n margin-inline:1rem;\n min-inline-size:0;\n}\n@media screen and (prefers-reduced-motion: no-preference){\n :host .cds-aichat--message .cds-aichat--received .cds-aichat--message .cds-aichat--received,\n :host .cds-aichat--message .cds-aichat--received .cds-aichat--message .cds-aichat--sent-container,\n :host .cds-aichat--message .cds-aichat--sent-container .cds-aichat--message .cds-aichat--received,\n :host .cds-aichat--message .cds-aichat--sent-container .cds-aichat--message .cds-aichat--sent-container{\n transition:margin-inline 110ms cubic-bezier(0.2, 0, 0.38, 0.9);\n }\n :host .cds-aichat--message .cds-aichat--received .cds-aichat--message__avatar-line + .cds-aichat--message--padding .cds-aichat--assistant-message > div.cds-aichat--received,\n :host .cds-aichat--message .cds-aichat--sent-container .cds-aichat--message__avatar-line + .cds-aichat--message--padding .cds-aichat--assistant-message > div.cds-aichat--received{\n transition:margin-block-start 110ms cubic-bezier(0.2, 0, 0.38, 0.9);\n }\n :host .cds-aichat--message .cds-aichat--received .cds-aichat--message .cds-aichat--received.cds-aichat--received--agent-status-message,\n :host .cds-aichat--message .cds-aichat--sent-container .cds-aichat--message .cds-aichat--received.cds-aichat--received--agent-status-message{\n transition:margin-inline 110ms cubic-bezier(0.2, 0, 0.38, 0.9);\n }\n}\n:host .cds-aichat--wide-width .cds-aichat--message .cds-aichat--received.cds-aichat--received--conversational-search,\n:host .cds-aichat--wide-width .cds-aichat--message .cds-aichat--received.cds-aichat--received--search,\n:host .cds-aichat--wide-width .cds-aichat--message .cds-aichat--received--carousel:not(.cds-aichat--received--carousel-single),\n:host .cds-aichat--wide-width .cds-aichat--message .cds-aichat--received.cds-aichat--received--full-width,\n:host .cds-aichat--narrow-width .cds-aichat--message .cds-aichat--received.cds-aichat--received--conversational-search,\n:host .cds-aichat--narrow-width .cds-aichat--message .cds-aichat--received.cds-aichat--received--search,\n:host .cds-aichat--narrow-width .cds-aichat--message .cds-aichat--received.cds-aichat--received--full-width,\n:host .cds-aichat--standard-width .cds-aichat--message .cds-aichat--received.cds-aichat--received--conversational-search,\n:host .cds-aichat--standard-width .cds-aichat--message .cds-aichat--received.cds-aichat--received--search,\n:host .cds-aichat--standard-width .cds-aichat--message .cds-aichat--received--carousel:not(.cds-aichat--received--carousel-single),\n:host .cds-aichat--standard-width .cds-aichat--message .cds-aichat--received.cds-aichat--received--full-width{\n margin-inline:0 1rem;\n}\n:host .cds-aichat--message a:not(button){\n color:var(--cds-link-primary, #0f62fe);\n outline:none;\n text-decoration:none;\n}\n:host .cds-aichat--message a:visited:not(button){\n color:var(--cds-link-primary, #0f62fe);\n}\n:host .cds-aichat--message a:hover:not(button){\n text-decoration:underline;\n}\n:host .cds-aichat--message a:focus:not(button){\n text-decoration:underline;\n}\n:host .cds-aichat--message::after{\n display:table;\n clear:both;\n content:\"\";\n}\n:host .cds-aichat--messages--welcome.cds-aichat--messages--welcome--typing{\n min-block-size:100%;\n}\n:host .cds-aichat--assistant-message{\n position:relative;\n display:flex;\n flex-direction:row;\n max-inline-size:100%;\n}\n:host .cds-aichat--received--inline-error,\n:host .cds-aichat--received--text,\n:host .cds-aichat--message-user-defined-response{\n position:relative;\n color:var(--cds-text-primary, #161616);\n font-size:var(--cds-body-01-font-size, 0.875rem);\n font-weight:var(--cds-body-01-font-weight, 400);\n line-height:var(--cds-body-01-line-height, 1.42857);\n letter-spacing:var(--cds-body-01-letter-spacing, 0.16px);\n overflow-wrap:break-word;\n word-break:break-word;\n word-wrap:break-word;\n}\n:host .cds-aichat--message-user-defined-response{\n max-inline-size:100%;\n}\n:host .cds-aichat--received--image{\n position:relative;\n inline-size:90%;\n overflow-wrap:break-word;\n word-break:break-word;\n word-wrap:break-word;\n}\n:host .cds-aichat--received--video,\n:host .cds-aichat--received--audio{\n inline-size:100%;\n overflow-wrap:break-word;\n word-break:break-word;\n word-wrap:break-word;\n}\n:host{\n}\n:host .cds-aichat--sent-and-message-state-container{\n display:flex;\n flex-direction:row;\n justify-content:flex-end;\n}\n:host{\n}\n:host .cds-aichat--message-status{\n display:flex;\n align-items:center;\n margin-inline:8px;\n}\n:host{\n}\n:host .cds-aichat--sent-and-message-state--below-message{\n display:flex;\n flex-direction:column;\n align-items:flex-end;\n}\n:host .cds-aichat--sent-and-message-state--below-message .cds-aichat--message-status{\n margin-inline:0;\n padding-block-start:0.5rem;\n}\n:host{\n}\n:host .cds-aichat--message-status .cds-aichat--loading-spinner circle{\n stroke-width:6;\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--sent-container .cds-aichat--message-status-file-success svg{\n animation:none;\n fill:var(--cds-interactive, #0f62fe);\n }\n}\n:host .cds-aichat--sent-container .cds-aichat--message-status-file-success svg{\n animation:150ms cubic-bezier(0.4, 0.14, 1, 1) 2000ms cds-chat-fade-out forwards;\n fill:var(--cds-interactive, #0f62fe);\n}\n:host .cds-aichat--received--loading,\n:host .cds-aichat--search-result,\n:host .cds-aichat--sent--bubble{\n position:relative;\n opacity:1;\n overflow-wrap:break-word;\n word-break:break-word;\n word-wrap:break-word;\n}\n:host .cds-aichat--received--loading .cds-aichat--received--inner{\n position:relative;\n}\n:host .cds-aichat--sent--text > span{\n flex:1;\n white-space:pre-wrap;\n}\n:host .cds-aichat--sent--text{\n display:flex;\n}\n:host svg.cds-aichat--sent-file-icon{\n margin-inline-end:8px;\n}\n:host .cds-aichat--sent{\n display:flex;\n flex-direction:column;\n inline-size:100%;\n}\n:host .cds-aichat--sent--bubble{\n align-self:end;\n padding:0.5rem 0.75rem;\n border:solid 1px var(--cds-chat-bubble-user, #e0e0e0);\n border-radius:0.5rem 0 0.5rem 0.5rem;\n background:var(--cds-chat-bubble-user, #e0e0e0);\n font-size:var(--cds-body-01-font-size, 0.875rem);\n font-weight:var(--cds-body-01-font-weight, 400);\n line-height:var(--cds-body-01-line-height, 1.42857);\n letter-spacing:var(--cds-body-01-letter-spacing, 0.16px);\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--sent--bubble{\n border-radius:0 0.5rem 0.5rem 0.5rem;\n}\n:host .cds-aichat--received--options,\n:host .cds-aichat--received--suggestion{\n position:relative;\n overflow-wrap:break-word;\n word-break:break-word;\n word-wrap:break-word;\n}\n:host .cds-aichat--received--iframe-preview-card{\n overflow:hidden;\n inline-size:100%;\n}\n:host .cds-aichat--assistant-message .cds-aichat--received--agent-status-message{\n color:var(--cds-text-helper, #6f6f6f);\n font-size:var(--cds-caption-01-font-size, 0.75rem);\n font-weight:var(--cds-caption-01-font-weight, 400);\n line-height:var(--cds-caption-01-line-height, 1.33333);\n letter-spacing:var(--cds-caption-01-letter-spacing, 0.32px);\n padding-inline:1rem;\n text-align:center;\n}\n:host .cds-aichat--assistant-message .cds-aichat--received--chat-status-message{\n color:var(--cds-text-secondary, #525252);\n font-size:var(--cds-caption-01-font-size, 0.75rem);\n font-weight:var(--cds-caption-01-font-weight, 400);\n line-height:var(--cds-caption-01-line-height, 1.33333);\n letter-spacing:var(--cds-caption-01-letter-spacing, 0.32px);\n}\n:host .cds-aichat--message--system-message{\n padding-block-start:28px;\n}\n:host .cds-aichat--message__avatar-line{\n display:flex;\n padding-block-start:28px;\n}\n:host .cds-aichat--message__avatar-line .cds-aichat--message__label{\n color:var(--cds-text-secondary, #525252);\n font-size:var(--cds-caption-01-font-size, 0.75rem);\n font-weight:var(--cds-caption-01-font-weight, 400);\n line-height:var(--cds-caption-01-line-height, 1.33333);\n letter-spacing:var(--cds-caption-01-letter-spacing, 0.32px);\n}\n:host .cds-aichat--message__avatar-line .cds-aichat--message__reasoning{\n display:flex;\n align-items:center;\n}\n:host .cds-aichat--message__avatar-line .cds-aichat--message__reasoning-separator{\n color:var(--cds-text-secondary, #525252);\n margin-inline-end:0.5rem;\n}\n:host .cds-aichat--message__avatar-line .cds-aichat--message__avatar{\n display:flex;\n align-items:center;\n justify-content:center;\n block-size:2rem;\n inline-size:2rem;\n}\n:host .cds-aichat--message__avatar-line .cds-aichat--message__avatar--assistant svg{\n block-size:28px;\n inline-size:28px;\n}\n:host .cds-aichat--message__avatar-line .cds-aichat--image-with-fallback{\n display:flex;\n}\n:host .cds-aichat--message__avatar-line .cds-aichat--image-with-fallback img,\n:host .cds-aichat--message__avatar-line .cds-aichat--image-with-fallback .cds-aichat--icon-holder{\n border-radius:14px;\n block-size:28px;\n inline-size:28px;\n}\n:host .cds-aichat--message__avatar-line .cds-aichat--image-with-fallback img svg,\n:host .cds-aichat--message__avatar-line .cds-aichat--image-with-fallback .cds-aichat--icon-holder svg{\n block-size:16px;\n fill:var(--cds-icon-inverse, #ffffff);\n inline-size:16px;\n}\n:host .cds-aichat--message--request .cds-aichat--message__avatar-line{\n justify-content:flex-end;\n padding-inline-end:1rem;\n}\n:host .cds-aichat--message--request .cds-aichat--message__avatar-line .cds-aichat--message__label{\n padding-block-end:0.5rem;\n padding-inline-start:0.5rem;\n}\n:host{\n}\n:host .cds-aichat--message--response .cds-aichat--message__avatar-line{\n padding-inline-start:0.5rem;\n}\n:host .cds-aichat--message--response .cds-aichat--message__avatar-line .cds-aichat--message__label{\n padding-block:0.5rem;\n padding-inline:0.5rem;\n}\n:host .cds-aichat--message--response:not(.cds-aichat--message--system-message).cds-aichat--message--agent-message + .cds-aichat--message--response:not(.cds-aichat--message--system-message).cds-aichat--message--agent-message,\n:host .cds-aichat--message--request + .cds-aichat--message--request{\n padding-block-start:0.5rem;\n}\n:host .cds-aichat--message--response:not(.cds-aichat--message--system-message).cds-aichat--message--agent-message + .cds-aichat--message--response:not(.cds-aichat--message--system-message).cds-aichat--message--agent-message .cds-aichat--message__avatar-line,\n:host .cds-aichat--message--request + .cds-aichat--message--request .cds-aichat--message__avatar-line{\n display:none;\n}\n:host .cds-aichat--message--response:not(.cds-aichat--message--system-message).cds-aichat--message--agent-message + .cds-aichat--message--response:not(.cds-aichat--message--system-message).cds-aichat--message--agent-message .cds-aichat--received--from-human,\n:host .cds-aichat--message--response:not(.cds-aichat--message--system-message).cds-aichat--message--agent-message + .cds-aichat--message--response:not(.cds-aichat--message--system-message).cds-aichat--message--agent-message .cds-aichat--sent--bubble,\n:host .cds-aichat--message--request + .cds-aichat--message--request .cds-aichat--received--from-human,\n:host .cds-aichat--message--request + .cds-aichat--message--request .cds-aichat--sent--bubble{\n border-radius:0.5rem;\n}\n:host .cds-aichat--message--response:not(.cds-aichat--message--agent-message) .cds-aichat--message__avatar-line + .cds-aichat--message--padding{\n padding-block-start:0.25rem;\n}\n:host .cds-aichat--message__avatar--agent .cds-aichat--image-with-fallback .cds-aichat--icon-holder{\n background-color:var(--cds-chat-avatar-agent, #393939);\n}\n:host .cds-aichat--received--from-human.cds-aichat--received--text{\n padding:0.5rem 0.75rem;\n border:solid 1px var(--cds-chat-bubble-border, #e0e0e0);\n border-radius:0 0.5rem 0.5rem 0.5rem;\n background-color:var(--cds-chat-bubble-agent, #ffffff);\n}\n:host .cds-aichat--received--chain-of-thought{\n margin-block-start:0.75rem;\n}\n:host .cds-aichat--message__reasoning-steps{\n padding-block-end:0.75rem;\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--received--from-agent.cds-aichat--received--text{\n border-radius:0.5rem 0 0.5rem 0.5rem;\n}\n:host .cds-aichat--message__avatar--assistant .cds-aichat--image-with-fallback .cds-aichat--icon-holder{\n background-color:var(--cds-chat-avatar-bot, #6f6f6f);\n}\n:host{\n}\n:host .cds-aichat--container--render{\n}\n:host .cds-aichat--container--render :where(cds-aichat-shell).cds-aichat--standard-width .cds-aichat--message__avatar-line + .cds-aichat--message--padding .cds-aichat--assistant-message > div.cds-aichat--received, :host .cds-aichat--container--render :where(cds-aichat-shell).cds-aichat--wide-width .cds-aichat--message__avatar-line + .cds-aichat--message--padding .cds-aichat--assistant-message > div.cds-aichat--received{\n margin-block-start:0;\n}\n:host .cds-aichat--container--render :where(cds-aichat-shell).cds-aichat--standard-width .cds-aichat--message .cds-aichat--received.cds-aichat--received--agent-status-message, :host .cds-aichat--container--render :where(cds-aichat-shell).cds-aichat--wide-width .cds-aichat--message .cds-aichat--received.cds-aichat--received--agent-status-message{\n margin-inline:0;\n}\n:host .cds-aichat--container--render :where(cds-aichat-shell){\n}\n:host .cds-aichat--container--render :where(cds-aichat-shell).cds-aichat--wide-width .cds-aichat--message .cds-aichat--received, :host .cds-aichat--container--render :where(cds-aichat-shell).cds-aichat--standard-width .cds-aichat--message .cds-aichat--received, :host .cds-aichat--container--render :where(cds-aichat-shell).cds-aichat--wide-width .cds-aichat--message .cds-aichat--sent-container, :host .cds-aichat--container--render :where(cds-aichat-shell).cds-aichat--standard-width .cds-aichat--message .cds-aichat--sent-container{\n margin-inline:calc(0.5rem + 2rem + 0.5rem) 1rem;\n}\n:host .cds-aichat--container--render{\n}\n:host .cds-aichat--container--render :where(cds-aichat-shell[workspace-in-container]).cds-aichat--standard-width .cds-aichat--message__avatar-line + .cds-aichat--message--padding .cds-aichat--assistant-message > div.cds-aichat--received, :host .cds-aichat--container--render :where(cds-aichat-shell[workspace-in-container]).cds-aichat--wide-width .cds-aichat--message__avatar-line + .cds-aichat--message--padding .cds-aichat--assistant-message > div.cds-aichat--received{\n margin-block-start:0.5rem;\n}\n:host .cds-aichat--container--render :where(cds-aichat-shell[workspace-in-container]).cds-aichat--standard-width .cds-aichat--message .cds-aichat--received.cds-aichat--received--agent-status-message, :host .cds-aichat--container--render :where(cds-aichat-shell[workspace-in-container]).cds-aichat--wide-width .cds-aichat--message .cds-aichat--received.cds-aichat--received--agent-status-message{\n margin-inline:1rem;\n}\n:host .cds-aichat--container--render :where(cds-aichat-shell[workspace-in-container]){\n}\n:host .cds-aichat--container--render :where(cds-aichat-shell[workspace-in-container]).cds-aichat--wide-width .cds-aichat--message .cds-aichat--received, :host .cds-aichat--container--render :where(cds-aichat-shell[workspace-in-container]).cds-aichat--standard-width .cds-aichat--message .cds-aichat--received, :host .cds-aichat--container--render :where(cds-aichat-shell[workspace-in-container]).cds-aichat--wide-width .cds-aichat--message .cds-aichat--sent-container, :host .cds-aichat--container--render :where(cds-aichat-shell[workspace-in-container]).cds-aichat--standard-width .cds-aichat--message .cds-aichat--sent-container{\n margin-inline:1rem;\n}\n:host .cds-aichat--container--render{\n}\n:host .cds-aichat--container--render :where(cds-aichat-shell[show-workspace]) .cds-aichat--message__avatar-line + .cds-aichat--message--padding .cds-aichat--assistant-message > div.cds-aichat--received{\n margin-block-start:0;\n}\n:host .cds-aichat--message-footer{\n display:flex;\n margin-block-start:0.5rem;\n}\n:host{\n}\n:host .cds-aichat--typing-indicator--hidden{\n visibility:hidden;\n}\n:host .cds-aichat--messages--holder{\n display:flex;\n overflow:hidden;\n flex:1;\n flex-direction:column;\n block-size:100%;\n inline-size:100%;\n}\n:host .cds-aichat--messages__wrapper{\n position:relative;\n overflow:hidden auto;\n flex:1;\n block-size:100%;\n inline-size:100%;\n}\n:host .cds-aichat--messages__wrapper:focus{\n outline:none;\n}\n:host .cds-aichat--message--focus-handle,\n:host .cds-aichat--messages--scroll-handle{\n position:absolute;\n display:block;\n overflow:hidden;\n padding:0;\n border:none;\n margin:0;\n block-size:1px;\n clip:rect(0 0 0 0);\n clip-path:inset(50%);\n inline-size:1px;\n outline:none;\n white-space:nowrap;\n}\n:host .cds-aichat--messages__wrapper--scroll-handle-has-focus::after{\n position:absolute;\n box-sizing:border-box;\n border:solid 2px var(--cds-focus, #0f62fe);\n block-size:100%;\n content:\"\";\n inline-size:100%;\n inset-block-start:0;\n pointer-events:none;\n}\n:host .cds-aichat--messages{\n block-size:100%;\n inline-size:100%;\n}\n:host .cds-aichat--widget--max-width .cds-aichat--messages{\n margin:0 auto;\n max-inline-size:var(--cds-aichat-messages-max-width, 672px);\n}\n:host .cds-aichat--processing{\n display:flex;\n align-items:center;\n}\n:host .cds-aichat--processing-component{\n block-size:32px;\n}\n:host .cds-aichat--processing-label{\n font-size:var(--cds-label-02-font-size, 0.875rem);\n font-weight:var(--cds-label-02-font-weight, 400);\n line-height:var(--cds-label-02-line-height, 1.28572);\n letter-spacing:var(--cds-label-02-letter-spacing, 0.16px);\n display:flex;\n align-items:center;\n animation:cds-aichat-fade-in 600ms forwards;\n animation-delay:1200ms;\n block-size:32px;\n color:var(--cds-text-secondary, #525252);\n font-style:italic;\n opacity:0;\n padding-inline-start:0.125rem;\n}\n:host .cds-aichat__scroll-to-bottom{\n position:sticky;\n z-index:1;\n inline-size:2rem;\n inset-block-end:1rem;\n inset-inline-start:50%;\n margin-block-start:-2rem;\n transform:translateX(-50%);\n}\n:host .cds-aichat__scroll-to-bottom-button--hidden{\n display:none;\n}\n:host{\n}\n:host .cds--white{\n --cds-ai-aura-end:rgba(255, 255, 255, 0);\n --cds-ai-aura-hover-background:#edf5ff;\n --cds-ai-aura-hover-end:rgba(255, 255, 255, 0);\n --cds-ai-aura-hover-start:rgba(69, 137, 255, 0.32);\n --cds-ai-aura-start:rgba(69, 137, 255, 0.1);\n --cds-ai-aura-start-sm:rgba(69, 137, 255, 0.16);\n --cds-ai-border-end:#78a9ff;\n --cds-ai-border-start:rgba(166, 200, 255, 0.64);\n --cds-ai-border-strong:#4589ff;\n --cds-ai-drop-shadow:rgba(15, 98, 254, 0.1);\n --cds-ai-inner-shadow:rgba(69, 137, 255, 0.1);\n --cds-ai-overlay:rgba(0, 17, 65, 0.5);\n --cds-ai-popover-background:#ffffff;\n --cds-ai-popover-caret-bottom:#78a9ff;\n --cds-ai-popover-caret-bottom-background:#eaf1ff;\n --cds-ai-popover-caret-bottom-background-actions:#e9effa;\n --cds-ai-popover-caret-center:#a0c3ff;\n --cds-ai-popover-shadow-outer-01:rgba(0, 67, 206, 0.06);\n --cds-ai-popover-shadow-outer-02:rgba(0, 0, 0, 0.04);\n --cds-ai-skeleton-background:#d0e2ff;\n --cds-ai-skeleton-element-background:#4589ff;\n --cds-background:#ffffff;\n --cds-background-active:rgba(141, 141, 141, 0.5);\n --cds-background-brand:#0f62fe;\n --cds-background-hover:rgba(141, 141, 141, 0.12);\n --cds-background-inverse:#393939;\n --cds-background-inverse-hover:#474747;\n --cds-background-selected:rgba(141, 141, 141, 0.2);\n --cds-background-selected-hover:rgba(141, 141, 141, 0.32);\n --cds-border-disabled:#c6c6c6;\n --cds-border-interactive:#0f62fe;\n --cds-border-inverse:#161616;\n --cds-border-strong-01:#8d8d8d;\n --cds-border-strong-02:#8d8d8d;\n --cds-border-strong-03:#8d8d8d;\n --cds-border-subtle-00:#e0e0e0;\n --cds-border-subtle-01:#c6c6c6;\n --cds-border-subtle-02:#e0e0e0;\n --cds-border-subtle-03:#c6c6c6;\n --cds-border-subtle-selected-01:#c6c6c6;\n --cds-border-subtle-selected-02:#c6c6c6;\n --cds-border-subtle-selected-03:#c6c6c6;\n --cds-border-tile-01:#c6c6c6;\n --cds-border-tile-02:#a8a8a8;\n --cds-border-tile-03:#c6c6c6;\n --cds-chat-avatar-agent:#393939;\n --cds-chat-avatar-bot:#6f6f6f;\n --cds-chat-avatar-user:#0f62fe;\n --cds-chat-bubble-agent:#ffffff;\n --cds-chat-bubble-agent-text:#161616;\n --cds-chat-bubble-border:#e0e0e0;\n --cds-chat-bubble-user:#e0e0e0;\n --cds-chat-bubble-user-text:#161616;\n --cds-chat-button:#0f62fe;\n --cds-chat-button-active:rgba(141, 141, 141, 0.5);\n --cds-chat-button-hover:rgba(141, 141, 141, 0.12);\n --cds-chat-button-selected:rgba(141, 141, 141, 0.2);\n --cds-chat-button-text-hover:#0043ce;\n --cds-chat-button-text-selected:#525252;\n --cds-chat-header-background:#ffffff;\n --cds-chat-header-text:#161616;\n --cds-chat-prompt-background:#ffffff;\n --cds-chat-prompt-border-end:rgba(244, 244, 244, 0);\n --cds-chat-prompt-border-start:#f4f4f4;\n --cds-chat-prompt-text:#161616;\n --cds-chat-shell-background:#ffffff;\n --cds-field-01:#f4f4f4;\n --cds-field-02:#ffffff;\n --cds-field-03:#f4f4f4;\n --cds-field-hover-01:#e8e8e8;\n --cds-field-hover-02:#e8e8e8;\n --cds-field-hover-03:#e8e8e8;\n --cds-focus:#0f62fe;\n --cds-focus-inset:#ffffff;\n --cds-focus-inverse:#ffffff;\n --cds-highlight:#d0e2ff;\n --cds-icon-disabled:rgba(22, 22, 22, 0.25);\n --cds-icon-interactive:#0f62fe;\n --cds-icon-inverse:#ffffff;\n --cds-icon-on-color:#ffffff;\n --cds-icon-on-color-disabled:#8d8d8d;\n --cds-icon-primary:#161616;\n --cds-icon-secondary:#525252;\n --cds-interactive:#0f62fe;\n --cds-layer-01:#f4f4f4;\n --cds-layer-02:#ffffff;\n --cds-layer-03:#f4f4f4;\n --cds-layer-accent-01:#e0e0e0;\n --cds-layer-accent-02:#e0e0e0;\n --cds-layer-accent-03:#e0e0e0;\n --cds-layer-accent-active-01:#a8a8a8;\n --cds-layer-accent-active-02:#a8a8a8;\n --cds-layer-accent-active-03:#a8a8a8;\n --cds-layer-accent-hover-01:#d1d1d1;\n --cds-layer-accent-hover-02:#d1d1d1;\n --cds-layer-accent-hover-03:#d1d1d1;\n --cds-layer-active-01:#c6c6c6;\n --cds-layer-active-02:#c6c6c6;\n --cds-layer-active-03:#c6c6c6;\n --cds-layer-background-01:#ffffff;\n --cds-layer-background-02:#f4f4f4;\n --cds-layer-background-03:#ffffff;\n --cds-layer-hover-01:#e8e8e8;\n --cds-layer-hover-02:#e8e8e8;\n --cds-layer-hover-03:#e8e8e8;\n --cds-layer-selected-01:#e0e0e0;\n --cds-layer-selected-02:#e0e0e0;\n --cds-layer-selected-03:#e0e0e0;\n --cds-layer-selected-disabled:#8d8d8d;\n --cds-layer-selected-hover-01:#d1d1d1;\n --cds-layer-selected-hover-02:#d1d1d1;\n --cds-layer-selected-hover-03:#d1d1d1;\n --cds-layer-selected-inverse:#161616;\n --cds-link-inverse:#78a9ff;\n --cds-link-inverse-active:#f4f4f4;\n --cds-link-inverse-hover:#a6c8ff;\n --cds-link-inverse-visited:#be95ff;\n --cds-link-primary:#0f62fe;\n --cds-link-primary-hover:#0043ce;\n --cds-link-secondary:#0043ce;\n --cds-link-visited:#8a3ffc;\n --cds-overlay:rgba(0, 0, 0, 0.6);\n --cds-shadow:rgba(0, 0, 0, 0.3);\n --cds-skeleton-background:#e8e8e8;\n --cds-skeleton-element:#c6c6c6;\n --cds-support-caution-major:#ff832b;\n --cds-support-caution-minor:#f1c21b;\n --cds-support-caution-undefined:#8a3ffc;\n --cds-support-error:#da1e28;\n --cds-support-error-inverse:#fa4d56;\n --cds-support-info:#0043ce;\n --cds-support-info-inverse:#4589ff;\n --cds-support-success:#24a148;\n --cds-support-success-inverse:#42be65;\n --cds-support-warning:#f1c21b;\n --cds-support-warning-inverse:#f1c21b;\n --cds-syntax-angle-bracket:#697077;\n --cds-syntax-annotation:#007d79;\n --cds-syntax-arithmetic-operator:#343a3f;\n --cds-syntax-atom:#161616;\n --cds-syntax-attribute:#00539a;\n --cds-syntax-attribute-name:#00539a;\n --cds-syntax-attribute-value:#161616;\n --cds-syntax-bitwise-operator:#343a3f;\n --cds-syntax-block-comment:#198038;\n --cds-syntax-bool:#161616;\n --cds-syntax-brace:#343a3f;\n --cds-syntax-bracket:#343a3f;\n --cds-syntax-character:#161616;\n --cds-syntax-class-name:#007d79;\n --cds-syntax-color:#161616;\n --cds-syntax-comment:#198038;\n --cds-syntax-compare-operator:#343a3f;\n --cds-syntax-constant:#0f62fe;\n --cds-syntax-content:#161616;\n --cds-syntax-content-separator:#343a3f;\n --cds-syntax-control-keyword:#6929c4;\n --cds-syntax-control-operator:#6929c4;\n --cds-syntax-definition:#00539a;\n --cds-syntax-definition-keyword:#00539a;\n --cds-syntax-definition-operator:#00539a;\n --cds-syntax-deref-operator:#343a3f;\n --cds-syntax-doc-comment:#198038;\n --cds-syntax-doc-string:#161616;\n --cds-syntax-document-meta:#198038;\n --cds-syntax-emphasis:#161616;\n --cds-syntax-escape:#343a3f;\n --cds-syntax-float:#198038;\n --cds-syntax-function:#8e6a00;\n --cds-syntax-heading:#00539a;\n --cds-syntax-heading-1:#00539a;\n --cds-syntax-heading-2:#00539a;\n --cds-syntax-heading-3:#00539a;\n --cds-syntax-heading-4:#00539a;\n --cds-syntax-heading-5:#00539a;\n --cds-syntax-heading-6:#00539a;\n --cds-syntax-integer:#198038;\n --cds-syntax-invalid:#da1e28;\n --cds-syntax-keyword:#0f62fe;\n --cds-syntax-label-name:#0f62fe;\n --cds-syntax-line-comment:#198038;\n --cds-syntax-link:#0f62fe;\n --cds-syntax-list:#161616;\n --cds-syntax-literal:#161616;\n --cds-syntax-local:#0f62fe;\n --cds-syntax-logic-operator:#343a3f;\n --cds-syntax-macro-name:#161616;\n --cds-syntax-meta:#198038;\n --cds-syntax-modifier:#0f62fe;\n --cds-syntax-module-keyword:#6929c4;\n --cds-syntax-monospace:#161616;\n --cds-syntax-name:#0f62fe;\n --cds-syntax-namespace:#007d79;\n --cds-syntax-null:#161616;\n --cds-syntax-number:#198038;\n --cds-syntax-operator:#343a3f;\n --cds-syntax-operator-keyword:#0f62fe;\n --cds-syntax-paren:#343a3f;\n --cds-syntax-processing-instruction:#161616;\n --cds-syntax-property-name:#00539a;\n --cds-syntax-punctuation:#343a3f;\n --cds-syntax-quote:#198038;\n --cds-syntax-regexp:#6929c4;\n --cds-syntax-self:#007d79;\n --cds-syntax-separator:#343a3f;\n --cds-syntax-special:#0f62fe;\n --cds-syntax-special-string:#8a3ffc;\n --cds-syntax-square-bracket:#343a3f;\n --cds-syntax-standard:#0f62fe;\n --cds-syntax-strikethrough:#161616;\n --cds-syntax-string:#161616;\n --cds-syntax-strong:#161616;\n --cds-syntax-tag:#007d79;\n --cds-syntax-tag-name:#007d79;\n --cds-syntax-type:#007d79;\n --cds-syntax-type-name:#007d79;\n --cds-syntax-type-operator:#007d79;\n --cds-syntax-unit:#198038;\n --cds-syntax-update-operator:#343a3f;\n --cds-syntax-url:#343a3f;\n --cds-syntax-variable:#0f62fe;\n --cds-syntax-variable-name:#0f62fe;\n --cds-text-disabled:rgba(22, 22, 22, 0.25);\n --cds-text-error:#da1e28;\n --cds-text-helper:#6f6f6f;\n --cds-text-inverse:#ffffff;\n --cds-text-on-color:#ffffff;\n --cds-text-on-color-disabled:#8d8d8d;\n --cds-text-placeholder:rgba(22, 22, 22, 0.4);\n --cds-text-primary:#161616;\n --cds-text-secondary:#525252;\n --cds-toggle-off:#8d8d8d;\n --cds-spacing-01:0.125rem;\n --cds-spacing-02:0.25rem;\n --cds-spacing-03:0.5rem;\n --cds-spacing-04:0.75rem;\n --cds-spacing-05:1rem;\n --cds-spacing-06:1.5rem;\n --cds-spacing-07:2rem;\n --cds-spacing-08:2.5rem;\n --cds-spacing-09:3rem;\n --cds-spacing-10:4rem;\n --cds-spacing-11:5rem;\n --cds-spacing-12:6rem;\n --cds-spacing-13:10rem;\n --cds-fluid-spacing-01:0;\n --cds-fluid-spacing-02:2vw;\n --cds-fluid-spacing-03:5vw;\n --cds-fluid-spacing-04:10vw;\n --cds-caption-01-font-size:0.75rem;\n --cds-caption-01-font-weight:400;\n --cds-caption-01-line-height:1.33333;\n --cds-caption-01-letter-spacing:0.32px;\n --cds-caption-02-font-size:0.875rem;\n --cds-caption-02-font-weight:400;\n --cds-caption-02-line-height:1.28572;\n --cds-caption-02-letter-spacing:0.32px;\n --cds-label-01-font-size:0.75rem;\n --cds-label-01-font-weight:400;\n --cds-label-01-line-height:1.33333;\n --cds-label-01-letter-spacing:0.32px;\n --cds-label-02-font-size:0.875rem;\n --cds-label-02-font-weight:400;\n --cds-label-02-line-height:1.28572;\n --cds-label-02-letter-spacing:0.16px;\n --cds-helper-text-01-font-size:0.75rem;\n --cds-helper-text-01-line-height:1.33333;\n --cds-helper-text-01-letter-spacing:0.32px;\n --cds-helper-text-02-font-size:0.875rem;\n --cds-helper-text-02-font-weight:400;\n --cds-helper-text-02-line-height:1.28572;\n --cds-helper-text-02-letter-spacing:0.16px;\n --cds-body-short-01-font-size:0.875rem;\n --cds-body-short-01-font-weight:400;\n --cds-body-short-01-line-height:1.28572;\n --cds-body-short-01-letter-spacing:0.16px;\n --cds-body-short-02-font-size:1rem;\n --cds-body-short-02-font-weight:400;\n --cds-body-short-02-line-height:1.375;\n --cds-body-short-02-letter-spacing:0;\n --cds-body-long-01-font-size:0.875rem;\n --cds-body-long-01-font-weight:400;\n --cds-body-long-01-line-height:1.42857;\n --cds-body-long-01-letter-spacing:0.16px;\n --cds-body-long-02-font-size:1rem;\n --cds-body-long-02-font-weight:400;\n --cds-body-long-02-line-height:1.5;\n --cds-body-long-02-letter-spacing:0;\n --cds-code-01-font-family:'IBM Plex Mono', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', monospace;\n --cds-code-01-font-size:0.75rem;\n --cds-code-01-font-weight:400;\n --cds-code-01-line-height:1.33333;\n --cds-code-01-letter-spacing:0.32px;\n --cds-code-02-font-family:'IBM Plex Mono', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', monospace;\n --cds-code-02-font-size:0.875rem;\n --cds-code-02-font-weight:400;\n --cds-code-02-line-height:1.42857;\n --cds-code-02-letter-spacing:0.32px;\n --cds-heading-01-font-size:0.875rem;\n --cds-heading-01-font-weight:600;\n --cds-heading-01-line-height:1.42857;\n --cds-heading-01-letter-spacing:0.16px;\n --cds-heading-02-font-size:1rem;\n --cds-heading-02-font-weight:600;\n --cds-heading-02-line-height:1.5;\n --cds-heading-02-letter-spacing:0;\n --cds-productive-heading-01-font-size:0.875rem;\n --cds-productive-heading-01-font-weight:600;\n --cds-productive-heading-01-line-height:1.28572;\n --cds-productive-heading-01-letter-spacing:0.16px;\n --cds-productive-heading-02-font-size:1rem;\n --cds-productive-heading-02-font-weight:600;\n --cds-productive-heading-02-line-height:1.375;\n --cds-productive-heading-02-letter-spacing:0;\n --cds-productive-heading-03-font-size:1.25rem;\n --cds-productive-heading-03-font-weight:400;\n --cds-productive-heading-03-line-height:1.4;\n --cds-productive-heading-03-letter-spacing:0;\n --cds-productive-heading-04-font-size:1.75rem;\n --cds-productive-heading-04-font-weight:400;\n --cds-productive-heading-04-line-height:1.28572;\n --cds-productive-heading-04-letter-spacing:0;\n --cds-productive-heading-05-font-size:2rem;\n --cds-productive-heading-05-font-weight:400;\n --cds-productive-heading-05-line-height:1.25;\n --cds-productive-heading-05-letter-spacing:0;\n --cds-productive-heading-06-font-size:2.625rem;\n --cds-productive-heading-06-font-weight:300;\n --cds-productive-heading-06-line-height:1.199;\n --cds-productive-heading-06-letter-spacing:0;\n --cds-productive-heading-07-font-size:3.375rem;\n --cds-productive-heading-07-font-weight:300;\n --cds-productive-heading-07-line-height:1.19;\n --cds-productive-heading-07-letter-spacing:0;\n --cds-expressive-paragraph-01-font-size:1.5rem;\n --cds-expressive-paragraph-01-font-weight:300;\n --cds-expressive-paragraph-01-line-height:1.334;\n --cds-expressive-paragraph-01-letter-spacing:0;\n --cds-expressive-heading-01-font-size:0.875rem;\n --cds-expressive-heading-01-font-weight:600;\n --cds-expressive-heading-01-line-height:1.42857;\n --cds-expressive-heading-01-letter-spacing:0.16px;\n --cds-expressive-heading-02-font-size:1rem;\n --cds-expressive-heading-02-font-weight:600;\n --cds-expressive-heading-02-line-height:1.5;\n --cds-expressive-heading-02-letter-spacing:0;\n --cds-expressive-heading-03-font-size:1.25rem;\n --cds-expressive-heading-03-font-weight:400;\n --cds-expressive-heading-03-line-height:1.4;\n --cds-expressive-heading-03-letter-spacing:0;\n --cds-expressive-heading-04-font-size:1.75rem;\n --cds-expressive-heading-04-font-weight:400;\n --cds-expressive-heading-04-line-height:1.28572;\n --cds-expressive-heading-04-letter-spacing:0;\n --cds-expressive-heading-05-font-size:2rem;\n --cds-expressive-heading-05-font-weight:400;\n --cds-expressive-heading-05-line-height:1.25;\n --cds-expressive-heading-05-letter-spacing:0;\n --cds-expressive-heading-06-font-size:2rem;\n --cds-expressive-heading-06-font-weight:600;\n --cds-expressive-heading-06-line-height:1.25;\n --cds-expressive-heading-06-letter-spacing:0;\n --cds-quotation-01-font-family:'IBM Plex Serif', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', serif;\n --cds-quotation-01-font-size:1.25rem;\n --cds-quotation-01-font-weight:400;\n --cds-quotation-01-line-height:1.3;\n --cds-quotation-01-letter-spacing:0;\n --cds-quotation-02-font-family:'IBM Plex Serif', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', serif;\n --cds-quotation-02-font-size:2rem;\n --cds-quotation-02-font-weight:300;\n --cds-quotation-02-line-height:1.25;\n --cds-quotation-02-letter-spacing:0;\n --cds-display-01-font-size:2.625rem;\n --cds-display-01-font-weight:300;\n --cds-display-01-line-height:1.19;\n --cds-display-01-letter-spacing:0;\n --cds-display-02-font-size:2.625rem;\n --cds-display-02-font-weight:600;\n --cds-display-02-line-height:1.19;\n --cds-display-02-letter-spacing:0;\n --cds-display-03-font-size:2.625rem;\n --cds-display-03-font-weight:300;\n --cds-display-03-line-height:1.19;\n --cds-display-03-letter-spacing:0;\n --cds-display-04-font-size:2.625rem;\n --cds-display-04-font-weight:300;\n --cds-display-04-line-height:1.19;\n --cds-display-04-letter-spacing:0;\n --cds-legal-01-font-size:0.75rem;\n --cds-legal-01-font-weight:400;\n --cds-legal-01-line-height:1.33333;\n --cds-legal-01-letter-spacing:0.32px;\n --cds-legal-02-font-size:0.875rem;\n --cds-legal-02-font-weight:400;\n --cds-legal-02-line-height:1.28572;\n --cds-legal-02-letter-spacing:0.16px;\n --cds-body-compact-01-font-size:0.875rem;\n --cds-body-compact-01-font-weight:400;\n --cds-body-compact-01-line-height:1.28572;\n --cds-body-compact-01-letter-spacing:0.16px;\n --cds-body-compact-02-font-size:1rem;\n --cds-body-compact-02-font-weight:400;\n --cds-body-compact-02-line-height:1.375;\n --cds-body-compact-02-letter-spacing:0;\n --cds-heading-compact-01-font-size:0.875rem;\n --cds-heading-compact-01-font-weight:600;\n --cds-heading-compact-01-line-height:1.28572;\n --cds-heading-compact-01-letter-spacing:0.16px;\n --cds-heading-compact-02-font-size:1rem;\n --cds-heading-compact-02-font-weight:600;\n --cds-heading-compact-02-line-height:1.375;\n --cds-heading-compact-02-letter-spacing:0;\n --cds-body-01-font-size:0.875rem;\n --cds-body-01-font-weight:400;\n --cds-body-01-line-height:1.42857;\n --cds-body-01-letter-spacing:0.16px;\n --cds-body-02-font-size:1rem;\n --cds-body-02-font-weight:400;\n --cds-body-02-line-height:1.5;\n --cds-body-02-letter-spacing:0;\n --cds-heading-03-font-size:1.25rem;\n --cds-heading-03-font-weight:400;\n --cds-heading-03-line-height:1.4;\n --cds-heading-03-letter-spacing:0;\n --cds-heading-04-font-size:1.75rem;\n --cds-heading-04-font-weight:400;\n --cds-heading-04-line-height:1.28572;\n --cds-heading-04-letter-spacing:0;\n --cds-heading-05-font-size:2rem;\n --cds-heading-05-font-weight:400;\n --cds-heading-05-line-height:1.25;\n --cds-heading-05-letter-spacing:0;\n --cds-heading-06-font-size:2.625rem;\n --cds-heading-06-font-weight:300;\n --cds-heading-06-line-height:1.199;\n --cds-heading-06-letter-spacing:0;\n --cds-heading-07-font-size:3.375rem;\n --cds-heading-07-font-weight:300;\n --cds-heading-07-line-height:1.19;\n --cds-heading-07-letter-spacing:0;\n --cds-fluid-heading-03-font-size:1.25rem;\n --cds-fluid-heading-03-font-weight:400;\n --cds-fluid-heading-03-line-height:1.4;\n --cds-fluid-heading-03-letter-spacing:0;\n --cds-fluid-heading-04-font-size:1.75rem;\n --cds-fluid-heading-04-font-weight:400;\n --cds-fluid-heading-04-line-height:1.28572;\n --cds-fluid-heading-04-letter-spacing:0;\n --cds-fluid-heading-05-font-size:2rem;\n --cds-fluid-heading-05-font-weight:400;\n --cds-fluid-heading-05-line-height:1.25;\n --cds-fluid-heading-05-letter-spacing:0;\n --cds-fluid-heading-06-font-size:2rem;\n --cds-fluid-heading-06-font-weight:600;\n --cds-fluid-heading-06-line-height:1.25;\n --cds-fluid-heading-06-letter-spacing:0;\n --cds-fluid-paragraph-01-font-size:1.5rem;\n --cds-fluid-paragraph-01-font-weight:300;\n --cds-fluid-paragraph-01-line-height:1.334;\n --cds-fluid-paragraph-01-letter-spacing:0;\n --cds-fluid-quotation-01-font-family:'IBM Plex Serif', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', serif;\n --cds-fluid-quotation-01-font-size:1.25rem;\n --cds-fluid-quotation-01-font-weight:400;\n --cds-fluid-quotation-01-line-height:1.3;\n --cds-fluid-quotation-01-letter-spacing:0;\n --cds-fluid-quotation-02-font-family:'IBM Plex Serif', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', serif;\n --cds-fluid-quotation-02-font-size:2rem;\n --cds-fluid-quotation-02-font-weight:300;\n --cds-fluid-quotation-02-line-height:1.25;\n --cds-fluid-quotation-02-letter-spacing:0;\n --cds-fluid-display-01-font-size:2.625rem;\n --cds-fluid-display-01-font-weight:300;\n --cds-fluid-display-01-line-height:1.19;\n --cds-fluid-display-01-letter-spacing:0;\n --cds-fluid-display-02-font-size:2.625rem;\n --cds-fluid-display-02-font-weight:600;\n --cds-fluid-display-02-line-height:1.19;\n --cds-fluid-display-02-letter-spacing:0;\n --cds-fluid-display-03-font-size:2.625rem;\n --cds-fluid-display-03-font-weight:300;\n --cds-fluid-display-03-line-height:1.19;\n --cds-fluid-display-03-letter-spacing:0;\n --cds-fluid-display-04-font-size:2.625rem;\n --cds-fluid-display-04-font-weight:300;\n --cds-fluid-display-04-line-height:1.19;\n --cds-fluid-display-04-letter-spacing:0;\n --cds-button-separator:#e0e0e0;\n --cds-button-primary:#0f62fe;\n --cds-button-secondary:#393939;\n --cds-button-tertiary:#0f62fe;\n --cds-button-danger-primary:#da1e28;\n --cds-button-danger-secondary:#da1e28;\n --cds-button-danger-active:#750e13;\n --cds-button-primary-active:#002d9c;\n --cds-button-secondary-active:#6f6f6f;\n --cds-button-tertiary-active:#002d9c;\n --cds-button-danger-hover:#b81921;\n --cds-button-primary-hover:#0050e6;\n --cds-button-secondary-hover:#474747;\n --cds-button-tertiary-hover:#0050e6;\n --cds-button-disabled:#c6c6c6;\n}\n@media screen and (-ms-high-contrast: active), (forced-colors: active){\n :host .cds--white{\n --cds-icon-primary:ButtonText;\n --cds-icon-secondary:ButtonText;\n --cds-icon-interactive:ButtonText;\n --cds-icon-disabled:GrayText;\n --cds-icon-on-color-disabled:GrayText;\n --cds-icon-inverse:SelectedItemText;\n --cds-icon-on-color:SelectedItemText;\n --cds-button-disabled:GrayText;\n --cds-interactive:ButtonText;\n --cds-link-primary:LinkText;\n --cds-link-primary-hover:LinkText;\n --cds-link-secondary:LinkText;\n --cds-link-inverse:SelectedItemText;\n --cds-link-inverse-hover:SelectedItemText;\n --cds-link-inverse-visited:SelectedItemText;\n --cds-link-visited:VisitedText;\n --cds-background-selected:SelectedItem;\n --cds-background-selected-hover:SelectedItem;\n --cds-background-inverse:SelectedItem;\n --cds-layer-selected-inverse:SelectedItem;\n }\n}\n:host .cds--white{\n --cds-layer:var(--cds-layer-01, #f4f4f4);\n --cds-layer-active:var(--cds-layer-active-01, #c6c6c6);\n --cds-layer-background:var(--cds-layer-background-01, #ffffff);\n --cds-layer-hover:var(--cds-layer-hover-01, #e8e8e8);\n --cds-layer-selected:var(--cds-layer-selected-01, #e0e0e0);\n --cds-layer-selected-hover:var(--cds-layer-selected-hover-01, #d1d1d1);\n --cds-layer-accent:var(--cds-layer-accent-01, #e0e0e0);\n --cds-layer-accent-hover:var(--cds-layer-accent-hover-01, #d1d1d1);\n --cds-layer-accent-active:var(--cds-layer-accent-active-01, #a8a8a8);\n --cds-field:var(--cds-field-01, #f4f4f4);\n --cds-field-hover:var(--cds-field-hover-01, #e8e8e8);\n --cds-border-subtle:var(--cds-border-subtle-00, #e0e0e0);\n --cds-border-subtle-selected:var(--cds-border-subtle-selected-01, #c6c6c6);\n --cds-border-strong:var(--cds-border-strong-01, #8d8d8d);\n --cds-border-tile:var(--cds-border-tile-01, #c6c6c6);\n}\n:host .cds--g10{\n --cds-ai-aura-end:rgba(255, 255, 255, 0);\n --cds-ai-aura-hover-background:#edf5ff;\n --cds-ai-aura-hover-end:rgba(255, 255, 255, 0);\n --cds-ai-aura-hover-start:rgba(69, 137, 255, 0.32);\n --cds-ai-aura-start:rgba(69, 137, 255, 0.1);\n --cds-ai-aura-start-sm:rgba(69, 137, 255, 0.16);\n --cds-ai-border-end:#78a9ff;\n --cds-ai-border-start:rgba(166, 200, 255, 0.64);\n --cds-ai-border-strong:#4589ff;\n --cds-ai-drop-shadow:rgba(15, 98, 254, 0.1);\n --cds-ai-inner-shadow:rgba(69, 137, 255, 0.1);\n --cds-ai-overlay:rgba(0, 17, 65, 0.5);\n --cds-ai-popover-background:#ffffff;\n --cds-ai-popover-caret-bottom:#78a9ff;\n --cds-ai-popover-caret-bottom-background:#eaf1ff;\n --cds-ai-popover-caret-bottom-background-actions:#e9effa;\n --cds-ai-popover-caret-center:#a0c3ff;\n --cds-ai-popover-shadow-outer-01:rgba(0, 67, 206, 0.06);\n --cds-ai-popover-shadow-outer-02:rgba(0, 0, 0, 0.04);\n --cds-ai-skeleton-background:#d0e2ff;\n --cds-ai-skeleton-element-background:#4589ff;\n --cds-background:#f4f4f4;\n --cds-background-active:rgba(141, 141, 141, 0.5);\n --cds-background-brand:#0f62fe;\n --cds-background-hover:rgba(141, 141, 141, 0.12);\n --cds-background-inverse:#393939;\n --cds-background-inverse-hover:#474747;\n --cds-background-selected:rgba(141, 141, 141, 0.2);\n --cds-background-selected-hover:rgba(141, 141, 141, 0.32);\n --cds-border-disabled:#c6c6c6;\n --cds-border-interactive:#0f62fe;\n --cds-border-inverse:#161616;\n --cds-border-strong-01:#8d8d8d;\n --cds-border-strong-02:#8d8d8d;\n --cds-border-strong-03:#8d8d8d;\n --cds-border-subtle-00:#c6c6c6;\n --cds-border-subtle-01:#e0e0e0;\n --cds-border-subtle-02:#c6c6c6;\n --cds-border-subtle-03:#e0e0e0;\n --cds-border-subtle-selected-01:#c6c6c6;\n --cds-border-subtle-selected-02:#c6c6c6;\n --cds-border-subtle-selected-03:#c6c6c6;\n --cds-border-tile-01:#a8a8a8;\n --cds-border-tile-02:#c6c6c6;\n --cds-border-tile-03:#a8a8a8;\n --cds-chat-avatar-agent:#393939;\n --cds-chat-avatar-bot:#6f6f6f;\n --cds-chat-avatar-user:#0f62fe;\n --cds-chat-bubble-agent:#ffffff;\n --cds-chat-bubble-agent-text:#161616;\n --cds-chat-bubble-border:#e0e0e0;\n --cds-chat-bubble-user:#e0e0e0;\n --cds-chat-bubble-user-text:#161616;\n --cds-chat-button:#0f62fe;\n --cds-chat-button-active:rgba(141, 141, 141, 0.5);\n --cds-chat-button-hover:rgba(141, 141, 141, 0.12);\n --cds-chat-button-selected:rgba(141, 141, 141, 0.2);\n --cds-chat-button-text-hover:#0043ce;\n --cds-chat-button-text-selected:#525252;\n --cds-chat-header-background:#ffffff;\n --cds-chat-header-text:#161616;\n --cds-chat-prompt-background:#ffffff;\n --cds-chat-prompt-border-end:rgba(244, 244, 244, 0);\n --cds-chat-prompt-border-start:#f4f4f4;\n --cds-chat-prompt-text:#161616;\n --cds-chat-shell-background:#ffffff;\n --cds-field-01:#ffffff;\n --cds-field-02:#f4f4f4;\n --cds-field-03:#ffffff;\n --cds-field-hover-01:#e8e8e8;\n --cds-field-hover-02:#e8e8e8;\n --cds-field-hover-03:#e8e8e8;\n --cds-focus:#0f62fe;\n --cds-focus-inset:#ffffff;\n --cds-focus-inverse:#ffffff;\n --cds-highlight:#d0e2ff;\n --cds-icon-disabled:rgba(22, 22, 22, 0.25);\n --cds-icon-interactive:#0f62fe;\n --cds-icon-inverse:#ffffff;\n --cds-icon-on-color:#ffffff;\n --cds-icon-on-color-disabled:#8d8d8d;\n --cds-icon-primary:#161616;\n --cds-icon-secondary:#525252;\n --cds-interactive:#0f62fe;\n --cds-layer-01:#ffffff;\n --cds-layer-02:#f4f4f4;\n --cds-layer-03:#ffffff;\n --cds-layer-accent-01:#e0e0e0;\n --cds-layer-accent-02:#e0e0e0;\n --cds-layer-accent-03:#e0e0e0;\n --cds-layer-accent-active-01:#a8a8a8;\n --cds-layer-accent-active-02:#a8a8a8;\n --cds-layer-accent-active-03:#a8a8a8;\n --cds-layer-accent-hover-01:#d1d1d1;\n --cds-layer-accent-hover-02:#d1d1d1;\n --cds-layer-accent-hover-03:#d1d1d1;\n --cds-layer-active-01:#c6c6c6;\n --cds-layer-active-02:#c6c6c6;\n --cds-layer-active-03:#c6c6c6;\n --cds-layer-background-01:#f4f4f4;\n --cds-layer-background-02:#ffffff;\n --cds-layer-background-03:#f4f4f4;\n --cds-layer-hover-01:#e8e8e8;\n --cds-layer-hover-02:#e8e8e8;\n --cds-layer-hover-03:#e8e8e8;\n --cds-layer-selected-01:#e0e0e0;\n --cds-layer-selected-02:#e0e0e0;\n --cds-layer-selected-03:#e0e0e0;\n --cds-layer-selected-disabled:#8d8d8d;\n --cds-layer-selected-hover-01:#d1d1d1;\n --cds-layer-selected-hover-02:#d1d1d1;\n --cds-layer-selected-hover-03:#d1d1d1;\n --cds-layer-selected-inverse:#161616;\n --cds-link-inverse:#78a9ff;\n --cds-link-inverse-active:#f4f4f4;\n --cds-link-inverse-hover:#a6c8ff;\n --cds-link-inverse-visited:#be95ff;\n --cds-link-primary:#0f62fe;\n --cds-link-primary-hover:#0043ce;\n --cds-link-secondary:#0043ce;\n --cds-link-visited:#8a3ffc;\n --cds-overlay:rgba(0, 0, 0, 0.6);\n --cds-shadow:rgba(0, 0, 0, 0.3);\n --cds-skeleton-background:#e8e8e8;\n --cds-skeleton-element:#c6c6c6;\n --cds-support-caution-major:#ff832b;\n --cds-support-caution-minor:#f1c21b;\n --cds-support-caution-undefined:#8a3ffc;\n --cds-support-error:#da1e28;\n --cds-support-error-inverse:#fa4d56;\n --cds-support-info:#0043ce;\n --cds-support-info-inverse:#4589ff;\n --cds-support-success:#24a148;\n --cds-support-success-inverse:#42be65;\n --cds-support-warning:#f1c21b;\n --cds-support-warning-inverse:#f1c21b;\n --cds-syntax-angle-bracket:#697077;\n --cds-syntax-annotation:#007d79;\n --cds-syntax-arithmetic-operator:#343a3f;\n --cds-syntax-atom:#161616;\n --cds-syntax-attribute:#00539a;\n --cds-syntax-attribute-name:#00539a;\n --cds-syntax-attribute-value:#161616;\n --cds-syntax-bitwise-operator:#343a3f;\n --cds-syntax-block-comment:#198038;\n --cds-syntax-bool:#161616;\n --cds-syntax-brace:#343a3f;\n --cds-syntax-bracket:#343a3f;\n --cds-syntax-character:#161616;\n --cds-syntax-class-name:#007d79;\n --cds-syntax-color:#161616;\n --cds-syntax-comment:#198038;\n --cds-syntax-compare-operator:#343a3f;\n --cds-syntax-constant:#0f62fe;\n --cds-syntax-content:#161616;\n --cds-syntax-content-separator:#343a3f;\n --cds-syntax-control-keyword:#6929c4;\n --cds-syntax-control-operator:#6929c4;\n --cds-syntax-definition:#00539a;\n --cds-syntax-definition-keyword:#00539a;\n --cds-syntax-definition-operator:#00539a;\n --cds-syntax-deref-operator:#343a3f;\n --cds-syntax-doc-comment:#198038;\n --cds-syntax-doc-string:#161616;\n --cds-syntax-document-meta:#198038;\n --cds-syntax-emphasis:#161616;\n --cds-syntax-escape:#343a3f;\n --cds-syntax-float:#198038;\n --cds-syntax-function:#8e6a00;\n --cds-syntax-heading:#00539a;\n --cds-syntax-heading-1:#00539a;\n --cds-syntax-heading-2:#00539a;\n --cds-syntax-heading-3:#00539a;\n --cds-syntax-heading-4:#00539a;\n --cds-syntax-heading-5:#00539a;\n --cds-syntax-heading-6:#00539a;\n --cds-syntax-integer:#198038;\n --cds-syntax-invalid:#da1e28;\n --cds-syntax-keyword:#0f62fe;\n --cds-syntax-label-name:#0f62fe;\n --cds-syntax-line-comment:#198038;\n --cds-syntax-link:#0f62fe;\n --cds-syntax-list:#161616;\n --cds-syntax-literal:#161616;\n --cds-syntax-local:#0f62fe;\n --cds-syntax-logic-operator:#343a3f;\n --cds-syntax-macro-name:#161616;\n --cds-syntax-meta:#198038;\n --cds-syntax-modifier:#0f62fe;\n --cds-syntax-module-keyword:#6929c4;\n --cds-syntax-monospace:#161616;\n --cds-syntax-name:#0f62fe;\n --cds-syntax-namespace:#007d79;\n --cds-syntax-null:#161616;\n --cds-syntax-number:#198038;\n --cds-syntax-operator:#343a3f;\n --cds-syntax-operator-keyword:#0f62fe;\n --cds-syntax-paren:#343a3f;\n --cds-syntax-processing-instruction:#161616;\n --cds-syntax-property-name:#00539a;\n --cds-syntax-punctuation:#343a3f;\n --cds-syntax-quote:#198038;\n --cds-syntax-regexp:#6929c4;\n --cds-syntax-self:#007d79;\n --cds-syntax-separator:#343a3f;\n --cds-syntax-special:#0f62fe;\n --cds-syntax-special-string:#8a3ffc;\n --cds-syntax-square-bracket:#343a3f;\n --cds-syntax-standard:#0f62fe;\n --cds-syntax-strikethrough:#161616;\n --cds-syntax-string:#161616;\n --cds-syntax-strong:#161616;\n --cds-syntax-tag:#007d79;\n --cds-syntax-tag-name:#007d79;\n --cds-syntax-type:#007d79;\n --cds-syntax-type-name:#007d79;\n --cds-syntax-type-operator:#007d79;\n --cds-syntax-unit:#198038;\n --cds-syntax-update-operator:#343a3f;\n --cds-syntax-url:#343a3f;\n --cds-syntax-variable:#0f62fe;\n --cds-syntax-variable-name:#0f62fe;\n --cds-text-disabled:rgba(22, 22, 22, 0.25);\n --cds-text-error:#da1e28;\n --cds-text-helper:#6f6f6f;\n --cds-text-inverse:#ffffff;\n --cds-text-on-color:#ffffff;\n --cds-text-on-color-disabled:#8d8d8d;\n --cds-text-placeholder:rgba(22, 22, 22, 0.4);\n --cds-text-primary:#161616;\n --cds-text-secondary:#525252;\n --cds-toggle-off:#8d8d8d;\n --cds-spacing-01:0.125rem;\n --cds-spacing-02:0.25rem;\n --cds-spacing-03:0.5rem;\n --cds-spacing-04:0.75rem;\n --cds-spacing-05:1rem;\n --cds-spacing-06:1.5rem;\n --cds-spacing-07:2rem;\n --cds-spacing-08:2.5rem;\n --cds-spacing-09:3rem;\n --cds-spacing-10:4rem;\n --cds-spacing-11:5rem;\n --cds-spacing-12:6rem;\n --cds-spacing-13:10rem;\n --cds-fluid-spacing-01:0;\n --cds-fluid-spacing-02:2vw;\n --cds-fluid-spacing-03:5vw;\n --cds-fluid-spacing-04:10vw;\n --cds-caption-01-font-size:0.75rem;\n --cds-caption-01-font-weight:400;\n --cds-caption-01-line-height:1.33333;\n --cds-caption-01-letter-spacing:0.32px;\n --cds-caption-02-font-size:0.875rem;\n --cds-caption-02-font-weight:400;\n --cds-caption-02-line-height:1.28572;\n --cds-caption-02-letter-spacing:0.32px;\n --cds-label-01-font-size:0.75rem;\n --cds-label-01-font-weight:400;\n --cds-label-01-line-height:1.33333;\n --cds-label-01-letter-spacing:0.32px;\n --cds-label-02-font-size:0.875rem;\n --cds-label-02-font-weight:400;\n --cds-label-02-line-height:1.28572;\n --cds-label-02-letter-spacing:0.16px;\n --cds-helper-text-01-font-size:0.75rem;\n --cds-helper-text-01-line-height:1.33333;\n --cds-helper-text-01-letter-spacing:0.32px;\n --cds-helper-text-02-font-size:0.875rem;\n --cds-helper-text-02-font-weight:400;\n --cds-helper-text-02-line-height:1.28572;\n --cds-helper-text-02-letter-spacing:0.16px;\n --cds-body-short-01-font-size:0.875rem;\n --cds-body-short-01-font-weight:400;\n --cds-body-short-01-line-height:1.28572;\n --cds-body-short-01-letter-spacing:0.16px;\n --cds-body-short-02-font-size:1rem;\n --cds-body-short-02-font-weight:400;\n --cds-body-short-02-line-height:1.375;\n --cds-body-short-02-letter-spacing:0;\n --cds-body-long-01-font-size:0.875rem;\n --cds-body-long-01-font-weight:400;\n --cds-body-long-01-line-height:1.42857;\n --cds-body-long-01-letter-spacing:0.16px;\n --cds-body-long-02-font-size:1rem;\n --cds-body-long-02-font-weight:400;\n --cds-body-long-02-line-height:1.5;\n --cds-body-long-02-letter-spacing:0;\n --cds-code-01-font-family:'IBM Plex Mono', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', monospace;\n --cds-code-01-font-size:0.75rem;\n --cds-code-01-font-weight:400;\n --cds-code-01-line-height:1.33333;\n --cds-code-01-letter-spacing:0.32px;\n --cds-code-02-font-family:'IBM Plex Mono', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', monospace;\n --cds-code-02-font-size:0.875rem;\n --cds-code-02-font-weight:400;\n --cds-code-02-line-height:1.42857;\n --cds-code-02-letter-spacing:0.32px;\n --cds-heading-01-font-size:0.875rem;\n --cds-heading-01-font-weight:600;\n --cds-heading-01-line-height:1.42857;\n --cds-heading-01-letter-spacing:0.16px;\n --cds-heading-02-font-size:1rem;\n --cds-heading-02-font-weight:600;\n --cds-heading-02-line-height:1.5;\n --cds-heading-02-letter-spacing:0;\n --cds-productive-heading-01-font-size:0.875rem;\n --cds-productive-heading-01-font-weight:600;\n --cds-productive-heading-01-line-height:1.28572;\n --cds-productive-heading-01-letter-spacing:0.16px;\n --cds-productive-heading-02-font-size:1rem;\n --cds-productive-heading-02-font-weight:600;\n --cds-productive-heading-02-line-height:1.375;\n --cds-productive-heading-02-letter-spacing:0;\n --cds-productive-heading-03-font-size:1.25rem;\n --cds-productive-heading-03-font-weight:400;\n --cds-productive-heading-03-line-height:1.4;\n --cds-productive-heading-03-letter-spacing:0;\n --cds-productive-heading-04-font-size:1.75rem;\n --cds-productive-heading-04-font-weight:400;\n --cds-productive-heading-04-line-height:1.28572;\n --cds-productive-heading-04-letter-spacing:0;\n --cds-productive-heading-05-font-size:2rem;\n --cds-productive-heading-05-font-weight:400;\n --cds-productive-heading-05-line-height:1.25;\n --cds-productive-heading-05-letter-spacing:0;\n --cds-productive-heading-06-font-size:2.625rem;\n --cds-productive-heading-06-font-weight:300;\n --cds-productive-heading-06-line-height:1.199;\n --cds-productive-heading-06-letter-spacing:0;\n --cds-productive-heading-07-font-size:3.375rem;\n --cds-productive-heading-07-font-weight:300;\n --cds-productive-heading-07-line-height:1.19;\n --cds-productive-heading-07-letter-spacing:0;\n --cds-expressive-paragraph-01-font-size:1.5rem;\n --cds-expressive-paragraph-01-font-weight:300;\n --cds-expressive-paragraph-01-line-height:1.334;\n --cds-expressive-paragraph-01-letter-spacing:0;\n --cds-expressive-heading-01-font-size:0.875rem;\n --cds-expressive-heading-01-font-weight:600;\n --cds-expressive-heading-01-line-height:1.42857;\n --cds-expressive-heading-01-letter-spacing:0.16px;\n --cds-expressive-heading-02-font-size:1rem;\n --cds-expressive-heading-02-font-weight:600;\n --cds-expressive-heading-02-line-height:1.5;\n --cds-expressive-heading-02-letter-spacing:0;\n --cds-expressive-heading-03-font-size:1.25rem;\n --cds-expressive-heading-03-font-weight:400;\n --cds-expressive-heading-03-line-height:1.4;\n --cds-expressive-heading-03-letter-spacing:0;\n --cds-expressive-heading-04-font-size:1.75rem;\n --cds-expressive-heading-04-font-weight:400;\n --cds-expressive-heading-04-line-height:1.28572;\n --cds-expressive-heading-04-letter-spacing:0;\n --cds-expressive-heading-05-font-size:2rem;\n --cds-expressive-heading-05-font-weight:400;\n --cds-expressive-heading-05-line-height:1.25;\n --cds-expressive-heading-05-letter-spacing:0;\n --cds-expressive-heading-06-font-size:2rem;\n --cds-expressive-heading-06-font-weight:600;\n --cds-expressive-heading-06-line-height:1.25;\n --cds-expressive-heading-06-letter-spacing:0;\n --cds-quotation-01-font-family:'IBM Plex Serif', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', serif;\n --cds-quotation-01-font-size:1.25rem;\n --cds-quotation-01-font-weight:400;\n --cds-quotation-01-line-height:1.3;\n --cds-quotation-01-letter-spacing:0;\n --cds-quotation-02-font-family:'IBM Plex Serif', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', serif;\n --cds-quotation-02-font-size:2rem;\n --cds-quotation-02-font-weight:300;\n --cds-quotation-02-line-height:1.25;\n --cds-quotation-02-letter-spacing:0;\n --cds-display-01-font-size:2.625rem;\n --cds-display-01-font-weight:300;\n --cds-display-01-line-height:1.19;\n --cds-display-01-letter-spacing:0;\n --cds-display-02-font-size:2.625rem;\n --cds-display-02-font-weight:600;\n --cds-display-02-line-height:1.19;\n --cds-display-02-letter-spacing:0;\n --cds-display-03-font-size:2.625rem;\n --cds-display-03-font-weight:300;\n --cds-display-03-line-height:1.19;\n --cds-display-03-letter-spacing:0;\n --cds-display-04-font-size:2.625rem;\n --cds-display-04-font-weight:300;\n --cds-display-04-line-height:1.19;\n --cds-display-04-letter-spacing:0;\n --cds-legal-01-font-size:0.75rem;\n --cds-legal-01-font-weight:400;\n --cds-legal-01-line-height:1.33333;\n --cds-legal-01-letter-spacing:0.32px;\n --cds-legal-02-font-size:0.875rem;\n --cds-legal-02-font-weight:400;\n --cds-legal-02-line-height:1.28572;\n --cds-legal-02-letter-spacing:0.16px;\n --cds-body-compact-01-font-size:0.875rem;\n --cds-body-compact-01-font-weight:400;\n --cds-body-compact-01-line-height:1.28572;\n --cds-body-compact-01-letter-spacing:0.16px;\n --cds-body-compact-02-font-size:1rem;\n --cds-body-compact-02-font-weight:400;\n --cds-body-compact-02-line-height:1.375;\n --cds-body-compact-02-letter-spacing:0;\n --cds-heading-compact-01-font-size:0.875rem;\n --cds-heading-compact-01-font-weight:600;\n --cds-heading-compact-01-line-height:1.28572;\n --cds-heading-compact-01-letter-spacing:0.16px;\n --cds-heading-compact-02-font-size:1rem;\n --cds-heading-compact-02-font-weight:600;\n --cds-heading-compact-02-line-height:1.375;\n --cds-heading-compact-02-letter-spacing:0;\n --cds-body-01-font-size:0.875rem;\n --cds-body-01-font-weight:400;\n --cds-body-01-line-height:1.42857;\n --cds-body-01-letter-spacing:0.16px;\n --cds-body-02-font-size:1rem;\n --cds-body-02-font-weight:400;\n --cds-body-02-line-height:1.5;\n --cds-body-02-letter-spacing:0;\n --cds-heading-03-font-size:1.25rem;\n --cds-heading-03-font-weight:400;\n --cds-heading-03-line-height:1.4;\n --cds-heading-03-letter-spacing:0;\n --cds-heading-04-font-size:1.75rem;\n --cds-heading-04-font-weight:400;\n --cds-heading-04-line-height:1.28572;\n --cds-heading-04-letter-spacing:0;\n --cds-heading-05-font-size:2rem;\n --cds-heading-05-font-weight:400;\n --cds-heading-05-line-height:1.25;\n --cds-heading-05-letter-spacing:0;\n --cds-heading-06-font-size:2.625rem;\n --cds-heading-06-font-weight:300;\n --cds-heading-06-line-height:1.199;\n --cds-heading-06-letter-spacing:0;\n --cds-heading-07-font-size:3.375rem;\n --cds-heading-07-font-weight:300;\n --cds-heading-07-line-height:1.19;\n --cds-heading-07-letter-spacing:0;\n --cds-fluid-heading-03-font-size:1.25rem;\n --cds-fluid-heading-03-font-weight:400;\n --cds-fluid-heading-03-line-height:1.4;\n --cds-fluid-heading-03-letter-spacing:0;\n --cds-fluid-heading-04-font-size:1.75rem;\n --cds-fluid-heading-04-font-weight:400;\n --cds-fluid-heading-04-line-height:1.28572;\n --cds-fluid-heading-04-letter-spacing:0;\n --cds-fluid-heading-05-font-size:2rem;\n --cds-fluid-heading-05-font-weight:400;\n --cds-fluid-heading-05-line-height:1.25;\n --cds-fluid-heading-05-letter-spacing:0;\n --cds-fluid-heading-06-font-size:2rem;\n --cds-fluid-heading-06-font-weight:600;\n --cds-fluid-heading-06-line-height:1.25;\n --cds-fluid-heading-06-letter-spacing:0;\n --cds-fluid-paragraph-01-font-size:1.5rem;\n --cds-fluid-paragraph-01-font-weight:300;\n --cds-fluid-paragraph-01-line-height:1.334;\n --cds-fluid-paragraph-01-letter-spacing:0;\n --cds-fluid-quotation-01-font-family:'IBM Plex Serif', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', serif;\n --cds-fluid-quotation-01-font-size:1.25rem;\n --cds-fluid-quotation-01-font-weight:400;\n --cds-fluid-quotation-01-line-height:1.3;\n --cds-fluid-quotation-01-letter-spacing:0;\n --cds-fluid-quotation-02-font-family:'IBM Plex Serif', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', serif;\n --cds-fluid-quotation-02-font-size:2rem;\n --cds-fluid-quotation-02-font-weight:300;\n --cds-fluid-quotation-02-line-height:1.25;\n --cds-fluid-quotation-02-letter-spacing:0;\n --cds-fluid-display-01-font-size:2.625rem;\n --cds-fluid-display-01-font-weight:300;\n --cds-fluid-display-01-line-height:1.19;\n --cds-fluid-display-01-letter-spacing:0;\n --cds-fluid-display-02-font-size:2.625rem;\n --cds-fluid-display-02-font-weight:600;\n --cds-fluid-display-02-line-height:1.19;\n --cds-fluid-display-02-letter-spacing:0;\n --cds-fluid-display-03-font-size:2.625rem;\n --cds-fluid-display-03-font-weight:300;\n --cds-fluid-display-03-line-height:1.19;\n --cds-fluid-display-03-letter-spacing:0;\n --cds-fluid-display-04-font-size:2.625rem;\n --cds-fluid-display-04-font-weight:300;\n --cds-fluid-display-04-line-height:1.19;\n --cds-fluid-display-04-letter-spacing:0;\n --cds-button-separator:#e0e0e0;\n --cds-button-primary:#0f62fe;\n --cds-button-secondary:#393939;\n --cds-button-tertiary:#0f62fe;\n --cds-button-danger-primary:#da1e28;\n --cds-button-danger-secondary:#da1e28;\n --cds-button-danger-active:#750e13;\n --cds-button-primary-active:#002d9c;\n --cds-button-secondary-active:#6f6f6f;\n --cds-button-tertiary-active:#002d9c;\n --cds-button-danger-hover:#b81921;\n --cds-button-primary-hover:#0050e6;\n --cds-button-secondary-hover:#474747;\n --cds-button-tertiary-hover:#0050e6;\n --cds-button-disabled:#c6c6c6;\n}\n@media screen and (-ms-high-contrast: active), (forced-colors: active){\n :host .cds--g10{\n --cds-icon-primary:ButtonText;\n --cds-icon-secondary:ButtonText;\n --cds-icon-interactive:ButtonText;\n --cds-icon-disabled:GrayText;\n --cds-icon-on-color-disabled:GrayText;\n --cds-icon-inverse:SelectedItemText;\n --cds-icon-on-color:SelectedItemText;\n --cds-button-disabled:GrayText;\n --cds-interactive:ButtonText;\n --cds-link-primary:LinkText;\n --cds-link-primary-hover:LinkText;\n --cds-link-secondary:LinkText;\n --cds-link-inverse:SelectedItemText;\n --cds-link-inverse-hover:SelectedItemText;\n --cds-link-inverse-visited:SelectedItemText;\n --cds-link-visited:VisitedText;\n --cds-background-selected:SelectedItem;\n --cds-background-selected-hover:SelectedItem;\n --cds-background-inverse:SelectedItem;\n --cds-layer-selected-inverse:SelectedItem;\n }\n}\n:host .cds--g10{\n --cds-layer:var(--cds-layer-01, #f4f4f4);\n --cds-layer-active:var(--cds-layer-active-01, #c6c6c6);\n --cds-layer-background:var(--cds-layer-background-01, #ffffff);\n --cds-layer-hover:var(--cds-layer-hover-01, #e8e8e8);\n --cds-layer-selected:var(--cds-layer-selected-01, #e0e0e0);\n --cds-layer-selected-hover:var(--cds-layer-selected-hover-01, #d1d1d1);\n --cds-layer-accent:var(--cds-layer-accent-01, #e0e0e0);\n --cds-layer-accent-hover:var(--cds-layer-accent-hover-01, #d1d1d1);\n --cds-layer-accent-active:var(--cds-layer-accent-active-01, #a8a8a8);\n --cds-field:var(--cds-field-01, #f4f4f4);\n --cds-field-hover:var(--cds-field-hover-01, #e8e8e8);\n --cds-border-subtle:var(--cds-border-subtle-00, #e0e0e0);\n --cds-border-subtle-selected:var(--cds-border-subtle-selected-01, #c6c6c6);\n --cds-border-strong:var(--cds-border-strong-01, #8d8d8d);\n --cds-border-tile:var(--cds-border-tile-01, #c6c6c6);\n}\n:host .cds--g90{\n --cds-ai-aura-end:rgba(0, 0, 0, 0);\n --cds-ai-aura-hover-background:#474747;\n --cds-ai-aura-hover-end:rgba(0, 0, 0, 0);\n --cds-ai-aura-hover-start:rgba(69, 137, 255, 0.4);\n --cds-ai-aura-start:rgba(69, 137, 255, 0.1);\n --cds-ai-aura-start-sm:rgba(69, 137, 255, 0.16);\n --cds-ai-border-end:#4589ff;\n --cds-ai-border-start:rgba(166, 200, 255, 0.36);\n --cds-ai-border-strong:#78a9ff;\n --cds-ai-drop-shadow:rgba(0, 0, 0, 0.28);\n --cds-ai-inner-shadow:rgba(69, 137, 255, 0.16);\n --cds-ai-overlay:rgba(0, 0, 0, 0.5);\n --cds-ai-popover-background:#161616;\n --cds-ai-popover-caret-bottom:#4589ff;\n --cds-ai-popover-caret-bottom-background:#202d45;\n --cds-ai-popover-caret-bottom-background-actions:#1e283a;\n --cds-ai-popover-caret-center:#4870b5;\n --cds-ai-popover-shadow-outer-01:rgba(0, 0, 0, 0.12);\n --cds-ai-popover-shadow-outer-02:rgba(0, 0, 0, 0.08);\n --cds-ai-skeleton-background:rgba(120, 169, 255, 0.5);\n --cds-ai-skeleton-element-background:rgba(120, 169, 255, 0.3);\n --cds-background:#262626;\n --cds-background-active:rgba(141, 141, 141, 0.4);\n --cds-background-brand:#0f62fe;\n --cds-background-hover:rgba(141, 141, 141, 0.16);\n --cds-background-inverse:#f4f4f4;\n --cds-background-inverse-hover:#e8e8e8;\n --cds-background-selected:rgba(141, 141, 141, 0.24);\n --cds-background-selected-hover:rgba(141, 141, 141, 0.32);\n --cds-border-disabled:rgba(141, 141, 141, 0.5);\n --cds-border-interactive:#4589ff;\n --cds-border-inverse:#f4f4f4;\n --cds-border-strong-01:#8d8d8d;\n --cds-border-strong-02:#a8a8a8;\n --cds-border-strong-03:#c6c6c6;\n --cds-border-subtle-00:#525252;\n --cds-border-subtle-01:#6f6f6f;\n --cds-border-subtle-02:#8d8d8d;\n --cds-border-subtle-03:#8d8d8d;\n --cds-border-subtle-selected-01:#8d8d8d;\n --cds-border-subtle-selected-02:#a8a8a8;\n --cds-border-subtle-selected-03:#a8a8a8;\n --cds-border-tile-01:#6f6f6f;\n --cds-border-tile-02:#8d8d8d;\n --cds-border-tile-03:#a8a8a8;\n --cds-chat-avatar-agent:#c6c6c6;\n --cds-chat-avatar-bot:#8d8d8d;\n --cds-chat-avatar-user:#4589ff;\n --cds-chat-bubble-agent:#262626;\n --cds-chat-bubble-agent-text:#f4f4f4;\n --cds-chat-bubble-border:#525252;\n --cds-chat-bubble-user:#393939;\n --cds-chat-bubble-user-text:#f4f4f4;\n --cds-chat-button:#78a9ff;\n --cds-chat-button-active:rgba(141, 141, 141, 0.4);\n --cds-chat-button-hover:rgba(141, 141, 141, 0.16);\n --cds-chat-button-selected:rgba(141, 141, 141, 0.24);\n --cds-chat-button-text-hover:#a6c8ff;\n --cds-chat-button-text-selected:#c6c6c6;\n --cds-chat-header-background:#262626;\n --cds-chat-header-text:#f4f4f4;\n --cds-chat-prompt-background:#161616;\n --cds-chat-prompt-border-end:rgba(38, 38, 38, 0);\n --cds-chat-prompt-border-start:#262626;\n --cds-chat-prompt-text:#f4f4f4;\n --cds-chat-shell-background:#262626;\n --cds-field-01:#393939;\n --cds-field-02:#525252;\n --cds-field-03:#6f6f6f;\n --cds-field-hover-01:#474747;\n --cds-field-hover-02:#636363;\n --cds-field-hover-03:#5e5e5e;\n --cds-focus:#ffffff;\n --cds-focus-inset:#161616;\n --cds-focus-inverse:#0f62fe;\n --cds-highlight:#002d9c;\n --cds-icon-disabled:rgba(244, 244, 244, 0.25);\n --cds-icon-interactive:#ffffff;\n --cds-icon-inverse:#161616;\n --cds-icon-on-color:#ffffff;\n --cds-icon-on-color-disabled:rgba(255, 255, 255, 0.25);\n --cds-icon-primary:#f4f4f4;\n --cds-icon-secondary:#c6c6c6;\n --cds-interactive:#4589ff;\n --cds-layer-01:#393939;\n --cds-layer-02:#525252;\n --cds-layer-03:#6f6f6f;\n --cds-layer-accent-01:#525252;\n --cds-layer-accent-02:#6f6f6f;\n --cds-layer-accent-03:#8d8d8d;\n --cds-layer-accent-active-01:#8d8d8d;\n --cds-layer-accent-active-02:#393939;\n --cds-layer-accent-active-03:#525252;\n --cds-layer-accent-hover-01:#636363;\n --cds-layer-accent-hover-02:#5e5e5e;\n --cds-layer-accent-hover-03:#7a7a7a;\n --cds-layer-active-01:#6f6f6f;\n --cds-layer-active-02:#8d8d8d;\n --cds-layer-active-03:#393939;\n --cds-layer-background-01:#262626;\n --cds-layer-background-02:#393939;\n --cds-layer-background-03:#525252;\n --cds-layer-hover-01:#474747;\n --cds-layer-hover-02:#636363;\n --cds-layer-hover-03:#5e5e5e;\n --cds-layer-selected-01:#525252;\n --cds-layer-selected-02:#6f6f6f;\n --cds-layer-selected-03:#525252;\n --cds-layer-selected-disabled:#a8a8a8;\n --cds-layer-selected-hover-01:#636363;\n --cds-layer-selected-hover-02:#5e5e5e;\n --cds-layer-selected-hover-03:#636363;\n --cds-layer-selected-inverse:#f4f4f4;\n --cds-link-inverse:#0f62fe;\n --cds-link-inverse-active:#161616;\n --cds-link-inverse-hover:#0043ce;\n --cds-link-inverse-visited:#8a3ffc;\n --cds-link-primary:#78a9ff;\n --cds-link-primary-hover:#a6c8ff;\n --cds-link-secondary:#a6c8ff;\n --cds-link-visited:#be95ff;\n --cds-overlay:rgba(0, 0, 0, 0.6);\n --cds-shadow:rgba(0, 0, 0, 0.8);\n --cds-skeleton-background:#333333;\n --cds-skeleton-element:#525252;\n --cds-support-caution-major:#ff832b;\n --cds-support-caution-minor:#f1c21b;\n --cds-support-caution-undefined:#a56eff;\n --cds-support-error:#ff8389;\n --cds-support-error-inverse:#da1e28;\n --cds-support-info:#4589ff;\n --cds-support-info-inverse:#0043ce;\n --cds-support-success:#42be65;\n --cds-support-success-inverse:#24a148;\n --cds-support-warning:#f1c21b;\n --cds-support-warning-inverse:#f1c21b;\n --cds-syntax-angle-bracket:#8d8d8d;\n --cds-syntax-annotation:#08bdba;\n --cds-syntax-arithmetic-operator:#e0e0e0;\n --cds-syntax-atom:#f4f4f4;\n --cds-syntax-attribute:#33b1ff;\n --cds-syntax-attribute-name:#33b1ff;\n --cds-syntax-attribute-value:#f4f4f4;\n --cds-syntax-bitwise-operator:#e0e0e0;\n --cds-syntax-block-comment:#42be65;\n --cds-syntax-bool:#f4f4f4;\n --cds-syntax-brace:#e0e0e0;\n --cds-syntax-bracket:#e0e0e0;\n --cds-syntax-character:#f4f4f4;\n --cds-syntax-class-name:#3ddbd9;\n --cds-syntax-color:#f4f4f4;\n --cds-syntax-comment:#42be65;\n --cds-syntax-compare-operator:#e0e0e0;\n --cds-syntax-constant:#4589ff;\n --cds-syntax-content:#f4f4f4;\n --cds-syntax-content-separator:#e0e0e0;\n --cds-syntax-control-keyword:#be95ff;\n --cds-syntax-control-operator:#be95ff;\n --cds-syntax-definition:#33b1ff;\n --cds-syntax-definition-keyword:#33b1ff;\n --cds-syntax-definition-operator:#33b1ff;\n --cds-syntax-deref-operator:#e0e0e0;\n --cds-syntax-doc-comment:#42be65;\n --cds-syntax-doc-string:#f4f4f4;\n --cds-syntax-document-meta:#42be65;\n --cds-syntax-emphasis:#f4f4f4;\n --cds-syntax-escape:#e0e0e0;\n --cds-syntax-float:#6fdc8c;\n --cds-syntax-function:#f1c21b;\n --cds-syntax-heading:#33b1ff;\n --cds-syntax-heading-1:#33b1ff;\n --cds-syntax-heading-2:#33b1ff;\n --cds-syntax-heading-3:#33b1ff;\n --cds-syntax-heading-4:#33b1ff;\n --cds-syntax-heading-5:#33b1ff;\n --cds-syntax-heading-6:#33b1ff;\n --cds-syntax-integer:#6fdc8c;\n --cds-syntax-invalid:#fa4d56;\n --cds-syntax-keyword:#4589ff;\n --cds-syntax-label-name:#a6c8ff;\n --cds-syntax-line-comment:#42be65;\n --cds-syntax-link:#4589ff;\n --cds-syntax-list:#f4f4f4;\n --cds-syntax-literal:#f4f4f4;\n --cds-syntax-local:#a6c8ff;\n --cds-syntax-logic-operator:#e0e0e0;\n --cds-syntax-macro-name:#f4f4f4;\n --cds-syntax-meta:#42be65;\n --cds-syntax-modifier:#4589ff;\n --cds-syntax-module-keyword:#be95ff;\n --cds-syntax-monospace:#f4f4f4;\n --cds-syntax-name:#a6c8ff;\n --cds-syntax-namespace:#3ddbd9;\n --cds-syntax-null:#f4f4f4;\n --cds-syntax-number:#6fdc8c;\n --cds-syntax-operator:#e0e0e0;\n --cds-syntax-operator-keyword:#4589ff;\n --cds-syntax-paren:#e0e0e0;\n --cds-syntax-processing-instruction:#f4f4f4;\n --cds-syntax-property-name:#33b1ff;\n --cds-syntax-punctuation:#e0e0e0;\n --cds-syntax-quote:#42be65;\n --cds-syntax-regexp:#be95ff;\n --cds-syntax-self:#3ddbd9;\n --cds-syntax-separator:#e0e0e0;\n --cds-syntax-special:#4589ff;\n --cds-syntax-special-string:#be95ff;\n --cds-syntax-square-bracket:#e0e0e0;\n --cds-syntax-standard:#4589ff;\n --cds-syntax-strikethrough:#f4f4f4;\n --cds-syntax-string:#f4f4f4;\n --cds-syntax-strong:#f4f4f4;\n --cds-syntax-tag:#3ddbd9;\n --cds-syntax-tag-name:#3ddbd9;\n --cds-syntax-type:#3ddbd9;\n --cds-syntax-type-name:#3ddbd9;\n --cds-syntax-type-operator:#3ddbd9;\n --cds-syntax-unit:#6fdc8c;\n --cds-syntax-update-operator:#e0e0e0;\n --cds-syntax-url:#e0e0e0;\n --cds-syntax-variable:#a6c8ff;\n --cds-syntax-variable-name:#a6c8ff;\n --cds-text-disabled:rgba(244, 244, 244, 0.25);\n --cds-text-error:#ffb3b8;\n --cds-text-helper:#c6c6c6;\n --cds-text-inverse:#161616;\n --cds-text-on-color:#ffffff;\n --cds-text-on-color-disabled:rgba(255, 255, 255, 0.25);\n --cds-text-placeholder:rgba(244, 244, 244, 0.4);\n --cds-text-primary:#f4f4f4;\n --cds-text-secondary:#c6c6c6;\n --cds-toggle-off:#8d8d8d;\n --cds-spacing-01:0.125rem;\n --cds-spacing-02:0.25rem;\n --cds-spacing-03:0.5rem;\n --cds-spacing-04:0.75rem;\n --cds-spacing-05:1rem;\n --cds-spacing-06:1.5rem;\n --cds-spacing-07:2rem;\n --cds-spacing-08:2.5rem;\n --cds-spacing-09:3rem;\n --cds-spacing-10:4rem;\n --cds-spacing-11:5rem;\n --cds-spacing-12:6rem;\n --cds-spacing-13:10rem;\n --cds-fluid-spacing-01:0;\n --cds-fluid-spacing-02:2vw;\n --cds-fluid-spacing-03:5vw;\n --cds-fluid-spacing-04:10vw;\n --cds-caption-01-font-size:0.75rem;\n --cds-caption-01-font-weight:400;\n --cds-caption-01-line-height:1.33333;\n --cds-caption-01-letter-spacing:0.32px;\n --cds-caption-02-font-size:0.875rem;\n --cds-caption-02-font-weight:400;\n --cds-caption-02-line-height:1.28572;\n --cds-caption-02-letter-spacing:0.32px;\n --cds-label-01-font-size:0.75rem;\n --cds-label-01-font-weight:400;\n --cds-label-01-line-height:1.33333;\n --cds-label-01-letter-spacing:0.32px;\n --cds-label-02-font-size:0.875rem;\n --cds-label-02-font-weight:400;\n --cds-label-02-line-height:1.28572;\n --cds-label-02-letter-spacing:0.16px;\n --cds-helper-text-01-font-size:0.75rem;\n --cds-helper-text-01-line-height:1.33333;\n --cds-helper-text-01-letter-spacing:0.32px;\n --cds-helper-text-02-font-size:0.875rem;\n --cds-helper-text-02-font-weight:400;\n --cds-helper-text-02-line-height:1.28572;\n --cds-helper-text-02-letter-spacing:0.16px;\n --cds-body-short-01-font-size:0.875rem;\n --cds-body-short-01-font-weight:400;\n --cds-body-short-01-line-height:1.28572;\n --cds-body-short-01-letter-spacing:0.16px;\n --cds-body-short-02-font-size:1rem;\n --cds-body-short-02-font-weight:400;\n --cds-body-short-02-line-height:1.375;\n --cds-body-short-02-letter-spacing:0;\n --cds-body-long-01-font-size:0.875rem;\n --cds-body-long-01-font-weight:400;\n --cds-body-long-01-line-height:1.42857;\n --cds-body-long-01-letter-spacing:0.16px;\n --cds-body-long-02-font-size:1rem;\n --cds-body-long-02-font-weight:400;\n --cds-body-long-02-line-height:1.5;\n --cds-body-long-02-letter-spacing:0;\n --cds-code-01-font-family:'IBM Plex Mono', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', monospace;\n --cds-code-01-font-size:0.75rem;\n --cds-code-01-font-weight:400;\n --cds-code-01-line-height:1.33333;\n --cds-code-01-letter-spacing:0.32px;\n --cds-code-02-font-family:'IBM Plex Mono', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', monospace;\n --cds-code-02-font-size:0.875rem;\n --cds-code-02-font-weight:400;\n --cds-code-02-line-height:1.42857;\n --cds-code-02-letter-spacing:0.32px;\n --cds-heading-01-font-size:0.875rem;\n --cds-heading-01-font-weight:600;\n --cds-heading-01-line-height:1.42857;\n --cds-heading-01-letter-spacing:0.16px;\n --cds-heading-02-font-size:1rem;\n --cds-heading-02-font-weight:600;\n --cds-heading-02-line-height:1.5;\n --cds-heading-02-letter-spacing:0;\n --cds-productive-heading-01-font-size:0.875rem;\n --cds-productive-heading-01-font-weight:600;\n --cds-productive-heading-01-line-height:1.28572;\n --cds-productive-heading-01-letter-spacing:0.16px;\n --cds-productive-heading-02-font-size:1rem;\n --cds-productive-heading-02-font-weight:600;\n --cds-productive-heading-02-line-height:1.375;\n --cds-productive-heading-02-letter-spacing:0;\n --cds-productive-heading-03-font-size:1.25rem;\n --cds-productive-heading-03-font-weight:400;\n --cds-productive-heading-03-line-height:1.4;\n --cds-productive-heading-03-letter-spacing:0;\n --cds-productive-heading-04-font-size:1.75rem;\n --cds-productive-heading-04-font-weight:400;\n --cds-productive-heading-04-line-height:1.28572;\n --cds-productive-heading-04-letter-spacing:0;\n --cds-productive-heading-05-font-size:2rem;\n --cds-productive-heading-05-font-weight:400;\n --cds-productive-heading-05-line-height:1.25;\n --cds-productive-heading-05-letter-spacing:0;\n --cds-productive-heading-06-font-size:2.625rem;\n --cds-productive-heading-06-font-weight:300;\n --cds-productive-heading-06-line-height:1.199;\n --cds-productive-heading-06-letter-spacing:0;\n --cds-productive-heading-07-font-size:3.375rem;\n --cds-productive-heading-07-font-weight:300;\n --cds-productive-heading-07-line-height:1.19;\n --cds-productive-heading-07-letter-spacing:0;\n --cds-expressive-paragraph-01-font-size:1.5rem;\n --cds-expressive-paragraph-01-font-weight:300;\n --cds-expressive-paragraph-01-line-height:1.334;\n --cds-expressive-paragraph-01-letter-spacing:0;\n --cds-expressive-heading-01-font-size:0.875rem;\n --cds-expressive-heading-01-font-weight:600;\n --cds-expressive-heading-01-line-height:1.42857;\n --cds-expressive-heading-01-letter-spacing:0.16px;\n --cds-expressive-heading-02-font-size:1rem;\n --cds-expressive-heading-02-font-weight:600;\n --cds-expressive-heading-02-line-height:1.5;\n --cds-expressive-heading-02-letter-spacing:0;\n --cds-expressive-heading-03-font-size:1.25rem;\n --cds-expressive-heading-03-font-weight:400;\n --cds-expressive-heading-03-line-height:1.4;\n --cds-expressive-heading-03-letter-spacing:0;\n --cds-expressive-heading-04-font-size:1.75rem;\n --cds-expressive-heading-04-font-weight:400;\n --cds-expressive-heading-04-line-height:1.28572;\n --cds-expressive-heading-04-letter-spacing:0;\n --cds-expressive-heading-05-font-size:2rem;\n --cds-expressive-heading-05-font-weight:400;\n --cds-expressive-heading-05-line-height:1.25;\n --cds-expressive-heading-05-letter-spacing:0;\n --cds-expressive-heading-06-font-size:2rem;\n --cds-expressive-heading-06-font-weight:600;\n --cds-expressive-heading-06-line-height:1.25;\n --cds-expressive-heading-06-letter-spacing:0;\n --cds-quotation-01-font-family:'IBM Plex Serif', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', serif;\n --cds-quotation-01-font-size:1.25rem;\n --cds-quotation-01-font-weight:400;\n --cds-quotation-01-line-height:1.3;\n --cds-quotation-01-letter-spacing:0;\n --cds-quotation-02-font-family:'IBM Plex Serif', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', serif;\n --cds-quotation-02-font-size:2rem;\n --cds-quotation-02-font-weight:300;\n --cds-quotation-02-line-height:1.25;\n --cds-quotation-02-letter-spacing:0;\n --cds-display-01-font-size:2.625rem;\n --cds-display-01-font-weight:300;\n --cds-display-01-line-height:1.19;\n --cds-display-01-letter-spacing:0;\n --cds-display-02-font-size:2.625rem;\n --cds-display-02-font-weight:600;\n --cds-display-02-line-height:1.19;\n --cds-display-02-letter-spacing:0;\n --cds-display-03-font-size:2.625rem;\n --cds-display-03-font-weight:300;\n --cds-display-03-line-height:1.19;\n --cds-display-03-letter-spacing:0;\n --cds-display-04-font-size:2.625rem;\n --cds-display-04-font-weight:300;\n --cds-display-04-line-height:1.19;\n --cds-display-04-letter-spacing:0;\n --cds-legal-01-font-size:0.75rem;\n --cds-legal-01-font-weight:400;\n --cds-legal-01-line-height:1.33333;\n --cds-legal-01-letter-spacing:0.32px;\n --cds-legal-02-font-size:0.875rem;\n --cds-legal-02-font-weight:400;\n --cds-legal-02-line-height:1.28572;\n --cds-legal-02-letter-spacing:0.16px;\n --cds-body-compact-01-font-size:0.875rem;\n --cds-body-compact-01-font-weight:400;\n --cds-body-compact-01-line-height:1.28572;\n --cds-body-compact-01-letter-spacing:0.16px;\n --cds-body-compact-02-font-size:1rem;\n --cds-body-compact-02-font-weight:400;\n --cds-body-compact-02-line-height:1.375;\n --cds-body-compact-02-letter-spacing:0;\n --cds-heading-compact-01-font-size:0.875rem;\n --cds-heading-compact-01-font-weight:600;\n --cds-heading-compact-01-line-height:1.28572;\n --cds-heading-compact-01-letter-spacing:0.16px;\n --cds-heading-compact-02-font-size:1rem;\n --cds-heading-compact-02-font-weight:600;\n --cds-heading-compact-02-line-height:1.375;\n --cds-heading-compact-02-letter-spacing:0;\n --cds-body-01-font-size:0.875rem;\n --cds-body-01-font-weight:400;\n --cds-body-01-line-height:1.42857;\n --cds-body-01-letter-spacing:0.16px;\n --cds-body-02-font-size:1rem;\n --cds-body-02-font-weight:400;\n --cds-body-02-line-height:1.5;\n --cds-body-02-letter-spacing:0;\n --cds-heading-03-font-size:1.25rem;\n --cds-heading-03-font-weight:400;\n --cds-heading-03-line-height:1.4;\n --cds-heading-03-letter-spacing:0;\n --cds-heading-04-font-size:1.75rem;\n --cds-heading-04-font-weight:400;\n --cds-heading-04-line-height:1.28572;\n --cds-heading-04-letter-spacing:0;\n --cds-heading-05-font-size:2rem;\n --cds-heading-05-font-weight:400;\n --cds-heading-05-line-height:1.25;\n --cds-heading-05-letter-spacing:0;\n --cds-heading-06-font-size:2.625rem;\n --cds-heading-06-font-weight:300;\n --cds-heading-06-line-height:1.199;\n --cds-heading-06-letter-spacing:0;\n --cds-heading-07-font-size:3.375rem;\n --cds-heading-07-font-weight:300;\n --cds-heading-07-line-height:1.19;\n --cds-heading-07-letter-spacing:0;\n --cds-fluid-heading-03-font-size:1.25rem;\n --cds-fluid-heading-03-font-weight:400;\n --cds-fluid-heading-03-line-height:1.4;\n --cds-fluid-heading-03-letter-spacing:0;\n --cds-fluid-heading-04-font-size:1.75rem;\n --cds-fluid-heading-04-font-weight:400;\n --cds-fluid-heading-04-line-height:1.28572;\n --cds-fluid-heading-04-letter-spacing:0;\n --cds-fluid-heading-05-font-size:2rem;\n --cds-fluid-heading-05-font-weight:400;\n --cds-fluid-heading-05-line-height:1.25;\n --cds-fluid-heading-05-letter-spacing:0;\n --cds-fluid-heading-06-font-size:2rem;\n --cds-fluid-heading-06-font-weight:600;\n --cds-fluid-heading-06-line-height:1.25;\n --cds-fluid-heading-06-letter-spacing:0;\n --cds-fluid-paragraph-01-font-size:1.5rem;\n --cds-fluid-paragraph-01-font-weight:300;\n --cds-fluid-paragraph-01-line-height:1.334;\n --cds-fluid-paragraph-01-letter-spacing:0;\n --cds-fluid-quotation-01-font-family:'IBM Plex Serif', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', serif;\n --cds-fluid-quotation-01-font-size:1.25rem;\n --cds-fluid-quotation-01-font-weight:400;\n --cds-fluid-quotation-01-line-height:1.3;\n --cds-fluid-quotation-01-letter-spacing:0;\n --cds-fluid-quotation-02-font-family:'IBM Plex Serif', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', serif;\n --cds-fluid-quotation-02-font-size:2rem;\n --cds-fluid-quotation-02-font-weight:300;\n --cds-fluid-quotation-02-line-height:1.25;\n --cds-fluid-quotation-02-letter-spacing:0;\n --cds-fluid-display-01-font-size:2.625rem;\n --cds-fluid-display-01-font-weight:300;\n --cds-fluid-display-01-line-height:1.19;\n --cds-fluid-display-01-letter-spacing:0;\n --cds-fluid-display-02-font-size:2.625rem;\n --cds-fluid-display-02-font-weight:600;\n --cds-fluid-display-02-line-height:1.19;\n --cds-fluid-display-02-letter-spacing:0;\n --cds-fluid-display-03-font-size:2.625rem;\n --cds-fluid-display-03-font-weight:300;\n --cds-fluid-display-03-line-height:1.19;\n --cds-fluid-display-03-letter-spacing:0;\n --cds-fluid-display-04-font-size:2.625rem;\n --cds-fluid-display-04-font-weight:300;\n --cds-fluid-display-04-line-height:1.19;\n --cds-fluid-display-04-letter-spacing:0;\n --cds-button-separator:#161616;\n --cds-button-primary:#0f62fe;\n --cds-button-secondary:#6f6f6f;\n --cds-button-tertiary:#ffffff;\n --cds-button-danger-primary:#da1e28;\n --cds-button-danger-secondary:#ff8389;\n --cds-button-danger-active:#750e13;\n --cds-button-primary-active:#002d9c;\n --cds-button-secondary-active:#393939;\n --cds-button-tertiary-active:#c6c6c6;\n --cds-button-danger-hover:#b81921;\n --cds-button-primary-hover:#0050e6;\n --cds-button-secondary-hover:#5e5e5e;\n --cds-button-tertiary-hover:#f4f4f4;\n --cds-button-disabled:rgba(141, 141, 141, 0.3);\n}\n@media screen and (-ms-high-contrast: active), (forced-colors: active){\n :host .cds--g90{\n --cds-icon-primary:ButtonText;\n --cds-icon-secondary:ButtonText;\n --cds-icon-interactive:ButtonText;\n --cds-icon-disabled:GrayText;\n --cds-icon-on-color-disabled:GrayText;\n --cds-icon-inverse:SelectedItemText;\n --cds-icon-on-color:SelectedItemText;\n --cds-button-disabled:GrayText;\n --cds-interactive:ButtonText;\n --cds-link-primary:LinkText;\n --cds-link-primary-hover:LinkText;\n --cds-link-secondary:LinkText;\n --cds-link-inverse:SelectedItemText;\n --cds-link-inverse-hover:SelectedItemText;\n --cds-link-inverse-visited:SelectedItemText;\n --cds-link-visited:VisitedText;\n --cds-background-selected:SelectedItem;\n --cds-background-selected-hover:SelectedItem;\n --cds-background-inverse:SelectedItem;\n --cds-layer-selected-inverse:SelectedItem;\n }\n}\n:host .cds--g90{\n --cds-layer:var(--cds-layer-01, #f4f4f4);\n --cds-layer-active:var(--cds-layer-active-01, #c6c6c6);\n --cds-layer-background:var(--cds-layer-background-01, #ffffff);\n --cds-layer-hover:var(--cds-layer-hover-01, #e8e8e8);\n --cds-layer-selected:var(--cds-layer-selected-01, #e0e0e0);\n --cds-layer-selected-hover:var(--cds-layer-selected-hover-01, #d1d1d1);\n --cds-layer-accent:var(--cds-layer-accent-01, #e0e0e0);\n --cds-layer-accent-hover:var(--cds-layer-accent-hover-01, #d1d1d1);\n --cds-layer-accent-active:var(--cds-layer-accent-active-01, #a8a8a8);\n --cds-field:var(--cds-field-01, #f4f4f4);\n --cds-field-hover:var(--cds-field-hover-01, #e8e8e8);\n --cds-border-subtle:var(--cds-border-subtle-00, #e0e0e0);\n --cds-border-subtle-selected:var(--cds-border-subtle-selected-01, #c6c6c6);\n --cds-border-strong:var(--cds-border-strong-01, #8d8d8d);\n --cds-border-tile:var(--cds-border-tile-01, #c6c6c6);\n}\n:host .cds--g100{\n --cds-ai-aura-end:rgba(0, 0, 0, 0);\n --cds-ai-aura-hover-background:#333333;\n --cds-ai-aura-hover-end:rgba(0, 0, 0, 0);\n --cds-ai-aura-hover-start:rgba(69, 137, 255, 0.4);\n --cds-ai-aura-start:rgba(69, 137, 255, 0.1);\n --cds-ai-aura-start-sm:rgba(69, 137, 255, 0.16);\n --cds-ai-border-end:#4589ff;\n --cds-ai-border-start:rgba(166, 200, 255, 0.36);\n --cds-ai-border-strong:#78a9ff;\n --cds-ai-drop-shadow:rgba(0, 0, 0, 0.28);\n --cds-ai-inner-shadow:rgba(69, 137, 255, 0.16);\n --cds-ai-overlay:rgba(0, 0, 0, 0.5);\n --cds-ai-popover-background:#161616;\n --cds-ai-popover-caret-bottom:#4589ff;\n --cds-ai-popover-caret-bottom-background:#202d45;\n --cds-ai-popover-caret-bottom-background-actions:#1e283a;\n --cds-ai-popover-caret-center:#4870b5;\n --cds-ai-popover-shadow-outer-01:rgba(0, 0, 0, 0.12);\n --cds-ai-popover-shadow-outer-02:rgba(0, 0, 0, 0.08);\n --cds-ai-skeleton-background:rgba(120, 169, 255, 0.5);\n --cds-ai-skeleton-element-background:rgba(120, 169, 255, 0.3);\n --cds-background:#161616;\n --cds-background-active:rgba(141, 141, 141, 0.4);\n --cds-background-brand:#0f62fe;\n --cds-background-hover:rgba(141, 141, 141, 0.16);\n --cds-background-inverse:#f4f4f4;\n --cds-background-inverse-hover:#e8e8e8;\n --cds-background-selected:rgba(141, 141, 141, 0.24);\n --cds-background-selected-hover:rgba(141, 141, 141, 0.32);\n --cds-border-disabled:rgba(141, 141, 141, 0.5);\n --cds-border-interactive:#4589ff;\n --cds-border-inverse:#f4f4f4;\n --cds-border-strong-01:#6f6f6f;\n --cds-border-strong-02:#8d8d8d;\n --cds-border-strong-03:#a8a8a8;\n --cds-border-subtle-00:#393939;\n --cds-border-subtle-01:#525252;\n --cds-border-subtle-02:#6f6f6f;\n --cds-border-subtle-03:#6f6f6f;\n --cds-border-subtle-selected-01:#6f6f6f;\n --cds-border-subtle-selected-02:#8d8d8d;\n --cds-border-subtle-selected-03:#8d8d8d;\n --cds-border-tile-01:#525252;\n --cds-border-tile-02:#6f6f6f;\n --cds-border-tile-03:#8d8d8d;\n --cds-chat-avatar-agent:#c6c6c6;\n --cds-chat-avatar-bot:#8d8d8d;\n --cds-chat-avatar-user:#4589ff;\n --cds-chat-bubble-agent:#262626;\n --cds-chat-bubble-agent-text:#f4f4f4;\n --cds-chat-bubble-border:#525252;\n --cds-chat-bubble-user:#393939;\n --cds-chat-bubble-user-text:#f4f4f4;\n --cds-chat-button:#78a9ff;\n --cds-chat-button-active:rgba(141, 141, 141, 0.4);\n --cds-chat-button-hover:rgba(141, 141, 141, 0.16);\n --cds-chat-button-selected:rgba(141, 141, 141, 0.24);\n --cds-chat-button-text-hover:#a6c8ff;\n --cds-chat-button-text-selected:#c6c6c6;\n --cds-chat-header-background:#262626;\n --cds-chat-header-text:#f4f4f4;\n --cds-chat-prompt-background:#161616;\n --cds-chat-prompt-border-end:rgba(38, 38, 38, 0);\n --cds-chat-prompt-border-start:#262626;\n --cds-chat-prompt-text:#f4f4f4;\n --cds-chat-shell-background:#262626;\n --cds-field-01:#262626;\n --cds-field-02:#393939;\n --cds-field-03:#525252;\n --cds-field-hover-01:#333333;\n --cds-field-hover-02:#474747;\n --cds-field-hover-03:#636363;\n --cds-focus:#ffffff;\n --cds-focus-inset:#161616;\n --cds-focus-inverse:#0f62fe;\n --cds-highlight:#001d6c;\n --cds-icon-disabled:rgba(244, 244, 244, 0.25);\n --cds-icon-interactive:#ffffff;\n --cds-icon-inverse:#161616;\n --cds-icon-on-color:#ffffff;\n --cds-icon-on-color-disabled:rgba(255, 255, 255, 0.25);\n --cds-icon-primary:#f4f4f4;\n --cds-icon-secondary:#c6c6c6;\n --cds-interactive:#4589ff;\n --cds-layer-01:#262626;\n --cds-layer-02:#393939;\n --cds-layer-03:#525252;\n --cds-layer-accent-01:#393939;\n --cds-layer-accent-02:#525252;\n --cds-layer-accent-03:#6f6f6f;\n --cds-layer-accent-active-01:#6f6f6f;\n --cds-layer-accent-active-02:#8d8d8d;\n --cds-layer-accent-active-03:#393939;\n --cds-layer-accent-hover-01:#474747;\n --cds-layer-accent-hover-02:#636363;\n --cds-layer-accent-hover-03:#5e5e5e;\n --cds-layer-active-01:#525252;\n --cds-layer-active-02:#6f6f6f;\n --cds-layer-active-03:#8d8d8d;\n --cds-layer-background-01:#161616;\n --cds-layer-background-02:#262626;\n --cds-layer-background-03:#393939;\n --cds-layer-hover-01:#333333;\n --cds-layer-hover-02:#474747;\n --cds-layer-hover-03:#636363;\n --cds-layer-selected-01:#393939;\n --cds-layer-selected-02:#525252;\n --cds-layer-selected-03:#6f6f6f;\n --cds-layer-selected-disabled:#a8a8a8;\n --cds-layer-selected-hover-01:#474747;\n --cds-layer-selected-hover-02:#636363;\n --cds-layer-selected-hover-03:#5e5e5e;\n --cds-layer-selected-inverse:#f4f4f4;\n --cds-link-inverse:#0f62fe;\n --cds-link-inverse-active:#161616;\n --cds-link-inverse-hover:#0043ce;\n --cds-link-inverse-visited:#8a3ffc;\n --cds-link-primary:#78a9ff;\n --cds-link-primary-hover:#a6c8ff;\n --cds-link-secondary:#a6c8ff;\n --cds-link-visited:#be95ff;\n --cds-overlay:rgba(0, 0, 0, 0.6);\n --cds-shadow:rgba(0, 0, 0, 0.8);\n --cds-skeleton-background:#292929;\n --cds-skeleton-element:#393939;\n --cds-support-caution-major:#ff832b;\n --cds-support-caution-minor:#f1c21b;\n --cds-support-caution-undefined:#a56eff;\n --cds-support-error:#fa4d56;\n --cds-support-error-inverse:#da1e28;\n --cds-support-info:#4589ff;\n --cds-support-info-inverse:#0043ce;\n --cds-support-success:#42be65;\n --cds-support-success-inverse:#24a148;\n --cds-support-warning:#f1c21b;\n --cds-support-warning-inverse:#f1c21b;\n --cds-syntax-angle-bracket:#8d8d8d;\n --cds-syntax-annotation:#08bdba;\n --cds-syntax-arithmetic-operator:#e0e0e0;\n --cds-syntax-atom:#f4f4f4;\n --cds-syntax-attribute:#33b1ff;\n --cds-syntax-attribute-name:#33b1ff;\n --cds-syntax-attribute-value:#f4f4f4;\n --cds-syntax-bitwise-operator:#e0e0e0;\n --cds-syntax-block-comment:#42be65;\n --cds-syntax-bool:#f4f4f4;\n --cds-syntax-brace:#e0e0e0;\n --cds-syntax-bracket:#e0e0e0;\n --cds-syntax-character:#f4f4f4;\n --cds-syntax-class-name:#3ddbd9;\n --cds-syntax-color:#f4f4f4;\n --cds-syntax-comment:#42be65;\n --cds-syntax-compare-operator:#e0e0e0;\n --cds-syntax-constant:#4589ff;\n --cds-syntax-content:#f4f4f4;\n --cds-syntax-content-separator:#e0e0e0;\n --cds-syntax-control-keyword:#be95ff;\n --cds-syntax-control-operator:#be95ff;\n --cds-syntax-definition:#33b1ff;\n --cds-syntax-definition-keyword:#33b1ff;\n --cds-syntax-definition-operator:#33b1ff;\n --cds-syntax-deref-operator:#e0e0e0;\n --cds-syntax-doc-comment:#42be65;\n --cds-syntax-doc-string:#f4f4f4;\n --cds-syntax-document-meta:#42be65;\n --cds-syntax-emphasis:#f4f4f4;\n --cds-syntax-escape:#e0e0e0;\n --cds-syntax-float:#6fdc8c;\n --cds-syntax-function:#f1c21b;\n --cds-syntax-heading:#33b1ff;\n --cds-syntax-heading-1:#33b1ff;\n --cds-syntax-heading-2:#33b1ff;\n --cds-syntax-heading-3:#33b1ff;\n --cds-syntax-heading-4:#33b1ff;\n --cds-syntax-heading-5:#33b1ff;\n --cds-syntax-heading-6:#33b1ff;\n --cds-syntax-integer:#6fdc8c;\n --cds-syntax-invalid:#fa4d56;\n --cds-syntax-keyword:#4589ff;\n --cds-syntax-label-name:#a6c8ff;\n --cds-syntax-line-comment:#42be65;\n --cds-syntax-link:#4589ff;\n --cds-syntax-list:#f4f4f4;\n --cds-syntax-literal:#f4f4f4;\n --cds-syntax-local:#a6c8ff;\n --cds-syntax-logic-operator:#e0e0e0;\n --cds-syntax-macro-name:#f4f4f4;\n --cds-syntax-meta:#42be65;\n --cds-syntax-modifier:#4589ff;\n --cds-syntax-module-keyword:#be95ff;\n --cds-syntax-monospace:#f4f4f4;\n --cds-syntax-name:#a6c8ff;\n --cds-syntax-namespace:#3ddbd9;\n --cds-syntax-null:#f4f4f4;\n --cds-syntax-number:#6fdc8c;\n --cds-syntax-operator:#e0e0e0;\n --cds-syntax-operator-keyword:#4589ff;\n --cds-syntax-paren:#e0e0e0;\n --cds-syntax-processing-instruction:#f4f4f4;\n --cds-syntax-property-name:#33b1ff;\n --cds-syntax-punctuation:#e0e0e0;\n --cds-syntax-quote:#42be65;\n --cds-syntax-regexp:#be95ff;\n --cds-syntax-self:#3ddbd9;\n --cds-syntax-separator:#e0e0e0;\n --cds-syntax-special:#4589ff;\n --cds-syntax-special-string:#be95ff;\n --cds-syntax-square-bracket:#e0e0e0;\n --cds-syntax-standard:#4589ff;\n --cds-syntax-strikethrough:#f4f4f4;\n --cds-syntax-string:#f4f4f4;\n --cds-syntax-strong:#f4f4f4;\n --cds-syntax-tag:#3ddbd9;\n --cds-syntax-tag-name:#3ddbd9;\n --cds-syntax-type:#3ddbd9;\n --cds-syntax-type-name:#3ddbd9;\n --cds-syntax-type-operator:#3ddbd9;\n --cds-syntax-unit:#6fdc8c;\n --cds-syntax-update-operator:#e0e0e0;\n --cds-syntax-url:#e0e0e0;\n --cds-syntax-variable:#a6c8ff;\n --cds-syntax-variable-name:#a6c8ff;\n --cds-text-disabled:rgba(244, 244, 244, 0.25);\n --cds-text-error:#ff8389;\n --cds-text-helper:#a8a8a8;\n --cds-text-inverse:#161616;\n --cds-text-on-color:#ffffff;\n --cds-text-on-color-disabled:rgba(255, 255, 255, 0.25);\n --cds-text-placeholder:rgba(244, 244, 244, 0.4);\n --cds-text-primary:#f4f4f4;\n --cds-text-secondary:#c6c6c6;\n --cds-toggle-off:#6f6f6f;\n --cds-spacing-01:0.125rem;\n --cds-spacing-02:0.25rem;\n --cds-spacing-03:0.5rem;\n --cds-spacing-04:0.75rem;\n --cds-spacing-05:1rem;\n --cds-spacing-06:1.5rem;\n --cds-spacing-07:2rem;\n --cds-spacing-08:2.5rem;\n --cds-spacing-09:3rem;\n --cds-spacing-10:4rem;\n --cds-spacing-11:5rem;\n --cds-spacing-12:6rem;\n --cds-spacing-13:10rem;\n --cds-fluid-spacing-01:0;\n --cds-fluid-spacing-02:2vw;\n --cds-fluid-spacing-03:5vw;\n --cds-fluid-spacing-04:10vw;\n --cds-caption-01-font-size:0.75rem;\n --cds-caption-01-font-weight:400;\n --cds-caption-01-line-height:1.33333;\n --cds-caption-01-letter-spacing:0.32px;\n --cds-caption-02-font-size:0.875rem;\n --cds-caption-02-font-weight:400;\n --cds-caption-02-line-height:1.28572;\n --cds-caption-02-letter-spacing:0.32px;\n --cds-label-01-font-size:0.75rem;\n --cds-label-01-font-weight:400;\n --cds-label-01-line-height:1.33333;\n --cds-label-01-letter-spacing:0.32px;\n --cds-label-02-font-size:0.875rem;\n --cds-label-02-font-weight:400;\n --cds-label-02-line-height:1.28572;\n --cds-label-02-letter-spacing:0.16px;\n --cds-helper-text-01-font-size:0.75rem;\n --cds-helper-text-01-line-height:1.33333;\n --cds-helper-text-01-letter-spacing:0.32px;\n --cds-helper-text-02-font-size:0.875rem;\n --cds-helper-text-02-font-weight:400;\n --cds-helper-text-02-line-height:1.28572;\n --cds-helper-text-02-letter-spacing:0.16px;\n --cds-body-short-01-font-size:0.875rem;\n --cds-body-short-01-font-weight:400;\n --cds-body-short-01-line-height:1.28572;\n --cds-body-short-01-letter-spacing:0.16px;\n --cds-body-short-02-font-size:1rem;\n --cds-body-short-02-font-weight:400;\n --cds-body-short-02-line-height:1.375;\n --cds-body-short-02-letter-spacing:0;\n --cds-body-long-01-font-size:0.875rem;\n --cds-body-long-01-font-weight:400;\n --cds-body-long-01-line-height:1.42857;\n --cds-body-long-01-letter-spacing:0.16px;\n --cds-body-long-02-font-size:1rem;\n --cds-body-long-02-font-weight:400;\n --cds-body-long-02-line-height:1.5;\n --cds-body-long-02-letter-spacing:0;\n --cds-code-01-font-family:'IBM Plex Mono', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', monospace;\n --cds-code-01-font-size:0.75rem;\n --cds-code-01-font-weight:400;\n --cds-code-01-line-height:1.33333;\n --cds-code-01-letter-spacing:0.32px;\n --cds-code-02-font-family:'IBM Plex Mono', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', monospace;\n --cds-code-02-font-size:0.875rem;\n --cds-code-02-font-weight:400;\n --cds-code-02-line-height:1.42857;\n --cds-code-02-letter-spacing:0.32px;\n --cds-heading-01-font-size:0.875rem;\n --cds-heading-01-font-weight:600;\n --cds-heading-01-line-height:1.42857;\n --cds-heading-01-letter-spacing:0.16px;\n --cds-heading-02-font-size:1rem;\n --cds-heading-02-font-weight:600;\n --cds-heading-02-line-height:1.5;\n --cds-heading-02-letter-spacing:0;\n --cds-productive-heading-01-font-size:0.875rem;\n --cds-productive-heading-01-font-weight:600;\n --cds-productive-heading-01-line-height:1.28572;\n --cds-productive-heading-01-letter-spacing:0.16px;\n --cds-productive-heading-02-font-size:1rem;\n --cds-productive-heading-02-font-weight:600;\n --cds-productive-heading-02-line-height:1.375;\n --cds-productive-heading-02-letter-spacing:0;\n --cds-productive-heading-03-font-size:1.25rem;\n --cds-productive-heading-03-font-weight:400;\n --cds-productive-heading-03-line-height:1.4;\n --cds-productive-heading-03-letter-spacing:0;\n --cds-productive-heading-04-font-size:1.75rem;\n --cds-productive-heading-04-font-weight:400;\n --cds-productive-heading-04-line-height:1.28572;\n --cds-productive-heading-04-letter-spacing:0;\n --cds-productive-heading-05-font-size:2rem;\n --cds-productive-heading-05-font-weight:400;\n --cds-productive-heading-05-line-height:1.25;\n --cds-productive-heading-05-letter-spacing:0;\n --cds-productive-heading-06-font-size:2.625rem;\n --cds-productive-heading-06-font-weight:300;\n --cds-productive-heading-06-line-height:1.199;\n --cds-productive-heading-06-letter-spacing:0;\n --cds-productive-heading-07-font-size:3.375rem;\n --cds-productive-heading-07-font-weight:300;\n --cds-productive-heading-07-line-height:1.19;\n --cds-productive-heading-07-letter-spacing:0;\n --cds-expressive-paragraph-01-font-size:1.5rem;\n --cds-expressive-paragraph-01-font-weight:300;\n --cds-expressive-paragraph-01-line-height:1.334;\n --cds-expressive-paragraph-01-letter-spacing:0;\n --cds-expressive-heading-01-font-size:0.875rem;\n --cds-expressive-heading-01-font-weight:600;\n --cds-expressive-heading-01-line-height:1.42857;\n --cds-expressive-heading-01-letter-spacing:0.16px;\n --cds-expressive-heading-02-font-size:1rem;\n --cds-expressive-heading-02-font-weight:600;\n --cds-expressive-heading-02-line-height:1.5;\n --cds-expressive-heading-02-letter-spacing:0;\n --cds-expressive-heading-03-font-size:1.25rem;\n --cds-expressive-heading-03-font-weight:400;\n --cds-expressive-heading-03-line-height:1.4;\n --cds-expressive-heading-03-letter-spacing:0;\n --cds-expressive-heading-04-font-size:1.75rem;\n --cds-expressive-heading-04-font-weight:400;\n --cds-expressive-heading-04-line-height:1.28572;\n --cds-expressive-heading-04-letter-spacing:0;\n --cds-expressive-heading-05-font-size:2rem;\n --cds-expressive-heading-05-font-weight:400;\n --cds-expressive-heading-05-line-height:1.25;\n --cds-expressive-heading-05-letter-spacing:0;\n --cds-expressive-heading-06-font-size:2rem;\n --cds-expressive-heading-06-font-weight:600;\n --cds-expressive-heading-06-line-height:1.25;\n --cds-expressive-heading-06-letter-spacing:0;\n --cds-quotation-01-font-family:'IBM Plex Serif', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', serif;\n --cds-quotation-01-font-size:1.25rem;\n --cds-quotation-01-font-weight:400;\n --cds-quotation-01-line-height:1.3;\n --cds-quotation-01-letter-spacing:0;\n --cds-quotation-02-font-family:'IBM Plex Serif', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', serif;\n --cds-quotation-02-font-size:2rem;\n --cds-quotation-02-font-weight:300;\n --cds-quotation-02-line-height:1.25;\n --cds-quotation-02-letter-spacing:0;\n --cds-display-01-font-size:2.625rem;\n --cds-display-01-font-weight:300;\n --cds-display-01-line-height:1.19;\n --cds-display-01-letter-spacing:0;\n --cds-display-02-font-size:2.625rem;\n --cds-display-02-font-weight:600;\n --cds-display-02-line-height:1.19;\n --cds-display-02-letter-spacing:0;\n --cds-display-03-font-size:2.625rem;\n --cds-display-03-font-weight:300;\n --cds-display-03-line-height:1.19;\n --cds-display-03-letter-spacing:0;\n --cds-display-04-font-size:2.625rem;\n --cds-display-04-font-weight:300;\n --cds-display-04-line-height:1.19;\n --cds-display-04-letter-spacing:0;\n --cds-legal-01-font-size:0.75rem;\n --cds-legal-01-font-weight:400;\n --cds-legal-01-line-height:1.33333;\n --cds-legal-01-letter-spacing:0.32px;\n --cds-legal-02-font-size:0.875rem;\n --cds-legal-02-font-weight:400;\n --cds-legal-02-line-height:1.28572;\n --cds-legal-02-letter-spacing:0.16px;\n --cds-body-compact-01-font-size:0.875rem;\n --cds-body-compact-01-font-weight:400;\n --cds-body-compact-01-line-height:1.28572;\n --cds-body-compact-01-letter-spacing:0.16px;\n --cds-body-compact-02-font-size:1rem;\n --cds-body-compact-02-font-weight:400;\n --cds-body-compact-02-line-height:1.375;\n --cds-body-compact-02-letter-spacing:0;\n --cds-heading-compact-01-font-size:0.875rem;\n --cds-heading-compact-01-font-weight:600;\n --cds-heading-compact-01-line-height:1.28572;\n --cds-heading-compact-01-letter-spacing:0.16px;\n --cds-heading-compact-02-font-size:1rem;\n --cds-heading-compact-02-font-weight:600;\n --cds-heading-compact-02-line-height:1.375;\n --cds-heading-compact-02-letter-spacing:0;\n --cds-body-01-font-size:0.875rem;\n --cds-body-01-font-weight:400;\n --cds-body-01-line-height:1.42857;\n --cds-body-01-letter-spacing:0.16px;\n --cds-body-02-font-size:1rem;\n --cds-body-02-font-weight:400;\n --cds-body-02-line-height:1.5;\n --cds-body-02-letter-spacing:0;\n --cds-heading-03-font-size:1.25rem;\n --cds-heading-03-font-weight:400;\n --cds-heading-03-line-height:1.4;\n --cds-heading-03-letter-spacing:0;\n --cds-heading-04-font-size:1.75rem;\n --cds-heading-04-font-weight:400;\n --cds-heading-04-line-height:1.28572;\n --cds-heading-04-letter-spacing:0;\n --cds-heading-05-font-size:2rem;\n --cds-heading-05-font-weight:400;\n --cds-heading-05-line-height:1.25;\n --cds-heading-05-letter-spacing:0;\n --cds-heading-06-font-size:2.625rem;\n --cds-heading-06-font-weight:300;\n --cds-heading-06-line-height:1.199;\n --cds-heading-06-letter-spacing:0;\n --cds-heading-07-font-size:3.375rem;\n --cds-heading-07-font-weight:300;\n --cds-heading-07-line-height:1.19;\n --cds-heading-07-letter-spacing:0;\n --cds-fluid-heading-03-font-size:1.25rem;\n --cds-fluid-heading-03-font-weight:400;\n --cds-fluid-heading-03-line-height:1.4;\n --cds-fluid-heading-03-letter-spacing:0;\n --cds-fluid-heading-04-font-size:1.75rem;\n --cds-fluid-heading-04-font-weight:400;\n --cds-fluid-heading-04-line-height:1.28572;\n --cds-fluid-heading-04-letter-spacing:0;\n --cds-fluid-heading-05-font-size:2rem;\n --cds-fluid-heading-05-font-weight:400;\n --cds-fluid-heading-05-line-height:1.25;\n --cds-fluid-heading-05-letter-spacing:0;\n --cds-fluid-heading-06-font-size:2rem;\n --cds-fluid-heading-06-font-weight:600;\n --cds-fluid-heading-06-line-height:1.25;\n --cds-fluid-heading-06-letter-spacing:0;\n --cds-fluid-paragraph-01-font-size:1.5rem;\n --cds-fluid-paragraph-01-font-weight:300;\n --cds-fluid-paragraph-01-line-height:1.334;\n --cds-fluid-paragraph-01-letter-spacing:0;\n --cds-fluid-quotation-01-font-family:'IBM Plex Serif', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', serif;\n --cds-fluid-quotation-01-font-size:1.25rem;\n --cds-fluid-quotation-01-font-weight:400;\n --cds-fluid-quotation-01-line-height:1.3;\n --cds-fluid-quotation-01-letter-spacing:0;\n --cds-fluid-quotation-02-font-family:'IBM Plex Serif', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', serif;\n --cds-fluid-quotation-02-font-size:2rem;\n --cds-fluid-quotation-02-font-weight:300;\n --cds-fluid-quotation-02-line-height:1.25;\n --cds-fluid-quotation-02-letter-spacing:0;\n --cds-fluid-display-01-font-size:2.625rem;\n --cds-fluid-display-01-font-weight:300;\n --cds-fluid-display-01-line-height:1.19;\n --cds-fluid-display-01-letter-spacing:0;\n --cds-fluid-display-02-font-size:2.625rem;\n --cds-fluid-display-02-font-weight:600;\n --cds-fluid-display-02-line-height:1.19;\n --cds-fluid-display-02-letter-spacing:0;\n --cds-fluid-display-03-font-size:2.625rem;\n --cds-fluid-display-03-font-weight:300;\n --cds-fluid-display-03-line-height:1.19;\n --cds-fluid-display-03-letter-spacing:0;\n --cds-fluid-display-04-font-size:2.625rem;\n --cds-fluid-display-04-font-weight:300;\n --cds-fluid-display-04-line-height:1.19;\n --cds-fluid-display-04-letter-spacing:0;\n --cds-button-separator:#161616;\n --cds-button-primary:#0f62fe;\n --cds-button-secondary:#6f6f6f;\n --cds-button-tertiary:#ffffff;\n --cds-button-danger-primary:#da1e28;\n --cds-button-danger-secondary:#fa4d56;\n --cds-button-danger-active:#750e13;\n --cds-button-primary-active:#002d9c;\n --cds-button-secondary-active:#393939;\n --cds-button-tertiary-active:#c6c6c6;\n --cds-button-danger-hover:#b81921;\n --cds-button-primary-hover:#0050e6;\n --cds-button-secondary-hover:#5e5e5e;\n --cds-button-tertiary-hover:#f4f4f4;\n --cds-button-disabled:rgba(141, 141, 141, 0.3);\n}\n@media screen and (-ms-high-contrast: active), (forced-colors: active){\n :host .cds--g100{\n --cds-icon-primary:ButtonText;\n --cds-icon-secondary:ButtonText;\n --cds-icon-interactive:ButtonText;\n --cds-icon-disabled:GrayText;\n --cds-icon-on-color-disabled:GrayText;\n --cds-icon-inverse:SelectedItemText;\n --cds-icon-on-color:SelectedItemText;\n --cds-button-disabled:GrayText;\n --cds-interactive:ButtonText;\n --cds-link-primary:LinkText;\n --cds-link-primary-hover:LinkText;\n --cds-link-secondary:LinkText;\n --cds-link-inverse:SelectedItemText;\n --cds-link-inverse-hover:SelectedItemText;\n --cds-link-inverse-visited:SelectedItemText;\n --cds-link-visited:VisitedText;\n --cds-background-selected:SelectedItem;\n --cds-background-selected-hover:SelectedItem;\n --cds-background-inverse:SelectedItem;\n --cds-layer-selected-inverse:SelectedItem;\n }\n}\n:host .cds--g100{\n --cds-layer:var(--cds-layer-01, #f4f4f4);\n --cds-layer-active:var(--cds-layer-active-01, #c6c6c6);\n --cds-layer-background:var(--cds-layer-background-01, #ffffff);\n --cds-layer-hover:var(--cds-layer-hover-01, #e8e8e8);\n --cds-layer-selected:var(--cds-layer-selected-01, #e0e0e0);\n --cds-layer-selected-hover:var(--cds-layer-selected-hover-01, #d1d1d1);\n --cds-layer-accent:var(--cds-layer-accent-01, #e0e0e0);\n --cds-layer-accent-hover:var(--cds-layer-accent-hover-01, #d1d1d1);\n --cds-layer-accent-active:var(--cds-layer-accent-active-01, #a8a8a8);\n --cds-field:var(--cds-field-01, #f4f4f4);\n --cds-field-hover:var(--cds-field-hover-01, #e8e8e8);\n --cds-border-subtle:var(--cds-border-subtle-00, #e0e0e0);\n --cds-border-subtle-selected:var(--cds-border-subtle-selected-01, #c6c6c6);\n --cds-border-strong:var(--cds-border-strong-01, #8d8d8d);\n --cds-border-tile:var(--cds-border-tile-01, #c6c6c6);\n}\n:host{\n}\n:host .cds-aichat--dark,\n:host .cds--g90,\n:host .cds--g100{\n scrollbar-color:var(--cds-layer-03, #f4f4f4) var(--cds-layer-01, #f4f4f4);\n}\n:host{\n}\n:host .cds-aichat--widget--expand-to-fit{\n block-size:100%;\n inline-size:100%;\n max-block-size:100%;\n max-inline-size:100%;\n min-block-size:0;\n min-inline-size:0;\n}\n:host .cds-aichat--workspace-writeable-element ::slotted(*){\n block-size:100%;\n max-block-size:100%;\n}\n:host .cds-aichat--hidden{\n display:none;\n}\n:host .cds-aichat--widget__break-word{\n overflow-wrap:break-word;\n word-break:break-word;\n word-wrap:break-word;\n}\n:host .cds-aichat--widget__text-ellipsis{\n overflow:hidden;\n overflow-wrap:break-word;\n text-overflow:ellipsis;\n white-space:nowrap;\n word-wrap:break-word;\n}\n:host{\n}\n:host .cds-aichat--container--render{\n box-sizing:border-box;\n block-size:100%;\n color:var(--cds-text-primary, #161616);\n inline-size:100%;\n}\n:host .cds-aichat--container--render[dir=rtl]{\n direction:rtl;\n}\n:host{\n}\n:host .cds-aichat--container--render > div > div[role=log]{\n position:absolute;\n overflow:hidden;\n block-size:1px;\n inline-size:1px;\n inset-inline-start:-10000px;\n}\n:host{\n}\n:host .cds-aichat--widget{\n position:relative;\n z-index:1;\n display:flex;\n flex:1;\n flex-direction:column;\n block-size:100%;\n -webkit-font-smoothing:antialiased;\n -moz-osx-font-smoothing:grayscale;\n inline-size:100%;\n -webkit-tap-highlight-color:rgba(0, 0, 0, 0);\n text-rendering:optimizelegibility;\n visibility:visible;\n font-size:var(--cds-body-01-font-size, 0.875rem);\n font-weight:var(--cds-body-01-font-weight, 400);\n line-height:var(--cds-body-01-line-height, 1.42857);\n letter-spacing:var(--cds-body-01-letter-spacing, 0.16px);\n}\n:host{\n}\n:host .cds-aichat--widget.cds-aichat--widget--closed{\n overflow:hidden;\n}\n:host .cds-aichat--widget.cds-aichat--widget--default-element.cds-aichat--widget--closed{\n display:none;\n}\n:host .cds-aichat--widget.cds-aichat--widget.cds-aichat--widget--closed,\n:host .cds-aichat--ai-theme .cds-aichat--widget.cds-aichat--widget.cds-aichat--widget--closed{\n border:none;\n box-shadow:none;\n}\n:host{\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--widget.cds-aichat--widget--launched.cds-aichat--widget--default-element{\n animation:none;\n }\n}\n:host .cds-aichat--widget.cds-aichat--widget--launched.cds-aichat--widget--default-element:not(.cds-aichat--is-phone){\n animation:cds-aichat-widget-in 240ms cubic-bezier(0, 0, 0.3, 1) both;\n}\n:host{\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--widget.cds-aichat--widget--closing.cds-aichat--widget--default-element{\n animation:none;\n }\n}\n:host .cds-aichat--widget.cds-aichat--widget--closing.cds-aichat--widget--default-element{\n animation:cds-aichat-widget-out 110ms cubic-bezier(0.4, 0.14, 1, 1) both;\n}\n:host{\n}\n:host .cds-aichat--widget.cds-aichat--widget--default-element{\n position:fixed;\n z-index:var(--cds-aichat-z-index, 99999);\n block-size:var(--cds-aichat-height, calc(100vh - 2 * 2rem));\n inline-size:var(--cds-aichat-width, 380px);\n inset:var(--cds-aichat-top-position, auto) var(--cds-aichat-right-position, 2rem) var(--cds-aichat-bottom-position, 3rem) var(--cds-aichat-left-position, auto);\n max-block-size:var(--cds-aichat-max-height, 640px);\n max-inline-size:var(--cds-aichat-messages-max-width, 672px);\n min-block-size:var(--cds-aichat-min-height, 150px);\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--widget.cds-aichat--widget--default-element{\n inset-inline:var(--cds-aichat-right-position, 2rem) var(--cds-aichat-left-position, auto);\n}\n:host{\n}\n:host .cds-aichat--is-phone:not(.cds-aichat--container-disable-mobile-enhancements) .cds-aichat--widget{\n position:fixed;\n z-index:var(--cds-aichat-z-index, 99999);\n block-size:var(--cds-aichat-height, calc(100vh - 2 * 2rem));\n inline-size:var(--cds-aichat-width, 380px);\n inset:var(--cds-aichat-top-position, auto) var(--cds-aichat-right-position, 2rem) var(--cds-aichat-bottom-position, 3rem) var(--cds-aichat-left-position, auto);\n max-block-size:var(--cds-aichat-max-height, 640px);\n min-block-size:var(--cds-aichat-min-height, 150px);\n}\n:host .cds-aichat--is-phone:not(.cds-aichat--container-disable-mobile-enhancements) .cds-aichat--widget.cds-aichat--widget--launched.cds-aichat--widget--default-element{\n animation:cds-aichat-widget-in-mobile 240ms cubic-bezier(0, 0, 0.3, 1) both;\n inset-block-end:1px;\n inset-inline-start:1px;\n}\n:host .cds-aichat--is-phone[dir=rtl]:not(.cds-aichat--container-disable-mobile-enhancements) .cds-aichat--widget{\n inset-inline:var(--cds-aichat-right-position, 2rem) var(--cds-aichat-left-position, auto);\n}\n:host{\n}\n:host .cds-aichat{\n display:flex;\n box-sizing:border-box;\n flex:1;\n flex-direction:column;\n align-content:stretch;\n align-items:stretch;\n border-radius:0;\n margin:0;\n background-color:var(--cds-chat-shell-background, #ffffff);\n block-size:100%;\n color:var(--cds-text-primary, #161616);\n inline-size:100%;\n text-align:start;\n}\n:host{\n}\n:host .cds-aichat--ai-theme .cds-aichat{\n background-image:linear-gradient(0deg, var(--cds-ai-aura-start-sm, rgba(69, 137, 255, 0.16)) 0%, 15%, var(--cds-ai-aura-end, rgba(255, 255, 255, 0)) 50%, transparent 100%);\n border-block-end-color:var(--cds-ai-border-strong, #4589ff);\n background-color:var(--cds-chat-shell-background, #ffffff);\n box-shadow:inset 0 -80px 70px -65px var(--cds-ai-inner-shadow, var(--cds-ai-inner-shadow, rgba(69, 137, 255, 0.1))), 0 4px 10px 2px var(--cds-ai-drop-shadow, var(--cds-ai-drop-shadow, rgba(15, 98, 254, 0.1))), -40px 44px 60px -24px var(--cds-ai-popover-shadow-outer-01, var(--cds-ai-popover-shadow-outer-01, rgba(0, 67, 206, 0.06))), -56px 64px 64px -24px var(--cds-ai-popover-shadow-outer-02, var(--cds-ai-popover-shadow-outer-02, rgba(0, 0, 0, 0.04)));\n}\n:host .cds-aichat--ai-theme .cds-aichat--frameless .cds-aichat{\n box-shadow:none;\n}\n:host{\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--direction-has-reversible-svg svg{\n transform:scaleX(-1);\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--direction-has-reversible-svg.cds-aichat--reverse-icon svg{\n transform:scaleX(1);\n}\n:host{\n}\n:host .cds-aichat--widget__layer{\n block-size:100%;\n inline-size:100%;\n}\n:host .cds-aichat--widget__layer--hidden{\n display:none;\n}\n:host .cds-aichat--widget--max-width{\n --cds-aichat-border-radius:0;\n}\n:host .cds-aichat--panel-header-content{\n margin:auto;\n max-inline-size:var(--cds-aichat-messages-max-width, 672px);\n}\n:host .cds-aichat--panel-header{\n border-block-end:1px solid var(--cds-border-subtle-01, #c6c6c6);\n}\n:host .cds-aichat--panel-header--full-width .cds-aichat--panel-header-content{\n max-inline-size:100%;\n}";
|
|
15265
|
+
var css_248z = ".cds--layout--size-xs{\n --cds-layout-size-height-context:var(--cds-layout-size-height-xs, 1.5rem);\n --cds-layout-size-height:var(--cds-layout-size-height-context);\n}\n\n.cds--layout-constraint--size__default-xs{\n --cds-layout-size-height:var(--cds-layout-size-height-context, var(--cds-layout-size-height-xs, 1.5rem));\n}\n\n.cds--layout-constraint--size__min-xs{\n --cds-layout-size-height-min:var(--cds-layout-size-height-xs, 1.5rem);\n}\n\n.cds--layout-constraint--size__max-xs{\n --cds-layout-size-height-max:var(--cds-layout-size-height-xs, 1.5rem);\n}\n\n.cds--layout--size-sm{\n --cds-layout-size-height-context:var(--cds-layout-size-height-sm, 2rem);\n --cds-layout-size-height:var(--cds-layout-size-height-context);\n}\n\n.cds--layout-constraint--size__default-sm{\n --cds-layout-size-height:var(--cds-layout-size-height-context, var(--cds-layout-size-height-sm, 2rem));\n}\n\n.cds--layout-constraint--size__min-sm{\n --cds-layout-size-height-min:var(--cds-layout-size-height-sm, 2rem);\n}\n\n.cds--layout-constraint--size__max-sm{\n --cds-layout-size-height-max:var(--cds-layout-size-height-sm, 2rem);\n}\n\n.cds--layout--size-md{\n --cds-layout-size-height-context:var(--cds-layout-size-height-md, 2.5rem);\n --cds-layout-size-height:var(--cds-layout-size-height-context);\n}\n\n.cds--layout-constraint--size__default-md{\n --cds-layout-size-height:var(--cds-layout-size-height-context, var(--cds-layout-size-height-md, 2.5rem));\n}\n\n.cds--layout-constraint--size__min-md{\n --cds-layout-size-height-min:var(--cds-layout-size-height-md, 2.5rem);\n}\n\n.cds--layout-constraint--size__max-md{\n --cds-layout-size-height-max:var(--cds-layout-size-height-md, 2.5rem);\n}\n\n.cds--layout--size-lg{\n --cds-layout-size-height-context:var(--cds-layout-size-height-lg, 3rem);\n --cds-layout-size-height:var(--cds-layout-size-height-context);\n}\n\n.cds--layout-constraint--size__default-lg{\n --cds-layout-size-height:var(--cds-layout-size-height-context, var(--cds-layout-size-height-lg, 3rem));\n}\n\n.cds--layout-constraint--size__min-lg{\n --cds-layout-size-height-min:var(--cds-layout-size-height-lg, 3rem);\n}\n\n.cds--layout-constraint--size__max-lg{\n --cds-layout-size-height-max:var(--cds-layout-size-height-lg, 3rem);\n}\n\n.cds--layout--size-xl{\n --cds-layout-size-height-context:var(--cds-layout-size-height-xl, 4rem);\n --cds-layout-size-height:var(--cds-layout-size-height-context);\n}\n\n.cds--layout-constraint--size__default-xl{\n --cds-layout-size-height:var(--cds-layout-size-height-context, var(--cds-layout-size-height-xl, 4rem));\n}\n\n.cds--layout-constraint--size__min-xl{\n --cds-layout-size-height-min:var(--cds-layout-size-height-xl, 4rem);\n}\n\n.cds--layout-constraint--size__max-xl{\n --cds-layout-size-height-max:var(--cds-layout-size-height-xl, 4rem);\n}\n\n.cds--layout--size-2xl{\n --cds-layout-size-height-context:var(--cds-layout-size-height-2xl, 5rem);\n --cds-layout-size-height:var(--cds-layout-size-height-context);\n}\n\n.cds--layout-constraint--size__default-2xl{\n --cds-layout-size-height:var(--cds-layout-size-height-context, var(--cds-layout-size-height-2xl, 5rem));\n}\n\n.cds--layout-constraint--size__min-2xl{\n --cds-layout-size-height-min:var(--cds-layout-size-height-2xl, 5rem);\n}\n\n.cds--layout-constraint--size__max-2xl{\n --cds-layout-size-height-max:var(--cds-layout-size-height-2xl, 5rem);\n}\n\n.cds--layout--density-condensed{\n --cds-layout-density-padding-inline-context:var(--cds-layout-density-padding-inline-condensed, 0.5rem);\n --cds-layout-density-padding-inline:var(--cds-layout-density-padding-inline-context);\n}\n\n.cds--layout-constraint--density__default-condensed{\n --cds-layout-density-padding-inline:var(--cds-layout-density-padding-inline-context, var(--cds-layout-density-padding-inline-condensed, 0.5rem));\n}\n\n.cds--layout-constraint--density__min-condensed{\n --cds-layout-density-padding-inline-min:var(--cds-layout-density-padding-inline-condensed, 0.5rem);\n}\n\n.cds--layout-constraint--density__max-condensed{\n --cds-layout-density-padding-inline-max:var(--cds-layout-density-padding-inline-condensed, 0.5rem);\n}\n\n.cds--layout--density-normal{\n --cds-layout-density-padding-inline-context:var(--cds-layout-density-padding-inline-normal, 1rem);\n --cds-layout-density-padding-inline:var(--cds-layout-density-padding-inline-context);\n}\n\n.cds--layout-constraint--density__default-normal{\n --cds-layout-density-padding-inline:var(--cds-layout-density-padding-inline-context, var(--cds-layout-density-padding-inline-normal, 1rem));\n}\n\n.cds--layout-constraint--density__min-normal{\n --cds-layout-density-padding-inline-min:var(--cds-layout-density-padding-inline-normal, 1rem);\n}\n\n.cds--layout-constraint--density__max-normal{\n --cds-layout-density-padding-inline-max:var(--cds-layout-density-padding-inline-normal, 1rem);\n}\n\n:root{\n --cds-layout-size-height-xs:1.5rem;\n --cds-layout-size-height-sm:2rem;\n --cds-layout-size-height-md:2.5rem;\n --cds-layout-size-height-lg:3rem;\n --cds-layout-size-height-xl:4rem;\n --cds-layout-size-height-2xl:5rem;\n --cds-layout-size-height-min:0px;\n --cds-layout-size-height-max:999999999px;\n --cds-layout-density-padding-inline-condensed:0.5rem;\n --cds-layout-density-padding-inline-normal:1rem;\n --cds-layout-density-padding-inline-min:0px;\n --cds-layout-density-padding-inline-max:999999999px;\n}\n\n:host{\n --cds-layout-size-height-xs:1.5rem;\n --cds-layout-size-height-sm:2rem;\n --cds-layout-size-height-md:2.5rem;\n --cds-layout-size-height-lg:3rem;\n --cds-layout-size-height-xl:4rem;\n --cds-layout-size-height-2xl:5rem;\n --cds-layout-size-height-min:0px;\n --cds-layout-size-height-max:999999999px;\n --cds-layout-density-padding-inline-condensed:0.5rem;\n --cds-layout-density-padding-inline-normal:1rem;\n --cds-layout-density-padding-inline-min:0px;\n --cds-layout-density-padding-inline-max:999999999px;\n box-sizing:border-box;\n padding:0;\n border:0;\n margin:0;\n font-family:inherit;\n font-size:100%;\n vertical-align:baseline;\n}\n:host *,\n:host *::before,\n:host *::after{\n box-sizing:inherit;\n}\n\ndiv,\nspan,\napplet,\nobject,\niframe,\nh1,\nh2,\nh3,\nh4,\nh5,\nh6,\np,\nblockquote,\npre,\na,\nabbr,\nacronym,\naddress,\nbig,\ncite,\ncode,\ndel,\ndfn,\nem,\nimg,\nins,\nkbd,\nq,\ns,\nsamp,\nsmall,\nstrike,\nstrong,\nsub,\nsup,\ntt,\nvar,\nb,\nu,\ni,\ncenter,\ndl,\ndt,\ndd,\nol,\nul,\nli,\nfieldset,\nform,\nlabel,\nlegend,\ntable,\ncaption,\ntbody,\ntfoot,\nthead,\ntr,\nth,\ntd,\narticle,\naside,\ncanvas,\ndetails,\nembed,\nfigure,\nfigcaption,\nfooter,\nheader,\nhgroup,\nmenu,\nnav,\noutput,\nruby,\nsection,\nsummary,\ntime,\nmark,\naudio,\nvideo{\n padding:0;\n border:0;\n margin:0;\n font:inherit;\n font-size:1em;\n vertical-align:baseline;\n}\n\nbutton,\nselect,\ninput,\ntextarea{\n border-radius:0;\n font-family:inherit;\n}\n\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nmenu,\nnav,\nsection{\n display:block;\n}\n\nol,\nul{\n list-style:none;\n}\n\nblockquote,\nq{\n quotes:none;\n}\n\nblockquote::before,\nblockquote::after,\nq::before,\nq::after{\n content:none;\n}\n\ntable{\n border-collapse:collapse;\n border-spacing:0;\n}\n\n:host{\n block-size:100%;\n font-family:'IBM Plex Sans', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', sans-serif;\n}\n@keyframes cds-aichat-fade-in{\n 0%{\n opacity:0;\n }\n 100%{\n opacity:1;\n }\n}\n@keyframes cds-aichat-fade-in-up{\n 0%{\n opacity:0;\n transform:translateY(32px);\n }\n 50%{\n transform:translateY(0);\n }\n 100%{\n opacity:1;\n }\n}\n@keyframes cds-aichat-fade-out{\n 0%{\n opacity:1;\n }\n 100%{\n opacity:0;\n }\n}\n@keyframes cds-aichat-fade-in-img{\n 0%{\n filter:grayscale(100%);\n opacity:0;\n }\n 100%{\n filter:grayscale(0%);\n opacity:1;\n }\n}\n@keyframes cds-aichat-slide-in-from-right{\n from{\n inset-inline-start:100%;\n }\n to{\n inset-inline-start:0;\n }\n}\n@keyframes cds-aichat-slide-out-to-right{\n from{\n inset-inline-start:0;\n }\n to{\n inset-inline-start:100%;\n }\n}\n@keyframes cds-aichat-slide-out-to-top{\n from{\n inset-block-start:0;\n }\n to{\n inset-block-start:-100%;\n }\n}\n@keyframes cds-aichat-slide-in-from-left{\n from{\n inset-inline-end:100%;\n }\n to{\n inset-inline-end:0;\n }\n}\n@keyframes cds-aichat-slide-out-to-left{\n from{\n inset-inline-end:0;\n }\n to{\n inset-inline-end:100%;\n }\n}\n@keyframes cds-aichat-slide-in-from-bottom{\n from{\n inset-block-start:100%;\n }\n to{\n inset-block-start:0;\n }\n}\n@keyframes cds-aichat-slide-out-to-bottom{\n from{\n inset-block-start:0;\n }\n to{\n inset-block-start:100%;\n }\n}\n@keyframes cds-aichat-widget-in{\n 0%{\n inset-block-end:0;\n opacity:0;\n }\n 100%{\n inset-block-end:var(--cds-aichat-bottom-position, 3rem);\n opacity:1;\n }\n}\n@keyframes cds-aichat-widget-in-mobile{\n 0%{\n opacity:0;\n }\n 100%{\n opacity:1;\n }\n}\n@keyframes cds-aichat-widget-out{\n 0%{\n opacity:1;\n }\n 100%{\n opacity:0;\n }\n}\n@keyframes cds-aichat-fade-in-up-back-button{\n 0%{\n opacity:0;\n transform:translate(-50%, calc(-100% - 1rem + 2rem));\n }\n 15%{\n opacity:0;\n }\n 50%{\n transform:translate(-50%, calc(-100% - 1rem));\n }\n 100%{\n opacity:1;\n }\n}\n@keyframes cds-aichat-widget-in{\n 0%{\n inset-block-end:calc(var(--cds-aichat-bottom-position, 3rem) - 2rem);\n opacity:0;\n }\n 100%{\n inset-block-end:var(--cds-aichat-bottom-position, 3rem);\n opacity:1;\n }\n}\n@keyframes cds-aichat-widget-out{\n 0%{\n opacity:1;\n }\n 100%{\n opacity:0;\n }\n}\n:host{\n}\n:host :root{\n --cds-aichat-messages-max-width:672px;\n --cds-aichat-messages-min-width:320px;\n --cds-aichat-workspace-min-width:480px;\n --cds-aichat-history-width:320px;\n --cds-aichat-card-max-width:424px;\n --cds-aichat-border-radius:0;\n --cds-aichat-card-border-radius:0.5rem;\n --cds-aichat-border-radius:0;\n --cds-aichat-border-radius-start-start:0.5rem;\n --cds-aichat-border-radius-start-end:0.5rem;\n --cds-aichat-border-radius-end-start:0.5rem;\n --cds-aichat-border-radius-end-end:0.5rem;\n}\n:host .cds-aichat--container--render{\n --cds-aichat-max-height:640px;\n --cds-aichat-min-height:max(\n 150px,\n calc(min(256px, 100vh) - var(--cds-aichat-bottom-position))\n );\n --cds-aichat-bottom-position:3rem;\n --cds-aichat-right-position:2rem;\n --cds-aichat-top-position:auto;\n --cds-aichat-left-position:auto;\n --cds-aichat-width:min(380px, var(--cds-aichat-max-width));\n --cds-aichat-height:calc(100vh - (2 * 2rem));\n --cds-aichat-z-index:99999;\n --cds-aichat-launcher-default-size:56px;\n --cds-aichat-launcher-position-bottom:3rem;\n --cds-aichat-launcher-position-right:2rem;\n --cds-aichat-launcher-extended-width:280px;\n --cds-aichat-launcher-color-background:var(--cds-button-primary, #0f62fe);\n --cds-aichat-launcher-color-avatar:var(--cds-text-on-color, #ffffff);\n --cds-aichat-launcher-color-background-hover:var(--cds-button-primary-hover, #0050e6);\n --cds-aichat-launcher-color-background-active:var(--cds-button-primary-active, #002d9c);\n --cds-aichat-launcher-color-focus-border:var(--cds-text-on-color, #ffffff);\n --cds-aichat-launcher-mobile-color-text:var(--cds-text-on-color, #ffffff);\n --cds-aichat-launcher-expanded-message-color-text:var(--cds-text-on-color, #ffffff);\n --cds-aichat-launcher-expanded-message-color-background:var(--cds-button-primary, #0f62fe);\n --cds-aichat-launcher-expanded-message-color-background-hover:var(--cds-button-primary-hover, #0050e6);\n --cds-aichat-launcher-expanded-message-color-background-active:var(--cds-button-primary-active, #002d9c);\n --cds-aichat-launcher-expanded-message-color-focus-border:var(--cds-text-on-color, #ffffff);\n --cds-aichat-unread-indicator-color-background:var(--cds-support-error, #da1e28);\n --cds-aichat-unread-indicator-color-text:var(--cds-text-on-color, #ffffff);\n}\n:host .cds-aichat--container--render .cds-aichat--widget--rounded{\n --cds-aichat-border-radius:0.5rem;\n}\n:host .cds-aichat--container--render.cds-aichat--is-phone{\n --cds-aichat-width:calc(100vw - 4px);\n --cds-aichat-height:calc(100vh - 4px);\n --cds-aichat-left-position:2;\n --cds-aichat-top-position:2;\n --cds-aichat-max-width:auto;\n --cds-aichat-max-height:auto;\n --cds-aichat-min-height:auto;\n --cds-aichat-right-position:auto;\n}\n@supports (height: 100dvh){\n :host .cds-aichat--container--render.cds-aichat--is-phone{\n --cds-aichat-width:calc(100dvw - 4px);\n --cds-aichat-height:calc(100dvh - 4px);\n }\n}\n:host{\n}\n:host .cds-aichat--widget--max-width .cds-aichat--header-bottom-element{\n margin:auto;\n max-inline-size:var(--cds-aichat-messages-max-width, 672px);\n}\n:host .cds-aichat--header__container{\n margin:auto;\n background-color:var(--cds-chat-shell-background, #ffffff);\n border-start-end-radius:var(--cds-aichat-border-radius-start-end, 0);\n border-start-start-radius:var(--cds-aichat-border-radius-start-start, 0);\n inline-size:100%;\n max-inline-size:var(--cds-aichat-messages-max-width, 672px);\n}\n:host .cds-aichat--header__slug-description{\n font-size:var(--cds-body-01-font-size, 0.875rem);\n font-weight:var(--cds-body-01-font-weight, 400);\n line-height:var(--cds-body-01-line-height, 1.42857);\n letter-spacing:var(--cds-body-01-letter-spacing, 0.16px);\n}\n:host .cds-aichat--header__slug-label{\n color:var(--cds-text-secondary, #525252);\n padding-block-end:0.75rem;\n font-size:var(--cds-body-compact-01-font-size, 0.875rem);\n font-weight:var(--cds-body-compact-01-font-weight, 400);\n line-height:var(--cds-body-compact-01-line-height, 1.28572);\n letter-spacing:var(--cds-body-compact-01-letter-spacing, 0.16px);\n}\n:host .cds-aichat--header__slug-title{\n padding-block-end:0.75rem;\n}\n:host{\n}\n:host .cds-aichat--overlay-panel--catastrophic_panel .cds-aichat--overlay-panel{\n display:flex;\n flex-direction:column;\n}\n:host .cds-aichat--catastrophic-error{\n display:flex;\n flex:1;\n flex-direction:column;\n justify-content:center;\n border-radius:0.5rem;\n}\n:host .cds-aichat--catastrophic-error .cds-aichat--catastrophic-error__error-text-container > svg{\n margin-inline-start:calc(2rem * -1);\n max-block-size:128px;\n max-inline-size:128px;\n padding-inline-start:0.25rem;\n}\n:host .cds-aichat--catastrophic-error__error-text-container{\n margin-block-start:1.5rem;\n margin-inline:2rem;\n}\n:host .cds-aichat--catastrophic-error__error-heading{\n font-size:var(--cds-heading-04-font-size, 1.75rem);\n font-weight:var(--cds-heading-04-font-weight, 400);\n line-height:var(--cds-heading-04-line-height, 1.28572);\n letter-spacing:var(--cds-heading-04-letter-spacing, 0);\n}\n:host .cds-aichat--catastrophic-error__error-body{\n color:var(--cds-text-secondary, #525252);\n font-size:var(--cds-body-01-font-size, 0.875rem);\n font-weight:var(--cds-body-01-font-weight, 400);\n line-height:var(--cds-body-01-line-height, 1.42857);\n letter-spacing:var(--cds-body-01-letter-spacing, 0.16px);\n margin-block-start:1rem;\n}\n:host .cds-aichat--catastrophic-error__restart-button{\n display:block;\n margin-block-start:1rem;\n}\n:host{\n}\n:host .cds-aichat--disclaimer__content.cds-aichat--panel-content,\n:host .cds-aichat--wide-width .cds-aichat--disclaimer__content.cds-aichat--panel-content{\n box-sizing:border-box;\n padding:0 2rem 0 2rem;\n color:var(--cds-text-primary, #161616);\n min-block-size:100%;\n}\n:host .cds-aichat--disclaimer__icon{\n padding:1.5rem 0 1.5rem 0;\n margin-inline-start:calc(1.5rem * -1);\n}\n:host .cds-aichat--disclaimer__icon > svg{\n block-size:128px;\n inline-size:128px;\n}\n:host .cds-aichat--disclaimer__title{\n display:block;\n font-size:var(--cds-heading-04-font-size, 1.75rem);\n font-weight:var(--cds-heading-04-font-weight, 400);\n line-height:var(--cds-heading-04-line-height, 1.28572);\n letter-spacing:var(--cds-heading-04-letter-spacing, 0);\n inline-size:100%;\n padding-block-end:1rem;\n}\n:host .cds-aichat--disclaimer__description{\n font-size:var(--cds-body-01-font-size, 0.875rem);\n font-weight:var(--cds-body-01-font-weight, 400);\n line-height:var(--cds-body-01-line-height, 1.42857);\n letter-spacing:var(--cds-body-01-letter-spacing, 0.16px);\n padding-block-end:1rem;\n}\n:host .cds-aichat--disclaimer__footer{\n display:flex;\n justify-content:flex-end;\n}\n:host .cds-aichat--disclaimer__accept-button{\n margin-inline-start:auto;\n}\n:host .cds-aichat--wide-width cds-button.cds-aichat--disclaimer__accept-button{\n inline-size:288px;\n}\n:host .cds-aichat--narrow-width .cds-aichat--disclaimer__footer,\n:host .cds-aichat--standard-width .cds-aichat--disclaimer__footer{\n justify-content:stretch;\n}\n:host .cds-aichat--narrow-width cds-button.cds-aichat--disclaimer__accept-button,\n:host .cds-aichat--standard-width cds-button.cds-aichat--disclaimer__accept-button{\n inline-size:100%;\n margin-inline-start:0;\n max-inline-size:unset;\n}\n:host{\n}\n:host .cds-aichat--hydrating-container{\n display:flex;\n overflow:hidden;\n flex-direction:column;\n block-size:100%;\n}\n:host .cds-aichat--hydrating{\n display:flex;\n align-items:center;\n justify-content:center;\n block-size:100%;\n}\n:host .cds-aichat--hydrating .cds-aichat--loading-spinner{\n block-size:48px;\n inline-size:48px;\n margin-block-start:-64px;\n}\n:host .cds-aichat--hydrating .cds-aichat--loading-spinner path{\n stroke:var(--cds-interactive, #0f62fe);\n}\n:host{\n}\n:host .cds-aichat--i-frame-panel{\n position:relative;\n display:flex;\n flex-direction:column;\n background-color:var(--cds-chat-shell-background, #ffffff);\n}\n:host .cds-aichat--i-frame-panel__content{\n position:relative;\n display:flex;\n flex:1;\n}\n:host .cds-aichat--i-frame-panel__content .cds-aichat--i-frame-component__status-container{\n background-color:var(--cds-chat-shell-background, #ffffff);\n}\n:host .cds-aichat--i-frame-panel__content .cds-aichat--i-frame-component__wrapper{\n flex:1;\n block-size:unset;\n}\n:host{\n}\n:host .cds-aichat--i-frame-panel,\n:host .cds-aichat--view-source-panel,\n:host .cds-aichat--custom-panel{\n box-sizing:border-box;\n block-size:100%;\n border-end-end-radius:var(--cds-aichat-border-radius-end-end, 0);\n border-end-start-radius:var(--cds-aichat-border-radius-end-start, 0);\n border-start-end-radius:var(--cds-aichat-border-radius-start-end, 0);\n border-start-start-radius:var(--cds-aichat-border-radius-start-start, 0);\n}\n:host{\n}\n:host .cds-aichat--confirm-modal{\n position:absolute;\n z-index:100;\n display:flex;\n flex-direction:column;\n justify-content:center;\n background-color:var(--cds-overlay, rgba(0, 0, 0, 0.6));\n block-size:100%;\n inline-size:100%;\n inset-block-start:0;\n font-size:var(--cds-body-01-font-size, 0.875rem);\n font-weight:var(--cds-body-01-font-weight, 400);\n line-height:var(--cds-body-01-line-height, 1.42857);\n letter-spacing:var(--cds-body-01-letter-spacing, 0.16px);\n}\n:host .cds-aichat--confirm-modal .cds-aichat--confirm-modal__container{\n margin:auto;\n background-color:var(--cds-background, #ffffff);\n max-inline-size:min(var(--cds-aichat-messages-max-width, 672px) - 1rem * 2, 512px);\n}\n:host .cds-aichat--confirm-modal .cds-aichat--confirm-modal__title{\n padding:1rem;\n font-size:var(--cds-heading-compact-01-font-size, 0.875rem);\n font-weight:var(--cds-heading-compact-01-font-weight, 600);\n line-height:var(--cds-heading-compact-01-line-height, 1.28572);\n letter-spacing:var(--cds-heading-compact-01-letter-spacing, 0.16px);\n}\n:host .cds-aichat--confirm-modal .cds-aichat--confirm-modal__message{\n padding:0 1rem 3rem 1rem;\n}\n:host .cds-aichat--confirm-modal .cds-aichat--confirm-modal__no-button{\n margin-inline-end:1px;\n}\n:host .cds-aichat--confirm-modal .cds-aichat--confirm-modal__button-container{\n display:flex;\n border-block-start:solid 1px var(--cds-layer-03, #f4f4f4);\n}\n:host .cds-aichat--confirm-modal .cds-aichat--confirm-modal__button-container *{\n flex:1;\n}\n:host{\n}\n:host .cds-aichat--modal-host{\n position:fixed;\n z-index:calc(var(--cds-aichat-z-index, 99999) + 1);\n display:none;\n block-size:100vh;\n inline-size:100vw;\n inset-block-start:0;\n inset-inline-start:0;\n pointer-events:none;\n}\n:host{\n}\n:host .cds-aichat--modal-host:has(> *){\n display:block;\n pointer-events:auto;\n}\n:host .cds-aichat--modal-host > *{\n pointer-events:auto;\n}\n:host{\n}\n:host .cds-aichat--icon-holder{\n display:flex;\n align-items:center;\n justify-content:center;\n block-size:100%;\n inline-size:100%;\n}\n:host{\n}\n:host .cds-aichat--visually-hidden{\n position:absolute;\n overflow:hidden;\n block-size:1px;\n clip:rect(0 0 0 0);\n clip-path:inset(50%);\n inline-size:1px;\n inset-block-start:0;\n white-space:nowrap;\n}\n:host{\n}\n:host .cds-aichat--widget--max-width .cds-aichat--home-screen__home-screen-bottom-element,\n:host .cds-aichat--home-screen{\n margin:auto;\n max-inline-size:var(--cds-aichat-messages-max-width, 672px);\n}\n:host .cds-aichat--home-screen{\n position:relative;\n display:flex;\n flex-direction:column;\n block-size:100%;\n}\n:host{\n}\n:host .cds-aichat--home-screen__content{\n display:flex;\n overflow:hidden;\n flex:1;\n flex-direction:column;\n}\n:host .cds-aichat--home-screen__body-wrapper{\n position:relative;\n display:flex;\n overflow:auto;\n flex:1;\n flex-direction:column;\n}\n:host .cds-aichat--home-screen__body{\n display:flex;\n flex-direction:column;\n justify-content:center;\n padding:0 1rem 2rem;\n}\n:host{\n}\n:host .cds-aichat--home-screen__body--custom-content{\n flex-grow:1;\n flex-shrink:0;\n min-block-size:90%;\n}\n:host .cds-aichat--home-screen__body--custom-content > *{\n flex-shrink:0;\n}\n:host{\n}\n:host .cds-aichat--home-screen__body--no-custom-content{\n flex:1;\n padding-block-end:0;\n}\n:host .cds-aichat--home-screen__greeting{\n color:var(--cds-text-primary, #161616);\n font-size:var(--cds-heading-04-font-size, 1.75rem);\n font-weight:var(--cds-heading-04-font-weight, 400);\n line-height:var(--cds-heading-04-line-height, 1.28572);\n letter-spacing:var(--cds-heading-04-letter-spacing, 0);\n margin-block-start:2rem;\n}\n@media screen and (prefers-reduced-motion: no-preference){\n :host .cds-aichat--home-screen.cds-aichat--home-screen--hydration-complete .cds-aichat--home-screen__greeting{\n animation:400ms cubic-bezier(0, 0, 0.3, 1) cds-aichat-fade-in-up 70ms both;\n }\n}\n:host .cds-aichat--home-screen__starters{\n margin-block-start:2rem;\n}\n:host{\n}\n:host .cds-aichat--home-screen__body--no-custom-content .cds-aichat--home-screen__starters{\n margin-block-end:2rem;\n}\n:host{\n}\n:host .cds-aichat--home-screen__body--custom-content-only{\n flex-grow:unset;\n flex-shrink:unset;\n padding:0;\n margin:0;\n min-block-size:unset;\n}\n:host .cds-aichat--home-screen__starter-wrapper{\n display:block;\n margin-block-end:0.75rem;\n}\n:host .cds-aichat--home-screen__starter-wrapper:last-child{\n margin-block-end:0;\n}\n:host cds-aichat-button.cds-aichat--home-screen__starter{\n display:block;\n max-inline-size:100%;\n will-change:opacity;\n word-break:break-word;\n}\n:host .cds-aichat--home-screen__starter-wrapper:nth-child(1){\n --cds-aichat-homescreen-starter-index:1;\n}\n:host .cds-aichat--home-screen__starter-wrapper:nth-child(2){\n --cds-aichat-homescreen-starter-index:2;\n}\n:host .cds-aichat--home-screen__starter-wrapper:nth-child(3){\n --cds-aichat-homescreen-starter-index:3;\n}\n:host .cds-aichat--home-screen__starter-wrapper:nth-child(4){\n --cds-aichat-homescreen-starter-index:4;\n}\n:host .cds-aichat--home-screen__starter-wrapper:nth-child(5){\n --cds-aichat-homescreen-starter-index:5;\n}\n@media screen and (prefers-reduced-motion: no-preference){\n :host .cds-aichat--home-screen.cds-aichat--home-screen--hydration-complete .cds-aichat--home-screen__starter-wrapper{\n animation:400ms cubic-bezier(0, 0, 0.3, 1) cds-aichat-fade-in-up calc(var(--cds-aichat-homescreen-starter-index) * 120ms) both;\n }\n}\n@media screen and (prefers-reduced-motion: no-preference){\n :host .cds-aichat--home-screen.cds-aichat--home-screen--hydration-complete .cds-aichat--home-screen__starters--animate-group .cds-aichat--home-screen__starter-wrapper{\n animation:400ms cubic-bezier(0, 0, 0.3, 1) cds-aichat-fade-in-up 120ms both;\n }\n}\n@media screen and (prefers-reduced-motion: no-preference){\n :host .cds-aichat--home-screen.cds-aichat--home-screen--hydration-complete .cds-aichat--home-screen__custom-content--animation{\n animation:400ms cubic-bezier(0, 0, 0.3, 1) cds-aichat-fade-in-up 330ms both;\n }\n}\n:host .cds-aichat--home-screen__back-button{\n display:block;\n margin-block-end:1rem;\n margin-block-start:auto;\n margin-inline:auto;\n}\n:host .cds-aichat--home-screen__back-button .cds-aichat--home-screen__back-button-content{\n display:flex;\n}\n:host .cds-aichat--home-screen__back-button .cds-aichat--home-screen__back-button-content .cds-aichat--home-screen__back-button-content-text{\n margin-inline-end:0.5rem;\n white-space:nowrap;\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--home-screen__back-button .cds-aichat--home-screen__back-button-content .cds-aichat--home-screen__back-button-content-text{\n margin-inline:0.5rem unset;\n}\n@keyframes cds-aichat-fade-in-up-back-button{\n 0%{\n opacity:0;\n transform:translateY(2rem);\n }\n 15%{\n opacity:0;\n }\n 50%{\n transform:translateY(0);\n }\n 100%{\n opacity:1;\n }\n}\n@media screen and (prefers-reduced-motion: no-preference){\n :host .cds-aichat--home-screen.cds-aichat--home-screen--hydration-complete .cds-aichat--home-screen__back-button{\n animation:400ms cubic-bezier(0, 0, 0.3, 1) cds-aichat-fade-in-up-back-button 350ms both;\n }\n}\n:host{\n}\n:host .cds--layout--size-xs{\n --cds-layout-size-height-context:var(--cds-layout-size-height-xs, 1.5rem);\n --cds-layout-size-height:var(--cds-layout-size-height-context);\n}\n:host .cds--layout-constraint--size__default-xs{\n --cds-layout-size-height:var(--cds-layout-size-height-context, var(--cds-layout-size-height-xs, 1.5rem));\n}\n:host .cds--layout-constraint--size__min-xs{\n --cds-layout-size-height-min:var(--cds-layout-size-height-xs, 1.5rem);\n}\n:host .cds--layout-constraint--size__max-xs{\n --cds-layout-size-height-max:var(--cds-layout-size-height-xs, 1.5rem);\n}\n:host .cds--layout--size-sm{\n --cds-layout-size-height-context:var(--cds-layout-size-height-sm, 2rem);\n --cds-layout-size-height:var(--cds-layout-size-height-context);\n}\n:host .cds--layout-constraint--size__default-sm{\n --cds-layout-size-height:var(--cds-layout-size-height-context, var(--cds-layout-size-height-sm, 2rem));\n}\n:host .cds--layout-constraint--size__min-sm{\n --cds-layout-size-height-min:var(--cds-layout-size-height-sm, 2rem);\n}\n:host .cds--layout-constraint--size__max-sm{\n --cds-layout-size-height-max:var(--cds-layout-size-height-sm, 2rem);\n}\n:host .cds--layout--size-md{\n --cds-layout-size-height-context:var(--cds-layout-size-height-md, 2.5rem);\n --cds-layout-size-height:var(--cds-layout-size-height-context);\n}\n:host .cds--layout-constraint--size__default-md{\n --cds-layout-size-height:var(--cds-layout-size-height-context, var(--cds-layout-size-height-md, 2.5rem));\n}\n:host .cds--layout-constraint--size__min-md{\n --cds-layout-size-height-min:var(--cds-layout-size-height-md, 2.5rem);\n}\n:host .cds--layout-constraint--size__max-md{\n --cds-layout-size-height-max:var(--cds-layout-size-height-md, 2.5rem);\n}\n:host .cds--layout--size-lg{\n --cds-layout-size-height-context:var(--cds-layout-size-height-lg, 3rem);\n --cds-layout-size-height:var(--cds-layout-size-height-context);\n}\n:host .cds--layout-constraint--size__default-lg{\n --cds-layout-size-height:var(--cds-layout-size-height-context, var(--cds-layout-size-height-lg, 3rem));\n}\n:host .cds--layout-constraint--size__min-lg{\n --cds-layout-size-height-min:var(--cds-layout-size-height-lg, 3rem);\n}\n:host .cds--layout-constraint--size__max-lg{\n --cds-layout-size-height-max:var(--cds-layout-size-height-lg, 3rem);\n}\n:host .cds--layout--size-xl{\n --cds-layout-size-height-context:var(--cds-layout-size-height-xl, 4rem);\n --cds-layout-size-height:var(--cds-layout-size-height-context);\n}\n:host .cds--layout-constraint--size__default-xl{\n --cds-layout-size-height:var(--cds-layout-size-height-context, var(--cds-layout-size-height-xl, 4rem));\n}\n:host .cds--layout-constraint--size__min-xl{\n --cds-layout-size-height-min:var(--cds-layout-size-height-xl, 4rem);\n}\n:host .cds--layout-constraint--size__max-xl{\n --cds-layout-size-height-max:var(--cds-layout-size-height-xl, 4rem);\n}\n:host .cds--layout--size-2xl{\n --cds-layout-size-height-context:var(--cds-layout-size-height-2xl, 5rem);\n --cds-layout-size-height:var(--cds-layout-size-height-context);\n}\n:host .cds--layout-constraint--size__default-2xl{\n --cds-layout-size-height:var(--cds-layout-size-height-context, var(--cds-layout-size-height-2xl, 5rem));\n}\n:host .cds--layout-constraint--size__min-2xl{\n --cds-layout-size-height-min:var(--cds-layout-size-height-2xl, 5rem);\n}\n:host .cds--layout-constraint--size__max-2xl{\n --cds-layout-size-height-max:var(--cds-layout-size-height-2xl, 5rem);\n}\n:host .cds--layout--density-condensed{\n --cds-layout-density-padding-inline-context:var(--cds-layout-density-padding-inline-condensed, 0.5rem);\n --cds-layout-density-padding-inline:var(--cds-layout-density-padding-inline-context);\n}\n:host .cds--layout-constraint--density__default-condensed{\n --cds-layout-density-padding-inline:var(--cds-layout-density-padding-inline-context, var(--cds-layout-density-padding-inline-condensed, 0.5rem));\n}\n:host .cds--layout-constraint--density__min-condensed{\n --cds-layout-density-padding-inline-min:var(--cds-layout-density-padding-inline-condensed, 0.5rem);\n}\n:host .cds--layout-constraint--density__max-condensed{\n --cds-layout-density-padding-inline-max:var(--cds-layout-density-padding-inline-condensed, 0.5rem);\n}\n:host .cds--layout--density-normal{\n --cds-layout-density-padding-inline-context:var(--cds-layout-density-padding-inline-normal, 1rem);\n --cds-layout-density-padding-inline:var(--cds-layout-density-padding-inline-context);\n}\n:host .cds--layout-constraint--density__default-normal{\n --cds-layout-density-padding-inline:var(--cds-layout-density-padding-inline-context, var(--cds-layout-density-padding-inline-normal, 1rem));\n}\n:host .cds--layout-constraint--density__min-normal{\n --cds-layout-density-padding-inline-min:var(--cds-layout-density-padding-inline-normal, 1rem);\n}\n:host .cds--layout-constraint--density__max-normal{\n --cds-layout-density-padding-inline-max:var(--cds-layout-density-padding-inline-normal, 1rem);\n}\n:host :root{\n --cds-layout-size-height-xs:1.5rem;\n --cds-layout-size-height-sm:2rem;\n --cds-layout-size-height-md:2.5rem;\n --cds-layout-size-height-lg:3rem;\n --cds-layout-size-height-xl:4rem;\n --cds-layout-size-height-2xl:5rem;\n --cds-layout-size-height-min:0px;\n --cds-layout-size-height-max:999999999px;\n --cds-layout-density-padding-inline-condensed:0.5rem;\n --cds-layout-density-padding-inline-normal:1rem;\n --cds-layout-density-padding-inline-min:0px;\n --cds-layout-density-padding-inline-max:999999999px;\n}\n:host{\n}\n:host :root{\n --cds-layer:var(--cds-layer-01, #f4f4f4);\n --cds-layer-active:var(--cds-layer-active-01, #c6c6c6);\n --cds-layer-background:var(--cds-layer-background-01, #ffffff);\n --cds-layer-hover:var(--cds-layer-hover-01, #e8e8e8);\n --cds-layer-selected:var(--cds-layer-selected-01, #e0e0e0);\n --cds-layer-selected-hover:var(--cds-layer-selected-hover-01, #d1d1d1);\n --cds-layer-accent:var(--cds-layer-accent-01, #e0e0e0);\n --cds-layer-accent-hover:var(--cds-layer-accent-hover-01, #d1d1d1);\n --cds-layer-accent-active:var(--cds-layer-accent-active-01, #a8a8a8);\n --cds-field:var(--cds-field-01, #f4f4f4);\n --cds-field-hover:var(--cds-field-hover-01, #e8e8e8);\n --cds-border-subtle:var(--cds-border-subtle-00, #e0e0e0);\n --cds-border-subtle-selected:var(--cds-border-subtle-selected-01, #c6c6c6);\n --cds-border-strong:var(--cds-border-strong-01, #8d8d8d);\n --cds-border-tile:var(--cds-border-tile-01, #c6c6c6);\n}\n:host .cds--layer-one{\n --cds-layer:var(--cds-layer-01, #f4f4f4);\n --cds-layer-active:var(--cds-layer-active-01, #c6c6c6);\n --cds-layer-background:var(--cds-layer-background-01, #ffffff);\n --cds-layer-hover:var(--cds-layer-hover-01, #e8e8e8);\n --cds-layer-selected:var(--cds-layer-selected-01, #e0e0e0);\n --cds-layer-selected-hover:var(--cds-layer-selected-hover-01, #d1d1d1);\n --cds-layer-accent:var(--cds-layer-accent-01, #e0e0e0);\n --cds-layer-accent-hover:var(--cds-layer-accent-hover-01, #d1d1d1);\n --cds-layer-accent-active:var(--cds-layer-accent-active-01, #a8a8a8);\n --cds-field:var(--cds-field-01, #f4f4f4);\n --cds-field-hover:var(--cds-field-hover-01, #e8e8e8);\n --cds-border-subtle:var(--cds-border-subtle-00, #e0e0e0);\n --cds-border-subtle-selected:var(--cds-border-subtle-selected-01, #c6c6c6);\n --cds-border-strong:var(--cds-border-strong-01, #8d8d8d);\n --cds-border-tile:var(--cds-border-tile-01, #c6c6c6);\n}\n:host .cds--layer-two{\n --cds-layer:var(--cds-layer-02, #ffffff);\n --cds-layer-active:var(--cds-layer-active-02, #c6c6c6);\n --cds-layer-background:var(--cds-layer-background-02, #f4f4f4);\n --cds-layer-hover:var(--cds-layer-hover-02, #e8e8e8);\n --cds-layer-selected:var(--cds-layer-selected-02, #e0e0e0);\n --cds-layer-selected-hover:var(--cds-layer-selected-hover-02, #d1d1d1);\n --cds-layer-accent:var(--cds-layer-accent-02, #e0e0e0);\n --cds-layer-accent-hover:var(--cds-layer-accent-hover-02, #d1d1d1);\n --cds-layer-accent-active:var(--cds-layer-accent-active-02, #a8a8a8);\n --cds-field:var(--cds-field-02, #ffffff);\n --cds-field-hover:var(--cds-field-hover-02, #e8e8e8);\n --cds-border-subtle:var(--cds-border-subtle-01, #c6c6c6);\n --cds-border-subtle-selected:var(--cds-border-subtle-selected-02, #c6c6c6);\n --cds-border-strong:var(--cds-border-strong-02, #8d8d8d);\n --cds-border-tile:var(--cds-border-tile-02, #a8a8a8);\n}\n:host .cds--layer-three{\n --cds-layer:var(--cds-layer-03, #f4f4f4);\n --cds-layer-active:var(--cds-layer-active-03, #c6c6c6);\n --cds-layer-background:var(--cds-layer-background-03, #ffffff);\n --cds-layer-hover:var(--cds-layer-hover-03, #e8e8e8);\n --cds-layer-selected:var(--cds-layer-selected-03, #e0e0e0);\n --cds-layer-selected-hover:var(--cds-layer-selected-hover-03, #d1d1d1);\n --cds-layer-accent:var(--cds-layer-accent-03, #e0e0e0);\n --cds-layer-accent-hover:var(--cds-layer-accent-hover-03, #d1d1d1);\n --cds-layer-accent-active:var(--cds-layer-accent-active-03, #a8a8a8);\n --cds-field:var(--cds-field-03, #f4f4f4);\n --cds-field-hover:var(--cds-field-hover-03, #e8e8e8);\n --cds-border-subtle:var(--cds-border-subtle-02, #e0e0e0);\n --cds-border-subtle-selected:var(--cds-border-subtle-selected-03, #c6c6c6);\n --cds-border-strong:var(--cds-border-strong-03, #8d8d8d);\n --cds-border-tile:var(--cds-border-tile-03, #c6c6c6);\n}\n:host .cds--layer-one.cds--layer__with-background{\n background-color:var(--cds-layer-background);\n}\n:host .cds--layer-two.cds--layer__with-background{\n background-color:var(--cds-layer-background);\n}\n:host .cds--layer-three.cds--layer__with-background{\n background-color:var(--cds-layer-background);\n}\n@keyframes cds--hide-feedback{\n 0%{\n opacity:1;\n visibility:inherit;\n }\n 100%{\n opacity:0;\n visibility:hidden;\n }\n}\n@keyframes cds--show-feedback{\n 0%{\n opacity:0;\n visibility:hidden;\n }\n 100%{\n opacity:1;\n visibility:inherit;\n }\n}\n@keyframes cds--skeleton{\n 0%{\n opacity:0.3;\n transform:scaleX(0);\n transform-origin:left;\n }\n 20%{\n opacity:1;\n transform:scaleX(1);\n transform-origin:left;\n }\n 28%{\n transform:scaleX(1);\n transform-origin:right;\n }\n 51%{\n transform:scaleX(0);\n transform-origin:right;\n }\n 58%{\n transform:scaleX(0);\n transform-origin:right;\n }\n 82%{\n transform:scaleX(1);\n transform-origin:right;\n }\n 83%{\n transform:scaleX(1);\n transform-origin:left;\n }\n 96%{\n transform:scaleX(0);\n transform-origin:left;\n }\n 100%{\n opacity:0.3;\n transform:scaleX(0);\n transform-origin:left;\n }\n}\n:host .cds--assistive-text,\n:host .cds--visually-hidden{\n position:absolute;\n overflow:hidden;\n padding:0;\n border:0;\n margin:-1px;\n block-size:1px;\n clip:rect(0, 0, 0, 0);\n inline-size:1px;\n visibility:inherit;\n white-space:nowrap;\n}\n:host .cds--popover-container{\n display:inline-block;\n}\n:host .cds--popover-container:not(.cds--popover--auto-align){\n position:relative;\n}\n:host .cds--popover--high-contrast .cds--popover{\n --cds-popover-background-color:var(--cds-background-inverse, #393939);\n --cds-popover-text-color:var(--cds-text-inverse, #ffffff);\n}\n:host .cds--popover--drop-shadow .cds--popover{\n filter:var(--cds-popover-drop-shadow, drop-shadow(0 0.125rem 0.125rem rgba(0, 0, 0, 0.2)));\n}\n:host .cds--popover--border > .cds--popover > .cds--popover-content{\n outline:1px solid var(--cds-popover-border-color, var(--cds-border-subtle));\n outline-offset:-1px;\n}\n:host .cds--popover--caret{\n --cds-popover-offset:0.625rem;\n}\n:host .cds--popover{\n position:absolute;\n z-index:6000;\n inset:0;\n pointer-events:none;\n}\n:host .cds--popover-content{\n --cds-layout-size-height-sm:2rem;\n}\n:host .cds--popover-content.cds--layout--size-sm, :host .cds--layout--size-sm :where(.cds--popover-content){\n --cds-layout-size-height:var(--cds-layout-size-height-sm);\n}\n:host .cds--popover-content{\n --cds-layout-size-height-md:2.5rem;\n}\n:host .cds--popover-content.cds--layout--size-md, :host .cds--layout--size-md :where(.cds--popover-content){\n --cds-layout-size-height:var(--cds-layout-size-height-md);\n}\n:host .cds--popover-content{\n --cds-layout-size-height-lg:3rem;\n}\n:host .cds--popover-content.cds--layout--size-lg, :host .cds--layout--size-lg :where(.cds--popover-content){\n --cds-layout-size-height:var(--cds-layout-size-height-lg);\n}\n:host .cds--popover-content{\n box-sizing:border-box;\n padding:0;\n border:0;\n margin:0;\n font-family:inherit;\n font-size:100%;\n vertical-align:baseline;\n}\n:host .cds--popover-content *,\n:host .cds--popover-content *::before,\n:host .cds--popover-content *::after{\n box-sizing:inherit;\n}\n:host .cds--popover-content{\n position:absolute;\n z-index:6000;\n display:none;\n border-radius:var(--cds-popover-border-radius, 2px);\n background-color:var(--cds-popover-background-color, var(--cds-layer));\n color:var(--cds-popover-text-color, var(--cds-text-primary, #161616));\n inline-size:-moz-max-content;\n inline-size:max-content;\n max-inline-size:23rem;\n pointer-events:auto;\n}\n:host .cds--popover--open > .cds--popover > .cds--popover-content{\n display:block;\n}\n:host .cds--popover--background-token__background > .cds--popover > .cds--popover-content{\n background-color:var(--cds-background, #ffffff);\n}\n:host .cds--popover-content::before{\n position:absolute;\n display:none;\n content:\"\";\n}\n:host .cds--popover--open > .cds--popover > .cds--popover-content::before{\n display:block;\n}\n:host .cds--popover-caret,\n:host .cds--popover--auto-align.cds--popover-caret{\n position:absolute;\n z-index:6000;\n display:none;\n will-change:transform;\n}\n:host .cds--popover-caret::after,\n:host .cds--popover--auto-align.cds--popover-caret::after{\n position:absolute;\n display:block;\n background-color:var(--cds-popover-background-color, var(--cds-layer));\n content:\"\";\n}\n:host .cds--popover-caret::before,\n:host .cds--popover--auto-align.cds--popover-caret::before{\n position:absolute;\n display:none;\n background-color:var(--cds-popover-border-color, var(--cds-border-subtle));\n content:\"\";\n}\n:host .cds--popover--background-token__background > .cds--popover > .cds--popover-caret::after{\n background-color:var(--cds-background, #ffffff);\n}\n:host .cds--popover--border .cds--popover-caret::before,\n:host .cds--popover--border .cds--popover--auto-align.cds--popover-caret::before{\n display:block;\n}\n:host .cds--popover--caret.cds--popover--open > .cds--popover > .cds--popover-caret{\n display:block;\n}\n:host .cds--popover--auto-align.cds--popover--caret.cds--popover--open > .cds--popover > .cds--popover-content > .cds--popover-caret{\n display:block;\n}\n:host .cds--popover--tab-tip > .cds--popover > .cds--popover-caret{\n display:none;\n}\n:host .cds--popover--bottom:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content{\n inset-block-end:0;\n inset-inline-start:50%;\n transform:translate(-50%, calc(100% + var(--cds-popover-offset, 0rem)));\n}\n:host .cds--popover--bottom:not(.cds--popover--caret):not(.cds--popover--auto-align):not(.cds--popover--tab-tip) > .cds--popover > .cds--popover-content,\n:host .cds--popover--bottom-start:not(.cds--popover--caret):not(.cds--popover--auto-align):not(.cds--popover--tab-tip) > .cds--popover > .cds--popover-content,\n:host .cds--popover--bottom-end:not(.cds--popover--caret):not(.cds--popover--auto-align):not(.cds--popover--tab-tip) > .cds--popover > .cds--popover-content{\n inset-block-end:-0.25rem;\n}\n:host .cds--popover--top:not(.cds--popover--caret):not(.cds--popover--auto-align):not(.cds--popover--tab-tip) > .cds--popover > .cds--popover-content,\n:host .cds--popover--top-start:not(.cds--popover--caret):not(.cds--popover--auto-align):not(.cds--popover--tab-tip) > .cds--popover > .cds--popover-content,\n:host .cds--popover--top-end:not(.cds--popover--caret):not(.cds--popover--auto-align):not(.cds--popover--tab-tip) > .cds--popover > .cds--popover-content{\n inset-block-start:-0.25rem;\n}\n:host .cds--popover--top-start:not(.cds--popover--caret):not(.cds--popover--auto-align):not(.cds--popover--tab-tip) > .cds--popover > .cds--popover-content,\n:host .cds--popover--bottom-start:not(.cds--popover--caret):not(.cds--popover--auto-align):not(.cds--popover--tab-tip) > .cds--popover > .cds--popover-content{\n inset-inline-start:calc(50% - var(--cds-popover-offset, 0rem) - 1rem);\n}\n:host .cds--popover--top-end:not(.cds--popover--caret):not(.cds--popover--auto-align):not(.cds--popover--tab-tip) > .cds--popover > .cds--popover-content,\n:host .cds--popover--bottom-end:not(.cds--popover--caret):not(.cds--popover--auto-align):not(.cds--popover--tab-tip) > .cds--popover > .cds--popover-content{\n inset-inline-end:calc(50% - var(--cds-popover-offset, 0rem) - 1rem);\n}\n:host .cds--popover--right:not(.cds--popover--caret):not(.cds--popover--auto-align):not(.cds--popover--tab-tip) > .cds--popover > .cds--popover-content,\n:host .cds--popover--right-start:not(.cds--popover--caret):not(.cds--popover--auto-align):not(.cds--popover--tab-tip) > .cds--popover > .cds--popover-content,\n:host .cds--popover--right-end:not(.cds--popover--caret):not(.cds--popover--auto-align):not(.cds--popover--tab-tip) > .cds--popover > .cds--popover-content{\n inset-inline-start:calc(100% + 0.25rem);\n}\n:host .cds--popover--left:not(.cds--popover--caret):not(.cds--popover--auto-align):not(.cds--popover--tab-tip) > .cds--popover > .cds--popover-content,\n:host .cds--popover--left-start:not(.cds--popover--caret):not(.cds--popover--auto-align):not(.cds--popover--tab-tip) > .cds--popover > .cds--popover-content,\n:host .cds--popover--left-end:not(.cds--popover--caret):not(.cds--popover--auto-align):not(.cds--popover--tab-tip) > .cds--popover > .cds--popover-content{\n inset-inline-end:calc(100% + 0.25rem);\n}\n:host [dir=rtl] .cds--popover--bottom:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content{\n transform:translate(50%, calc(100% + var(--cds-popover-offset, 0rem)));\n}\n:host .cds--popover--bottom-left:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,\n:host .cds--popover--bottom-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content{\n inset-block-end:0;\n inset-inline-start:calc(50% - var(--cds-popover-offset, 0rem));\n transform:translate(calc(-1 * var(--cds-popover-offset, 0rem)), calc(100% + var(--cds-popover-offset, 0rem)));\n}\n:host [dir=rtl] .cds--popover--bottom-left:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,\n:host [dir=rtl] .cds--popover--bottom-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content{\n inset-inline-end:calc(50% - var(--cds-popover-offset, 0rem));\n inset-inline-start:initial;\n}\n:host .cds--popover--bottom-right:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,\n:host .cds--popover--bottom-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content{\n inset-block-end:0;\n inset-inline-end:calc(50% - var(--cds-popover-offset, 0rem));\n transform:translate(var(--cds-popover-offset, 0rem), calc(100% + var(--cds-popover-offset, 0rem)));\n}\n:host [dir=rtl] .cds--popover--bottom-right:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,\n:host [dir=rtl] .cds--popover--bottom-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content{\n inset-inline-start:calc(50% - var(--cds-popover-offset, 0rem));\n}\n:host .cds--popover--bottom > .cds--popover > .cds--popover-content::before,\n:host .cds--popover--bottom-left > .cds--popover > .cds--popover-content::before,\n:host .cds--popover--bottom-start > .cds--popover > .cds--popover-content::before,\n:host .cds--popover--bottom-right > .cds--popover > .cds--popover-content::before,\n:host .cds--popover--bottom-end > .cds--popover > .cds--popover-content::before{\n block-size:var(--cds-popover-offset, 0rem);\n inset-block-start:0;\n inset-inline:0;\n transform:translateY(-100%);\n}\n:host .cds--popover--bottom > .cds--popover > .cds--popover-caret,\n:host .cds--popover--bottom-left > .cds--popover > .cds--popover-caret,\n:host .cds--popover--bottom-start > .cds--popover > .cds--popover-caret,\n:host .cds--popover--bottom-right > .cds--popover > .cds--popover-caret,\n:host .cds--popover--bottom-end > .cds--popover > .cds--popover-caret{\n block-size:var(--cds-popover-caret-height, 0.375rem);\n inline-size:var(--cds-popover-caret-width, 0.75rem);\n inset-block-end:0;\n inset-inline-start:50%;\n transform:translate(-50%, var(--cds-popover-offset, 0rem));\n}\n:host .cds--popover--bottom > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--bottom-left > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--bottom-start > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--bottom-right > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--bottom-end > .cds--popover > .cds--popover-caret::after{\n block-size:var(--cds-popover-caret-height, 0.375rem);\n clip-path:polygon(0% 100%, 50% 0%, 100% 100%);\n inline-size:var(--cds-popover-caret-width, 0.75rem);\n}\n:host .cds--popover--border.cds--popover--bottom > .cds--popover > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--bottom-left > .cds--popover > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--bottom-start > .cds--popover > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--bottom-right > .cds--popover > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--bottom-end > .cds--popover > .cds--popover-caret::before{\n block-size:var(--cds-popover-caret-height, 0.375rem);\n clip-path:polygon(0% 100%, 50% 0%, 100% 100%);\n inline-size:var(--cds-popover-caret-width, 0.75rem);\n}\n:host .cds--popover--border.cds--popover--bottom > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--bottom-left > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--bottom-start > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--bottom-right > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--bottom-end > .cds--popover > .cds--popover-caret::after{\n inline-size:calc(var(--cds-popover-caret-width, 0.75rem) - 1px);\n inset-block-start:1px;\n inset-inline-start:0.5px;\n}\n:host [dir=rtl] .cds--popover--bottom > .cds--popover > .cds--popover-caret,\n:host [dir=rtl] .cds--popover--bottom-left > .cds--popover > .cds--popover-caret,\n:host [dir=rtl] .cds--popover--bottom-start > .cds--popover > .cds--popover-caret,\n:host [dir=rtl] .cds--popover--bottom-right > .cds--popover > .cds--popover-caret,\n:host [dir=rtl] .cds--popover--bottom-end > .cds--popover > .cds--popover-caret{\n transform:translate(50%, var(--cds-popover-offset, 0rem));\n}\n:host .cds--popover--bottom.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret,\n:host .cds--popover--bottom-left.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret,\n:host .cds--popover--bottom-start.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret,\n:host .cds--popover--bottom-right.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret,\n:host .cds--popover--bottom-end.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret{\n block-size:var(--cds-popover-caret-height, 0.375rem);\n inline-size:var(--cds-popover-caret-width, 0.75rem);\n}\n:host .cds--popover--bottom.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--bottom-left.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--bottom-start.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--bottom-right.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--bottom-end.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after{\n block-size:var(--cds-popover-caret-height, 0.375rem);\n clip-path:polygon(0% 100%, 50% 0%, 100% 100%);\n inline-size:var(--cds-popover-caret-width, 0.75rem);\n}\n:host .cds--popover--border.cds--popover--bottom.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--bottom-left.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--bottom-start.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--bottom-right.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--bottom-end.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before{\n block-size:var(--cds-popover-caret-height, 0.375rem);\n clip-path:polygon(0% 100%, 50% 0%, 100% 100%);\n inline-size:var(--cds-popover-caret-width, 0.75rem);\n}\n:host .cds--popover--border.cds--popover--bottom.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--bottom-left.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--bottom-start.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--bottom-right.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--bottom-end.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after{\n inline-size:calc(var(--cds-popover-caret-width, 0.75rem) - 1px);\n inset-block-start:1px;\n inset-inline-start:0.5px;\n}\n:host .cds--popover--top:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content{\n inset-block-start:0;\n inset-inline-start:50%;\n transform:translate(-50%, calc(-100% - var(--cds-popover-offset, 0rem)));\n}\n:host [dir=rtl] .cds--popover--top:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content{\n transform:translate(50%, calc(-100% - var(--cds-popover-offset, 0rem)));\n}\n:host .cds--popover--top-left:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,\n:host .cds--popover--top-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content{\n inset-block-start:0;\n inset-inline-start:calc(50% - var(--cds-popover-offset, 0rem));\n transform:translate(calc(-1 * var(--cds-popover-offset, 0rem)), calc(-100% - var(--cds-popover-offset, 0rem)));\n}\n:host [dir=rtl] .cds--popover--top-left:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,\n:host [dir=rtl] .cds--popover--top-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content{\n inset-inline-end:calc(50% - var(--cds-popover-offset, 0rem));\n inset-inline-start:initial;\n}\n:host .cds--popover--top-right:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,\n:host .cds--popover--top-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content{\n inset-block-start:0;\n inset-inline-end:calc(50% - var(--cds-popover-offset, 0rem));\n transform:translate(var(--cds-popover-offset, 0rem), calc(-100% - var(--cds-popover-offset, 0rem)));\n}\n:host [dir=rtl] .cds--popover--top-right:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,\n:host [dir=rtl] .cds--popover--top-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content{\n inset-inline-start:calc(50% - var(--cds-popover-offset, 0rem));\n}\n:host .cds--popover--top > .cds--popover > .cds--popover-content::before,\n:host .cds--popover--top-left > .cds--popover > .cds--popover-content::before,\n:host .cds--popover--top-start > .cds--popover > .cds--popover-content::before,\n:host .cds--popover--top-right > .cds--popover > .cds--popover-content::before,\n:host .cds--popover--top-end > .cds--popover > .cds--popover-content::before{\n block-size:var(--cds-popover-offset, 0rem);\n inset-block-end:0;\n inset-inline:0;\n transform:translateY(100%);\n}\n:host .cds--popover--top > .cds--popover > .cds--popover-caret,\n:host .cds--popover--top-left > .cds--popover > .cds--popover-caret,\n:host .cds--popover--top-start > .cds--popover > .cds--popover-caret,\n:host .cds--popover--top-right > .cds--popover > .cds--popover-caret,\n:host .cds--popover--top-end > .cds--popover > .cds--popover-caret{\n block-size:var(--cds-popover-caret-height, 0.375rem);\n inline-size:var(--cds-popover-caret-width, 0.75rem);\n inset-block-start:0;\n inset-inline-start:50%;\n transform:translate(-50%, calc(-1 * var(--cds-popover-offset, 0rem)));\n}\n:host .cds--popover--top > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--top-left > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--top-start > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--top-right > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--top-end > .cds--popover > .cds--popover-caret::after{\n block-size:var(--cds-popover-caret-height, 0.375rem);\n clip-path:polygon(0% 0%, 50% 100%, 100% 0%);\n inline-size:var(--cds-popover-caret-width, 0.75rem);\n}\n:host .cds--popover--border.cds--popover--top > .cds--popover > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--top-left > .cds--popover > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--top-start > .cds--popover > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--top-right > .cds--popover > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--top-end > .cds--popover > .cds--popover-caret::before{\n block-size:var(--cds-popover-caret-height, 0.375rem);\n clip-path:polygon(0% 0%, 50% 100%, 100% 0%);\n inline-size:var(--cds-popover-caret-width, 0.75rem);\n}\n:host .cds--popover--border.cds--popover--top > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--top-left > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--top-start > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--top-right > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--top-end > .cds--popover > .cds--popover-caret::after{\n inline-size:calc(var(--cds-popover-caret-width, 0.75rem) - 1px);\n inset-block-start:-1px;\n inset-inline-start:0.5px;\n}\n:host [dir=rtl] .cds--popover--top:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret,\n:host [dir=rtl] .cds--popover--top-left:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret,\n:host [dir=rtl] .cds--popover--top-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret,\n:host [dir=rtl] .cds--popover--top-right:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret,\n:host [dir=rtl] .cds--popover--top-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret{\n transform:translate(50%, calc(-1 * var(--cds-popover-offset, 0rem)));\n}\n:host .cds--popover--top.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret,\n:host .cds--popover--top-left.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret,\n:host .cds--popover--top-start.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret,\n:host .cds--popover--top-right.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret,\n:host .cds--popover--top-end.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret{\n block-size:var(--cds-popover-caret-height, 0.375rem);\n inline-size:var(--cds-popover-caret-width, 0.75rem);\n}\n:host .cds--popover--top.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--top-left.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--top-start.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--top-right.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--top-end.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after{\n block-size:var(--cds-popover-caret-height, 0.375rem);\n clip-path:polygon(0% 0%, 50% 100%, 100% 0%);\n inline-size:var(--cds-popover-caret-width, 0.75rem);\n}\n:host .cds--popover--border.cds--popover--top.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--top-left.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--top-start.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--top-right.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--top-end.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before{\n block-size:var(--cds-popover-caret-height, 0.375rem);\n clip-path:polygon(0% 0%, 50% 100%, 100% 0%);\n inline-size:var(--cds-popover-caret-width, 0.75rem);\n}\n:host .cds--popover--border.cds--popover--top.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--top-left.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--top-start.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--top-right.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--top-end.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after{\n inline-size:calc(var(--cds-popover-caret-width, 0.75rem) - 1px);\n inset-block-start:-1px;\n inset-inline-start:0.5px;\n}\n:host .cds--popover--right:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content{\n inset-block-start:50%;\n inset-inline-start:100%;\n transform:translate(var(--cds-popover-offset, 0rem), -50%);\n}\n:host .cds--popover--right-top:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,\n:host .cds--popover--right-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content{\n inset-block-start:50%;\n inset-inline-start:100%;\n transform:translate(var(--cds-popover-offset, 0rem), calc(0.5 * var(--cds-popover-offset, 0rem) * -1 - 16px));\n}\n:host .cds--popover--right-bottom:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,\n:host .cds--popover--right-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content{\n inset-block-end:50%;\n inset-inline-start:100%;\n transform:translate(var(--cds-popover-offset, 0rem), calc(0.5 * var(--cds-popover-offset, 0rem) + 16px));\n}\n:host [dir=rtl] .cds--popover--right:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,\n:host [dir=rtl] .cds--popover--right-bottom:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,\n:host [dir=rtl] .cds--popover--right-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,\n:host [dir=rtl] .cds--popover--right-top:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,\n:host [dir=rtl] .cds--popover--right-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content{\n inset-inline-end:100%;\n inset-inline-start:initial;\n}\n:host .cds--popover--right > .cds--popover > .cds--popover-content::before,\n:host .cds--popover--right-top > .cds--popover > .cds--popover-content::before,\n:host .cds--popover--right-start > .cds--popover > .cds--popover-content::before,\n:host .cds--popover--right-bottom > .cds--popover > .cds--popover-content::before,\n:host .cds--popover--right-end > .cds--popover > .cds--popover-content::before{\n inline-size:var(--cds-popover-offset, 0rem);\n inset-block:0;\n inset-inline-start:0;\n transform:translateX(-100%);\n}\n:host .cds--popover--right:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret,\n:host .cds--popover--right-top:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret,\n:host .cds--popover--right-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret,\n:host .cds--popover--right-bottom:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret,\n:host .cds--popover--right-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret{\n block-size:var(--cds-popover-caret-width, 0.75rem);\n inline-size:var(--cds-popover-caret-height, 0.375rem);\n inset-block-start:50%;\n inset-inline-start:100%;\n transform:translate(calc(var(--cds-popover-offset, 0rem) - 100%), -50%);\n}\n:host .cds--popover--right:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--right-top:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--right-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--right-bottom:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--right-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after{\n block-size:var(--cds-popover-caret-width, 0.75rem);\n clip-path:polygon(0% 50%, 100% 0%, 100% 100%);\n inline-size:var(--cds-popover-caret-height, 0.375rem);\n}\n:host [dir=rtl] .cds--popover--right:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret,\n:host [dir=rtl] .cds--popover--right-top:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret,\n:host [dir=rtl] .cds--popover--right-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret,\n:host [dir=rtl] .cds--popover--right-bottom:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret,\n:host [dir=rtl] .cds--popover--right-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret{\n inset-inline-end:100%;\n inset-inline-start:initial;\n}\n:host .cds--popover--border.cds--popover--right:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--right-top:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--right-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--right-bottom:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--right-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::before{\n block-size:var(--cds-popover-caret-width, 0.75rem);\n clip-path:polygon(0% 50%, 100% 0%, 100% 100%);\n inline-size:var(--cds-popover-caret-height, 0.375rem);\n}\n:host .cds--popover--border.cds--popover--right:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--right-top:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--right-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--right-bottom:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--right-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after{\n inset-inline-start:1px;\n}\n:host [dir=rtl] .cds--popover--border.cds--popover--right:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,\n:host [dir=rtl] .cds--popover--border.cds--popover--right-top:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,\n:host [dir=rtl] .cds--popover--border.cds--popover--right-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,\n:host [dir=rtl] .cds--popover--border.cds--popover--right-bottom:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,\n:host [dir=rtl] .cds--popover--border.cds--popover--right-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after{\n inset-inline-start:-1px;\n}\n:host .cds--popover--right.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret,\n:host .cds--popover--right-top.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret,\n:host .cds--popover--right-start.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret,\n:host .cds--popover--right-bottom.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret,\n:host .cds--popover--right-end.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret{\n block-size:var(--cds-popover-caret-width, 0.75rem);\n inline-size:var(--cds-popover-caret-height, 0.375rem);\n}\n:host .cds--popover--right.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--right-top.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--right-start.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--right-bottom.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--right-end.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after{\n block-size:var(--cds-popover-caret-width, 0.75rem);\n clip-path:polygon(0% 50%, 100% 0%, 100% 100%);\n inline-size:var(--cds-popover-caret-height, 0.375rem);\n}\n:host .cds--popover--border.cds--popover--right.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--right-top.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--right-start.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--right-bottom.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--right-end.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before{\n block-size:var(--cds-popover-caret-width, 0.75rem);\n clip-path:polygon(0% 50%, 100% 0%, 100% 100%);\n inline-size:var(--cds-popover-caret-height, 0.375rem);\n}\n:host .cds--popover--border.cds--popover--right.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--right-top.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--right-start.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--right-bottom.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--right-end.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after{\n inset-inline-start:1px;\n}\n:host [dir=rtl] .cds--popover--border.cds--popover--right.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,\n:host [dir=rtl] .cds--popover--border.cds--popover--right-top.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,\n:host [dir=rtl] .cds--popover--border.cds--popover--right-start.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,\n:host [dir=rtl] .cds--popover--border.cds--popover--right-bottom.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,\n:host [dir=rtl] .cds--popover--border.cds--popover--right-end.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before{\n margin-inline-start:1px;\n}\n:host [dir=rtl] .cds--popover--border.cds--popover--right.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host [dir=rtl] .cds--popover--border.cds--popover--right-top.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host [dir=rtl] .cds--popover--border.cds--popover--right-start.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host [dir=rtl] .cds--popover--border.cds--popover--right-bottom.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host [dir=rtl] .cds--popover--border.cds--popover--right-end.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after{\n inset-inline-start:0;\n}\n:host .cds--popover--left:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content{\n inset-block-start:50%;\n inset-inline-end:100%;\n transform:translate(calc(-1 * var(--cds-popover-offset, 0rem) + 0.1px), -50%);\n}\n:host .cds--popover--left-top:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,\n:host .cds--popover--left-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content{\n inset-block-start:50%;\n inset-inline-end:100%;\n transform:translate(calc(-1 * var(--cds-popover-offset, 0rem)), calc(-0.5 * var(--cds-popover-offset, 0rem) - 16px));\n}\n:host .cds--popover--left-bottom:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,\n:host .cds--popover--left-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content{\n inset-block-end:50%;\n inset-inline-end:100%;\n transform:translate(calc(-1 * var(--cds-popover-offset, 0rem)), calc(0.5 * var(--cds-popover-offset, 0rem) + 16px));\n}\n:host [dir=rtl] .cds--popover--left:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,\n:host [dir=rtl] .cds--popover--left-bottom:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,\n:host [dir=rtl] .cds--popover--left-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,\n:host [dir=rtl] .cds--popover--left-top:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,\n:host [dir=rtl] .cds--popover--left-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content{\n inset-inline-end:initial;\n inset-inline-start:100%;\n}\n:host .cds--popover--left > .cds--popover > .cds--popover-content::before,\n:host .cds--popover--left-top > .cds--popover > .cds--popover-content::before,\n:host .cds--popover--left-start > .cds--popover > .cds--popover-content::before,\n:host .cds--popover--left-bottom > .cds--popover > .cds--popover-content::before,\n:host .cds--popover--left-end > .cds--popover > .cds--popover-content::before{\n inline-size:var(--cds-popover-offset, 0rem);\n inset-block:0;\n inset-inline-end:0;\n transform:translateX(100%);\n}\n:host .cds--popover--left:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret,\n:host .cds--popover--left-top:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret,\n:host .cds--popover--left-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret,\n:host .cds--popover--left-bottom:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret,\n:host .cds--popover--left-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret{\n block-size:var(--cds-popover-caret-width, 0.75rem);\n inline-size:var(--cds-popover-caret-height, 0.375rem);\n inset-block-start:50%;\n inset-inline-end:100%;\n transform:translate(calc(-1 * var(--cds-popover-offset, 0rem) + 100%), -50%);\n}\n:host .cds--popover--left:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--left-top:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--left-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--left-bottom:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--left-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after{\n block-size:var(--cds-popover-caret-width, 0.75rem);\n clip-path:polygon(0% 0%, 100% 50%, 0% 100%);\n inline-size:var(--cds-popover-caret-height, 0.375rem);\n}\n:host [dir=rtl] .cds--popover--left:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret,\n:host [dir=rtl] .cds--popover--left-top:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret,\n:host [dir=rtl] .cds--popover--left-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret,\n:host [dir=rtl] .cds--popover--left-bottom:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret,\n:host [dir=rtl] .cds--popover--left-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret{\n inset-inline-end:initial;\n inset-inline-start:100%;\n}\n:host .cds--popover--border.cds--popover--left:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--left-top:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--left-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--left-bottom:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--left-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::before{\n block-size:var(--cds-popover-caret-width, 0.75rem);\n clip-path:polygon(0% 0%, 100% 50%, 0% 100%);\n inline-size:var(--cds-popover-caret-height, 0.375rem);\n}\n:host .cds--popover--border.cds--popover--left:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--left-top:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--left-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--left-bottom:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--left-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after{\n inset-inline-start:-1px;\n}\n:host [dir=rtl] .cds--popover--border.cds--popover--left:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,\n:host [dir=rtl] .cds--popover--border.cds--popover--left-top:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,\n:host [dir=rtl] .cds--popover--border.cds--popover--left-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,\n:host [dir=rtl] .cds--popover--border.cds--popover--left-bottom:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,\n:host [dir=rtl] .cds--popover--border.cds--popover--left-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after{\n inset-inline-start:1px;\n}\n:host .cds--popover--left.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret,\n:host .cds--popover--left-top.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret,\n:host .cds--popover--left-start.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret,\n:host .cds--popover--left-bottom.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret,\n:host .cds--popover--left-end.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret{\n block-size:var(--cds-popover-caret-width, 0.75rem);\n inline-size:var(--cds-popover-caret-height, 0.375rem);\n}\n:host .cds--popover--left.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--left-top.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--left-start.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--left-bottom.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--left-end.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after{\n block-size:var(--cds-popover-caret-width, 0.75rem);\n clip-path:polygon(0% 0%, 100% 50%, 0% 100%);\n inline-size:var(--cds-popover-caret-height, 0.375rem);\n}\n:host .cds--popover--border.cds--popover--left.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--left-top.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--left-start.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--left-bottom.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,\n:host .cds--popover--border.cds--popover--left-end.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before{\n block-size:var(--cds-popover-caret-width, 0.75rem);\n clip-path:polygon(0% 0%, 100% 50%, 0% 100%);\n inline-size:var(--cds-popover-caret-height, 0.375rem);\n}\n:host .cds--popover--border.cds--popover--left.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--left-top.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--left-start.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--left-bottom.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host .cds--popover--border.cds--popover--left-end.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after{\n inset-inline-start:-1px;\n}\n:host [dir=rtl] .cds--popover--border.cds--popover--left.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,\n:host [dir=rtl] .cds--popover--border.cds--popover--left-top.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,\n:host [dir=rtl] .cds--popover--border.cds--popover--left-start.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,\n:host [dir=rtl] .cds--popover--border.cds--popover--left-bottom.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,\n:host [dir=rtl] .cds--popover--border.cds--popover--left-end.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before{\n margin-inline-start:-1px;\n}\n:host [dir=rtl] .cds--popover--border.cds--popover--left.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host [dir=rtl] .cds--popover--border.cds--popover--left-top.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host [dir=rtl] .cds--popover--border.cds--popover--left-start.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host [dir=rtl] .cds--popover--border.cds--popover--left-bottom.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,\n:host [dir=rtl] .cds--popover--border.cds--popover--left-end.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after{\n inset-inline-start:0;\n}\n:host .cds--popover--tab-tip > .cds--popover > .cds--popover-content{\n border-radius:0;\n}\n:host .cds--popover--tab-tip.cds--popover--top-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,\n:host .cds--popover--tab-tip.cds--popover--bottom-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,\n:host [dir=rtl] .cds--popover--tab-tip.cds--popover--top-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,\n:host [dir=rtl] .cds--popover--tab-tip.cds--popover--bottom-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content{\n inset-inline-start:0;\n}\n:host .cds--popover--tab-tip.cds--popover--top-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,\n:host .cds--popover--tab-tip.cds--popover--bottom-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,\n:host [dir=rtl] .cds--popover--tab-tip.cds--popover--top-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,\n:host [dir=rtl] .cds--popover--tab-tip.cds--popover--bottom-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content{\n inset-inline-end:0;\n inset-inline-start:initial;\n}\n:host .cds--popover--tab-tip .cds--popover{\n will-change:filter;\n}\n:host .cds--popover--tab-tip__button{\n display:inline-block;\n padding:0;\n border:0;\n -webkit-appearance:none;\n -moz-appearance:none;\n appearance:none;\n background:none;\n cursor:pointer;\n text-align:start;\n inline-size:100%;\n box-sizing:border-box;\n padding:0;\n border:0;\n margin:0;\n font-family:inherit;\n font-size:100%;\n vertical-align:baseline;\n}\n:host .cds--popover--tab-tip__button *,\n:host .cds--popover--tab-tip__button *::before,\n:host .cds--popover--tab-tip__button *::after{\n box-sizing:inherit;\n}\n:host .cds--popover--tab-tip__button::-moz-focus-inner{\n border:0;\n}\n:host .cds--popover--tab-tip__button{\n position:relative;\n display:inline-flex;\n align-items:center;\n justify-content:center;\n block-size:2rem;\n inline-size:2rem;\n}\n:host .cds--popover--tab-tip__button:focus{\n outline:2px solid var(--cds-focus, #0f62fe);\n outline-offset:-2px;\n}\n@media screen and (prefers-contrast){\n :host .cds--popover--tab-tip__button:focus{\n outline-style:dotted;\n }\n}\n:host .cds--popover--tab-tip__button:hover{\n background-color:var(--cds-layer-hover);\n}\n:host .cds--popover--tab-tip__button svg{\n fill:var(--cds-icon-primary, #161616);\n}\n:host .cds--popover--tab-tip.cds--popover--open .cds--popover--tab-tip__button{\n background:var(--cds-layer);\n box-shadow:0 2px 2px rgba(0, 0, 0, 0.2);\n}\n:host .cds--popover--tab-tip.cds--popover--open .cds--popover--tab-tip__button:not(:focus)::after{\n position:absolute;\n z-index:6001;\n background:var(--cds-layer);\n block-size:2px;\n content:\"\";\n inline-size:100%;\n inset-block-end:0;\n}\n:host .cds--popover--tab-tip__button svg{\n fill:var(--cds-icon-primary, #161616);\n}\n:host .cds--tooltip{\n --cds-popover-offset:12px;\n}\n:host .cds--tooltip-content{\n font-size:var(--cds-body-01-font-size, 0.875rem);\n font-weight:var(--cds-body-01-font-weight, 400);\n line-height:var(--cds-body-01-line-height, 1.42857);\n letter-spacing:var(--cds-body-01-letter-spacing, 0.16px);\n padding:var(--cds-tooltip-padding-block, 1rem) var(--cds-tooltip-padding-inline, 1rem);\n max-inline-size:18rem;\n overflow-wrap:break-word;\n}\n:host .cds--icon-tooltip{\n --cds-tooltip-padding-block:0.125rem;\n --cds-popover-caret-width:0.5rem;\n --cds-popover-caret-height:0.25rem;\n --cds-popover-offset:0.5rem;\n}\n:host .cds--icon-tooltip .cds--tooltip-content{\n font-size:var(--cds-body-compact-01-font-size, 0.875rem);\n font-weight:var(--cds-body-compact-01-font-weight, 400);\n line-height:var(--cds-body-compact-01-line-height, 1.28572);\n letter-spacing:var(--cds-body-compact-01-letter-spacing, 0.16px);\n}\n:host .cds--definition-term{\n display:inline-block;\n padding:0;\n border:0;\n -webkit-appearance:none;\n -moz-appearance:none;\n appearance:none;\n background:none;\n cursor:pointer;\n text-align:start;\n inline-size:100%;\n box-sizing:border-box;\n padding:0;\n border:0;\n margin:0;\n font-family:inherit;\n font-size:100%;\n vertical-align:baseline;\n}\n:host .cds--definition-term *,\n:host .cds--definition-term *::before,\n:host .cds--definition-term *::after{\n box-sizing:inherit;\n}\n:host .cds--definition-term::-moz-focus-inner{\n border:0;\n}\n:host .cds--definition-term{\n border-radius:0;\n border-block-end:1px dotted var(--cds-border-strong);\n color:var(--cds-text-primary, #161616);\n}\n:host .cds--definition-term:focus{\n outline:1px solid var(--cds-focus, #0f62fe);\n}\n@media screen and (prefers-contrast){\n :host .cds--definition-term:focus{\n outline-style:dotted;\n }\n}\n:host .cds--definition-term:focus{\n border-block-end-color:var(--cds-border-interactive, #0f62fe);\n}\n:host .cds--definition-term:hover{\n border-block-end-color:var(--cds-border-interactive, #0f62fe);\n}\n:host .cds--definition-tooltip{\n font-size:var(--cds-body-01-font-size, 0.875rem);\n font-weight:var(--cds-body-01-font-weight, 400);\n line-height:var(--cds-body-01-line-height, 1.42857);\n letter-spacing:var(--cds-body-01-letter-spacing, 0.16px);\n padding:0.5rem 1rem;\n max-inline-size:11rem;\n text-wrap:auto;\n word-break:break-word;\n}\n:host{\n}\n:host .cds--btn{\n --cds-layout-size-height-local:clamp(max(var(--cds-layout-size-height-min), var(--cds-layout-size-height-xs)), var(--cds-layout-size-height, var(--cds-layout-size-height-lg)), min(var(--cds-layout-size-height-max), var(--cds-layout-size-height-2xl)));\n --cds-layout-density-padding-inline-local:clamp(var(--cds-layout-density-padding-inline-min), var(--cds-layout-density-padding-inline, var(--cds-layout-density-padding-inline-normal)), var(--cds-layout-density-padding-inline-max));\n --temp-1lh:(\n var(--cds-body-compact-01-line-height, 1.28572) * 1em\n );\n --temp-expressive-1lh:(\n var(--cds-body-compact-02-line-height, 1.375) * 1em\n );\n --temp-padding-block-max:calc(\n (var(--cds-layout-size-height-lg) - var(--temp-1lh)) / 2 -\n 0.0625rem\n );\n box-sizing:border-box;\n padding:0;\n border:0;\n margin:0;\n font-family:inherit;\n font-size:100%;\n vertical-align:baseline;\n}\n:host .cds--btn *,\n:host .cds--btn *::before,\n:host .cds--btn *::after{\n box-sizing:inherit;\n}\n:host .cds--btn{\n font-size:var(--cds-body-compact-01-font-size, 0.875rem);\n font-weight:var(--cds-body-compact-01-font-weight, 400);\n line-height:var(--cds-body-compact-01-line-height, 1.28572);\n letter-spacing:var(--cds-body-compact-01-letter-spacing, 0.16px);\n position:relative;\n display:inline-flex;\n flex-shrink:0;\n justify-content:space-between;\n border-radius:0;\n margin:0;\n cursor:pointer;\n inline-size:-moz-max-content;\n inline-size:max-content;\n max-inline-size:20rem;\n min-block-size:var(--cds-layout-size-height-local);\n outline:none;\n padding-block:min((var(--cds-layout-size-height-local) - var(--temp-1lh)) / 2 - 0.0625rem, var(--temp-padding-block-max));\n padding-inline:calc(var(--cds-layout-density-padding-inline-local) - 0.0625rem) calc(var(--cds-layout-density-padding-inline-local) * 3 + 1rem - 0.0625rem);\n text-align:start;\n text-decoration:none;\n transition:background 70ms cubic-bezier(0, 0, 0.38, 0.9), box-shadow 70ms cubic-bezier(0, 0, 0.38, 0.9), border-color 70ms cubic-bezier(0, 0, 0.38, 0.9), outline 70ms cubic-bezier(0, 0, 0.38, 0.9);\n vertical-align:top;\n}\n:host .cds--btn:disabled, :host .cds--btn:hover:disabled, :host .cds--btn:focus:disabled, :host .cds--btn.cds--btn--disabled, :host .cds--btn.cds--btn--disabled:hover, :host .cds--btn.cds--btn--disabled:focus{\n border-color:var(--cds-button-disabled, #c6c6c6);\n background:var(--cds-button-disabled, #c6c6c6);\n box-shadow:none;\n color:var(--cds-text-on-color-disabled, #8d8d8d);\n cursor:not-allowed;\n}\n:host .cds--btn .cds--btn__icon{\n position:absolute;\n flex-shrink:0;\n block-size:1rem;\n inline-size:1rem;\n inset-block-start:min((var(--cds-layout-size-height-local) - 1rem) / 2 - 0.0625rem, var(--temp-padding-block-max));\n inset-inline-end:var(--cds-layout-density-padding-inline-local);\n margin-block-start:0.0625rem;\n}\n:host .cds--btn::-moz-focus-inner{\n padding:0;\n border:0;\n}\n:host .cds--btn--primary{\n border-width:1px;\n border-style:solid;\n border-color:transparent;\n background-color:var(--cds-button-primary, #0f62fe);\n color:var(--cds-text-on-color, #ffffff);\n}\n:host .cds--btn--primary:hover{\n background-color:var(--cds-button-primary-hover, #0050e6);\n}\n:host .cds--btn--primary:focus{\n border-color:var(--cds-button-focus-color, var(--cds-focus, #0f62fe));\n box-shadow:inset 0 0 0 1px var(--cds-button-focus-color, var(--cds-focus, #0f62fe)), inset 0 0 0 2px var(--cds-background, #ffffff);\n}\n:host .cds--btn--primary:active{\n background-color:var(--cds-button-primary-active, #002d9c);\n}\n:host .cds--btn--primary .cds--btn__icon,\n:host .cds--btn--primary .cds--btn__icon path:not([data-icon-path]):not([fill=none]){\n fill:currentColor;\n}\n:host .cds--btn--primary:hover{\n color:var(--cds-text-on-color, #ffffff);\n}\n:host .cds--btn--secondary{\n border-width:1px;\n border-style:solid;\n border-color:transparent;\n background-color:var(--cds-button-secondary, #393939);\n color:var(--cds-text-on-color, #ffffff);\n}\n:host .cds--btn--secondary:hover{\n background-color:var(--cds-button-secondary-hover, #474747);\n}\n:host .cds--btn--secondary:focus{\n border-color:var(--cds-button-focus-color, var(--cds-focus, #0f62fe));\n box-shadow:inset 0 0 0 1px var(--cds-button-focus-color, var(--cds-focus, #0f62fe)), inset 0 0 0 2px var(--cds-background, #ffffff);\n}\n:host .cds--btn--secondary:active{\n background-color:var(--cds-button-secondary-active, #6f6f6f);\n}\n:host .cds--btn--secondary .cds--btn__icon,\n:host .cds--btn--secondary .cds--btn__icon path:not([data-icon-path]):not([fill=none]){\n fill:currentColor;\n}\n:host .cds--btn--secondary:hover, :host .cds--btn--secondary:focus{\n color:var(--cds-text-on-color, #ffffff);\n}\n:host .cds--btn--tertiary{\n border-width:1px;\n border-style:solid;\n border-color:var(--cds-button-tertiary, #0f62fe);\n background-color:transparent;\n color:var(--cds-button-tertiary, #0f62fe);\n}\n:host .cds--btn--tertiary:hover{\n background-color:var(--cds-button-tertiary-hover, #0050e6);\n}\n:host .cds--btn--tertiary:focus{\n border-color:var(--cds-button-focus-color, var(--cds-focus, #0f62fe));\n box-shadow:inset 0 0 0 1px var(--cds-button-focus-color, var(--cds-focus, #0f62fe)), inset 0 0 0 2px var(--cds-background, #ffffff);\n}\n:host .cds--btn--tertiary:active{\n background-color:var(--cds-button-tertiary-active, #002d9c);\n}\n:host .cds--btn--tertiary .cds--btn__icon,\n:host .cds--btn--tertiary .cds--btn__icon path:not([data-icon-path]):not([fill=none]){\n fill:currentColor;\n}\n:host .cds--btn--tertiary:hover{\n color:var(--cds-text-inverse, #ffffff);\n}\n:host .cds--btn--tertiary:focus{\n background-color:var(--cds-button-tertiary, #0f62fe);\n color:var(--cds-text-inverse, #ffffff);\n}\n:host .cds--btn--tertiary:active{\n border-color:transparent;\n background-color:var(--cds-button-tertiary-active, #002d9c);\n color:var(--cds-text-inverse, #ffffff);\n}\n:host .cds--btn--tertiary:disabled, :host .cds--btn--tertiary:hover:disabled, :host .cds--btn--tertiary:focus:disabled, :host .cds--btn--tertiary.cds--btn--disabled, :host .cds--btn--tertiary.cds--btn--disabled:hover, :host .cds--btn--tertiary.cds--btn--disabled:focus{\n background:transparent;\n color:var(--cds-text-disabled, rgba(22, 22, 22, 0.25));\n outline:none;\n}\n:host .cds--btn--ghost{\n border-width:1px;\n border-style:solid;\n border-color:transparent;\n background-color:transparent;\n color:var(--cds-link-primary, #0f62fe);\n}\n:host .cds--btn--ghost:hover{\n background-color:var(--cds-background-hover, rgba(141, 141, 141, 0.12));\n}\n:host .cds--btn--ghost:focus{\n border-color:var(--cds-button-focus-color, var(--cds-focus, #0f62fe));\n box-shadow:inset 0 0 0 1px var(--cds-button-focus-color, var(--cds-focus, #0f62fe)), inset 0 0 0 2px var(--cds-background, #ffffff);\n}\n:host .cds--btn--ghost:active{\n background-color:var(--cds-background-active, rgba(141, 141, 141, 0.5));\n}\n:host .cds--btn--ghost .cds--btn__icon,\n:host .cds--btn--ghost .cds--btn__icon path:not([data-icon-path]):not([fill=none]){\n fill:currentColor;\n}\n:host .cds--btn--ghost{\n padding-inline-end:calc(var(--cds-layout-density-padding-inline-local) - 0.0625rem);\n}\n:host .cds--btn--ghost .cds--btn__icon{\n position:static;\n align-self:center;\n margin-inline-start:0.5rem;\n}\n:host .cds--btn--ghost:hover, :host .cds--btn--ghost:active{\n color:var(--cds-link-primary-hover, #0043ce);\n}\n:host .cds--btn--ghost:active{\n background-color:var(--cds-background-active, rgba(141, 141, 141, 0.5));\n}\n:host .cds--btn--ghost:disabled, :host .cds--btn--ghost:hover:disabled, :host .cds--btn--ghost:focus:disabled, :host .cds--btn--ghost.cds--btn--disabled, :host .cds--btn--ghost.cds--btn--disabled:hover, :host .cds--btn--ghost.cds--btn--disabled:focus{\n border-color:transparent;\n background:transparent;\n color:var(--cds-text-disabled, rgba(22, 22, 22, 0.25));\n outline:none;\n}\n:host .cds--btn--ghost:not([disabled]) svg{\n fill:var(--cds-icon-primary, #161616);\n}\n:host .cds--btn--icon-only{\n align-items:center;\n justify-content:center;\n padding:0;\n block-size:var(--cds-layout-size-height-local);\n inline-size:var(--cds-layout-size-height-local);\n padding-block-start:0;\n}\n:host .cds--btn--icon-only > :first-child{\n min-inline-size:1rem;\n}\n:host .cds--btn--icon-only .cds--btn__icon{\n position:static;\n}\n:host .cds--btn--icon-only.cds--btn--ghost:focus{\n background-color:var(--cds-background-active, rgba(141, 141, 141, 0.5));\n box-shadow:inset 0 0 0 1px var(--cds-button-focus-color, var(--cds-focus, #0f62fe));\n}\n:host .cds--btn--icon-only.cds--btn--ghost .cds--btn__icon, :host .cds--btn--icon-only.cds--btn--danger--ghost .cds--btn__icon{\n margin:0;\n}\n:host .cds--btn--icon-only.cds--btn--danger--ghost{\n padding-inline-end:calc(var(--cds-layout-density-padding-inline-local) - 1rem);\n}\n:host .cds--btn--xs:not(.cds--btn--icon-only){\n padding-block-start:1.5px;\n}\n:host .cds--btn--xs:not(.cds--btn--icon-only) .cds--btn__icon,\n:host .cds--btn--sm:not(.cds--btn--icon-only) .cds--btn__icon,\n:host .cds--btn--md:not(.cds--btn--icon-only) .cds--btn__icon{\n margin-block-start:0;\n}\n:host .cds--btn--icon-only.cds--btn--selected{\n background:var(--cds-background-selected, rgba(141, 141, 141, 0.2));\n}\n:host .cds--btn path[data-icon-path=inner-path]{\n fill:none;\n}\n:host .cds--btn--ghost.cds--btn--icon-only .cds--btn__icon path:not([data-icon-path]):not([fill=none]),\n:host .cds--btn--ghost.cds--btn--icon-only .cds--btn__icon{\n fill:var(--cds-icon-primary, #161616);\n}\n:host .cds--btn--ghost.cds--btn--icon-only[disabled] .cds--btn__icon path:not([data-icon-path]):not([fill=none]),\n:host .cds--btn--ghost.cds--btn--icon-only[disabled] .cds--btn__icon,\n:host .cds--btn.cds--btn--icon-only.cds--btn--ghost[disabled]:hover .cds--btn__icon{\n fill:var(--cds-icon-on-color-disabled, #8d8d8d);\n}\n:host .cds--btn--ghost.cds--btn--icon-only[disabled]{\n cursor:not-allowed;\n}\n:host .cds--icon-tooltip--disabled .cds--tooltip-trigger__wrapper{\n cursor:not-allowed;\n}\n:host .cds--icon-tooltip--disabled .cds--btn--icon-only[disabled]{\n pointer-events:none;\n}\n:host .cds--btn--danger{\n border-width:1px;\n border-style:solid;\n border-color:transparent;\n background-color:var(--cds-button-danger-primary, #da1e28);\n color:var(--cds-text-on-color, #ffffff);\n}\n:host .cds--btn--danger:hover{\n background-color:var(--cds-button-danger-hover, #b81921);\n}\n:host .cds--btn--danger:focus{\n border-color:var(--cds-button-focus-color, var(--cds-focus, #0f62fe));\n box-shadow:inset 0 0 0 1px var(--cds-button-focus-color, var(--cds-focus, #0f62fe)), inset 0 0 0 2px var(--cds-background, #ffffff);\n}\n:host .cds--btn--danger:active{\n background-color:var(--cds-button-danger-active, #750e13);\n}\n:host .cds--btn--danger .cds--btn__icon,\n:host .cds--btn--danger .cds--btn__icon path:not([data-icon-path]):not([fill=none]){\n fill:currentColor;\n}\n:host .cds--btn--danger:hover{\n color:var(--cds-text-on-color, #ffffff);\n}\n:host .cds--btn--danger--tertiary{\n border-width:1px;\n border-style:solid;\n border-color:var(--cds-button-danger-secondary, #da1e28);\n background-color:transparent;\n color:var(--cds-button-danger-secondary, #da1e28);\n}\n:host .cds--btn--danger--tertiary:hover{\n background-color:var(--cds-button-danger-hover, #b81921);\n}\n:host .cds--btn--danger--tertiary:focus{\n border-color:var(--cds-button-focus-color, var(--cds-focus, #0f62fe));\n box-shadow:inset 0 0 0 1px var(--cds-button-focus-color, var(--cds-focus, #0f62fe)), inset 0 0 0 2px var(--cds-background, #ffffff);\n}\n:host .cds--btn--danger--tertiary:active{\n background-color:var(--cds-button-danger-active, #750e13);\n}\n:host .cds--btn--danger--tertiary .cds--btn__icon,\n:host .cds--btn--danger--tertiary .cds--btn__icon path:not([data-icon-path]):not([fill=none]){\n fill:currentColor;\n}\n:host .cds--btn--danger--tertiary:hover{\n border-color:var(--cds-button-danger-hover, #b81921);\n color:var(--cds-text-on-color, #ffffff);\n}\n:host .cds--btn--danger--tertiary:focus{\n background-color:var(--cds-button-danger-primary, #da1e28);\n color:var(--cds-text-on-color, #ffffff);\n}\n:host .cds--btn--danger--tertiary:active{\n border-color:var(--cds-button-danger-active, #750e13);\n background-color:var(--cds-button-danger-active, #750e13);\n color:var(--cds-text-on-color, #ffffff);\n}\n:host .cds--btn--danger--tertiary:disabled, :host .cds--btn--danger--tertiary:hover:disabled, :host .cds--btn--danger--tertiary:focus:disabled, :host .cds--btn--danger--tertiary.cds--btn--disabled, :host .cds--btn--danger--tertiary.cds--btn--disabled:hover, :host .cds--btn--danger--tertiary.cds--btn--disabled:focus{\n background:transparent;\n color:var(--cds-text-disabled, rgba(22, 22, 22, 0.25));\n outline:none;\n}\n:host .cds--btn--danger--ghost{\n border-width:1px;\n border-style:solid;\n border-color:transparent;\n background-color:transparent;\n color:var(--cds-button-danger-secondary, #da1e28);\n}\n:host .cds--btn--danger--ghost:hover{\n background-color:var(--cds-button-danger-hover, #b81921);\n}\n:host .cds--btn--danger--ghost:focus{\n border-color:var(--cds-button-focus-color, var(--cds-focus, #0f62fe));\n box-shadow:inset 0 0 0 1px var(--cds-button-focus-color, var(--cds-focus, #0f62fe)), inset 0 0 0 2px var(--cds-background, #ffffff);\n}\n:host .cds--btn--danger--ghost:active{\n background-color:var(--cds-button-danger-active, #750e13);\n}\n:host .cds--btn--danger--ghost .cds--btn__icon,\n:host .cds--btn--danger--ghost .cds--btn__icon path:not([data-icon-path]):not([fill=none]){\n fill:currentColor;\n}\n:host .cds--btn--danger--ghost{\n padding-inline-end:calc(var(--cds-layout-density-padding-inline-local) - 0.0625rem);\n}\n:host .cds--btn--danger--ghost .cds--btn__icon{\n position:static;\n margin-inline-start:0.5rem;\n}\n:host .cds--btn--danger--ghost:hover, :host .cds--btn--danger--ghost:active{\n color:var(--cds-text-on-color, #ffffff);\n}\n:host .cds--btn--danger--ghost:disabled, :host .cds--btn--danger--ghost:hover:disabled, :host .cds--btn--danger--ghost:focus:disabled, :host .cds--btn--danger--ghost.cds--btn--disabled, :host .cds--btn--danger--ghost.cds--btn--disabled:hover, :host .cds--btn--danger--ghost.cds--btn--disabled:focus{\n border-color:transparent;\n background:transparent;\n color:var(--cds-text-disabled, rgba(22, 22, 22, 0.25));\n outline:none;\n}\n:host .cds--btn--expressive{\n font-size:var(--cds-body-compact-02-font-size, 1rem);\n font-weight:var(--cds-body-compact-02-font-weight, 400);\n line-height:var(--cds-body-compact-02-line-height, 1.375);\n letter-spacing:var(--cds-body-compact-02-letter-spacing, 0);\n padding-block:min((var(--cds-layout-size-height-local) - var(--temp-expressive-1lh)) / 2 - 0.0625rem, var(--temp-padding-block-max));\n}\n:host .cds--btn--icon-only.cds--btn--expressive{\n padding:12px 13px;\n}\n:host .cds--btn.cds--btn--expressive .cds--btn__icon{\n block-size:1.25rem;\n inline-size:1.25rem;\n}\n:host .cds--btn-set .cds--btn.cds--btn--expressive{\n max-inline-size:20rem;\n}\n:host .cds--btn.cds--skeleton{\n position:relative;\n padding:0;\n border:none;\n background:var(--cds-skeleton-background, #e8e8e8);\n box-shadow:none;\n pointer-events:none;\n}\n:host .cds--btn.cds--skeleton:hover, :host .cds--btn.cds--skeleton:focus, :host .cds--btn.cds--skeleton:active{\n border:none;\n cursor:default;\n outline:none;\n}\n:host .cds--btn.cds--skeleton::before{\n position:absolute;\n animation:3000ms ease-in-out cds--skeleton infinite;\n background:var(--cds-skeleton-element, #c6c6c6);\n block-size:100%;\n content:\"\";\n inline-size:100%;\n inset-inline-start:0;\n will-change:transform-origin, transform, opacity;\n}\n@media (prefers-reduced-motion: reduce){\n :host .cds--btn.cds--skeleton::before{\n animation:none;\n }\n}\n@media screen and (-ms-high-contrast: active), (forced-colors: active){\n :host .cds--btn.cds--skeleton{\n background:CanvasText;\n }\n :host .cds--btn.cds--skeleton::before{\n background:Canvas;\n forced-color-adjust:none;\n }\n}\n:host .cds--btn.cds--skeleton{\n inline-size:9.375rem;\n}\n:host .cds--btn-set{\n display:flex;\n}\n:host .cds--btn-set--stacked{\n flex-direction:column;\n}\n:host .cds--btn-set .cds--btn{\n inline-size:100%;\n max-inline-size:12.25rem;\n}\n:host .cds--btn-set .cds--btn:not(:focus){\n box-shadow:-0.0625rem 0 0 0 var(--cds-button-separator, #e0e0e0);\n}\n:host .cds--btn-set .cds--btn:first-of-type:not(:focus){\n box-shadow:inherit;\n}\n:host .cds--btn-set .cds--btn:focus + .cds--btn{\n box-shadow:inherit;\n}\n:host .cds--btn-set--stacked .cds--btn:not(:focus){\n box-shadow:0 -0.0625rem 0 0 var(--cds-button-separator, #e0e0e0);\n}\n:host .cds--btn-set--stacked .cds--btn:first-of-type:not(:focus){\n box-shadow:inherit;\n}\n:host .cds--btn-set .cds--btn.cds--btn--disabled{\n box-shadow:-0.0625rem 0 0 0 var(--cds-icon-on-color-disabled, #8d8d8d);\n}\n:host .cds--btn-set .cds--btn.cds--btn--disabled:first-of-type{\n box-shadow:none;\n}\n:host .cds--btn-set--stacked .cds--btn.cds--btn--disabled{\n box-shadow:0 -0.0625rem 0 0 var(--cds-layer-selected-disabled, #8d8d8d);\n}\n:host .cds--btn-set--stacked .cds--btn.cds--btn--disabled:first-of-type{\n box-shadow:none;\n}\n:host .cds--btn-set .cds--btn.cds--btn--loading{\n border-color:transparent;\n background-color:transparent;\n box-shadow:none;\n}\n:host .cds--btn--sm .cds--badge-indicator{\n margin-block-start:0.25rem;\n margin-inline-end:0.25rem;\n}\n@media screen and (-ms-high-contrast: active), (forced-colors: active){\n :host .cds--btn:focus{\n color:Highlight;\n outline:1px solid Highlight;\n }\n}\n:host [dir=rtl] .cds--btn-set .cds--btn:not(:focus){\n box-shadow:0.0625rem 0 0 0 var(--cds-button-separator, #e0e0e0);\n}\n:host .cds--btn-set--fluid{\n container-type:inline-size;\n}\n:host .cds--btn-set--fluid .cds--btn-set__fluid-inner{\n --flex-direction:row;\n display:flex;\n flex-direction:var(--flex-direction);\n align-items:stretch;\n justify-content:flex-end;\n inline-size:100%;\n}\n:host .cds--btn-set--fluid .cds--btn-set__fluid-inner .cds--btn{\n flex:0 1 25%;\n max-inline-size:14.5rem;\n}\n:host .cds--btn-set--fluid .cds--btn-set__fluid-inner--auto-stack .cds--btn{\n min-inline-size:11rem;\n}\n:host .cds--btn-set--fluid .cds--btn-set__fluid-inner .cds--btn--ghost,\n:host .cds--btn-set--fluid .cds--btn-set__fluid-inner .cds--btn--danger--ghost{\n flex:1 1 25%;\n max-inline-size:none;\n padding-inline-start:2rem;\n}\n@container (width <= 11rem){\n :host .cds--btn-set--fluid .cds--btn-set__fluid-inner--auto-stack:has(:nth-child(1):last-child){\n --flex-direction:column;\n }\n :host .cds--btn-set--fluid .cds--btn-set__fluid-inner--auto-stack:has(:nth-child(1):last-child) .cds--btn{\n flex:initial;\n inline-size:100%;\n max-inline-size:none;\n }\n :host .cds--btn-set--fluid .cds--btn-set__fluid-inner--auto-stack:has(:nth-child(1):last-child) .cds--btn--ghost{\n padding-inline-start:1rem;\n }\n}\n@container (width <= 22rem){\n :host .cds--btn-set--fluid .cds--btn-set__fluid-inner--auto-stack:has(:nth-child(2):last-child){\n --flex-direction:column;\n }\n :host .cds--btn-set--fluid .cds--btn-set__fluid-inner--auto-stack:has(:nth-child(2):last-child) .cds--btn{\n flex:initial;\n inline-size:100%;\n max-inline-size:none;\n }\n :host .cds--btn-set--fluid .cds--btn-set__fluid-inner--auto-stack:has(:nth-child(2):last-child) .cds--btn--ghost{\n padding-inline-start:1rem;\n }\n}\n@container (width <= 33rem){\n :host .cds--btn-set--fluid .cds--btn-set__fluid-inner--auto-stack:has(:nth-child(3):last-child){\n --flex-direction:column;\n }\n :host .cds--btn-set--fluid .cds--btn-set__fluid-inner--auto-stack:has(:nth-child(3):last-child) .cds--btn{\n flex:initial;\n inline-size:100%;\n max-inline-size:none;\n }\n :host .cds--btn-set--fluid .cds--btn-set__fluid-inner--auto-stack:has(:nth-child(3):last-child) .cds--btn--ghost{\n padding-inline-start:1rem;\n }\n}\n@container (width <= 44rem){\n :host .cds--btn-set--fluid .cds--btn-set__fluid-inner--auto-stack:has(:nth-child(4):last-child){\n --flex-direction:column;\n }\n :host .cds--btn-set--fluid .cds--btn-set__fluid-inner--auto-stack:has(:nth-child(4):last-child) .cds--btn{\n flex:initial;\n inline-size:100%;\n max-inline-size:none;\n }\n :host .cds--btn-set--fluid .cds--btn-set__fluid-inner--auto-stack:has(:nth-child(4):last-child) .cds--btn--ghost{\n padding-inline-start:1rem;\n }\n}\n@container (width <= 44rem){\n :host .cds--btn-set--fluid .cds--btn-set__fluid-inner:has(:nth-child(2):last-child) .cds--btn{\n flex-basis:50%;\n max-inline-size:none;\n }\n}\n@container (width <= 33rem){\n :host .cds--btn-set--fluid .cds--btn-set__fluid-inner:has(:nth-child(1):last-child) .cds--btn{\n flex:1 1 100%;\n max-inline-size:none;\n }\n}\n:host .cds-aichat--response-user-avatar img{\n block-size:100%;\n inline-size:100%;\n}\n:host .cds-aichat--response-user-avatar svg{\n fill:currentcolor;\n}\n:host .cds-aichat--response-user-avatar .cds-aichat--response-user-avatar__circle{\n border:2px solid currentcolor;\n border-radius:50%;\n background-color:transparent;\n font-weight:bold;\n}\n:host .cds-aichat--response-user-avatar .cds-aichat--response-user-avatar__circle .cds-aichat--response-user-avatar__letter{\n display:flex;\n align-items:center;\n justify-content:center;\n block-size:100%;\n text-align:center;\n}\n:host{\n}\n:host .cds-aichat--human-agent-banner__body{\n display:flex;\n align-items:center;\n padding:1rem;\n background-color:var(--cds-chat-shell-background, #ffffff);\n border-block-end:1px solid var(--cds-border-subtle-01, #c6c6c6);\n font-size:var(--cds-body-01-font-size, 0.875rem);\n font-weight:var(--cds-body-01-font-weight, 400);\n line-height:var(--cds-body-01-line-height, 1.42857);\n letter-spacing:var(--cds-body-01-letter-spacing, 0.16px);\n}\n:host .cds-aichat--widget--max-width .cds-aichat--human-agent-banner__body{\n margin:0 auto;\n max-inline-size:var(--cds-aichat-messages-max-width, 672px);\n}\n:host .cds-aichat--human-agent-banner .cds-aichat--response-user-avatar{\n margin:0 0.75rem 0 0;\n block-size:32px;\n inline-size:32px;\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--human-agent-banner .cds-aichat--response-user-avatar{\n margin:0 0 0 0.75rem;\n}\n:host .cds-aichat--human-agent-banner .cds-aichat--response-user-avatar img{\n border-radius:16px;\n}\n:host .cds-aichat--human-agent-banner__human-agent-info{\n display:flex;\n flex:1;\n flex-direction:column;\n justify-content:center;\n padding:0 1rem 0 0;\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--human-agent-banner__human-agent-info{\n padding:0 0 0 1rem;\n}\n:host .cds-aichat--human-agent-banner__human-agent-line1{\n font-weight:600;\n}\n:host .cds-aichat--human-agent-banner--connected .cds-aichat--agent-banner__agent-line1{\n font-size:var(--cds-body-02-font-size, 1rem);\n font-weight:var(--cds-body-02-font-weight, 400);\n line-height:var(--cds-body-02-line-height, 1.5);\n letter-spacing:var(--cds-body-02-letter-spacing, 0);\n}\n:host .cds-aichat--human-agent-banner__human-agent-line2{\n padding-block-start:0.25rem;\n}\n:host .cds-aichat--human-agent-banner__human-agent-line2,\n:host .cds-aichat--human-agent-banner__human-agent-line2 p{\n font-size:var(--cds-body-01-font-size, 0.875rem);\n font-weight:var(--cds-body-01-font-weight, 400);\n line-height:var(--cds-body-01-line-height, 1.42857);\n letter-spacing:var(--cds-body-01-letter-spacing, 0.16px);\n}\n:host .cds-aichat--agent-banner__stop-sharing-button{\n inline-size:100%;\n max-inline-size:unset;\n}\n:host{\n}\n:host .cds-aichat--input-and-completions{\n position:relative;\n border-end-end-radius:var(--cds-aichat-border-radius-end-end, 0);\n border-end-start-radius:var(--cds-aichat-border-radius-end-start, 0);\n inline-size:100%;\n}\n:host .cds-aichat--input-container{\n position:relative;\n z-index:1;\n display:flex;\n box-sizing:border-box;\n align-items:center;\n background-color:var(--cds-chat-prompt-background, #ffffff);\n border-block-start:1px solid var(--cds-border-subtle-01, #c6c6c6);\n border-end-end-radius:var(--cds-aichat-border-radius-end-end, 0);\n border-end-start-radius:var(--cds-aichat-border-radius-end-start, 0);\n color:var(--cds-text-primary, #161616);\n inline-size:100%;\n min-block-size:0;\n outline:2px solid transparent;\n outline-offset:-2px;\n padding-block:0.75rem;\n padding-inline:1rem 0.5rem;\n}\n:host .cds-aichat--container--render.cds-aichat--container-disable-mobile-enhancements .cds-aichat--widget--max-width .cds-aichat--input-and-completions,\n:host .cds-aichat--container--render:not(.cds-aichat--is-phone-portrait-mode) .cds-aichat--widget--max-width .cds-aichat--input-and-completions{\n margin:0 auto;\n max-inline-size:var(--cds-aichat-messages-max-width, 672px);\n}\n:host .cds-aichat--container--render.cds-aichat--container-disable-mobile-enhancements .cds-aichat--widget--max-width .cds-aichat--input-container,\n:host .cds-aichat--container--render:not(.cds-aichat--is-phone-portrait-mode) .cds-aichat--widget--max-width .cds-aichat--input-container{\n border:1px solid var(--cds-border-subtle-00, #e0e0e0);\n border-radius:0.5rem;\n}\n:host .cds-aichat--ai-theme .cds-aichat--input-container{\n border:1px solid transparent;\n background:linear-gradient(to bottom, var(--cds-chat-prompt-background, #ffffff), var(--cds-chat-prompt-background, #ffffff)) padding-box, linear-gradient(to bottom, var(--cds-border-subtle-00, #e0e0e0), var(--cds-chat-prompt-background, #ffffff)) border-box;\n}\n:host .cds-aichat--input-container--show-upload-button{\n padding-inline-start:0.5rem;\n}\n:host .cds-aichat--input-container__text-and-upload{\n display:flex;\n align-items:center;\n}\n:host .cds-aichat--input-container__text-and-upload > *:not(:last-child),\n:host .cds-aichat--input-container > *:not(:last-child){\n margin-inline-end:0.5rem;\n}\n:host .cds-aichat--input-container__files-container{\n overflow:auto;\n margin-block-start:0.5rem;\n max-block-size:200px;\n}\n:host .cds-aichat--input-container__files-container cds-file-uploader-item{\n margin-block-end:0;\n}\n:host .cds-aichat--input-container__upload-button-container{\n display:inline-block;\n inline-size:32px;\n vertical-align:top;\n}\n:host .cds-aichat--input-container .cds-aichat--input-container__upload-button{\n display:flex;\n align-items:center;\n justify-content:center;\n block-size:32px;\n color:var(--cds-text-primary, #161616);\n cursor:pointer;\n inline-size:32px;\n}\n:host .cds-aichat--input-container__upload-input:focus + .cds-aichat--input-container__upload-button{\n box-shadow:inset 0 0 0 2px var(--cds-focus, #0f62fe);\n}\n:host .cds-aichat--input-container__upload-button:hover{\n background-color:var(--cds-background-hover, rgba(141, 141, 141, 0.12));\n}\n:host .cds-aichat--input-container__upload-button:active{\n background-color:var(--cds-background-active, rgba(141, 141, 141, 0.5));\n}\n:host .cds-aichat--input-container .cds-aichat--input-container__upload-button--disabled{\n cursor:default;\n opacity:0.5;\n}\n:host label.cds-aichat--input-container__upload-button--disabled:hover{\n background-color:transparent;\n}\n:host .cds-aichat--input-container__left-container{\n position:relative;\n display:flex;\n overflow:hidden;\n flex:1 0;\n flex-direction:column;\n justify-content:center;\n block-size:100%;\n}\n:host .cds-aichat--input-container--has-focus{\n outline-color:var(--cds-focus, #0f62fe);\n}\n:host .cds-aichat--input-container .cds-aichat--input-container__left-container .cds-aichat--text-area .cds-aichat--text-area-textarea{\n border:none;\n}\n:host .cds-aichat--assistant-container .cds-aichat--input-container{\n display:flex;\n}\n:host .cds-aichat--input-container .cds-aichat--text-area{\n display:inline-block;\n overflow:hidden;\n font-size:var(--cds-body-01-font-size, 0.875rem);\n font-weight:var(--cds-body-01-font-weight, 400);\n line-height:var(--cds-body-01-line-height, 1.42857);\n letter-spacing:var(--cds-body-01-letter-spacing, 0.16px);\n inline-size:100%;\n min-block-size:0;\n}\n:host .cds-aichat--input-container--show-upload-button .cds-aichat--text-area{\n inline-size:calc(100% - 32px);\n}\n:host .cds-aichat--input-container .cds-aichat--text-area .cds-aichat--text-area-textarea{\n position:relative;\n display:block;\n border:none;\n margin:0;\n background:transparent;\n color:var(--cds-text-primary, #161616);\n}\n:host .cds-aichat--input-container .cds-aichat--text-area .cds-aichat--text-area-textarea,\n:host .cds-aichat--input-container .cds-aichat--text-area .cds-aichat--text-area-sizer{\n max-block-size:157px;\n}\n:host .cds-aichat--input-container .cds-aichat--text-area-placeholder{\n position:absolute;\n z-index:1;\n color:var(--cds-text-placeholder, rgba(22, 22, 22, 0.4));\n inset:0;\n pointer-events:none;\n white-space:pre-wrap;\n word-wrap:break-word;\n font-size:var(--cds-body-02-font-size, 1rem);\n font-weight:var(--cds-body-02-font-weight, 400);\n line-height:var(--cds-body-02-line-height, 1.5);\n letter-spacing:var(--cds-body-02-letter-spacing, 0);\n}\n:host .cds-aichat--input-container .cds-aichat--text-area-textarea{\n position:relative;\n z-index:2;\n}\n:host .cds-aichat--input-container__send-button-container,\n:host .cds-aichat--input-container__upload-button-container{\n display:flex;\n flex:0 1;\n align-self:flex-start;\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--input-container__send-button svg{\n transform:scale(-1, 1);\n}\n:host cds-button.cds-aichat--input-container__send-button svg{\n block-size:1rem;\n cursor:inherit;\n fill:var(--cds-interactive, #0f62fe);\n inline-size:1rem;\n}\n:host cds-button.cds-aichat--input-container__send-button:active svg,\n:host cds-button.cds-aichat--input-container__send-button:focus svg,\n:host cds-button.cds-aichat--input-container__send-button:active:focus svg{\n fill:var(--cds-interactive, #0f62fe);\n}\n:host cds-button.cds-aichat--input-container__send-button[disabled]:hover svg,\n:host cds-button.cds-aichat--input-container__send-button[disabled] svg{\n fill:var(--cds-icon-disabled, rgba(22, 22, 22, 0.25));\n}\n:host .cds-aichat--before-input-element{\n margin:auto;\n max-inline-size:var(--cds-aichat-messages-max-width, 672px);\n}\n:host{\n}\n:host .cds-aichat--launcher__button-container{\n position:fixed;\n z-index:var(--cds-aichat-z-index, 99999);\n border-radius:28px;\n background-color:var(--cds-background, #ffffff);\n block-size:var(--cds-aichat-launcher-default-size, 56px);\n box-shadow:var(--cds-aichat-box-shadow, 1px 0 4px hsla(0, 0%, 9%, 0.3));\n inline-size:var(--cds-aichat-launcher-default-size, 56px);\n inset-block-end:var(--cds-aichat-launcher-position-bottom, 3rem);\n inset-inline-end:var(--cds-aichat-launcher-position-right, 2rem);\n}\n@media (prefers-reduced-motion: no-preference){\n :host .cds-aichat--launcher__button-container{\n animation:cds-aichat-launcher-in 150ms cubic-bezier(0, 0, 0.3, 1) both;\n transition:inline-size 240ms cubic-bezier(0.2, 0, 0.38, 0.9);\n }\n}\n:host .cds-aichat--launcher__button-container--hidden{\n visibility:hidden;\n}\n:host .cds-aichat--count-indicator{\n position:absolute;\n display:flex;\n align-items:center;\n justify-content:center;\n padding:0 4px;\n border-radius:10px;\n background-color:var(--cds-aichat-unread-indicator-color-background, var(--cds-support-error, #da1e28));\n box-shadow:1px 0.125rem 0.125rem rgba(23, 23, 23, 0.3);\n color:var(--cds-aichat-unread-indicator-color-text, var(--cds-text-on-color, #ffffff));\n inset-block-start:calc(-1 * 0.25rem);\n inset-inline-end:calc(-1 * 0.25rem);\n min-block-size:20px;\n min-inline-size:20px;\n font-size:var(--cds-caption-01-font-size, 0.75rem);\n font-weight:var(--cds-caption-01-font-weight, 400);\n line-height:var(--cds-caption-01-line-height, 1.33333);\n letter-spacing:var(--cds-caption-01-letter-spacing, 0.32px);\n}\n:host cds-button.cds-aichat--launcher__button::part(button){\n position:static;\n display:flex;\n align-items:center;\n justify-content:center;\n padding:0;\n border-radius:28px;\n background-color:var(--cds-aichat-launcher-color-background, var(--cds-button-primary, #0f62fe));\n block-size:var(--cds-aichat-launcher-default-size, 56px);\n inline-size:var(--cds-aichat-launcher-default-size, 56px);\n}\n@media (prefers-reduced-motion: no-preference){\n :host cds-button.cds-aichat--launcher__button::part(button){\n transition:inline-size 240ms cubic-bezier(0.2, 0, 0.38, 0.9), background 250ms ease-in-out, transform 150ms ease;\n }\n}\n:host cds-button.cds-aichat--launcher__button::part(button) svg{\n block-size:24px;\n fill:var(--cds-aichat-launcher-color-avatar, var(--cds-text-on-color, #ffffff));\n inline-size:24px;\n}\n:host cds-button.cds-aichat--launcher__button::part(button):focus{\n border-width:2px;\n box-shadow:inset 0 0 0 2px var(--cds-aichat-launcher-color-focus-border, var(--cds-text-on-color, #ffffff));\n}\n:host .cds-aichat--launcher__svg{\n fill:currentcolor;\n}\n:host .cds-aichat--launcher__avatar{\n border-radius:50%;\n block-size:32px;\n inline-size:32px;\n -webkit-user-select:none;\n -moz-user-select:none;\n user-select:none;\n}\n:host .cds-aichat--launcher__wrapper{\n display:flex;\n}\n:host .cds-aichat--launcher__icon-holder{\n display:flex;\n align-items:center;\n}\n:host .cds-aichat--launcher-extended__text-holder{\n overflow:hidden;\n flex:1;\n padding:0.75rem 0 0.75rem 0.75rem;\n inline-size:0;\n text-align:start;\n}\n:host .cds-aichat--launcher-extended__greeting{\n display:flex;\n align-items:center;\n block-size:100%;\n color:var(--cds-aichat-launcher-mobile-color-text, var(--cds-text-on-color, #ffffff));\n inline-size:calc(100% - 12px);\n inset-block-end:0;\n opacity:0;\n word-break:break-word;\n font-size:var(--cds-body-01-font-size, 0.875rem);\n font-weight:var(--cds-body-01-font-weight, 400);\n line-height:var(--cds-body-01-line-height, 1.42857);\n letter-spacing:var(--cds-body-01-letter-spacing, 0.16px);\n}\n:host .cds-aichat--launcher-extended__greeting-text{\n display:-webkit-box;\n overflow:hidden;\n -webkit-box-orient:vertical;\n -webkit-line-clamp:2;\n line-clamp:2;\n text-overflow:ellipsis;\n}\n:host .cds-aichat--launcher__skip-link{\n position:absolute;\n overflow:hidden;\n padding:0;\n border:0;\n margin:-1px;\n block-size:1px;\n clip:rect(0 0 0 0);\n inline-size:1px;\n white-space:nowrap;\n}\n:host .cds-aichat--launcher__skip-link:focus{\n position:static;\n padding:0.125rem 0.25rem;\n border-radius:999px;\n margin:0 0 0.25rem 0;\n background:var(--cds-background-inverse, #393939);\n block-size:auto;\n clip:auto;\n color:var(--cds-text-on-color, #ffffff);\n inline-size:auto;\n white-space:normal;\n}\n:host cds-button.cds-aichat--launcher-extended__close-button{\n position:absolute;\n z-index:2;\n inset-block-start:-24px;\n inset-inline-end:0;\n transform:translate(50%, 50%);\n}\n:host cds-button.cds-aichat--launcher-extended__close-button::part(button){\n padding:0;\n border-radius:50%;\n block-size:24px;\n inline-size:24px;\n}\n:host{\n}\n@keyframes cds-aichat-launcher-opening-text-holder{\n from{\n inline-size:0;\n }\n to{\n inline-size:var(--cds-aichat-launcher-extended-width, 280px);\n }\n}\n@keyframes cds-aichat-launcher-closing-text-holder{\n from{\n inline-size:var(--cds-aichat-launcher-extended-width, 280px);\n }\n to{\n inline-size:0;\n }\n}\n@keyframes cds-aichat-launcher-opening-greeting{\n from{\n opacity:0;\n }\n to{\n opacity:1;\n }\n}\n@keyframes cds-aichat-launcher-closing-greeting{\n from{\n opacity:1;\n }\n to{\n opacity:0;\n }\n}\n:host{\n}\n@media (prefers-reduced-motion: no-preference){\n :host .cds-aichat--launcher__button-container--opening .cds-aichat--launcher-extended__text-holder{\n animation:cds-aichat-launcher-opening-text-holder 240ms cubic-bezier(0.2, 0, 0.38, 0.9) forwards;\n }\n :host .cds-aichat--launcher__button-container--opening .cds-aichat--launcher-extended__greeting{\n animation:cds-aichat-launcher-opening-greeting 70ms cubic-bezier(0.2, 0, 0.38, 0.9) forwards;\n animation-delay:240ms;\n }\n}\n:host{\n}\n:host .cds-aichat--launcher__button-container--open .cds-aichat--launcher-extended__text-holder{\n inline-size:var(--cds-aichat-launcher-extended-width, 280px);\n}\n:host .cds-aichat--launcher__button-container--open .cds-aichat--launcher-extended__greeting{\n opacity:1;\n}\n:host{\n}\n@media (prefers-reduced-motion: no-preference){\n :host .cds-aichat--launcher__button-container--closing .cds-aichat--launcher-extended__greeting{\n animation:cds-aichat-launcher-closing-greeting 70ms cubic-bezier(0.2, 0, 0.38, 0.9) forwards;\n }\n :host .cds-aichat--launcher__button-container--closing .cds-aichat--launcher-extended__text-holder{\n animation:cds-aichat-launcher-closing-text-holder 240ms cubic-bezier(0.2, 0, 0.38, 0.9) forwards;\n animation-delay:70ms;\n }\n}\n:host{\n}\n:host .cds-aichat--launcher__button-container--closed .cds-aichat--launcher-extended__text-holder{\n display:none;\n inline-size:0;\n}\n:host .cds-aichat--launcher__button-container--closed .cds-aichat--launcher-extended__greeting{\n opacity:0;\n}\n:host .cds-aichat--launcher__button-container--closed .cds-aichat--launcher-extended__close-button{\n display:none;\n}\n:host{\n}\n:host .cds-aichat--launcher__button-container--opening,\n:host .cds-aichat--launcher__button-container--open{\n inline-size:calc(var(--cds-aichat-launcher-extended-width, 280px) + var(--cds-aichat-launcher-default-size, 56px));\n}\n:host .cds-aichat--launcher__button-container--opening cds-button.cds-aichat--launcher__button::part(button),\n:host .cds-aichat--launcher__button-container--open cds-button.cds-aichat--launcher__button::part(button){\n inline-size:calc(var(--cds-aichat-launcher-extended-width, 280px) + var(--cds-aichat-launcher-default-size, 56px));\n}\n:host{\n}\n:host .cds-aichat--launcher__button-container--closing,\n:host .cds-aichat--launcher__button-container--closed{\n inline-size:var(--cds-aichat-launcher-default-size, 56px);\n}\n:host .cds-aichat--launcher__button-container--closing cds-button.cds-aichat--launcher__button::part(button),\n:host .cds-aichat--launcher__button-container--closed cds-button.cds-aichat--launcher__button::part(button){\n inline-size:var(--cds-aichat-launcher-default-size, 56px);\n}\n:host [dir=rtl] .cds-aichat--count-indicator{\n inset-inline:calc(-1 * 0.125rem) unset;\n}\n:host [dir=rtl] cds-button.cds-aichat--launcher-extended__close-button{\n transform:translate(-50%, 50%);\n}\n:host [dir=rtl] .cds-aichat--launcher__button-container .cds-aichat--launcher-extended__wrapper{\n inset-inline:0 unset;\n}\n:host [dir=rtl] .cds-aichat--launcher__button-container .cds-aichat--launcher-extended__text-holder{\n padding:0.75rem 0.75rem 0.75rem 0;\n}\n@keyframes cds-aichat-launcher-in{\n 0%{\n inset-block-end:calc(var(--cds-aichat-launcher-position-bottom, 3rem) - 1rem);\n opacity:0;\n }\n 100%{\n inset-block-end:var(--cds-aichat-launcher-position-bottom, 3rem);\n opacity:1;\n }\n}\n:host{\n}\n:host .cds-aichat--max-width-small{\n max-inline-size:291px;\n}\n:host .cds-aichat--max-width-medium{\n max-inline-size:438px;\n}\n:host .cds-aichat--max-width-large{\n max-inline-size:585px;\n}\n:host{\n}\n:host .cds-aichat--connect-to-human-agent{\n max-inline-size:var(--cds-aichat-card-max-width, 424px);\n}\n:host .cds-aichat--connect-to-human-agent__title{\n font-size:var(--cds-heading-02-font-size, 1rem);\n font-weight:var(--cds-heading-02-font-weight, 600);\n line-height:var(--cds-heading-02-line-height, 1.5);\n letter-spacing:var(--cds-heading-02-letter-spacing, 0);\n padding-block-end:0.25rem;\n}\n:host .cds-aichat--connect-to-human-agent__text{\n padding-block-end:1.5rem;\n}\n:host .cds-aichat--connect-to-agent__text p,\n:host .cds-aichat--connect-to-human-agent__request-button svg{\n margin-inline-start:2rem;\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--connect-to-human-agent__request-button svg{\n margin-inline:0 2rem;\n transform:scaleX(-1);\n}\n:host .cds-aichat--message .cds-aichat--connect-to-human-agent__warning a,\n:host .cds-aichat--message .cds-aichat--connect-to-human-agent__warning a:visited{\n color:var(--cds-link-inverse, #78a9ff);\n}\n:host .cds-aichat--connect-to-human-agent__suspended-warning{\n color:var(--cds-support-error, #da1e28);\n padding-block-start:0.75rem;\n}\n:host{\n}\n:host .cds-aichat--card-message-component{\n overflow:hidden;\n padding:0;\n}\n:host{\n}\n:host .cds-aichat-preview-card__sm{\n max-inline-size:18.1875rem;\n}\n:host .cds-aichat-preview-card [slot=body]{\n padding:1rem;\n}\n:host .cds-aichat-preview-card [slot=body] .cds-aichat-preview-card--title{\n font-size:var(--cds-body-compact-02-font-size, 1rem);\n font-weight:var(--cds-body-compact-02-font-weight, 400);\n line-height:var(--cds-body-compact-02-line-height, 1.375);\n letter-spacing:var(--cds-body-compact-02-letter-spacing, 0);\n margin-block-end:0.125rem;\n}\n:host .cds-aichat-preview-card [slot=body] .cds-aichat-preview-card--subtitle{\n font-size:var(--cds-helper-text-01-font-size, 0.75rem);\n line-height:var(--cds-helper-text-01-line-height, 1.33333);\n letter-spacing:var(--cds-helper-text-01-letter-spacing, 0.32px);\n color:var(--cds-text-secondary, #525252);\n}\n:host{\n}\n:host :root{\n --swiper-theme-color:#007aff;\n}\n:host :host{\n position:relative;\n display:block;\n margin-left:auto;\n margin-right:auto;\n z-index:1;\n}\n:host .swiper{\n margin-left:auto;\n margin-right:auto;\n position:relative;\n overflow:hidden;\n list-style:none;\n padding:0;\n z-index:1;\n display:block;\n}\n:host .swiper-vertical > .swiper-wrapper{\n flex-direction:column;\n}\n:host .swiper-wrapper{\n position:relative;\n width:100%;\n height:100%;\n z-index:1;\n display:flex;\n transition-property:transform;\n transition-timing-function:var(--swiper-wrapper-transition-timing-function, initial);\n box-sizing:content-box;\n}\n:host .swiper-android .swiper-slide,\n:host .swiper-ios .swiper-slide,\n:host .swiper-wrapper{\n transform:translate3d(0px, 0, 0);\n}\n:host .swiper-horizontal{\n touch-action:pan-y;\n}\n:host .swiper-vertical{\n touch-action:pan-x;\n}\n:host .swiper-slide{\n flex-shrink:0;\n width:100%;\n height:100%;\n position:relative;\n transition-property:transform;\n display:block;\n}\n:host .swiper-slide-invisible-blank{\n visibility:hidden;\n}\n:host{\n}\n:host .swiper-autoheight,\n:host .swiper-autoheight .swiper-slide{\n height:auto;\n}\n:host .swiper-autoheight .swiper-wrapper{\n align-items:flex-start;\n transition-property:transform, height;\n}\n:host .swiper-backface-hidden .swiper-slide{\n transform:translateZ(0);\n backface-visibility:hidden;\n}\n:host{\n}\n:host .swiper-3d.swiper-css-mode .swiper-wrapper{\n perspective:1200px;\n}\n:host .swiper-3d .swiper-wrapper{\n transform-style:preserve-3d;\n}\n:host .swiper-3d{\n perspective:1200px;\n}\n:host .swiper-3d .swiper-slide,\n:host .swiper-3d .swiper-cube-shadow{\n transform-style:preserve-3d;\n}\n:host{\n}\n:host .swiper-css-mode > .swiper-wrapper{\n overflow:auto;\n scrollbar-width:none;\n -ms-overflow-style:none;\n}\n:host .swiper-css-mode > .swiper-wrapper::-webkit-scrollbar{\n display:none;\n}\n:host .swiper-css-mode > .swiper-wrapper > .swiper-slide{\n scroll-snap-align:start start;\n}\n:host .swiper-css-mode.swiper-horizontal > .swiper-wrapper{\n scroll-snap-type:x mandatory;\n}\n:host .swiper-css-mode.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child{\n margin-inline-start:var(--swiper-slides-offset-before);\n scroll-margin-inline-start:var(--swiper-slides-offset-before);\n}\n:host .swiper-css-mode.swiper-horizontal > .swiper-wrapper > .swiper-slide:last-child{\n margin-inline-end:var(--swiper-slides-offset-after);\n}\n:host .swiper-css-mode.swiper-vertical > .swiper-wrapper{\n scroll-snap-type:y mandatory;\n}\n:host .swiper-css-mode.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child{\n margin-block-start:var(--swiper-slides-offset-before);\n scroll-margin-block-start:var(--swiper-slides-offset-before);\n}\n:host .swiper-css-mode.swiper-vertical > .swiper-wrapper > .swiper-slide:last-child{\n margin-block-end:var(--swiper-slides-offset-after);\n}\n:host .swiper-css-mode.swiper-free-mode > .swiper-wrapper{\n scroll-snap-type:none;\n}\n:host .swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide{\n scroll-snap-align:none;\n}\n:host .swiper-css-mode.swiper-centered > .swiper-wrapper::before{\n content:\"\";\n flex-shrink:0;\n order:9999;\n}\n:host .swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide{\n scroll-snap-align:center center;\n scroll-snap-stop:always;\n}\n:host .swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child{\n margin-inline-start:var(--swiper-centered-offset-before);\n}\n:host .swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before{\n height:100%;\n min-height:1px;\n width:var(--swiper-centered-offset-after);\n}\n:host .swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child{\n margin-block-start:var(--swiper-centered-offset-before);\n}\n:host .swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before{\n width:100%;\n min-width:1px;\n height:var(--swiper-centered-offset-after);\n}\n:host{\n}\n:host .swiper-3d .swiper-slide-shadow,\n:host .swiper-3d .swiper-slide-shadow-left,\n:host .swiper-3d .swiper-slide-shadow-right,\n:host .swiper-3d .swiper-slide-shadow-top,\n:host .swiper-3d .swiper-slide-shadow-bottom,\n:host .swiper-3d .swiper-slide-shadow,\n:host .swiper-3d .swiper-slide-shadow-left,\n:host .swiper-3d .swiper-slide-shadow-right,\n:host .swiper-3d .swiper-slide-shadow-top,\n:host .swiper-3d .swiper-slide-shadow-bottom{\n position:absolute;\n left:0;\n top:0;\n width:100%;\n height:100%;\n pointer-events:none;\n z-index:10;\n}\n:host .swiper-3d .swiper-slide-shadow{\n background:rgba(0, 0, 0, 0.15);\n}\n:host .swiper-3d .swiper-slide-shadow-left{\n background-image:linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));\n}\n:host .swiper-3d .swiper-slide-shadow-right{\n background-image:linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));\n}\n:host .swiper-3d .swiper-slide-shadow-top{\n background-image:linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));\n}\n:host .swiper-3d .swiper-slide-shadow-bottom{\n background-image:linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));\n}\n:host .swiper-lazy-preloader{\n width:42px;\n height:42px;\n position:absolute;\n left:50%;\n top:50%;\n margin-left:-21px;\n margin-top:-21px;\n z-index:10;\n transform-origin:50%;\n box-sizing:border-box;\n border:4px solid var(--swiper-preloader-color, var(--swiper-theme-color));\n border-radius:50%;\n border-top-color:transparent;\n}\n:host .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,\n:host .swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader{\n animation:swiper-preloader-spin 1s infinite linear;\n}\n:host .swiper-lazy-preloader-white{\n --swiper-preloader-color:#fff;\n}\n:host .swiper-lazy-preloader-black{\n --swiper-preloader-color:#000;\n}\n@keyframes swiper-preloader-spin{\n 0%{\n transform:rotate(0deg);\n }\n 100%{\n transform:rotate(360deg);\n }\n}\n:host{\n}\n:host button.cds-aichat--carousel-container__navigation-button,\n:host .cds-aichat--carousel-container__controls{\n display:flex;\n align-items:center;\n color:var(--cds-text-secondary, #525252);\n -moz-column-gap:0.5rem;\n column-gap:0.5rem;\n}\n:host .cds-aichat--carousel-container__navigation{\n display:flex;\n align-items:center;\n justify-content:flex-end;\n inline-size:100%;\n max-inline-size:var(--cds-aichat-card-max-width, 424px);\n}\n:host .cds-aichat--carousel-container__navigation cds-button::part(button){\n color:currentcolor;\n}\n:host .cds-aichat--carousel-container__navigation-button{\n padding:0;\n color:currentcolor;\n inline-size:32px;\n}\n:host .cds-aichat--carousel-container__navigation-button:first-of-type{\n margin-inline-end:0.5rem;\n}\n:host .cds-aichat--carousel-container__navigation-button:last-of-type{\n margin-inline-start:0.5rem;\n}\n:host button.cds-aichat--carousel-container__navigation-button > svg{\n fill:var(--cds-text-secondary, #525252);\n}\n:host .swiper .cds-aichat--body-message-components{\n flex:1;\n}\n:host .cds-aichat--carousel-container__slide--wide.swiper-slide{\n max-inline-size:100%;\n}\n:host .cds-aichat--carousel-container__controls--standard,\n:host .cds-aichat--carousel-container__controls--wide{\n padding-block-start:0.5rem;\n padding-inline:12px 16px;\n}\n:host .cds-aichat--carousel-container--one-slide{\n max-inline-size:var(--cds-aichat-card-max-width, 424px);\n}\n:host .swiper,\n:host .swiper-wrapper{\n z-index:unset;\n}\n:host .swiper-wrapper{\n align-items:stretch;\n block-size:unset;\n}\n:host .swiper-wrapper .swiper-slide{\n block-size:unset;\n}\n:host .swiper-slide,\n:host .swiper-slide > *{\n max-inline-size:var(--cds-aichat-card-max-width, 424px);\n}\n:host{\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--conversational-search-citations{\n animation:none;\n padding-block-start:16px;\n }\n}\n:host .cds-aichat--conversational-search-citations{\n animation:400ms cubic-bezier(0, 0, 0.3, 1) cds-chat-fade-in both;\n padding-block-start:16px;\n}\n:host .cds-aichat--conversational-search-citations .swiper-slide{\n block-size:unset;\n}\n:host .cds-aichat--conversational-search .cds-aichat--carousel-container__controls{\n padding-block-end:0;\n}\n:host .cds-aichat--standard-width .cds-aichat--conversational-search .cds-aichat--carousel-container--one-slide,\n:host .cds-aichat--wide-width .cds-aichat--conversational-search .cds-aichat--carousel-container--one-slide,\n:host .cds-aichat--wide-width .cds-aichat--conversational-search-disclaimer,\n:host .cds-aichat--standard-width .cds-aichat--conversational-search-disclaimer{\n margin-inline:56px 16px;\n}\n:host .cds-aichat--narrow-width .cds-aichat--conversational-search .cds-aichat--carousel-container--one-slide,\n:host .cds-aichat--narrow-width .cds-aichat--conversational-search-disclaimer{\n margin-inline:16px;\n}\n:host{\n}\n:host .cds-aichat--conversational-search-text__CitationsToggleContainer{\n padding-block-start:0.75rem;\n}\n:host .cds-aichat--narrow-width .cds-aichat--received--conversational-search .cds-aichat--received--feedback,\n:host .cds-aichat--narrow-width .cds-aichat--conversational-search-text{\n margin-inline-start:16px;\n}\n:host .cds-aichat--conversational-search-text__citations-toggle-container{\n display:block;\n padding-block-start:0.25rem;\n}\n:host .cds-aichat--conversational-search-text__citations-toggle{\n margin:0;\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--conversational-search-text__segment:nth-last-child(1 of .cds-aichat--conversational-search-text__segment){\n margin-inline:0.25rem 0;\n}\n:host{\n}\n:host .cds-aichat--date-picker__confirm-button{\n display:block;\n}\n:host .cds-aichat--date-picker__confirm-button::part(button){\n display:block;\n margin-block-start:0.75rem;\n margin-inline-start:auto;\n}\n:host{\n}\n:host .cds-aichat--inline-error{\n display:flex;\n flex-direction:row;\n margin-inline-start:-16px;\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--inline-error{\n margin-inline:unset -16px;\n}\n:host .cds-aichat--inline-error--icon-holder{\n display:flex;\n flex:0 0 1rem;\n align-items:flex-start;\n margin:0.125rem 0.5rem 0 1rem;\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--inline-error--icon-holder{\n margin:0.125rem 1rem 0 0.5rem;\n}\n:host .cds-aichat--inline-error--icon{\n block-size:1rem;\n inline-size:1rem;\n}\n:host .cds-aichat--inline-error--text{\n flex:1;\n font-size:var(--cds-body-01-font-size, 0.875rem);\n font-weight:var(--cds-body-01-font-weight, 400);\n line-height:var(--cds-body-01-line-height, 1.42857);\n letter-spacing:var(--cds-body-01-letter-spacing, 0.16px);\n margin-block-start:1px;\n}\n:host .cds-aichat--inline-error .cds-aichat--inline-error--text{\n color:var(--cds-text-error, #da1e28);\n}\n:host{\n}\n:host .cds-aichat--grid{\n display:flex;\n flex-direction:column;\n inline-size:100%;\n row-gap:0.5rem;\n}\n:host .cds-aichat--grid__row{\n display:flex;\n -moz-column-gap:0.5rem;\n column-gap:0.5rem;\n inline-size:100%;\n}\n:host .cds-aichat--grid__cell{\n display:flex;\n flex-direction:column;\n inline-size:100%;\n row-gap:0.5rem;\n}\n:host .cds-aichat--grid__cell .cds-aichat--message-user-defined-response{\n inline-size:100%;\n}\n:host .cds-aichat--grid .cds-aichat--image{\n border:none;\n}\n:host .cds-aichat--grid .cds-aichat--image__image-wrapper{\n background-color:transparent;\n}\n:host .cds-aichat--grid .cds-aichat--image__skeleton{\n display:none;\n}\n:host .cds-aichat--grid .cds-aichat--media-player__skeleton{\n display:none;\n}\n:host .cds-aichat--grid .cds-aichat--media-player__root{\n inline-size:100%;\n}\n:host .cds-aichat--grid .cds-aichat--media-player__root .cds-aichat--grid .cds-aichat--image,\n:host .cds-aichat--grid .cds-aichat--media-player__root .cds-aichat--grid .cds-aichat--media-player,\n:host .cds-aichat--grid .cds-aichat--media-player__root .cds-aichat--grid .cds-aichat--media-player__skeleton{\n border-radius:0;\n}\n:host{\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--i-frame-preview-card .cds-aichat--image{\n position:unset;\n transition:none;\n }\n}\n:host .cds-aichat--i-frame-preview-card .cds-aichat--image{\n position:unset;\n transition:150ms cubic-bezier(0.2, 0, 0.38, 0.9);\n}\n:host .cds-aichat--i-frame-preview-card:focus .cds-aichat--image{\n outline:2px solid var(--cds-focus, #0f62fe);\n}\n:host .cds-aichat--i-frame-preview-card:hover .cds-aichat--image{\n background-color:var(--cds-layer-hover);\n text-decoration:underline;\n}\n:host{\n}\n:host .cds-aichat--inline-i-frame{\n position:relative;\n overflow:hidden;\n background:transparent;\n inline-size:100%;\n padding-block-start:var(--padding-top, 0);\n}\n:host .cds-aichat--inline-i-frame .cds-aichat--i-frame-component__wrapper{\n position:absolute;\n inset-block-start:0;\n inset-inline-start:0;\n}\n:host{\n}\n:host .cds-aichat--i-frame-component__wrapper{\n position:relative;\n overflow:hidden;\n background:transparent;\n}\n:host .cds-aichat--i-frame-component__wrapper,\n:host .cds-aichat--i-frame-component__i-frame{\n block-size:100%;\n inline-size:100%;\n}\n:host .cds-aichat--i-frame-component__status-container{\n position:absolute;\n display:flex;\n align-items:center;\n justify-content:center;\n background-color:var(--cds-chat-shell-background, #ffffff);\n block-size:100%;\n inline-size:100%;\n inset-block-start:0;\n inset-inline-start:0;\n}\n:host .cds-aichat--i-frame-component__status-container .cds-aichat--loading-spinner{\n block-size:48px;\n inline-size:48px;\n}\n:host .cds-aichat--i-frame-panel .cds-aichat--panel-content{\n display:flex;\n flex:1;\n flex-direction:column;\n}\n:host .cds-aichat--i-frame-panel__content{\n block-size:100%;\n inline-size:100%;\n}\n:host{\n}\n:host .cds-aichat--image{\n overflow:hidden;\n padding:0;\n min-block-size:0;\n min-inline-size:0;\n}\n:host cds-ai-skeleton-placeholder.cds-aichat--image__skeleton::part(skeleton-placeholder\n ),\n:host cds-skeleton-placeholder.cds-aichat--image__skeleton::part(placeholder){\n block-size:192px;\n inline-size:100%;\n}\n:host .cds-aichat--image__image-wrapper{\n background-color:var(--cds-layer-02, #ffffff);\n}\n:host .cds-aichat--image__image{\n display:none;\n block-size:0;\n max-inline-size:100%;\n opacity:0;\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--image__image--loaded{\n animation:none;\n animation-duration:110ms;\n animation-iteration-count:1;\n animation-timing-function:cubic-bezier(0.2, 0, 0.38, 0.9);\n block-size:auto;\n opacity:1;\n }\n}\n:host .cds-aichat--image__image--loaded{\n animation-duration:110ms;\n animation-iteration-count:1;\n animation-name:cds-chat-fade-in-img;\n animation-timing-function:cubic-bezier(0.2, 0, 0.38, 0.9);\n block-size:auto;\n opacity:1;\n}\n:host{\n}\n:host .cds-aichat--image .cds-aichat--image__image--loaded{\n display:block;\n margin:auto;\n}\n:host .cds-aichat--image__text-and-icon .cds-aichat--text-holder-tile__url{\n padding-inline-end:calc(1rem + 2px);\n}\n:host .cds-aichat--image__icon-only .cds-aichat--image__icon{\n padding:0.75rem;\n border-radius:var(--cds-aichat-card-border-radius, 0.5rem);\n background-color:var(--cds-overlay, rgba(0, 0, 0, 0.6));\n fill:var(--cds-icon-on-color, #ffffff);\n}\n:host svg.cds-aichat--image__icon{\n display:block;\n margin-block-end:1rem;\n margin-inline:auto 1rem;\n}\n:host .cds-aichat--image__icon-only .cds-aichat--image__icon,\n:host svg.cds-aichat--image__icon--link{\n position:absolute;\n margin:0;\n inset-block-end:1rem;\n inset-inline-end:1rem;\n}\n:host svg.cds-aichat--image__icon--link{\n color:var(--cds-link-primary, #0f62fe);\n}\n:host .cds-aichat--container--render[dir=rtl] svg.cds-aichat--image__icon--link{\n inset-inline:0.5rem unset;\n}\n:host{\n}\n:host .cds-aichat--button-holder{\n margin-block-start:0.5rem;\n}\n:host .cds-aichat--button-holder ul{\n padding:0;\n margin:0;\n list-style:none;\n}\n:host .cds-aichat--button-holder ul li{\n display:inline-block;\n padding:0 0.5rem 0.5rem 0;\n margin:0;\n}\n:host{\n}\n:host .cds-aichat--select-holder{\n padding:0 1px;\n inline-size:100%;\n margin-block-start:1rem;\n max-inline-size:380px;\n}\n:host{\n}\n:host .cds-aichat--text-area{\n position:relative;\n block-size:-moz-fit-content;\n block-size:fit-content;\n}\n:host .cds-aichat--text-area .cds-aichat--text-area-textarea,\n:host .cds-aichat--text-area .cds-aichat--text-area-sizer{\n font-size:var(--cds-body-02-font-size, 1rem);\n font-weight:var(--cds-body-02-font-weight, 400);\n line-height:var(--cds-body-02-line-height, 1.5);\n letter-spacing:var(--cds-body-02-letter-spacing, 0);\n padding:0;\n border:2px solid transparent;\n margin:0;\n block-size:100%;\n inline-size:100%;\n white-space:pre-wrap;\n word-wrap:break-word;\n}\n:host .cds-aichat--text-area .cds-aichat--text-area-textarea:focus{\n border:2px solid var(--cds-focus, #0f62fe);\n border-radius:0;\n outline:0;\n}\n:host .cds-aichat--text-area .cds-aichat--text-area-textarea::-moz-focus-inner{\n border:2px solid var(--cds-focus, #0f62fe);\n border-radius:0;\n outline:0;\n}\n:host .cds-aichat--text-area.cds-aichat--text-area--auto-size .cds-aichat--text-area-textarea{\n position:absolute;\n overflow:hidden;\n inset-block-start:0;\n resize:none;\n}\n:host{\n}\n:host .cds-aichat--text-area .cds-aichat--text-area-sizer{\n padding-block-end:1px;\n visibility:hidden;\n white-space:pre-wrap;\n word-wrap:break-word;\n}\n:host{\n}\n:host .cds-aichat--body-message-components__message-wrapper{\n padding:1rem;\n}\n:host .cds-aichat--body-message-components__message-wrapper.cds-aichat--body-message-components__message-wrapper--short-bottom-padding{\n padding-block-end:0.75rem;\n}\n:host .cds-aichat--body-message-components .cds-aichat--media-player__skeleton,\n:host .cds-aichat--body-message-components .cds-aichat--media-player,\n:host .cds-aichat--body-message-components .cds-aichat--image{\n border:none;\n}\n:host{\n}\n:host .cds-aichat--body-message-components__message-wrapper.cds-aichat--body-message-components__message-wrapper--short-bottom-padding + .cds-aichat--body-message-components__message-wrapper:not(.cds-aichat--body-message-components__message-wrapper--full-width){\n padding-block-start:0;\n}\n:host .cds-aichat--body-message-components__message-wrapper.cds-aichat--body-message-components__message-wrapper--full-width{\n padding:0;\n}\n:host .cds-aichat--body-message-components__message-wrapper.cds-aichat--body-message-components__message-wrapper--full-width .cds-aichat--body-message-components__message-wrapper .cds-aichat--image,\n:host .cds-aichat--body-message-components__message-wrapper.cds-aichat--body-message-components__message-wrapper--full-width .cds-aichat--body-message-components__message-wrapper .cds-aichat--media-player,\n:host .cds-aichat--body-message-components__message-wrapper.cds-aichat--body-message-components__message-wrapper--full-width .cds-aichat--body-message-components__message-wrapper .cds-aichat--media-player__skeleton{\n border-radius:0;\n}\n:host{\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--clickable-image{\n position:relative;\n overflow:hidden;\n padding:0;\n border:none;\n border-radius:var(--cds-aichat-card-border-radius, 0.5rem);\n background-color:unset;\n color:unset;\n cursor:pointer;\n inline-size:100%;\n max-inline-size:var(--cds-aichat-card-max-width, 424px);\n outline:none;\n outline-offset:-2px;\n text-align:unset;\n transition:none;\n }\n}\n:host .cds-aichat--clickable-image{\n position:relative;\n overflow:hidden;\n padding:0;\n border:none;\n border-radius:var(--cds-aichat-card-border-radius, 0.5rem);\n background-color:unset;\n color:unset;\n cursor:pointer;\n inline-size:100%;\n max-inline-size:var(--cds-aichat-card-max-width, 424px);\n outline:none;\n outline-offset:-2px;\n text-align:unset;\n transition:150ms cubic-bezier(0.2, 0, 0.38, 0.9);\n}\n:host a.cds-aichat--clickable-image .cds-aichat--text-holder-tile__title{\n color:var(--cds-text-primary, #161616);\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--clickable-image .cds-aichat--image{\n position:unset;\n transition:none;\n }\n}\n:host .cds-aichat--clickable-image .cds-aichat--image{\n position:unset;\n transition:150ms cubic-bezier(0.2, 0, 0.38, 0.9);\n}\n:host .cds-aichat--clickable-image .cds-aichat--image__image{\n -webkit-user-select:none;\n -moz-user-select:none;\n user-select:none;\n}\n:host .cds-aichat--clickable-image:disabled{\n cursor:not-allowed;\n}\n:host .cds-aichat--clickable-image:disabled .cds-aichat--image{\n opacity:0.5;\n}\n:host .cds-aichat--clickable-image:enabled:focus{\n outline:2px solid var(--cds-focus, #0f62fe);\n}\n:host .cds-aichat--clickable-image:enabled:hover .cds-aichat--image{\n background-color:var(--cds-layer-hover);\n text-decoration:underline;\n}\n:host .cds-aichat--clickable-image:enabled:hover .cds-aichat--image__image{\n opacity:0.8;\n}\n:host{\n}\n:host .cds-aichat--description{\n font-size:var(--cds-body-01-font-size, 0.875rem);\n font-weight:var(--cds-body-01-font-weight, 400);\n line-height:var(--cds-body-01-line-height, 1.42857);\n letter-spacing:var(--cds-body-01-letter-spacing, 0.16px);\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--disclaimer__title,\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--disclaimer__description{\n text-align:end;\n}\n:host{\n}\n:host .cds-aichat--footer-button-components{\n display:flex;\n inline-size:100%;\n}\n:host .cds-aichat--footer-button-components cds-button.cds-aichat--button-item{\n flex:auto;\n}\n:host .cds-aichat--footer-button-components cds-button[href][kind=ghost] svg{\n fill:var(--cds-link-primary, #0f62fe);\n}\n:host cds-aichat-card .cds-aichat--footer-button-components:not(.cds-aichat--footer-button-components--column){\n gap:0.0625rem;\n}\n:host cds-aichat-card .cds-aichat--footer-button-components:not(.cds-aichat--footer-button-components--column):not(:has([kind=ghost])){\n background-color:var(--cds-button-separator, #e0e0e0);\n}\n:host cds-aichat-card .cds-aichat--footer-button-components:not(.cds-aichat--footer-button-components--column):has([kind=ghost]){\n border-block-start:0.0625rem solid var(--cds-chat-bubble-border, #e0e0e0);\n}\n:host cds-aichat-card .cds-aichat--footer-button-components:not(.cds-aichat--footer-button-components--column) .cds-aichat--button-item:first-child::part(button){\n border-end-start-radius:max(0px, 0.5rem - 0.0625rem);\n}\n:host cds-aichat-card .cds-aichat--footer-button-components:not(.cds-aichat--footer-button-components--column) .cds-aichat--button-item:last-child::part(button){\n border-end-end-radius:max(0px, 0.5rem - 0.0625rem);\n}\n:host cds-aichat-card .cds-aichat--footer-button-components.cds-aichat--footer-button-components--column{\n flex-direction:column;\n}\n:host cds-aichat-card .cds-aichat--footer-button-components.cds-aichat--footer-button-components--column .cds-aichat--button-item[kind=ghost]{\n border-block-start:0.0625rem solid var(--cds-chat-bubble-border, #e0e0e0);\n}\n:host cds-aichat-card .cds-aichat--footer-button-components.cds-aichat--footer-button-components--column .cds-aichat--button-item:last-child::part(button){\n border-end-end-radius:max(0px, 0.5rem - 0.0625rem);\n border-end-start-radius:max(0px, 0.5rem - 0.0625rem);\n}\n:host .cds-aichat--overlay-panel .cds-aichat--footer-button-components:not(.cds-aichat--footer-button-components--column){\n gap:0.0625rem;\n}\n:host .cds-aichat--overlay-panel .cds-aichat--footer-button-components:not(.cds-aichat--footer-button-components--column):not(:has([kind=ghost])){\n background-color:var(--cds-button-separator, #e0e0e0);\n}\n:host .cds-aichat--overlay-panel .cds-aichat--footer-button-components:not(.cds-aichat--footer-button-components--column):has([kind=ghost]){\n border-block-start:0.0625rem solid var(--cds-chat-bubble-border, #e0e0e0);\n}\n:host .cds-aichat--overlay-panel .cds-aichat--footer-button-components:not(.cds-aichat--footer-button-components--column) .cds-aichat--button-item:first-child::part(button){\n border-end-start-radius:max(0px, var(--cds-aichat-border-radius-end-end, 0) - 0.0625rem);\n}\n:host .cds-aichat--overlay-panel .cds-aichat--footer-button-components:not(.cds-aichat--footer-button-components--column) .cds-aichat--button-item:last-child::part(button){\n border-end-end-radius:max(0px, var(--cds-aichat-border-radius-end-end, 0) - 0.0625rem);\n}\n:host .cds-aichat--overlay-panel .cds-aichat--footer-button-components.cds-aichat--footer-button-components--column{\n flex-direction:column;\n}\n:host .cds-aichat--overlay-panel .cds-aichat--footer-button-components.cds-aichat--footer-button-components--column .cds-aichat--button-item[kind=ghost]{\n border-block-start:0.0625rem solid var(--cds-chat-bubble-border, #e0e0e0);\n}\n:host .cds-aichat--overlay-panel .cds-aichat--footer-button-components.cds-aichat--footer-button-components--column .cds-aichat--button-item:last-child::part(button){\n border-end-end-radius:max(0px, var(--cds-aichat-border-radius-end-end, 0) - 0.0625rem);\n border-end-start-radius:max(0px, var(--cds-aichat-border-radius-end-end, 0) - 0.0625rem);\n}\n:host .cds-aichat--widget--with-branding-banner .cds-aichat--overlay-panel .cds-aichat--footer-button-components .cds-aichat--button-item:first-child::part(button),\n:host .cds-aichat--widget:not(.cds-aichat--widget--rounded,\n.cds-aichat--widget--with-branding-banner) .cds-aichat--overlay-panel .cds-aichat--footer-button-components .cds-aichat--button-item:first-child::part(button){\n border-end-start-radius:0;\n}\n:host .cds-aichat--widget--with-branding-banner .cds-aichat--overlay-panel .cds-aichat--footer-button-components .cds-aichat--button-item:last-child::part(button),\n:host .cds-aichat--widget:not(.cds-aichat--widget--rounded,\n.cds-aichat--widget--with-branding-banner) .cds-aichat--overlay-panel .cds-aichat--footer-button-components .cds-aichat--button-item:last-child::part(button){\n border-end-end-radius:0;\n}\n:host .cds-aichat--widget--with-branding-banner .cds-aichat--overlay-panel .cds-aichat--footer-button-components--column .cds-aichat--button-item.cds-aichat--button-item:last-child::part(button),\n:host .cds-aichat--footer-button-components.cds-aichat--footer-button-components--column .cds-aichat--button-item.cds-aichat--button-item:not(:last-child::part(button)){\n border-end-end-radius:0;\n border-end-start-radius:0;\n}\n:host{\n}\n:host .cds-aichat--media-player,\n:host .cds-aichat--media-player__skeleton{\n overflow:hidden;\n padding:0;\n}\n:host .cds-aichat--media-player__wrapper{\n overflow:hidden;\n}\n:host .cds-aichat--media-player__skeleton-container,\n:host .cds-aichat--media-player__wrapper{\n position:relative;\n padding-block-start:0;\n}\n:host .cds-aichat--media-player__background{\n background-color:var(--cds-layer-accent-01, #e0e0e0);\n}\n:host .cds-aichat--media-player__background--audio{\n display:flex;\n align-items:center;\n justify-content:center;\n}\n:host .cds-aichat--media-player__player iframe{\n block-size:100%;\n inline-size:100%;\n max-block-size:100%;\n max-inline-size:100%;\n}\n:host .cds-aichat--media-player__music-icon{\n fill:var(--cds-icon-on-color, #ffffff);\n}\n:host cds-ai-skeleton-placeholder.cds-aichat--media-player__skeleton-player::part(skeleton-placeholder\n ),\n:host cds-skeleton-placeholder.cds-aichat--media-player__skeleton-player::part(placeholder\n ),\n:host .cds-aichat--media-player__background,\n:host .cds-aichat--media-player__player{\n position:absolute;\n border-radius:0;\n inset-block-start:0;\n inset-inline-start:0;\n}\n:host cds-ai-skeleton-placeholder.cds-aichat--media-player__skeleton-player::part(skeleton-placeholder\n ),\n:host cds-skeleton-placeholder.cds-aichat--media-player__skeleton-player::part(placeholder\n ),\n:host .cds-aichat--media-player__background{\n block-size:100%;\n inline-size:100%;\n}\n:host .cds-aichat--media-player__root{\n inline-size:100%;\n}\n:host .cds-aichat--media-player__skeleton-text-container{\n padding:1rem;\n}\n:host .cds-aichat--media-transcript{\n padding:0 1rem 1rem 1rem;\n}\n:host .cds-aichat--media-transcript__toggle{\n font-size:var(--cds-label-01-font-size, 0.75rem);\n font-weight:var(--cds-label-01-font-weight, 400);\n line-height:var(--cds-label-01-line-height, 1.33333);\n letter-spacing:var(--cds-label-01-letter-spacing, 0.32px);\n display:flex;\n align-items:center;\n justify-content:space-between;\n padding:0;\n border:0;\n margin:0;\n background-color:transparent;\n color:var(--cds-text-secondary, #525252);\n cursor:pointer;\n text-align:start;\n}\n:host .cds-aichat--media-transcript__toggle:hover{\n background-color:var(--cds-layer-hover-01, #e8e8e8);\n}\n:host .cds-aichat--media-transcript__toggle:focus{\n outline:2px solid var(--cds-focus, #0f62fe);\n outline-offset:-2px;\n}\n:host .cds-aichat--media-transcript__toggle-label{\n display:flex;\n align-items:center;\n font-weight:600;\n}\n:host .cds-aichat--media-transcript__language{\n color:var(--cds-text-secondary, #525252);\n font-weight:400;\n}\n:host .cds-aichat--media-transcript__toggle-icon{\n flex-shrink:0;\n margin-inline-start:0.5rem;\n}\n:host .cds-aichat--media-transcript__content--visible{\n padding-block-start:0.5rem;\n}\n:host{\n}\n:host .cds-aichat--received--metablock{\n color:var(--cds-text-primary, #161616);\n font-size:var(--cds-body-01-font-size, 0.875rem);\n font-weight:var(--cds-body-01-font-weight, 400);\n line-height:var(--cds-body-01-line-height, 1.42857);\n letter-spacing:var(--cds-body-01-letter-spacing, 0.16px);\n}\n:host .cds-aichat--received--metablock-content:nth-child(2){\n margin-block-start:0.5rem;\n}\n:host{\n}\n:host .cds-aichat--text-holder-tile{\n display:flex;\n padding:1rem;\n min-block-size:initial;\n}\n:host .cds-aichat--text-holder-tile__icon{\n flex:0 1 auto;\n margin:0.125rem 0.5rem 0 0;\n}\n:host .cds-aichat--text-holder-tile__wrapper{\n flex:1 1;\n align-self:center;\n}\n:host .cds-aichat--text-holder-tile__title{\n font-size:var(--cds-body-02-font-size, 1rem);\n font-weight:var(--cds-body-02-font-weight, 400);\n line-height:var(--cds-body-02-line-height, 1.5);\n letter-spacing:var(--cds-body-02-letter-spacing, 0);\n font-weight:400;\n min-block-size:unset;\n}\n:host .cds-aichat--text-holder-tile__description{\n color:var(--cds-text-secondary, #525252);\n}\n:host .cds-aichat--text-holder-tile__description,\n:host .cds-aichat--text-holder-tile__url{\n font-size:var(--cds-caption-01-font-size, 0.75rem);\n font-weight:var(--cds-caption-01-font-weight, 400);\n line-height:var(--cds-caption-01-line-height, 1.33333);\n letter-spacing:var(--cds-caption-01-letter-spacing, 0.32px);\n min-block-size:unset;\n}\n:host .cds-aichat--text-holder-tile__description-margin{\n margin-block-start:0.125rem;\n}\n:host .cds-aichat--text-holder-tile__url{\n color:var(--cds-link-primary, #0f62fe);\n}\n:host .cds-aichat--text-holder-tile__url-margin{\n margin-block-start:1rem;\n}\n@supports (-webkit-line-clamp: 3){\n :host .cds-aichat--text-holder-tile__description{\n display:-webkit-box;\n overflow:hidden;\n -webkit-box-orient:vertical;\n -webkit-line-clamp:3;\n white-space:normal;\n }\n}\n@supports (-webkit-line-clamp: 2){\n :host .cds-aichat--text-holder-tile__title{\n display:-webkit-box;\n overflow:hidden;\n -webkit-box-orient:vertical;\n -webkit-line-clamp:2;\n white-space:normal;\n }\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--text-holder-tile__icon{\n margin-inline:0.5rem 0;\n}\n:host{\n}\n:host .cds-aichat--search-result-highlight{\n background-color:var(--cds-highlight, #d0e2ff);\n}\n:host{\n}\n:host .cds-aichat--citation-card{\n display:block;\n inline-size:100%;\n}\n:host .cds-aichat--message a.cds-aichat--citation-card--clickable,\n:host .cds-aichat--message button.cds-aichat--citation-card--clickable{\n padding:0;\n border:none;\n border-radius:0.5rem;\n cursor:pointer;\n inline-size:100%;\n padding-inline-end:0;\n}\n:host .cds-aichat--message a.cds-aichat--citation-card--clickable cds-aichat-card,\n:host .cds-aichat--message button.cds-aichat--citation-card--clickable cds-aichat-card{\n border:none;\n box-shadow:0 0 0 1px inset var(--cds-chat-bubble-border, #e0e0e0);\n transition:150ms cubic-bezier(0.2, 0, 0.38, 0.9);\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--message a.cds-aichat--citation-card--clickable cds-aichat-card,\n :host .cds-aichat--message button.cds-aichat--citation-card--clickable cds-aichat-card{\n border:none;\n box-shadow:0 0 0 1px inset var(--cds-chat-bubble-border, #e0e0e0);\n transition:none;\n }\n}\n:host .cds-aichat--message a.cds-aichat--citation-card--clickable:focus,\n:host .cds-aichat--message button.cds-aichat--citation-card--clickable:focus{\n text-decoration:none;\n}\n:host .cds-aichat--message a.cds-aichat--citation-card--clickable:focus cds-aichat-card,\n:host .cds-aichat--message button.cds-aichat--citation-card--clickable:focus cds-aichat-card{\n box-shadow:0 0 0 2px inset var(--cds-focus, #0f62fe);\n text-decoration:none;\n}\n:host .cds-aichat--message a.cds-aichat--citation-card--clickable:hover,\n:host .cds-aichat--message button.cds-aichat--citation-card--clickable:hover{\n text-decoration:none;\n}\n:host .cds-aichat--message a.cds-aichat--citation-card--clickable:hover cds-aichat-card,\n:host .cds-aichat--message button.cds-aichat--citation-card--clickable:hover cds-aichat-card{\n background:var(--cds-layer-hover-01, #e8e8e8);\n text-decoration:none;\n}\n:host .cds-aichat--message a.cds-aichat--citation-card--clickable:active,\n:host .cds-aichat--message button.cds-aichat--citation-card--clickable:active{\n text-decoration:none;\n}\n:host .cds-aichat--message a.cds-aichat--citation-card--clickable:active cds-aichat-card,\n:host .cds-aichat--message button.cds-aichat--citation-card--clickable:active cds-aichat-card{\n box-shadow:0 0 0 2px inset var(--cds-focus, #0f62fe);\n text-decoration:none;\n}\n:host .cds-aichat--citation-card-header{\n block-size:128px;\n}\n:host .cds-aichat--citation-card-title{\n color:var(--cds-text-secondary, #525252);\n font-size:var(--cds-body-02-font-size, 1rem);\n font-weight:var(--cds-body-02-font-weight, 400);\n line-height:var(--cds-body-02-line-height, 1.5);\n letter-spacing:var(--cds-body-02-letter-spacing, 0);\n padding-block-end:0.5rem;\n}\n:host .cds-aichat--citation-card-text{\n display:-webkit-box;\n overflow:hidden;\n -webkit-box-orient:vertical;\n color:var(--cds-text-secondary, #525252);\n font-size:var(--cds-body-01-font-size, 0.875rem);\n font-weight:var(--cds-body-01-font-weight, 400);\n line-height:var(--cds-body-01-line-height, 1.42857);\n letter-spacing:var(--cds-body-01-letter-spacing, 0.16px);\n -webkit-line-clamp:5;\n line-clamp:5;\n text-align:start;\n white-space:normal;\n}\n:host .cds-aichat--citation-card-footer{\n display:flex;\n justify-content:space-between;\n color:var(--cds-link-primary, #0f62fe);\n padding-block-start:1rem;\n}\n:host .cds-aichat--citation-card-label,\n:host .cds-aichat--citation-card-icon{\n font-size:var(--cds-caption-01-font-size, 0.75rem);\n font-weight:var(--cds-caption-01-font-weight, 400);\n line-height:var(--cds-caption-01-line-height, 1.33333);\n letter-spacing:var(--cds-caption-01-letter-spacing, 0.32px);\n}\n:host .cds-aichat--citation-card-icon{\n display:flex;\n align-items:center;\n}\n:host .cds-aichat--message a:hover.cds-aichat--citation-card--clickable{\n cursor:pointer;\n text-decoration:none;\n}\n:host{\n}\n:host .cds-aichat--view-source-panel{\n position:relative;\n display:flex;\n flex-direction:column;\n block-size:100%;\n}\n:host .cds-aichat--view-source-panel .cds-aichat--panel-content{\n flex:1;\n}\n:host .cds-aichat--view-source-panel__content{\n overflow:auto;\n background-color:var(--cds-background, #ffffff);\n block-size:100%;\n}\n:host{\n}\n:host .cds-aichat--error-icon{\n fill:var(--cds-support-error, #da1e28);\n vertical-align:middle;\n}\n:host .cds-aichat--error-icon path[data-icon-path=inner-path]{\n fill:var(--cds-icon-on-color, #ffffff);\n opacity:1;\n}\n:host{\n}\n:host .cds-aichat--response-stopped{\n font-size:var(--cds-body-01-font-size, 0.875rem);\n font-weight:var(--cds-body-01-font-weight, 400);\n line-height:var(--cds-body-01-line-height, 1.42857);\n letter-spacing:var(--cds-body-01-letter-spacing, 0.16px);\n color:var(--cds-text-secondary, #525252);\n font-style:italic;\n margin-block-start:1rem;\n text-align:center;\n}\n:host .cds-aichat--standard-width .cds-aichat--conversational-search + .cds-aichat--response-stopped,\n:host .cds-aichat--wide-width .cds-aichat--conversational-search + .cds-aichat--response-stopped{\n padding-inline-start:56px;\n}\n:host .cds-aichat--narrow-width .cds-aichat--conversational-search + .cds-aichat--response-stopped{\n padding-inline-start:16px;\n}\n:host{\n}\n:host .cds-aichat--system-message-standalone{\n display:flex;\n align-items:center;\n justify-content:center;\n padding:1rem 0.5rem;\n margin:0.5rem 0;\n}\n:host .cds-aichat--system-message-standalone-text{\n font-size:var(--cds-body-01-font-size, 0.875rem);\n font-weight:var(--cds-body-01-font-weight, 400);\n line-height:var(--cds-body-01-line-height, 1.42857);\n letter-spacing:var(--cds-body-01-letter-spacing, 0.16px);\n padding:0.5rem 1rem;\n border-radius:0.25rem;\n background-color:transparent;\n color:var(--cds-text-secondary, #525252);\n font-style:italic;\n max-inline-size:600px;\n text-align:center;\n}\n:host .cds-aichat--received .cds-aichat--system-message-inline,\n:host .cds-aichat--sent .cds-aichat--system-message-inline{\n font-size:var(--cds-body-01-font-size, 0.875rem);\n font-weight:var(--cds-body-01-font-weight, 400);\n line-height:var(--cds-body-01-line-height, 1.42857);\n letter-spacing:var(--cds-body-01-letter-spacing, 0.16px);\n padding:0.5rem 0;\n margin:0.5rem 0;\n border-block-end:1px solid var(--cds-border-subtle-01, #c6c6c6);\n border-block-start:1px solid var(--cds-border-subtle-01, #c6c6c6);\n color:var(--cds-text-secondary, #525252);\n font-style:italic;\n text-align:center;\n}\n:host{\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--message{\n position:relative;\n display:block;\n margin:0;\n animation:none;\n }\n}\n:host .cds-aichat--message{\n position:relative;\n display:block;\n margin:0;\n --cds-aichat-border-radius-start-start:0;\n --cds-aichat-border-radius-start-end:0;\n --cds-aichat-border-radius-end-start:0;\n --cds-aichat-border-radius-end-end:0;\n}\n:host .cds-aichat--message.cds-aichat--message--has-focus::after{\n position:absolute;\n box-sizing:border-box;\n border:solid 2px var(--cds-focus, #0f62fe);\n block-size:100%;\n content:\"\";\n inline-size:100%;\n inset-block-start:0;\n pointer-events:none;\n}\n:host{\n}\n:host .cds-aichat--message.cds-aichat--message--first-message.cds-aichat--message--has-focus::after{\n block-size:calc(100% - 0.5rem);\n inset-block-start:0.5rem;\n}\n:host .cds-aichat--message.cds-aichat--message--last-message.cds-aichat--message--has-focus::after{\n block-size:calc(100% - 2rem + 0.5rem);\n inset-block-end:calc(2rem - 0.5rem);\n}\n:host .cds-aichat--message .cds-aichat--message-vertical-padding,\n:host .cds-aichat--message .cds-aichat--ui-customization-element--response{\n padding-block-start:1rem;\n}\n:host .cds-aichat--message--with-avatar-line .cds-aichat--message-vertical-padding,\n:host .cds-aichat--message--with-avatar-line .cds-aichat--ui-customization-element--response,\n:host .cds-aichat--message--option-response-without-title-or-description .cds-aichat--message-vertical-padding{\n padding-block-start:0;\n}\n:host .cds-aichat--message--option-response-without-title-or-description .cds-aichat--ui-customization-element--response{\n padding-block-start:0;\n}\n:host .cds-aichat--message.cds-aichat--message--custom .cds-aichat--message-vertical-padding,\n:host .cds-aichat--message.cds-aichat--message--custom .cds-aichat--ui-customization-element--response{\n padding-block:0;\n}\n:host .cds-aichat--message__avatar-line + .cds-aichat--message--padding .cds-aichat--assistant-message > div.cds-aichat--received,\n:host .cds-aichat--message__avatar-line + .cds-aichat--message--padding .cds-aichat--assistant-message > div.cds-aichat--received.cds-aichat--received--carousel:not(.cds-aichat--received--carousel-single):first-child,\n:host .cds-aichat--message__avatar-line + .cds-aichat--message--padding .cds-aichat--assistant-message > div.cds-aichat--received.cds-aichat--received--full-width:first-child{\n margin-block-start:0.5rem;\n}\n:host .cds-aichat--message.cds-aichat--message--last-message .cds-aichat--message--padding{\n padding-block-end:1.5rem;\n}\n:host .cds-aichat--sent-container{\n display:flex;\n justify-content:flex-end;\n}\n:host .cds-aichat--message .cds-aichat--received,\n:host .cds-aichat--message .cds-aichat--sent-container{\n flex-grow:1;\n margin-inline:1rem;\n min-inline-size:0;\n}\n@media screen and (prefers-reduced-motion: no-preference){\n :host .cds-aichat--message .cds-aichat--received .cds-aichat--message .cds-aichat--received,\n :host .cds-aichat--message .cds-aichat--received .cds-aichat--message .cds-aichat--sent-container,\n :host .cds-aichat--message .cds-aichat--sent-container .cds-aichat--message .cds-aichat--received,\n :host .cds-aichat--message .cds-aichat--sent-container .cds-aichat--message .cds-aichat--sent-container{\n transition:margin-inline 110ms cubic-bezier(0.2, 0, 0.38, 0.9);\n }\n :host .cds-aichat--message .cds-aichat--received .cds-aichat--message__avatar-line + .cds-aichat--message--padding .cds-aichat--assistant-message > div.cds-aichat--received,\n :host .cds-aichat--message .cds-aichat--sent-container .cds-aichat--message__avatar-line + .cds-aichat--message--padding .cds-aichat--assistant-message > div.cds-aichat--received{\n transition:margin-block-start 110ms cubic-bezier(0.2, 0, 0.38, 0.9);\n }\n :host .cds-aichat--message .cds-aichat--received .cds-aichat--message .cds-aichat--received.cds-aichat--received--agent-status-message,\n :host .cds-aichat--message .cds-aichat--sent-container .cds-aichat--message .cds-aichat--received.cds-aichat--received--agent-status-message{\n transition:margin-inline 110ms cubic-bezier(0.2, 0, 0.38, 0.9);\n }\n}\n:host .cds-aichat--wide-width .cds-aichat--message .cds-aichat--received.cds-aichat--received--conversational-search,\n:host .cds-aichat--wide-width .cds-aichat--message .cds-aichat--received.cds-aichat--received--search,\n:host .cds-aichat--wide-width .cds-aichat--message .cds-aichat--received--carousel:not(.cds-aichat--received--carousel-single),\n:host .cds-aichat--wide-width .cds-aichat--message .cds-aichat--received.cds-aichat--received--full-width,\n:host .cds-aichat--narrow-width .cds-aichat--message .cds-aichat--received.cds-aichat--received--conversational-search,\n:host .cds-aichat--narrow-width .cds-aichat--message .cds-aichat--received.cds-aichat--received--search,\n:host .cds-aichat--narrow-width .cds-aichat--message .cds-aichat--received.cds-aichat--received--full-width,\n:host .cds-aichat--standard-width .cds-aichat--message .cds-aichat--received.cds-aichat--received--conversational-search,\n:host .cds-aichat--standard-width .cds-aichat--message .cds-aichat--received.cds-aichat--received--search,\n:host .cds-aichat--standard-width .cds-aichat--message .cds-aichat--received--carousel:not(.cds-aichat--received--carousel-single),\n:host .cds-aichat--standard-width .cds-aichat--message .cds-aichat--received.cds-aichat--received--full-width{\n margin-inline:0 1rem;\n}\n:host .cds-aichat--message a:not(button){\n color:var(--cds-link-primary, #0f62fe);\n outline:none;\n text-decoration:none;\n}\n:host .cds-aichat--message a:visited:not(button){\n color:var(--cds-link-primary, #0f62fe);\n}\n:host .cds-aichat--message a:hover:not(button){\n text-decoration:underline;\n}\n:host .cds-aichat--message a:focus:not(button){\n text-decoration:underline;\n}\n:host .cds-aichat--message::after{\n display:table;\n clear:both;\n content:\"\";\n}\n:host .cds-aichat--messages--welcome.cds-aichat--messages--welcome--typing{\n min-block-size:100%;\n}\n:host .cds-aichat--assistant-message{\n position:relative;\n display:flex;\n flex-direction:row;\n max-inline-size:100%;\n}\n:host .cds-aichat--received--inline-error,\n:host .cds-aichat--received--text,\n:host .cds-aichat--message-user-defined-response{\n position:relative;\n color:var(--cds-text-primary, #161616);\n font-size:var(--cds-body-01-font-size, 0.875rem);\n font-weight:var(--cds-body-01-font-weight, 400);\n line-height:var(--cds-body-01-line-height, 1.42857);\n letter-spacing:var(--cds-body-01-letter-spacing, 0.16px);\n overflow-wrap:break-word;\n word-break:break-word;\n word-wrap:break-word;\n}\n:host .cds-aichat--message-user-defined-response{\n max-inline-size:100%;\n}\n:host .cds-aichat--received--image{\n position:relative;\n inline-size:90%;\n overflow-wrap:break-word;\n word-break:break-word;\n word-wrap:break-word;\n}\n:host .cds-aichat--received--video,\n:host .cds-aichat--received--audio{\n inline-size:100%;\n overflow-wrap:break-word;\n word-break:break-word;\n word-wrap:break-word;\n}\n:host{\n}\n:host .cds-aichat--sent-and-message-state-container{\n display:flex;\n flex-direction:row;\n justify-content:flex-end;\n}\n:host{\n}\n:host .cds-aichat--message-status{\n display:flex;\n align-items:center;\n margin-inline:8px;\n}\n:host{\n}\n:host .cds-aichat--sent-and-message-state--below-message{\n display:flex;\n flex-direction:column;\n align-items:flex-end;\n}\n:host .cds-aichat--sent-and-message-state--below-message .cds-aichat--message-status{\n margin-inline:0;\n padding-block-start:0.5rem;\n}\n:host{\n}\n:host .cds-aichat--message-status .cds-aichat--loading-spinner circle{\n stroke-width:6;\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--sent-container .cds-aichat--message-status-file-success svg{\n animation:none;\n fill:var(--cds-interactive, #0f62fe);\n }\n}\n:host .cds-aichat--sent-container .cds-aichat--message-status-file-success svg{\n animation:150ms cubic-bezier(0.4, 0.14, 1, 1) 2000ms cds-chat-fade-out forwards;\n fill:var(--cds-interactive, #0f62fe);\n}\n:host .cds-aichat--received--loading,\n:host .cds-aichat--search-result,\n:host .cds-aichat--sent--bubble{\n position:relative;\n opacity:1;\n overflow-wrap:break-word;\n word-break:break-word;\n word-wrap:break-word;\n}\n:host .cds-aichat--received--loading .cds-aichat--received--inner{\n position:relative;\n}\n:host .cds-aichat--sent--text > span{\n flex:1;\n white-space:pre-wrap;\n}\n:host .cds-aichat--sent--text{\n display:flex;\n}\n:host svg.cds-aichat--sent-file-icon{\n margin-inline-end:8px;\n}\n:host .cds-aichat--sent{\n display:flex;\n flex-direction:column;\n inline-size:100%;\n}\n:host .cds-aichat--sent--bubble{\n align-self:end;\n padding:0.5rem 0.75rem;\n border:solid 1px var(--cds-chat-bubble-user, #e0e0e0);\n border-radius:0.5rem 0 0.5rem 0.5rem;\n background:var(--cds-chat-bubble-user, #e0e0e0);\n font-size:var(--cds-body-01-font-size, 0.875rem);\n font-weight:var(--cds-body-01-font-weight, 400);\n line-height:var(--cds-body-01-line-height, 1.42857);\n letter-spacing:var(--cds-body-01-letter-spacing, 0.16px);\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--sent--bubble{\n border-radius:0 0.5rem 0.5rem 0.5rem;\n}\n:host .cds-aichat--received--options,\n:host .cds-aichat--received--suggestion{\n position:relative;\n overflow-wrap:break-word;\n word-break:break-word;\n word-wrap:break-word;\n}\n:host .cds-aichat--received--iframe-preview-card{\n overflow:hidden;\n inline-size:100%;\n}\n:host .cds-aichat--assistant-message .cds-aichat--received--agent-status-message{\n color:var(--cds-text-helper, #6f6f6f);\n font-size:var(--cds-caption-01-font-size, 0.75rem);\n font-weight:var(--cds-caption-01-font-weight, 400);\n line-height:var(--cds-caption-01-line-height, 1.33333);\n letter-spacing:var(--cds-caption-01-letter-spacing, 0.32px);\n padding-inline:1rem;\n text-align:center;\n}\n:host .cds-aichat--assistant-message .cds-aichat--received--chat-status-message{\n color:var(--cds-text-secondary, #525252);\n font-size:var(--cds-caption-01-font-size, 0.75rem);\n font-weight:var(--cds-caption-01-font-weight, 400);\n line-height:var(--cds-caption-01-line-height, 1.33333);\n letter-spacing:var(--cds-caption-01-letter-spacing, 0.32px);\n}\n:host .cds-aichat--message--system-message{\n padding-block-start:28px;\n}\n:host .cds-aichat--message__avatar-line{\n display:flex;\n padding-block-start:28px;\n}\n:host .cds-aichat--message__avatar-line .cds-aichat--message__label{\n color:var(--cds-text-secondary, #525252);\n font-size:var(--cds-caption-01-font-size, 0.75rem);\n font-weight:var(--cds-caption-01-font-weight, 400);\n line-height:var(--cds-caption-01-line-height, 1.33333);\n letter-spacing:var(--cds-caption-01-letter-spacing, 0.32px);\n}\n:host .cds-aichat--message__avatar-line .cds-aichat--message__reasoning{\n display:flex;\n align-items:center;\n}\n:host .cds-aichat--message__avatar-line .cds-aichat--message__reasoning-separator{\n color:var(--cds-text-secondary, #525252);\n margin-inline-end:0.5rem;\n}\n:host .cds-aichat--message__avatar-line .cds-aichat--message__avatar{\n display:flex;\n align-items:center;\n justify-content:center;\n block-size:2rem;\n inline-size:2rem;\n}\n:host .cds-aichat--message__avatar-line .cds-aichat--message__avatar--assistant svg{\n block-size:28px;\n inline-size:28px;\n}\n:host .cds-aichat--message__avatar-line .cds-aichat--image-with-fallback{\n display:flex;\n}\n:host .cds-aichat--message__avatar-line .cds-aichat--image-with-fallback img,\n:host .cds-aichat--message__avatar-line .cds-aichat--image-with-fallback .cds-aichat--icon-holder{\n border-radius:14px;\n block-size:28px;\n inline-size:28px;\n}\n:host .cds-aichat--message__avatar-line .cds-aichat--image-with-fallback img svg,\n:host .cds-aichat--message__avatar-line .cds-aichat--image-with-fallback .cds-aichat--icon-holder svg{\n block-size:16px;\n fill:var(--cds-icon-inverse, #ffffff);\n inline-size:16px;\n}\n:host .cds-aichat--message--request .cds-aichat--message__avatar-line{\n justify-content:flex-end;\n padding-inline-end:1rem;\n}\n:host .cds-aichat--message--request .cds-aichat--message__avatar-line .cds-aichat--message__label{\n padding-block-end:0.5rem;\n padding-inline-start:0.5rem;\n}\n:host{\n}\n:host .cds-aichat--message--response .cds-aichat--message__avatar-line{\n padding-inline-start:0.5rem;\n}\n:host .cds-aichat--message--response .cds-aichat--message__avatar-line .cds-aichat--message__label{\n padding-block:0.5rem;\n padding-inline:0.5rem;\n}\n:host .cds-aichat--message--response:not(.cds-aichat--message--system-message).cds-aichat--message--agent-message + .cds-aichat--message--response:not(.cds-aichat--message--system-message).cds-aichat--message--agent-message,\n:host .cds-aichat--message--request + .cds-aichat--message--request{\n padding-block-start:0.5rem;\n}\n:host .cds-aichat--message--response:not(.cds-aichat--message--system-message).cds-aichat--message--agent-message + .cds-aichat--message--response:not(.cds-aichat--message--system-message).cds-aichat--message--agent-message .cds-aichat--message__avatar-line,\n:host .cds-aichat--message--request + .cds-aichat--message--request .cds-aichat--message__avatar-line{\n display:none;\n}\n:host .cds-aichat--message--response:not(.cds-aichat--message--system-message).cds-aichat--message--agent-message + .cds-aichat--message--response:not(.cds-aichat--message--system-message).cds-aichat--message--agent-message .cds-aichat--received--from-human,\n:host .cds-aichat--message--response:not(.cds-aichat--message--system-message).cds-aichat--message--agent-message + .cds-aichat--message--response:not(.cds-aichat--message--system-message).cds-aichat--message--agent-message .cds-aichat--sent--bubble,\n:host .cds-aichat--message--request + .cds-aichat--message--request .cds-aichat--received--from-human,\n:host .cds-aichat--message--request + .cds-aichat--message--request .cds-aichat--sent--bubble{\n border-radius:0.5rem;\n}\n:host .cds-aichat--message--response:not(.cds-aichat--message--agent-message) .cds-aichat--message__avatar-line + .cds-aichat--message--padding{\n padding-block-start:0.25rem;\n}\n:host .cds-aichat--message__avatar--agent .cds-aichat--image-with-fallback .cds-aichat--icon-holder{\n background-color:var(--cds-chat-avatar-agent, #393939);\n}\n:host .cds-aichat--received--from-human.cds-aichat--received--text{\n padding:0.5rem 0.75rem;\n border:solid 1px var(--cds-chat-bubble-border, #e0e0e0);\n border-radius:0 0.5rem 0.5rem 0.5rem;\n background-color:var(--cds-chat-bubble-agent, #ffffff);\n}\n:host .cds-aichat--received--chain-of-thought{\n margin-block-start:0.75rem;\n}\n:host .cds-aichat--message__reasoning-steps{\n display:none;\n}\n:host .cds-aichat--message__reasoning-steps--open{\n display:block;\n padding-block-end:0.75rem;\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--received--from-agent.cds-aichat--received--text{\n border-radius:0.5rem 0 0.5rem 0.5rem;\n}\n:host .cds-aichat--message__avatar--assistant .cds-aichat--image-with-fallback .cds-aichat--icon-holder{\n background-color:var(--cds-chat-avatar-bot, #6f6f6f);\n}\n:host{\n}\n:host .cds-aichat--container--render{\n}\n:host .cds-aichat--container--render :where(cds-aichat-shell).cds-aichat--standard-width .cds-aichat--message__avatar-line + .cds-aichat--message--padding .cds-aichat--assistant-message > div.cds-aichat--received, :host .cds-aichat--container--render :where(cds-aichat-shell).cds-aichat--wide-width .cds-aichat--message__avatar-line + .cds-aichat--message--padding .cds-aichat--assistant-message > div.cds-aichat--received{\n margin-block-start:0;\n}\n:host .cds-aichat--container--render :where(cds-aichat-shell).cds-aichat--standard-width .cds-aichat--message .cds-aichat--received.cds-aichat--received--agent-status-message, :host .cds-aichat--container--render :where(cds-aichat-shell).cds-aichat--wide-width .cds-aichat--message .cds-aichat--received.cds-aichat--received--agent-status-message{\n margin-inline:0;\n}\n:host .cds-aichat--container--render :where(cds-aichat-shell){\n}\n:host .cds-aichat--container--render :where(cds-aichat-shell).cds-aichat--wide-width .cds-aichat--message .cds-aichat--received, :host .cds-aichat--container--render :where(cds-aichat-shell).cds-aichat--standard-width .cds-aichat--message .cds-aichat--received, :host .cds-aichat--container--render :where(cds-aichat-shell).cds-aichat--wide-width .cds-aichat--message .cds-aichat--sent-container, :host .cds-aichat--container--render :where(cds-aichat-shell).cds-aichat--standard-width .cds-aichat--message .cds-aichat--sent-container{\n margin-inline:calc(0.5rem + 2rem + 0.5rem) 1rem;\n}\n:host .cds-aichat--container--render{\n}\n:host .cds-aichat--container--render :where(cds-aichat-shell[workspace-in-container]).cds-aichat--standard-width .cds-aichat--message__avatar-line + .cds-aichat--message--padding .cds-aichat--assistant-message > div.cds-aichat--received, :host .cds-aichat--container--render :where(cds-aichat-shell[workspace-in-container]).cds-aichat--wide-width .cds-aichat--message__avatar-line + .cds-aichat--message--padding .cds-aichat--assistant-message > div.cds-aichat--received{\n margin-block-start:0.5rem;\n}\n:host .cds-aichat--container--render :where(cds-aichat-shell[workspace-in-container]).cds-aichat--standard-width .cds-aichat--message .cds-aichat--received.cds-aichat--received--agent-status-message, :host .cds-aichat--container--render :where(cds-aichat-shell[workspace-in-container]).cds-aichat--wide-width .cds-aichat--message .cds-aichat--received.cds-aichat--received--agent-status-message{\n margin-inline:1rem;\n}\n:host .cds-aichat--container--render :where(cds-aichat-shell[workspace-in-container]){\n}\n:host .cds-aichat--container--render :where(cds-aichat-shell[workspace-in-container]).cds-aichat--wide-width .cds-aichat--message .cds-aichat--received, :host .cds-aichat--container--render :where(cds-aichat-shell[workspace-in-container]).cds-aichat--standard-width .cds-aichat--message .cds-aichat--received, :host .cds-aichat--container--render :where(cds-aichat-shell[workspace-in-container]).cds-aichat--wide-width .cds-aichat--message .cds-aichat--sent-container, :host .cds-aichat--container--render :where(cds-aichat-shell[workspace-in-container]).cds-aichat--standard-width .cds-aichat--message .cds-aichat--sent-container{\n margin-inline:1rem;\n}\n:host .cds-aichat--container--render{\n}\n:host .cds-aichat--container--render :where(cds-aichat-shell[show-workspace]) .cds-aichat--message__avatar-line + .cds-aichat--message--padding .cds-aichat--assistant-message > div.cds-aichat--received{\n margin-block-start:0;\n}\n:host .cds-aichat--message-footer{\n display:flex;\n margin-block-start:0.5rem;\n}\n:host{\n}\n:host .cds-aichat--typing-indicator--hidden{\n visibility:hidden;\n}\n:host .cds-aichat--messages--holder{\n display:flex;\n overflow:hidden;\n flex:1;\n flex-direction:column;\n block-size:100%;\n inline-size:100%;\n}\n:host .cds-aichat--messages__wrapper{\n position:relative;\n overflow:hidden auto;\n flex:1;\n block-size:100%;\n inline-size:100%;\n}\n:host .cds-aichat--messages__wrapper:focus{\n outline:none;\n}\n:host .cds-aichat--message--focus-handle,\n:host .cds-aichat--messages--scroll-handle{\n position:absolute;\n display:block;\n overflow:hidden;\n padding:0;\n border:none;\n margin:0;\n block-size:1px;\n clip:rect(0 0 0 0);\n clip-path:inset(50%);\n inline-size:1px;\n outline:none;\n white-space:nowrap;\n}\n:host .cds-aichat--messages--scroll-handle-desktop{\n overflow:hidden;\n padding:0 1rem;\n margin:auto;\n block-size:0;\n max-inline-size:var(--cds-aichat-messages-max-width, 672px);\n pointer-events:none;\n}\n:host .cds-aichat--messages--scroll-handle-desktop:focus{\n padding:1rem;\n block-size:auto;\n pointer-events:auto;\n}\n:host .cds-aichat--messages{\n block-size:100%;\n inline-size:100%;\n}\n:host .cds-aichat--widget--max-width .cds-aichat--messages{\n margin:0 auto;\n max-inline-size:var(--cds-aichat-messages-max-width, 672px);\n}\n:host .cds-aichat--processing{\n display:flex;\n align-items:center;\n}\n:host .cds-aichat--processing-component{\n block-size:32px;\n}\n:host .cds-aichat--processing-label{\n font-size:var(--cds-label-02-font-size, 0.875rem);\n font-weight:var(--cds-label-02-font-weight, 400);\n line-height:var(--cds-label-02-line-height, 1.28572);\n letter-spacing:var(--cds-label-02-letter-spacing, 0.16px);\n display:flex;\n align-items:center;\n block-size:32px;\n color:var(--cds-text-secondary, #525252);\n font-style:italic;\n opacity:0;\n padding-inline-start:0.125rem;\n}\n@media (prefers-reduced-motion: no-preference){\n :host .cds-aichat--processing-label{\n animation:cds-aichat-fade-in 600ms forwards;\n animation-delay:1200ms;\n }\n}\n:host .cds-aichat__scroll-to-bottom{\n position:sticky;\n z-index:1;\n inline-size:2rem;\n inset-block-end:1rem;\n inset-inline-start:50%;\n margin-block-start:-2rem;\n transform:translateX(-50%);\n}\n:host .cds-aichat__scroll-to-bottom-button--hidden{\n display:none;\n}\n:host{\n}\n:host .cds--white{\n --cds-ai-aura-end:rgba(255, 255, 255, 0);\n --cds-ai-aura-hover-background:#edf5ff;\n --cds-ai-aura-hover-end:rgba(255, 255, 255, 0);\n --cds-ai-aura-hover-start:rgba(69, 137, 255, 0.32);\n --cds-ai-aura-start:rgba(69, 137, 255, 0.1);\n --cds-ai-aura-start-sm:rgba(69, 137, 255, 0.16);\n --cds-ai-border-end:#78a9ff;\n --cds-ai-border-start:rgba(166, 200, 255, 0.64);\n --cds-ai-border-strong:#4589ff;\n --cds-ai-drop-shadow:rgba(15, 98, 254, 0.1);\n --cds-ai-inner-shadow:rgba(69, 137, 255, 0.1);\n --cds-ai-overlay:rgba(0, 17, 65, 0.5);\n --cds-ai-popover-background:#ffffff;\n --cds-ai-popover-caret-bottom:#78a9ff;\n --cds-ai-popover-caret-bottom-background:#eaf1ff;\n --cds-ai-popover-caret-bottom-background-actions:#e9effa;\n --cds-ai-popover-caret-center:#a0c3ff;\n --cds-ai-popover-shadow-outer-01:rgba(0, 67, 206, 0.06);\n --cds-ai-popover-shadow-outer-02:rgba(0, 0, 0, 0.04);\n --cds-ai-skeleton-background:#d0e2ff;\n --cds-ai-skeleton-element-background:#4589ff;\n --cds-background:#ffffff;\n --cds-background-active:rgba(141, 141, 141, 0.5);\n --cds-background-brand:#0f62fe;\n --cds-background-hover:rgba(141, 141, 141, 0.12);\n --cds-background-inverse:#393939;\n --cds-background-inverse-hover:#474747;\n --cds-background-selected:rgba(141, 141, 141, 0.2);\n --cds-background-selected-hover:rgba(141, 141, 141, 0.32);\n --cds-border-disabled:#c6c6c6;\n --cds-border-interactive:#0f62fe;\n --cds-border-inverse:#161616;\n --cds-border-strong-01:#8d8d8d;\n --cds-border-strong-02:#8d8d8d;\n --cds-border-strong-03:#8d8d8d;\n --cds-border-subtle-00:#e0e0e0;\n --cds-border-subtle-01:#c6c6c6;\n --cds-border-subtle-02:#e0e0e0;\n --cds-border-subtle-03:#c6c6c6;\n --cds-border-subtle-selected-01:#c6c6c6;\n --cds-border-subtle-selected-02:#c6c6c6;\n --cds-border-subtle-selected-03:#c6c6c6;\n --cds-border-tile-01:#c6c6c6;\n --cds-border-tile-02:#a8a8a8;\n --cds-border-tile-03:#c6c6c6;\n --cds-chat-avatar-agent:#393939;\n --cds-chat-avatar-bot:#6f6f6f;\n --cds-chat-avatar-user:#0f62fe;\n --cds-chat-bubble-agent:#ffffff;\n --cds-chat-bubble-agent-text:#161616;\n --cds-chat-bubble-border:#e0e0e0;\n --cds-chat-bubble-user:#e0e0e0;\n --cds-chat-bubble-user-text:#161616;\n --cds-chat-button:#0f62fe;\n --cds-chat-button-active:rgba(141, 141, 141, 0.5);\n --cds-chat-button-hover:rgba(141, 141, 141, 0.12);\n --cds-chat-button-selected:rgba(141, 141, 141, 0.2);\n --cds-chat-button-text-hover:#0043ce;\n --cds-chat-button-text-selected:#525252;\n --cds-chat-header-background:#ffffff;\n --cds-chat-header-text:#161616;\n --cds-chat-prompt-background:#ffffff;\n --cds-chat-prompt-border-end:rgba(244, 244, 244, 0);\n --cds-chat-prompt-border-start:#f4f4f4;\n --cds-chat-prompt-text:#161616;\n --cds-chat-shell-background:#ffffff;\n --cds-color-scheme:light;\n --cds-field-01:#f4f4f4;\n --cds-field-02:#ffffff;\n --cds-field-03:#f4f4f4;\n --cds-field-hover-01:#e8e8e8;\n --cds-field-hover-02:#e8e8e8;\n --cds-field-hover-03:#e8e8e8;\n --cds-focus:#0f62fe;\n --cds-focus-inset:#ffffff;\n --cds-focus-inverse:#ffffff;\n --cds-highlight:#d0e2ff;\n --cds-icon-disabled:rgba(22, 22, 22, 0.25);\n --cds-icon-interactive:#0f62fe;\n --cds-icon-inverse:#ffffff;\n --cds-icon-on-color:#ffffff;\n --cds-icon-on-color-disabled:#8d8d8d;\n --cds-icon-primary:#161616;\n --cds-icon-secondary:#525252;\n --cds-interactive:#0f62fe;\n --cds-layer-01:#f4f4f4;\n --cds-layer-02:#ffffff;\n --cds-layer-03:#f4f4f4;\n --cds-layer-accent-01:#e0e0e0;\n --cds-layer-accent-02:#e0e0e0;\n --cds-layer-accent-03:#e0e0e0;\n --cds-layer-accent-active-01:#a8a8a8;\n --cds-layer-accent-active-02:#a8a8a8;\n --cds-layer-accent-active-03:#a8a8a8;\n --cds-layer-accent-hover-01:#d1d1d1;\n --cds-layer-accent-hover-02:#d1d1d1;\n --cds-layer-accent-hover-03:#d1d1d1;\n --cds-layer-active-01:#c6c6c6;\n --cds-layer-active-02:#c6c6c6;\n --cds-layer-active-03:#c6c6c6;\n --cds-layer-background-01:#ffffff;\n --cds-layer-background-02:#f4f4f4;\n --cds-layer-background-03:#ffffff;\n --cds-layer-hover-01:#e8e8e8;\n --cds-layer-hover-02:#e8e8e8;\n --cds-layer-hover-03:#e8e8e8;\n --cds-layer-selected-01:#e0e0e0;\n --cds-layer-selected-02:#e0e0e0;\n --cds-layer-selected-03:#e0e0e0;\n --cds-layer-selected-disabled:#8d8d8d;\n --cds-layer-selected-hover-01:#d1d1d1;\n --cds-layer-selected-hover-02:#d1d1d1;\n --cds-layer-selected-hover-03:#d1d1d1;\n --cds-layer-selected-inverse:#161616;\n --cds-link-inverse:#78a9ff;\n --cds-link-inverse-active:#f4f4f4;\n --cds-link-inverse-hover:#a6c8ff;\n --cds-link-inverse-visited:#be95ff;\n --cds-link-primary:#0f62fe;\n --cds-link-primary-hover:#0043ce;\n --cds-link-secondary:#0043ce;\n --cds-link-visited:#8a3ffc;\n --cds-overlay:rgba(0, 0, 0, 0.6);\n --cds-shadow:rgba(0, 0, 0, 0.3);\n --cds-skeleton-background:#e8e8e8;\n --cds-skeleton-element:#c6c6c6;\n --cds-support-caution-major:#ff832b;\n --cds-support-caution-minor:#f1c21b;\n --cds-support-caution-undefined:#8a3ffc;\n --cds-support-error:#da1e28;\n --cds-support-error-inverse:#fa4d56;\n --cds-support-info:#0043ce;\n --cds-support-info-inverse:#4589ff;\n --cds-support-success:#24a148;\n --cds-support-success-inverse:#42be65;\n --cds-support-warning:#f1c21b;\n --cds-support-warning-inverse:#f1c21b;\n --cds-syntax-angle-bracket:#697077;\n --cds-syntax-annotation:#007d79;\n --cds-syntax-arithmetic-operator:#343a3f;\n --cds-syntax-atom:#161616;\n --cds-syntax-attribute:#00539a;\n --cds-syntax-attribute-name:#00539a;\n --cds-syntax-attribute-value:#161616;\n --cds-syntax-bitwise-operator:#343a3f;\n --cds-syntax-block-comment:#198038;\n --cds-syntax-bool:#161616;\n --cds-syntax-brace:#343a3f;\n --cds-syntax-bracket:#343a3f;\n --cds-syntax-character:#161616;\n --cds-syntax-class-name:#007d79;\n --cds-syntax-color:#161616;\n --cds-syntax-comment:#198038;\n --cds-syntax-compare-operator:#343a3f;\n --cds-syntax-constant:#0f62fe;\n --cds-syntax-content:#161616;\n --cds-syntax-content-separator:#343a3f;\n --cds-syntax-control-keyword:#6929c4;\n --cds-syntax-control-operator:#6929c4;\n --cds-syntax-definition:#00539a;\n --cds-syntax-definition-keyword:#00539a;\n --cds-syntax-definition-operator:#00539a;\n --cds-syntax-deref-operator:#343a3f;\n --cds-syntax-doc-comment:#198038;\n --cds-syntax-doc-string:#161616;\n --cds-syntax-document-meta:#198038;\n --cds-syntax-emphasis:#161616;\n --cds-syntax-escape:#343a3f;\n --cds-syntax-float:#198038;\n --cds-syntax-function:#8e6a00;\n --cds-syntax-heading:#00539a;\n --cds-syntax-heading-1:#00539a;\n --cds-syntax-heading-2:#00539a;\n --cds-syntax-heading-3:#00539a;\n --cds-syntax-heading-4:#00539a;\n --cds-syntax-heading-5:#00539a;\n --cds-syntax-heading-6:#00539a;\n --cds-syntax-integer:#198038;\n --cds-syntax-invalid:#da1e28;\n --cds-syntax-keyword:#0f62fe;\n --cds-syntax-label-name:#0f62fe;\n --cds-syntax-line-comment:#198038;\n --cds-syntax-link:#0f62fe;\n --cds-syntax-list:#161616;\n --cds-syntax-literal:#161616;\n --cds-syntax-local:#0f62fe;\n --cds-syntax-logic-operator:#343a3f;\n --cds-syntax-macro-name:#161616;\n --cds-syntax-meta:#198038;\n --cds-syntax-modifier:#0f62fe;\n --cds-syntax-module-keyword:#6929c4;\n --cds-syntax-monospace:#161616;\n --cds-syntax-name:#0f62fe;\n --cds-syntax-namespace:#007d79;\n --cds-syntax-null:#161616;\n --cds-syntax-number:#198038;\n --cds-syntax-operator:#343a3f;\n --cds-syntax-operator-keyword:#0f62fe;\n --cds-syntax-paren:#343a3f;\n --cds-syntax-processing-instruction:#161616;\n --cds-syntax-property-name:#00539a;\n --cds-syntax-punctuation:#343a3f;\n --cds-syntax-quote:#198038;\n --cds-syntax-regexp:#6929c4;\n --cds-syntax-self:#007d79;\n --cds-syntax-separator:#343a3f;\n --cds-syntax-special:#0f62fe;\n --cds-syntax-special-string:#8a3ffc;\n --cds-syntax-square-bracket:#343a3f;\n --cds-syntax-standard:#0f62fe;\n --cds-syntax-strikethrough:#161616;\n --cds-syntax-string:#161616;\n --cds-syntax-strong:#161616;\n --cds-syntax-tag:#007d79;\n --cds-syntax-tag-name:#007d79;\n --cds-syntax-type:#007d79;\n --cds-syntax-type-name:#007d79;\n --cds-syntax-type-operator:#007d79;\n --cds-syntax-unit:#198038;\n --cds-syntax-update-operator:#343a3f;\n --cds-syntax-url:#343a3f;\n --cds-syntax-variable:#0f62fe;\n --cds-syntax-variable-name:#0f62fe;\n --cds-text-disabled:rgba(22, 22, 22, 0.25);\n --cds-text-error:#da1e28;\n --cds-text-helper:#6f6f6f;\n --cds-text-inverse:#ffffff;\n --cds-text-on-color:#ffffff;\n --cds-text-on-color-disabled:#8d8d8d;\n --cds-text-placeholder:rgba(22, 22, 22, 0.4);\n --cds-text-primary:#161616;\n --cds-text-secondary:#525252;\n --cds-toggle-off:#8d8d8d;\n --cds-spacing-01:0.125rem;\n --cds-spacing-02:0.25rem;\n --cds-spacing-03:0.5rem;\n --cds-spacing-04:0.75rem;\n --cds-spacing-05:1rem;\n --cds-spacing-06:1.5rem;\n --cds-spacing-07:2rem;\n --cds-spacing-08:2.5rem;\n --cds-spacing-09:3rem;\n --cds-spacing-10:4rem;\n --cds-spacing-11:5rem;\n --cds-spacing-12:6rem;\n --cds-spacing-13:10rem;\n --cds-fluid-spacing-01:0;\n --cds-fluid-spacing-02:2vw;\n --cds-fluid-spacing-03:5vw;\n --cds-fluid-spacing-04:10vw;\n --cds-caption-01-font-size:0.75rem;\n --cds-caption-01-font-weight:400;\n --cds-caption-01-line-height:1.33333;\n --cds-caption-01-letter-spacing:0.32px;\n --cds-caption-02-font-size:0.875rem;\n --cds-caption-02-font-weight:400;\n --cds-caption-02-line-height:1.28572;\n --cds-caption-02-letter-spacing:0.32px;\n --cds-label-01-font-size:0.75rem;\n --cds-label-01-font-weight:400;\n --cds-label-01-line-height:1.33333;\n --cds-label-01-letter-spacing:0.32px;\n --cds-label-02-font-size:0.875rem;\n --cds-label-02-font-weight:400;\n --cds-label-02-line-height:1.28572;\n --cds-label-02-letter-spacing:0.16px;\n --cds-helper-text-01-font-size:0.75rem;\n --cds-helper-text-01-line-height:1.33333;\n --cds-helper-text-01-letter-spacing:0.32px;\n --cds-helper-text-02-font-size:0.875rem;\n --cds-helper-text-02-font-weight:400;\n --cds-helper-text-02-line-height:1.28572;\n --cds-helper-text-02-letter-spacing:0.16px;\n --cds-body-short-01-font-size:0.875rem;\n --cds-body-short-01-font-weight:400;\n --cds-body-short-01-line-height:1.28572;\n --cds-body-short-01-letter-spacing:0.16px;\n --cds-body-short-02-font-size:1rem;\n --cds-body-short-02-font-weight:400;\n --cds-body-short-02-line-height:1.375;\n --cds-body-short-02-letter-spacing:0;\n --cds-body-long-01-font-size:0.875rem;\n --cds-body-long-01-font-weight:400;\n --cds-body-long-01-line-height:1.42857;\n --cds-body-long-01-letter-spacing:0.16px;\n --cds-body-long-02-font-size:1rem;\n --cds-body-long-02-font-weight:400;\n --cds-body-long-02-line-height:1.5;\n --cds-body-long-02-letter-spacing:0;\n --cds-code-01-font-family:'IBM Plex Mono', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', monospace;\n --cds-code-01-font-size:0.75rem;\n --cds-code-01-font-weight:400;\n --cds-code-01-line-height:1.33333;\n --cds-code-01-letter-spacing:0.32px;\n --cds-code-02-font-family:'IBM Plex Mono', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', monospace;\n --cds-code-02-font-size:0.875rem;\n --cds-code-02-font-weight:400;\n --cds-code-02-line-height:1.42857;\n --cds-code-02-letter-spacing:0.32px;\n --cds-heading-01-font-size:0.875rem;\n --cds-heading-01-font-weight:600;\n --cds-heading-01-line-height:1.42857;\n --cds-heading-01-letter-spacing:0.16px;\n --cds-heading-02-font-size:1rem;\n --cds-heading-02-font-weight:600;\n --cds-heading-02-line-height:1.5;\n --cds-heading-02-letter-spacing:0;\n --cds-productive-heading-01-font-size:0.875rem;\n --cds-productive-heading-01-font-weight:600;\n --cds-productive-heading-01-line-height:1.28572;\n --cds-productive-heading-01-letter-spacing:0.16px;\n --cds-productive-heading-02-font-size:1rem;\n --cds-productive-heading-02-font-weight:600;\n --cds-productive-heading-02-line-height:1.375;\n --cds-productive-heading-02-letter-spacing:0;\n --cds-productive-heading-03-font-size:1.25rem;\n --cds-productive-heading-03-font-weight:400;\n --cds-productive-heading-03-line-height:1.4;\n --cds-productive-heading-03-letter-spacing:0;\n --cds-productive-heading-04-font-size:1.75rem;\n --cds-productive-heading-04-font-weight:400;\n --cds-productive-heading-04-line-height:1.28572;\n --cds-productive-heading-04-letter-spacing:0;\n --cds-productive-heading-05-font-size:2rem;\n --cds-productive-heading-05-font-weight:400;\n --cds-productive-heading-05-line-height:1.25;\n --cds-productive-heading-05-letter-spacing:0;\n --cds-productive-heading-06-font-size:2.625rem;\n --cds-productive-heading-06-font-weight:300;\n --cds-productive-heading-06-line-height:1.199;\n --cds-productive-heading-06-letter-spacing:0;\n --cds-productive-heading-07-font-size:3.375rem;\n --cds-productive-heading-07-font-weight:300;\n --cds-productive-heading-07-line-height:1.19;\n --cds-productive-heading-07-letter-spacing:0;\n --cds-expressive-paragraph-01-font-size:1.5rem;\n --cds-expressive-paragraph-01-font-weight:300;\n --cds-expressive-paragraph-01-line-height:1.334;\n --cds-expressive-paragraph-01-letter-spacing:0;\n --cds-expressive-heading-01-font-size:0.875rem;\n --cds-expressive-heading-01-font-weight:600;\n --cds-expressive-heading-01-line-height:1.42857;\n --cds-expressive-heading-01-letter-spacing:0.16px;\n --cds-expressive-heading-02-font-size:1rem;\n --cds-expressive-heading-02-font-weight:600;\n --cds-expressive-heading-02-line-height:1.5;\n --cds-expressive-heading-02-letter-spacing:0;\n --cds-expressive-heading-03-font-size:1.25rem;\n --cds-expressive-heading-03-font-weight:400;\n --cds-expressive-heading-03-line-height:1.4;\n --cds-expressive-heading-03-letter-spacing:0;\n --cds-expressive-heading-04-font-size:1.75rem;\n --cds-expressive-heading-04-font-weight:400;\n --cds-expressive-heading-04-line-height:1.28572;\n --cds-expressive-heading-04-letter-spacing:0;\n --cds-expressive-heading-05-font-size:2rem;\n --cds-expressive-heading-05-font-weight:400;\n --cds-expressive-heading-05-line-height:1.25;\n --cds-expressive-heading-05-letter-spacing:0;\n --cds-expressive-heading-06-font-size:2rem;\n --cds-expressive-heading-06-font-weight:600;\n --cds-expressive-heading-06-line-height:1.25;\n --cds-expressive-heading-06-letter-spacing:0;\n --cds-quotation-01-font-family:'IBM Plex Serif', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', serif;\n --cds-quotation-01-font-size:1.25rem;\n --cds-quotation-01-font-weight:400;\n --cds-quotation-01-line-height:1.3;\n --cds-quotation-01-letter-spacing:0;\n --cds-quotation-02-font-family:'IBM Plex Serif', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', serif;\n --cds-quotation-02-font-size:2rem;\n --cds-quotation-02-font-weight:300;\n --cds-quotation-02-line-height:1.25;\n --cds-quotation-02-letter-spacing:0;\n --cds-display-01-font-size:2.625rem;\n --cds-display-01-font-weight:300;\n --cds-display-01-line-height:1.19;\n --cds-display-01-letter-spacing:0;\n --cds-display-02-font-size:2.625rem;\n --cds-display-02-font-weight:600;\n --cds-display-02-line-height:1.19;\n --cds-display-02-letter-spacing:0;\n --cds-display-03-font-size:2.625rem;\n --cds-display-03-font-weight:300;\n --cds-display-03-line-height:1.19;\n --cds-display-03-letter-spacing:0;\n --cds-display-04-font-size:2.625rem;\n --cds-display-04-font-weight:300;\n --cds-display-04-line-height:1.19;\n --cds-display-04-letter-spacing:0;\n --cds-legal-01-font-size:0.75rem;\n --cds-legal-01-font-weight:400;\n --cds-legal-01-line-height:1.33333;\n --cds-legal-01-letter-spacing:0.32px;\n --cds-legal-02-font-size:0.875rem;\n --cds-legal-02-font-weight:400;\n --cds-legal-02-line-height:1.28572;\n --cds-legal-02-letter-spacing:0.16px;\n --cds-body-compact-01-font-size:0.875rem;\n --cds-body-compact-01-font-weight:400;\n --cds-body-compact-01-line-height:1.28572;\n --cds-body-compact-01-letter-spacing:0.16px;\n --cds-body-compact-02-font-size:1rem;\n --cds-body-compact-02-font-weight:400;\n --cds-body-compact-02-line-height:1.375;\n --cds-body-compact-02-letter-spacing:0;\n --cds-heading-compact-01-font-size:0.875rem;\n --cds-heading-compact-01-font-weight:600;\n --cds-heading-compact-01-line-height:1.28572;\n --cds-heading-compact-01-letter-spacing:0.16px;\n --cds-heading-compact-02-font-size:1rem;\n --cds-heading-compact-02-font-weight:600;\n --cds-heading-compact-02-line-height:1.375;\n --cds-heading-compact-02-letter-spacing:0;\n --cds-body-01-font-size:0.875rem;\n --cds-body-01-font-weight:400;\n --cds-body-01-line-height:1.42857;\n --cds-body-01-letter-spacing:0.16px;\n --cds-body-02-font-size:1rem;\n --cds-body-02-font-weight:400;\n --cds-body-02-line-height:1.5;\n --cds-body-02-letter-spacing:0;\n --cds-heading-03-font-size:1.25rem;\n --cds-heading-03-font-weight:400;\n --cds-heading-03-line-height:1.4;\n --cds-heading-03-letter-spacing:0;\n --cds-heading-04-font-size:1.75rem;\n --cds-heading-04-font-weight:400;\n --cds-heading-04-line-height:1.28572;\n --cds-heading-04-letter-spacing:0;\n --cds-heading-05-font-size:2rem;\n --cds-heading-05-font-weight:400;\n --cds-heading-05-line-height:1.25;\n --cds-heading-05-letter-spacing:0;\n --cds-heading-06-font-size:2.625rem;\n --cds-heading-06-font-weight:300;\n --cds-heading-06-line-height:1.199;\n --cds-heading-06-letter-spacing:0;\n --cds-heading-07-font-size:3.375rem;\n --cds-heading-07-font-weight:300;\n --cds-heading-07-line-height:1.19;\n --cds-heading-07-letter-spacing:0;\n --cds-fluid-heading-03-font-size:1.25rem;\n --cds-fluid-heading-03-font-weight:400;\n --cds-fluid-heading-03-line-height:1.4;\n --cds-fluid-heading-03-letter-spacing:0;\n --cds-fluid-heading-04-font-size:1.75rem;\n --cds-fluid-heading-04-font-weight:400;\n --cds-fluid-heading-04-line-height:1.28572;\n --cds-fluid-heading-04-letter-spacing:0;\n --cds-fluid-heading-05-font-size:2rem;\n --cds-fluid-heading-05-font-weight:400;\n --cds-fluid-heading-05-line-height:1.25;\n --cds-fluid-heading-05-letter-spacing:0;\n --cds-fluid-heading-06-font-size:2rem;\n --cds-fluid-heading-06-font-weight:600;\n --cds-fluid-heading-06-line-height:1.25;\n --cds-fluid-heading-06-letter-spacing:0;\n --cds-fluid-paragraph-01-font-size:1.5rem;\n --cds-fluid-paragraph-01-font-weight:300;\n --cds-fluid-paragraph-01-line-height:1.334;\n --cds-fluid-paragraph-01-letter-spacing:0;\n --cds-fluid-quotation-01-font-family:'IBM Plex Serif', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', serif;\n --cds-fluid-quotation-01-font-size:1.25rem;\n --cds-fluid-quotation-01-font-weight:400;\n --cds-fluid-quotation-01-line-height:1.3;\n --cds-fluid-quotation-01-letter-spacing:0;\n --cds-fluid-quotation-02-font-family:'IBM Plex Serif', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', serif;\n --cds-fluid-quotation-02-font-size:2rem;\n --cds-fluid-quotation-02-font-weight:300;\n --cds-fluid-quotation-02-line-height:1.25;\n --cds-fluid-quotation-02-letter-spacing:0;\n --cds-fluid-display-01-font-size:2.625rem;\n --cds-fluid-display-01-font-weight:300;\n --cds-fluid-display-01-line-height:1.19;\n --cds-fluid-display-01-letter-spacing:0;\n --cds-fluid-display-02-font-size:2.625rem;\n --cds-fluid-display-02-font-weight:600;\n --cds-fluid-display-02-line-height:1.19;\n --cds-fluid-display-02-letter-spacing:0;\n --cds-fluid-display-03-font-size:2.625rem;\n --cds-fluid-display-03-font-weight:300;\n --cds-fluid-display-03-line-height:1.19;\n --cds-fluid-display-03-letter-spacing:0;\n --cds-fluid-display-04-font-size:2.625rem;\n --cds-fluid-display-04-font-weight:300;\n --cds-fluid-display-04-line-height:1.19;\n --cds-fluid-display-04-letter-spacing:0;\n --cds-button-separator:#e0e0e0;\n --cds-button-primary:#0f62fe;\n --cds-button-secondary:#393939;\n --cds-button-tertiary:#0f62fe;\n --cds-button-danger-primary:#da1e28;\n --cds-button-danger-secondary:#da1e28;\n --cds-button-danger-active:#750e13;\n --cds-button-primary-active:#002d9c;\n --cds-button-secondary-active:#6f6f6f;\n --cds-button-tertiary-active:#002d9c;\n --cds-button-danger-hover:#b81921;\n --cds-button-primary-hover:#0050e6;\n --cds-button-secondary-hover:#474747;\n --cds-button-tertiary-hover:#0050e6;\n --cds-button-disabled:#c6c6c6;\n color-scheme:var(--cds-color-scheme, light);\n}\n@media screen and (-ms-high-contrast: active), (forced-colors: active){\n :host .cds--white{\n --cds-icon-primary:ButtonText;\n --cds-icon-secondary:ButtonText;\n --cds-icon-interactive:ButtonText;\n --cds-icon-disabled:GrayText;\n --cds-icon-on-color-disabled:GrayText;\n --cds-icon-inverse:SelectedItemText;\n --cds-icon-on-color:SelectedItemText;\n --cds-button-disabled:GrayText;\n --cds-interactive:ButtonText;\n --cds-link-primary:LinkText;\n --cds-link-primary-hover:LinkText;\n --cds-link-secondary:LinkText;\n --cds-link-inverse:SelectedItemText;\n --cds-link-inverse-hover:SelectedItemText;\n --cds-link-inverse-visited:SelectedItemText;\n --cds-link-visited:VisitedText;\n --cds-background-selected:SelectedItem;\n --cds-background-selected-hover:SelectedItem;\n --cds-background-inverse:SelectedItem;\n --cds-layer-selected-inverse:SelectedItem;\n }\n}\n:host .cds--white{\n --cds-layer:var(--cds-layer-01, #f4f4f4);\n --cds-layer-active:var(--cds-layer-active-01, #c6c6c6);\n --cds-layer-background:var(--cds-layer-background-01, #ffffff);\n --cds-layer-hover:var(--cds-layer-hover-01, #e8e8e8);\n --cds-layer-selected:var(--cds-layer-selected-01, #e0e0e0);\n --cds-layer-selected-hover:var(--cds-layer-selected-hover-01, #d1d1d1);\n --cds-layer-accent:var(--cds-layer-accent-01, #e0e0e0);\n --cds-layer-accent-hover:var(--cds-layer-accent-hover-01, #d1d1d1);\n --cds-layer-accent-active:var(--cds-layer-accent-active-01, #a8a8a8);\n --cds-field:var(--cds-field-01, #f4f4f4);\n --cds-field-hover:var(--cds-field-hover-01, #e8e8e8);\n --cds-border-subtle:var(--cds-border-subtle-00, #e0e0e0);\n --cds-border-subtle-selected:var(--cds-border-subtle-selected-01, #c6c6c6);\n --cds-border-strong:var(--cds-border-strong-01, #8d8d8d);\n --cds-border-tile:var(--cds-border-tile-01, #c6c6c6);\n}\n:host .cds--g10{\n --cds-ai-aura-end:rgba(255, 255, 255, 0);\n --cds-ai-aura-hover-background:#edf5ff;\n --cds-ai-aura-hover-end:rgba(255, 255, 255, 0);\n --cds-ai-aura-hover-start:rgba(69, 137, 255, 0.32);\n --cds-ai-aura-start:rgba(69, 137, 255, 0.1);\n --cds-ai-aura-start-sm:rgba(69, 137, 255, 0.16);\n --cds-ai-border-end:#78a9ff;\n --cds-ai-border-start:rgba(166, 200, 255, 0.64);\n --cds-ai-border-strong:#4589ff;\n --cds-ai-drop-shadow:rgba(15, 98, 254, 0.1);\n --cds-ai-inner-shadow:rgba(69, 137, 255, 0.1);\n --cds-ai-overlay:rgba(0, 17, 65, 0.5);\n --cds-ai-popover-background:#ffffff;\n --cds-ai-popover-caret-bottom:#78a9ff;\n --cds-ai-popover-caret-bottom-background:#eaf1ff;\n --cds-ai-popover-caret-bottom-background-actions:#e9effa;\n --cds-ai-popover-caret-center:#a0c3ff;\n --cds-ai-popover-shadow-outer-01:rgba(0, 67, 206, 0.06);\n --cds-ai-popover-shadow-outer-02:rgba(0, 0, 0, 0.04);\n --cds-ai-skeleton-background:#d0e2ff;\n --cds-ai-skeleton-element-background:#4589ff;\n --cds-background:#f4f4f4;\n --cds-background-active:rgba(141, 141, 141, 0.5);\n --cds-background-brand:#0f62fe;\n --cds-background-hover:rgba(141, 141, 141, 0.12);\n --cds-background-inverse:#393939;\n --cds-background-inverse-hover:#474747;\n --cds-background-selected:rgba(141, 141, 141, 0.2);\n --cds-background-selected-hover:rgba(141, 141, 141, 0.32);\n --cds-border-disabled:#c6c6c6;\n --cds-border-interactive:#0f62fe;\n --cds-border-inverse:#161616;\n --cds-border-strong-01:#8d8d8d;\n --cds-border-strong-02:#8d8d8d;\n --cds-border-strong-03:#8d8d8d;\n --cds-border-subtle-00:#c6c6c6;\n --cds-border-subtle-01:#e0e0e0;\n --cds-border-subtle-02:#c6c6c6;\n --cds-border-subtle-03:#e0e0e0;\n --cds-border-subtle-selected-01:#c6c6c6;\n --cds-border-subtle-selected-02:#c6c6c6;\n --cds-border-subtle-selected-03:#c6c6c6;\n --cds-border-tile-01:#a8a8a8;\n --cds-border-tile-02:#c6c6c6;\n --cds-border-tile-03:#a8a8a8;\n --cds-chat-avatar-agent:#393939;\n --cds-chat-avatar-bot:#6f6f6f;\n --cds-chat-avatar-user:#0f62fe;\n --cds-chat-bubble-agent:#ffffff;\n --cds-chat-bubble-agent-text:#161616;\n --cds-chat-bubble-border:#e0e0e0;\n --cds-chat-bubble-user:#e0e0e0;\n --cds-chat-bubble-user-text:#161616;\n --cds-chat-button:#0f62fe;\n --cds-chat-button-active:rgba(141, 141, 141, 0.5);\n --cds-chat-button-hover:rgba(141, 141, 141, 0.12);\n --cds-chat-button-selected:rgba(141, 141, 141, 0.2);\n --cds-chat-button-text-hover:#0043ce;\n --cds-chat-button-text-selected:#525252;\n --cds-chat-header-background:#ffffff;\n --cds-chat-header-text:#161616;\n --cds-chat-prompt-background:#ffffff;\n --cds-chat-prompt-border-end:rgba(244, 244, 244, 0);\n --cds-chat-prompt-border-start:#f4f4f4;\n --cds-chat-prompt-text:#161616;\n --cds-chat-shell-background:#ffffff;\n --cds-color-scheme:light;\n --cds-field-01:#ffffff;\n --cds-field-02:#f4f4f4;\n --cds-field-03:#ffffff;\n --cds-field-hover-01:#e8e8e8;\n --cds-field-hover-02:#e8e8e8;\n --cds-field-hover-03:#e8e8e8;\n --cds-focus:#0f62fe;\n --cds-focus-inset:#ffffff;\n --cds-focus-inverse:#ffffff;\n --cds-highlight:#d0e2ff;\n --cds-icon-disabled:rgba(22, 22, 22, 0.25);\n --cds-icon-interactive:#0f62fe;\n --cds-icon-inverse:#ffffff;\n --cds-icon-on-color:#ffffff;\n --cds-icon-on-color-disabled:#8d8d8d;\n --cds-icon-primary:#161616;\n --cds-icon-secondary:#525252;\n --cds-interactive:#0f62fe;\n --cds-layer-01:#ffffff;\n --cds-layer-02:#f4f4f4;\n --cds-layer-03:#ffffff;\n --cds-layer-accent-01:#e0e0e0;\n --cds-layer-accent-02:#e0e0e0;\n --cds-layer-accent-03:#e0e0e0;\n --cds-layer-accent-active-01:#a8a8a8;\n --cds-layer-accent-active-02:#a8a8a8;\n --cds-layer-accent-active-03:#a8a8a8;\n --cds-layer-accent-hover-01:#d1d1d1;\n --cds-layer-accent-hover-02:#d1d1d1;\n --cds-layer-accent-hover-03:#d1d1d1;\n --cds-layer-active-01:#c6c6c6;\n --cds-layer-active-02:#c6c6c6;\n --cds-layer-active-03:#c6c6c6;\n --cds-layer-background-01:#f4f4f4;\n --cds-layer-background-02:#ffffff;\n --cds-layer-background-03:#f4f4f4;\n --cds-layer-hover-01:#e8e8e8;\n --cds-layer-hover-02:#e8e8e8;\n --cds-layer-hover-03:#e8e8e8;\n --cds-layer-selected-01:#e0e0e0;\n --cds-layer-selected-02:#e0e0e0;\n --cds-layer-selected-03:#e0e0e0;\n --cds-layer-selected-disabled:#8d8d8d;\n --cds-layer-selected-hover-01:#d1d1d1;\n --cds-layer-selected-hover-02:#d1d1d1;\n --cds-layer-selected-hover-03:#d1d1d1;\n --cds-layer-selected-inverse:#161616;\n --cds-link-inverse:#78a9ff;\n --cds-link-inverse-active:#f4f4f4;\n --cds-link-inverse-hover:#a6c8ff;\n --cds-link-inverse-visited:#be95ff;\n --cds-link-primary:#0f62fe;\n --cds-link-primary-hover:#0043ce;\n --cds-link-secondary:#0043ce;\n --cds-link-visited:#8a3ffc;\n --cds-overlay:rgba(0, 0, 0, 0.6);\n --cds-shadow:rgba(0, 0, 0, 0.3);\n --cds-skeleton-background:#e8e8e8;\n --cds-skeleton-element:#c6c6c6;\n --cds-support-caution-major:#ff832b;\n --cds-support-caution-minor:#f1c21b;\n --cds-support-caution-undefined:#8a3ffc;\n --cds-support-error:#da1e28;\n --cds-support-error-inverse:#fa4d56;\n --cds-support-info:#0043ce;\n --cds-support-info-inverse:#4589ff;\n --cds-support-success:#24a148;\n --cds-support-success-inverse:#42be65;\n --cds-support-warning:#f1c21b;\n --cds-support-warning-inverse:#f1c21b;\n --cds-syntax-angle-bracket:#697077;\n --cds-syntax-annotation:#007d79;\n --cds-syntax-arithmetic-operator:#343a3f;\n --cds-syntax-atom:#161616;\n --cds-syntax-attribute:#00539a;\n --cds-syntax-attribute-name:#00539a;\n --cds-syntax-attribute-value:#161616;\n --cds-syntax-bitwise-operator:#343a3f;\n --cds-syntax-block-comment:#198038;\n --cds-syntax-bool:#161616;\n --cds-syntax-brace:#343a3f;\n --cds-syntax-bracket:#343a3f;\n --cds-syntax-character:#161616;\n --cds-syntax-class-name:#007d79;\n --cds-syntax-color:#161616;\n --cds-syntax-comment:#198038;\n --cds-syntax-compare-operator:#343a3f;\n --cds-syntax-constant:#0f62fe;\n --cds-syntax-content:#161616;\n --cds-syntax-content-separator:#343a3f;\n --cds-syntax-control-keyword:#6929c4;\n --cds-syntax-control-operator:#6929c4;\n --cds-syntax-definition:#00539a;\n --cds-syntax-definition-keyword:#00539a;\n --cds-syntax-definition-operator:#00539a;\n --cds-syntax-deref-operator:#343a3f;\n --cds-syntax-doc-comment:#198038;\n --cds-syntax-doc-string:#161616;\n --cds-syntax-document-meta:#198038;\n --cds-syntax-emphasis:#161616;\n --cds-syntax-escape:#343a3f;\n --cds-syntax-float:#198038;\n --cds-syntax-function:#8e6a00;\n --cds-syntax-heading:#00539a;\n --cds-syntax-heading-1:#00539a;\n --cds-syntax-heading-2:#00539a;\n --cds-syntax-heading-3:#00539a;\n --cds-syntax-heading-4:#00539a;\n --cds-syntax-heading-5:#00539a;\n --cds-syntax-heading-6:#00539a;\n --cds-syntax-integer:#198038;\n --cds-syntax-invalid:#da1e28;\n --cds-syntax-keyword:#0f62fe;\n --cds-syntax-label-name:#0f62fe;\n --cds-syntax-line-comment:#198038;\n --cds-syntax-link:#0f62fe;\n --cds-syntax-list:#161616;\n --cds-syntax-literal:#161616;\n --cds-syntax-local:#0f62fe;\n --cds-syntax-logic-operator:#343a3f;\n --cds-syntax-macro-name:#161616;\n --cds-syntax-meta:#198038;\n --cds-syntax-modifier:#0f62fe;\n --cds-syntax-module-keyword:#6929c4;\n --cds-syntax-monospace:#161616;\n --cds-syntax-name:#0f62fe;\n --cds-syntax-namespace:#007d79;\n --cds-syntax-null:#161616;\n --cds-syntax-number:#198038;\n --cds-syntax-operator:#343a3f;\n --cds-syntax-operator-keyword:#0f62fe;\n --cds-syntax-paren:#343a3f;\n --cds-syntax-processing-instruction:#161616;\n --cds-syntax-property-name:#00539a;\n --cds-syntax-punctuation:#343a3f;\n --cds-syntax-quote:#198038;\n --cds-syntax-regexp:#6929c4;\n --cds-syntax-self:#007d79;\n --cds-syntax-separator:#343a3f;\n --cds-syntax-special:#0f62fe;\n --cds-syntax-special-string:#8a3ffc;\n --cds-syntax-square-bracket:#343a3f;\n --cds-syntax-standard:#0f62fe;\n --cds-syntax-strikethrough:#161616;\n --cds-syntax-string:#161616;\n --cds-syntax-strong:#161616;\n --cds-syntax-tag:#007d79;\n --cds-syntax-tag-name:#007d79;\n --cds-syntax-type:#007d79;\n --cds-syntax-type-name:#007d79;\n --cds-syntax-type-operator:#007d79;\n --cds-syntax-unit:#198038;\n --cds-syntax-update-operator:#343a3f;\n --cds-syntax-url:#343a3f;\n --cds-syntax-variable:#0f62fe;\n --cds-syntax-variable-name:#0f62fe;\n --cds-text-disabled:rgba(22, 22, 22, 0.25);\n --cds-text-error:#da1e28;\n --cds-text-helper:#6f6f6f;\n --cds-text-inverse:#ffffff;\n --cds-text-on-color:#ffffff;\n --cds-text-on-color-disabled:#8d8d8d;\n --cds-text-placeholder:rgba(22, 22, 22, 0.4);\n --cds-text-primary:#161616;\n --cds-text-secondary:#525252;\n --cds-toggle-off:#8d8d8d;\n --cds-spacing-01:0.125rem;\n --cds-spacing-02:0.25rem;\n --cds-spacing-03:0.5rem;\n --cds-spacing-04:0.75rem;\n --cds-spacing-05:1rem;\n --cds-spacing-06:1.5rem;\n --cds-spacing-07:2rem;\n --cds-spacing-08:2.5rem;\n --cds-spacing-09:3rem;\n --cds-spacing-10:4rem;\n --cds-spacing-11:5rem;\n --cds-spacing-12:6rem;\n --cds-spacing-13:10rem;\n --cds-fluid-spacing-01:0;\n --cds-fluid-spacing-02:2vw;\n --cds-fluid-spacing-03:5vw;\n --cds-fluid-spacing-04:10vw;\n --cds-caption-01-font-size:0.75rem;\n --cds-caption-01-font-weight:400;\n --cds-caption-01-line-height:1.33333;\n --cds-caption-01-letter-spacing:0.32px;\n --cds-caption-02-font-size:0.875rem;\n --cds-caption-02-font-weight:400;\n --cds-caption-02-line-height:1.28572;\n --cds-caption-02-letter-spacing:0.32px;\n --cds-label-01-font-size:0.75rem;\n --cds-label-01-font-weight:400;\n --cds-label-01-line-height:1.33333;\n --cds-label-01-letter-spacing:0.32px;\n --cds-label-02-font-size:0.875rem;\n --cds-label-02-font-weight:400;\n --cds-label-02-line-height:1.28572;\n --cds-label-02-letter-spacing:0.16px;\n --cds-helper-text-01-font-size:0.75rem;\n --cds-helper-text-01-line-height:1.33333;\n --cds-helper-text-01-letter-spacing:0.32px;\n --cds-helper-text-02-font-size:0.875rem;\n --cds-helper-text-02-font-weight:400;\n --cds-helper-text-02-line-height:1.28572;\n --cds-helper-text-02-letter-spacing:0.16px;\n --cds-body-short-01-font-size:0.875rem;\n --cds-body-short-01-font-weight:400;\n --cds-body-short-01-line-height:1.28572;\n --cds-body-short-01-letter-spacing:0.16px;\n --cds-body-short-02-font-size:1rem;\n --cds-body-short-02-font-weight:400;\n --cds-body-short-02-line-height:1.375;\n --cds-body-short-02-letter-spacing:0;\n --cds-body-long-01-font-size:0.875rem;\n --cds-body-long-01-font-weight:400;\n --cds-body-long-01-line-height:1.42857;\n --cds-body-long-01-letter-spacing:0.16px;\n --cds-body-long-02-font-size:1rem;\n --cds-body-long-02-font-weight:400;\n --cds-body-long-02-line-height:1.5;\n --cds-body-long-02-letter-spacing:0;\n --cds-code-01-font-family:'IBM Plex Mono', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', monospace;\n --cds-code-01-font-size:0.75rem;\n --cds-code-01-font-weight:400;\n --cds-code-01-line-height:1.33333;\n --cds-code-01-letter-spacing:0.32px;\n --cds-code-02-font-family:'IBM Plex Mono', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', monospace;\n --cds-code-02-font-size:0.875rem;\n --cds-code-02-font-weight:400;\n --cds-code-02-line-height:1.42857;\n --cds-code-02-letter-spacing:0.32px;\n --cds-heading-01-font-size:0.875rem;\n --cds-heading-01-font-weight:600;\n --cds-heading-01-line-height:1.42857;\n --cds-heading-01-letter-spacing:0.16px;\n --cds-heading-02-font-size:1rem;\n --cds-heading-02-font-weight:600;\n --cds-heading-02-line-height:1.5;\n --cds-heading-02-letter-spacing:0;\n --cds-productive-heading-01-font-size:0.875rem;\n --cds-productive-heading-01-font-weight:600;\n --cds-productive-heading-01-line-height:1.28572;\n --cds-productive-heading-01-letter-spacing:0.16px;\n --cds-productive-heading-02-font-size:1rem;\n --cds-productive-heading-02-font-weight:600;\n --cds-productive-heading-02-line-height:1.375;\n --cds-productive-heading-02-letter-spacing:0;\n --cds-productive-heading-03-font-size:1.25rem;\n --cds-productive-heading-03-font-weight:400;\n --cds-productive-heading-03-line-height:1.4;\n --cds-productive-heading-03-letter-spacing:0;\n --cds-productive-heading-04-font-size:1.75rem;\n --cds-productive-heading-04-font-weight:400;\n --cds-productive-heading-04-line-height:1.28572;\n --cds-productive-heading-04-letter-spacing:0;\n --cds-productive-heading-05-font-size:2rem;\n --cds-productive-heading-05-font-weight:400;\n --cds-productive-heading-05-line-height:1.25;\n --cds-productive-heading-05-letter-spacing:0;\n --cds-productive-heading-06-font-size:2.625rem;\n --cds-productive-heading-06-font-weight:300;\n --cds-productive-heading-06-line-height:1.199;\n --cds-productive-heading-06-letter-spacing:0;\n --cds-productive-heading-07-font-size:3.375rem;\n --cds-productive-heading-07-font-weight:300;\n --cds-productive-heading-07-line-height:1.19;\n --cds-productive-heading-07-letter-spacing:0;\n --cds-expressive-paragraph-01-font-size:1.5rem;\n --cds-expressive-paragraph-01-font-weight:300;\n --cds-expressive-paragraph-01-line-height:1.334;\n --cds-expressive-paragraph-01-letter-spacing:0;\n --cds-expressive-heading-01-font-size:0.875rem;\n --cds-expressive-heading-01-font-weight:600;\n --cds-expressive-heading-01-line-height:1.42857;\n --cds-expressive-heading-01-letter-spacing:0.16px;\n --cds-expressive-heading-02-font-size:1rem;\n --cds-expressive-heading-02-font-weight:600;\n --cds-expressive-heading-02-line-height:1.5;\n --cds-expressive-heading-02-letter-spacing:0;\n --cds-expressive-heading-03-font-size:1.25rem;\n --cds-expressive-heading-03-font-weight:400;\n --cds-expressive-heading-03-line-height:1.4;\n --cds-expressive-heading-03-letter-spacing:0;\n --cds-expressive-heading-04-font-size:1.75rem;\n --cds-expressive-heading-04-font-weight:400;\n --cds-expressive-heading-04-line-height:1.28572;\n --cds-expressive-heading-04-letter-spacing:0;\n --cds-expressive-heading-05-font-size:2rem;\n --cds-expressive-heading-05-font-weight:400;\n --cds-expressive-heading-05-line-height:1.25;\n --cds-expressive-heading-05-letter-spacing:0;\n --cds-expressive-heading-06-font-size:2rem;\n --cds-expressive-heading-06-font-weight:600;\n --cds-expressive-heading-06-line-height:1.25;\n --cds-expressive-heading-06-letter-spacing:0;\n --cds-quotation-01-font-family:'IBM Plex Serif', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', serif;\n --cds-quotation-01-font-size:1.25rem;\n --cds-quotation-01-font-weight:400;\n --cds-quotation-01-line-height:1.3;\n --cds-quotation-01-letter-spacing:0;\n --cds-quotation-02-font-family:'IBM Plex Serif', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', serif;\n --cds-quotation-02-font-size:2rem;\n --cds-quotation-02-font-weight:300;\n --cds-quotation-02-line-height:1.25;\n --cds-quotation-02-letter-spacing:0;\n --cds-display-01-font-size:2.625rem;\n --cds-display-01-font-weight:300;\n --cds-display-01-line-height:1.19;\n --cds-display-01-letter-spacing:0;\n --cds-display-02-font-size:2.625rem;\n --cds-display-02-font-weight:600;\n --cds-display-02-line-height:1.19;\n --cds-display-02-letter-spacing:0;\n --cds-display-03-font-size:2.625rem;\n --cds-display-03-font-weight:300;\n --cds-display-03-line-height:1.19;\n --cds-display-03-letter-spacing:0;\n --cds-display-04-font-size:2.625rem;\n --cds-display-04-font-weight:300;\n --cds-display-04-line-height:1.19;\n --cds-display-04-letter-spacing:0;\n --cds-legal-01-font-size:0.75rem;\n --cds-legal-01-font-weight:400;\n --cds-legal-01-line-height:1.33333;\n --cds-legal-01-letter-spacing:0.32px;\n --cds-legal-02-font-size:0.875rem;\n --cds-legal-02-font-weight:400;\n --cds-legal-02-line-height:1.28572;\n --cds-legal-02-letter-spacing:0.16px;\n --cds-body-compact-01-font-size:0.875rem;\n --cds-body-compact-01-font-weight:400;\n --cds-body-compact-01-line-height:1.28572;\n --cds-body-compact-01-letter-spacing:0.16px;\n --cds-body-compact-02-font-size:1rem;\n --cds-body-compact-02-font-weight:400;\n --cds-body-compact-02-line-height:1.375;\n --cds-body-compact-02-letter-spacing:0;\n --cds-heading-compact-01-font-size:0.875rem;\n --cds-heading-compact-01-font-weight:600;\n --cds-heading-compact-01-line-height:1.28572;\n --cds-heading-compact-01-letter-spacing:0.16px;\n --cds-heading-compact-02-font-size:1rem;\n --cds-heading-compact-02-font-weight:600;\n --cds-heading-compact-02-line-height:1.375;\n --cds-heading-compact-02-letter-spacing:0;\n --cds-body-01-font-size:0.875rem;\n --cds-body-01-font-weight:400;\n --cds-body-01-line-height:1.42857;\n --cds-body-01-letter-spacing:0.16px;\n --cds-body-02-font-size:1rem;\n --cds-body-02-font-weight:400;\n --cds-body-02-line-height:1.5;\n --cds-body-02-letter-spacing:0;\n --cds-heading-03-font-size:1.25rem;\n --cds-heading-03-font-weight:400;\n --cds-heading-03-line-height:1.4;\n --cds-heading-03-letter-spacing:0;\n --cds-heading-04-font-size:1.75rem;\n --cds-heading-04-font-weight:400;\n --cds-heading-04-line-height:1.28572;\n --cds-heading-04-letter-spacing:0;\n --cds-heading-05-font-size:2rem;\n --cds-heading-05-font-weight:400;\n --cds-heading-05-line-height:1.25;\n --cds-heading-05-letter-spacing:0;\n --cds-heading-06-font-size:2.625rem;\n --cds-heading-06-font-weight:300;\n --cds-heading-06-line-height:1.199;\n --cds-heading-06-letter-spacing:0;\n --cds-heading-07-font-size:3.375rem;\n --cds-heading-07-font-weight:300;\n --cds-heading-07-line-height:1.19;\n --cds-heading-07-letter-spacing:0;\n --cds-fluid-heading-03-font-size:1.25rem;\n --cds-fluid-heading-03-font-weight:400;\n --cds-fluid-heading-03-line-height:1.4;\n --cds-fluid-heading-03-letter-spacing:0;\n --cds-fluid-heading-04-font-size:1.75rem;\n --cds-fluid-heading-04-font-weight:400;\n --cds-fluid-heading-04-line-height:1.28572;\n --cds-fluid-heading-04-letter-spacing:0;\n --cds-fluid-heading-05-font-size:2rem;\n --cds-fluid-heading-05-font-weight:400;\n --cds-fluid-heading-05-line-height:1.25;\n --cds-fluid-heading-05-letter-spacing:0;\n --cds-fluid-heading-06-font-size:2rem;\n --cds-fluid-heading-06-font-weight:600;\n --cds-fluid-heading-06-line-height:1.25;\n --cds-fluid-heading-06-letter-spacing:0;\n --cds-fluid-paragraph-01-font-size:1.5rem;\n --cds-fluid-paragraph-01-font-weight:300;\n --cds-fluid-paragraph-01-line-height:1.334;\n --cds-fluid-paragraph-01-letter-spacing:0;\n --cds-fluid-quotation-01-font-family:'IBM Plex Serif', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', serif;\n --cds-fluid-quotation-01-font-size:1.25rem;\n --cds-fluid-quotation-01-font-weight:400;\n --cds-fluid-quotation-01-line-height:1.3;\n --cds-fluid-quotation-01-letter-spacing:0;\n --cds-fluid-quotation-02-font-family:'IBM Plex Serif', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', serif;\n --cds-fluid-quotation-02-font-size:2rem;\n --cds-fluid-quotation-02-font-weight:300;\n --cds-fluid-quotation-02-line-height:1.25;\n --cds-fluid-quotation-02-letter-spacing:0;\n --cds-fluid-display-01-font-size:2.625rem;\n --cds-fluid-display-01-font-weight:300;\n --cds-fluid-display-01-line-height:1.19;\n --cds-fluid-display-01-letter-spacing:0;\n --cds-fluid-display-02-font-size:2.625rem;\n --cds-fluid-display-02-font-weight:600;\n --cds-fluid-display-02-line-height:1.19;\n --cds-fluid-display-02-letter-spacing:0;\n --cds-fluid-display-03-font-size:2.625rem;\n --cds-fluid-display-03-font-weight:300;\n --cds-fluid-display-03-line-height:1.19;\n --cds-fluid-display-03-letter-spacing:0;\n --cds-fluid-display-04-font-size:2.625rem;\n --cds-fluid-display-04-font-weight:300;\n --cds-fluid-display-04-line-height:1.19;\n --cds-fluid-display-04-letter-spacing:0;\n --cds-button-separator:#e0e0e0;\n --cds-button-primary:#0f62fe;\n --cds-button-secondary:#393939;\n --cds-button-tertiary:#0f62fe;\n --cds-button-danger-primary:#da1e28;\n --cds-button-danger-secondary:#da1e28;\n --cds-button-danger-active:#750e13;\n --cds-button-primary-active:#002d9c;\n --cds-button-secondary-active:#6f6f6f;\n --cds-button-tertiary-active:#002d9c;\n --cds-button-danger-hover:#b81921;\n --cds-button-primary-hover:#0050e6;\n --cds-button-secondary-hover:#474747;\n --cds-button-tertiary-hover:#0050e6;\n --cds-button-disabled:#c6c6c6;\n color-scheme:var(--cds-color-scheme, light);\n}\n@media screen and (-ms-high-contrast: active), (forced-colors: active){\n :host .cds--g10{\n --cds-icon-primary:ButtonText;\n --cds-icon-secondary:ButtonText;\n --cds-icon-interactive:ButtonText;\n --cds-icon-disabled:GrayText;\n --cds-icon-on-color-disabled:GrayText;\n --cds-icon-inverse:SelectedItemText;\n --cds-icon-on-color:SelectedItemText;\n --cds-button-disabled:GrayText;\n --cds-interactive:ButtonText;\n --cds-link-primary:LinkText;\n --cds-link-primary-hover:LinkText;\n --cds-link-secondary:LinkText;\n --cds-link-inverse:SelectedItemText;\n --cds-link-inverse-hover:SelectedItemText;\n --cds-link-inverse-visited:SelectedItemText;\n --cds-link-visited:VisitedText;\n --cds-background-selected:SelectedItem;\n --cds-background-selected-hover:SelectedItem;\n --cds-background-inverse:SelectedItem;\n --cds-layer-selected-inverse:SelectedItem;\n }\n}\n:host .cds--g10{\n --cds-layer:var(--cds-layer-01, #f4f4f4);\n --cds-layer-active:var(--cds-layer-active-01, #c6c6c6);\n --cds-layer-background:var(--cds-layer-background-01, #ffffff);\n --cds-layer-hover:var(--cds-layer-hover-01, #e8e8e8);\n --cds-layer-selected:var(--cds-layer-selected-01, #e0e0e0);\n --cds-layer-selected-hover:var(--cds-layer-selected-hover-01, #d1d1d1);\n --cds-layer-accent:var(--cds-layer-accent-01, #e0e0e0);\n --cds-layer-accent-hover:var(--cds-layer-accent-hover-01, #d1d1d1);\n --cds-layer-accent-active:var(--cds-layer-accent-active-01, #a8a8a8);\n --cds-field:var(--cds-field-01, #f4f4f4);\n --cds-field-hover:var(--cds-field-hover-01, #e8e8e8);\n --cds-border-subtle:var(--cds-border-subtle-00, #e0e0e0);\n --cds-border-subtle-selected:var(--cds-border-subtle-selected-01, #c6c6c6);\n --cds-border-strong:var(--cds-border-strong-01, #8d8d8d);\n --cds-border-tile:var(--cds-border-tile-01, #c6c6c6);\n}\n:host .cds--g90{\n --cds-ai-aura-end:rgba(0, 0, 0, 0);\n --cds-ai-aura-hover-background:#474747;\n --cds-ai-aura-hover-end:rgba(0, 0, 0, 0);\n --cds-ai-aura-hover-start:rgba(69, 137, 255, 0.4);\n --cds-ai-aura-start:rgba(69, 137, 255, 0.1);\n --cds-ai-aura-start-sm:rgba(69, 137, 255, 0.16);\n --cds-ai-border-end:#4589ff;\n --cds-ai-border-start:rgba(166, 200, 255, 0.36);\n --cds-ai-border-strong:#78a9ff;\n --cds-ai-drop-shadow:rgba(0, 0, 0, 0.28);\n --cds-ai-inner-shadow:rgba(69, 137, 255, 0.16);\n --cds-ai-overlay:rgba(0, 0, 0, 0.5);\n --cds-ai-popover-background:#161616;\n --cds-ai-popover-caret-bottom:#4589ff;\n --cds-ai-popover-caret-bottom-background:#202d45;\n --cds-ai-popover-caret-bottom-background-actions:#1e283a;\n --cds-ai-popover-caret-center:#4870b5;\n --cds-ai-popover-shadow-outer-01:rgba(0, 0, 0, 0.12);\n --cds-ai-popover-shadow-outer-02:rgba(0, 0, 0, 0.08);\n --cds-ai-skeleton-background:rgba(120, 169, 255, 0.5);\n --cds-ai-skeleton-element-background:rgba(120, 169, 255, 0.3);\n --cds-background:#262626;\n --cds-background-active:rgba(141, 141, 141, 0.4);\n --cds-background-brand:#0f62fe;\n --cds-background-hover:rgba(141, 141, 141, 0.16);\n --cds-background-inverse:#f4f4f4;\n --cds-background-inverse-hover:#e8e8e8;\n --cds-background-selected:rgba(141, 141, 141, 0.24);\n --cds-background-selected-hover:rgba(141, 141, 141, 0.32);\n --cds-border-disabled:rgba(141, 141, 141, 0.5);\n --cds-border-interactive:#4589ff;\n --cds-border-inverse:#f4f4f4;\n --cds-border-strong-01:#8d8d8d;\n --cds-border-strong-02:#a8a8a8;\n --cds-border-strong-03:#c6c6c6;\n --cds-border-subtle-00:#525252;\n --cds-border-subtle-01:#6f6f6f;\n --cds-border-subtle-02:#8d8d8d;\n --cds-border-subtle-03:#8d8d8d;\n --cds-border-subtle-selected-01:#8d8d8d;\n --cds-border-subtle-selected-02:#a8a8a8;\n --cds-border-subtle-selected-03:#a8a8a8;\n --cds-border-tile-01:#6f6f6f;\n --cds-border-tile-02:#8d8d8d;\n --cds-border-tile-03:#a8a8a8;\n --cds-chat-avatar-agent:#c6c6c6;\n --cds-chat-avatar-bot:#8d8d8d;\n --cds-chat-avatar-user:#4589ff;\n --cds-chat-bubble-agent:#262626;\n --cds-chat-bubble-agent-text:#f4f4f4;\n --cds-chat-bubble-border:#525252;\n --cds-chat-bubble-user:#393939;\n --cds-chat-bubble-user-text:#f4f4f4;\n --cds-chat-button:#78a9ff;\n --cds-chat-button-active:rgba(141, 141, 141, 0.4);\n --cds-chat-button-hover:rgba(141, 141, 141, 0.16);\n --cds-chat-button-selected:rgba(141, 141, 141, 0.24);\n --cds-chat-button-text-hover:#a6c8ff;\n --cds-chat-button-text-selected:#c6c6c6;\n --cds-chat-header-background:#262626;\n --cds-chat-header-text:#f4f4f4;\n --cds-chat-prompt-background:#161616;\n --cds-chat-prompt-border-end:rgba(38, 38, 38, 0);\n --cds-chat-prompt-border-start:#262626;\n --cds-chat-prompt-text:#f4f4f4;\n --cds-chat-shell-background:#262626;\n --cds-color-scheme:dark;\n --cds-field-01:#393939;\n --cds-field-02:#525252;\n --cds-field-03:#6f6f6f;\n --cds-field-hover-01:#474747;\n --cds-field-hover-02:#636363;\n --cds-field-hover-03:#5e5e5e;\n --cds-focus:#ffffff;\n --cds-focus-inset:#161616;\n --cds-focus-inverse:#0f62fe;\n --cds-highlight:#002d9c;\n --cds-icon-disabled:rgba(244, 244, 244, 0.25);\n --cds-icon-interactive:#ffffff;\n --cds-icon-inverse:#161616;\n --cds-icon-on-color:#ffffff;\n --cds-icon-on-color-disabled:rgba(255, 255, 255, 0.25);\n --cds-icon-primary:#f4f4f4;\n --cds-icon-secondary:#c6c6c6;\n --cds-interactive:#4589ff;\n --cds-layer-01:#393939;\n --cds-layer-02:#525252;\n --cds-layer-03:#6f6f6f;\n --cds-layer-accent-01:#525252;\n --cds-layer-accent-02:#6f6f6f;\n --cds-layer-accent-03:#8d8d8d;\n --cds-layer-accent-active-01:#8d8d8d;\n --cds-layer-accent-active-02:#393939;\n --cds-layer-accent-active-03:#525252;\n --cds-layer-accent-hover-01:#636363;\n --cds-layer-accent-hover-02:#5e5e5e;\n --cds-layer-accent-hover-03:#7a7a7a;\n --cds-layer-active-01:#6f6f6f;\n --cds-layer-active-02:#8d8d8d;\n --cds-layer-active-03:#393939;\n --cds-layer-background-01:#262626;\n --cds-layer-background-02:#393939;\n --cds-layer-background-03:#525252;\n --cds-layer-hover-01:#474747;\n --cds-layer-hover-02:#636363;\n --cds-layer-hover-03:#5e5e5e;\n --cds-layer-selected-01:#525252;\n --cds-layer-selected-02:#6f6f6f;\n --cds-layer-selected-03:#525252;\n --cds-layer-selected-disabled:#a8a8a8;\n --cds-layer-selected-hover-01:#636363;\n --cds-layer-selected-hover-02:#5e5e5e;\n --cds-layer-selected-hover-03:#636363;\n --cds-layer-selected-inverse:#f4f4f4;\n --cds-link-inverse:#0f62fe;\n --cds-link-inverse-active:#161616;\n --cds-link-inverse-hover:#0043ce;\n --cds-link-inverse-visited:#8a3ffc;\n --cds-link-primary:#78a9ff;\n --cds-link-primary-hover:#a6c8ff;\n --cds-link-secondary:#a6c8ff;\n --cds-link-visited:#be95ff;\n --cds-overlay:rgba(0, 0, 0, 0.6);\n --cds-shadow:rgba(0, 0, 0, 0.8);\n --cds-skeleton-background:#333333;\n --cds-skeleton-element:#525252;\n --cds-support-caution-major:#ff832b;\n --cds-support-caution-minor:#f1c21b;\n --cds-support-caution-undefined:#a56eff;\n --cds-support-error:#ff8389;\n --cds-support-error-inverse:#da1e28;\n --cds-support-info:#4589ff;\n --cds-support-info-inverse:#0043ce;\n --cds-support-success:#42be65;\n --cds-support-success-inverse:#24a148;\n --cds-support-warning:#f1c21b;\n --cds-support-warning-inverse:#f1c21b;\n --cds-syntax-angle-bracket:#8d8d8d;\n --cds-syntax-annotation:#08bdba;\n --cds-syntax-arithmetic-operator:#e0e0e0;\n --cds-syntax-atom:#f4f4f4;\n --cds-syntax-attribute:#33b1ff;\n --cds-syntax-attribute-name:#33b1ff;\n --cds-syntax-attribute-value:#f4f4f4;\n --cds-syntax-bitwise-operator:#e0e0e0;\n --cds-syntax-block-comment:#42be65;\n --cds-syntax-bool:#f4f4f4;\n --cds-syntax-brace:#e0e0e0;\n --cds-syntax-bracket:#e0e0e0;\n --cds-syntax-character:#f4f4f4;\n --cds-syntax-class-name:#3ddbd9;\n --cds-syntax-color:#f4f4f4;\n --cds-syntax-comment:#42be65;\n --cds-syntax-compare-operator:#e0e0e0;\n --cds-syntax-constant:#4589ff;\n --cds-syntax-content:#f4f4f4;\n --cds-syntax-content-separator:#e0e0e0;\n --cds-syntax-control-keyword:#be95ff;\n --cds-syntax-control-operator:#be95ff;\n --cds-syntax-definition:#33b1ff;\n --cds-syntax-definition-keyword:#33b1ff;\n --cds-syntax-definition-operator:#33b1ff;\n --cds-syntax-deref-operator:#e0e0e0;\n --cds-syntax-doc-comment:#42be65;\n --cds-syntax-doc-string:#f4f4f4;\n --cds-syntax-document-meta:#42be65;\n --cds-syntax-emphasis:#f4f4f4;\n --cds-syntax-escape:#e0e0e0;\n --cds-syntax-float:#6fdc8c;\n --cds-syntax-function:#f1c21b;\n --cds-syntax-heading:#33b1ff;\n --cds-syntax-heading-1:#33b1ff;\n --cds-syntax-heading-2:#33b1ff;\n --cds-syntax-heading-3:#33b1ff;\n --cds-syntax-heading-4:#33b1ff;\n --cds-syntax-heading-5:#33b1ff;\n --cds-syntax-heading-6:#33b1ff;\n --cds-syntax-integer:#6fdc8c;\n --cds-syntax-invalid:#fa4d56;\n --cds-syntax-keyword:#4589ff;\n --cds-syntax-label-name:#a6c8ff;\n --cds-syntax-line-comment:#42be65;\n --cds-syntax-link:#4589ff;\n --cds-syntax-list:#f4f4f4;\n --cds-syntax-literal:#f4f4f4;\n --cds-syntax-local:#a6c8ff;\n --cds-syntax-logic-operator:#e0e0e0;\n --cds-syntax-macro-name:#f4f4f4;\n --cds-syntax-meta:#42be65;\n --cds-syntax-modifier:#4589ff;\n --cds-syntax-module-keyword:#be95ff;\n --cds-syntax-monospace:#f4f4f4;\n --cds-syntax-name:#a6c8ff;\n --cds-syntax-namespace:#3ddbd9;\n --cds-syntax-null:#f4f4f4;\n --cds-syntax-number:#6fdc8c;\n --cds-syntax-operator:#e0e0e0;\n --cds-syntax-operator-keyword:#4589ff;\n --cds-syntax-paren:#e0e0e0;\n --cds-syntax-processing-instruction:#f4f4f4;\n --cds-syntax-property-name:#33b1ff;\n --cds-syntax-punctuation:#e0e0e0;\n --cds-syntax-quote:#42be65;\n --cds-syntax-regexp:#be95ff;\n --cds-syntax-self:#3ddbd9;\n --cds-syntax-separator:#e0e0e0;\n --cds-syntax-special:#4589ff;\n --cds-syntax-special-string:#be95ff;\n --cds-syntax-square-bracket:#e0e0e0;\n --cds-syntax-standard:#4589ff;\n --cds-syntax-strikethrough:#f4f4f4;\n --cds-syntax-string:#f4f4f4;\n --cds-syntax-strong:#f4f4f4;\n --cds-syntax-tag:#3ddbd9;\n --cds-syntax-tag-name:#3ddbd9;\n --cds-syntax-type:#3ddbd9;\n --cds-syntax-type-name:#3ddbd9;\n --cds-syntax-type-operator:#3ddbd9;\n --cds-syntax-unit:#6fdc8c;\n --cds-syntax-update-operator:#e0e0e0;\n --cds-syntax-url:#e0e0e0;\n --cds-syntax-variable:#a6c8ff;\n --cds-syntax-variable-name:#a6c8ff;\n --cds-text-disabled:rgba(244, 244, 244, 0.25);\n --cds-text-error:#ffb3b8;\n --cds-text-helper:#c6c6c6;\n --cds-text-inverse:#161616;\n --cds-text-on-color:#ffffff;\n --cds-text-on-color-disabled:rgba(255, 255, 255, 0.25);\n --cds-text-placeholder:rgba(244, 244, 244, 0.4);\n --cds-text-primary:#f4f4f4;\n --cds-text-secondary:#c6c6c6;\n --cds-toggle-off:#8d8d8d;\n --cds-spacing-01:0.125rem;\n --cds-spacing-02:0.25rem;\n --cds-spacing-03:0.5rem;\n --cds-spacing-04:0.75rem;\n --cds-spacing-05:1rem;\n --cds-spacing-06:1.5rem;\n --cds-spacing-07:2rem;\n --cds-spacing-08:2.5rem;\n --cds-spacing-09:3rem;\n --cds-spacing-10:4rem;\n --cds-spacing-11:5rem;\n --cds-spacing-12:6rem;\n --cds-spacing-13:10rem;\n --cds-fluid-spacing-01:0;\n --cds-fluid-spacing-02:2vw;\n --cds-fluid-spacing-03:5vw;\n --cds-fluid-spacing-04:10vw;\n --cds-caption-01-font-size:0.75rem;\n --cds-caption-01-font-weight:400;\n --cds-caption-01-line-height:1.33333;\n --cds-caption-01-letter-spacing:0.32px;\n --cds-caption-02-font-size:0.875rem;\n --cds-caption-02-font-weight:400;\n --cds-caption-02-line-height:1.28572;\n --cds-caption-02-letter-spacing:0.32px;\n --cds-label-01-font-size:0.75rem;\n --cds-label-01-font-weight:400;\n --cds-label-01-line-height:1.33333;\n --cds-label-01-letter-spacing:0.32px;\n --cds-label-02-font-size:0.875rem;\n --cds-label-02-font-weight:400;\n --cds-label-02-line-height:1.28572;\n --cds-label-02-letter-spacing:0.16px;\n --cds-helper-text-01-font-size:0.75rem;\n --cds-helper-text-01-line-height:1.33333;\n --cds-helper-text-01-letter-spacing:0.32px;\n --cds-helper-text-02-font-size:0.875rem;\n --cds-helper-text-02-font-weight:400;\n --cds-helper-text-02-line-height:1.28572;\n --cds-helper-text-02-letter-spacing:0.16px;\n --cds-body-short-01-font-size:0.875rem;\n --cds-body-short-01-font-weight:400;\n --cds-body-short-01-line-height:1.28572;\n --cds-body-short-01-letter-spacing:0.16px;\n --cds-body-short-02-font-size:1rem;\n --cds-body-short-02-font-weight:400;\n --cds-body-short-02-line-height:1.375;\n --cds-body-short-02-letter-spacing:0;\n --cds-body-long-01-font-size:0.875rem;\n --cds-body-long-01-font-weight:400;\n --cds-body-long-01-line-height:1.42857;\n --cds-body-long-01-letter-spacing:0.16px;\n --cds-body-long-02-font-size:1rem;\n --cds-body-long-02-font-weight:400;\n --cds-body-long-02-line-height:1.5;\n --cds-body-long-02-letter-spacing:0;\n --cds-code-01-font-family:'IBM Plex Mono', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', monospace;\n --cds-code-01-font-size:0.75rem;\n --cds-code-01-font-weight:400;\n --cds-code-01-line-height:1.33333;\n --cds-code-01-letter-spacing:0.32px;\n --cds-code-02-font-family:'IBM Plex Mono', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', monospace;\n --cds-code-02-font-size:0.875rem;\n --cds-code-02-font-weight:400;\n --cds-code-02-line-height:1.42857;\n --cds-code-02-letter-spacing:0.32px;\n --cds-heading-01-font-size:0.875rem;\n --cds-heading-01-font-weight:600;\n --cds-heading-01-line-height:1.42857;\n --cds-heading-01-letter-spacing:0.16px;\n --cds-heading-02-font-size:1rem;\n --cds-heading-02-font-weight:600;\n --cds-heading-02-line-height:1.5;\n --cds-heading-02-letter-spacing:0;\n --cds-productive-heading-01-font-size:0.875rem;\n --cds-productive-heading-01-font-weight:600;\n --cds-productive-heading-01-line-height:1.28572;\n --cds-productive-heading-01-letter-spacing:0.16px;\n --cds-productive-heading-02-font-size:1rem;\n --cds-productive-heading-02-font-weight:600;\n --cds-productive-heading-02-line-height:1.375;\n --cds-productive-heading-02-letter-spacing:0;\n --cds-productive-heading-03-font-size:1.25rem;\n --cds-productive-heading-03-font-weight:400;\n --cds-productive-heading-03-line-height:1.4;\n --cds-productive-heading-03-letter-spacing:0;\n --cds-productive-heading-04-font-size:1.75rem;\n --cds-productive-heading-04-font-weight:400;\n --cds-productive-heading-04-line-height:1.28572;\n --cds-productive-heading-04-letter-spacing:0;\n --cds-productive-heading-05-font-size:2rem;\n --cds-productive-heading-05-font-weight:400;\n --cds-productive-heading-05-line-height:1.25;\n --cds-productive-heading-05-letter-spacing:0;\n --cds-productive-heading-06-font-size:2.625rem;\n --cds-productive-heading-06-font-weight:300;\n --cds-productive-heading-06-line-height:1.199;\n --cds-productive-heading-06-letter-spacing:0;\n --cds-productive-heading-07-font-size:3.375rem;\n --cds-productive-heading-07-font-weight:300;\n --cds-productive-heading-07-line-height:1.19;\n --cds-productive-heading-07-letter-spacing:0;\n --cds-expressive-paragraph-01-font-size:1.5rem;\n --cds-expressive-paragraph-01-font-weight:300;\n --cds-expressive-paragraph-01-line-height:1.334;\n --cds-expressive-paragraph-01-letter-spacing:0;\n --cds-expressive-heading-01-font-size:0.875rem;\n --cds-expressive-heading-01-font-weight:600;\n --cds-expressive-heading-01-line-height:1.42857;\n --cds-expressive-heading-01-letter-spacing:0.16px;\n --cds-expressive-heading-02-font-size:1rem;\n --cds-expressive-heading-02-font-weight:600;\n --cds-expressive-heading-02-line-height:1.5;\n --cds-expressive-heading-02-letter-spacing:0;\n --cds-expressive-heading-03-font-size:1.25rem;\n --cds-expressive-heading-03-font-weight:400;\n --cds-expressive-heading-03-line-height:1.4;\n --cds-expressive-heading-03-letter-spacing:0;\n --cds-expressive-heading-04-font-size:1.75rem;\n --cds-expressive-heading-04-font-weight:400;\n --cds-expressive-heading-04-line-height:1.28572;\n --cds-expressive-heading-04-letter-spacing:0;\n --cds-expressive-heading-05-font-size:2rem;\n --cds-expressive-heading-05-font-weight:400;\n --cds-expressive-heading-05-line-height:1.25;\n --cds-expressive-heading-05-letter-spacing:0;\n --cds-expressive-heading-06-font-size:2rem;\n --cds-expressive-heading-06-font-weight:600;\n --cds-expressive-heading-06-line-height:1.25;\n --cds-expressive-heading-06-letter-spacing:0;\n --cds-quotation-01-font-family:'IBM Plex Serif', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', serif;\n --cds-quotation-01-font-size:1.25rem;\n --cds-quotation-01-font-weight:400;\n --cds-quotation-01-line-height:1.3;\n --cds-quotation-01-letter-spacing:0;\n --cds-quotation-02-font-family:'IBM Plex Serif', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', serif;\n --cds-quotation-02-font-size:2rem;\n --cds-quotation-02-font-weight:300;\n --cds-quotation-02-line-height:1.25;\n --cds-quotation-02-letter-spacing:0;\n --cds-display-01-font-size:2.625rem;\n --cds-display-01-font-weight:300;\n --cds-display-01-line-height:1.19;\n --cds-display-01-letter-spacing:0;\n --cds-display-02-font-size:2.625rem;\n --cds-display-02-font-weight:600;\n --cds-display-02-line-height:1.19;\n --cds-display-02-letter-spacing:0;\n --cds-display-03-font-size:2.625rem;\n --cds-display-03-font-weight:300;\n --cds-display-03-line-height:1.19;\n --cds-display-03-letter-spacing:0;\n --cds-display-04-font-size:2.625rem;\n --cds-display-04-font-weight:300;\n --cds-display-04-line-height:1.19;\n --cds-display-04-letter-spacing:0;\n --cds-legal-01-font-size:0.75rem;\n --cds-legal-01-font-weight:400;\n --cds-legal-01-line-height:1.33333;\n --cds-legal-01-letter-spacing:0.32px;\n --cds-legal-02-font-size:0.875rem;\n --cds-legal-02-font-weight:400;\n --cds-legal-02-line-height:1.28572;\n --cds-legal-02-letter-spacing:0.16px;\n --cds-body-compact-01-font-size:0.875rem;\n --cds-body-compact-01-font-weight:400;\n --cds-body-compact-01-line-height:1.28572;\n --cds-body-compact-01-letter-spacing:0.16px;\n --cds-body-compact-02-font-size:1rem;\n --cds-body-compact-02-font-weight:400;\n --cds-body-compact-02-line-height:1.375;\n --cds-body-compact-02-letter-spacing:0;\n --cds-heading-compact-01-font-size:0.875rem;\n --cds-heading-compact-01-font-weight:600;\n --cds-heading-compact-01-line-height:1.28572;\n --cds-heading-compact-01-letter-spacing:0.16px;\n --cds-heading-compact-02-font-size:1rem;\n --cds-heading-compact-02-font-weight:600;\n --cds-heading-compact-02-line-height:1.375;\n --cds-heading-compact-02-letter-spacing:0;\n --cds-body-01-font-size:0.875rem;\n --cds-body-01-font-weight:400;\n --cds-body-01-line-height:1.42857;\n --cds-body-01-letter-spacing:0.16px;\n --cds-body-02-font-size:1rem;\n --cds-body-02-font-weight:400;\n --cds-body-02-line-height:1.5;\n --cds-body-02-letter-spacing:0;\n --cds-heading-03-font-size:1.25rem;\n --cds-heading-03-font-weight:400;\n --cds-heading-03-line-height:1.4;\n --cds-heading-03-letter-spacing:0;\n --cds-heading-04-font-size:1.75rem;\n --cds-heading-04-font-weight:400;\n --cds-heading-04-line-height:1.28572;\n --cds-heading-04-letter-spacing:0;\n --cds-heading-05-font-size:2rem;\n --cds-heading-05-font-weight:400;\n --cds-heading-05-line-height:1.25;\n --cds-heading-05-letter-spacing:0;\n --cds-heading-06-font-size:2.625rem;\n --cds-heading-06-font-weight:300;\n --cds-heading-06-line-height:1.199;\n --cds-heading-06-letter-spacing:0;\n --cds-heading-07-font-size:3.375rem;\n --cds-heading-07-font-weight:300;\n --cds-heading-07-line-height:1.19;\n --cds-heading-07-letter-spacing:0;\n --cds-fluid-heading-03-font-size:1.25rem;\n --cds-fluid-heading-03-font-weight:400;\n --cds-fluid-heading-03-line-height:1.4;\n --cds-fluid-heading-03-letter-spacing:0;\n --cds-fluid-heading-04-font-size:1.75rem;\n --cds-fluid-heading-04-font-weight:400;\n --cds-fluid-heading-04-line-height:1.28572;\n --cds-fluid-heading-04-letter-spacing:0;\n --cds-fluid-heading-05-font-size:2rem;\n --cds-fluid-heading-05-font-weight:400;\n --cds-fluid-heading-05-line-height:1.25;\n --cds-fluid-heading-05-letter-spacing:0;\n --cds-fluid-heading-06-font-size:2rem;\n --cds-fluid-heading-06-font-weight:600;\n --cds-fluid-heading-06-line-height:1.25;\n --cds-fluid-heading-06-letter-spacing:0;\n --cds-fluid-paragraph-01-font-size:1.5rem;\n --cds-fluid-paragraph-01-font-weight:300;\n --cds-fluid-paragraph-01-line-height:1.334;\n --cds-fluid-paragraph-01-letter-spacing:0;\n --cds-fluid-quotation-01-font-family:'IBM Plex Serif', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', serif;\n --cds-fluid-quotation-01-font-size:1.25rem;\n --cds-fluid-quotation-01-font-weight:400;\n --cds-fluid-quotation-01-line-height:1.3;\n --cds-fluid-quotation-01-letter-spacing:0;\n --cds-fluid-quotation-02-font-family:'IBM Plex Serif', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', serif;\n --cds-fluid-quotation-02-font-size:2rem;\n --cds-fluid-quotation-02-font-weight:300;\n --cds-fluid-quotation-02-line-height:1.25;\n --cds-fluid-quotation-02-letter-spacing:0;\n --cds-fluid-display-01-font-size:2.625rem;\n --cds-fluid-display-01-font-weight:300;\n --cds-fluid-display-01-line-height:1.19;\n --cds-fluid-display-01-letter-spacing:0;\n --cds-fluid-display-02-font-size:2.625rem;\n --cds-fluid-display-02-font-weight:600;\n --cds-fluid-display-02-line-height:1.19;\n --cds-fluid-display-02-letter-spacing:0;\n --cds-fluid-display-03-font-size:2.625rem;\n --cds-fluid-display-03-font-weight:300;\n --cds-fluid-display-03-line-height:1.19;\n --cds-fluid-display-03-letter-spacing:0;\n --cds-fluid-display-04-font-size:2.625rem;\n --cds-fluid-display-04-font-weight:300;\n --cds-fluid-display-04-line-height:1.19;\n --cds-fluid-display-04-letter-spacing:0;\n --cds-button-separator:#161616;\n --cds-button-primary:#0f62fe;\n --cds-button-secondary:#6f6f6f;\n --cds-button-tertiary:#ffffff;\n --cds-button-danger-primary:#da1e28;\n --cds-button-danger-secondary:#ff8389;\n --cds-button-danger-active:#750e13;\n --cds-button-primary-active:#002d9c;\n --cds-button-secondary-active:#393939;\n --cds-button-tertiary-active:#c6c6c6;\n --cds-button-danger-hover:#b81921;\n --cds-button-primary-hover:#0050e6;\n --cds-button-secondary-hover:#5e5e5e;\n --cds-button-tertiary-hover:#f4f4f4;\n --cds-button-disabled:rgba(141, 141, 141, 0.3);\n color-scheme:var(--cds-color-scheme, light);\n}\n@media screen and (-ms-high-contrast: active), (forced-colors: active){\n :host .cds--g90{\n --cds-icon-primary:ButtonText;\n --cds-icon-secondary:ButtonText;\n --cds-icon-interactive:ButtonText;\n --cds-icon-disabled:GrayText;\n --cds-icon-on-color-disabled:GrayText;\n --cds-icon-inverse:SelectedItemText;\n --cds-icon-on-color:SelectedItemText;\n --cds-button-disabled:GrayText;\n --cds-interactive:ButtonText;\n --cds-link-primary:LinkText;\n --cds-link-primary-hover:LinkText;\n --cds-link-secondary:LinkText;\n --cds-link-inverse:SelectedItemText;\n --cds-link-inverse-hover:SelectedItemText;\n --cds-link-inverse-visited:SelectedItemText;\n --cds-link-visited:VisitedText;\n --cds-background-selected:SelectedItem;\n --cds-background-selected-hover:SelectedItem;\n --cds-background-inverse:SelectedItem;\n --cds-layer-selected-inverse:SelectedItem;\n }\n}\n:host .cds--g90{\n --cds-layer:var(--cds-layer-01, #f4f4f4);\n --cds-layer-active:var(--cds-layer-active-01, #c6c6c6);\n --cds-layer-background:var(--cds-layer-background-01, #ffffff);\n --cds-layer-hover:var(--cds-layer-hover-01, #e8e8e8);\n --cds-layer-selected:var(--cds-layer-selected-01, #e0e0e0);\n --cds-layer-selected-hover:var(--cds-layer-selected-hover-01, #d1d1d1);\n --cds-layer-accent:var(--cds-layer-accent-01, #e0e0e0);\n --cds-layer-accent-hover:var(--cds-layer-accent-hover-01, #d1d1d1);\n --cds-layer-accent-active:var(--cds-layer-accent-active-01, #a8a8a8);\n --cds-field:var(--cds-field-01, #f4f4f4);\n --cds-field-hover:var(--cds-field-hover-01, #e8e8e8);\n --cds-border-subtle:var(--cds-border-subtle-00, #e0e0e0);\n --cds-border-subtle-selected:var(--cds-border-subtle-selected-01, #c6c6c6);\n --cds-border-strong:var(--cds-border-strong-01, #8d8d8d);\n --cds-border-tile:var(--cds-border-tile-01, #c6c6c6);\n}\n:host .cds--g100{\n --cds-ai-aura-end:rgba(0, 0, 0, 0);\n --cds-ai-aura-hover-background:#333333;\n --cds-ai-aura-hover-end:rgba(0, 0, 0, 0);\n --cds-ai-aura-hover-start:rgba(69, 137, 255, 0.4);\n --cds-ai-aura-start:rgba(69, 137, 255, 0.1);\n --cds-ai-aura-start-sm:rgba(69, 137, 255, 0.16);\n --cds-ai-border-end:#4589ff;\n --cds-ai-border-start:rgba(166, 200, 255, 0.36);\n --cds-ai-border-strong:#78a9ff;\n --cds-ai-drop-shadow:rgba(0, 0, 0, 0.28);\n --cds-ai-inner-shadow:rgba(69, 137, 255, 0.16);\n --cds-ai-overlay:rgba(0, 0, 0, 0.5);\n --cds-ai-popover-background:#161616;\n --cds-ai-popover-caret-bottom:#4589ff;\n --cds-ai-popover-caret-bottom-background:#202d45;\n --cds-ai-popover-caret-bottom-background-actions:#1e283a;\n --cds-ai-popover-caret-center:#4870b5;\n --cds-ai-popover-shadow-outer-01:rgba(0, 0, 0, 0.12);\n --cds-ai-popover-shadow-outer-02:rgba(0, 0, 0, 0.08);\n --cds-ai-skeleton-background:rgba(120, 169, 255, 0.5);\n --cds-ai-skeleton-element-background:rgba(120, 169, 255, 0.3);\n --cds-background:#161616;\n --cds-background-active:rgba(141, 141, 141, 0.4);\n --cds-background-brand:#0f62fe;\n --cds-background-hover:rgba(141, 141, 141, 0.16);\n --cds-background-inverse:#f4f4f4;\n --cds-background-inverse-hover:#e8e8e8;\n --cds-background-selected:rgba(141, 141, 141, 0.24);\n --cds-background-selected-hover:rgba(141, 141, 141, 0.32);\n --cds-border-disabled:rgba(141, 141, 141, 0.5);\n --cds-border-interactive:#4589ff;\n --cds-border-inverse:#f4f4f4;\n --cds-border-strong-01:#6f6f6f;\n --cds-border-strong-02:#8d8d8d;\n --cds-border-strong-03:#a8a8a8;\n --cds-border-subtle-00:#393939;\n --cds-border-subtle-01:#525252;\n --cds-border-subtle-02:#6f6f6f;\n --cds-border-subtle-03:#6f6f6f;\n --cds-border-subtle-selected-01:#6f6f6f;\n --cds-border-subtle-selected-02:#8d8d8d;\n --cds-border-subtle-selected-03:#8d8d8d;\n --cds-border-tile-01:#525252;\n --cds-border-tile-02:#6f6f6f;\n --cds-border-tile-03:#8d8d8d;\n --cds-chat-avatar-agent:#c6c6c6;\n --cds-chat-avatar-bot:#8d8d8d;\n --cds-chat-avatar-user:#4589ff;\n --cds-chat-bubble-agent:#262626;\n --cds-chat-bubble-agent-text:#f4f4f4;\n --cds-chat-bubble-border:#525252;\n --cds-chat-bubble-user:#393939;\n --cds-chat-bubble-user-text:#f4f4f4;\n --cds-chat-button:#78a9ff;\n --cds-chat-button-active:rgba(141, 141, 141, 0.4);\n --cds-chat-button-hover:rgba(141, 141, 141, 0.16);\n --cds-chat-button-selected:rgba(141, 141, 141, 0.24);\n --cds-chat-button-text-hover:#a6c8ff;\n --cds-chat-button-text-selected:#c6c6c6;\n --cds-chat-header-background:#262626;\n --cds-chat-header-text:#f4f4f4;\n --cds-chat-prompt-background:#161616;\n --cds-chat-prompt-border-end:rgba(38, 38, 38, 0);\n --cds-chat-prompt-border-start:#262626;\n --cds-chat-prompt-text:#f4f4f4;\n --cds-chat-shell-background:#262626;\n --cds-color-scheme:dark;\n --cds-field-01:#262626;\n --cds-field-02:#393939;\n --cds-field-03:#525252;\n --cds-field-hover-01:#333333;\n --cds-field-hover-02:#474747;\n --cds-field-hover-03:#636363;\n --cds-focus:#ffffff;\n --cds-focus-inset:#161616;\n --cds-focus-inverse:#0f62fe;\n --cds-highlight:#001d6c;\n --cds-icon-disabled:rgba(244, 244, 244, 0.25);\n --cds-icon-interactive:#ffffff;\n --cds-icon-inverse:#161616;\n --cds-icon-on-color:#ffffff;\n --cds-icon-on-color-disabled:rgba(255, 255, 255, 0.25);\n --cds-icon-primary:#f4f4f4;\n --cds-icon-secondary:#c6c6c6;\n --cds-interactive:#4589ff;\n --cds-layer-01:#262626;\n --cds-layer-02:#393939;\n --cds-layer-03:#525252;\n --cds-layer-accent-01:#393939;\n --cds-layer-accent-02:#525252;\n --cds-layer-accent-03:#6f6f6f;\n --cds-layer-accent-active-01:#6f6f6f;\n --cds-layer-accent-active-02:#8d8d8d;\n --cds-layer-accent-active-03:#393939;\n --cds-layer-accent-hover-01:#474747;\n --cds-layer-accent-hover-02:#636363;\n --cds-layer-accent-hover-03:#5e5e5e;\n --cds-layer-active-01:#525252;\n --cds-layer-active-02:#6f6f6f;\n --cds-layer-active-03:#8d8d8d;\n --cds-layer-background-01:#161616;\n --cds-layer-background-02:#262626;\n --cds-layer-background-03:#393939;\n --cds-layer-hover-01:#333333;\n --cds-layer-hover-02:#474747;\n --cds-layer-hover-03:#636363;\n --cds-layer-selected-01:#393939;\n --cds-layer-selected-02:#525252;\n --cds-layer-selected-03:#6f6f6f;\n --cds-layer-selected-disabled:#a8a8a8;\n --cds-layer-selected-hover-01:#474747;\n --cds-layer-selected-hover-02:#636363;\n --cds-layer-selected-hover-03:#5e5e5e;\n --cds-layer-selected-inverse:#f4f4f4;\n --cds-link-inverse:#0f62fe;\n --cds-link-inverse-active:#161616;\n --cds-link-inverse-hover:#0043ce;\n --cds-link-inverse-visited:#8a3ffc;\n --cds-link-primary:#78a9ff;\n --cds-link-primary-hover:#a6c8ff;\n --cds-link-secondary:#a6c8ff;\n --cds-link-visited:#be95ff;\n --cds-overlay:rgba(0, 0, 0, 0.6);\n --cds-shadow:rgba(0, 0, 0, 0.8);\n --cds-skeleton-background:#292929;\n --cds-skeleton-element:#393939;\n --cds-support-caution-major:#ff832b;\n --cds-support-caution-minor:#f1c21b;\n --cds-support-caution-undefined:#a56eff;\n --cds-support-error:#fa4d56;\n --cds-support-error-inverse:#da1e28;\n --cds-support-info:#4589ff;\n --cds-support-info-inverse:#0043ce;\n --cds-support-success:#42be65;\n --cds-support-success-inverse:#24a148;\n --cds-support-warning:#f1c21b;\n --cds-support-warning-inverse:#f1c21b;\n --cds-syntax-angle-bracket:#8d8d8d;\n --cds-syntax-annotation:#08bdba;\n --cds-syntax-arithmetic-operator:#e0e0e0;\n --cds-syntax-atom:#f4f4f4;\n --cds-syntax-attribute:#33b1ff;\n --cds-syntax-attribute-name:#33b1ff;\n --cds-syntax-attribute-value:#f4f4f4;\n --cds-syntax-bitwise-operator:#e0e0e0;\n --cds-syntax-block-comment:#42be65;\n --cds-syntax-bool:#f4f4f4;\n --cds-syntax-brace:#e0e0e0;\n --cds-syntax-bracket:#e0e0e0;\n --cds-syntax-character:#f4f4f4;\n --cds-syntax-class-name:#3ddbd9;\n --cds-syntax-color:#f4f4f4;\n --cds-syntax-comment:#42be65;\n --cds-syntax-compare-operator:#e0e0e0;\n --cds-syntax-constant:#4589ff;\n --cds-syntax-content:#f4f4f4;\n --cds-syntax-content-separator:#e0e0e0;\n --cds-syntax-control-keyword:#be95ff;\n --cds-syntax-control-operator:#be95ff;\n --cds-syntax-definition:#33b1ff;\n --cds-syntax-definition-keyword:#33b1ff;\n --cds-syntax-definition-operator:#33b1ff;\n --cds-syntax-deref-operator:#e0e0e0;\n --cds-syntax-doc-comment:#42be65;\n --cds-syntax-doc-string:#f4f4f4;\n --cds-syntax-document-meta:#42be65;\n --cds-syntax-emphasis:#f4f4f4;\n --cds-syntax-escape:#e0e0e0;\n --cds-syntax-float:#6fdc8c;\n --cds-syntax-function:#f1c21b;\n --cds-syntax-heading:#33b1ff;\n --cds-syntax-heading-1:#33b1ff;\n --cds-syntax-heading-2:#33b1ff;\n --cds-syntax-heading-3:#33b1ff;\n --cds-syntax-heading-4:#33b1ff;\n --cds-syntax-heading-5:#33b1ff;\n --cds-syntax-heading-6:#33b1ff;\n --cds-syntax-integer:#6fdc8c;\n --cds-syntax-invalid:#fa4d56;\n --cds-syntax-keyword:#4589ff;\n --cds-syntax-label-name:#a6c8ff;\n --cds-syntax-line-comment:#42be65;\n --cds-syntax-link:#4589ff;\n --cds-syntax-list:#f4f4f4;\n --cds-syntax-literal:#f4f4f4;\n --cds-syntax-local:#a6c8ff;\n --cds-syntax-logic-operator:#e0e0e0;\n --cds-syntax-macro-name:#f4f4f4;\n --cds-syntax-meta:#42be65;\n --cds-syntax-modifier:#4589ff;\n --cds-syntax-module-keyword:#be95ff;\n --cds-syntax-monospace:#f4f4f4;\n --cds-syntax-name:#a6c8ff;\n --cds-syntax-namespace:#3ddbd9;\n --cds-syntax-null:#f4f4f4;\n --cds-syntax-number:#6fdc8c;\n --cds-syntax-operator:#e0e0e0;\n --cds-syntax-operator-keyword:#4589ff;\n --cds-syntax-paren:#e0e0e0;\n --cds-syntax-processing-instruction:#f4f4f4;\n --cds-syntax-property-name:#33b1ff;\n --cds-syntax-punctuation:#e0e0e0;\n --cds-syntax-quote:#42be65;\n --cds-syntax-regexp:#be95ff;\n --cds-syntax-self:#3ddbd9;\n --cds-syntax-separator:#e0e0e0;\n --cds-syntax-special:#4589ff;\n --cds-syntax-special-string:#be95ff;\n --cds-syntax-square-bracket:#e0e0e0;\n --cds-syntax-standard:#4589ff;\n --cds-syntax-strikethrough:#f4f4f4;\n --cds-syntax-string:#f4f4f4;\n --cds-syntax-strong:#f4f4f4;\n --cds-syntax-tag:#3ddbd9;\n --cds-syntax-tag-name:#3ddbd9;\n --cds-syntax-type:#3ddbd9;\n --cds-syntax-type-name:#3ddbd9;\n --cds-syntax-type-operator:#3ddbd9;\n --cds-syntax-unit:#6fdc8c;\n --cds-syntax-update-operator:#e0e0e0;\n --cds-syntax-url:#e0e0e0;\n --cds-syntax-variable:#a6c8ff;\n --cds-syntax-variable-name:#a6c8ff;\n --cds-text-disabled:rgba(244, 244, 244, 0.25);\n --cds-text-error:#ff8389;\n --cds-text-helper:#a8a8a8;\n --cds-text-inverse:#161616;\n --cds-text-on-color:#ffffff;\n --cds-text-on-color-disabled:rgba(255, 255, 255, 0.25);\n --cds-text-placeholder:rgba(244, 244, 244, 0.4);\n --cds-text-primary:#f4f4f4;\n --cds-text-secondary:#c6c6c6;\n --cds-toggle-off:#6f6f6f;\n --cds-spacing-01:0.125rem;\n --cds-spacing-02:0.25rem;\n --cds-spacing-03:0.5rem;\n --cds-spacing-04:0.75rem;\n --cds-spacing-05:1rem;\n --cds-spacing-06:1.5rem;\n --cds-spacing-07:2rem;\n --cds-spacing-08:2.5rem;\n --cds-spacing-09:3rem;\n --cds-spacing-10:4rem;\n --cds-spacing-11:5rem;\n --cds-spacing-12:6rem;\n --cds-spacing-13:10rem;\n --cds-fluid-spacing-01:0;\n --cds-fluid-spacing-02:2vw;\n --cds-fluid-spacing-03:5vw;\n --cds-fluid-spacing-04:10vw;\n --cds-caption-01-font-size:0.75rem;\n --cds-caption-01-font-weight:400;\n --cds-caption-01-line-height:1.33333;\n --cds-caption-01-letter-spacing:0.32px;\n --cds-caption-02-font-size:0.875rem;\n --cds-caption-02-font-weight:400;\n --cds-caption-02-line-height:1.28572;\n --cds-caption-02-letter-spacing:0.32px;\n --cds-label-01-font-size:0.75rem;\n --cds-label-01-font-weight:400;\n --cds-label-01-line-height:1.33333;\n --cds-label-01-letter-spacing:0.32px;\n --cds-label-02-font-size:0.875rem;\n --cds-label-02-font-weight:400;\n --cds-label-02-line-height:1.28572;\n --cds-label-02-letter-spacing:0.16px;\n --cds-helper-text-01-font-size:0.75rem;\n --cds-helper-text-01-line-height:1.33333;\n --cds-helper-text-01-letter-spacing:0.32px;\n --cds-helper-text-02-font-size:0.875rem;\n --cds-helper-text-02-font-weight:400;\n --cds-helper-text-02-line-height:1.28572;\n --cds-helper-text-02-letter-spacing:0.16px;\n --cds-body-short-01-font-size:0.875rem;\n --cds-body-short-01-font-weight:400;\n --cds-body-short-01-line-height:1.28572;\n --cds-body-short-01-letter-spacing:0.16px;\n --cds-body-short-02-font-size:1rem;\n --cds-body-short-02-font-weight:400;\n --cds-body-short-02-line-height:1.375;\n --cds-body-short-02-letter-spacing:0;\n --cds-body-long-01-font-size:0.875rem;\n --cds-body-long-01-font-weight:400;\n --cds-body-long-01-line-height:1.42857;\n --cds-body-long-01-letter-spacing:0.16px;\n --cds-body-long-02-font-size:1rem;\n --cds-body-long-02-font-weight:400;\n --cds-body-long-02-line-height:1.5;\n --cds-body-long-02-letter-spacing:0;\n --cds-code-01-font-family:'IBM Plex Mono', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', monospace;\n --cds-code-01-font-size:0.75rem;\n --cds-code-01-font-weight:400;\n --cds-code-01-line-height:1.33333;\n --cds-code-01-letter-spacing:0.32px;\n --cds-code-02-font-family:'IBM Plex Mono', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', monospace;\n --cds-code-02-font-size:0.875rem;\n --cds-code-02-font-weight:400;\n --cds-code-02-line-height:1.42857;\n --cds-code-02-letter-spacing:0.32px;\n --cds-heading-01-font-size:0.875rem;\n --cds-heading-01-font-weight:600;\n --cds-heading-01-line-height:1.42857;\n --cds-heading-01-letter-spacing:0.16px;\n --cds-heading-02-font-size:1rem;\n --cds-heading-02-font-weight:600;\n --cds-heading-02-line-height:1.5;\n --cds-heading-02-letter-spacing:0;\n --cds-productive-heading-01-font-size:0.875rem;\n --cds-productive-heading-01-font-weight:600;\n --cds-productive-heading-01-line-height:1.28572;\n --cds-productive-heading-01-letter-spacing:0.16px;\n --cds-productive-heading-02-font-size:1rem;\n --cds-productive-heading-02-font-weight:600;\n --cds-productive-heading-02-line-height:1.375;\n --cds-productive-heading-02-letter-spacing:0;\n --cds-productive-heading-03-font-size:1.25rem;\n --cds-productive-heading-03-font-weight:400;\n --cds-productive-heading-03-line-height:1.4;\n --cds-productive-heading-03-letter-spacing:0;\n --cds-productive-heading-04-font-size:1.75rem;\n --cds-productive-heading-04-font-weight:400;\n --cds-productive-heading-04-line-height:1.28572;\n --cds-productive-heading-04-letter-spacing:0;\n --cds-productive-heading-05-font-size:2rem;\n --cds-productive-heading-05-font-weight:400;\n --cds-productive-heading-05-line-height:1.25;\n --cds-productive-heading-05-letter-spacing:0;\n --cds-productive-heading-06-font-size:2.625rem;\n --cds-productive-heading-06-font-weight:300;\n --cds-productive-heading-06-line-height:1.199;\n --cds-productive-heading-06-letter-spacing:0;\n --cds-productive-heading-07-font-size:3.375rem;\n --cds-productive-heading-07-font-weight:300;\n --cds-productive-heading-07-line-height:1.19;\n --cds-productive-heading-07-letter-spacing:0;\n --cds-expressive-paragraph-01-font-size:1.5rem;\n --cds-expressive-paragraph-01-font-weight:300;\n --cds-expressive-paragraph-01-line-height:1.334;\n --cds-expressive-paragraph-01-letter-spacing:0;\n --cds-expressive-heading-01-font-size:0.875rem;\n --cds-expressive-heading-01-font-weight:600;\n --cds-expressive-heading-01-line-height:1.42857;\n --cds-expressive-heading-01-letter-spacing:0.16px;\n --cds-expressive-heading-02-font-size:1rem;\n --cds-expressive-heading-02-font-weight:600;\n --cds-expressive-heading-02-line-height:1.5;\n --cds-expressive-heading-02-letter-spacing:0;\n --cds-expressive-heading-03-font-size:1.25rem;\n --cds-expressive-heading-03-font-weight:400;\n --cds-expressive-heading-03-line-height:1.4;\n --cds-expressive-heading-03-letter-spacing:0;\n --cds-expressive-heading-04-font-size:1.75rem;\n --cds-expressive-heading-04-font-weight:400;\n --cds-expressive-heading-04-line-height:1.28572;\n --cds-expressive-heading-04-letter-spacing:0;\n --cds-expressive-heading-05-font-size:2rem;\n --cds-expressive-heading-05-font-weight:400;\n --cds-expressive-heading-05-line-height:1.25;\n --cds-expressive-heading-05-letter-spacing:0;\n --cds-expressive-heading-06-font-size:2rem;\n --cds-expressive-heading-06-font-weight:600;\n --cds-expressive-heading-06-line-height:1.25;\n --cds-expressive-heading-06-letter-spacing:0;\n --cds-quotation-01-font-family:'IBM Plex Serif', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', serif;\n --cds-quotation-01-font-size:1.25rem;\n --cds-quotation-01-font-weight:400;\n --cds-quotation-01-line-height:1.3;\n --cds-quotation-01-letter-spacing:0;\n --cds-quotation-02-font-family:'IBM Plex Serif', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', serif;\n --cds-quotation-02-font-size:2rem;\n --cds-quotation-02-font-weight:300;\n --cds-quotation-02-line-height:1.25;\n --cds-quotation-02-letter-spacing:0;\n --cds-display-01-font-size:2.625rem;\n --cds-display-01-font-weight:300;\n --cds-display-01-line-height:1.19;\n --cds-display-01-letter-spacing:0;\n --cds-display-02-font-size:2.625rem;\n --cds-display-02-font-weight:600;\n --cds-display-02-line-height:1.19;\n --cds-display-02-letter-spacing:0;\n --cds-display-03-font-size:2.625rem;\n --cds-display-03-font-weight:300;\n --cds-display-03-line-height:1.19;\n --cds-display-03-letter-spacing:0;\n --cds-display-04-font-size:2.625rem;\n --cds-display-04-font-weight:300;\n --cds-display-04-line-height:1.19;\n --cds-display-04-letter-spacing:0;\n --cds-legal-01-font-size:0.75rem;\n --cds-legal-01-font-weight:400;\n --cds-legal-01-line-height:1.33333;\n --cds-legal-01-letter-spacing:0.32px;\n --cds-legal-02-font-size:0.875rem;\n --cds-legal-02-font-weight:400;\n --cds-legal-02-line-height:1.28572;\n --cds-legal-02-letter-spacing:0.16px;\n --cds-body-compact-01-font-size:0.875rem;\n --cds-body-compact-01-font-weight:400;\n --cds-body-compact-01-line-height:1.28572;\n --cds-body-compact-01-letter-spacing:0.16px;\n --cds-body-compact-02-font-size:1rem;\n --cds-body-compact-02-font-weight:400;\n --cds-body-compact-02-line-height:1.375;\n --cds-body-compact-02-letter-spacing:0;\n --cds-heading-compact-01-font-size:0.875rem;\n --cds-heading-compact-01-font-weight:600;\n --cds-heading-compact-01-line-height:1.28572;\n --cds-heading-compact-01-letter-spacing:0.16px;\n --cds-heading-compact-02-font-size:1rem;\n --cds-heading-compact-02-font-weight:600;\n --cds-heading-compact-02-line-height:1.375;\n --cds-heading-compact-02-letter-spacing:0;\n --cds-body-01-font-size:0.875rem;\n --cds-body-01-font-weight:400;\n --cds-body-01-line-height:1.42857;\n --cds-body-01-letter-spacing:0.16px;\n --cds-body-02-font-size:1rem;\n --cds-body-02-font-weight:400;\n --cds-body-02-line-height:1.5;\n --cds-body-02-letter-spacing:0;\n --cds-heading-03-font-size:1.25rem;\n --cds-heading-03-font-weight:400;\n --cds-heading-03-line-height:1.4;\n --cds-heading-03-letter-spacing:0;\n --cds-heading-04-font-size:1.75rem;\n --cds-heading-04-font-weight:400;\n --cds-heading-04-line-height:1.28572;\n --cds-heading-04-letter-spacing:0;\n --cds-heading-05-font-size:2rem;\n --cds-heading-05-font-weight:400;\n --cds-heading-05-line-height:1.25;\n --cds-heading-05-letter-spacing:0;\n --cds-heading-06-font-size:2.625rem;\n --cds-heading-06-font-weight:300;\n --cds-heading-06-line-height:1.199;\n --cds-heading-06-letter-spacing:0;\n --cds-heading-07-font-size:3.375rem;\n --cds-heading-07-font-weight:300;\n --cds-heading-07-line-height:1.19;\n --cds-heading-07-letter-spacing:0;\n --cds-fluid-heading-03-font-size:1.25rem;\n --cds-fluid-heading-03-font-weight:400;\n --cds-fluid-heading-03-line-height:1.4;\n --cds-fluid-heading-03-letter-spacing:0;\n --cds-fluid-heading-04-font-size:1.75rem;\n --cds-fluid-heading-04-font-weight:400;\n --cds-fluid-heading-04-line-height:1.28572;\n --cds-fluid-heading-04-letter-spacing:0;\n --cds-fluid-heading-05-font-size:2rem;\n --cds-fluid-heading-05-font-weight:400;\n --cds-fluid-heading-05-line-height:1.25;\n --cds-fluid-heading-05-letter-spacing:0;\n --cds-fluid-heading-06-font-size:2rem;\n --cds-fluid-heading-06-font-weight:600;\n --cds-fluid-heading-06-line-height:1.25;\n --cds-fluid-heading-06-letter-spacing:0;\n --cds-fluid-paragraph-01-font-size:1.5rem;\n --cds-fluid-paragraph-01-font-weight:300;\n --cds-fluid-paragraph-01-line-height:1.334;\n --cds-fluid-paragraph-01-letter-spacing:0;\n --cds-fluid-quotation-01-font-family:'IBM Plex Serif', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', serif;\n --cds-fluid-quotation-01-font-size:1.25rem;\n --cds-fluid-quotation-01-font-weight:400;\n --cds-fluid-quotation-01-line-height:1.3;\n --cds-fluid-quotation-01-letter-spacing:0;\n --cds-fluid-quotation-02-font-family:'IBM Plex Serif', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', serif;\n --cds-fluid-quotation-02-font-size:2rem;\n --cds-fluid-quotation-02-font-weight:300;\n --cds-fluid-quotation-02-line-height:1.25;\n --cds-fluid-quotation-02-letter-spacing:0;\n --cds-fluid-display-01-font-size:2.625rem;\n --cds-fluid-display-01-font-weight:300;\n --cds-fluid-display-01-line-height:1.19;\n --cds-fluid-display-01-letter-spacing:0;\n --cds-fluid-display-02-font-size:2.625rem;\n --cds-fluid-display-02-font-weight:600;\n --cds-fluid-display-02-line-height:1.19;\n --cds-fluid-display-02-letter-spacing:0;\n --cds-fluid-display-03-font-size:2.625rem;\n --cds-fluid-display-03-font-weight:300;\n --cds-fluid-display-03-line-height:1.19;\n --cds-fluid-display-03-letter-spacing:0;\n --cds-fluid-display-04-font-size:2.625rem;\n --cds-fluid-display-04-font-weight:300;\n --cds-fluid-display-04-line-height:1.19;\n --cds-fluid-display-04-letter-spacing:0;\n --cds-button-separator:#161616;\n --cds-button-primary:#0f62fe;\n --cds-button-secondary:#6f6f6f;\n --cds-button-tertiary:#ffffff;\n --cds-button-danger-primary:#da1e28;\n --cds-button-danger-secondary:#fa4d56;\n --cds-button-danger-active:#750e13;\n --cds-button-primary-active:#002d9c;\n --cds-button-secondary-active:#393939;\n --cds-button-tertiary-active:#c6c6c6;\n --cds-button-danger-hover:#b81921;\n --cds-button-primary-hover:#0050e6;\n --cds-button-secondary-hover:#5e5e5e;\n --cds-button-tertiary-hover:#f4f4f4;\n --cds-button-disabled:rgba(141, 141, 141, 0.3);\n color-scheme:var(--cds-color-scheme, light);\n}\n@media screen and (-ms-high-contrast: active), (forced-colors: active){\n :host .cds--g100{\n --cds-icon-primary:ButtonText;\n --cds-icon-secondary:ButtonText;\n --cds-icon-interactive:ButtonText;\n --cds-icon-disabled:GrayText;\n --cds-icon-on-color-disabled:GrayText;\n --cds-icon-inverse:SelectedItemText;\n --cds-icon-on-color:SelectedItemText;\n --cds-button-disabled:GrayText;\n --cds-interactive:ButtonText;\n --cds-link-primary:LinkText;\n --cds-link-primary-hover:LinkText;\n --cds-link-secondary:LinkText;\n --cds-link-inverse:SelectedItemText;\n --cds-link-inverse-hover:SelectedItemText;\n --cds-link-inverse-visited:SelectedItemText;\n --cds-link-visited:VisitedText;\n --cds-background-selected:SelectedItem;\n --cds-background-selected-hover:SelectedItem;\n --cds-background-inverse:SelectedItem;\n --cds-layer-selected-inverse:SelectedItem;\n }\n}\n:host .cds--g100{\n --cds-layer:var(--cds-layer-01, #f4f4f4);\n --cds-layer-active:var(--cds-layer-active-01, #c6c6c6);\n --cds-layer-background:var(--cds-layer-background-01, #ffffff);\n --cds-layer-hover:var(--cds-layer-hover-01, #e8e8e8);\n --cds-layer-selected:var(--cds-layer-selected-01, #e0e0e0);\n --cds-layer-selected-hover:var(--cds-layer-selected-hover-01, #d1d1d1);\n --cds-layer-accent:var(--cds-layer-accent-01, #e0e0e0);\n --cds-layer-accent-hover:var(--cds-layer-accent-hover-01, #d1d1d1);\n --cds-layer-accent-active:var(--cds-layer-accent-active-01, #a8a8a8);\n --cds-field:var(--cds-field-01, #f4f4f4);\n --cds-field-hover:var(--cds-field-hover-01, #e8e8e8);\n --cds-border-subtle:var(--cds-border-subtle-00, #e0e0e0);\n --cds-border-subtle-selected:var(--cds-border-subtle-selected-01, #c6c6c6);\n --cds-border-strong:var(--cds-border-strong-01, #8d8d8d);\n --cds-border-tile:var(--cds-border-tile-01, #c6c6c6);\n}\n:host{\n}\n:host .cds-aichat--dark,\n:host .cds--g90,\n:host .cds--g100{\n scrollbar-color:var(--cds-layer-03, #f4f4f4) var(--cds-layer-01, #f4f4f4);\n}\n:host{\n}\n:host .cds-aichat--widget--expand-to-fit{\n block-size:100%;\n inline-size:100%;\n max-block-size:100%;\n max-inline-size:100%;\n min-block-size:0;\n min-inline-size:0;\n}\n:host .cds-aichat--workspace-writeable-element ::slotted(*){\n block-size:100%;\n max-block-size:100%;\n}\n:host .cds-aichat--hidden{\n display:none;\n}\n:host .cds-aichat--widget__break-word{\n overflow-wrap:break-word;\n word-break:break-word;\n word-wrap:break-word;\n}\n:host .cds-aichat--widget__text-ellipsis{\n overflow:hidden;\n overflow-wrap:break-word;\n text-overflow:ellipsis;\n white-space:nowrap;\n word-wrap:break-word;\n}\n:host{\n}\n:host .cds-aichat--container--render{\n box-sizing:border-box;\n block-size:100%;\n color:var(--cds-text-primary, #161616);\n inline-size:100%;\n}\n:host .cds-aichat--container--render[dir=rtl]{\n direction:rtl;\n}\n:host{\n}\n:host .cds-aichat--container--render > div > div[role=log]{\n position:absolute;\n overflow:hidden;\n block-size:1px;\n inline-size:1px;\n inset-inline-start:-10000px;\n}\n:host{\n}\n:host .cds-aichat--widget{\n position:relative;\n z-index:1;\n display:flex;\n flex:1;\n flex-direction:column;\n block-size:100%;\n -webkit-font-smoothing:antialiased;\n -moz-osx-font-smoothing:grayscale;\n inline-size:100%;\n -webkit-tap-highlight-color:rgba(0, 0, 0, 0);\n text-rendering:optimizelegibility;\n visibility:visible;\n font-size:var(--cds-body-01-font-size, 0.875rem);\n font-weight:var(--cds-body-01-font-weight, 400);\n line-height:var(--cds-body-01-line-height, 1.42857);\n letter-spacing:var(--cds-body-01-letter-spacing, 0.16px);\n}\n:host{\n}\n:host .cds-aichat--widget.cds-aichat--widget--closed{\n overflow:hidden;\n}\n:host .cds-aichat--widget.cds-aichat--widget--default-element.cds-aichat--widget--closed{\n display:none;\n}\n:host .cds-aichat--widget.cds-aichat--widget.cds-aichat--widget--closed,\n:host .cds-aichat--ai-theme .cds-aichat--widget.cds-aichat--widget.cds-aichat--widget--closed{\n border:none;\n box-shadow:none;\n}\n:host{\n}\n@media (prefers-reduced-motion: no-preference){\n :host .cds-aichat--widget.cds-aichat--widget--launched.cds-aichat--widget--default-element:not(.cds-aichat--is-phone){\n animation:cds-aichat-widget-in 240ms cubic-bezier(0, 0, 0.3, 1) both;\n }\n}\n:host{\n}\n@media (prefers-reduced-motion: no-preference){\n :host .cds-aichat--widget.cds-aichat--widget--closing.cds-aichat--widget--default-element{\n animation:cds-aichat-widget-out 110ms cubic-bezier(0.4, 0.14, 1, 1) both;\n }\n}\n:host{\n}\n:host .cds-aichat--widget.cds-aichat--widget--default-element{\n position:fixed;\n z-index:var(--cds-aichat-z-index, 99999);\n block-size:var(--cds-aichat-height, calc(100vh - 2 * 2rem));\n inline-size:var(--cds-aichat-width, 380px);\n inset:var(--cds-aichat-top-position, auto) var(--cds-aichat-right-position, 2rem) var(--cds-aichat-bottom-position, 3rem) var(--cds-aichat-left-position, auto);\n max-block-size:var(--cds-aichat-max-height, 640px);\n max-inline-size:var(--cds-aichat-messages-max-width, 672px);\n min-block-size:var(--cds-aichat-min-height, 150px);\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--widget.cds-aichat--widget--default-element{\n inset-inline:var(--cds-aichat-right-position, 2rem) var(--cds-aichat-left-position, auto);\n}\n:host{\n}\n:host .cds-aichat--is-phone:not(.cds-aichat--container-disable-mobile-enhancements) .cds-aichat--widget{\n position:fixed;\n z-index:var(--cds-aichat-z-index, 99999);\n block-size:var(--cds-aichat-height, calc(100vh - 2 * 2rem));\n inline-size:var(--cds-aichat-width, 380px);\n inset:var(--cds-aichat-top-position, auto) var(--cds-aichat-right-position, 2rem) var(--cds-aichat-bottom-position, 3rem) var(--cds-aichat-left-position, auto);\n max-block-size:var(--cds-aichat-max-height, 640px);\n min-block-size:var(--cds-aichat-min-height, 150px);\n}\n:host .cds-aichat--is-phone:not(.cds-aichat--container-disable-mobile-enhancements) .cds-aichat--widget.cds-aichat--widget--launched.cds-aichat--widget--default-element{\n inset-block-end:1px;\n inset-inline-start:1px;\n}\n@media (prefers-reduced-motion: no-preference){\n :host .cds-aichat--is-phone:not(.cds-aichat--container-disable-mobile-enhancements) .cds-aichat--widget.cds-aichat--widget--launched.cds-aichat--widget--default-element{\n animation:cds-aichat-widget-in-mobile 240ms cubic-bezier(0, 0, 0.3, 1) both;\n }\n}\n:host .cds-aichat--is-phone[dir=rtl]:not(.cds-aichat--container-disable-mobile-enhancements) .cds-aichat--widget{\n inset-inline:var(--cds-aichat-right-position, 2rem) var(--cds-aichat-left-position, auto);\n}\n:host{\n}\n:host .cds-aichat{\n display:flex;\n box-sizing:border-box;\n flex:1;\n flex-direction:column;\n align-content:stretch;\n align-items:stretch;\n border-radius:0;\n margin:0;\n background-color:var(--cds-chat-shell-background, #ffffff);\n block-size:100%;\n color:var(--cds-text-primary, #161616);\n inline-size:100%;\n text-align:start;\n}\n:host{\n}\n:host .cds-aichat--ai-theme .cds-aichat{\n background-image:linear-gradient(0deg, var(--cds-ai-aura-start-sm, rgba(69, 137, 255, 0.16)) 0%, 15%, var(--cds-ai-aura-end, rgba(255, 255, 255, 0)) 50%, transparent 100%);\n border-block-end-color:var(--cds-ai-border-strong, #4589ff);\n background-color:var(--cds-chat-shell-background, #ffffff);\n box-shadow:inset 0 -80px 70px -65px var(--cds-ai-inner-shadow, var(--cds-ai-inner-shadow, rgba(69, 137, 255, 0.1))), 0 4px 10px 2px var(--cds-ai-drop-shadow, var(--cds-ai-drop-shadow, rgba(15, 98, 254, 0.1))), -40px 44px 60px -24px var(--cds-ai-popover-shadow-outer-01, var(--cds-ai-popover-shadow-outer-01, rgba(0, 67, 206, 0.06))), -56px 64px 64px -24px var(--cds-ai-popover-shadow-outer-02, var(--cds-ai-popover-shadow-outer-02, rgba(0, 0, 0, 0.04)));\n}\n:host .cds-aichat--ai-theme .cds-aichat--frameless .cds-aichat{\n box-shadow:none;\n}\n:host{\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--direction-has-reversible-svg svg{\n transform:scaleX(-1);\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--direction-has-reversible-svg.cds-aichat--reverse-icon svg{\n transform:scaleX(1);\n}\n:host{\n}\n:host .cds-aichat--widget__layer{\n block-size:100%;\n inline-size:100%;\n}\n:host .cds-aichat--widget__layer--hidden{\n display:none;\n}\n:host .cds-aichat--widget--max-width{\n --cds-aichat-border-radius:0;\n}\n:host .cds-aichat--panel-header-content{\n margin:auto;\n max-inline-size:var(--cds-aichat-messages-max-width, 672px);\n}\n:host .cds-aichat--panel-header{\n border-block-end:1px solid var(--cds-border-subtle-01, #c6c6c6);\n}\n:host .cds-aichat--panel-header--full-width .cds-aichat--panel-header-content{\n max-inline-size:100%;\n}";
|
|
15560
15266
|
|
|
15561
15267
|
const applicationStylesheet = typeof CSSStyleSheet !== "undefined" ? new CSSStyleSheet : null;
|
|
15562
15268
|
|
|
@@ -15572,6 +15278,7 @@ const WIDTH_BREAKPOINT_WIDE = "cds-aichat--wide-width";
|
|
|
15572
15278
|
|
|
15573
15279
|
function AppShell({hostElement, serviceManager, renderWriteableElements}) {
|
|
15574
15280
|
const intl = useIntl();
|
|
15281
|
+
const ariaAnnouncer = useAriaAnnouncer();
|
|
15575
15282
|
const appState = useSelector(state => state);
|
|
15576
15283
|
const {config, persistedToBrowserStorage, isHydrated, assistantMessageState, humanAgentState, workspacePanelState, allMessageItemsByID, allMessagesByID, catastrophicErrorType, iFramePanelState, viewSourcePanelState, customPanelState, responsePanelState, chatWidthBreakpoint} = appState;
|
|
15577
15284
|
const {derived: {themeWithDefaults: theme, layout, languagePack, launcher, cssVariableOverrides, header}, public: publicConfig} = config;
|
|
@@ -15605,7 +15312,7 @@ function AppShell({hostElement, serviceManager, renderWriteableElements}) {
|
|
|
15605
15312
|
const inputRef = useRef(null);
|
|
15606
15313
|
const messagesToArray = useMemo(() => createUnmappingMemoizer(), []);
|
|
15607
15314
|
const useCustomHostElement = Boolean(hostElement);
|
|
15608
|
-
const headerDisplayName = header?.name
|
|
15315
|
+
const headerDisplayName = header?.name;
|
|
15609
15316
|
const inputState = selectInputState(appState);
|
|
15610
15317
|
const agentDisplayState = selectHumanAgentDisplayState(appState);
|
|
15611
15318
|
const {showDisclaimer, showHomeScreen, shouldShowHydrationPanel, isHydratingComplete} = useDerivedState({
|
|
@@ -15625,14 +15332,7 @@ function AppShell({hostElement, serviceManager, renderWriteableElements}) {
|
|
|
15625
15332
|
useCustomHostElement,
|
|
15626
15333
|
requestFocus: requestFocusCallback
|
|
15627
15334
|
});
|
|
15628
|
-
const
|
|
15629
|
-
shouldTakeFocusIfOpensAutomatically: publicConfig.shouldTakeFocusIfOpensAutomatically,
|
|
15630
|
-
hasSentNonWelcomeMessage: persistedToBrowserStorage.hasSentNonWelcomeMessage,
|
|
15631
|
-
localMessageIDs: assistantMessageState.localMessageIDs,
|
|
15632
|
-
allMessageItemsByID,
|
|
15633
|
-
allMessagesByID,
|
|
15634
|
-
requestFocus: requestFocusCallback
|
|
15635
|
-
});
|
|
15335
|
+
const shouldAutoFocus = publicConfig.shouldTakeFocusIfOpensAutomatically ?? true;
|
|
15636
15336
|
const requestFocus = useFocusManager({
|
|
15637
15337
|
shouldAutoFocus,
|
|
15638
15338
|
showDisclaimer,
|
|
@@ -15650,9 +15350,16 @@ function AppShell({hostElement, serviceManager, renderWriteableElements}) {
|
|
|
15650
15350
|
useEffect(() => {
|
|
15651
15351
|
requestFocusRef.current = requestFocus;
|
|
15652
15352
|
}, [ requestFocus ]);
|
|
15653
|
-
|
|
15654
|
-
|
|
15655
|
-
|
|
15353
|
+
useEffect(() => {
|
|
15354
|
+
if (!isHydrated) {
|
|
15355
|
+
return;
|
|
15356
|
+
}
|
|
15357
|
+
if (showHomeScreen) {
|
|
15358
|
+
ariaAnnouncer(languagePack.homeScreen_shown);
|
|
15359
|
+
} else if (persistedToBrowserStorage.hasSentNonWelcomeMessage) {
|
|
15360
|
+
ariaAnnouncer(languagePack.homeScreen_hidden);
|
|
15361
|
+
}
|
|
15362
|
+
}, [ showHomeScreen, isHydrated, ariaAnnouncer, languagePack, persistedToBrowserStorage.hasSentNonWelcomeMessage ]);
|
|
15656
15363
|
useStyleInjection({
|
|
15657
15364
|
containerRef,
|
|
15658
15365
|
hostElement,
|
|
@@ -15723,6 +15430,46 @@ function AppShell({hostElement, serviceManager, renderWriteableElements}) {
|
|
|
15723
15430
|
const doScrollToMessage = useCallback((messageID, animate = true) => {
|
|
15724
15431
|
messagesRef.current?.doScrollToMessage(messageID, animate);
|
|
15725
15432
|
}, []);
|
|
15433
|
+
const handleFocusToggle = useCallback(() => {
|
|
15434
|
+
try {
|
|
15435
|
+
const inputHasFocus = inputRef.current?.hasFocus() ?? false;
|
|
15436
|
+
if (inputHasFocus) {
|
|
15437
|
+
messagesRef.current?.requestFocusOnFirstItemOfLastMessage();
|
|
15438
|
+
} else {
|
|
15439
|
+
inputRef.current?.requestFocus();
|
|
15440
|
+
}
|
|
15441
|
+
} catch (error) {
|
|
15442
|
+
consoleError("An error occurred in handleFocusToggle", error);
|
|
15443
|
+
}
|
|
15444
|
+
}, []);
|
|
15445
|
+
useEffect(() => {
|
|
15446
|
+
const shortcutConfig = publicConfig.keyboardShortcuts?.messageFocusToggle || DEFAULT_MESSAGE_FOCUS_TOGGLE_SHORTCUT;
|
|
15447
|
+
const shortcutsEnabled = shortcutConfig.is_on === true;
|
|
15448
|
+
const handleKeyDown = event => {
|
|
15449
|
+
if (shortcutsEnabled && matchesShortcut(event, shortcutConfig)) {
|
|
15450
|
+
event.preventDefault();
|
|
15451
|
+
event.stopPropagation();
|
|
15452
|
+
handleFocusToggle();
|
|
15453
|
+
} else if (event.key === "Escape") {
|
|
15454
|
+
const activeElement = getDeepActiveElement();
|
|
15455
|
+
const messagesWrapper = containerRef.current?.querySelector(".cds-aichat--messages__wrapper");
|
|
15456
|
+
const messagesContainer = containerRef.current?.querySelector(".cds-aichat--messages");
|
|
15457
|
+
const inputContainer = containerRef.current?.querySelector(".cds-aichat--input");
|
|
15458
|
+
if (activeElement && (messagesWrapper?.contains(activeElement) || messagesContainer?.contains(activeElement)) && !inputContainer?.contains(activeElement)) {
|
|
15459
|
+
event.preventDefault();
|
|
15460
|
+
inputRef.current?.requestFocus();
|
|
15461
|
+
}
|
|
15462
|
+
}
|
|
15463
|
+
};
|
|
15464
|
+
if (viewState.mainWindow && containerRef.current) {
|
|
15465
|
+
const container = containerRef.current;
|
|
15466
|
+
container.addEventListener("keydown", handleKeyDown);
|
|
15467
|
+
return () => {
|
|
15468
|
+
container.removeEventListener("keydown", handleKeyDown);
|
|
15469
|
+
};
|
|
15470
|
+
}
|
|
15471
|
+
return undefined;
|
|
15472
|
+
}, [ publicConfig.keyboardShortcuts, handleFocusToggle, viewState.mainWindow, containerRef ]);
|
|
15726
15473
|
const mainWindowFunctions = useMemo(() => ({
|
|
15727
15474
|
requestFocus,
|
|
15728
15475
|
doAutoScroll,
|
|
@@ -15783,17 +15530,31 @@ function AppShell({hostElement, serviceManager, renderWriteableElements}) {
|
|
|
15783
15530
|
},
|
|
15784
15531
|
aiEnabled: theme.aiEnabled,
|
|
15785
15532
|
showFrame: layout?.showFrame,
|
|
15786
|
-
|
|
15533
|
+
cornerAll: theme.corners.startStart === theme.corners.startEnd && theme.corners.startStart === theme.corners.endStart && theme.corners.startStart === theme.corners.endEnd ? theme.corners.startStart : undefined,
|
|
15534
|
+
cornerStartStart: theme.corners.startStart,
|
|
15535
|
+
cornerStartEnd: theme.corners.startEnd,
|
|
15536
|
+
cornerEndStart: theme.corners.endStart,
|
|
15537
|
+
cornerEndEnd: theme.corners.endEnd,
|
|
15787
15538
|
contentMaxWidth: layout.hasContentMaxWidth,
|
|
15788
15539
|
showWorkspace: workspacePanelState.isOpen,
|
|
15789
15540
|
workspaceLocation: workspacePanelState.options.preferredLocation,
|
|
15790
15541
|
workspaceAriaLabel: languagePack.aria_workspaceRegion,
|
|
15791
15542
|
historyAriaLabel: languagePack.aria_historyRegion,
|
|
15792
|
-
messagesAriaLabel: languagePack.aria_messagesRegion
|
|
15543
|
+
messagesAriaLabel: languagePack.aria_messagesRegion,
|
|
15544
|
+
panelOpenedAnnouncement: languagePack.panel_opened,
|
|
15545
|
+
panelClosedAnnouncement: languagePack.panel_closed,
|
|
15546
|
+
workspaceOpenedAnnouncement: workspacePanelState.options.title ? intl.formatMessage({
|
|
15547
|
+
id: "workspace_opened"
|
|
15548
|
+
}, {
|
|
15549
|
+
title: workspacePanelState.options.title
|
|
15550
|
+
}) : languagePack.workspace_opened_no_title,
|
|
15551
|
+
workspaceClosedAnnouncement: languagePack.workspace_closed,
|
|
15552
|
+
historyShownAnnouncement: languagePack.history_shown,
|
|
15553
|
+
historyHiddenAnnouncement: languagePack.history_hidden
|
|
15793
15554
|
}, React.createElement(AppShellPanels, {
|
|
15794
15555
|
serviceManager,
|
|
15795
15556
|
languagePack,
|
|
15796
|
-
assistantName:
|
|
15557
|
+
assistantName: publicConfig.assistantName,
|
|
15797
15558
|
isHydratingComplete,
|
|
15798
15559
|
shouldShowHydrationPanel,
|
|
15799
15560
|
onPanelOpenStart,
|