@carbon/ai-chat 1.3.0-rc.0 → 1.3.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/dist/es/aiChatEntry.js +1 -1
- package/dist/es/chat.ChatAppEntry.js +205 -104
- package/dist/es/chat.ChatAppEntry.js.map +1 -1
- package/dist/es/chat.PageObjectId.js +7 -1
- package/dist/es/chat.PageObjectId.js.map +1 -1
- package/dist/es/serverEntry.js +1 -1
- package/dist/es-custom/aiChatEntry.js +1 -1
- package/dist/es-custom/chat.ChatAppEntry.js +205 -104
- package/dist/es-custom/chat.ChatAppEntry.js.map +1 -1
- package/dist/es-custom/chat.PageObjectId.js +7 -1
- package/dist/es-custom/chat.PageObjectId.js.map +1 -1
- package/dist/es-custom/serverEntry.js +1 -1
- package/dist/types/aiChatEntry.d.ts +2 -2
- package/dist/types/{serverEntry-BN03ML3a.d.ts → serverEntry-BMoPx5K4.d.ts} +87 -26
- package/dist/types/serverEntry.d.ts +1 -1
- package/package.json +3 -3
|
@@ -10,7 +10,7 @@ import merge from "lodash-es/merge.js";
|
|
|
10
10
|
|
|
11
11
|
import cloneDeep from "lodash-es/cloneDeep.js";
|
|
12
12
|
|
|
13
|
-
import { j as MessageResponseTypes, i as MessageInputType, f as FileStatusValue, m as HumanAgentMessageType,
|
|
13
|
+
import { j as MessageResponseTypes, i as MessageInputType, f as FileStatusValue, m as HumanAgentMessageType, q as InternalMessageRequestType, h as ButtonItemType, O as OnErrorType, d as MinimizeButtonIconType, P as PanelType, C as CornersType, B as BusEventType, M as MessageSendSource, H as HumanAgentsOnlineStatus, o as MessageErrorState, b as CancellationReason, c as CarbonTheme, e as enLanguagePack, W as WriteableElementName, V as ViewType, a as ViewChangeReason, E as ErrorType, S as ScreenShareState, r as MainWindowOpenReason, l as WidthOptions, I as IFrameItemDisplayOption, n as ChainOfThoughtStepStatus, U as UserType, F as FeedbackInteractionType, p as PageObjectId, s as MainWindowCloseReason } from "./chat.PageObjectId.js";
|
|
14
14
|
|
|
15
15
|
import mergeWith from "lodash-es/mergeWith.js";
|
|
16
16
|
|
|
@@ -1440,7 +1440,7 @@ function agentUpdateIsTyping(isTyping) {
|
|
|
1440
1440
|
};
|
|
1441
1441
|
}
|
|
1442
1442
|
|
|
1443
|
-
const VERSION = "1.
|
|
1443
|
+
const VERSION = "1.3.0";
|
|
1444
1444
|
|
|
1445
1445
|
const BOUNCING_ANIMATION_TIMEOUTS = [ 15e3, 6e4 ];
|
|
1446
1446
|
|
|
@@ -1481,14 +1481,18 @@ const DEFAULT_LAUNCHER = {
|
|
|
1481
1481
|
deepFreeze(DEFAULT_LAUNCHER);
|
|
1482
1482
|
|
|
1483
1483
|
const DEFAULT_CUSTOM_PANEL_CONFIG_OPTIONS = {
|
|
1484
|
-
title: null,
|
|
1485
1484
|
hideBackButton: false,
|
|
1486
|
-
hidePanelHeader: false,
|
|
1487
1485
|
disableAnimation: false
|
|
1488
1486
|
};
|
|
1489
1487
|
|
|
1490
1488
|
deepFreeze(DEFAULT_CUSTOM_PANEL_CONFIG_OPTIONS);
|
|
1491
1489
|
|
|
1490
|
+
const DEFAULT_PANEL_CONFIG_OPTIONS_BY_TYPE = {
|
|
1491
|
+
[PanelType.DEFAULT]: DEFAULT_CUSTOM_PANEL_CONFIG_OPTIONS
|
|
1492
|
+
};
|
|
1493
|
+
|
|
1494
|
+
deepFreeze(DEFAULT_PANEL_CONFIG_OPTIONS_BY_TYPE);
|
|
1495
|
+
|
|
1492
1496
|
const DEFAULT_CUSTOM_PANEL_STATE = {
|
|
1493
1497
|
isOpen: false,
|
|
1494
1498
|
panelID: DEFAULT_CUSTOM_PANEL_ID,
|
|
@@ -1915,13 +1919,19 @@ class ChatActionsImpl {
|
|
|
1915
1919
|
const input = deepFreeze({
|
|
1916
1920
|
rawValue: inputState.rawValue ?? ""
|
|
1917
1921
|
});
|
|
1922
|
+
const customPanels = deepFreeze({
|
|
1923
|
+
default: {
|
|
1924
|
+
isOpen: Boolean(state.customPanelState.isOpen)
|
|
1925
|
+
}
|
|
1926
|
+
});
|
|
1918
1927
|
return deepFreeze({
|
|
1919
1928
|
...rest,
|
|
1920
1929
|
humanAgent: humanAgent,
|
|
1921
1930
|
isMessageLoadingCounter: assistantMessageState.isMessageLoadingCounter,
|
|
1922
1931
|
isMessageLoadingText: assistantMessageState.isMessageLoadingText,
|
|
1923
1932
|
isHydratingCounter: assistantMessageState.isHydratingCounter,
|
|
1924
|
-
input: input
|
|
1933
|
+
input: input,
|
|
1934
|
+
customPanels: customPanels
|
|
1925
1935
|
});
|
|
1926
1936
|
}
|
|
1927
1937
|
updateRawInputValue(updater) {
|
|
@@ -2856,11 +2866,12 @@ class HistoryService {
|
|
|
2856
2866
|
}
|
|
2857
2867
|
}
|
|
2858
2868
|
|
|
2859
|
-
function createCustomPanelInstance(serviceManager) {
|
|
2869
|
+
function createCustomPanelInstance(serviceManager, defaultPanelOptions = DEFAULT_CUSTOM_PANEL_CONFIG_OPTIONS) {
|
|
2860
2870
|
const customPanelInstance = {
|
|
2861
|
-
open(options
|
|
2871
|
+
open(options) {
|
|
2872
|
+
const resolvedOptions = options ?? defaultPanelOptions;
|
|
2862
2873
|
const {store: store} = serviceManager;
|
|
2863
|
-
store.dispatch(actions.setCustomPanelConfigOptions(
|
|
2874
|
+
store.dispatch(actions.setCustomPanelConfigOptions(resolvedOptions));
|
|
2864
2875
|
store.dispatch(actions.setCustomPanelOpen(true));
|
|
2865
2876
|
},
|
|
2866
2877
|
close() {
|
|
@@ -2872,11 +2883,15 @@ function createCustomPanelInstance(serviceManager) {
|
|
|
2872
2883
|
|
|
2873
2884
|
function createCustomPanelManager(serviceManger) {
|
|
2874
2885
|
const panels = {
|
|
2875
|
-
[DEFAULT_CUSTOM_PANEL_ID]: createCustomPanelInstance(serviceManger)
|
|
2886
|
+
[DEFAULT_CUSTOM_PANEL_ID]: createCustomPanelInstance(serviceManger, DEFAULT_PANEL_CONFIG_OPTIONS_BY_TYPE[PanelType.DEFAULT])
|
|
2887
|
+
};
|
|
2888
|
+
const panelByLocation = {
|
|
2889
|
+
[PanelType.DEFAULT]: DEFAULT_CUSTOM_PANEL_ID
|
|
2876
2890
|
};
|
|
2877
2891
|
return Object.freeze({
|
|
2878
|
-
getPanel() {
|
|
2879
|
-
|
|
2892
|
+
getPanel(panelLocation = PanelType.DEFAULT) {
|
|
2893
|
+
const targetPanelId = panelByLocation[panelLocation] ?? DEFAULT_CUSTOM_PANEL_ID;
|
|
2894
|
+
return panels[targetPanelId];
|
|
2880
2895
|
}
|
|
2881
2896
|
});
|
|
2882
2897
|
}
|
|
@@ -13807,8 +13822,6 @@ const ChatHeaderTitle = createComponent({
|
|
|
13807
13822
|
react: React
|
|
13808
13823
|
});
|
|
13809
13824
|
|
|
13810
|
-
const HideComponentContext = React.createContext(false);
|
|
13811
|
-
|
|
13812
13825
|
const AISlug = createComponent({
|
|
13813
13826
|
tagName: "cds-ai-label",
|
|
13814
13827
|
elementClass: CDSAILabel,
|
|
@@ -13828,31 +13841,22 @@ const SidePanelClose = carbonIconToReact(SidePanelClose16);
|
|
|
13828
13841
|
const SubtractLarge = carbonIconToReact(SubtractLarge16);
|
|
13829
13842
|
|
|
13830
13843
|
function Header(props, ref) {
|
|
13831
|
-
const {displayName: displayName, backContent: backContent, showRestartButton: showRestartButton, showBackButton: showBackButton, labelBackButton: labelBackButton, onClickClose: onClickClose, onClickRestart: onClickRestart, onClickBack: onClickBack, overflowItems: overflowItems, overflowClicked: overflowClicked, backButtonType: backButtonType, hideCloseButton: hideCloseButton,
|
|
13844
|
+
const {displayName: displayName, backContent: backContent, showRestartButton: showRestartButton, showBackButton: showBackButton, labelBackButton: labelBackButton, onClickClose: onClickClose, onClickRestart: onClickRestart, onClickBack: onClickBack, overflowItems: overflowItems, overflowClicked: overflowClicked, backButtonType: backButtonType, hideCloseButton: hideCloseButton, showAiLabel: showAiLabel, title: title, closeButtonLabel: closeButtonLabel, overflowMenuTooltip: overflowMenuTooltip, overflowMenuAriaLabel: overflowMenuAriaLabel, restartButtonLabel: restartButtonLabel, aiSlugLabel: aiSlugLabel, aiSlugTitle: aiSlugTitle, aiSlugDescription: aiSlugDescription, aiSlugAfterDescriptionElement: aiSlugAfterDescriptionElement, isAiSlugHidden: isAiSlugHidden, minimizeButtonIconType: minimizeButtonIconType = MinimizeButtonIconType.MINIMIZE, isRestarting: isRestarting = false} = props;
|
|
13832
13845
|
const backButtonRef = useRef(undefined);
|
|
13833
13846
|
const restartButtonRef = useRef(undefined);
|
|
13834
13847
|
const closeButtonRef = useRef(undefined);
|
|
13835
13848
|
const overflowRef = useRef(undefined);
|
|
13836
|
-
const serviceManager = useServiceManager();
|
|
13837
|
-
const languagePack = useLanguagePack();
|
|
13838
|
-
const derivedPublicConfig = useSelector(state => state.config.derived);
|
|
13839
|
-
const isRestarting = useSelector(state => state.isRestarting);
|
|
13840
13849
|
const isRTL = document.dir === "rtl";
|
|
13841
|
-
const
|
|
13842
|
-
const
|
|
13843
|
-
const
|
|
13844
|
-
const chatHeaderTitle = enableChatHeaderConfig ? chatHeaderConfig?.title : undefined;
|
|
13845
|
-
const chatHeaderName = enableChatHeaderConfig ? chatHeaderConfig?.name : undefined;
|
|
13846
|
-
const chatHeaderDisplayName = chatHeaderName || displayName;
|
|
13847
|
-
const useHideCloseButton = chatHeaderConfig?.hideMinimizeButton || hideCloseButton;
|
|
13850
|
+
const shouldShowAiLabel = showAiLabel !== undefined ? showAiLabel : true;
|
|
13851
|
+
const showAiSlugContent = shouldShowAiLabel && !isAiSlugHidden && !!(aiSlugLabel || aiSlugTitle || aiSlugDescription || aiSlugAfterDescriptionElement);
|
|
13852
|
+
const useHideCloseButton = hideCloseButton ?? false;
|
|
13848
13853
|
let closeIcon;
|
|
13849
13854
|
let closeReverseIcon = false;
|
|
13850
13855
|
let closeIsReversible = true;
|
|
13851
|
-
const minimizeButtonIconType = chatHeaderConfig?.minimizeButtonIconType;
|
|
13852
13856
|
switch (minimizeButtonIconType) {
|
|
13853
13857
|
case MinimizeButtonIconType.CLOSE:
|
|
13854
13858
|
closeIcon = React.createElement(CloseLarge, {
|
|
13855
|
-
"aria-label":
|
|
13859
|
+
"aria-label": closeButtonLabel,
|
|
13856
13860
|
slot: "icon",
|
|
13857
13861
|
className: "cds-aichat--icon__close"
|
|
13858
13862
|
});
|
|
@@ -13860,7 +13864,7 @@ function Header(props, ref) {
|
|
|
13860
13864
|
|
|
13861
13865
|
case MinimizeButtonIconType.MINIMIZE:
|
|
13862
13866
|
closeIcon = React.createElement(SubtractLarge, {
|
|
13863
|
-
"aria-label":
|
|
13867
|
+
"aria-label": closeButtonLabel,
|
|
13864
13868
|
slot: "icon",
|
|
13865
13869
|
className: "cds-aichat--icon__subtract"
|
|
13866
13870
|
});
|
|
@@ -13869,7 +13873,7 @@ function Header(props, ref) {
|
|
|
13869
13873
|
case MinimizeButtonIconType.SIDE_PANEL_LEFT:
|
|
13870
13874
|
closeIsReversible = false;
|
|
13871
13875
|
closeIcon = React.createElement(SidePanelClose, {
|
|
13872
|
-
"aria-label":
|
|
13876
|
+
"aria-label": closeButtonLabel,
|
|
13873
13877
|
slot: "icon",
|
|
13874
13878
|
className: "cds-aichat--icon__side-panel-close"
|
|
13875
13879
|
});
|
|
@@ -13879,7 +13883,7 @@ function Header(props, ref) {
|
|
|
13879
13883
|
closeIsReversible = false;
|
|
13880
13884
|
closeReverseIcon = true;
|
|
13881
13885
|
closeIcon = React.createElement(SidePanelClose, {
|
|
13882
|
-
"aria-label":
|
|
13886
|
+
"aria-label": closeButtonLabel,
|
|
13883
13887
|
slot: "icon",
|
|
13884
13888
|
className: "cds-aichat--icon__side-panel-close"
|
|
13885
13889
|
});
|
|
@@ -13888,7 +13892,7 @@ function Header(props, ref) {
|
|
|
13888
13892
|
default:
|
|
13889
13893
|
{
|
|
13890
13894
|
closeIcon = React.createElement(SubtractLarge, {
|
|
13891
|
-
"aria-label":
|
|
13895
|
+
"aria-label": closeButtonLabel,
|
|
13892
13896
|
slot: "icon",
|
|
13893
13897
|
className: "cds-aichat--icon__subtract"
|
|
13894
13898
|
});
|
|
@@ -13913,21 +13917,22 @@ function Header(props, ref) {
|
|
|
13913
13917
|
}
|
|
13914
13918
|
}));
|
|
13915
13919
|
let leftContent;
|
|
13920
|
+
const handleOverflowClick = overflowClicked ?? (() => {});
|
|
13916
13921
|
if (overflowItems) {
|
|
13917
13922
|
leftContent = React.createElement(OverflowMenu, {
|
|
13918
13923
|
className: "cds-aichat--header__overflow-menu",
|
|
13919
13924
|
ref: overflowRef,
|
|
13920
|
-
"tooltip-text":
|
|
13921
|
-
"aria-label":
|
|
13925
|
+
"tooltip-text": overflowMenuTooltip,
|
|
13926
|
+
"aria-label": overflowMenuAriaLabel
|
|
13922
13927
|
}, React.createElement(OverflowMenuVertical, {
|
|
13923
|
-
"aria-label":
|
|
13928
|
+
"aria-label": overflowMenuAriaLabel,
|
|
13924
13929
|
className: "cds--overflow-menu__icon",
|
|
13925
13930
|
slot: "icon"
|
|
13926
13931
|
}), React.createElement(OverflowMenuBody, null, overflowItems?.map((item, index) => React.createElement(OverflowMenuItem, {
|
|
13927
13932
|
key: item,
|
|
13928
13933
|
onClick: () => {
|
|
13929
13934
|
doFocusRef(overflowRef);
|
|
13930
|
-
|
|
13935
|
+
handleOverflowClick(index);
|
|
13931
13936
|
}
|
|
13932
13937
|
}, item))));
|
|
13933
13938
|
} else if (showBackButton) {
|
|
@@ -13952,44 +13957,41 @@ function Header(props, ref) {
|
|
|
13952
13957
|
className: "cds-aichat--header__buttons cds-aichat--header__left-items"
|
|
13953
13958
|
}, leftContent), React.createElement("div", {
|
|
13954
13959
|
className: "cds-aichat--header__center-container"
|
|
13955
|
-
}, (
|
|
13960
|
+
}, (title || displayName) && React.createElement("div", {
|
|
13956
13961
|
className: "cds-aichat--header__title-container"
|
|
13957
13962
|
}, React.createElement(ChatHeaderTitle, {
|
|
13958
|
-
title:
|
|
13959
|
-
name:
|
|
13963
|
+
title: title,
|
|
13964
|
+
name: displayName
|
|
13960
13965
|
}))), React.createElement("div", {
|
|
13961
13966
|
className: "cds-aichat--header__buttons cds-aichat--header__right-buttons"
|
|
13962
|
-
},
|
|
13967
|
+
}, showAiSlugContent && React.createElement(AISlug, {
|
|
13963
13968
|
className: "cds-aichat--header__slug",
|
|
13964
13969
|
size: AI_LABEL_SIZE.EXTRA_SMALL,
|
|
13965
13970
|
alignment: isRTL ? POPOVER_ALIGNMENT.BOTTOM_LEFT : POPOVER_ALIGNMENT.BOTTOM_RIGHT
|
|
13966
13971
|
}, React.createElement("div", {
|
|
13967
13972
|
slot: "body-text"
|
|
13968
|
-
},
|
|
13973
|
+
}, aiSlugLabel && React.createElement("p", {
|
|
13969
13974
|
className: "cds-aichat--header__slug-label"
|
|
13970
|
-
},
|
|
13975
|
+
}, aiSlugLabel), aiSlugTitle && React.createElement("h4", {
|
|
13971
13976
|
className: "cds-aichat--header__slug-title"
|
|
13972
|
-
},
|
|
13977
|
+
}, aiSlugTitle), React.createElement("div", {
|
|
13973
13978
|
className: "cds-aichat--header__slug-description"
|
|
13974
|
-
}, React.createElement("div", null,
|
|
13975
|
-
slotName: WriteableElementName.AI_TOOLTIP_AFTER_DESCRIPTION_ELEMENT,
|
|
13976
|
-
id: `aiTooltipAfterDescription${serviceManager.namespace.suffix}`
|
|
13977
|
-
})))), showRestartButton && React.createElement(HeaderButton, {
|
|
13979
|
+
}, React.createElement("div", null, aiSlugDescription), aiSlugAfterDescriptionElement))), showRestartButton && React.createElement(HeaderButton, {
|
|
13978
13980
|
className: "cds-aichat--header__restart-button",
|
|
13979
|
-
label:
|
|
13981
|
+
label: restartButtonLabel ?? "",
|
|
13980
13982
|
onClick: onClickRestart,
|
|
13981
13983
|
buttonRef: restartButtonRef,
|
|
13982
13984
|
disabled: isRestarting,
|
|
13983
13985
|
tooltipPosition: isRTL ? BUTTON_TOOLTIP_POSITION.RIGHT : BUTTON_TOOLTIP_POSITION.LEFT
|
|
13984
13986
|
}, React.createElement(Restart$1, {
|
|
13985
|
-
"aria-label":
|
|
13987
|
+
"aria-label": restartButtonLabel ?? "",
|
|
13986
13988
|
slot: "icon"
|
|
13987
13989
|
})), !useHideCloseButton && React.createElement(HeaderButton, {
|
|
13988
13990
|
className: cx("cds-aichat--header__close-button", {
|
|
13989
13991
|
"cds-aichat--reverse-icon": closeReverseIcon
|
|
13990
13992
|
}),
|
|
13991
13993
|
isReversible: closeIsReversible,
|
|
13992
|
-
label:
|
|
13994
|
+
label: closeButtonLabel,
|
|
13993
13995
|
onClick: async () => {
|
|
13994
13996
|
onClickClose();
|
|
13995
13997
|
},
|
|
@@ -14017,10 +14019,13 @@ function HeaderButton({onClick: onClick, buttonRef: buttonRef, className: classN
|
|
|
14017
14019
|
|
|
14018
14020
|
const HeaderExport = React.memo(forwardRef(Header));
|
|
14019
14021
|
|
|
14022
|
+
const HideComponentContext = React.createContext(false);
|
|
14023
|
+
|
|
14020
14024
|
function AssistantHeader(props, ref) {
|
|
14021
|
-
const {onClose: onClose, onRestart: onRestart, onToggleHomeScreen: onToggleHomeScreen, headerDisplayName: headerDisplayName, includeWriteableElement: includeWriteableElement
|
|
14025
|
+
const {onClose: onClose, onRestart: onRestart, onToggleHomeScreen: onToggleHomeScreen, headerDisplayName: headerDisplayName, includeWriteableElement: includeWriteableElement} = props;
|
|
14022
14026
|
const serviceManager = useServiceManager();
|
|
14023
14027
|
const languagePack = useLanguagePack();
|
|
14028
|
+
const isHidden = useContext(HideComponentContext);
|
|
14024
14029
|
const homeScreenIsOn = useSelector(state => {
|
|
14025
14030
|
const homescreen = state.config.public.homescreen;
|
|
14026
14031
|
return homescreen?.isOn && !homescreen?.disableReturn;
|
|
@@ -14028,17 +14033,24 @@ function AssistantHeader(props, ref) {
|
|
|
14028
14033
|
const derivedPublicConfig = useSelector(state => state.config.derived);
|
|
14029
14034
|
const customMenuOptions = derivedPublicConfig.header.menuOptions;
|
|
14030
14035
|
const memoizedCustomMenuOptions = useMemo(() => customMenuOptions || undefined, [ customMenuOptions ]);
|
|
14036
|
+
const headerConfig = derivedPublicConfig.header;
|
|
14031
14037
|
const {isConnectingOrConnected: isConnectingOrConnected} = useSelector(selectHumanAgentDisplayState, shallowEqual);
|
|
14038
|
+
const isRestarting = useSelector(state => state.isRestarting);
|
|
14032
14039
|
const headerRef = useRef(undefined);
|
|
14033
14040
|
const Home = carbonIconToReact(Home16);
|
|
14034
|
-
const showRestartButton =
|
|
14041
|
+
const showRestartButton = headerConfig?.showRestartButton;
|
|
14042
|
+
const showAiLabel = headerConfig?.showAiLabel !== false;
|
|
14043
|
+
const minimizeButtonIconType = headerConfig?.minimizeButtonIconType ?? MinimizeButtonIconType.MINIMIZE;
|
|
14044
|
+
const hideCloseButton = headerConfig?.hideMinimizeButton ?? false;
|
|
14045
|
+
const headerTitle = headerConfig?.title ?? undefined;
|
|
14046
|
+
const chatHeaderDisplayName = headerConfig?.name || headerDisplayName || undefined;
|
|
14035
14047
|
const allowHomeScreen = homeScreenIsOn && !isConnectingOrConnected;
|
|
14036
14048
|
const overflowClicked = useCallback(index => {
|
|
14037
14049
|
if (index === 0 && allowHomeScreen) {
|
|
14038
14050
|
onToggleHomeScreen?.();
|
|
14039
14051
|
} else {
|
|
14040
|
-
const
|
|
14041
|
-
handler();
|
|
14052
|
+
const handler = memoizedCustomMenuOptions?.[allowHomeScreen ? index - 1 : index]?.handler;
|
|
14053
|
+
handler?.();
|
|
14042
14054
|
}
|
|
14043
14055
|
}, [ memoizedCustomMenuOptions, onToggleHomeScreen, allowHomeScreen ]);
|
|
14044
14056
|
const overflowItems = memoizedCustomMenuOptions?.map(option => option.text);
|
|
@@ -14046,11 +14058,16 @@ function AssistantHeader(props, ref) {
|
|
|
14046
14058
|
overflowItems.splice(0, 0, languagePack.homeScreen_overflowMenuHomeScreen);
|
|
14047
14059
|
}
|
|
14048
14060
|
useImperativeHandle(ref, () => headerRef.current);
|
|
14061
|
+
const aiSlugAfterDescriptionElement = !isHidden ? React.createElement(WriteableElement$1, {
|
|
14062
|
+
slotName: WriteableElementName.AI_TOOLTIP_AFTER_DESCRIPTION_ELEMENT,
|
|
14063
|
+
id: `aiTooltipAfterDescription${serviceManager.namespace.suffix}`
|
|
14064
|
+
}) : null;
|
|
14049
14065
|
return React.createElement("div", {
|
|
14050
14066
|
className: "cds-aichat--header__container"
|
|
14051
|
-
},
|
|
14067
|
+
}, headerConfig?.isOn && React.createElement(HeaderExport, {
|
|
14052
14068
|
ref: headerRef,
|
|
14053
|
-
|
|
14069
|
+
title: headerTitle,
|
|
14070
|
+
displayName: chatHeaderDisplayName,
|
|
14054
14071
|
showBackButton: Boolean(allowHomeScreen && onToggleHomeScreen),
|
|
14055
14072
|
showRestartButton: showRestartButton,
|
|
14056
14073
|
backContent: React.createElement(Home, {
|
|
@@ -14062,7 +14079,18 @@ function AssistantHeader(props, ref) {
|
|
|
14062
14079
|
onClickBack: onToggleHomeScreen,
|
|
14063
14080
|
overflowItems: overflowItems,
|
|
14064
14081
|
overflowClicked: overflowClicked,
|
|
14065
|
-
|
|
14082
|
+
showAiLabel: showAiLabel,
|
|
14083
|
+
hideCloseButton: hideCloseButton,
|
|
14084
|
+
closeButtonLabel: languagePack.launcher_isOpen,
|
|
14085
|
+
overflowMenuTooltip: languagePack.header_overflowMenu_options,
|
|
14086
|
+
overflowMenuAriaLabel: languagePack.components_overflow_ariaLabel,
|
|
14087
|
+
restartButtonLabel: languagePack.buttons_restart,
|
|
14088
|
+
aiSlugLabel: languagePack.ai_slug_label,
|
|
14089
|
+
aiSlugTitle: languagePack.ai_slug_title,
|
|
14090
|
+
aiSlugDescription: languagePack.ai_slug_description,
|
|
14091
|
+
aiSlugAfterDescriptionElement: aiSlugAfterDescriptionElement,
|
|
14092
|
+
minimizeButtonIconType: minimizeButtonIconType,
|
|
14093
|
+
isRestarting: isRestarting
|
|
14066
14094
|
}), includeWriteableElement && React.createElement(WriteableElement$1, {
|
|
14067
14095
|
slotName: WriteableElementName.HEADER_BOTTOM_ELEMENT,
|
|
14068
14096
|
id: `headerBottomElement${serviceManager.namespace.suffix}`,
|
|
@@ -14818,7 +14846,6 @@ class AssistantChat extends Component {
|
|
|
14818
14846
|
onRestart: onRestart,
|
|
14819
14847
|
headerDisplayName: headerDisplayName,
|
|
14820
14848
|
onToggleHomeScreen: onToggleHomeScreen,
|
|
14821
|
-
enableChatHeaderConfig: true,
|
|
14822
14849
|
includeWriteableElement: true
|
|
14823
14850
|
})), React.createElement("div", {
|
|
14824
14851
|
className: "cds-aichat--non-header-container",
|
|
@@ -14847,25 +14874,53 @@ var AssistantChat$1 = injectIntl(AssistantChat, {
|
|
|
14847
14874
|
|
|
14848
14875
|
function HomeScreenHeader(props, ref) {
|
|
14849
14876
|
const {onClose: onClose, onRestart: onRestart} = props;
|
|
14877
|
+
const languagePack = useLanguagePack();
|
|
14878
|
+
const serviceManager = useServiceManager();
|
|
14879
|
+
const isHidden = useContext(HideComponentContext);
|
|
14850
14880
|
const showRestartButton = useSelector(state => state.config.derived.header?.showRestartButton);
|
|
14851
14881
|
const customMenuOptions = useSelector(state => state.config.derived.header?.menuOptions);
|
|
14882
|
+
const headerConfig = useSelector(state => state.config.derived.header);
|
|
14883
|
+
const isRestarting = useSelector(state => state.isRestarting);
|
|
14852
14884
|
const memoizedCustomMenuOptions = useMemo(() => customMenuOptions || undefined, [ customMenuOptions ]);
|
|
14853
14885
|
const headerRef = useRef(undefined);
|
|
14854
14886
|
useImperativeHandle(ref, () => headerRef.current);
|
|
14855
14887
|
const overflowClicked = useCallback(index => {
|
|
14856
|
-
const
|
|
14857
|
-
handler();
|
|
14888
|
+
const handler = memoizedCustomMenuOptions?.[index]?.handler;
|
|
14889
|
+
handler?.();
|
|
14858
14890
|
}, [ memoizedCustomMenuOptions ]);
|
|
14859
14891
|
const overflowItems = memoizedCustomMenuOptions?.map(option => option.text);
|
|
14892
|
+
const aiSlugAfterDescriptionElement = !isHidden ? React.createElement(WriteableElement$1, {
|
|
14893
|
+
slotName: WriteableElementName.AI_TOOLTIP_AFTER_DESCRIPTION_ELEMENT,
|
|
14894
|
+
id: `aiTooltipAfterDescription${serviceManager.namespace.suffix}`
|
|
14895
|
+
}) : null;
|
|
14896
|
+
const showAiLabel = headerConfig?.showAiLabel !== false;
|
|
14897
|
+
const minimizeButtonIconType = headerConfig?.minimizeButtonIconType ?? MinimizeButtonIconType.MINIMIZE;
|
|
14898
|
+
const hideCloseButton = headerConfig?.hideMinimizeButton ?? false;
|
|
14899
|
+
const headerTitle = headerConfig?.title ?? undefined;
|
|
14900
|
+
const displayName = headerConfig?.name ?? undefined;
|
|
14860
14901
|
return React.createElement("div", {
|
|
14861
14902
|
className: "cds-aichat--home-screen-header"
|
|
14862
14903
|
}, React.createElement(HeaderExport, {
|
|
14863
14904
|
ref: headerRef,
|
|
14905
|
+
title: headerTitle,
|
|
14906
|
+
displayName: displayName,
|
|
14864
14907
|
showRestartButton: showRestartButton,
|
|
14865
14908
|
onClickRestart: onRestart,
|
|
14866
14909
|
onClickClose: onClose,
|
|
14867
14910
|
overflowClicked: overflowClicked,
|
|
14868
|
-
overflowItems: overflowItems
|
|
14911
|
+
overflowItems: overflowItems,
|
|
14912
|
+
showAiLabel: showAiLabel,
|
|
14913
|
+
hideCloseButton: hideCloseButton,
|
|
14914
|
+
closeButtonLabel: languagePack.launcher_isOpen,
|
|
14915
|
+
overflowMenuTooltip: languagePack.header_overflowMenu_options,
|
|
14916
|
+
overflowMenuAriaLabel: languagePack.components_overflow_ariaLabel,
|
|
14917
|
+
restartButtonLabel: languagePack.buttons_restart,
|
|
14918
|
+
aiSlugLabel: languagePack.ai_slug_label,
|
|
14919
|
+
aiSlugTitle: languagePack.ai_slug_title,
|
|
14920
|
+
aiSlugDescription: languagePack.ai_slug_description,
|
|
14921
|
+
aiSlugAfterDescriptionElement: aiSlugAfterDescriptionElement,
|
|
14922
|
+
minimizeButtonIconType: minimizeButtonIconType,
|
|
14923
|
+
isRestarting: isRestarting
|
|
14869
14924
|
}));
|
|
14870
14925
|
}
|
|
14871
14926
|
|
|
@@ -15119,14 +15174,27 @@ class OverlayPanel extends PureComponent {
|
|
|
15119
15174
|
}
|
|
15120
15175
|
}
|
|
15121
15176
|
|
|
15122
|
-
function BasePanelComponent({className: className, children: children, isOpen: isOpen, hidePanelHeader: hidePanelHeader, labelBackButton: labelBackButton, title: title, hideBackButton: hideBackButton, onClickRestart: onClickRestart, showAiLabel: showAiLabel, showRestartButton: showRestartButtonProp, ...headerProps}, ref) {
|
|
15123
|
-
const
|
|
15177
|
+
function BasePanelComponent({className: className, children: children, isOpen: isOpen, hidePanelHeader: hidePanelHeader, labelBackButton: labelBackButton, title: title, hideBackButton: hideBackButton, hideCloseButton: hideCloseButton, onClickRestart: onClickRestart, showAiLabel: showAiLabel, showRestartButton: showRestartButtonProp, enableChatHeaderConfig: enableChatHeaderConfig, overflowItems: overflowItemsProp, overflowClicked: overflowClickedProp, ...headerProps}, ref) {
|
|
15178
|
+
const languagePack = useLanguagePack();
|
|
15179
|
+
const derivedHeaderConfig = useSelector(state => state.config.derived.header);
|
|
15180
|
+
const isRestarting = useSelector(state => state.isRestarting);
|
|
15181
|
+
const showRestartButtonFromConfig = derivedHeaderConfig?.showRestartButton;
|
|
15124
15182
|
const showRestartButton = showRestartButtonProp !== undefined ? showRestartButtonProp : showRestartButtonFromConfig;
|
|
15183
|
+
const headerMenuOptions = derivedHeaderConfig?.menuOptions;
|
|
15125
15184
|
const hasPanelWithBackButton = useSelector(selectHasOpenPanelWithBackButton);
|
|
15126
15185
|
const isShowingAssistantHeaderThrough = hasPanelWithBackButton && !hideBackButton;
|
|
15127
15186
|
const headerRef = useRef(undefined);
|
|
15187
|
+
const panelContainerRef = useRef(null);
|
|
15128
15188
|
useImperativeHandle(ref, () => headerRef.current);
|
|
15129
15189
|
const [focusTrapActive, setFocusTrapActive] = useState(false);
|
|
15190
|
+
const getPanelBackButton = useCallback(() => {
|
|
15191
|
+
const backButtonHost = panelContainerRef.current?.querySelector(".cds-aichat--header__back-button") ?? null;
|
|
15192
|
+
if (!backButtonHost) {
|
|
15193
|
+
return null;
|
|
15194
|
+
}
|
|
15195
|
+
const innerButton = backButtonHost.shadowRoot?.querySelector("button");
|
|
15196
|
+
return innerButton ?? backButtonHost;
|
|
15197
|
+
}, []);
|
|
15130
15198
|
useEffect(() => {
|
|
15131
15199
|
if (!isOpen) {
|
|
15132
15200
|
setFocusTrapActive(false);
|
|
@@ -15135,19 +15203,42 @@ function BasePanelComponent({className: className, children: children, isOpen: i
|
|
|
15135
15203
|
setFocusTrapActive(true);
|
|
15136
15204
|
const timer = setTimeout(() => {
|
|
15137
15205
|
try {
|
|
15138
|
-
const
|
|
15139
|
-
|
|
15140
|
-
|
|
15141
|
-
const innerButton = backButtonHost?.shadowRoot?.querySelector("button");
|
|
15142
|
-
if (innerButton && innerButton.offsetParent !== null) {
|
|
15143
|
-
innerButton.focus();
|
|
15206
|
+
const focusTarget = getPanelBackButton() ?? panelContainerRef.current ?? null;
|
|
15207
|
+
if (focusTarget && focusTarget.offsetParent !== null) {
|
|
15208
|
+
focusTarget.focus();
|
|
15144
15209
|
}
|
|
15145
15210
|
} catch (error) {
|
|
15146
15211
|
console.warn("Manual focus failed:", error);
|
|
15147
15212
|
}
|
|
15148
15213
|
}, 100);
|
|
15149
15214
|
return () => clearTimeout(timer);
|
|
15150
|
-
}, [ isOpen ]);
|
|
15215
|
+
}, [ getPanelBackButton, isOpen ]);
|
|
15216
|
+
const hasCustomTitle = title !== undefined && title !== null;
|
|
15217
|
+
const shouldEnableChatHeaderConfig = enableChatHeaderConfig ?? !hasCustomTitle;
|
|
15218
|
+
const shouldUseConfigChrome = shouldEnableChatHeaderConfig && !isShowingAssistantHeaderThrough;
|
|
15219
|
+
let headerTitleText;
|
|
15220
|
+
let headerDisplayName;
|
|
15221
|
+
if (shouldUseConfigChrome) {
|
|
15222
|
+
headerTitleText = derivedHeaderConfig?.title ?? undefined;
|
|
15223
|
+
headerDisplayName = derivedHeaderConfig?.name ?? undefined;
|
|
15224
|
+
} else if (hasCustomTitle) {
|
|
15225
|
+
headerDisplayName = title ?? undefined;
|
|
15226
|
+
}
|
|
15227
|
+
const isHeaderEnabled = derivedHeaderConfig?.isOn !== false;
|
|
15228
|
+
const shouldRenderHeader = !hidePanelHeader && (isHeaderEnabled || isShowingAssistantHeaderThrough);
|
|
15229
|
+
const overflowItemsFromConfig = useMemo(() => {
|
|
15230
|
+
if (!headerMenuOptions?.length) {
|
|
15231
|
+
return undefined;
|
|
15232
|
+
}
|
|
15233
|
+
return headerMenuOptions.map(option => option.text);
|
|
15234
|
+
}, [ headerMenuOptions ]);
|
|
15235
|
+
const overflowClickedFromConfig = useCallback(index => {
|
|
15236
|
+
const option = headerMenuOptions?.[index];
|
|
15237
|
+
option?.handler?.();
|
|
15238
|
+
}, [ headerMenuOptions ]);
|
|
15239
|
+
const isUsingConfigOverflowItems = shouldUseConfigChrome && overflowItemsProp === undefined && Boolean(overflowItemsFromConfig);
|
|
15240
|
+
const overflowItemsToUse = isShowingAssistantHeaderThrough ? undefined : overflowItemsProp ?? overflowItemsFromConfig ?? undefined;
|
|
15241
|
+
const overflowClickedToUse = isShowingAssistantHeaderThrough ? undefined : overflowClickedProp ?? (isUsingConfigOverflowItems ? overflowClickedFromConfig : undefined);
|
|
15151
15242
|
return React.createElement(FocusTrap, {
|
|
15152
15243
|
active: focusTrapActive,
|
|
15153
15244
|
focusTrapOptions: {
|
|
@@ -15157,26 +15248,34 @@ function BasePanelComponent({className: className, children: children, isOpen: i
|
|
|
15157
15248
|
tabbableOptions: {
|
|
15158
15249
|
getShadowRoot: true
|
|
15159
15250
|
},
|
|
15160
|
-
fallbackFocus: () =>
|
|
15161
|
-
const aiChat = document.querySelector("cds-aichat-react");
|
|
15162
|
-
const layer = aiChat?.shadowRoot?.querySelector("cds-layer");
|
|
15163
|
-
const backButtonHost = layer?.querySelector(".cds-aichat--header__back-button");
|
|
15164
|
-
const innerButton = backButtonHost?.shadowRoot?.querySelector("button");
|
|
15165
|
-
return innerButton;
|
|
15166
|
-
}
|
|
15251
|
+
fallbackFocus: () => getPanelBackButton() ?? panelContainerRef.current ?? undefined
|
|
15167
15252
|
}
|
|
15168
15253
|
}, React.createElement("div", {
|
|
15169
|
-
className: className
|
|
15170
|
-
|
|
15254
|
+
className: className,
|
|
15255
|
+
ref: panelContainerRef,
|
|
15256
|
+
tabIndex: -1
|
|
15257
|
+
}, shouldRenderHeader && React.createElement(HeaderExport, {
|
|
15171
15258
|
...headerProps,
|
|
15172
15259
|
ref: headerRef,
|
|
15260
|
+
overflowItems: overflowItemsToUse,
|
|
15261
|
+
overflowClicked: overflowClickedToUse,
|
|
15173
15262
|
showRestartButton: isShowingAssistantHeaderThrough ? false : showRestartButton,
|
|
15174
15263
|
onClickRestart: onClickRestart,
|
|
15175
15264
|
showBackButton: !hideBackButton,
|
|
15176
15265
|
labelBackButton: labelBackButton,
|
|
15177
|
-
|
|
15266
|
+
title: headerTitleText,
|
|
15267
|
+
displayName: headerDisplayName,
|
|
15178
15268
|
showAiLabel: isShowingAssistantHeaderThrough ? false : showAiLabel,
|
|
15179
|
-
hideCloseButton: isShowingAssistantHeaderThrough ? true :
|
|
15269
|
+
hideCloseButton: isShowingAssistantHeaderThrough ? true : hideCloseButton,
|
|
15270
|
+
closeButtonLabel: languagePack.launcher_isOpen,
|
|
15271
|
+
overflowMenuTooltip: languagePack.header_overflowMenu_options,
|
|
15272
|
+
overflowMenuAriaLabel: languagePack.components_overflow_ariaLabel,
|
|
15273
|
+
restartButtonLabel: languagePack.buttons_restart,
|
|
15274
|
+
aiSlugLabel: languagePack.ai_slug_label,
|
|
15275
|
+
aiSlugTitle: languagePack.ai_slug_title,
|
|
15276
|
+
aiSlugDescription: languagePack.ai_slug_description,
|
|
15277
|
+
minimizeButtonIconType: derivedHeaderConfig?.minimizeButtonIconType ?? MinimizeButtonIconType.MINIMIZE,
|
|
15278
|
+
isRestarting: isRestarting
|
|
15180
15279
|
}), React.createElement("div", {
|
|
15181
15280
|
className: "cds-aichat--panel-content"
|
|
15182
15281
|
}, children)));
|
|
@@ -15188,13 +15287,20 @@ function CustomPanel(props, ref) {
|
|
|
15188
15287
|
const {onPanelOpenEnd: onPanelOpenEnd, onPanelCloseEnd: onPanelCloseEnd, onPanelOpenStart: onPanelOpenStart, onPanelCloseStart: onPanelCloseStart, onClose: onClose, onClickRestart: onClickRestart} = props;
|
|
15189
15288
|
const languagePack = useLanguagePack();
|
|
15190
15289
|
const {isOpen: isOpen, options: options} = useSelector(state => state.customPanelState);
|
|
15191
|
-
const {title: title, hidePanelHeader: hidePanelHeader, disableDefaultCloseAction: disableDefaultCloseAction, disableAnimation: disableAnimation, onClickBack: onClickBack, onClickClose: onClickClose} = options;
|
|
15290
|
+
const {title: title, hidePanelHeader: hidePanelHeader, disableDefaultCloseAction: disableDefaultCloseAction, disableAnimation: disableAnimation, onClickBack: onClickBack, onClickClose: onClickClose, hideCloseButton: hideCloseButton} = options;
|
|
15192
15291
|
const serviceManager = useServiceManager();
|
|
15193
15292
|
const ariaAnnouncer = useAriaAnnouncer();
|
|
15194
15293
|
const prevIsOpen = usePrevious(isOpen);
|
|
15195
15294
|
const openAnimation = disableAnimation ? AnimationInType.NONE : AnimationInType.SLIDE_IN_FROM_BOTTOM;
|
|
15196
15295
|
const closeAnimation = disableAnimation ? AnimationOutType.NONE : AnimationOutType.SLIDE_OUT_TO_BOTTOM;
|
|
15197
15296
|
const basePanelRef = useRef(null);
|
|
15297
|
+
const hideCloseOverride = hideCloseButton;
|
|
15298
|
+
const hasCustomTitle = title !== undefined && title !== null;
|
|
15299
|
+
const enableChatHeaderConfig = !hasCustomTitle;
|
|
15300
|
+
const shouldShowBackButton = !options.hideBackButton;
|
|
15301
|
+
const panelClassName = cx("cds-aichat--custom-panel", {
|
|
15302
|
+
"cds-aichat--custom-panel--no-back-button": !shouldShowBackButton
|
|
15303
|
+
});
|
|
15198
15304
|
useEffect(() => {
|
|
15199
15305
|
if (prevIsOpen !== isOpen && isOpen) {
|
|
15200
15306
|
if (!hidePanelHeader && title) {
|
|
@@ -15253,10 +15359,10 @@ function CustomPanel(props, ref) {
|
|
|
15253
15359
|
shouldOpen: isOpen,
|
|
15254
15360
|
serviceManager: serviceManager,
|
|
15255
15361
|
overlayPanelName: PageObjectId.CUSTOM_PANEL,
|
|
15256
|
-
hasBackButton:
|
|
15362
|
+
hasBackButton: shouldShowBackButton
|
|
15257
15363
|
}, React.createElement(BasePanelComponentExport, {
|
|
15258
15364
|
ref: basePanelRef,
|
|
15259
|
-
className:
|
|
15365
|
+
className: panelClassName,
|
|
15260
15366
|
eventName: "Custom panel opened",
|
|
15261
15367
|
eventDescription: "A user opened a custom panel.",
|
|
15262
15368
|
labelBackButton: languagePack.general_returnToAssistant,
|
|
@@ -15267,9 +15373,8 @@ function CustomPanel(props, ref) {
|
|
|
15267
15373
|
onClickRestart: onClickRestart,
|
|
15268
15374
|
hidePanelHeader: hidePanelHeader,
|
|
15269
15375
|
hideBackButton: options.hideBackButton,
|
|
15270
|
-
hideCloseButton:
|
|
15271
|
-
|
|
15272
|
-
showRestartButton: false
|
|
15376
|
+
hideCloseButton: hideCloseOverride,
|
|
15377
|
+
enableChatHeaderConfig: enableChatHeaderConfig
|
|
15273
15378
|
}, React.createElement(WriteableElement$1, {
|
|
15274
15379
|
slotName: "customPanelElement",
|
|
15275
15380
|
className: "cds-aichat--custom-panel__content-container"
|
|
@@ -15611,20 +15716,6 @@ function ChatBubbleLight() {
|
|
|
15611
15716
|
}));
|
|
15612
15717
|
}
|
|
15613
15718
|
|
|
15614
|
-
function SimpleHeader(props, ref) {
|
|
15615
|
-
const {onClose: onClose, showAiLabel: showAiLabel, showRestartButton: showRestartButton} = props;
|
|
15616
|
-
const headerRef = useRef(undefined);
|
|
15617
|
-
useImperativeHandle(ref, () => headerRef.current);
|
|
15618
|
-
return React.createElement(HeaderExport, {
|
|
15619
|
-
ref: headerRef,
|
|
15620
|
-
onClickClose: onClose,
|
|
15621
|
-
showAiLabel: showAiLabel,
|
|
15622
|
-
showRestartButton: showRestartButton
|
|
15623
|
-
});
|
|
15624
|
-
}
|
|
15625
|
-
|
|
15626
|
-
const SimpleHeaderExport = React.memo(forwardRef(SimpleHeader));
|
|
15627
|
-
|
|
15628
15719
|
function Disclaimer({onAcceptDisclaimer: onAcceptDisclaimer, onClose: onClose, disclaimerHTML: disclaimerHTML, disclaimerAcceptButtonRef: disclaimerAcceptButtonRef}) {
|
|
15629
15720
|
const languagePack = useLanguagePack();
|
|
15630
15721
|
const chatWidthBreakpoint = useSelector(state => state.chatWidthBreakpoint);
|
|
@@ -15649,9 +15740,19 @@ function Disclaimer({onAcceptDisclaimer: onAcceptDisclaimer, onClose: onClose, d
|
|
|
15649
15740
|
className: "cds-aichat--disclaimer-container"
|
|
15650
15741
|
}, React.createElement("div", {
|
|
15651
15742
|
className: "cds-aichat--disclaimer"
|
|
15652
|
-
}, React.createElement(
|
|
15653
|
-
|
|
15654
|
-
showRestartButton: false
|
|
15743
|
+
}, React.createElement(HeaderExport, {
|
|
15744
|
+
onClickClose: onClose,
|
|
15745
|
+
showRestartButton: false,
|
|
15746
|
+
showAiLabel: false,
|
|
15747
|
+
closeButtonLabel: languagePack.launcher_isOpen,
|
|
15748
|
+
restartButtonLabel: languagePack.buttons_restart,
|
|
15749
|
+
overflowMenuTooltip: languagePack.header_overflowMenu_options,
|
|
15750
|
+
overflowMenuAriaLabel: languagePack.components_overflow_ariaLabel,
|
|
15751
|
+
aiSlugLabel: languagePack.ai_slug_label,
|
|
15752
|
+
aiSlugTitle: languagePack.ai_slug_title,
|
|
15753
|
+
aiSlugDescription: languagePack.ai_slug_description,
|
|
15754
|
+
minimizeButtonIconType: MinimizeButtonIconType.MINIMIZE,
|
|
15755
|
+
isRestarting: false
|
|
15655
15756
|
}), React.createElement("div", {
|
|
15656
15757
|
className: "cds-aichat--panel-content cds-aichat--disclaimer__content",
|
|
15657
15758
|
onScroll: onScroll,
|
|
@@ -17362,7 +17463,7 @@ function AppShell({serviceManager: serviceManager, hostElement: hostElement, sty
|
|
|
17362
17463
|
}))))))));
|
|
17363
17464
|
}
|
|
17364
17465
|
|
|
17365
|
-
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-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@keyframes cds-aichat-launcher-bounce{\n 0%{\n transform:translateY(0);\n }\n 30%{\n transform:translateY(-10px);\n }\n 50%{\n transform:translateY(0);\n }\n 70%{\n transform:translateY(-10px);\n }\n 100%{\n transform:translateY(0);\n }\n}\n@keyframes cds-aichat-launcher-fade-in-slide-up{\n 0%{\n background:transparent;\n box-shadow:none;\n inset-block-end:calc(2rem + var(--cds-aichat-launcher-default-size, 56px) + var(--cds-aichat-launcher-position-bottom, 3rem) - var(--cds-aichat-launcher-desktop-expanded-height, 320px));\n }\n 30%{\n background:transparent;\n box-shadow:none;\n }\n 100%{\n background:var(--cds-aichat-launcher-expanded-message-color-background, var(--cds-button-primary, #0f62fe));\n box-shadow:var(--cds-aichat-box-shadow, 1px 0 4px hsla(0, 0%, 9%, 0.3));\n inset-block-end:4rem;\n }\n}\n@keyframes cds-aichat-launcher-fade-in-text{\n 0%{\n opacity:0;\n }\n 40%{\n opacity:0;\n }\n 100%{\n opacity:1;\n }\n}\n@keyframes cds-aichat-launcher-resize-reposition{\n 0%{\n padding:0;\n border-radius:28px;\n block-size:var(--cds-aichat-launcher-default-size, 56px);\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 100%{\n padding:0 60px 60px 0;\n border-radius:5rem;\n block-size:10rem;\n inline-size:10rem;\n inset-block-end:calc(-1 * 5rem);\n inset-inline-end:calc(-1 * 5rem);\n }\n}\n@keyframes cds-aichat-launcher-resize-reposition-rtl{\n 0%{\n padding:0;\n border-radius:28px;\n block-size:var(--cds-aichat-launcher-default-size, 56px);\n inline-size:var(--cds-aichat-launcher-default-size, 56px);\n inset-block-end:var(--cds-aichat-launcher-position-bottom, 3rem);\n inset-inline-start:var(--cds-aichat-launcher-position-right, 2rem);\n }\n 100%{\n padding:0 0 60px 60px;\n border-radius:5rem;\n block-size:10rem;\n inline-size:10rem;\n inset-block-end:calc(-1 * 5rem);\n inset-inline-start:calc(-1 * 5rem);\n }\n}\n@keyframes cds-aichat-launcher-fade-in-close-button{\n 0%{\n opacity:0;\n }\n 80%{\n opacity:0;\n }\n 100%{\n opacity:1;\n }\n}\n@keyframes cds-aichat-launcher-avatar-resize{\n 0%{\n block-size:32px;\n inline-size:32px;\n }\n 100%{\n block-size:48px;\n inline-size:48px;\n }\n}\n@keyframes cds-aichat-launcher-fade-in-slide-up-small-expanded{\n 0%{\n inset-block-end:-160px;\n opacity:0;\n }\n 30%{\n opacity:0;\n }\n 100%{\n inset-block-end:calc(-1 * 5rem);\n opacity:1;\n }\n}\n@keyframes cds-aichat-launcher-fade-out-slide-down{\n 0%{\n background:var(--cds-aichat-launcher-expanded-message-color-background, var(--cds-button-primary, #0f62fe));\n box-shadow:var(--cds-aichat-box-shadow, 1px 0 4px hsla(0, 0%, 9%, 0.3));\n inset-block-end:4rem;\n }\n 40%{\n background:transparent;\n box-shadow:none;\n }\n 100%{\n background:transparent;\n box-shadow:none;\n inset-block-end:calc(2rem + var(--cds-aichat-launcher-default-size, 56px) + var(--cds-aichat-launcher-position-bottom, 3rem) - var(--cds-aichat-launcher-desktop-expanded-height, 320px));\n }\n}\n@keyframes cds-aichat-launcher-fade-out{\n 0%{\n opacity:1;\n }\n 40%{\n opacity:0;\n }\n 100%{\n opacity:0;\n }\n}\n@keyframes cds-aichat-launcher-default-size-position{\n 0%{\n padding:0 60px 60px 0;\n border-radius:5rem;\n block-size:10rem;\n inline-size:10rem;\n inset-block-end:calc(-1 * 5rem);\n inset-inline-end:calc(-1 * 5rem);\n }\n 100%{\n padding:0;\n border-radius:28px;\n block-size:var(--cds-aichat-launcher-default-size, 56px);\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}\n@keyframes cds-aichat-launcher-default-size-position-rtl{\n 0%{\n padding:0 0 60px 60px;\n border-radius:5rem;\n block-size:10rem;\n inline-size:10rem;\n inset-block-end:calc(-1 * 5rem);\n inset-inline-start:calc(-1 * 5rem);\n }\n 100%{\n padding:0;\n border-radius:28px;\n block-size:var(--cds-aichat-launcher-default-size, 56px);\n inline-size:var(--cds-aichat-launcher-default-size, 56px);\n inset-block-end:var(--cds-aichat-launcher-position-bottom, 3rem);\n inset-inline-start:var(--cds-aichat-launcher-position-right, 2rem);\n }\n}\n@keyframes cds-aichat-launcher-icon-to-32{\n 0%{\n inline-size:24px;\n }\n 100%{\n inline-size:32px;\n }\n}\n@keyframes cds-aichat-launcher-icon-to-24{\n 0%{\n inline-size:32px;\n }\n 100%{\n inline-size:24px;\n }\n}\n@keyframes cds-aichat-launcher-partially-round{\n 0%{\n border-radius:28px;\n }\n 100%{\n border-radius:14px;\n }\n}\n@keyframes cds-aichat-launcher-completely-round{\n 0%{\n border-radius:14px;\n }\n 100%{\n border-radius:28px;\n }\n}\n@keyframes cds-aichat-launcher-extend{\n 0%{\n inline-size:var(--cds-aichat-launcher-default-size, 56px);\n }\n 100%{\n inline-size:var(--cds-aichat-launcher-extended-width, 280px);\n }\n}\n@keyframes cds-aichat-launcher-reduce{\n 0%{\n inline-size:var(--cds-aichat-launcher-extended-width, 280px);\n }\n 100%{\n inline-size:var(--cds-aichat-launcher-default-size, 56px);\n }\n}\n@keyframes cds-aichat-launcher-extended-element-fade-in{\n 0%{\n inset-block-end:-16px;\n opacity:0;\n }\n 50%, 100%{\n inset-block-end:0;\n opacity:1;\n }\n}\n@keyframes cds-aichat-launcher-extended-element-fade-out{\n 0%{\n inset-block-start:0;\n opacity:1;\n }\n 50%, 100%{\n inset-block-start:-16px;\n opacity:0;\n }\n}\n@keyframes cds-aichat-linear-load-size{\n 0%{\n animation-timing-function:cubic-bezier(0, 0, 0.3, 1);\n r:0;\n }\n 25%{\n animation-timing-function:cubic-bezier(0, 0, 0.3, 1);\n r:2.5px;\n }\n 83.3%{\n r:0.875px;\n }\n 100%{\n r:0.875px;\n }\n}\n@keyframes cds-aichat-linear-load-stroke{\n 0%{\n animation-timing-function:cubic-bezier(0, 0, 0.3, 1);\n stroke-width:0;\n }\n 8.33%{\n stroke-width:1.72;\n }\n 100%{\n stroke-width:1.72;\n }\n}\n@keyframes cds-aichat-linear-loop-size{\n 0%{\n animation-timing-function:cubic-bezier(0, 0, 0.3, 1);\n r:0.875px;\n }\n 25%{\n animation-timing-function:cubic-bezier(0, 0, 0.3, 1);\n r:2.5px;\n }\n 91.66%{\n r:0.875px;\n }\n 100%{\n r:0.875px;\n }\n}\n@keyframes cds-aichat-linear-loop-stroke{\n 0%{\n animation-timing-function:cubic-bezier(0.4, 0.14, 1, 1);\n stroke-width:1.72;\n }\n 100%{\n stroke-width:1.72;\n }\n}\n@keyframes cds-aichat-linear-unload-size{\n 0%{\n r:0.875px;\n }\n 8.33%{\n r:0.875px;\n }\n 33.33%{\n animation-timing-function:cubic-bezier(0.4, 0.14, 1, 1);\n r:2.5px;\n }\n 58.33%{\n r:0;\n }\n 100%{\n r:0;\n }\n}\n@keyframes cds-aichat-linear-unload-stroke{\n 0%{\n stroke-width:1.72;\n }\n 50%{\n stroke-width:1.72;\n }\n 58.33%{\n stroke-width:0;\n }\n 100%{\n stroke-width:0;\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@keyframes cds-aichat-linear-load-size{\n 0%{\n animation-timing-function:cubic-bezier(0, 0, 0.3, 1);\n r:0;\n }\n 25%{\n animation-timing-function:cubic-bezier(0, 0, 0.3, 1);\n r:2.5px;\n }\n 83.3%{\n r:0.875px;\n }\n 100%{\n r:0.875px;\n }\n}\n@keyframes cds-aichat-linear-load-stroke{\n 0%{\n animation-timing-function:cubic-bezier(0, 0, 0.3, 1);\n stroke-width:0;\n }\n 8.33%{\n stroke-width:1.72;\n }\n 100%{\n stroke-width:1.72;\n }\n}\n@keyframes cds-aichat-linear-loop-size{\n 0%{\n animation-timing-function:cubic-bezier(0, 0, 0.3, 1);\n r:0.875px;\n }\n 25%{\n animation-timing-function:cubic-bezier(0, 0, 0.3, 1);\n r:2.5px;\n }\n 91.66%{\n r:0.875px;\n }\n 100%{\n r:0.875px;\n }\n}\n@keyframes cds-aichat-linear-loop-stroke{\n 0%{\n animation-timing-function:cubic-bezier(0.4, 0.14, 1, 1);\n stroke-width:1.72;\n }\n 100%{\n stroke-width:1.72;\n }\n}\n@keyframes cds-aichat-linear-unload-size{\n 0%{\n r:0.875px;\n }\n 8.33%{\n r:0.875px;\n }\n 33.33%{\n animation-timing-function:cubic-bezier(0.4, 0.14, 1, 1);\n r:2.5px;\n }\n 58.33%{\n r:0;\n }\n 100%{\n r:0;\n }\n}\n@keyframes cds-aichat-linear-unload-stroke{\n 0%{\n stroke-width:1.72;\n }\n 50%{\n stroke-width:1.72;\n }\n 58.33%{\n stroke-width:0;\n }\n 100%{\n stroke-width: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-max-width:672px;\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-ai-background-image:linear-gradient(\n to bottom,\n var(--cds-chat-shell-background, #ffffff) 0,\n var(--cds-chat-shell-background, #ffffff) 50%,\n var(--cds-ai-aura-end, rgba(255, 255, 255, 0)) 50%,\n var(--cds-ai-aura-start, rgba(69, 137, 255, 0.1)) 100%\n );\n --cds-aichat-ai-box-shadow-inner:inset 0 -80px 70px -65px var(--cds-ai-inner-shadow, rgba(69, 137, 255, 0.1));\n --cds-aichat-ai-box-shadow-outer:0 4px 10px 2px var(--cds-ai-drop-shadow, rgba(15, 98, 254, 0.1));\n --cds-aichat-card-border-radius:0.5rem;\n --cds-aichat-card-max-width:424px;\n --cds-aichat-box-shadow:1px 0 4px hsl(0deg 0% 9% / 30%);\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-desktop-expanded-height:320px;\n --cds-aichat-launcher-position-bottom-mobile:1rem;\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-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--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{\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 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{\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}\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.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 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{\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}\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-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 inline-size:100%;\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-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--custom-panel{\n display:flex;\n flex-direction:column;\n block-size:100%;\n inline-size:100%;\n}\n:host .cds-aichat--widget--max-width .cds-aichat--overlay-panel-container .cds-aichat--panel-content{\n max-inline-size:var(--cds-aichat-max-width, 672px);\n}\n:host .cds-aichat--custom-panel__content-container{\n overflow:auto;\n background-color:var(--cds-chat-shell-background, #ffffff);\n block-size:100%;\n}\n:host .cds-aichat--custom-panel .cds-aichat--panel-content{\n flex:1;\n}\n:host{\n}\n:host .cds-aichat--body-and-footer-component{\n display:flex;\n flex-direction:column;\n block-size:100%;\n}\n:host .cds-aichat--body-and-footer-component .cds-aichat--body-message-components{\n overflow:auto;\n flex:1;\n}\n:host .cds-aichat--body-and-footer-component .cds-aichat--panel-content{\n display:flex;\n flex:1;\n flex-direction:column;\n background-color:var(--cds-chat-shell-background, #ffffff);\n}\n:host{\n}\n:host .cds-aichat--widget--max-width .cds-aichat--header__header-bottom-element{\n margin:auto;\n max-inline-size:var(--cds-aichat-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{\n}\n:host .cds-aichat--header{\n display:flex;\n box-sizing:unset;\n justify-content:center;\n block-size:40px;\n border-block-end:1px solid var(--cds-border-subtle-00, #e0e0e0);\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 inline-size:100%;\n}\n:host .cds-aichat--widget--max-width .cds-aichat--header--content{\n max-inline-size:var(--cds-aichat-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--widget.cds-aichat--widget--rounded .cds-aichat--header--content{\n border-start-end-radius:max(0px, var(--cds-aichat-border-radius, 0px) - 1px);\n border-start-start-radius:max(0px, var(--cds-aichat-border-radius, 0px) - 1px);\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-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 overflow:hidden;\n border-start-start-radius:max(0px, var(--cds-aichat-border-radius, 0px) - 1px);\n}\n:host .cds-aichat--header__left-items :first-child::part(button){\n border-start-start-radius:max(0px, var(--cds-aichat-border-radius, 0px) - 1px);\n}\n:host .cds-aichat--header__right-buttons :last-child::part(button){\n border-start-end-radius:max(0px, var(--cds-aichat-border-radius, 0px) - 1px);\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{\n}\n:host .cds-aichat--home-screen{\n display:flex;\n flex-direction:column;\n background-color:var(--cds-chat-shell-background, #ffffff);\n block-size:100%;\n}\n:host .cds-aichat--home-screen--background-ai-theme{\n background-color:var(--cds-chat-shell-background, #ffffff);\n background-image:var(--cds-aichat-ai-background-image, linear-gradient(to bottom, var(--cds-chat-shell-background, #ffffff) 0, var(--cds-chat-shell-background, #ffffff) 50%, var(--cds-ai-aura-end, rgba(255, 255, 255, 0)) 50%, var(--cds-ai-aura-start, rgba(69, 137, 255, 0.1)) 100%));\n box-shadow:var(--cds-aichat-ai-box-shadow-inner, inset 0 -80px 70px -65px var(--cds-ai-inner-shadow, rgba(69, 137, 255, 0.1))), var(--cds-aichat-ai-box-shadow-outer, 0 4px 10px 2px var(--cds-ai-drop-shadow, rgba(15, 98, 254, 0.1)));\n}\n:host .cds-aichat--home-screen__home-screen-bottom-element{\n position:relative;\n margin:auto;\n inline-size:100%;\n max-inline-size:var(--cds-aichat-max-width, 672px);\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{\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--home-screen--first-render .cds-aichat--home-screen__content{\n animation:none;\n }\n}\n@media screen and (prefers-reduced-motion: no-preference){\n :host .cds-aichat--home-screen--first-render .cds-aichat--home-screen__content{\n animation:400ms cubic-bezier(0, 0, 0.3, 1) cds-aichat-fade-in 70ms both;\n }\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@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--home-screen.cds-aichat--home-screen--hydration-complete .cds-aichat--home-screen__avatar-holder{\n animation:none;\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__avatar-holder{\n animation:400ms cubic-bezier(0, 0, 0.3, 1) cds-aichat-fade-in 70ms both;\n }\n}\n:host .cds-aichat--home-screen__avatar-holder img{\n border-radius:48px;\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: reduce){\n :host .cds-aichat--home-screen.cds-aichat--home-screen--hydration-complete .cds-aichat--home-screen__greeting{\n animation:none;\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__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@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--home-screen.cds-aichat--home-screen--hydration-complete cds-chat-button.cds-aichat--home-screen__starter{\n display:block;\n animation:none;\n margin-block-end:0.75rem;\n max-inline-size:100%;\n word-break:break-word;\n }\n :host .cds-aichat--home-screen.cds-aichat--home-screen--hydration-complete cds-chat-button.cds-aichat--home-screen__starter:last-child{\n margin-block-end:0;\n }\n}\n:host cds-chat-button.cds-aichat--home-screen__starter:nth-child(1){\n --cds-aichat-homescreen-starter-index:1;\n}\n:host cds-chat-button.cds-aichat--home-screen__starter:nth-child(2){\n --cds-aichat-homescreen-starter-index:2;\n}\n:host cds-chat-button.cds-aichat--home-screen__starter:nth-child(3){\n --cds-aichat-homescreen-starter-index:3;\n}\n:host cds-chat-button.cds-aichat--home-screen__starter:nth-child(4){\n --cds-aichat-homescreen-starter-index:4;\n}\n:host cds-chat-button.cds-aichat--home-screen__starter: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-chat-button.cds-aichat--home-screen__starter{\n display:block;\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 margin-block-end:0.75rem;\n max-inline-size:100%;\n word-break:break-word;\n }\n :host .cds-aichat--home-screen.cds-aichat--home-screen--hydration-complete cds-chat-button.cds-aichat--home-screen__starter:last-child{\n margin-block-end:0;\n }\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--home-screen.cds-aichat--home-screen--hydration-complete .cds-aichat--home-screen__starters--animate-group cds-chat-button.cds-aichat--home-screen__starter{\n animation:none;\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-chat-button.cds-aichat--home-screen__starter{\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: reduce){\n :host .cds-aichat--home-screen.cds-aichat--home-screen--hydration-complete .cds-aichat--home-screen__custom-content--animation{\n animation:none;\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 position:absolute;\n inset-inline-start:50%;\n transform:translate(-50%, calc(-100% - 1rem));\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: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@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--home-screen.cds-aichat--home-screen--hydration-complete .cds-aichat--home-screen__back-button{\n animation:none;\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 .cds-aichat--home-screen__input-container-wrapper,\n:host .cds-aichat--home-screen__input-container{\n display:flex;\n inline-size:100%;\n transform:translateY(0);\n}\n:host .cds-aichat--home-screen__input-container-wrapper{\n flex-direction:column;\n}\n:host{\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--home-screen.cds-aichat--home-screen--first-render .cds-aichat--input-container{\n animation:none;\n }\n}\n@media screen and (prefers-reduced-motion: no-preference){\n :host .cds-aichat--home-screen.cds-aichat--home-screen--first-render .cds-aichat--input-container{\n animation:400ms cubic-bezier(0, 0, 0.3, 1) cds-aichat-fade-in-up 370ms both;\n }\n}\n:host{\n}\n:host .cds-aichat--input-and-completions{\n position:relative;\n inline-size:100%;\n}\n:host .cds-aichat--widget--max-width .cds-aichat--input-and-completions{\n margin:0 auto;\n max-inline-size:var(--cds-aichat-max-width, 672px);\n}\n:host .cds-aichat--input-container{\n position:relative;\n z-index:1;\n display:flex;\n align-items:center;\n background-color:var(--cds-chat-prompt-background, #ffffff);\n border-block-start:1px solid var(--cds-border-subtle-00, #e0e0e0);\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--widget--max-width.cds-aichat--wide-width .cds-aichat--input-container{\n border:1px solid var(--cds-border-subtle-00, #e0e0e0);\n border-radius:0.5rem;\n margin-block-end:32px;\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{\n}\n:host .cds-aichat--launcher__button-container{\n position:fixed;\n z-index:var(--cds-aichat-z-index, 99999);\n border-radius:0.125rem;\n animation:cds-aichat-launcher-in 150ms cubic-bezier(0, 0, 0.3, 1) both;\n background-color:var(--cds-background, #ffffff);\n box-shadow:var(--cds-aichat-box-shadow, 1px 0 4px hsla(0, 0%, 9%, 0.3));\n inset-block-end:var(--cds-aichat-launcher-position-bottom, 3rem);\n inset-inline-end:var(--cds-aichat-launcher-position-right, 2rem);\n}\n:host .cds-aichat--launcher__button-container--hidden{\n visibility:hidden;\n}\n:host .cds-aichat--launcher__button-container--mobile{\n inset-block-end:var(--cds-aichat-launcher-position-bottom-mobile, 1rem);\n inset-inline-end:var(--cds-aichat-launcher-position-bottom-mobile, 1rem);\n}\n:host .cds-aichat--launcher__button-container--round{\n border-radius:28px;\n box-shadow:var(--cds-aichat-box-shadow, 1px 0 4px hsla(0, 0%, 9%, 0.3));\n}\n:host .cds-aichat--launcher__button-container--round .cds-aichat--launcher__button{\n border-radius:28px;\n background-color:var(--cds-aichat-launcher-color-background, var(--cds-button-primary, #0f62fe));\n transition:unset;\n}\n:host .cds-aichat--launcher__button-container--round .cds-aichat--launcher__button::part(button):focus{\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__button-container--round .cds-aichat--launcher__button:focus{\n border-width:2px;\n border-color:var(--cds-aichat-launcher-color-background, var(--cds-button-primary, #0f62fe));\n}\n:host .cds-aichat--launcher__button-container--round .cds-aichat--launcher__button:hover{\n border-color:var(--cds-aichat-launcher-color-background-hover, var(--cds-button-primary-hover, #0050e6));\n background-color:var(--cds-aichat-launcher-color-background-hover, var(--cds-button-primary-hover, #0050e6));\n}\n:host .cds-aichat--launcher__button-container--round .cds-aichat--launcher__button:active{\n border-width:2px;\n border-color:var(--cds-aichat-launcher-color-background-active, var(--cds-button-primary-active, #002d9c));\n background-color:var(--cds-aichat-launcher-color-background-active, var(--cds-button-primary-active, #002d9c));\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__button-container--round .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 color:var(--cds-aichat-unread-indicator-color-text, var(--cds-text-on-color, #ffffff));\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 inset-block-start:calc(-1 * 0.125rem);\n inset-inline-end:calc(-1 * 0.125rem);\n min-block-size:20px;\n min-inline-size:20px;\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--count-indicator{\n inset-inline:calc(-1 * 0.125rem) unset;\n}\n:host .cds-aichat--launcher__button-container--no-animation{\n animation:none;\n}\n:host .cds-aichat--launcher__button-container--bounce-animation{\n animation:cds-aichat-launcher-bounce 500ms cubic-bezier(0, 0, 0.3, 1) forwards;\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){\n display:flex;\n align-items:center;\n justify-content:center;\n padding:inherit;\n border-radius:inherit;\n block-size:inherit;\n inline-size:inherit;\n max-inline-size:inherit;\n}\n:host cds-button.cds-aichat--launcher__button::part(button):focus{\n border-width:2px;\n}\n:host cds-button.cds-aichat--launcher__button{\n position:static;\n padding:0;\n border-radius:0.125rem;\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:background 250ms ease-in-out, transform 150ms ease;\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__button .cds-aichat__count-indicator{\n box-shadow:1px 0.125rem 0.125rem rgba(23, 23, 23, 0.3);\n inset-block-start:calc(-1 * 0.25rem);\n inset-inline-end:calc(-1 * 0.25rem);\n}\n:host{\n}\n:host .cds-aichat--launcher-complex__container{\n border-radius:0.75rem;\n animation:none;\n background-color:var(--cds-aichat-launcher-color-background, var(--cds-button-primary, #0f62fe));\n box-shadow:none;\n inset-block-end:calc(1rem + var(--cds-aichat-launcher-default-size, 56px) + var(--cds-aichat-launcher-position-bottom, 3rem) - var(--cds-chat-LAUNCHER-desktop-expanded-height));\n inset-inline-end:4rem;\n max-inline-size:270px;\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--launcher-complex__container{\n inset-inline:4rem unset;\n}\n:host .cds-aichat--launcher-complex__container .cds-aichat--launcher-complex__content-button{\n padding:0;\n border:2px solid transparent;\n border-radius:0.75rem;\n background-color:var(--cds-aichat-launcher-color-background, var(--cds-button-primary, #0f62fe));\n box-shadow:none;\n min-inline-size:10rem;\n}\n:host .cds-aichat--launcher-complex__container .cds-aichat--launcher-complex__content-button:enabled:focus{\n border-width:2px;\n border-color:var(--cds-aichat-launcher-expanded-message-color-background, var(--cds-button-primary, #0f62fe));\n box-shadow:inset 0 0 0 2px var(--cds-aichat-launcher-expanded-message-color-focus-border, var(--cds-text-on-color, #ffffff));\n outline:none;\n}\n:host .cds-aichat--launcher-complex__container .cds-aichat--launcher-complex__content-button:enabled:hover{\n border-color:var(--cds-aichat-launcher-expanded-message-color-background-hover, var(--cds-button-primary-hover, #0050e6));\n background-color:var(--cds-aichat-launcher-expanded-message-color-background-hover, var(--cds-button-primary-hover, #0050e6));\n cursor:pointer;\n}\n:host .cds-aichat--launcher-complex__container .cds-aichat--launcher-complex__content-button:enabled:active{\n border-width:2px;\n border-color:var(--cds-aichat-launcher-expanded-message-color-background-active, var(--cds-button-primary-active, #002d9c));\n background-color:var(--cds-aichat-launcher-expanded-message-color-background-active, var(--cds-button-primary-active, #002d9c));\n box-shadow:inset 0 0 0 2px var(--cds-aichat-launcher-expanded-message-color-focus-border, var(--cds-text-on-color, #ffffff));\n}\n:host .cds-aichat--launcher-complex__container .cds-aichat--launcher-complex__text{\n display:-webkit-box;\n margin:1rem;\n -webkit-box-orient:vertical;\n color:var(--cds-aichat-launcher-expanded-message-color-text, var(--cds-text-on-color, #ffffff));\n font-size:20px;\n letter-spacing:0;\n -webkit-line-clamp:3;\n line-clamp:3;\n line-height:1.4;\n opacity:0;\n overflow-wrap:break-word;\n text-align:start;\n visibility:visible;\n white-space:normal;\n word-break:break-word;\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--launcher-complex__container .cds-aichat--launcher-complex__text{\n text-align:end;\n}\n:host .cds-aichat--launcher-complex__container .cds-aichat--launcher__close-button{\n position:absolute;\n padding:3px 7px 3px 3px;\n border:1px solid transparent;\n margin:0;\n box-shadow:1px 0 2px rgba(23, 23, 23, 0.3);\n cursor:pointer;\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 inset-block-start:calc((1.5rem + 0.5rem) * -1);\n inset-inline-end:0;\n opacity:0;\n}\n:host .cds-aichat--launcher-complex__container .cds-aichat--launcher__close-button:focus{\n border-color:var(--cds-focus, #0f62fe);\n outline:none;\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--launcher-complex__container .cds-aichat--launcher__close-button{\n padding:3px 3px 3px 7px;\n inset-inline:0 unset;\n}\n:host .cds-aichat--launcher-complex__container .cds-aichat--launcher__close-button .cds-aichat--launcher__close-button-icon{\n margin-inline-end:0.25rem;\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--launcher-complex__container .cds-aichat--launcher__close-button .cds-aichat--launcher__close-button-icon{\n margin-inline:0.25rem unset;\n}\n:host .cds-aichat--launcher-complex__container--intro-animation{\n animation:700ms cds-aichat-launcher-fade-in-slide-up forwards;\n}\n:host .cds-aichat--launcher-complex__container--intro-animation .cds-aichat--launcher__avatar{\n animation:700ms cds-aichat-launcher-avatar-resize forwards;\n}\n:host .cds-aichat--launcher-complex__container--intro-animation .cds-aichat--launcher-complex__text{\n animation:700ms cds-aichat-launcher-fade-in-text forwards;\n}\n:host .cds-aichat--launcher-complex__container--intro-animation .cds-aichat--launcher-complex__small-launcher-container,\n:host .cds-aichat--launcher-complex__container--intro-animation .cds-aichat--launcher__button-container.cds-aichat--launcher-complex__small-launcher-container .cds-aichat--launcher__button{\n animation:700ms cds-aichat-launcher-resize-reposition forwards;\n}\n:host .cds-aichat--launcher-complex__container--intro-animation .cds-aichat--launcher__close-button{\n animation:700ms cds-aichat-launcher-fade-in-close-button forwards;\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--launcher-complex__container--intro-animation .cds-aichat--launcher-complex__small-launcher-container,\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--launcher-complex__container--intro-animation .cds-aichat--launcher__button-container.cds-aichat--launcher-complex__small-launcher-container .cds-aichat--launcher__button{\n animation:700ms cds-aichat-launcher-resize-reposition-rtl forwards;\n}\n:host .cds-aichat--launcher-complex__container--simple-animation{\n animation:150ms cds-aichat-launcher-fade-in-slide-up forwards;\n}\n:host .cds-aichat--launcher-complex__container--simple-animation .cds-aichat--launcher__avatar{\n animation:150ms cds-aichat-launcher-avatar-resize forwards;\n}\n:host .cds-aichat--launcher-complex__container--simple-animation .cds-aichat--launcher-complex__text{\n animation:150ms cds-aichat-launcher-fade-in-text forwards;\n}\n:host .cds-aichat--launcher-complex__container--simple-animation .cds-aichat--launcher-complex__small-launcher-container,\n:host .cds-aichat--launcher-complex__container--simple-animation .cds-aichat--launcher__button-container.cds-aichat--launcher-complex__small-launcher-container .cds-aichat--launcher__button{\n padding:0 60px 60px 0;\n border-radius:5rem;\n animation:150ms cds-aichat-launcher-fade-in-slide-up-small-expanded forwards;\n block-size:10rem;\n inline-size:10rem;\n inset-inline-end:calc(-1 * 5rem);\n}\n:host .cds-aichat--launcher-complex__container--simple-animation .cds-aichat--launcher__close-button{\n animation:150ms cds-aichat-launcher-fade-in-close-button forwards;\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--launcher-complex__container--simple-animation .cds-aichat--launcher-complex__small-launcher-container,\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--launcher-complex__container--simple-animation .cds-aichat--launcher__button-container.cds-aichat--launcher-complex__small-launcher-container .cds-aichat--launcher__button{\n padding:0 0 60px 60px;\n inset-inline:calc(-1 * 5rem) unset;\n}\n:host .cds-aichat--launcher-complex__container--tooling-preview{\n background-color:var(--cds-aichat-launcher-expanded-message-color-background, var(--cds-button-primary, #0f62fe));\n box-shadow:var(--cds-aichat-box-shadow, 1px 0 4px hsla(0, 0%, 9%, 0.3));\n inset-block-end:4rem;\n}\n:host .cds-aichat--launcher-complex__container--tooling-preview .cds-aichat--launcher-complex__text{\n opacity:1;\n}\n:host .cds-aichat--launcher-complex__container--tooling-preview .cds-aichat--launcher-complex__small-launcher-container,\n:host .cds-aichat--launcher-complex__container--tooling-preview .cds-aichat--launcher__button-container.cds-aichat--launcher-complex__small-launcher-container .cds-aichat--launcher__button{\n padding:0 60px 60px 0;\n border-radius:5rem;\n animation:unset;\n block-size:10rem;\n inline-size:10rem;\n inset-block-end:calc(-1 * 5rem);\n inset-inline-end:calc(-1 * 5rem);\n}\n:host .cds-aichat--launcher-complex__container--tooling-preview .cds-aichat--launcher__close-button{\n opacity:1;\n}\n:host .cds-aichat--launcher-complex__container--close-animation{\n animation:400ms cds-aichat-launcher-fade-out-slide-down forwards;\n}\n:host .cds-aichat--launcher-complex__container--close-animation .cds-aichat--launcher__avatar{\n animation:400ms cds-aichat-launcher-avatar-resize backwards;\n}\n:host .cds-aichat--launcher-complex__container--close-animation .cds-aichat--launcher-complex__text,\n:host .cds-aichat--launcher-complex__container--close-animation .cds-aichat--launcher__close-button{\n animation:400ms cds-aichat-launcher-fade-out forwards;\n}\n:host .cds-aichat--launcher-complex__container--close-animation .cds-aichat--launcher-complex__small-launcher-container,\n:host .cds-aichat--launcher-complex__container--close-animation .cds-aichat--launcher__button-container.cds-aichat--launcher-complex__small-launcher-container .cds-aichat--launcher__button{\n animation:400ms cds-aichat-launcher-default-size-position forwards;\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--launcher-complex__container--close-animation .cds-aichat--launcher-complex__small-launcher-container,\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--launcher-complex__container--close-animation .cds-aichat--launcher__button-container.cds-aichat--launcher-complex__small-launcher-container .cds-aichat--launcher__button{\n animation:700ms cds-aichat-launcher-default-size-position-rtl forwards;\n}\n:host{\n}\n:host .cds-aichat--launcher-extended__container{\n block-size:var(--cds-aichat-launcher-default-size, 56px);\n inline-size:var(--cds-aichat-launcher-default-size, 56px);\n}\n:host cds-button.cds-aichat--launcher-extended__button::part(button){\n padding:0;\n border-width:2px;\n block-size:100%;\n cursor:pointer;\n inline-size:100%;\n}\n:host .cds-aichat--launcher-extended__button--hidden{\n visibility:hidden;\n}\n:host .cds-aichat--launcher-extended__wrapper-container{\n position:relative;\n overflow:hidden;\n block-size:100%;\n inline-size:100%;\n}\n:host .cds-aichat--launcher-extended__wrapper{\n position:absolute;\n display:flex;\n inline-size:calc(var(--cds-aichat-launcher-extended-width, 280px) - 6px);\n inset-inline-end:0;\n max-inline-size:calc(100vw - var(--cds-aichat-launcher-position-bottom, 3rem) - 6px);\n}\n:host .cds-aichat--launcher-extended__text-holder{\n position:relative;\n flex:1;\n padding:0.75rem 0 0.75rem 0.75rem;\n text-align:start;\n}\n:host .cds-aichat--launcher-extended__greeting{\n position:absolute;\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 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:calc(100% - 12px);\n inset-block-end:0;\n word-break:break-word;\n}\n:host .cds-aichat-is-phone .cds-aichat--launcher-extended__greeting{\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-extended__button .cds-aichat--launcher__icon-holder{\n display:flex;\n align-items:center;\n justify-content:center;\n block-size:calc(var(--cds-aichat-launcher-default-size, 56px) - 4px);\n inline-size:calc(var(--cds-aichat-launcher-default-size, 56px) - 4px);\n margin-inline-start:auto;\n}\n:host .cds-aichat--launcher-extended__button .cds-aichat--launcher__icon-holder svg{\n position:absolute;\n block-size:24px;\n inline-size:24px;\n}\n:host .cds-aichat--launcher-extended__button .cds-aichat--launcher-extended__element--hidden{\n display:none;\n}\n:host .cds-aichat--launcher-extended__button .cds-aichat--launcher-extended__element--fade-out{\n animation:cds-aichat-launcher-extended-element-fade-out 500ms ease-out 400ms both;\n}\n:host .cds-aichat--launcher-extended__button .cds-aichat--launcher-extended__element--fade-in{\n animation:cds-aichat-launcher-extended-element-fade-in 500ms ease-out 400ms both;\n}\n:host .cds-aichat--launcher__button-container.cds-aichat--launcher-extended__button--extended{\n border-radius:14px;\n inline-size:var(--cds-aichat-launcher-extended-width, 280px);\n}\n:host .cds-aichat--launcher__button-container.cds-aichat--launcher-extended__button--extended cds-button.cds-aichat--launcher__button{\n inline-size:var(--cds-aichat-launcher-extended-width, 280px);\n}\n:host .cds-aichat--launcher__button-container.cds-aichat--launcher-extended__button--extended cds-button.cds-aichat--launcher__button.cds-aichat--launcher-extended__button::part(button\n ){\n border-radius:14px;\n}\n:host .cds-aichat--launcher__button-container.cds-aichat--launcher-extended__button--extended .cds-aichat--launcher__svg{\n inline-size:24px;\n}\n:host .cds-aichat--launcher__button-container.cds-aichat--launcher-extended__button--extended-animation{\n animation:cds-aichat-launcher-extend 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 500ms both, cds-aichat-launcher-partially-round 300ms ease-in 500ms both;\n}\n:host .cds-aichat--launcher__button-container.cds-aichat--launcher-extended__button--extended-animation cds-button.cds-aichat--launcher-extended__button::part(button){\n animation:cds-aichat-launcher-partially-round 300ms ease-in 500ms both;\n}\n:host .cds-aichat--launcher__button-container.cds-aichat--launcher-extended__button--extended-animation .cds-aichat--launcher__svg{\n animation:cds-aichat-launcher-icon-to-24 300ms ease-out 500ms both;\n}\n:host .cds-aichat--launcher__button-container.cds-aichat--launcher-extended__button--reduced-animation{\n animation:cds-aichat-launcher-reduce 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 500ms both, cds-aichat-launcher-completely-round 300ms ease-out 500ms both;\n}\n:host .cds-aichat--launcher__button-container.cds-aichat--launcher-extended__button--reduced-animation cds-button.cds-aichat--launcher-extended__button::part(button){\n animation:cds-aichat-launcher-completely-round 300ms ease-out 500ms both;\n}\n:host .cds-aichat--launcher__button-container.cds-aichat--launcher-extended__button--reduced-animation .cds-aichat--launcher__svg{\n animation:cds-aichat-launcher-icon-to-32 300ms ease-out 500ms both;\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--launcher-extended__container .cds-aichat--launcher-extended__wrapper{\n inset-inline:0 unset;\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--launcher-extended__container .cds-aichat--launcher-extended__text-holder{\n padding:0.75rem 0.75rem 0.75rem 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(22, 22, 22, 0.5));\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 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-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--notifications{\n position:absolute;\n z-index:2;\n display:block;\n padding:0 1rem 0 1rem;\n inline-size:calc(100% - var(--cds-aichat-scrollbar-width));\n inset-block-start:1rem;\n overflow-y:auto;\n}\n:host .cds-aichat--notifications__notification{\n display:block;\n inline-size:100%;\n margin-block-end:1rem;\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@font-face{\n font-family:\"swiper-icons\";\n src:url(\"data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA\") format(\"woff\");\n font-weight:400;\n font-style:normal;\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-vertical > .swiper-wrapper{\n scroll-snap-type:y mandatory;\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--card-message-component{\n display:flex;\n flex-direction:column;\n block-size:calc(100% - 2px);\n}\n:host .swiper .cds-aichat--body-message-components{\n flex:1;\n}\n:host .cds-aichat--carousel-container__slide--narrow.swiper-slide{\n max-inline-size:calc(100% - 32px);\n}\n:host .cds-aichat--carousel-container__slide--wide.swiper-slide,\n:host .cds-aichat--carousel-container__slide--standard.swiper-slide{\n max-inline-size:calc(100% - 72px);\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:56px 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 inline-size:100%;\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--received--conversational-search .cds-aichat--received--feedback,\n:host .cds-aichat--wide-width .cds-aichat--conversational-search-text,\n:host .cds-aichat--standard-width .cds-aichat--conversational-search-text{\n margin-inline:56px 16px;\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{\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 block-size:100%;\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@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(22, 22, 22, 0.5));\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{\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-tile .cds-aichat--footer-button-components:not(.cds-aichat--footer-button-components--column){\n gap:0.0625rem;\n}\n:host cds-tile .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-tile .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-tile .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-tile .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-tile .cds-aichat--footer-button-components.cds-aichat--footer-button-components--column{\n flex-direction:column;\n}\n:host cds-tile .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-tile .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--widget--rounded .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--widget--rounded .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--widget--rounded .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--widget--rounded .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, 0px) - 0.0625rem);\n}\n:host .cds-aichat--widget--rounded .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, 0px) - 0.0625rem);\n}\n:host .cds-aichat--widget--rounded .cds-aichat--overlay-panel .cds-aichat--footer-button-components.cds-aichat--footer-button-components--column{\n flex-direction:column;\n}\n:host .cds-aichat--widget--rounded .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--widget--rounded .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, 0px) - 0.0625rem);\n border-end-start-radius:max(0px, var(--cds-aichat-border-radius, 0px) - 0.0625rem);\n}\n:host .cds-aichat--widget__animation-container--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) .cds-aichat--widget__animation-container:not(.cds-aichat--widget__animation-container--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__animation-container--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) .cds-aichat--widget__animation-container:not(.cds-aichat--widget__animation-container--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__animation-container--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-tile,\n:host .cds-aichat--message button.cds-aichat--citation-card--clickable cds-tile{\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-tile,\n :host .cds-aichat--message button.cds-aichat--citation-card--clickable cds-tile{\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-tile,\n:host .cds-aichat--message button.cds-aichat--citation-card--clickable:focus cds-tile{\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-tile,\n:host .cds-aichat--message button.cds-aichat--citation-card--clickable:hover cds-tile{\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-tile,\n:host .cds-aichat--message button.cds-aichat--citation-card--clickable:active cds-tile{\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 padding:0.75rem;\n background-color:var(--cds-background, #ffffff);\n block-size:100%;\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--non-header-container{\n position:relative;\n display:flex;\n overflow:hidden;\n flex:1 1 0%;\n}\n:host .cds-aichat--messages-and-input-container{\n position:relative;\n display:flex;\n flex:1;\n flex-direction:column;\n inline-size:100%;\n}\n:host .cds-aichat--messages-container__non-input-container{\n position:relative;\n display:flex;\n overflow:hidden;\n flex:1;\n flex-direction:column;\n}\n:host .cds-aichat--widget--max-width .cds-aichat--messages-container__non-input-container{\n overflow:hidden auto;\n block-size:100%;\n}\n:host .cds-aichat--process-wizard-done-button{\n justify-content:center;\n}\n:host .cds-aichat--messages-error-handler{\n padding:1rem;\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--with-header{\n border-start-end-radius:0;\n border-start-start-radius:0;\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 .cds-aichat--catastrophic-error--with-header .cds-aichat--catastrophic-error__error-text-container{\n margin-block-end:41px;\n}\n:host .cds-aichat--wide-width.cds-aichat--widget--max-width .cds-aichat--catastrophic-error.cds-aichat--panel-content{\n max-inline-size:100%;\n}\n:host .cds-aichat--wide-width.cds-aichat--widget--max-width .cds-aichat--catastrophic-error__error-text-container{\n margin:auto;\n max-inline-size:var(--cds-aichat-max-width, 672px);\n}\n:host{\n}\n:host .cds-aichat--disclaimer-container{\n display:flex;\n flex-basis:100%;\n flex-direction:column;\n justify-content:space-between;\n block-size:100%;\n}\n:host .cds-aichat--disclaimer{\n display:flex;\n flex-basis:100%;\n flex-direction:column;\n justify-content:space-between;\n block-size:100%;\n color:var(--cds-text-primary, #161616);\n}\n:host .cds-aichat--disclaimer__content{\n background-color:var(--cds-chat-shell-background, #ffffff);\n}\n:host .cds-aichat--disclaimer .cds-aichat--header{\n border-block-end:none;\n color:var(--cds-text-primary, #161616);\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 overflow:hidden auto;\n flex-grow:1;\n padding:0 2rem 0 2rem;\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__buttons{\n border-block-start:1px solid var(--cds-border-subtle-01, #c6c6c6);\n inline-size:100%;\n}\n:host .cds-aichat--wide-width .cds-aichat--disclaimer__buttons{\n display:flex;\n flex-direction:row-reverse;\n}\n:host .cds-aichat--wide-width .cds-aichat--disclaimer__buttons cds-button.cds-aichat--disclaimer__accept-button{\n inline-size:288px;\n}\n:host .cds-aichat--narrow-width .cds-aichat--disclaimer__buttons cds-button.cds-aichat--disclaimer__accept-button,\n:host .cds-aichat--standard-width .cds-aichat--disclaimer__buttons cds-button.cds-aichat--disclaimer__accept-button{\n inline-size:100%;\n max-inline-size:unset;\n}\n:host .cds-aichat--narrow-width .cds-aichat--disclaimer__buttons cds-button.cds-aichat--disclaimer__accept-button::part(button),\n:host .cds-aichat--standard-width .cds-aichat--disclaimer__buttons cds-button.cds-aichat--disclaimer__accept-button::part(button){\n border-end-end-radius:var(--cds-aichat-border-radius, 0px);\n border-end-start-radius:var(--cds-aichat-border-radius, 0px);\n}\n:host .cds-aichat--widget--max-width.cds-aichat--wide-width .cds-aichat--disclaimer__buttons-padding{\n display:flex;\n justify-content:flex-end;\n margin:auto;\n inline-size:var(--cds-aichat-max-width, 672px);\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--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--hydrating--home-screen circle{\n stroke:var(--cds-text-primary, #161616);\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 .cds-aichat--widget--max-width .cds-aichat--hydrating.cds-aichat--panel-content{\n max-inline-size:100%;\n}\n:host{\n}\n:host .cds-aichat--overlay-panel--disclaimer_panel{\n z-index:99;\n}\n:host .cds-aichat--overlay-panel--custom_panel{\n z-index:95;\n}\n:host .cds-aichat--overlay-panel--panel_response{\n z-index:94;\n}\n:host .cds-aichat--overlay-panel--button_response_panel{\n z-index:93;\n}\n:host .cds-aichat--overlay-panel--hydrating_panel{\n z-index:90;\n}\n:host .cds-aichat--overlay-panel--catastrophic_panel{\n z-index:80;\n}\n:host .cds-aichat--overlay-panel--home_screen_panel{\n z-index:30;\n}\n:host .cds-aichat--overlay-panel--conversational_search_citation_panel{\n z-index:6;\n}\n:host .cds-aichat--overlay-panel--iframe_panel{\n z-index:5;\n}\n:host .cds-aichat--overlay-panel-container{\n position:absolute;\n block-size:100%;\n inline-size:100%;\n inset-block-start:0;\n}\n:host .cds-aichat--overlay-panel-container--animating{\n overflow:hidden;\n}\n:host .cds-aichat--widget--rounded .cds-aichat--overlay--covering.cds-aichat--overlay-panel-container .cds-aichat--header--content{\n border-start-end-radius:0.5rem;\n border-start-start-radius:0.5rem;\n}\n:host .cds-aichat--widget--rounded .cds-aichat--wide-width .cds-aichat--overlay--covering .cds-aichat--header__left-buttons{\n border-start-start-radius:0.5rem;\n}\n:host .cds-aichat--widget--rounded .cds-aichat--wide-width .cds-aichat--overlay--covering .cds-aichat--header__right-buttons{\n border-start-end-radius:0.5rem;\n}\n:host .cds-aichat--overlay-panel{\n position:absolute;\n display:block;\n box-sizing:border-box;\n border-radius:0;\n margin:0;\n block-size:100%;\n inline-size:100%;\n inset-block-start:0;\n min-block-size:100%;\n text-align:start;\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--overlay-panel{\n inset-inline:unset 0;\n text-align:end;\n}\n:host .cds-aichat--overlay-panel--closed{\n display:none;\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--overlay-panel--opening--fade-in{\n animation:none;\n }\n}\n:host .cds-aichat--overlay-panel--opening--fade-in{\n animation:240ms cubic-bezier(0, 0, 0.3, 1) cds-aichat-fade-in both;\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--overlay-panel--opening--slide-in-from-left{\n animation:none;\n }\n}\n:host .cds-aichat--overlay-panel--opening--slide-in-from-left{\n animation:240ms cubic-bezier(0, 0, 0.3, 1) cds-aichat-slide-in-from-left both;\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--overlay-panel--opening--slide-in-from-right{\n animation:none;\n }\n}\n:host .cds-aichat--overlay-panel--opening--slide-in-from-right{\n animation:240ms cubic-bezier(0, 0, 0.3, 1) cds-aichat-slide-in-from-right both;\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--container--render[dir=rtl] .cds-aichat--overlay-panel--opening--slide-in-from-left{\n animation:none;\n }\n}\n@media screen and (prefers-reduced-motion: no-preference){\n :host .cds-aichat--container--render[dir=rtl] .cds-aichat--overlay-panel--opening--slide-in-from-left{\n animation:240ms cubic-bezier(0, 0, 0.3, 1) cds-aichat-slide-in-from-right both;\n }\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--container--render[dir=rtl] .cds-aichat--overlay-panel--opening--slide-in-from-right{\n animation:none;\n }\n}\n@media screen and (prefers-reduced-motion: no-preference){\n :host .cds-aichat--container--render[dir=rtl] .cds-aichat--overlay-panel--opening--slide-in-from-right{\n animation:240ms cubic-bezier(0, 0, 0.3, 1) cds-aichat-slide-in-from-left both;\n }\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--overlay-panel--opening--slide-in-from-bottom{\n animation:none;\n }\n}\n:host .cds-aichat--overlay-panel--opening--slide-in-from-bottom{\n animation:240ms cubic-bezier(0.4, 0.14, 1, 1) cds-aichat-slide-in-from-bottom both;\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--overlay-panel--closing--fade-out{\n animation:none;\n }\n}\n:host .cds-aichat--overlay-panel--closing--fade-out{\n animation:240ms cubic-bezier(0.4, 0.14, 1, 1) cds-aichat-fade-out both;\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--overlay-panel--closing--slide-out-to-left{\n animation:none;\n }\n}\n:host .cds-aichat--overlay-panel--closing--slide-out-to-left{\n animation:150ms cubic-bezier(0.4, 0.14, 1, 1) cds-aichat-slide-out-to-left both;\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--overlay-panel--closing--slide-out-to-right{\n animation:none;\n }\n}\n:host .cds-aichat--overlay-panel--closing--slide-out-to-right{\n animation:150ms cubic-bezier(0.4, 0.14, 1, 1) cds-aichat-slide-out-to-right both;\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--overlay-panel--closing--slide-out-to-top{\n animation:none;\n }\n}\n:host .cds-aichat--overlay-panel--closing--slide-out-to-top{\n animation:150ms cubic-bezier(0.4, 0.14, 1, 1) cds-aichat-slide-out-to-top both;\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--container--render[dir=rtl] .cds-aichat--overlay-panel--closing--slide-out-to-left{\n animation:none;\n }\n}\n@media screen and (prefers-reduced-motion: no-preference){\n :host .cds-aichat--container--render[dir=rtl] .cds-aichat--overlay-panel--closing--slide-out-to-left{\n animation:150ms cubic-bezier(0.4, 0.14, 1, 1) cds-aichat-slide-out-to-right both;\n }\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--container--render[dir=rtl] .cds-aichat--overlay-panel--closing--slide-out-to-right{\n animation:none;\n }\n}\n@media screen and (prefers-reduced-motion: no-preference){\n :host .cds-aichat--container--render[dir=rtl] .cds-aichat--overlay-panel--closing--slide-out-to-right{\n animation:150ms cubic-bezier(0.4, 0.14, 1, 1) cds-aichat-slide-out-to-left both;\n }\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--overlay-panel--closing--slide-out-to-bottom{\n animation:none;\n }\n}\n:host .cds-aichat--overlay-panel--closing--slide-out-to-bottom{\n animation:150ms cubic-bezier(0.4, 0.14, 1, 1) cds-aichat-slide-out-to-bottom both;\n}\n:host .cds-aichat--overlay-panel-container:has(.cds-aichat--overlay-panel--with-back-button){\n block-size:calc(100% - var(--cds-aichat--header-height, 0px) + 1px);\n border-start-end-radius:0;\n border-start-start-radius:0;\n inset-block-start:calc(var(--cds-aichat--header-height, 0) - 1px);\n}\n:host .cds-aichat--overlay-panel--with-back-button{\n overflow:hidden;\n border:1px solid var(--cds-border-subtle-00, #e0e0e0);\n block-size:100%;\n border-start-end-radius:0;\n border-start-start-radius:0;\n inline-size:100%;\n inset-block-start:0;\n inset-inline-start:50%;\n max-inline-size:var(--cds-aichat-max-width, 100%);\n transform:translateX(-50%);\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--overlay-panel--with-back-button.cds-aichat--overlay-panel--opening--slide-in-from-bottom{\n animation:none;\n }\n}\n:host .cds-aichat--overlay-panel--with-back-button.cds-aichat--overlay-panel--opening--slide-in-from-bottom{\n animation:240ms cubic-bezier(0.4, 0.14, 1, 1) cds-aichat-slide-in-from-bottom-below-header both;\n}\n@keyframes cds-aichat-slide-in-from-bottom-below-header{\n from{\n inset-block-start:100%;\n }\n to{\n inset-block-start:0;\n }\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}\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--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 .cds-aichat--container--render{\n box-sizing:border-box;\n block-size:100%;\n color:var(--cds-text-primary, #161616);\n font-family:\"IBM Plex Sans\", \"Helvetica Neue\", arial, sans-serif;\n inline-size:100%;\n}\n:host .cds-aichat--container--render[dir=rtl]{\n direction:rtl;\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 .cds-aichat--widget__region-container{\n block-size:100%;\n inline-size:100%;\n}\n:host .cds-aichat--modal-host{\n position:fixed;\n z-index:calc(var(--cds-aichat-z-index, 99999) + 1);\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 pointer-events:auto;\n}\n:host .cds-aichat--modal-host > *{\n pointer-events:auto;\n}\n:host .cds-aichat--widget{\n position:relative;\n display:flex;\n flex-direction:column;\n block-size:100%;\n box-shadow:var(--cds-aichat-box-shadow, 1px 0 4px hsla(0, 0%, 9%, 0.3));\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 .cds-aichat--header{\n background-color:var(--cds-chat-header-background, #ffffff);\n}\n:host .cds-aichat--ai-theme .cds-aichat--widget{\n border:solid 1px transparent;\n background:linear-gradient(to bottom, var(--cds-ai-border-start, rgba(166, 200, 255, 0.64)), var(--cds-ai-border-end, #78a9ff)) border-box;\n box-shadow:var(--cds-aichat-ai-box-shadow-outer, 0 4px 10px 2px var(--cds-ai-drop-shadow, rgba(15, 98, 254, 0.1)));\n}\n:host .cds-aichat--frameless .cds-aichat--widget{\n border:none;\n box-shadow:none;\n}\n:host{\n}\n:host .cds-aichat--widget .cds-aichat--widget__animation-container{\n position:relative;\n z-index:1;\n flex:1;\n background:var(--cds-chat-shell-background, #ffffff);\n inline-size:100%;\n}\n:host{\n}\n:host .cds-aichat--assistant-container{\n position:absolute;\n block-size:100%;\n inline-size:100%;\n inset-block-start:0;\n inset-inline-start:0;\n}\n:host{\n}\n:host .cds-aichat--widget.cds-aichat--widget--rounded{\n border-radius:var(--cds-aichat-border-radius, 0px);\n}\n:host .cds-aichat--widget.cds-aichat--widget--rounded .cds-aichat--view-source-panel,\n:host .cds-aichat--widget.cds-aichat--widget--rounded .cds-aichat--home-screen,\n:host .cds-aichat--widget.cds-aichat--widget--rounded .cds-aichat--confirm-modal,\n:host .cds-aichat--widget.cds-aichat--widget--rounded .cds-aichat--widget__animation-container,\n:host .cds-aichat--widget.cds-aichat--widget--rounded .cds-aichat--assistant-container,\n:host .cds-aichat--widget.cds-aichat--widget--rounded .cds-aichat--overlay-panel,\n:host .cds-aichat--widget.cds-aichat--widget--rounded .cds-aichat--overlay-panel-container,\n:host .cds-aichat--widget.cds-aichat--widget--rounded .cds-aichat--hydrating-container{\n border-end-end-radius:max(0px, var(--cds-aichat-border-radius, 0px) - 1px);\n border-end-start-radius:max(0px, var(--cds-aichat-border-radius, 0px) - 1px);\n border-start-end-radius:max(0px, var(--cds-aichat-border-radius, 0px) - 1px);\n border-start-start-radius:max(0px, var(--cds-aichat-border-radius, 0px) - 1px);\n}\n:host .cds-aichat--widget.cds-aichat--widget--rounded{\n}\n:host .cds-aichat--widget.cds-aichat--widget--rounded .cds-aichat--header{\n border-start-end-radius:max(0px, var(--cds-aichat-border-radius, 0px) - 1px);\n border-start-start-radius:max(0px, var(--cds-aichat-border-radius, 0px) - 1px);\n}\n:host .cds-aichat--widget.cds-aichat--widget--rounded{\n}\n:host .cds-aichat--widget.cds-aichat--widget--rounded .cds-aichat--input-container{\n border-end-end-radius:max(0px, var(--cds-aichat-border-radius, 0px) - 1px);\n border-end-start-radius:max(0px, var(--cds-aichat-border-radius, 0px) - 1px);\n}\n:host .cds-aichat--widget.cds-aichat--widget--rounded{\n}\n:host .cds-aichat--widget.cds-aichat--widget--rounded .cds-aichat--overlay-panel.cds-aichat--overlay-panel--with-back-button{\n --cds-aichat-border-radius:0;\n}\n:host{\n}\n:host .cds-aichat--grid .cds-aichat--image,\n:host .cds-aichat--grid .cds-aichat--media-player,\n:host .cds-aichat--grid .cds-aichat--media-player__skeleton,\n:host .cds-aichat--body-message-components__message-wrapper .cds-aichat--image,\n:host .cds-aichat--body-message-components__message-wrapper .cds-aichat--media-player,\n:host .cds-aichat--body-message-components__message-wrapper .cds-aichat--media-player__skeleton{\n border-radius:0;\n}\n:host .cds-aichat--widget.cds-aichat--widget--closed .cds-aichat--widget__animation-container{\n overflow:hidden;\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@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 .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:host .cds-aichat--widget.cds-aichat--widget--default-element.cds-aichat--widget--closed{\n display:none;\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, min(380px, var(--cds-aichat-max-width, 672px)));\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-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 .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, min(380px, var(--cds-aichat-max-width, 672px)));\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 .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 .cds-aichat--widget--rounded .cds-aichat{\n border-radius:max(0px, var(--cds-aichat-border-radius, 0px) - 1px);\n}\n:host .cds-aichat--ai-theme .cds-aichat{\n background-image:var(--cds-aichat-ai-background-image, linear-gradient(to bottom, var(--cds-chat-shell-background, #ffffff) 0, var(--cds-chat-shell-background, #ffffff) 50%, var(--cds-ai-aura-end, rgba(255, 255, 255, 0)) 50%, var(--cds-ai-aura-start, rgba(69, 137, 255, 0.1)) 100%));\n box-shadow:var(--cds-aichat-ai-box-shadow-inner, inset 0 -80px 70px -65px var(--cds-ai-inner-shadow, rgba(69, 137, 255, 0.1))), var(--cds-aichat-ai-box-shadow-outer, 0 4px 10px 2px var(--cds-ai-drop-shadow, rgba(15, 98, 254, 0.1)));\n}\n:host .cds-aichat--frameless.cds-aichat--ai-theme .cds-aichat{\n box-shadow:var(--cds-aichat-ai-box-shadow-inner, inset 0 -80px 70px -65px var(--cds-ai-inner-shadow, rgba(69, 137, 255, 0.1)));\n}\n:host .cds-aichat.cds-aichat--human-agent-app{\n min-inline-size:unset;\n}\n:host .cds-aichat--main-window,\n:host .cds-aichat--widget__layer{\n block-size:100%;\n inline-size:100%;\n}\n:host .cds-aichat--widget__focus-trap-glass{\n position:fixed;\n z-index:var(--cds-aichat-z-index, 99999);\n overflow:hidden;\n background:var(--cds-overlay, rgba(22, 22, 22, 0.5));\n block-size:100vh;\n inline-size:100vw;\n inset-block-start:0;\n inset-inline-start:0;\n opacity:0.5;\n}\n:host svg.cds-aichat--icon__logout--reverse{\n transform:scaleX(-1);\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--icon__logout--reverse{\n transform:none;\n}\n:host .cds-aichat--scroll-focus:focus-visible::before{\n position:sticky;\n z-index:1;\n display:block;\n box-sizing:border-box;\n border:solid 2px var(--cds-focus, #0f62fe);\n block-size:100%;\n content:\"\";\n float:inline-start;\n inline-size:100%;\n inset-block-start:0;\n margin-block-start:-100%;\n pointer-events:none;\n}\n:host .cds-aichat--container--render .cds-aichat--reverse-icon svg,\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--direction-has-reversible-svg svg{\n transform:scaleX(-1);\n}\n:host{\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--panel-content{\n overflow:hidden;\n}\n:host .cds-aichat--widget--max-width{\n --cds-aichat-border-radius:0;\n}\n:host .cds-aichat--widget--max-width .cds-aichat--panel-content{\n flex:1;\n margin:auto;\n block-size:100%;\n inline-size:100%;\n}\n:host{\n}\n:host .cds-aichat--widget--rounded .cds-aichat--body-and-footer-component,\n:host .cds-aichat--widget--rounded .cds-aichat--i-frame-panel,\n:host .cds-aichat--widget--rounded .cds-aichat--view-source-panel,\n:host .cds-aichat--widget--rounded .cds-aichat--custom-panel{\n border-end-end-radius:max(0px, var(--cds-aichat-border-radius, 0px) - 1px);\n border-end-start-radius:max(0px, var(--cds-aichat-border-radius, 0px) - 1px);\n border-start-end-radius:max(0px, var(--cds-aichat-border-radius, 0px) - 1px);\n border-start-start-radius:max(0px, var(--cds-aichat-border-radius, 0px) - 1px);\n}\n:host .cds-aichat--widget--rounded .cds-aichat--panel-content{\n border-end-end-radius:max(0px, var(--cds-aichat-border-radius, 0px) - 1px);\n border-end-start-radius:max(0px, var(--cds-aichat-border-radius, 0px) - 1px);\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 animation:cds-aichat-fade-in 240ms cubic-bezier(0, 0, 0.38, 0.9) forwards;\n}\n:host .cds-aichat--message.cds-aichat--message--no-animation{\n animation:none;\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--with-avatar-line.cds-aichat--message--response.cds-aichat--message--last-message:not(.cds-aichat--with-human-agent){\n min-block-size:calc(100% - 88px);\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: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--carousel:not(.cds-aichat--received--carousel-single),\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__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--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--standard-width .cds-aichat--message__avatar-line + .cds-aichat--message--padding .cds-aichat--assistant-message > div.cds-aichat--received,\n:host .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--standard-width .cds-aichat--message .cds-aichat--received.cds-aichat--received--agent-status-message,\n:host .cds-aichat--wide-width .cds-aichat--message .cds-aichat--received.cds-aichat--received--agent-status-message{\n margin-inline:0;\n}\n:host{\n}\n:host .cds-aichat--wide-width .cds-aichat--message .cds-aichat--received,\n:host .cds-aichat--standard-width .cds-aichat--message .cds-aichat--received,\n:host .cds-aichat--wide-width .cds-aichat--message .cds-aichat--sent-container,\n:host .cds-aichat--standard-width .cds-aichat--message .cds-aichat--sent-container{\n margin-inline:calc(0.5rem + 2rem + 0.5rem) 1rem;\n}\n:host{\n}\n:host .cds-aichat--messages--holder{\n display:flex;\n overflow:hidden;\n flex:1;\n flex-direction:column;\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:relative;\n display:block;\n overflow:hidden;\n padding:0;\n border:none;\n margin:0;\n block-size:0;\n inline-size:0;\n outline:none;\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-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-scrollDownIndicatorIcon{\n position:sticky;\n z-index:1;\n display:grid;\n border-radius:50%;\n margin:0 auto;\n background-color:var(--cds-button-secondary, #393939);\n block-size:2rem;\n color:var(--cds-text-on-color, #ffffff);\n cursor:pointer;\n inline-size:2rem;\n inset-block-end:1rem;\n inset-inline-start:calc(50% - 1rem);\n place-items:center;\n}\n:host .cds-aichat-scrollDownIndicatorIcon:active{\n background-color:var(--cds-button-secondary-active, #6f6f6f);\n}\n:host .cds-aichat-scrollDownIndicatorIcon:hover{\n background-color:var(--cds-button-secondary-hover, #474747);\n}\n:host .cds-aichat-scrollDownIndicatorIcon:focus{\n border-color:var(--cds-focus, #0f62fe);\n box-shadow:inset 0 0 0 1px var(--cds-focus, #0f62fe), inset 0 0 0 2px var(--cds-chat-shell-background, #ffffff);\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-border:#e0e0e0;\n --cds-chat-bubble-user:#e0e0e0;\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-prompt-background:#ffffff;\n --cds-chat-prompt-border-end:rgba(244, 244, 244, 0);\n --cds-chat-prompt-border-start:#f4f4f4;\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(22, 22, 22, 0.5);\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-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-border:#e0e0e0;\n --cds-chat-bubble-user:#e0e0e0;\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-prompt-background:#ffffff;\n --cds-chat-prompt-border-end:rgba(244, 244, 244, 0);\n --cds-chat-prompt-border-start:#f4f4f4;\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(22, 22, 22, 0.5);\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-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-border:#525252;\n --cds-chat-bubble-user:#393939;\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-prompt-background:#161616;\n --cds-chat-prompt-border-end:rgba(38, 38, 38, 0);\n --cds-chat-prompt-border-start:#262626;\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.65);\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-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-border:#525252;\n --cds-chat-bubble-user:#393939;\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-prompt-background:#161616;\n --cds-chat-prompt-border-end:rgba(38, 38, 38, 0);\n --cds-chat-prompt-border-start:#262626;\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.65);\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-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 cds-tile{\n border:1px solid var(--cds-chat-bubble-border, #e0e0e0);\n border-radius:0.5rem;\n background-color:var(--cds-chat-shell-background, #ffffff);\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}";
|
|
17466
|
+
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-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@keyframes cds-aichat-launcher-bounce{\n 0%{\n transform:translateY(0);\n }\n 30%{\n transform:translateY(-10px);\n }\n 50%{\n transform:translateY(0);\n }\n 70%{\n transform:translateY(-10px);\n }\n 100%{\n transform:translateY(0);\n }\n}\n@keyframes cds-aichat-launcher-fade-in-slide-up{\n 0%{\n background:transparent;\n box-shadow:none;\n inset-block-end:calc(2rem + var(--cds-aichat-launcher-default-size, 56px) + var(--cds-aichat-launcher-position-bottom, 3rem) - var(--cds-aichat-launcher-desktop-expanded-height, 320px));\n }\n 30%{\n background:transparent;\n box-shadow:none;\n }\n 100%{\n background:var(--cds-aichat-launcher-expanded-message-color-background, var(--cds-button-primary, #0f62fe));\n box-shadow:var(--cds-aichat-box-shadow, 1px 0 4px hsla(0, 0%, 9%, 0.3));\n inset-block-end:4rem;\n }\n}\n@keyframes cds-aichat-launcher-fade-in-text{\n 0%{\n opacity:0;\n }\n 40%{\n opacity:0;\n }\n 100%{\n opacity:1;\n }\n}\n@keyframes cds-aichat-launcher-resize-reposition{\n 0%{\n padding:0;\n border-radius:28px;\n block-size:var(--cds-aichat-launcher-default-size, 56px);\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 100%{\n padding:0 60px 60px 0;\n border-radius:5rem;\n block-size:10rem;\n inline-size:10rem;\n inset-block-end:calc(-1 * 5rem);\n inset-inline-end:calc(-1 * 5rem);\n }\n}\n@keyframes cds-aichat-launcher-resize-reposition-rtl{\n 0%{\n padding:0;\n border-radius:28px;\n block-size:var(--cds-aichat-launcher-default-size, 56px);\n inline-size:var(--cds-aichat-launcher-default-size, 56px);\n inset-block-end:var(--cds-aichat-launcher-position-bottom, 3rem);\n inset-inline-start:var(--cds-aichat-launcher-position-right, 2rem);\n }\n 100%{\n padding:0 0 60px 60px;\n border-radius:5rem;\n block-size:10rem;\n inline-size:10rem;\n inset-block-end:calc(-1 * 5rem);\n inset-inline-start:calc(-1 * 5rem);\n }\n}\n@keyframes cds-aichat-launcher-fade-in-close-button{\n 0%{\n opacity:0;\n }\n 80%{\n opacity:0;\n }\n 100%{\n opacity:1;\n }\n}\n@keyframes cds-aichat-launcher-avatar-resize{\n 0%{\n block-size:32px;\n inline-size:32px;\n }\n 100%{\n block-size:48px;\n inline-size:48px;\n }\n}\n@keyframes cds-aichat-launcher-fade-in-slide-up-small-expanded{\n 0%{\n inset-block-end:-160px;\n opacity:0;\n }\n 30%{\n opacity:0;\n }\n 100%{\n inset-block-end:calc(-1 * 5rem);\n opacity:1;\n }\n}\n@keyframes cds-aichat-launcher-fade-out-slide-down{\n 0%{\n background:var(--cds-aichat-launcher-expanded-message-color-background, var(--cds-button-primary, #0f62fe));\n box-shadow:var(--cds-aichat-box-shadow, 1px 0 4px hsla(0, 0%, 9%, 0.3));\n inset-block-end:4rem;\n }\n 40%{\n background:transparent;\n box-shadow:none;\n }\n 100%{\n background:transparent;\n box-shadow:none;\n inset-block-end:calc(2rem + var(--cds-aichat-launcher-default-size, 56px) + var(--cds-aichat-launcher-position-bottom, 3rem) - var(--cds-aichat-launcher-desktop-expanded-height, 320px));\n }\n}\n@keyframes cds-aichat-launcher-fade-out{\n 0%{\n opacity:1;\n }\n 40%{\n opacity:0;\n }\n 100%{\n opacity:0;\n }\n}\n@keyframes cds-aichat-launcher-default-size-position{\n 0%{\n padding:0 60px 60px 0;\n border-radius:5rem;\n block-size:10rem;\n inline-size:10rem;\n inset-block-end:calc(-1 * 5rem);\n inset-inline-end:calc(-1 * 5rem);\n }\n 100%{\n padding:0;\n border-radius:28px;\n block-size:var(--cds-aichat-launcher-default-size, 56px);\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}\n@keyframes cds-aichat-launcher-default-size-position-rtl{\n 0%{\n padding:0 0 60px 60px;\n border-radius:5rem;\n block-size:10rem;\n inline-size:10rem;\n inset-block-end:calc(-1 * 5rem);\n inset-inline-start:calc(-1 * 5rem);\n }\n 100%{\n padding:0;\n border-radius:28px;\n block-size:var(--cds-aichat-launcher-default-size, 56px);\n inline-size:var(--cds-aichat-launcher-default-size, 56px);\n inset-block-end:var(--cds-aichat-launcher-position-bottom, 3rem);\n inset-inline-start:var(--cds-aichat-launcher-position-right, 2rem);\n }\n}\n@keyframes cds-aichat-launcher-icon-to-32{\n 0%{\n inline-size:24px;\n }\n 100%{\n inline-size:32px;\n }\n}\n@keyframes cds-aichat-launcher-icon-to-24{\n 0%{\n inline-size:32px;\n }\n 100%{\n inline-size:24px;\n }\n}\n@keyframes cds-aichat-launcher-partially-round{\n 0%{\n border-radius:28px;\n }\n 100%{\n border-radius:14px;\n }\n}\n@keyframes cds-aichat-launcher-completely-round{\n 0%{\n border-radius:14px;\n }\n 100%{\n border-radius:28px;\n }\n}\n@keyframes cds-aichat-launcher-extend{\n 0%{\n inline-size:var(--cds-aichat-launcher-default-size, 56px);\n }\n 100%{\n inline-size:var(--cds-aichat-launcher-extended-width, 280px);\n }\n}\n@keyframes cds-aichat-launcher-reduce{\n 0%{\n inline-size:var(--cds-aichat-launcher-extended-width, 280px);\n }\n 100%{\n inline-size:var(--cds-aichat-launcher-default-size, 56px);\n }\n}\n@keyframes cds-aichat-launcher-extended-element-fade-in{\n 0%{\n inset-block-end:-16px;\n opacity:0;\n }\n 50%, 100%{\n inset-block-end:0;\n opacity:1;\n }\n}\n@keyframes cds-aichat-launcher-extended-element-fade-out{\n 0%{\n inset-block-start:0;\n opacity:1;\n }\n 50%, 100%{\n inset-block-start:-16px;\n opacity:0;\n }\n}\n@keyframes cds-aichat-linear-load-size{\n 0%{\n animation-timing-function:cubic-bezier(0, 0, 0.3, 1);\n r:0;\n }\n 25%{\n animation-timing-function:cubic-bezier(0, 0, 0.3, 1);\n r:2.5px;\n }\n 83.3%{\n r:0.875px;\n }\n 100%{\n r:0.875px;\n }\n}\n@keyframes cds-aichat-linear-load-stroke{\n 0%{\n animation-timing-function:cubic-bezier(0, 0, 0.3, 1);\n stroke-width:0;\n }\n 8.33%{\n stroke-width:1.72;\n }\n 100%{\n stroke-width:1.72;\n }\n}\n@keyframes cds-aichat-linear-loop-size{\n 0%{\n animation-timing-function:cubic-bezier(0, 0, 0.3, 1);\n r:0.875px;\n }\n 25%{\n animation-timing-function:cubic-bezier(0, 0, 0.3, 1);\n r:2.5px;\n }\n 91.66%{\n r:0.875px;\n }\n 100%{\n r:0.875px;\n }\n}\n@keyframes cds-aichat-linear-loop-stroke{\n 0%{\n animation-timing-function:cubic-bezier(0.4, 0.14, 1, 1);\n stroke-width:1.72;\n }\n 100%{\n stroke-width:1.72;\n }\n}\n@keyframes cds-aichat-linear-unload-size{\n 0%{\n r:0.875px;\n }\n 8.33%{\n r:0.875px;\n }\n 33.33%{\n animation-timing-function:cubic-bezier(0.4, 0.14, 1, 1);\n r:2.5px;\n }\n 58.33%{\n r:0;\n }\n 100%{\n r:0;\n }\n}\n@keyframes cds-aichat-linear-unload-stroke{\n 0%{\n stroke-width:1.72;\n }\n 50%{\n stroke-width:1.72;\n }\n 58.33%{\n stroke-width:0;\n }\n 100%{\n stroke-width:0;\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@keyframes cds-aichat-linear-load-size{\n 0%{\n animation-timing-function:cubic-bezier(0, 0, 0.3, 1);\n r:0;\n }\n 25%{\n animation-timing-function:cubic-bezier(0, 0, 0.3, 1);\n r:2.5px;\n }\n 83.3%{\n r:0.875px;\n }\n 100%{\n r:0.875px;\n }\n}\n@keyframes cds-aichat-linear-load-stroke{\n 0%{\n animation-timing-function:cubic-bezier(0, 0, 0.3, 1);\n stroke-width:0;\n }\n 8.33%{\n stroke-width:1.72;\n }\n 100%{\n stroke-width:1.72;\n }\n}\n@keyframes cds-aichat-linear-loop-size{\n 0%{\n animation-timing-function:cubic-bezier(0, 0, 0.3, 1);\n r:0.875px;\n }\n 25%{\n animation-timing-function:cubic-bezier(0, 0, 0.3, 1);\n r:2.5px;\n }\n 91.66%{\n r:0.875px;\n }\n 100%{\n r:0.875px;\n }\n}\n@keyframes cds-aichat-linear-loop-stroke{\n 0%{\n animation-timing-function:cubic-bezier(0.4, 0.14, 1, 1);\n stroke-width:1.72;\n }\n 100%{\n stroke-width:1.72;\n }\n}\n@keyframes cds-aichat-linear-unload-size{\n 0%{\n r:0.875px;\n }\n 8.33%{\n r:0.875px;\n }\n 33.33%{\n animation-timing-function:cubic-bezier(0.4, 0.14, 1, 1);\n r:2.5px;\n }\n 58.33%{\n r:0;\n }\n 100%{\n r:0;\n }\n}\n@keyframes cds-aichat-linear-unload-stroke{\n 0%{\n stroke-width:1.72;\n }\n 50%{\n stroke-width:1.72;\n }\n 58.33%{\n stroke-width:0;\n }\n 100%{\n stroke-width: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-max-width:672px;\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-ai-background-image:linear-gradient(\n to bottom,\n var(--cds-chat-shell-background, #ffffff) 0,\n var(--cds-chat-shell-background, #ffffff) 50%,\n var(--cds-ai-aura-end, rgba(255, 255, 255, 0)) 50%,\n var(--cds-ai-aura-start, rgba(69, 137, 255, 0.1)) 100%\n );\n --cds-aichat-ai-box-shadow-inner:inset 0 -80px 70px -65px var(--cds-ai-inner-shadow, rgba(69, 137, 255, 0.1));\n --cds-aichat-ai-box-shadow-outer:0 4px 10px 2px var(--cds-ai-drop-shadow, rgba(15, 98, 254, 0.1));\n --cds-aichat-card-border-radius:0.5rem;\n --cds-aichat-card-max-width:424px;\n --cds-aichat-box-shadow:1px 0 4px hsl(0deg 0% 9% / 30%);\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-desktop-expanded-height:320px;\n --cds-aichat-launcher-position-bottom-mobile:1rem;\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-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--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{\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 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{\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}\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.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 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{\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}\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-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 inline-size:100%;\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-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--custom-panel{\n display:flex;\n flex-direction:column;\n background-color:var(--cds-chat-shell-background, #ffffff);\n background-image:unset;\n block-size:100%;\n inline-size:100%;\n}\n:host .cds-aichat--ai-theme .cds-aichat--custom-panel{\n background-color:var(--cds-chat-shell-background, #ffffff);\n background-image:var(--cds-aichat-ai-background-image, linear-gradient(to bottom, var(--cds-chat-shell-background, #ffffff) 0, var(--cds-chat-shell-background, #ffffff) 50%, var(--cds-ai-aura-end, rgba(255, 255, 255, 0)) 50%, var(--cds-ai-aura-start, rgba(69, 137, 255, 0.1)) 100%));\n}\n:host .cds-aichat--ai-theme .cds-aichat--overlay-panel--with-back-button,\n:host .cds-aichat--custom-panel,\n:host .cds-aichat--overlay-panel--with-back-button .cds-aichat--custom-panel{\n background-color:var(--cds-chat-shell-background, #ffffff);\n background-image:unset;\n}\n:host .cds-aichat--widget--max-width .cds-aichat--overlay-panel-container .cds-aichat--panel-content{\n max-inline-size:var(--cds-aichat-max-width, 672px);\n}\n:host .cds-aichat--custom-panel__content-container{\n overflow:auto;\n block-size:100%;\n}\n:host .cds-aichat--custom-panel .cds-aichat--panel-content{\n flex:1;\n}\n:host{\n}\n:host .cds-aichat--body-and-footer-component{\n display:flex;\n flex-direction:column;\n block-size:100%;\n}\n:host .cds-aichat--body-and-footer-component .cds-aichat--body-message-components{\n overflow:auto;\n flex:1;\n}\n:host .cds-aichat--body-and-footer-component .cds-aichat--panel-content{\n display:flex;\n flex:1;\n flex-direction:column;\n background-color:var(--cds-chat-shell-background, #ffffff);\n}\n:host{\n}\n:host .cds-aichat--widget--max-width .cds-aichat--header__header-bottom-element{\n margin:auto;\n max-inline-size:var(--cds-aichat-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{\n}\n:host .cds-aichat--header{\n display:flex;\n box-sizing:unset;\n justify-content:center;\n block-size:40px;\n border-block-end:1px solid var(--cds-border-subtle-00, #e0e0e0);\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 inline-size:100%;\n}\n:host .cds-aichat--widget--max-width .cds-aichat--header--content{\n max-inline-size:var(--cds-aichat-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--widget.cds-aichat--widget--rounded .cds-aichat--header--content{\n border-start-end-radius:max(0px, var(--cds-aichat-border-radius, 0px) - 1px);\n border-start-start-radius:max(0px, var(--cds-aichat-border-radius, 0px) - 1px);\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-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 overflow:hidden;\n border-start-start-radius:max(0px, var(--cds-aichat-border-radius, 0px) - 1px);\n}\n:host .cds-aichat--header__left-items :first-child::part(button){\n border-start-start-radius:max(0px, var(--cds-aichat-border-radius, 0px) - 1px);\n}\n:host .cds-aichat--header__right-buttons :last-child::part(button){\n border-start-end-radius:max(0px, var(--cds-aichat-border-radius, 0px) - 1px);\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{\n}\n:host .cds-aichat--home-screen{\n display:flex;\n flex-direction:column;\n background-color:var(--cds-chat-shell-background, #ffffff);\n block-size:100%;\n}\n:host .cds-aichat--home-screen--background-ai-theme{\n background-color:var(--cds-chat-shell-background, #ffffff);\n background-image:var(--cds-aichat-ai-background-image, linear-gradient(to bottom, var(--cds-chat-shell-background, #ffffff) 0, var(--cds-chat-shell-background, #ffffff) 50%, var(--cds-ai-aura-end, rgba(255, 255, 255, 0)) 50%, var(--cds-ai-aura-start, rgba(69, 137, 255, 0.1)) 100%));\n}\n:host .cds-aichat--home-screen__home-screen-bottom-element{\n position:relative;\n margin:auto;\n inline-size:100%;\n max-inline-size:var(--cds-aichat-max-width, 672px);\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{\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--home-screen--first-render .cds-aichat--home-screen__content{\n animation:none;\n }\n}\n@media screen and (prefers-reduced-motion: no-preference){\n :host .cds-aichat--home-screen--first-render .cds-aichat--home-screen__content{\n animation:400ms cubic-bezier(0, 0, 0.3, 1) cds-aichat-fade-in 70ms both;\n }\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@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--home-screen.cds-aichat--home-screen--hydration-complete .cds-aichat--home-screen__avatar-holder{\n animation:none;\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__avatar-holder{\n animation:400ms cubic-bezier(0, 0, 0.3, 1) cds-aichat-fade-in 70ms both;\n }\n}\n:host .cds-aichat--home-screen__avatar-holder img{\n border-radius:48px;\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: reduce){\n :host .cds-aichat--home-screen.cds-aichat--home-screen--hydration-complete .cds-aichat--home-screen__greeting{\n animation:none;\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__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@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--home-screen.cds-aichat--home-screen--hydration-complete cds-chat-button.cds-aichat--home-screen__starter{\n display:block;\n animation:none;\n margin-block-end:0.75rem;\n max-inline-size:100%;\n word-break:break-word;\n }\n :host .cds-aichat--home-screen.cds-aichat--home-screen--hydration-complete cds-chat-button.cds-aichat--home-screen__starter:last-child{\n margin-block-end:0;\n }\n}\n:host cds-chat-button.cds-aichat--home-screen__starter:nth-child(1){\n --cds-aichat-homescreen-starter-index:1;\n}\n:host cds-chat-button.cds-aichat--home-screen__starter:nth-child(2){\n --cds-aichat-homescreen-starter-index:2;\n}\n:host cds-chat-button.cds-aichat--home-screen__starter:nth-child(3){\n --cds-aichat-homescreen-starter-index:3;\n}\n:host cds-chat-button.cds-aichat--home-screen__starter:nth-child(4){\n --cds-aichat-homescreen-starter-index:4;\n}\n:host cds-chat-button.cds-aichat--home-screen__starter: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-chat-button.cds-aichat--home-screen__starter{\n display:block;\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 margin-block-end:0.75rem;\n max-inline-size:100%;\n word-break:break-word;\n }\n :host .cds-aichat--home-screen.cds-aichat--home-screen--hydration-complete cds-chat-button.cds-aichat--home-screen__starter:last-child{\n margin-block-end:0;\n }\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--home-screen.cds-aichat--home-screen--hydration-complete .cds-aichat--home-screen__starters--animate-group cds-chat-button.cds-aichat--home-screen__starter{\n animation:none;\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-chat-button.cds-aichat--home-screen__starter{\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: reduce){\n :host .cds-aichat--home-screen.cds-aichat--home-screen--hydration-complete .cds-aichat--home-screen__custom-content--animation{\n animation:none;\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 position:absolute;\n inset-inline-start:50%;\n transform:translate(-50%, calc(-100% - 1rem));\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: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@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--home-screen.cds-aichat--home-screen--hydration-complete .cds-aichat--home-screen__back-button{\n animation:none;\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 .cds-aichat--home-screen__input-container-wrapper,\n:host .cds-aichat--home-screen__input-container{\n display:flex;\n inline-size:100%;\n transform:translateY(0);\n}\n:host .cds-aichat--home-screen__input-container-wrapper{\n flex-direction:column;\n}\n:host{\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--home-screen.cds-aichat--home-screen--first-render .cds-aichat--input-container{\n animation:none;\n }\n}\n@media screen and (prefers-reduced-motion: no-preference){\n :host .cds-aichat--home-screen.cds-aichat--home-screen--first-render .cds-aichat--input-container{\n animation:400ms cubic-bezier(0, 0, 0.3, 1) cds-aichat-fade-in-up 370ms both;\n }\n}\n:host{\n}\n:host .cds-aichat--input-and-completions{\n position:relative;\n inline-size:100%;\n}\n:host .cds-aichat--widget--max-width .cds-aichat--input-and-completions{\n margin:0 auto;\n max-inline-size:var(--cds-aichat-max-width, 672px);\n}\n:host .cds-aichat--input-container{\n position:relative;\n z-index:1;\n display:flex;\n align-items:center;\n background-color:var(--cds-chat-prompt-background, #ffffff);\n border-block-start:1px solid var(--cds-border-subtle-00, #e0e0e0);\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--widget--max-width.cds-aichat--wide-width .cds-aichat--input-container{\n border:1px solid var(--cds-border-subtle-00, #e0e0e0);\n border-radius:0.5rem;\n margin-block-end:32px;\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{\n}\n:host .cds-aichat--launcher__button-container{\n position:fixed;\n z-index:var(--cds-aichat-z-index, 99999);\n border-radius:0.125rem;\n animation:cds-aichat-launcher-in 150ms cubic-bezier(0, 0, 0.3, 1) both;\n background-color:var(--cds-background, #ffffff);\n box-shadow:var(--cds-aichat-box-shadow, 1px 0 4px hsla(0, 0%, 9%, 0.3));\n inset-block-end:var(--cds-aichat-launcher-position-bottom, 3rem);\n inset-inline-end:var(--cds-aichat-launcher-position-right, 2rem);\n}\n:host .cds-aichat--launcher__button-container--hidden{\n visibility:hidden;\n}\n:host .cds-aichat--launcher__button-container--mobile{\n inset-block-end:var(--cds-aichat-launcher-position-bottom-mobile, 1rem);\n inset-inline-end:var(--cds-aichat-launcher-position-bottom-mobile, 1rem);\n}\n:host .cds-aichat--launcher__button-container--round{\n border-radius:28px;\n box-shadow:var(--cds-aichat-box-shadow, 1px 0 4px hsla(0, 0%, 9%, 0.3));\n}\n:host .cds-aichat--launcher__button-container--round .cds-aichat--launcher__button{\n border-radius:28px;\n background-color:var(--cds-aichat-launcher-color-background, var(--cds-button-primary, #0f62fe));\n transition:unset;\n}\n:host .cds-aichat--launcher__button-container--round .cds-aichat--launcher__button::part(button):focus{\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__button-container--round .cds-aichat--launcher__button:focus{\n border-width:2px;\n border-color:var(--cds-aichat-launcher-color-background, var(--cds-button-primary, #0f62fe));\n}\n:host .cds-aichat--launcher__button-container--round .cds-aichat--launcher__button:hover{\n border-color:var(--cds-aichat-launcher-color-background-hover, var(--cds-button-primary-hover, #0050e6));\n background-color:var(--cds-aichat-launcher-color-background-hover, var(--cds-button-primary-hover, #0050e6));\n}\n:host .cds-aichat--launcher__button-container--round .cds-aichat--launcher__button:active{\n border-width:2px;\n border-color:var(--cds-aichat-launcher-color-background-active, var(--cds-button-primary-active, #002d9c));\n background-color:var(--cds-aichat-launcher-color-background-active, var(--cds-button-primary-active, #002d9c));\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__button-container--round .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 color:var(--cds-aichat-unread-indicator-color-text, var(--cds-text-on-color, #ffffff));\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 inset-block-start:calc(-1 * 0.125rem);\n inset-inline-end:calc(-1 * 0.125rem);\n min-block-size:20px;\n min-inline-size:20px;\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--count-indicator{\n inset-inline:calc(-1 * 0.125rem) unset;\n}\n:host .cds-aichat--launcher__button-container--no-animation{\n animation:none;\n}\n:host .cds-aichat--launcher__button-container--bounce-animation{\n animation:cds-aichat-launcher-bounce 500ms cubic-bezier(0, 0, 0.3, 1) forwards;\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){\n display:flex;\n align-items:center;\n justify-content:center;\n padding:inherit;\n border-radius:inherit;\n block-size:inherit;\n inline-size:inherit;\n max-inline-size:inherit;\n}\n:host cds-button.cds-aichat--launcher__button::part(button):focus{\n border-width:2px;\n}\n:host cds-button.cds-aichat--launcher__button{\n position:static;\n padding:0;\n border-radius:0.125rem;\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:background 250ms ease-in-out, transform 150ms ease;\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__button .cds-aichat__count-indicator{\n box-shadow:1px 0.125rem 0.125rem rgba(23, 23, 23, 0.3);\n inset-block-start:calc(-1 * 0.25rem);\n inset-inline-end:calc(-1 * 0.25rem);\n}\n:host{\n}\n:host .cds-aichat--launcher-complex__container{\n border-radius:0.75rem;\n animation:none;\n background-color:var(--cds-aichat-launcher-color-background, var(--cds-button-primary, #0f62fe));\n box-shadow:none;\n inset-block-end:calc(1rem + var(--cds-aichat-launcher-default-size, 56px) + var(--cds-aichat-launcher-position-bottom, 3rem) - var(--cds-chat-LAUNCHER-desktop-expanded-height));\n inset-inline-end:4rem;\n max-inline-size:270px;\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--launcher-complex__container{\n inset-inline:4rem unset;\n}\n:host .cds-aichat--launcher-complex__container .cds-aichat--launcher-complex__content-button{\n padding:0;\n border:2px solid transparent;\n border-radius:0.75rem;\n background-color:var(--cds-aichat-launcher-color-background, var(--cds-button-primary, #0f62fe));\n box-shadow:none;\n min-inline-size:10rem;\n}\n:host .cds-aichat--launcher-complex__container .cds-aichat--launcher-complex__content-button:enabled:focus{\n border-width:2px;\n border-color:var(--cds-aichat-launcher-expanded-message-color-background, var(--cds-button-primary, #0f62fe));\n box-shadow:inset 0 0 0 2px var(--cds-aichat-launcher-expanded-message-color-focus-border, var(--cds-text-on-color, #ffffff));\n outline:none;\n}\n:host .cds-aichat--launcher-complex__container .cds-aichat--launcher-complex__content-button:enabled:hover{\n border-color:var(--cds-aichat-launcher-expanded-message-color-background-hover, var(--cds-button-primary-hover, #0050e6));\n background-color:var(--cds-aichat-launcher-expanded-message-color-background-hover, var(--cds-button-primary-hover, #0050e6));\n cursor:pointer;\n}\n:host .cds-aichat--launcher-complex__container .cds-aichat--launcher-complex__content-button:enabled:active{\n border-width:2px;\n border-color:var(--cds-aichat-launcher-expanded-message-color-background-active, var(--cds-button-primary-active, #002d9c));\n background-color:var(--cds-aichat-launcher-expanded-message-color-background-active, var(--cds-button-primary-active, #002d9c));\n box-shadow:inset 0 0 0 2px var(--cds-aichat-launcher-expanded-message-color-focus-border, var(--cds-text-on-color, #ffffff));\n}\n:host .cds-aichat--launcher-complex__container .cds-aichat--launcher-complex__text{\n display:-webkit-box;\n margin:1rem;\n -webkit-box-orient:vertical;\n color:var(--cds-aichat-launcher-expanded-message-color-text, var(--cds-text-on-color, #ffffff));\n font-size:20px;\n letter-spacing:0;\n -webkit-line-clamp:3;\n line-clamp:3;\n line-height:1.4;\n opacity:0;\n overflow-wrap:break-word;\n text-align:start;\n visibility:visible;\n white-space:normal;\n word-break:break-word;\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--launcher-complex__container .cds-aichat--launcher-complex__text{\n text-align:end;\n}\n:host .cds-aichat--launcher-complex__container .cds-aichat--launcher__close-button{\n position:absolute;\n padding:3px 7px 3px 3px;\n border:1px solid transparent;\n margin:0;\n box-shadow:1px 0 2px rgba(23, 23, 23, 0.3);\n cursor:pointer;\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 inset-block-start:calc((1.5rem + 0.5rem) * -1);\n inset-inline-end:0;\n opacity:0;\n}\n:host .cds-aichat--launcher-complex__container .cds-aichat--launcher__close-button:focus{\n border-color:var(--cds-focus, #0f62fe);\n outline:none;\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--launcher-complex__container .cds-aichat--launcher__close-button{\n padding:3px 3px 3px 7px;\n inset-inline:0 unset;\n}\n:host .cds-aichat--launcher-complex__container .cds-aichat--launcher__close-button .cds-aichat--launcher__close-button-icon{\n margin-inline-end:0.25rem;\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--launcher-complex__container .cds-aichat--launcher__close-button .cds-aichat--launcher__close-button-icon{\n margin-inline:0.25rem unset;\n}\n:host .cds-aichat--launcher-complex__container--intro-animation{\n animation:700ms cds-aichat-launcher-fade-in-slide-up forwards;\n}\n:host .cds-aichat--launcher-complex__container--intro-animation .cds-aichat--launcher__avatar{\n animation:700ms cds-aichat-launcher-avatar-resize forwards;\n}\n:host .cds-aichat--launcher-complex__container--intro-animation .cds-aichat--launcher-complex__text{\n animation:700ms cds-aichat-launcher-fade-in-text forwards;\n}\n:host .cds-aichat--launcher-complex__container--intro-animation .cds-aichat--launcher-complex__small-launcher-container,\n:host .cds-aichat--launcher-complex__container--intro-animation .cds-aichat--launcher__button-container.cds-aichat--launcher-complex__small-launcher-container .cds-aichat--launcher__button{\n animation:700ms cds-aichat-launcher-resize-reposition forwards;\n}\n:host .cds-aichat--launcher-complex__container--intro-animation .cds-aichat--launcher__close-button{\n animation:700ms cds-aichat-launcher-fade-in-close-button forwards;\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--launcher-complex__container--intro-animation .cds-aichat--launcher-complex__small-launcher-container,\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--launcher-complex__container--intro-animation .cds-aichat--launcher__button-container.cds-aichat--launcher-complex__small-launcher-container .cds-aichat--launcher__button{\n animation:700ms cds-aichat-launcher-resize-reposition-rtl forwards;\n}\n:host .cds-aichat--launcher-complex__container--simple-animation{\n animation:150ms cds-aichat-launcher-fade-in-slide-up forwards;\n}\n:host .cds-aichat--launcher-complex__container--simple-animation .cds-aichat--launcher__avatar{\n animation:150ms cds-aichat-launcher-avatar-resize forwards;\n}\n:host .cds-aichat--launcher-complex__container--simple-animation .cds-aichat--launcher-complex__text{\n animation:150ms cds-aichat-launcher-fade-in-text forwards;\n}\n:host .cds-aichat--launcher-complex__container--simple-animation .cds-aichat--launcher-complex__small-launcher-container,\n:host .cds-aichat--launcher-complex__container--simple-animation .cds-aichat--launcher__button-container.cds-aichat--launcher-complex__small-launcher-container .cds-aichat--launcher__button{\n padding:0 60px 60px 0;\n border-radius:5rem;\n animation:150ms cds-aichat-launcher-fade-in-slide-up-small-expanded forwards;\n block-size:10rem;\n inline-size:10rem;\n inset-inline-end:calc(-1 * 5rem);\n}\n:host .cds-aichat--launcher-complex__container--simple-animation .cds-aichat--launcher__close-button{\n animation:150ms cds-aichat-launcher-fade-in-close-button forwards;\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--launcher-complex__container--simple-animation .cds-aichat--launcher-complex__small-launcher-container,\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--launcher-complex__container--simple-animation .cds-aichat--launcher__button-container.cds-aichat--launcher-complex__small-launcher-container .cds-aichat--launcher__button{\n padding:0 0 60px 60px;\n inset-inline:calc(-1 * 5rem) unset;\n}\n:host .cds-aichat--launcher-complex__container--tooling-preview{\n background-color:var(--cds-aichat-launcher-expanded-message-color-background, var(--cds-button-primary, #0f62fe));\n box-shadow:var(--cds-aichat-box-shadow, 1px 0 4px hsla(0, 0%, 9%, 0.3));\n inset-block-end:4rem;\n}\n:host .cds-aichat--launcher-complex__container--tooling-preview .cds-aichat--launcher-complex__text{\n opacity:1;\n}\n:host .cds-aichat--launcher-complex__container--tooling-preview .cds-aichat--launcher-complex__small-launcher-container,\n:host .cds-aichat--launcher-complex__container--tooling-preview .cds-aichat--launcher__button-container.cds-aichat--launcher-complex__small-launcher-container .cds-aichat--launcher__button{\n padding:0 60px 60px 0;\n border-radius:5rem;\n animation:unset;\n block-size:10rem;\n inline-size:10rem;\n inset-block-end:calc(-1 * 5rem);\n inset-inline-end:calc(-1 * 5rem);\n}\n:host .cds-aichat--launcher-complex__container--tooling-preview .cds-aichat--launcher__close-button{\n opacity:1;\n}\n:host .cds-aichat--launcher-complex__container--close-animation{\n animation:400ms cds-aichat-launcher-fade-out-slide-down forwards;\n}\n:host .cds-aichat--launcher-complex__container--close-animation .cds-aichat--launcher__avatar{\n animation:400ms cds-aichat-launcher-avatar-resize backwards;\n}\n:host .cds-aichat--launcher-complex__container--close-animation .cds-aichat--launcher-complex__text,\n:host .cds-aichat--launcher-complex__container--close-animation .cds-aichat--launcher__close-button{\n animation:400ms cds-aichat-launcher-fade-out forwards;\n}\n:host .cds-aichat--launcher-complex__container--close-animation .cds-aichat--launcher-complex__small-launcher-container,\n:host .cds-aichat--launcher-complex__container--close-animation .cds-aichat--launcher__button-container.cds-aichat--launcher-complex__small-launcher-container .cds-aichat--launcher__button{\n animation:400ms cds-aichat-launcher-default-size-position forwards;\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--launcher-complex__container--close-animation .cds-aichat--launcher-complex__small-launcher-container,\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--launcher-complex__container--close-animation .cds-aichat--launcher__button-container.cds-aichat--launcher-complex__small-launcher-container .cds-aichat--launcher__button{\n animation:700ms cds-aichat-launcher-default-size-position-rtl forwards;\n}\n:host{\n}\n:host .cds-aichat--launcher-extended__container{\n block-size:var(--cds-aichat-launcher-default-size, 56px);\n inline-size:var(--cds-aichat-launcher-default-size, 56px);\n}\n:host cds-button.cds-aichat--launcher-extended__button::part(button){\n padding:0;\n border-width:2px;\n block-size:100%;\n cursor:pointer;\n inline-size:100%;\n}\n:host .cds-aichat--launcher-extended__button--hidden{\n visibility:hidden;\n}\n:host .cds-aichat--launcher-extended__wrapper-container{\n position:relative;\n overflow:hidden;\n block-size:100%;\n inline-size:100%;\n}\n:host .cds-aichat--launcher-extended__wrapper{\n position:absolute;\n display:flex;\n inline-size:calc(var(--cds-aichat-launcher-extended-width, 280px) - 6px);\n inset-inline-end:0;\n max-inline-size:calc(100vw - var(--cds-aichat-launcher-position-bottom, 3rem) - 6px);\n}\n:host .cds-aichat--launcher-extended__text-holder{\n position:relative;\n flex:1;\n padding:0.75rem 0 0.75rem 0.75rem;\n text-align:start;\n}\n:host .cds-aichat--launcher-extended__greeting{\n position:absolute;\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 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:calc(100% - 12px);\n inset-block-end:0;\n word-break:break-word;\n}\n:host .cds-aichat-is-phone .cds-aichat--launcher-extended__greeting{\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-extended__button .cds-aichat--launcher__icon-holder{\n display:flex;\n align-items:center;\n justify-content:center;\n block-size:calc(var(--cds-aichat-launcher-default-size, 56px) - 4px);\n inline-size:calc(var(--cds-aichat-launcher-default-size, 56px) - 4px);\n margin-inline-start:auto;\n}\n:host .cds-aichat--launcher-extended__button .cds-aichat--launcher__icon-holder svg{\n position:absolute;\n block-size:24px;\n inline-size:24px;\n}\n:host .cds-aichat--launcher-extended__button .cds-aichat--launcher-extended__element--hidden{\n display:none;\n}\n:host .cds-aichat--launcher-extended__button .cds-aichat--launcher-extended__element--fade-out{\n animation:cds-aichat-launcher-extended-element-fade-out 500ms ease-out 400ms both;\n}\n:host .cds-aichat--launcher-extended__button .cds-aichat--launcher-extended__element--fade-in{\n animation:cds-aichat-launcher-extended-element-fade-in 500ms ease-out 400ms both;\n}\n:host .cds-aichat--launcher__button-container.cds-aichat--launcher-extended__button--extended{\n border-radius:14px;\n inline-size:var(--cds-aichat-launcher-extended-width, 280px);\n}\n:host .cds-aichat--launcher__button-container.cds-aichat--launcher-extended__button--extended cds-button.cds-aichat--launcher__button{\n inline-size:var(--cds-aichat-launcher-extended-width, 280px);\n}\n:host .cds-aichat--launcher__button-container.cds-aichat--launcher-extended__button--extended cds-button.cds-aichat--launcher__button.cds-aichat--launcher-extended__button::part(button\n ){\n border-radius:14px;\n}\n:host .cds-aichat--launcher__button-container.cds-aichat--launcher-extended__button--extended .cds-aichat--launcher__svg{\n inline-size:24px;\n}\n:host .cds-aichat--launcher__button-container.cds-aichat--launcher-extended__button--extended-animation{\n animation:cds-aichat-launcher-extend 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 500ms both, cds-aichat-launcher-partially-round 300ms ease-in 500ms both;\n}\n:host .cds-aichat--launcher__button-container.cds-aichat--launcher-extended__button--extended-animation cds-button.cds-aichat--launcher-extended__button::part(button){\n animation:cds-aichat-launcher-partially-round 300ms ease-in 500ms both;\n}\n:host .cds-aichat--launcher__button-container.cds-aichat--launcher-extended__button--extended-animation .cds-aichat--launcher__svg{\n animation:cds-aichat-launcher-icon-to-24 300ms ease-out 500ms both;\n}\n:host .cds-aichat--launcher__button-container.cds-aichat--launcher-extended__button--reduced-animation{\n animation:cds-aichat-launcher-reduce 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 500ms both, cds-aichat-launcher-completely-round 300ms ease-out 500ms both;\n}\n:host .cds-aichat--launcher__button-container.cds-aichat--launcher-extended__button--reduced-animation cds-button.cds-aichat--launcher-extended__button::part(button){\n animation:cds-aichat-launcher-completely-round 300ms ease-out 500ms both;\n}\n:host .cds-aichat--launcher__button-container.cds-aichat--launcher-extended__button--reduced-animation .cds-aichat--launcher__svg{\n animation:cds-aichat-launcher-icon-to-32 300ms ease-out 500ms both;\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--launcher-extended__container .cds-aichat--launcher-extended__wrapper{\n inset-inline:0 unset;\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--launcher-extended__container .cds-aichat--launcher-extended__text-holder{\n padding:0.75rem 0.75rem 0.75rem 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(22, 22, 22, 0.5));\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 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-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--notifications{\n position:absolute;\n z-index:2;\n display:block;\n padding:0 1rem 0 1rem;\n inline-size:calc(100% - var(--cds-aichat-scrollbar-width));\n inset-block-start:1rem;\n overflow-y:auto;\n}\n:host .cds-aichat--notifications__notification{\n display:block;\n inline-size:100%;\n margin-block-end:1rem;\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@font-face{\n font-family:\"swiper-icons\";\n src:url(\"data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA\") format(\"woff\");\n font-weight:400;\n font-style:normal;\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-vertical > .swiper-wrapper{\n scroll-snap-type:y mandatory;\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--card-message-component{\n display:flex;\n flex-direction:column;\n block-size:calc(100% - 2px);\n}\n:host .swiper .cds-aichat--body-message-components{\n flex:1;\n}\n:host .cds-aichat--carousel-container__slide--narrow.swiper-slide{\n max-inline-size:calc(100% - 32px);\n}\n:host .cds-aichat--carousel-container__slide--wide.swiper-slide,\n:host .cds-aichat--carousel-container__slide--standard.swiper-slide{\n max-inline-size:calc(100% - 72px);\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:56px 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 inline-size:100%;\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--received--conversational-search .cds-aichat--received--feedback,\n:host .cds-aichat--wide-width .cds-aichat--conversational-search-text,\n:host .cds-aichat--standard-width .cds-aichat--conversational-search-text{\n margin-inline:56px 16px;\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{\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 block-size:100%;\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@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(22, 22, 22, 0.5));\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{\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-tile .cds-aichat--footer-button-components:not(.cds-aichat--footer-button-components--column){\n gap:0.0625rem;\n}\n:host cds-tile .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-tile .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-tile .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-tile .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-tile .cds-aichat--footer-button-components.cds-aichat--footer-button-components--column{\n flex-direction:column;\n}\n:host cds-tile .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-tile .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--widget--rounded .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--widget--rounded .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--widget--rounded .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--widget--rounded .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, 0px) - 0.0625rem);\n}\n:host .cds-aichat--widget--rounded .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, 0px) - 0.0625rem);\n}\n:host .cds-aichat--widget--rounded .cds-aichat--overlay-panel .cds-aichat--footer-button-components.cds-aichat--footer-button-components--column{\n flex-direction:column;\n}\n:host .cds-aichat--widget--rounded .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--widget--rounded .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, 0px) - 0.0625rem);\n border-end-start-radius:max(0px, var(--cds-aichat-border-radius, 0px) - 0.0625rem);\n}\n:host .cds-aichat--widget__animation-container--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) .cds-aichat--widget__animation-container:not(.cds-aichat--widget__animation-container--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__animation-container--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) .cds-aichat--widget__animation-container:not(.cds-aichat--widget__animation-container--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__animation-container--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-tile,\n:host .cds-aichat--message button.cds-aichat--citation-card--clickable cds-tile{\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-tile,\n :host .cds-aichat--message button.cds-aichat--citation-card--clickable cds-tile{\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-tile,\n:host .cds-aichat--message button.cds-aichat--citation-card--clickable:focus cds-tile{\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-tile,\n:host .cds-aichat--message button.cds-aichat--citation-card--clickable:hover cds-tile{\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-tile,\n:host .cds-aichat--message button.cds-aichat--citation-card--clickable:active cds-tile{\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 padding:0.75rem;\n background-color:var(--cds-background, #ffffff);\n block-size:100%;\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--non-header-container{\n position:relative;\n display:flex;\n overflow:hidden;\n flex:1 1 0%;\n}\n:host .cds-aichat--messages-and-input-container{\n position:relative;\n display:flex;\n flex:1;\n flex-direction:column;\n inline-size:100%;\n}\n:host .cds-aichat--messages-container__non-input-container{\n position:relative;\n display:flex;\n overflow:hidden;\n flex:1;\n flex-direction:column;\n}\n:host .cds-aichat--widget--max-width .cds-aichat--messages-container__non-input-container{\n overflow:hidden auto;\n block-size:100%;\n}\n:host .cds-aichat--process-wizard-done-button{\n justify-content:center;\n}\n:host .cds-aichat--messages-error-handler{\n padding:1rem;\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--with-header{\n border-start-end-radius:0;\n border-start-start-radius:0;\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 .cds-aichat--catastrophic-error--with-header .cds-aichat--catastrophic-error__error-text-container{\n margin-block-end:41px;\n}\n:host .cds-aichat--wide-width.cds-aichat--widget--max-width .cds-aichat--catastrophic-error.cds-aichat--panel-content{\n max-inline-size:100%;\n}\n:host .cds-aichat--wide-width.cds-aichat--widget--max-width .cds-aichat--catastrophic-error__error-text-container{\n margin:auto;\n max-inline-size:var(--cds-aichat-max-width, 672px);\n}\n:host{\n}\n:host .cds-aichat--disclaimer-container{\n display:flex;\n flex-basis:100%;\n flex-direction:column;\n justify-content:space-between;\n block-size:100%;\n}\n:host .cds-aichat--disclaimer{\n display:flex;\n flex-basis:100%;\n flex-direction:column;\n justify-content:space-between;\n block-size:100%;\n color:var(--cds-text-primary, #161616);\n}\n:host .cds-aichat--disclaimer__content{\n background-color:var(--cds-chat-shell-background, #ffffff);\n}\n:host .cds-aichat--disclaimer .cds-aichat--header{\n border-block-end:none;\n color:var(--cds-text-primary, #161616);\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 overflow:hidden auto;\n flex-grow:1;\n padding:0 2rem 0 2rem;\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__buttons{\n border-block-start:1px solid var(--cds-border-subtle-01, #c6c6c6);\n inline-size:100%;\n}\n:host .cds-aichat--wide-width .cds-aichat--disclaimer__buttons{\n display:flex;\n flex-direction:row-reverse;\n}\n:host .cds-aichat--wide-width .cds-aichat--disclaimer__buttons cds-button.cds-aichat--disclaimer__accept-button{\n inline-size:288px;\n}\n:host .cds-aichat--narrow-width .cds-aichat--disclaimer__buttons cds-button.cds-aichat--disclaimer__accept-button,\n:host .cds-aichat--standard-width .cds-aichat--disclaimer__buttons cds-button.cds-aichat--disclaimer__accept-button{\n inline-size:100%;\n max-inline-size:unset;\n}\n:host .cds-aichat--narrow-width .cds-aichat--disclaimer__buttons cds-button.cds-aichat--disclaimer__accept-button::part(button),\n:host .cds-aichat--standard-width .cds-aichat--disclaimer__buttons cds-button.cds-aichat--disclaimer__accept-button::part(button){\n border-end-end-radius:var(--cds-aichat-border-radius, 0px);\n border-end-start-radius:var(--cds-aichat-border-radius, 0px);\n}\n:host .cds-aichat--widget--max-width.cds-aichat--wide-width .cds-aichat--disclaimer__buttons-padding{\n display:flex;\n justify-content:flex-end;\n margin:auto;\n inline-size:var(--cds-aichat-max-width, 672px);\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--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--hydrating--home-screen circle{\n stroke:var(--cds-text-primary, #161616);\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 .cds-aichat--widget--max-width .cds-aichat--hydrating.cds-aichat--panel-content{\n max-inline-size:100%;\n}\n:host{\n}\n:host .cds-aichat--header-with-panel{\n position:absolute;\n z-index:100;\n inline-size:100%;\n inset-block-start:0;\n}\n:host .cds-aichat--overlay-panel--disclaimer_panel{\n z-index:99;\n}\n:host .cds-aichat--overlay-panel--custom_panel{\n z-index:95;\n}\n:host .cds-aichat--overlay-panel--panel_response{\n z-index:94;\n}\n:host .cds-aichat--overlay-panel--button_response_panel{\n z-index:93;\n}\n:host .cds-aichat--overlay-panel--hydrating_panel{\n z-index:90;\n}\n:host .cds-aichat--overlay-panel--catastrophic_panel{\n z-index:80;\n}\n:host .cds-aichat--overlay-panel--home_screen_panel{\n z-index:30;\n}\n:host .cds-aichat--overlay-panel--conversational_search_citation_panel{\n z-index:6;\n}\n:host .cds-aichat--overlay-panel--iframe_panel{\n z-index:5;\n}\n:host .cds-aichat--overlay-panel-container{\n position:absolute;\n block-size:100%;\n inline-size:100%;\n inset-block-start:0;\n}\n:host .cds-aichat--overlay-panel-container--animating{\n overflow:hidden;\n}\n:host .cds-aichat--widget--rounded .cds-aichat--overlay--covering.cds-aichat--overlay-panel-container .cds-aichat--header--content{\n border-start-end-radius:0.5rem;\n border-start-start-radius:0.5rem;\n}\n:host .cds-aichat--widget--rounded .cds-aichat--wide-width .cds-aichat--overlay--covering .cds-aichat--header__left-buttons{\n border-start-start-radius:0.5rem;\n}\n:host .cds-aichat--widget--rounded .cds-aichat--wide-width .cds-aichat--overlay--covering .cds-aichat--header__right-buttons{\n border-start-end-radius:0.5rem;\n}\n:host .cds-aichat--overlay-panel{\n position:absolute;\n display:block;\n box-sizing:border-box;\n border-radius:0;\n margin:0;\n block-size:100%;\n inline-size:100%;\n inset-block-start:0;\n min-block-size:100%;\n text-align:start;\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--overlay-panel{\n inset-inline:unset 0;\n text-align:end;\n}\n:host .cds-aichat--overlay-panel--closed{\n display:none;\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--overlay-panel--opening--fade-in{\n animation:none;\n }\n}\n:host .cds-aichat--overlay-panel--opening--fade-in{\n animation:240ms cubic-bezier(0, 0, 0.3, 1) cds-aichat-fade-in both;\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--overlay-panel--opening--slide-in-from-left{\n animation:none;\n }\n}\n:host .cds-aichat--overlay-panel--opening--slide-in-from-left{\n animation:240ms cubic-bezier(0, 0, 0.3, 1) cds-aichat-slide-in-from-left both;\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--overlay-panel--opening--slide-in-from-right{\n animation:none;\n }\n}\n:host .cds-aichat--overlay-panel--opening--slide-in-from-right{\n animation:240ms cubic-bezier(0, 0, 0.3, 1) cds-aichat-slide-in-from-right both;\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--container--render[dir=rtl] .cds-aichat--overlay-panel--opening--slide-in-from-left{\n animation:none;\n }\n}\n@media screen and (prefers-reduced-motion: no-preference){\n :host .cds-aichat--container--render[dir=rtl] .cds-aichat--overlay-panel--opening--slide-in-from-left{\n animation:240ms cubic-bezier(0, 0, 0.3, 1) cds-aichat-slide-in-from-right both;\n }\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--container--render[dir=rtl] .cds-aichat--overlay-panel--opening--slide-in-from-right{\n animation:none;\n }\n}\n@media screen and (prefers-reduced-motion: no-preference){\n :host .cds-aichat--container--render[dir=rtl] .cds-aichat--overlay-panel--opening--slide-in-from-right{\n animation:240ms cubic-bezier(0, 0, 0.3, 1) cds-aichat-slide-in-from-left both;\n }\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--overlay-panel--opening--slide-in-from-bottom{\n animation:none;\n }\n}\n:host .cds-aichat--overlay-panel--opening--slide-in-from-bottom{\n animation:240ms cubic-bezier(0.4, 0.14, 1, 1) cds-aichat-slide-in-from-bottom both;\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--overlay-panel--closing--fade-out{\n animation:none;\n }\n}\n:host .cds-aichat--overlay-panel--closing--fade-out{\n animation:240ms cubic-bezier(0.4, 0.14, 1, 1) cds-aichat-fade-out both;\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--overlay-panel--closing--slide-out-to-left{\n animation:none;\n }\n}\n:host .cds-aichat--overlay-panel--closing--slide-out-to-left{\n animation:150ms cubic-bezier(0.4, 0.14, 1, 1) cds-aichat-slide-out-to-left both;\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--overlay-panel--closing--slide-out-to-right{\n animation:none;\n }\n}\n:host .cds-aichat--overlay-panel--closing--slide-out-to-right{\n animation:150ms cubic-bezier(0.4, 0.14, 1, 1) cds-aichat-slide-out-to-right both;\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--overlay-panel--closing--slide-out-to-top{\n animation:none;\n }\n}\n:host .cds-aichat--overlay-panel--closing--slide-out-to-top{\n animation:150ms cubic-bezier(0.4, 0.14, 1, 1) cds-aichat-slide-out-to-top both;\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--container--render[dir=rtl] .cds-aichat--overlay-panel--closing--slide-out-to-left{\n animation:none;\n }\n}\n@media screen and (prefers-reduced-motion: no-preference){\n :host .cds-aichat--container--render[dir=rtl] .cds-aichat--overlay-panel--closing--slide-out-to-left{\n animation:150ms cubic-bezier(0.4, 0.14, 1, 1) cds-aichat-slide-out-to-right both;\n }\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--container--render[dir=rtl] .cds-aichat--overlay-panel--closing--slide-out-to-right{\n animation:none;\n }\n}\n@media screen and (prefers-reduced-motion: no-preference){\n :host .cds-aichat--container--render[dir=rtl] .cds-aichat--overlay-panel--closing--slide-out-to-right{\n animation:150ms cubic-bezier(0.4, 0.14, 1, 1) cds-aichat-slide-out-to-left both;\n }\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--overlay-panel--closing--slide-out-to-bottom{\n animation:none;\n }\n}\n:host .cds-aichat--overlay-panel--closing--slide-out-to-bottom{\n animation:150ms cubic-bezier(0.4, 0.14, 1, 1) cds-aichat-slide-out-to-bottom both;\n}\n:host .cds-aichat--overlay-panel-container:has(.cds-aichat--overlay-panel--with-back-button){\n block-size:calc(100% - var(--cds-aichat--header-height, 0px) + 1px);\n border-start-end-radius:0;\n border-start-start-radius:0;\n inset-block-start:calc(var(--cds-aichat--header-height, 0) - 1px);\n}\n:host .cds-aichat--overlay-panel--with-back-button{\n overflow:hidden;\n border:1px solid var(--cds-border-subtle-00, #e0e0e0);\n background-color:var(--cds-chat-shell-background, #ffffff);\n block-size:100%;\n border-start-end-radius:0;\n border-start-start-radius:0;\n inline-size:100%;\n inset-block-start:0;\n inset-inline-start:50%;\n max-inline-size:var(--cds-aichat-max-width, 100%);\n transform:translateX(-50%);\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-aichat--overlay-panel--with-back-button.cds-aichat--overlay-panel--opening--slide-in-from-bottom{\n animation:none;\n }\n}\n:host .cds-aichat--overlay-panel--with-back-button.cds-aichat--overlay-panel--opening--slide-in-from-bottom{\n animation:240ms cubic-bezier(0.4, 0.14, 1, 1) cds-aichat-slide-in-from-bottom-below-header both;\n}\n@keyframes cds-aichat-slide-in-from-bottom-below-header{\n from{\n inset-block-start:100%;\n }\n to{\n inset-block-start:0;\n }\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}\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--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 .cds-aichat--container--render{\n box-sizing:border-box;\n block-size:100%;\n color:var(--cds-text-primary, #161616);\n font-family:\"IBM Plex Sans\", \"Helvetica Neue\", arial, sans-serif;\n inline-size:100%;\n}\n:host .cds-aichat--container--render[dir=rtl]{\n direction:rtl;\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 .cds-aichat--widget__region-container{\n block-size:100%;\n inline-size:100%;\n}\n:host .cds-aichat--modal-host{\n position:fixed;\n z-index:calc(var(--cds-aichat-z-index, 99999) + 1);\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 pointer-events:auto;\n}\n:host .cds-aichat--modal-host > *{\n pointer-events:auto;\n}\n:host .cds-aichat--widget{\n position:relative;\n display:flex;\n flex-direction:column;\n block-size:100%;\n box-shadow:var(--cds-aichat-box-shadow, 1px 0 4px hsla(0, 0%, 9%, 0.3));\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 .cds-aichat--header{\n background-color:var(--cds-chat-header-background, #ffffff);\n}\n:host .cds-aichat--ai-theme .cds-aichat--widget{\n border:solid 1px transparent;\n background-color:var(--cds-chat-shell-background, #ffffff);\n background-image:var(--cds-aichat-ai-background-image, linear-gradient(to bottom, var(--cds-chat-shell-background, #ffffff) 0, var(--cds-chat-shell-background, #ffffff) 50%, var(--cds-ai-aura-end, rgba(255, 255, 255, 0)) 50%, var(--cds-ai-aura-start, rgba(69, 137, 255, 0.1)) 100%));\n box-shadow:var(--cds-aichat-ai-box-shadow-outer, 0 4px 10px 2px var(--cds-ai-drop-shadow, rgba(15, 98, 254, 0.1)));\n}\n:host .cds-aichat--frameless .cds-aichat--widget{\n border:none;\n box-shadow:none;\n}\n:host{\n}\n:host .cds-aichat--widget .cds-aichat--widget__animation-container{\n position:relative;\n z-index:1;\n flex:1;\n background:var(--cds-chat-shell-background, #ffffff);\n inline-size:100%;\n}\n:host{\n}\n:host .cds-aichat--assistant-container{\n position:absolute;\n block-size:100%;\n inline-size:100%;\n inset-block-start:0;\n inset-inline-start:0;\n}\n:host{\n}\n:host .cds-aichat--widget.cds-aichat--widget--rounded{\n border-radius:var(--cds-aichat-border-radius, 0px);\n}\n:host .cds-aichat--widget.cds-aichat--widget--rounded .cds-aichat--view-source-panel,\n:host .cds-aichat--widget.cds-aichat--widget--rounded .cds-aichat--home-screen,\n:host .cds-aichat--widget.cds-aichat--widget--rounded .cds-aichat--confirm-modal,\n:host .cds-aichat--widget.cds-aichat--widget--rounded .cds-aichat--widget__animation-container,\n:host .cds-aichat--widget.cds-aichat--widget--rounded .cds-aichat--assistant-container,\n:host .cds-aichat--widget.cds-aichat--widget--rounded .cds-aichat--overlay-panel,\n:host .cds-aichat--widget.cds-aichat--widget--rounded .cds-aichat--overlay-panel-container,\n:host .cds-aichat--widget.cds-aichat--widget--rounded .cds-aichat--hydrating-container{\n border-end-end-radius:max(0px, var(--cds-aichat-border-radius, 0px) - 1px);\n border-end-start-radius:max(0px, var(--cds-aichat-border-radius, 0px) - 1px);\n border-start-end-radius:max(0px, var(--cds-aichat-border-radius, 0px) - 1px);\n border-start-start-radius:max(0px, var(--cds-aichat-border-radius, 0px) - 1px);\n}\n:host .cds-aichat--widget.cds-aichat--widget--rounded{\n}\n:host .cds-aichat--widget.cds-aichat--widget--rounded .cds-aichat--header{\n border-start-end-radius:max(0px, var(--cds-aichat-border-radius, 0px) - 1px);\n border-start-start-radius:max(0px, var(--cds-aichat-border-radius, 0px) - 1px);\n}\n:host .cds-aichat--widget.cds-aichat--widget--rounded{\n}\n:host .cds-aichat--widget.cds-aichat--widget--rounded .cds-aichat--input-container{\n border-end-end-radius:max(0px, var(--cds-aichat-border-radius, 0px) - 1px);\n border-end-start-radius:max(0px, var(--cds-aichat-border-radius, 0px) - 1px);\n}\n:host .cds-aichat--widget.cds-aichat--widget--rounded{\n}\n:host .cds-aichat--widget.cds-aichat--widget--rounded .cds-aichat--overlay-panel.cds-aichat--overlay-panel--with-back-button{\n --cds-aichat-border-radius:0;\n}\n:host{\n}\n:host .cds-aichat--grid .cds-aichat--image,\n:host .cds-aichat--grid .cds-aichat--media-player,\n:host .cds-aichat--grid .cds-aichat--media-player__skeleton,\n:host .cds-aichat--body-message-components__message-wrapper .cds-aichat--image,\n:host .cds-aichat--body-message-components__message-wrapper .cds-aichat--media-player,\n:host .cds-aichat--body-message-components__message-wrapper .cds-aichat--media-player__skeleton{\n border-radius:0;\n}\n:host .cds-aichat--widget.cds-aichat--widget--closed .cds-aichat--widget__animation-container{\n overflow:hidden;\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@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 .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:host .cds-aichat--widget.cds-aichat--widget--default-element.cds-aichat--widget--closed{\n display:none;\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, min(380px, var(--cds-aichat-max-width, 672px)));\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-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 .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, min(380px, var(--cds-aichat-max-width, 672px)));\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 .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 .cds-aichat--widget--rounded .cds-aichat{\n border-radius:max(0px, var(--cds-aichat-border-radius, 0px) - 1px);\n}\n:host .cds-aichat--ai-theme .cds-aichat{\n background-color:var(--cds-chat-shell-background, #ffffff);\n background-image:var(--cds-aichat-ai-background-image, linear-gradient(to bottom, var(--cds-chat-shell-background, #ffffff) 0, var(--cds-chat-shell-background, #ffffff) 50%, var(--cds-ai-aura-end, rgba(255, 255, 255, 0)) 50%, var(--cds-ai-aura-start, rgba(69, 137, 255, 0.1)) 100%));\n box-shadow:var(--cds-aichat-ai-box-shadow-inner, inset 0 -80px 70px -65px var(--cds-ai-inner-shadow, rgba(69, 137, 255, 0.1))), var(--cds-aichat-ai-box-shadow-outer, 0 4px 10px 2px var(--cds-ai-drop-shadow, rgba(15, 98, 254, 0.1)));\n}\n:host .cds-aichat--frameless.cds-aichat--ai-theme .cds-aichat{\n box-shadow:var(--cds-aichat-ai-box-shadow-inner, inset 0 -80px 70px -65px var(--cds-ai-inner-shadow, rgba(69, 137, 255, 0.1)));\n}\n:host .cds-aichat.cds-aichat--human-agent-app{\n min-inline-size:unset;\n}\n:host .cds-aichat--main-window,\n:host .cds-aichat--widget__layer{\n block-size:100%;\n inline-size:100%;\n}\n:host .cds-aichat--widget__focus-trap-glass{\n position:fixed;\n z-index:var(--cds-aichat-z-index, 99999);\n overflow:hidden;\n background:var(--cds-overlay, rgba(22, 22, 22, 0.5));\n block-size:100vh;\n inline-size:100vw;\n inset-block-start:0;\n inset-inline-start:0;\n opacity:0.5;\n}\n:host svg.cds-aichat--icon__logout--reverse{\n transform:scaleX(-1);\n}\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--icon__logout--reverse{\n transform:none;\n}\n:host .cds-aichat--scroll-focus:focus-visible::before{\n position:sticky;\n z-index:1;\n display:block;\n box-sizing:border-box;\n border:solid 2px var(--cds-focus, #0f62fe);\n block-size:100%;\n content:\"\";\n float:inline-start;\n inline-size:100%;\n inset-block-start:0;\n margin-block-start:-100%;\n pointer-events:none;\n}\n:host .cds-aichat--container--render .cds-aichat--reverse-icon svg,\n:host .cds-aichat--container--render[dir=rtl] .cds-aichat--direction-has-reversible-svg svg{\n transform:scaleX(-1);\n}\n:host{\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--panel-content{\n overflow:hidden;\n}\n:host .cds-aichat--widget--max-width{\n --cds-aichat-border-radius:0;\n}\n:host .cds-aichat--widget--max-width .cds-aichat--panel-content{\n flex:1;\n margin:auto;\n block-size:100%;\n inline-size:100%;\n}\n:host{\n}\n:host .cds-aichat--widget--rounded .cds-aichat--body-and-footer-component,\n:host .cds-aichat--widget--rounded .cds-aichat--i-frame-panel,\n:host .cds-aichat--widget--rounded .cds-aichat--view-source-panel,\n:host .cds-aichat--widget--rounded .cds-aichat--custom-panel{\n border-end-end-radius:max(0px, var(--cds-aichat-border-radius, 0px) - 1px);\n border-end-start-radius:max(0px, var(--cds-aichat-border-radius, 0px) - 1px);\n border-start-end-radius:max(0px, var(--cds-aichat-border-radius, 0px) - 1px);\n border-start-start-radius:max(0px, var(--cds-aichat-border-radius, 0px) - 1px);\n}\n:host .cds-aichat--widget--rounded .cds-aichat--panel-content{\n border-end-end-radius:max(0px, var(--cds-aichat-border-radius, 0px) - 1px);\n border-end-start-radius:max(0px, var(--cds-aichat-border-radius, 0px) - 1px);\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 animation:cds-aichat-fade-in 240ms cubic-bezier(0, 0, 0.38, 0.9) forwards;\n}\n:host .cds-aichat--message.cds-aichat--message--no-animation{\n animation:none;\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--with-avatar-line.cds-aichat--message--response.cds-aichat--message--last-message:not(.cds-aichat--with-human-agent){\n min-block-size:calc(100% - 88px);\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: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--carousel:not(.cds-aichat--received--carousel-single),\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__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--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--standard-width .cds-aichat--message__avatar-line + .cds-aichat--message--padding .cds-aichat--assistant-message > div.cds-aichat--received,\n:host .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--standard-width .cds-aichat--message .cds-aichat--received.cds-aichat--received--agent-status-message,\n:host .cds-aichat--wide-width .cds-aichat--message .cds-aichat--received.cds-aichat--received--agent-status-message{\n margin-inline:0;\n}\n:host{\n}\n:host .cds-aichat--wide-width .cds-aichat--message .cds-aichat--received,\n:host .cds-aichat--standard-width .cds-aichat--message .cds-aichat--received,\n:host .cds-aichat--wide-width .cds-aichat--message .cds-aichat--sent-container,\n:host .cds-aichat--standard-width .cds-aichat--message .cds-aichat--sent-container{\n margin-inline:calc(0.5rem + 2rem + 0.5rem) 1rem;\n}\n:host{\n}\n:host .cds-aichat--messages--holder{\n display:flex;\n overflow:hidden;\n flex:1;\n flex-direction:column;\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:relative;\n display:block;\n overflow:hidden;\n padding:0;\n border:none;\n margin:0;\n block-size:0;\n inline-size:0;\n outline:none;\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-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-scrollDownIndicatorIcon{\n position:sticky;\n z-index:1;\n display:grid;\n border-radius:50%;\n margin:0 auto;\n background-color:var(--cds-button-secondary, #393939);\n block-size:2rem;\n color:var(--cds-text-on-color, #ffffff);\n cursor:pointer;\n inline-size:2rem;\n inset-block-end:1rem;\n inset-inline-start:calc(50% - 1rem);\n place-items:center;\n}\n:host .cds-aichat-scrollDownIndicatorIcon:active{\n background-color:var(--cds-button-secondary-active, #6f6f6f);\n}\n:host .cds-aichat-scrollDownIndicatorIcon:hover{\n background-color:var(--cds-button-secondary-hover, #474747);\n}\n:host .cds-aichat-scrollDownIndicatorIcon:focus{\n border-color:var(--cds-focus, #0f62fe);\n box-shadow:inset 0 0 0 1px var(--cds-focus, #0f62fe), inset 0 0 0 2px var(--cds-chat-shell-background, #ffffff);\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-border:#e0e0e0;\n --cds-chat-bubble-user:#e0e0e0;\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-prompt-background:#ffffff;\n --cds-chat-prompt-border-end:rgba(244, 244, 244, 0);\n --cds-chat-prompt-border-start:#f4f4f4;\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(22, 22, 22, 0.5);\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-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-border:#e0e0e0;\n --cds-chat-bubble-user:#e0e0e0;\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-prompt-background:#ffffff;\n --cds-chat-prompt-border-end:rgba(244, 244, 244, 0);\n --cds-chat-prompt-border-start:#f4f4f4;\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(22, 22, 22, 0.5);\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-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-border:#525252;\n --cds-chat-bubble-user:#393939;\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-prompt-background:#161616;\n --cds-chat-prompt-border-end:rgba(38, 38, 38, 0);\n --cds-chat-prompt-border-start:#262626;\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.65);\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-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-border:#525252;\n --cds-chat-bubble-user:#393939;\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-prompt-background:#161616;\n --cds-chat-prompt-border-end:rgba(38, 38, 38, 0);\n --cds-chat-prompt-border-start:#262626;\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.65);\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-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 cds-tile{\n border:1px solid var(--cds-chat-bubble-border, #e0e0e0);\n border-radius:0.5rem;\n background-color:var(--cds-chat-shell-background, #ffffff);\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}";
|
|
17366
17467
|
|
|
17367
17468
|
function detectConfigChanges(previousConfig, newConfig) {
|
|
17368
17469
|
if (!previousConfig) {
|