@carbon/ai-chat 1.1.0 → 1.2.0-rc.1

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.
@@ -1,6 +1,6 @@
1
1
  import isEqual from "lodash-es/isEqual.js";
2
2
 
3
- import React, { useMemo, useRef, useEffect, useContext, useCallback, createElement, PureComponent, useState, useLayoutEffect, forwardRef, useImperativeHandle, Component, Suspense, Fragment } from "react";
3
+ import React, { useMemo, useRef, useEffect, useContext, useCallback, createElement, PureComponent, useState, forwardRef, useImperativeHandle, Component, useLayoutEffect, Suspense, Fragment } from "react";
4
4
 
5
5
  import dayjs from "dayjs";
6
6
 
@@ -553,7 +553,6 @@ function renderAsUserDefinedMessage(messageItem) {
553
553
  case MessageResponseTypes.AUDIO:
554
554
  case MessageResponseTypes.DATE:
555
555
  case MessageResponseTypes.CONVERSATIONAL_SEARCH:
556
- case MessageResponseTypes.TABLE:
557
556
  case MessageResponseTypes.INLINE_ERROR:
558
557
  case MessageResponseTypes.CARD:
559
558
  case MessageResponseTypes.CAROUSEL:
@@ -949,6 +948,8 @@ const SET_STREAM_ID = "SET_STREAM_ID";
949
948
 
950
949
  const UPDATE_THEME_STATE = "UPDATE_THEME_STATE";
951
950
 
951
+ const SET_IS_RESTARTING = "SET_IS_RESTARTING";
952
+
952
953
  const actions = {
953
954
  changeState(partialState) {
954
955
  return {
@@ -1302,6 +1303,12 @@ const actions = {
1302
1303
  currentStreamID: currentStreamID
1303
1304
  };
1304
1305
  },
1306
+ setIsRestarting(isRestarting) {
1307
+ return {
1308
+ type: SET_IS_RESTARTING,
1309
+ isRestarting: isRestarting
1310
+ };
1311
+ },
1305
1312
  updateThemeState(themeState) {
1306
1313
  return {
1307
1314
  type: UPDATE_THEME_STATE,
@@ -1426,7 +1433,7 @@ function agentUpdateIsTyping(isTyping) {
1426
1433
  };
1427
1434
  }
1428
1435
 
1429
- const VERSION = "1.1.0";
1436
+ const VERSION = "1.2.0";
1430
1437
 
1431
1438
  const BOUNCING_ANIMATION_TIMEOUTS = [ 15e3, 6e4 ];
1432
1439
 
@@ -1762,6 +1769,8 @@ class ChatActionsImpl {
1762
1769
  this.hydrating = false;
1763
1770
  this.restarting = false;
1764
1771
  this.alreadyHydrated = false;
1772
+ this.restartGeneration = 0;
1773
+ this.messageGenerations = new Map;
1765
1774
  this.chunkQueue = [];
1766
1775
  this.serviceManager = serviceManager;
1767
1776
  }
@@ -1943,6 +1952,10 @@ class ChatActionsImpl {
1943
1952
  });
1944
1953
  }
1945
1954
  async receiveChunk(chunk, messageID, options = {}) {
1955
+ if (isStreamPartialItem(chunk)) {
1956
+ const extractedMessageID = messageID || "streaming_metadata" in chunk && chunk.streaming_metadata?.response_id;
1957
+ this.serviceManager.messageService.markCurrentMessageAsStreaming(extractedMessageID);
1958
+ }
1946
1959
  const chunkPromise = resolvablePromise();
1947
1960
  this.chunkQueue.push({
1948
1961
  chunk: chunk,
@@ -1962,6 +1975,33 @@ class ChatActionsImpl {
1962
1975
  try {
1963
1976
  const isCompleteItem = isStreamCompleteItem(chunk);
1964
1977
  const isPartialItem = isStreamPartialItem(chunk);
1978
+ const isFinalResponse = isStreamFinalResponse(chunk);
1979
+ if (!messageID) {
1980
+ if ("streaming_metadata" in chunk && chunk.streaming_metadata) {
1981
+ messageID = chunk.streaming_metadata.response_id;
1982
+ } else if (isFinalResponse && chunk.final_response?.id) {
1983
+ messageID = chunk.final_response.id;
1984
+ }
1985
+ }
1986
+ if (messageID) {
1987
+ const messageGeneration = this.messageGenerations.get(messageID);
1988
+ if (messageGeneration !== undefined && messageGeneration !== this.restartGeneration) {
1989
+ debugLog(`[ChunkQueue] Skipping stale chunk (${isCompleteItem ? "complete" : isPartialItem ? "partial" : "final"}) for message ${messageID} from generation ${messageGeneration} (current: ${this.restartGeneration})`, chunk);
1990
+ if ((isCompleteItem || isFinalResponse) && store.getState().assistantInputState.stopStreamingButtonState.isVisible) {
1991
+ store.dispatch(actions.setStopStreamingButtonDisabled(false));
1992
+ store.dispatch(actions.setStopStreamingButtonVisible(false));
1993
+ }
1994
+ this.chunkQueue.shift();
1995
+ chunkPromise.doResolve();
1996
+ if (this.chunkQueue[0]) {
1997
+ this.processChunkQueue();
1998
+ }
1999
+ return;
2000
+ }
2001
+ if (messageGeneration === undefined) {
2002
+ this.messageGenerations.set(messageID, this.restartGeneration);
2003
+ }
2004
+ }
1965
2005
  const isStopGeneratingVisible = store.getState().assistantInputState.stopStreamingButtonState.isVisible;
1966
2006
  if (isPartialItem) {
1967
2007
  const streamingData = chunk.partial_item.streaming_metadata;
@@ -1970,9 +2010,6 @@ class ChatActionsImpl {
1970
2010
  }
1971
2011
  }
1972
2012
  if (isCompleteItem || isPartialItem) {
1973
- if (!messageID) {
1974
- messageID = chunk.streaming_metadata?.response_id;
1975
- }
1976
2013
  if (messageID && !store.getState().allMessagesByID[messageID]) {
1977
2014
  store.dispatch(actions.streamingStart(messageID));
1978
2015
  }
@@ -1990,6 +2027,9 @@ class ChatActionsImpl {
1990
2027
  this.receive(chunk.final_response, options.isLatestWelcomeNode, null, {
1991
2028
  disableFadeAnimation: true
1992
2029
  });
2030
+ if (messageID) {
2031
+ this.serviceManager.messageService.finalizeStreamingMessage(messageID);
2032
+ }
1993
2033
  }
1994
2034
  if ((isCompleteItem || isStreamFinalResponse(chunk)) && store.getState().assistantInputState.stopStreamingButtonState.isVisible) {
1995
2035
  store.dispatch(actions.setStopStreamingButtonDisabled(false));
@@ -2232,6 +2272,8 @@ class ChatActionsImpl {
2232
2272
  try {
2233
2273
  const {serviceManager: serviceManager} = this;
2234
2274
  const {store: store} = serviceManager;
2275
+ this.restartGeneration++;
2276
+ store.dispatch(actions.setIsRestarting(true));
2235
2277
  if (fireEvents) {
2236
2278
  await serviceManager.fire({
2237
2279
  type: BusEventType.PRE_RESTART_CONVERSATION
@@ -2248,7 +2290,11 @@ class ChatActionsImpl {
2248
2290
  await serviceManager.humanAgentService.endChat(true, false, false);
2249
2291
  }
2250
2292
  this.serviceManager.instance.updateInputFieldVisibility(true);
2251
- this.serviceManager.messageService.cancelAllMessageRequests();
2293
+ await this.serviceManager.messageService.cancelAllMessageRequests();
2294
+ if (store.getState().assistantInputState.stopStreamingButtonState.isVisible) {
2295
+ store.dispatch(actions.setStopStreamingButtonDisabled(false));
2296
+ store.dispatch(actions.setStopStreamingButtonVisible(false));
2297
+ }
2252
2298
  store.dispatch(actions.restartConversation());
2253
2299
  if (!skipHydration) {
2254
2300
  this.hydrationPromise = null;
@@ -2271,6 +2317,7 @@ class ChatActionsImpl {
2271
2317
  }
2272
2318
  } finally {
2273
2319
  this.restarting = false;
2320
+ this.serviceManager.store.dispatch(actions.setIsRestarting(false));
2274
2321
  }
2275
2322
  }
2276
2323
  async destroySession(keepOpenState) {
@@ -2749,19 +2796,13 @@ class MessageLoadingManager {
2749
2796
 
2750
2797
  const MS_MAX_ATTEMPT = 150 * 1e3;
2751
2798
 
2752
- const MS_MAX_SILENT_ERROR = 6e3;
2753
-
2754
2799
  const MS_MAX_SILENT_LOADING = 4e3;
2755
2800
 
2756
- var RetryType;
2757
-
2758
- (function(RetryType) {
2759
- RetryType[RetryType["SILENT"] = 1] = "SILENT";
2760
- RetryType[RetryType["VISIBLE"] = 2] = "VISIBLE";
2761
- })(RetryType || (RetryType = {}));
2762
-
2763
2801
  class MessageService {
2764
2802
  constructor(serviceManager, publicConfig) {
2803
+ this.streamingMessageID = null;
2804
+ this.lastProcessedMessageID = null;
2805
+ this.messageAbortControllers = new Map;
2765
2806
  this.pendingLocale = false;
2766
2807
  this.localeIsExplicit = false;
2767
2808
  this.serviceManager = serviceManager;
@@ -2797,7 +2838,10 @@ class MessageService {
2797
2838
  current.sendMessagePromise.doResolve();
2798
2839
  current.isProcessed = true;
2799
2840
  }
2800
- this.moveToNextQueueItem();
2841
+ this.lastProcessedMessageID = current.message.id;
2842
+ if (!current.isStreaming) {
2843
+ this.moveToNextQueueItem();
2844
+ }
2801
2845
  }
2802
2846
  addErrorMessage() {
2803
2847
  const {store: store} = this.serviceManager;
@@ -2805,22 +2849,6 @@ class MessageService {
2805
2849
  const {originalMessage: originalMessage, localMessage: localMessage} = createLocalMessageForInlineError(errorMessage);
2806
2850
  store.dispatch(actions.addLocalMessageItem(localMessage, originalMessage, true));
2807
2851
  }
2808
- sendToAssistantAndUpdateErrorState(current) {
2809
- if (current.isProcessed) {
2810
- return;
2811
- }
2812
- this.sendToAssistant(current);
2813
- const now = Date.now();
2814
- const msSinceStarted = now - current.timeFirstRequest;
2815
- const isSilentErrorWindow = MS_MAX_SILENT_ERROR > msSinceStarted;
2816
- const type = isSilentErrorWindow ? RetryType.SILENT : RetryType.VISIBLE;
2817
- if (type === RetryType.VISIBLE) {
2818
- this.setMessageErrorState(current, MessageErrorState.RETRYING);
2819
- this.queue.waiting.forEach(waitingMessage => {
2820
- this.setMessageErrorState(waitingMessage, MessageErrorState.WAITING);
2821
- });
2822
- }
2823
- }
2824
2852
  async processError(pendingRequest, resultText) {
2825
2853
  const {timeFirstRequest: timeFirstRequest, timeLastRequest: timeLastRequest, isProcessed: isProcessed, trackData: trackData, requestOptions: requestOptions} = pendingRequest;
2826
2854
  if (isProcessed) {
@@ -2876,8 +2904,6 @@ class MessageService {
2876
2904
  const message = cloneDeep(current.message);
2877
2905
  current.message = message;
2878
2906
  store.dispatch(actions.updateMessage(message));
2879
- const controller = new AbortController;
2880
- current.sendMessageController = controller;
2881
2907
  debugLog("Called customSendMessage", message);
2882
2908
  const busEventSend = {
2883
2909
  type: BusEventType.SEND,
@@ -2885,7 +2911,7 @@ class MessageService {
2885
2911
  source: current.source
2886
2912
  };
2887
2913
  await customSendMessage(message, {
2888
- signal: controller.signal,
2914
+ signal: current.sendMessageController.signal,
2889
2915
  silent: current.requestOptions.silent,
2890
2916
  busEventSend: busEventSend
2891
2917
  }, this.serviceManager.instance);
@@ -2952,6 +2978,8 @@ class MessageService {
2952
2978
  }
2953
2979
  }
2954
2980
  addToMessageQueue(message, source, localMessageID, sendMessagePromise, requestOptions = {}) {
2981
+ const controller = new AbortController;
2982
+ this.messageAbortControllers.set(message.id, controller);
2955
2983
  const newPendingMessage = {
2956
2984
  localMessageID: localMessageID,
2957
2985
  message: message,
@@ -2966,7 +2994,8 @@ class MessageService {
2966
2994
  },
2967
2995
  tryCount: 0,
2968
2996
  isProcessed: false,
2969
- source: source
2997
+ source: source,
2998
+ sendMessageController: controller
2970
2999
  };
2971
3000
  this.queue.waiting.push(newPendingMessage);
2972
3001
  if (this.queue.current) {
@@ -3020,18 +3049,51 @@ class MessageService {
3020
3049
  this.runQueueIfReady();
3021
3050
  return sendMessagePromise;
3022
3051
  }
3023
- cancelAllMessageRequests(reason = CancellationReason.CONVERSATION_RESTARTED) {
3052
+ async cancelAllMessageRequests(reason = CancellationReason.CONVERSATION_RESTARTED) {
3024
3053
  while (this.queue.waiting.length) {
3025
- this.cancelMessageRequestByID(this.queue.waiting[0].message.id, false, reason);
3054
+ await this.cancelMessageRequestByID(this.queue.waiting[0].message.id, false, reason);
3026
3055
  }
3027
3056
  if (this.queue.current) {
3028
- this.cancelMessageRequestByID(this.queue.current.message.id, false, reason);
3057
+ await this.cancelMessageRequestByID(this.queue.current.message.id, false, reason);
3029
3058
  this.clearCurrentQueueItem();
3030
3059
  }
3031
3060
  }
3032
- cancelCurrentMessageRequest(reason = CancellationReason.STOP_STREAMING) {
3061
+ markCurrentMessageAsStreaming(messageID) {
3062
+ if (this.queue.current) {
3063
+ this.queue.current.isStreaming = true;
3064
+ this.streamingMessageID = this.queue.current.message.id;
3065
+ if (messageID && messageID !== this.queue.current.message.id) {
3066
+ const controller = this.queue.current.sendMessageController;
3067
+ if (controller) {
3068
+ this.messageAbortControllers.set(messageID, controller);
3069
+ }
3070
+ }
3071
+ } else if (messageID) {
3072
+ this.streamingMessageID = messageID;
3073
+ if (this.lastProcessedMessageID) {
3074
+ const controller = this.messageAbortControllers.get(this.lastProcessedMessageID);
3075
+ if (controller) {
3076
+ this.messageAbortControllers.set(messageID, controller);
3077
+ }
3078
+ }
3079
+ }
3080
+ }
3081
+ finalizeStreamingMessage(messageID) {
3082
+ this.streamingMessageID = null;
3083
+ this.messageAbortControllers.delete(messageID);
3084
+ if (this.queue.current && this.queue.current.message.id === messageID) {
3085
+ this.moveToNextQueueItem();
3086
+ }
3087
+ }
3088
+ async cancelCurrentMessageRequest(reason = CancellationReason.STOP_STREAMING) {
3089
+ if (this.streamingMessageID) {
3090
+ await this.cancelMessageRequestByID(this.streamingMessageID, false, reason);
3091
+ this.streamingMessageID = null;
3092
+ return;
3093
+ }
3033
3094
  if (this.queue.current) {
3034
- this.cancelMessageRequestByID(this.queue.current.message.id, false, reason);
3095
+ await this.cancelMessageRequestByID(this.queue.current.message.id, false, reason);
3096
+ this.clearCurrentQueueItem();
3035
3097
  }
3036
3098
  }
3037
3099
  async cancelMessageRequestByID(messageID, logError, reason = "Message was cancelled") {
@@ -3045,20 +3107,25 @@ class MessageService {
3045
3107
  this.queue.waiting.splice(index, 1);
3046
3108
  }
3047
3109
  }
3048
- if (pendingRequest) {
3049
- const {lastResponse: lastResponse, sendMessageController: sendMessageController} = pendingRequest;
3110
+ const controller = this.messageAbortControllers.get(messageID);
3111
+ if (pendingRequest || controller) {
3112
+ const {lastResponse: lastResponse} = pendingRequest || {};
3113
+ const sendMessageController = controller || pendingRequest?.sendMessageController;
3050
3114
  sendMessageController?.abort(reason);
3051
- if (reason === CancellationReason.TIMEOUT) {
3052
- this.rejectFinalErrorOnMessage(pendingRequest, reason);
3053
- if (logError) {
3054
- this.serviceManager.actions.errorOccurred({
3055
- errorType: OnErrorType.MESSAGE_COMMUNICATION,
3056
- message: reason,
3057
- otherData: await safeFetchTextWithTimeout(lastResponse)
3058
- });
3115
+ this.messageAbortControllers.delete(messageID);
3116
+ if (pendingRequest) {
3117
+ if (reason === CancellationReason.TIMEOUT) {
3118
+ this.rejectFinalErrorOnMessage(pendingRequest, reason);
3119
+ if (logError) {
3120
+ this.serviceManager.actions.errorOccurred({
3121
+ errorType: OnErrorType.MESSAGE_COMMUNICATION,
3122
+ message: reason,
3123
+ otherData: await safeFetchTextWithTimeout(lastResponse)
3124
+ });
3125
+ }
3126
+ } else {
3127
+ this.resolveCancelledMessage(pendingRequest);
3059
3128
  }
3060
- } else {
3061
- this.resolveCancelledMessage(pendingRequest);
3062
3129
  }
3063
3130
  }
3064
3131
  }
@@ -3549,7 +3616,7 @@ var CarbonThemeClassNames;
3549
3616
 
3550
3617
  const CSS_VAR_PREFIX = "--cds-";
3551
3618
 
3552
- const CSS_CHAT_PREFIX = "chat-";
3619
+ const CSS_CHAT_PREFIX = "aichat-";
3553
3620
 
3554
3621
  const HEXADECIMAL_REGEX = /#([a-f0-9]{3}){1,2}\b/i;
3555
3622
 
@@ -3569,7 +3636,7 @@ function convertCSSVariablesToString(customProperties) {
3569
3636
  const allValues = pieces.join("");
3570
3637
  const prefix = "";
3571
3638
  if (allValues.length > 0) {
3572
- const rule = `${prefix}.cds-custom-aichat--container .cds-custom--white, ${prefix}.cds-custom-aichat--container .cds-custom--g10, ${prefix}.cds-custom-aichat--container .cds-custom--g90, ${prefix}.cds-custom-aichat--container .cds-custom--g100`;
3639
+ const rule = `${prefix} .cds-custom-aichat--container--render.cds-custom-aichat--container--render, ${prefix} .cds-custom-aichat--container--render.cds-custom--white, ${prefix} .cds-custom-aichat--container--render.cds-custom--g10, ${prefix} .cds-custom-aichat--container--render.cds-custom--g90, ${prefix} .cds-custom-aichat--container--render.cds-custom--g100`;
3573
3640
  customPropertiesString = `${rule}${`, :host`}{${allValues}}`;
3574
3641
  }
3575
3642
  return customPropertiesString;
@@ -4141,6 +4208,10 @@ const reducers = {
4141
4208
  }
4142
4209
  };
4143
4210
  },
4211
+ [SET_IS_RESTARTING]: (state, action) => ({
4212
+ ...state,
4213
+ isRestarting: action.isRestarting
4214
+ }),
4144
4215
  [SET_VIEW_STATE]: (state, action) => handleViewStateChange(state, action.viewState),
4145
4216
  [SET_VIEW_CHANGING]: (state, action) => ({
4146
4217
  ...state,
@@ -4696,6 +4767,7 @@ function createInitialState(config) {
4696
4767
  notifications: [],
4697
4768
  suspendScrollDetection: false,
4698
4769
  showNonHeaderBackgroundCover: false,
4770
+ isRestarting: false,
4699
4771
  isBrowserPageVisible: true,
4700
4772
  assistantInputState: DEFAULT_INPUT_STATE,
4701
4773
  chatWidthBreakpoint: null,
@@ -5704,7 +5776,7 @@ class HumanAgentServiceImpl {
5704
5776
  if (allowReconnect && this.serviceDesk?.reconnect) {
5705
5777
  try {
5706
5778
  store.dispatch(setIsReconnecting(true));
5707
- setTimeout(this.serviceManager.appWindow.requestFocus);
5779
+ setTimeout(this.serviceManager?.appWindow?.requestFocus);
5708
5780
  didReconnect = await this.serviceDesk.reconnect();
5709
5781
  } catch (error) {
5710
5782
  consoleError(`Error while trying to reconnect to an agent.`, error);
@@ -5715,7 +5787,7 @@ class HumanAgentServiceImpl {
5715
5787
  this.chatStarted = false;
5716
5788
  return;
5717
5789
  }
5718
- setTimeout(this.serviceManager.appWindow.requestFocus);
5790
+ setTimeout(this.serviceManager?.appWindow?.requestFocus);
5719
5791
  if (!didReconnect) {
5720
5792
  this.chatStarted = false;
5721
5793
  const wasSuspended = this.isSuspended();
@@ -6621,16 +6693,15 @@ function ResponseUserAvatar(props) {
6621
6693
  const avatarUrl = responseUserProfile?.profile_picture_url;
6622
6694
  const [hasError, setHasError] = useState(false);
6623
6695
  let component;
6624
- const avatarRef = useRef(null);
6696
+ const setAvatarRef = useCallback(node => {
6697
+ if (node && width && height) {
6698
+ node.style.inlineSize = width;
6699
+ node.style.blockSize = height;
6700
+ }
6701
+ }, [ width, height ]);
6625
6702
  useEffect(() => {
6626
6703
  setHasError(false);
6627
6704
  }, [ avatarUrl ]);
6628
- useLayoutEffect(() => {
6629
- if (avatarRef && width && height) {
6630
- avatarRef.current.style.setProperty("inline-size", width);
6631
- avatarRef.current.style.setProperty("block-size", height);
6632
- }
6633
- }, [ width, height ]);
6634
6705
  if (!hasError && avatarUrl) {
6635
6706
  component = React.createElement("img", {
6636
6707
  src: avatarUrl,
@@ -6641,7 +6712,7 @@ function ResponseUserAvatar(props) {
6641
6712
  component = React.createElement("div", {
6642
6713
  "aria-label": languagePack.agent_ariaResponseUserAvatar,
6643
6714
  className: "cds-custom-aichat--response-user-avatar__circle",
6644
- ref: avatarRef
6715
+ ref: setAvatarRef
6645
6716
  }, React.createElement("div", {
6646
6717
  className: "cds-custom-aichat--response-user-avatar__letter"
6647
6718
  }, agentName.charAt(0)));
@@ -7620,14 +7691,18 @@ function tableTemplate(tableElement) {
7620
7691
  function headersElement() {
7621
7692
  return html`<cds-custom-table-head>
7622
7693
  <cds-custom-table-header-row>
7623
- ${headers.map(header => html`<cds-custom-table-header-cell>${header}</cds-custom-table-header-cell>`)}
7694
+ ${headers.map(header => html`<cds-custom-table-header-cell
7695
+ >${header.template ?? header.text}</cds-custom-table-header-cell
7696
+ >`)}
7624
7697
  </cds-custom-table-header-row>
7625
7698
  </cds-custom-table-head>`;
7626
7699
  }
7627
7700
  function rowsElement() {
7628
7701
  return html`<cds-custom-table-body>
7629
7702
  ${repeat(tableRowsWithIDs, row => row.id, row => html`<cds-custom-table-row id=${row.id}
7630
- >${row.cells.map(cell => html`<cds-custom-table-cell>${cell}</cds-custom-table-cell>`)}</cds-custom-table-row
7703
+ >${row.cells.map(cell => html`<cds-custom-table-cell
7704
+ >${cell.template ?? cell.text}</cds-custom-table-cell
7705
+ >`)}</cds-custom-table-row
7631
7706
  >`)}
7632
7707
  </cds-custom-table-body>`;
7633
7708
  }
@@ -7694,6 +7769,8 @@ const TABLE_COMPONENT_TAG_NAME = "cds-custom-aichat-table";
7694
7769
  let TableElement = class TableElement extends LitElement {
7695
7770
  constructor() {
7696
7771
  super(...arguments);
7772
+ this.headers = [];
7773
+ this.rows = [];
7697
7774
  this._defaultPageSize = 5;
7698
7775
  this._isValid = true;
7699
7776
  this._currentPageNumber = 1;
@@ -7812,7 +7889,7 @@ let TableElement = class TableElement extends LitElement {
7812
7889
  }
7813
7890
  }
7814
7891
  async _handleDownload() {
7815
- const tableArray = [ this.headers, ...this.rows.map(row => row.cells) ];
7892
+ const tableArray = [ this.headers.map(cell => cell.text), ...this.rows.map(row => row.cells.map(cell => cell.text)) ];
7816
7893
  try {
7817
7894
  const {stringify: stringify} = await import("csv-stringify/browser/esm/sync");
7818
7895
  const csvContent = stringify(tableArray);
@@ -7871,11 +7948,13 @@ __decorate([ property({
7871
7948
  }) ], TableElement.prototype, "tableDescription", void 0);
7872
7949
 
7873
7950
  __decorate([ property({
7874
- type: Array
7951
+ type: Array,
7952
+ attribute: false
7875
7953
  }) ], TableElement.prototype, "headers", void 0);
7876
7954
 
7877
7955
  __decorate([ property({
7878
- type: Array
7956
+ type: Array,
7957
+ attribute: false
7879
7958
  }) ], TableElement.prototype, "rows", void 0);
7880
7959
 
7881
7960
  __decorate([ property({
@@ -7941,10 +8020,6 @@ __decorate([ state() ], TableElement.prototype, "_allowFiltering", void 0);
7941
8020
 
7942
8021
  TableElement = __decorate([ carbonElement(TABLE_COMPONENT_TAG_NAME) ], TableElement);
7943
8022
 
7944
- const EMPTY_HEADERS = [];
7945
-
7946
- const EMPTY_TABLE_ROWS = [];
7947
-
7948
8023
  const DEFAULT_PAGINATION_SUPPLEMENTAL_TEXT = ({count: count}) => `${count} items`;
7949
8024
 
7950
8025
  const DEFAULT_PAGINATION_STATUS_TEXT = ({start: start, end: end, count: count}) => `${start}–${end} of ${count} items`;
@@ -7958,7 +8033,7 @@ function extractTableData(tableNode) {
7958
8033
  if (theadChild.token.tag === "tr") {
7959
8034
  for (const thChild of theadChild.children) {
7960
8035
  if (thChild.token.tag === "th") {
7961
- headers.push(extractTextContent(thChild));
8036
+ headers.push(extractCellData(thChild));
7962
8037
  }
7963
8038
  }
7964
8039
  }
@@ -7969,7 +8044,7 @@ function extractTableData(tableNode) {
7969
8044
  const row = [];
7970
8045
  for (const tdChild of tbodyChild.children) {
7971
8046
  if (tdChild.token.tag === "td") {
7972
- row.push(extractTextContent(tdChild));
8047
+ row.push(extractCellData(tdChild));
7973
8048
  }
7974
8049
  }
7975
8050
  rows.push(row);
@@ -7990,6 +8065,9 @@ function extractTextContent(node) {
7990
8065
  if (node.token.type === "code_inline") {
7991
8066
  return node.token.content;
7992
8067
  }
8068
+ if (node.token.type === "softbreak" || node.token.type === "hardbreak") {
8069
+ return "\n";
8070
+ }
7993
8071
  let text = "";
7994
8072
  for (const child of node.children) {
7995
8073
  text += extractTextContent(child);
@@ -7997,6 +8075,26 @@ function extractTextContent(node) {
7997
8075
  return text;
7998
8076
  }
7999
8077
 
8078
+ function extractCellData(node) {
8079
+ const text = extractTextContent(node);
8080
+ const tokens = extractRenderableChildren(node);
8081
+ const hasRichContent = tokens.some(child => child.token.type !== "text");
8082
+ return {
8083
+ text: text,
8084
+ tokens: hasRichContent ? tokens : null
8085
+ };
8086
+ }
8087
+
8088
+ function extractRenderableChildren(node) {
8089
+ if (node.children.length === 1) {
8090
+ const onlyChild = node.children[0];
8091
+ if (onlyChild.token.type === "inline" && onlyChild.children && onlyChild.children.length) {
8092
+ return onlyChild.children;
8093
+ }
8094
+ }
8095
+ return node.children;
8096
+ }
8097
+
8000
8098
  const SELF_CLOSING_HTML_TAGS = new Set([ "area", "base", "br", "col", "embed", "hr", "img", "input", "link", "meta", "param", "source", "track", "wbr" ]);
8001
8099
 
8002
8100
  const INLINE_HTML_ALLOWED_TOKEN_TYPES = new Set([ "html_inline", "text", "softbreak", "hardbreak", "code_inline", "entity", "link_open", "link_close" ]);
@@ -8160,6 +8258,10 @@ const spread = directive(SpreadAttrs);
8160
8258
 
8161
8259
  const EMPTY_ATTRS = {};
8162
8260
 
8261
+ const EMPTY_TABLE_HEADERS = [];
8262
+
8263
+ const EMPTY_TABLE_ROWS = [];
8264
+
8163
8265
  function renderTokenTree(node, options) {
8164
8266
  const {token: token, children: children} = node;
8165
8267
  const {context: context, dark: dark, sanitize: sanitize} = options;
@@ -8281,7 +8383,7 @@ function renderWithStaticTag(tag, token, content, attrs, options, _context, node
8281
8383
  case "ol":
8282
8384
  {
8283
8385
  const nested = token.level > 1;
8284
- return html`<cds-custom-ordered-list ?nested=${nested} ${spread(attrs)}>
8386
+ return html`<cds-custom-ordered-list native ?nested=${nested} ${spread(attrs)}>
8285
8387
  ${content}
8286
8388
  </cds-custom-ordered-list>`;
8287
8389
  }
@@ -8370,16 +8472,31 @@ function renderWithStaticTag(tag, token, content, attrs, options, _context, node
8370
8472
  const hasNodesAfterTable = currentIndex < parentChildren.length - 1;
8371
8473
  isLoading = !hasNodesAfterTable;
8372
8474
  }
8475
+ const renderCellTokens = (tokens, contextOverrides = {}) => html`${repeat$1(tokens, (child, index) => `cell-${index}:${child.token.type}:${child.token.tag}`, (child, index) => renderTokenTree(child, {
8476
+ ...options,
8477
+ context: {
8478
+ ...options.context,
8479
+ ...contextOverrides,
8480
+ parentChildren: tokens,
8481
+ currentIndex: index
8482
+ }
8483
+ }))}`;
8484
+ const createCellContent = (cell, contextOverrides) => ({
8485
+ text: cell.text,
8486
+ template: cell.tokens ? renderCellTokens(cell.tokens, contextOverrides) : null
8487
+ });
8373
8488
  let headers;
8374
8489
  let tableRows;
8375
8490
  if (!isLoading) {
8376
8491
  const extractedData = extractTableData(node);
8377
- headers = extractedData.headers;
8492
+ headers = extractedData.headers.map(cell => createCellContent(cell, {
8493
+ isInThead: true
8494
+ }));
8378
8495
  tableRows = extractedData.rows.map(row => ({
8379
- cells: row
8496
+ cells: row.map(cell => createCellContent(cell))
8380
8497
  }));
8381
8498
  } else {
8382
- headers = EMPTY_HEADERS;
8499
+ headers = EMPTY_TABLE_HEADERS;
8383
8500
  tableRows = EMPTY_TABLE_ROWS;
8384
8501
  }
8385
8502
  const tableAttrs = isLoading ? EMPTY_ATTRS : attrs;
@@ -11496,7 +11613,7 @@ const Dropdown = createComponent({
11496
11613
  tagName: "cds-custom-dropdown",
11497
11614
  elementClass: CarbonDropdownElement,
11498
11615
  events: {
11499
- onBeingSelected: "cds-custom-dropdown-beingselected",
11616
+ onSelected: "cds-custom-dropdown-selected",
11500
11617
  onToggled: "cds-custom-dropdown-toggled"
11501
11618
  },
11502
11619
  react: React
@@ -11528,11 +11645,12 @@ function SelectComponent(props) {
11528
11645
  e.preventDefault();
11529
11646
  }
11530
11647
  };
11531
- const handleBeingSelected = e => {
11648
+ const handleSelected = e => {
11649
+ const label = e.detail.item.textContent;
11532
11650
  const text = e.detail.item.value;
11533
11651
  onChange({
11534
11652
  selectedItem: {
11535
- label: text,
11653
+ label: label,
11536
11654
  value: {
11537
11655
  input: {
11538
11656
  text: text
@@ -11570,11 +11688,11 @@ function SelectComponent(props) {
11570
11688
  disabled: disableUserInputs,
11571
11689
  onToggled: handleToggle,
11572
11690
  onKeyDown: handleKeyDown,
11573
- onBeingSelected: handleBeingSelected
11691
+ onSelected: handleSelected
11574
11692
  }, options.map(option => React.createElement(DropdownItem, {
11575
- value: option.label,
11576
- key: option.label
11577
- }, option.value.input.text)))));
11693
+ value: option.value.input.text,
11694
+ key: option.value.input.text
11695
+ }, option.label)))));
11578
11696
  }
11579
11697
 
11580
11698
  class OptionComponent extends Component {
@@ -11637,66 +11755,6 @@ class OptionComponent extends Component {
11637
11755
  }
11638
11756
  }
11639
11757
 
11640
- const Table = createComponent({
11641
- tagName: TABLE_COMPONENT_TAG_NAME,
11642
- elementClass: TableElement,
11643
- react: React
11644
- });
11645
-
11646
- function TableContainer(props) {
11647
- const {tableItem: tableItem} = props;
11648
- const {title: title, description: description, headers: headers, rows: rows} = tableItem;
11649
- const locale = useSelector(state => state.config.public.locale || "en");
11650
- const languagePack = useLanguagePack();
11651
- const intl = useIntl();
11652
- const isValidTable = useMemo(() => {
11653
- const columnCount = headers.length;
11654
- const isValid = !rows.some(row => row.cells.length !== columnCount);
11655
- if (!isValid) {
11656
- consoleError(`Number of cells in the table header does not match the number of cells in one or more of the table rows. In order to render a table there needs to be the same number of columns in the table header and all of the table rows.`);
11657
- }
11658
- return isValid;
11659
- }, [ rows, headers ]);
11660
- function getTablePaginationSupplementalText({count: count}) {
11661
- return intl.formatMessage({
11662
- id: "table_paginationSupplementalText"
11663
- }, {
11664
- pagesCount: count
11665
- });
11666
- }
11667
- function getTablePaginationStatusText({start: start, end: end, count: count}) {
11668
- return intl.formatMessage({
11669
- id: "table_paginationStatus"
11670
- }, {
11671
- start: start,
11672
- end: end,
11673
- count: count
11674
- });
11675
- }
11676
- if (isValidTable) {
11677
- return React.createElement("div", {
11678
- className: "cds-custom-aichat--table-container"
11679
- }, React.createElement(Suspense, {
11680
- fallback: null
11681
- }, React.createElement(Table, {
11682
- tableTitle: title,
11683
- tableDescription: description,
11684
- headers: headers,
11685
- rows: rows,
11686
- filterPlaceholderText: languagePack.table_filterPlaceholder,
11687
- previousPageText: languagePack.table_previousPage,
11688
- nextPageText: languagePack.table_nextPage,
11689
- itemsPerPageText: languagePack.table_itemsPerPage,
11690
- getPaginationSupplementalText: getTablePaginationSupplementalText,
11691
- getPaginationStatusText: getTablePaginationStatusText,
11692
- locale: locale
11693
- })));
11694
- }
11695
- return React.createElement(InlineError, null);
11696
- }
11697
-
11698
- const TableContainerExport = React.memo(TableContainer);
11699
-
11700
11758
  function StreamingRichText(props) {
11701
11759
  const {text: text, streamingState: streamingState, removeHTML: removeHTML, isStreamingError: isStreamingError, doAutoScroll: doAutoScroll} = props;
11702
11760
  const languagePack = useLanguagePack();
@@ -11733,7 +11791,7 @@ function useUUID() {
11733
11791
  return ref.current;
11734
11792
  }
11735
11793
 
11736
- var css_248z$3 = ":host{\n display:block;\n margin-block-start:1rem;\n}\n\n:host([open]) .cds-custom-aichat--chain-of-thought-content{\n display:block;\n overflow:visible;\n max-block-size:-moz-fit-content;\n max-block-size:fit-content;\n opacity:1;\n}\n:host([open]) .cds-custom-aichat--chain-of-thought-button-chevron svg{\n transform:rotate(-90deg);\n}\n\n.cds-custom-aichat--chain-of-thought-button-chevron{\n display:flex;\n flex-basis:1.5rem;\n}\n@media screen and (prefers-reduced-motion: reduce){\n .cds-custom-aichat--chain-of-thought-button-chevron svg{\n transform:rotate(-270deg);\n transition:none;\n }\n}\n.cds-custom-aichat--chain-of-thought-button-chevron svg{\n transform:rotate(-270deg);\n transition:all 110ms cubic-bezier(0.2, 0, 0.38, 0.9);\n}\n\n.cds-custom-aichat--chain-of-thought-content{\n display:none;\n overflow:hidden;\n max-block-size:0;\n opacity:0;\n transition:all 110ms cubic-bezier(0, 0, 0.38, 0.9) allow-discrete;\n}\n\n.cds-custom-aichat--chain-of-thought-inner-content{\n border:1px solid var(--cds-border-subtle-01, #c6c6c6);\n background-color:var(--cds-layer-01, #f4f4f4);\n margin-block-start:0.5rem;\n}\n\n.cds-custom-aichat--chain-of-thought-item:not(:last-child){\n padding-block-end:0.75rem;\n}\n\n.cds-custom-aichat--chain-of-thought-item cds-custom-aichat-markdown-text:not(:first-child){\n padding-block-start:0.5rem;\n}\n\n.cds-custom-aichat--chain-of-thought-item-label{\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\nbutton.cds-custom-aichat--chain-of-thought-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}\nbutton.cds-custom-aichat--chain-of-thought-button *,\nbutton.cds-custom-aichat--chain-of-thought-button *::before,\nbutton.cds-custom-aichat--chain-of-thought-button *::after{\n box-sizing:inherit;\n}\nbutton.cds-custom-aichat--chain-of-thought-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}\nbutton.cds-custom-aichat--chain-of-thought-button::-moz-focus-inner{\n border:0;\n}\nbutton.cds-custom-aichat--chain-of-thought-button{\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 display:flex;\n align-items:center;\n color:var(--cds-text-primary, #161616);\n}\n\nbutton.cds-custom-aichat--chain-of-thought-button:focus,\nbutton.cds-custom-aichat--chain-of-thought-button:focus-visible{\n outline:2px solid var(--cds-focus, #0f62fe);\n}\n\n.cds-custom-aichat--chain-of-thought-accordion-item-content{\n display:block;\n overflow:visible;\n background:var(--cds-layer-01, #f4f4f4);\n color:var(--cds-text-primary, #161616);\n max-block-size:-moz-fit-content;\n max-block-size:fit-content;\n opacity:1;\n transition:all 110ms cubic-bezier(0, 0, 0.38, 0.9) allow-discrete;\n}\n\n.cds-custom-aichat--chain-of-thought-item{\n padding-block:1rem;\n padding-inline:2rem 1rem;\n}\n\n.cds-custom-aichat--chain-of-thought-accordion-item-content[hidden]{\n display:none;\n overflow:hidden;\n max-block-size:0;\n opacity:0;\n padding-block:0;\n padding-inline:0;\n}\n\n.cds-custom-aichat--chain-of-thought-accordion-item-header-chevron{\n display:flex;\n flex:0 1 2rem;\n justify-content:center;\n color:var(--cds-text-primary, #161616);\n}\n@media screen and (prefers-reduced-motion: reduce){\n .cds-custom-aichat--chain-of-thought-accordion-item-header-chevron svg{\n fill:var(--cds-text-primary, #161616);\n transform:rotate(-270deg);\n transition:none;\n }\n}\n.cds-custom-aichat--chain-of-thought-accordion-item-header-chevron svg{\n fill:var(--cds-text-primary, #161616);\n transform:rotate(-270deg);\n transition:all 110ms cubic-bezier(0.2, 0, 0.38, 0.9);\n}\n\n.cds-custom-aichat--chain-of-thought-accordion-item-header-chevron[data-open] svg{\n transform:rotate(-90deg);\n}\n\n.cds-custom-aichat--chain-of-thought-accordion-item button.cds-custom-aichat--chain-of-thought-accordion-item-header{\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.cds-custom-aichat--chain-of-thought-accordion-item button.cds-custom-aichat--chain-of-thought-accordion-item-header *,\n.cds-custom-aichat--chain-of-thought-accordion-item button.cds-custom-aichat--chain-of-thought-accordion-item-header *::before,\n.cds-custom-aichat--chain-of-thought-accordion-item button.cds-custom-aichat--chain-of-thought-accordion-item-header *::after{\n box-sizing:inherit;\n}\n.cds-custom-aichat--chain-of-thought-accordion-item button.cds-custom-aichat--chain-of-thought-accordion-item-header{\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.cds-custom-aichat--chain-of-thought-accordion-item button.cds-custom-aichat--chain-of-thought-accordion-item-header::-moz-focus-inner{\n border:0;\n}\n.cds-custom-aichat--chain-of-thought-accordion-item button.cds-custom-aichat--chain-of-thought-accordion-item-header{\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 display:flex;\n align-items:center;\n padding:0.5rem 0;\n background:var(--cds-layer-accent-02, #e0e0e0);\n block-size:2rem;\n}\n.cds-custom-aichat--chain-of-thought-accordion-item button.cds-custom-aichat--chain-of-thought-accordion-item-header:focus,\n.cds-custom-aichat--chain-of-thought-accordion-item button.cds-custom-aichat--chain-of-thought-accordion-item-header:focus-visible{\n position:relative;\n z-index:2;\n box-shadow:0 -1px 0 0 var(--cds-focus, #0f62fe), inset 0 1px 0 0 var(--cds-focus, #0f62fe), inset 2px 0 0 0 var(--cds-focus, #0f62fe), 0 1px 0 0 var(--cds-focus, #0f62fe), inset 0 -1px 0 0 var(--cds-focus, #0f62fe), inset -2px 0 0 0 var(--cds-focus, #0f62fe);\n outline:none;\n}\n\n.cds-custom-aichat--chain-of-thought-accordion-item:nth-child(odd) button.cds-custom-aichat--chain-of-thought-accordion-item-header{\n background:var(--cds-layer-02, #ffffff);\n}\n\n.cds-custom-aichat--chain-of-thought-accordion-item-header-title{\n overflow:hidden;\n flex:1 1;\n color:var(--cds-text-primary, #161616);\n margin-inline-end:0.5rem;\n text-overflow:ellipsis;\n white-space:nowrap;\n}\n\n.cds-custom-aichat--chain-of-thought-accordion-item-header-status{\n display:flex;\n flex:0 0 1.5rem;\n align-items:center;\n justify-content:center;\n}\n\n.cds-custom-aichat--chain-of-thought-accordion-item-header-status--failure{\n display:flex;\n align-items:center;\n justify-content:center;\n margin-inline-end:0.5rem;\n}\n.cds-custom-aichat--chain-of-thought-accordion-item-header-status--failure svg{\n fill:var(--cds-support-error, #da1e28);\n}\n\n.cds-custom-aichat--chain-of-thought-accordion-item-header-status--success{\n display:flex;\n align-items:center;\n justify-content:center;\n margin-inline-end:0.5rem;\n}\n.cds-custom-aichat--chain-of-thought-accordion-item-header-status--success svg{\n fill:var(--cds-support-success, #24a148);\n}";
11794
+ var css_248z$3 = ":host{\n display:block;\n margin-block-start:1rem;\n}\n\n:host([open]) .cds-custom-aichat--chain-of-thought-content{\n display:block;\n overflow:visible;\n max-block-size:-moz-fit-content;\n max-block-size:fit-content;\n opacity:1;\n}\n:host([open]) .cds-custom-aichat--chain-of-thought-button-chevron svg{\n transform:rotate(-90deg);\n}\n\n.cds-custom-aichat--chain-of-thought-button-chevron{\n display:flex;\n flex-basis:1.5rem;\n}\n@media screen and (prefers-reduced-motion: reduce){\n .cds-custom-aichat--chain-of-thought-button-chevron svg{\n transform:rotate(-270deg);\n transition:none;\n }\n}\n.cds-custom-aichat--chain-of-thought-button-chevron svg{\n transform:rotate(-270deg);\n transition:all 110ms cubic-bezier(0.2, 0, 0.38, 0.9);\n}\n\n.cds-custom-aichat--chain-of-thought-content{\n display:none;\n overflow:hidden;\n max-block-size:0;\n opacity:0;\n transition:all 110ms cubic-bezier(0, 0, 0.38, 0.9) allow-discrete;\n}\n\n.cds-custom-aichat--chain-of-thought-inner-content{\n border:1px solid var(--cds-border-subtle-01, #c6c6c6);\n background-color:var(--cds-layer-01, #f4f4f4);\n margin-block-start:0.5rem;\n}\n\n.cds-custom-aichat--chain-of-thought-item:not(:last-child){\n padding-block-end:0.75rem;\n}\n\n.cds-custom-aichat--chain-of-thought-item cds-custom-aichat-markdown-text:not(:first-child){\n padding-block-start:0.5rem;\n}\n\n.cds-custom-aichat--chain-of-thought-item-label{\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\nbutton.cds-custom-aichat--chain-of-thought-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}\nbutton.cds-custom-aichat--chain-of-thought-button *,\nbutton.cds-custom-aichat--chain-of-thought-button *::before,\nbutton.cds-custom-aichat--chain-of-thought-button *::after{\n box-sizing:inherit;\n}\nbutton.cds-custom-aichat--chain-of-thought-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}\nbutton.cds-custom-aichat--chain-of-thought-button::-moz-focus-inner{\n border:0;\n}\nbutton.cds-custom-aichat--chain-of-thought-button{\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 display:flex;\n align-items:center;\n color:var(--cds-text-primary, #161616);\n}\n\nbutton.cds-custom-aichat--chain-of-thought-button:focus,\nbutton.cds-custom-aichat--chain-of-thought-button:focus-visible{\n outline:2px solid var(--cds-focus, #0f62fe);\n}\n\n.cds-custom-aichat--chain-of-thought-accordion-item-content{\n display:block;\n overflow:visible;\n background:var(--cds-layer-01, #f4f4f4);\n color:var(--cds-text-primary, #161616);\n max-block-size:-moz-fit-content;\n max-block-size:fit-content;\n opacity:1;\n transition:all 110ms cubic-bezier(0, 0, 0.38, 0.9) allow-discrete;\n}\n\n.cds-custom-aichat--chain-of-thought-item{\n padding-block:1rem;\n padding-inline:2rem 1rem;\n}\n\n.cds-custom-aichat--chain-of-thought-accordion-item-content[hidden]{\n display:none;\n overflow:hidden;\n max-block-size:0;\n opacity:0;\n padding-block:0;\n padding-inline:0;\n}\n\n.cds-custom-aichat--chain-of-thought-accordion-item-header-chevron{\n display:flex;\n flex:0 1 2rem;\n justify-content:center;\n color:var(--cds-text-primary, #161616);\n}\n@media screen and (prefers-reduced-motion: reduce){\n .cds-custom-aichat--chain-of-thought-accordion-item-header-chevron svg{\n fill:var(--cds-text-primary, #161616);\n transform:rotate(-270deg);\n transition:none;\n }\n}\n.cds-custom-aichat--chain-of-thought-accordion-item-header-chevron svg{\n fill:var(--cds-text-primary, #161616);\n transform:rotate(-270deg);\n transition:all 110ms cubic-bezier(0.2, 0, 0.38, 0.9);\n}\n\n.cds-custom-aichat--chain-of-thought-accordion-item-header-chevron[data-open] svg{\n transform:rotate(-90deg);\n}\n\n.cds-custom-aichat--chain-of-thought-accordion-item-header-chevron[data-disabled] svg{\n visibility:hidden;\n}\n\n.cds-custom-aichat--chain-of-thought-accordion-item button.cds-custom-aichat--chain-of-thought-accordion-item-header{\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.cds-custom-aichat--chain-of-thought-accordion-item button.cds-custom-aichat--chain-of-thought-accordion-item-header *,\n.cds-custom-aichat--chain-of-thought-accordion-item button.cds-custom-aichat--chain-of-thought-accordion-item-header *::before,\n.cds-custom-aichat--chain-of-thought-accordion-item button.cds-custom-aichat--chain-of-thought-accordion-item-header *::after{\n box-sizing:inherit;\n}\n.cds-custom-aichat--chain-of-thought-accordion-item button.cds-custom-aichat--chain-of-thought-accordion-item-header{\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.cds-custom-aichat--chain-of-thought-accordion-item button.cds-custom-aichat--chain-of-thought-accordion-item-header::-moz-focus-inner{\n border:0;\n}\n.cds-custom-aichat--chain-of-thought-accordion-item button.cds-custom-aichat--chain-of-thought-accordion-item-header{\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 display:flex;\n align-items:center;\n padding:0.5rem 0;\n background:var(--cds-layer-accent-02, #e0e0e0);\n block-size:2rem;\n}\n.cds-custom-aichat--chain-of-thought-accordion-item button.cds-custom-aichat--chain-of-thought-accordion-item-header[disabled]{\n cursor:default;\n}\n.cds-custom-aichat--chain-of-thought-accordion-item button.cds-custom-aichat--chain-of-thought-accordion-item-header:focus,\n.cds-custom-aichat--chain-of-thought-accordion-item button.cds-custom-aichat--chain-of-thought-accordion-item-header:focus-visible{\n position:relative;\n z-index:2;\n box-shadow:0 -1px 0 0 var(--cds-focus, #0f62fe), inset 0 1px 0 0 var(--cds-focus, #0f62fe), inset 2px 0 0 0 var(--cds-focus, #0f62fe), 0 1px 0 0 var(--cds-focus, #0f62fe), inset 0 -1px 0 0 var(--cds-focus, #0f62fe), inset -2px 0 0 0 var(--cds-focus, #0f62fe);\n outline:none;\n}\n\n.cds-custom-aichat--chain-of-thought-accordion-item:nth-child(odd) button.cds-custom-aichat--chain-of-thought-accordion-item-header{\n background:var(--cds-layer-02, #ffffff);\n}\n\n.cds-custom-aichat--chain-of-thought-accordion-item-header-title{\n overflow:hidden;\n flex:1 1;\n color:var(--cds-text-primary, #161616);\n margin-inline-end:0.5rem;\n text-overflow:ellipsis;\n white-space:nowrap;\n}\n\n.cds-custom-aichat--chain-of-thought-accordion-item-header-status{\n display:flex;\n flex:0 0 1.5rem;\n align-items:center;\n justify-content:center;\n}\n\n.cds-custom-aichat--chain-of-thought-accordion-item-header-status--failure{\n display:flex;\n align-items:center;\n justify-content:center;\n margin-inline-end:0.5rem;\n}\n.cds-custom-aichat--chain-of-thought-accordion-item-header-status--failure svg{\n fill:var(--cds-support-error, #da1e28);\n}\n\n.cds-custom-aichat--chain-of-thought-accordion-item-header-status--success{\n display:flex;\n align-items:center;\n justify-content:center;\n margin-inline-end:0.5rem;\n}\n.cds-custom-aichat--chain-of-thought-accordion-item-header-status--success svg{\n fill:var(--cds-support-success, #24a148);\n}";
11737
11795
 
11738
11796
  const stepTitleFormatter = createEnglishFormat("chainOfThought_stepTitle");
11739
11797
 
@@ -11924,6 +11982,7 @@ function accordionContent(customElementClass) {
11924
11982
  return html`${_steps.map((item, index) => {
11925
11983
  const stepNumber = index + 1;
11926
11984
  const content_id = `${_chainOfThoughtPanelID}-step-${stepNumber}-content`;
11985
+ const disabled = !item.description && !item.request && !item.response;
11927
11986
  return html`<div class="${prefix}--chain-of-thought-accordion-item">
11928
11987
  <button
11929
11988
  class="${prefix}--chain-of-thought-accordion-item-header"
@@ -11935,9 +11994,11 @@ function accordionContent(customElementClass) {
11935
11994
  }}
11936
11995
  aria-expanded=${item.open}
11937
11996
  aria-controls=${content_id}
11997
+ ?disabled=${disabled}
11938
11998
  >
11939
11999
  <span
11940
12000
  class="${prefix}--chain-of-thought-accordion-item-header-chevron"
12001
+ ?data-disabled=${disabled}
11941
12002
  ?data-open=${item.open}
11942
12003
  >${iconLoader(ChevronRight16)}</span
11943
12004
  >
@@ -12105,9 +12166,6 @@ function MessageTypeComponent(props) {
12105
12166
  case MessageResponseTypes.CONVERSATIONAL_SEARCH:
12106
12167
  return renderConversationalSearchMessage(localMessageItem, message);
12107
12168
 
12108
- case MessageResponseTypes.TABLE:
12109
- return renderTable(localMessageItem);
12110
-
12111
12169
  case MessageResponseTypes.CARD:
12112
12170
  return renderCard(localMessageItem, message);
12113
12171
 
@@ -12287,11 +12345,6 @@ function MessageTypeComponent(props) {
12287
12345
  })
12288
12346
  });
12289
12347
  }
12290
- function renderTable(message) {
12291
- return React.createElement(TableContainerExport, {
12292
- tableItem: message.item
12293
- });
12294
- }
12295
12348
  function scrollChainOfThought(open, element) {
12296
12349
  if (open) {
12297
12350
  setTimeout(() => {
@@ -12756,7 +12809,7 @@ class MessageComponent extends PureComponent {
12756
12809
  messageState = this.renderMessageState(message);
12757
12810
  }
12758
12811
  return React.createElement("div", {
12759
- id: `cds-custom-aichat--message-${messagesIndex}${serviceManager.namespace.suffix}`,
12812
+ "data-testid": `message-by-index-${messagesIndex}${serviceManager.namespace.suffix}`,
12760
12813
  className: cx(`cds-custom-aichat--message cds-custom-aichat--message-${messagesIndex}`, className, agentMessageType && "cds-custom-aichat--message--agent-message", {
12761
12814
  "cds-custom-aichat--message--with-avatar-line": showAvatarLine,
12762
12815
  "cds-custom-aichat--with-human-agent": this.isAgent,
@@ -13298,14 +13351,12 @@ class MessagesComponent extends PureComponent {
13298
13351
  });
13299
13352
  }
13300
13353
  return React.createElement("div", {
13301
- id: `cds-custom-aichat--messages--holder${serviceManager.namespace.suffix}`,
13302
13354
  className: "cds-custom-aichat--messages--holder"
13303
13355
  }, this.renderHumanAgentBanner(), React.createElement("div", {
13304
13356
  className: cx("cds-custom-aichat--messages__wrapper", {
13305
13357
  "cds-custom-aichat--messages__wrapper--scroll-handle-has-focus": scrollHandleHasFocus
13306
13358
  })
13307
13359
  }, React.createElement("div", {
13308
- id: `cds-custom-aichat--messages${serviceManager.namespace.suffix}`,
13309
13360
  className: "cds-custom-aichat--messages",
13310
13361
  ref: this.messagesContainerWithScrollingRef,
13311
13362
  onScroll: () => {
@@ -13635,6 +13686,7 @@ function Header(props, ref) {
13635
13686
  const serviceManager = useServiceManager();
13636
13687
  const languagePack = useLanguagePack();
13637
13688
  const publicConfig = useSelector(state => state.config.public);
13689
+ const isRestarting = useSelector(state => state.isRestarting);
13638
13690
  const isRTL = document.dir === "rtl";
13639
13691
  const chatHeaderConfig = publicConfig.header;
13640
13692
  const isHidden = useContext(HideComponentContext);
@@ -13704,7 +13756,7 @@ function Header(props, ref) {
13704
13756
  doFocusRef(backButtonRef, false, true);
13705
13757
  return true;
13706
13758
  }
13707
- if (restartButtonRef.current) {
13759
+ if (restartButtonRef.current && !isRestarting) {
13708
13760
  doFocusRef(restartButtonRef, false, true);
13709
13761
  return true;
13710
13762
  }
@@ -13764,7 +13816,9 @@ function Header(props, ref) {
13764
13816
  alignment: isRTL ? POPOVER_ALIGNMENT.BOTTOM_LEFT : POPOVER_ALIGNMENT.BOTTOM_RIGHT
13765
13817
  }, React.createElement("div", {
13766
13818
  slot: "body-text"
13767
- }, React.createElement("h4", {
13819
+ }, languagePack.ai_slug_label && React.createElement("p", {
13820
+ className: "cds-custom-aichat--header__slug-label"
13821
+ }, languagePack.ai_slug_label), languagePack.ai_slug_title && React.createElement("h4", {
13768
13822
  className: "cds-custom-aichat--header__slug-title"
13769
13823
  }, languagePack.ai_slug_title), React.createElement("div", {
13770
13824
  className: "cds-custom-aichat--header__slug-description"
@@ -13776,6 +13830,7 @@ function Header(props, ref) {
13776
13830
  label: languagePack.buttons_restart,
13777
13831
  onClick: onClickRestart,
13778
13832
  buttonRef: restartButtonRef,
13833
+ disabled: isRestarting,
13779
13834
  tooltipPosition: isRTL ? BUTTON_TOOLTIP_POSITION.RIGHT : BUTTON_TOOLTIP_POSITION.LEFT
13780
13835
  }, React.createElement(Restart$1, {
13781
13836
  "aria-label": languagePack.buttons_restart,
@@ -13795,7 +13850,7 @@ function Header(props, ref) {
13795
13850
  }, closeIcon))));
13796
13851
  }
13797
13852
 
13798
- function HeaderButton({onClick: onClick, buttonRef: buttonRef, className: className, children: children, buttonKind: buttonKind, isReversible: isReversible = true, tooltipPosition: tooltipPosition, testId: testId}) {
13853
+ function HeaderButton({onClick: onClick, buttonRef: buttonRef, className: className, children: children, buttonKind: buttonKind, isReversible: isReversible = true, tooltipPosition: tooltipPosition, testId: testId, disabled: disabled = false}) {
13799
13854
  const buttonKindVal = buttonKind || BUTTON_KIND.GHOST;
13800
13855
  return React.createElement(Button, {
13801
13856
  ref: buttonRef,
@@ -13806,7 +13861,8 @@ function HeaderButton({onClick: onClick, buttonRef: buttonRef, className: classN
13806
13861
  size: BUTTON_SIZE.MEDIUM,
13807
13862
  kind: buttonKindVal,
13808
13863
  tooltipPosition: tooltipPosition,
13809
- "data-testid": testId
13864
+ "data-testid": testId,
13865
+ disabled: disabled
13810
13866
  }, children);
13811
13867
  }
13812
13868
 
@@ -14284,7 +14340,7 @@ function Input(props, ref) {
14284
14340
  await serviceManager.fire({
14285
14341
  type: BusEventType.STOP_STREAMING
14286
14342
  });
14287
- serviceManager.messageService.cancelCurrentMessageRequest();
14343
+ await serviceManager.messageService.cancelCurrentMessageRequest();
14288
14344
  }
14289
14345
  }), React.createElement(Button, {
14290
14346
  className: "cds-custom-aichat--input-container__send-button",
@@ -15774,6 +15830,9 @@ class MainWindow extends Component {
15774
15830
  };
15775
15831
  this.onAcceptDisclaimer = () => {
15776
15832
  this.props.serviceManager.store.dispatch(actions.acceptDisclaimer());
15833
+ this.props.serviceManager.fire({
15834
+ type: BusEventType.DISCLAIMER_ACCEPTED
15835
+ });
15777
15836
  };
15778
15837
  this.onPanelOpenStart = coverBackground => {
15779
15838
  this.setState(prevState => ({
@@ -16116,7 +16175,7 @@ class MainWindow extends Component {
16116
16175
  });
16117
16176
  }
16118
16177
  renderWidget() {
16119
- const {serviceManager: serviceManager, useCustomHostElement: useCustomHostElement, catastrophicErrorType: catastrophicErrorType, config: config, isHydrated: isHydrated, config: {derived: {themeWithDefaults: theme, layout: layout, languagePack: languagePack}}, chatWidthBreakpoint: chatWidthBreakpoint} = this.props;
16178
+ const {useCustomHostElement: useCustomHostElement, catastrophicErrorType: catastrophicErrorType, config: config, isHydrated: isHydrated, config: {derived: {themeWithDefaults: theme, layout: layout, languagePack: languagePack}}, chatWidthBreakpoint: chatWidthBreakpoint} = this.props;
16120
16179
  const {closing: closing, open: open} = this.state;
16121
16180
  const locale = config.public.locale || "en";
16122
16181
  const localeClassName = `cds-custom-aichat--locale-${locale}`;
@@ -16135,7 +16194,6 @@ class MainWindow extends Component {
16135
16194
  }, showGlass && React.createElement("div", {
16136
16195
  className: "cds-custom-aichat--widget__focus-trap-glass"
16137
16196
  }), React.createElement("div", {
16138
- id: `cds-custom-aichat--widget${serviceManager.namespace.suffix}`,
16139
16197
  className: cx(`cds-custom-aichat--widget ${localeClassName}`, {
16140
16198
  "cds-custom-aichat--widget--rounded": theme.corners === CornersType.ROUND,
16141
16199
  "cds-custom-aichat--widget--default-element": !useCustomHostElement,
@@ -17031,7 +17089,7 @@ function AppShell({serviceManager: serviceManager, hostElement: hostElement, sty
17031
17089
  }))))))));
17032
17090
  }
17033
17091
 
17034
- var css_248z = ".cds-custom--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-custom--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-custom--layout-constraint--size__min-xs{\n --cds-layout-size-height-min:var(--cds-layout-size-height-xs, 1.5rem);\n}\n\n.cds-custom--layout-constraint--size__max-xs{\n --cds-layout-size-height-max:var(--cds-layout-size-height-xs, 1.5rem);\n}\n\n.cds-custom--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-custom--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-custom--layout-constraint--size__min-sm{\n --cds-layout-size-height-min:var(--cds-layout-size-height-sm, 2rem);\n}\n\n.cds-custom--layout-constraint--size__max-sm{\n --cds-layout-size-height-max:var(--cds-layout-size-height-sm, 2rem);\n}\n\n.cds-custom--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-custom--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-custom--layout-constraint--size__min-md{\n --cds-layout-size-height-min:var(--cds-layout-size-height-md, 2.5rem);\n}\n\n.cds-custom--layout-constraint--size__max-md{\n --cds-layout-size-height-max:var(--cds-layout-size-height-md, 2.5rem);\n}\n\n.cds-custom--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-custom--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-custom--layout-constraint--size__min-lg{\n --cds-layout-size-height-min:var(--cds-layout-size-height-lg, 3rem);\n}\n\n.cds-custom--layout-constraint--size__max-lg{\n --cds-layout-size-height-max:var(--cds-layout-size-height-lg, 3rem);\n}\n\n.cds-custom--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-custom--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-custom--layout-constraint--size__min-xl{\n --cds-layout-size-height-min:var(--cds-layout-size-height-xl, 4rem);\n}\n\n.cds-custom--layout-constraint--size__max-xl{\n --cds-layout-size-height-max:var(--cds-layout-size-height-xl, 4rem);\n}\n\n.cds-custom--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-custom--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-custom--layout-constraint--size__min-2xl{\n --cds-layout-size-height-min:var(--cds-layout-size-height-2xl, 5rem);\n}\n\n.cds-custom--layout-constraint--size__max-2xl{\n --cds-layout-size-height-max:var(--cds-layout-size-height-2xl, 5rem);\n}\n\n.cds-custom--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-custom--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-custom--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-custom--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-custom--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-custom--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-custom--layout-constraint--density__min-normal{\n --cds-layout-density-padding-inline-min:var(--cds-layout-density-padding-inline-normal, 1rem);\n}\n\n.cds-custom--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-custom-aichat-fade-in{\n 0%{\n opacity:0;\n }\n 100%{\n opacity:1;\n }\n}\n@keyframes cds-custom-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-custom-aichat-fade-out{\n 0%{\n opacity:1;\n }\n 100%{\n opacity:0;\n }\n}\n@keyframes cds-custom-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-custom-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-custom-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-custom-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-custom-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-custom-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-custom-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-custom-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-custom-aichat-widget-in{\n 0%{\n inset-block-end:0;\n opacity:0;\n }\n 100%{\n inset-block-end:var(--cds-custom-aichat-bottom-position, 3rem);\n opacity:1;\n }\n}\n@keyframes cds-custom-aichat-widget-in-mobile{\n 0%{\n opacity:0;\n }\n 100%{\n opacity:1;\n }\n}\n@keyframes cds-custom-aichat-widget-out{\n 0%{\n opacity:1;\n }\n 100%{\n opacity:0;\n }\n}\n@keyframes cds-custom-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-custom-aichat-launcher-in{\n 0%{\n inset-block-end:calc(var(--cds-custom-aichat-launcher-position-bottom, 3rem) - 1rem);\n opacity:0;\n }\n 100%{\n inset-block-end:var(--cds-custom-aichat-launcher-position-bottom, 3rem);\n opacity:1;\n }\n}\n@keyframes cds-custom-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-custom-aichat-launcher-fade-in-slide-up{\n 0%{\n background:transparent;\n box-shadow:none;\n inset-block-end:calc(2rem + var(--cds-custom-aichat-launcher-default-size, 56px) + var(--cds-custom-aichat-launcher-position-bottom, 3rem) - var(--cds-custom-aichat-launcher-desktop-expanded-height, 320px));\n }\n 30%{\n background:transparent;\n box-shadow:none;\n }\n 100%{\n background:var(--cds-custom-aichat-launcher-expanded-message-color-background, var(--cds-button-primary, #0f62fe));\n box-shadow:var(--cds-custom-aichat-box-shadow, 1px 0 4px hsla(0, 0%, 9%, 0.3));\n inset-block-end:4rem;\n }\n}\n@keyframes cds-custom-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-custom-aichat-launcher-resize-reposition{\n 0%{\n padding:0;\n border-radius:28px;\n block-size:var(--cds-custom-aichat-launcher-default-size, 56px);\n inline-size:var(--cds-custom-aichat-launcher-default-size, 56px);\n inset-block-end:var(--cds-custom-aichat-launcher-position-bottom, 3rem);\n inset-inline-end:var(--cds-custom-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-custom-aichat-launcher-resize-reposition-rtl{\n 0%{\n padding:0;\n border-radius:28px;\n block-size:var(--cds-custom-aichat-launcher-default-size, 56px);\n inline-size:var(--cds-custom-aichat-launcher-default-size, 56px);\n inset-block-end:var(--cds-custom-aichat-launcher-position-bottom, 3rem);\n inset-inline-start:var(--cds-custom-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-custom-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-custom-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-custom-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-custom-aichat-launcher-fade-out-slide-down{\n 0%{\n background:var(--cds-custom-aichat-launcher-expanded-message-color-background, var(--cds-button-primary, #0f62fe));\n box-shadow:var(--cds-custom-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-custom-aichat-launcher-default-size, 56px) + var(--cds-custom-aichat-launcher-position-bottom, 3rem) - var(--cds-custom-aichat-launcher-desktop-expanded-height, 320px));\n }\n}\n@keyframes cds-custom-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-custom-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-custom-aichat-launcher-default-size, 56px);\n inline-size:var(--cds-custom-aichat-launcher-default-size, 56px);\n inset-block-end:var(--cds-custom-aichat-launcher-position-bottom, 3rem);\n inset-inline-end:var(--cds-custom-aichat-launcher-position-right, 2rem);\n }\n}\n@keyframes cds-custom-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-custom-aichat-launcher-default-size, 56px);\n inline-size:var(--cds-custom-aichat-launcher-default-size, 56px);\n inset-block-end:var(--cds-custom-aichat-launcher-position-bottom, 3rem);\n inset-inline-start:var(--cds-custom-aichat-launcher-position-right, 2rem);\n }\n}\n@keyframes cds-custom-aichat-launcher-icon-to-32{\n 0%{\n inline-size:24px;\n }\n 100%{\n inline-size:32px;\n }\n}\n@keyframes cds-custom-aichat-launcher-icon-to-24{\n 0%{\n inline-size:32px;\n }\n 100%{\n inline-size:24px;\n }\n}\n@keyframes cds-custom-aichat-launcher-partially-round{\n 0%{\n border-radius:28px;\n }\n 100%{\n border-radius:14px;\n }\n}\n@keyframes cds-custom-aichat-launcher-completely-round{\n 0%{\n border-radius:14px;\n }\n 100%{\n border-radius:28px;\n }\n}\n@keyframes cds-custom-aichat-launcher-extend{\n 0%{\n inline-size:var(--cds-custom-aichat-launcher-default-size, 56px);\n }\n 100%{\n inline-size:var(--cds-custom-aichat-launcher-extended-width, 280px);\n }\n}\n@keyframes cds-custom-aichat-launcher-reduce{\n 0%{\n inline-size:var(--cds-custom-aichat-launcher-extended-width, 280px);\n }\n 100%{\n inline-size:var(--cds-custom-aichat-launcher-default-size, 56px);\n }\n}\n@keyframes cds-custom-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-custom-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-custom-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-custom-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-custom-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-custom-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-custom-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-custom-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-custom-aichat-widget-in{\n 0%{\n inset-block-end:calc(var(--cds-custom-aichat-bottom-position, 3rem) - 2rem);\n opacity:0;\n }\n 100%{\n inset-block-end:var(--cds-custom-aichat-bottom-position, 3rem);\n opacity:1;\n }\n}\n@keyframes cds-custom-aichat-widget-out{\n 0%{\n opacity:1;\n }\n 100%{\n opacity:0;\n }\n}\n@keyframes cds-custom-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-custom-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-custom-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-custom-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-custom-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-custom-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-custom-aichat--container--render{\n --cds-custom-aichat-max-height:640px;\n --cds-custom-aichat-min-height:max(\n 150px,\n calc(min(256px, 100vh) - var(--cds-custom-aichat-bottom-position))\n );\n --cds-custom-aichat-max-width:672px;\n --cds-custom-aichat-bottom-position:3rem;\n --cds-custom-aichat-right-position:2rem;\n --cds-custom-aichat-top-position:auto;\n --cds-custom-aichat-left-position:auto;\n --cds-custom-aichat-z-index:99999;\n --cds-custom-aichat-border-radius:0;\n --cds-custom-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-custom-aichat-ai-box-shadow-inner:inset 0 -80px 70px -65px var(--cds-ai-inner-shadow, rgba(69, 137, 255, 0.1));\n --cds-custom-aichat-ai-box-shadow-outer:0 4px 10px 2px var(--cds-ai-drop-shadow, rgba(15, 98, 254, 0.1));\n --cds-custom-aichat-card-border-radius:0.5rem;\n --cds-custom-aichat-card-max-width:424px;\n --cds-custom-aichat-box-shadow:1px 0 4px hsl(0deg 0% 9% / 30%);\n --cds-custom-aichat-width:min(380px, var(--cds-custom-aichat-max-width));\n --cds-custom-aichat-height:calc(100vh - (2 * 2rem));\n --cds-custom-aichat-launcher-default-size:56px;\n --cds-custom-aichat-launcher-position-bottom:3rem;\n --cds-custom-aichat-launcher-position-right:2rem;\n --cds-custom-aichat-launcher-extended-width:280px;\n --cds-custom-aichat-launcher-desktop-expanded-height:320px;\n --cds-custom-aichat-launcher-position-bottom-mobile:1rem;\n --cds-custom-aichat-launcher-color-background:var(--cds-button-primary, #0f62fe);\n --cds-custom-aichat-launcher-color-avatar:var(--cds-text-on-color, #ffffff);\n --cds-custom-aichat-launcher-color-background-hover:var(--cds-button-primary-hover, #0050e6);\n --cds-custom-aichat-launcher-color-background-active:var(--cds-button-primary-active, #002d9c);\n --cds-custom-aichat-launcher-color-focus-border:var(--cds-text-on-color, #ffffff);\n --cds-custom-aichat-launcher-mobile-color-text:var(--cds-text-on-color, #ffffff);\n --cds-custom-aichat-launcher-expanded-message-color-text:var(--cds-text-on-color, #ffffff);\n --cds-custom-aichat-launcher-expanded-message-color-background:var(--cds-button-primary, #0f62fe);\n --cds-custom-aichat-launcher-expanded-message-color-background-hover:var(--cds-button-primary-hover, #0050e6);\n --cds-custom-aichat-launcher-expanded-message-color-background-active:var(--cds-button-primary-active, #002d9c);\n --cds-custom-aichat-launcher-expanded-message-color-focus-border:var(--cds-text-on-color, #ffffff);\n --cds-custom-aichat-unread-indicator-color-background:var(--cds-support-error, #da1e28);\n --cds-custom-aichat-unread-indicator-color-text:var(--cds-text-on-color, #ffffff);\n}\n:host .cds-custom-aichat--container--render .cds-custom-aichat--widget--rounded{\n --cds-custom-aichat-border-radius:0.5rem;\n}\n:host .cds-custom-aichat--container--render.cds-custom-aichat---is-phone{\n --cds-custom-aichat-width:calc(100vw - 4px);\n --cds-custom-aichat-height:calc(100vh - 4px);\n --cds-custom-aichat-left-position:2;\n --cds-custom-aichat-top-position:2;\n --cds-custom-aichat-max-height:auto;\n --cds-custom-aichat-min-height:auto;\n --cds-custom-aichat-right-position:auto;\n}\n@supports (height: 100dvh){\n :host .cds-custom-aichat--container--render.cds-custom-aichat---is-phone{\n --cds-custom-aichat-width:calc(100dvw - 4px);\n --cds-custom-aichat-height:calc(100dvh - 4px);\n }\n}\n:host{\n}\n:host .cds-custom--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-custom--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-custom--layout-constraint--size__min-xs{\n --cds-layout-size-height-min:var(--cds-layout-size-height-xs, 1.5rem);\n}\n:host .cds-custom--layout-constraint--size__max-xs{\n --cds-layout-size-height-max:var(--cds-layout-size-height-xs, 1.5rem);\n}\n:host .cds-custom--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-custom--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-custom--layout-constraint--size__min-sm{\n --cds-layout-size-height-min:var(--cds-layout-size-height-sm, 2rem);\n}\n:host .cds-custom--layout-constraint--size__max-sm{\n --cds-layout-size-height-max:var(--cds-layout-size-height-sm, 2rem);\n}\n:host .cds-custom--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-custom--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-custom--layout-constraint--size__min-md{\n --cds-layout-size-height-min:var(--cds-layout-size-height-md, 2.5rem);\n}\n:host .cds-custom--layout-constraint--size__max-md{\n --cds-layout-size-height-max:var(--cds-layout-size-height-md, 2.5rem);\n}\n:host .cds-custom--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-custom--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-custom--layout-constraint--size__min-lg{\n --cds-layout-size-height-min:var(--cds-layout-size-height-lg, 3rem);\n}\n:host .cds-custom--layout-constraint--size__max-lg{\n --cds-layout-size-height-max:var(--cds-layout-size-height-lg, 3rem);\n}\n:host .cds-custom--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-custom--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-custom--layout-constraint--size__min-xl{\n --cds-layout-size-height-min:var(--cds-layout-size-height-xl, 4rem);\n}\n:host .cds-custom--layout-constraint--size__max-xl{\n --cds-layout-size-height-max:var(--cds-layout-size-height-xl, 4rem);\n}\n:host .cds-custom--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-custom--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-custom--layout-constraint--size__min-2xl{\n --cds-layout-size-height-min:var(--cds-layout-size-height-2xl, 5rem);\n}\n:host .cds-custom--layout-constraint--size__max-2xl{\n --cds-layout-size-height-max:var(--cds-layout-size-height-2xl, 5rem);\n}\n:host .cds-custom--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-custom--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-custom--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-custom--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-custom--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-custom--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-custom--layout-constraint--density__min-normal{\n --cds-layout-density-padding-inline-min:var(--cds-layout-density-padding-inline-normal, 1rem);\n}\n:host .cds-custom--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-custom--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-custom--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-custom--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-custom--layer-one.cds-custom--layer__with-background{\n background-color:var(--cds-layer-background);\n}\n:host .cds-custom--layer-two.cds-custom--layer__with-background{\n background-color:var(--cds-layer-background);\n}\n:host .cds-custom--layer-three.cds-custom--layer__with-background{\n background-color:var(--cds-layer-background);\n}\n@keyframes cds-custom--hide-feedback{\n 0%{\n opacity:1;\n visibility:inherit;\n }\n 100%{\n opacity:0;\n visibility:hidden;\n }\n}\n@keyframes cds-custom--show-feedback{\n 0%{\n opacity:0;\n visibility:hidden;\n }\n 100%{\n opacity:1;\n visibility:inherit;\n }\n}\n@keyframes cds-custom--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-custom--assistive-text,\n:host .cds-custom--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-custom--popover-container{\n display:inline-block;\n}\n:host .cds-custom--popover-container:not(.cds-custom--popover--auto-align){\n position:relative;\n}\n:host .cds-custom--popover--high-contrast .cds-custom--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-custom--popover--drop-shadow .cds-custom--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-custom--popover--border .cds-custom--popover > .cds-custom--popover-content{\n outline:1px solid var(--cds-popover-border-color, var(--cds-border-subtle));\n outline-offset:-1px;\n}\n:host .cds-custom--popover--caret{\n --cds-popover-offset:0.625rem;\n}\n:host .cds-custom--popover{\n position:absolute;\n z-index:6000;\n inset:0;\n pointer-events:none;\n}\n:host .cds-custom--popover-content{\n --cds-layout-size-height-sm:2rem;\n}\n:host .cds-custom--popover-content.cds-custom--layout--size-sm, :host .cds-custom--layout--size-sm :where(.cds-custom--popover-content){\n --cds-layout-size-height:var(--cds-layout-size-height-sm);\n}\n:host .cds-custom--popover-content{\n --cds-layout-size-height-md:2.5rem;\n}\n:host .cds-custom--popover-content.cds-custom--layout--size-md, :host .cds-custom--layout--size-md :where(.cds-custom--popover-content){\n --cds-layout-size-height:var(--cds-layout-size-height-md);\n}\n:host .cds-custom--popover-content{\n --cds-layout-size-height-lg:3rem;\n}\n:host .cds-custom--popover-content.cds-custom--layout--size-lg, :host .cds-custom--layout--size-lg :where(.cds-custom--popover-content){\n --cds-layout-size-height:var(--cds-layout-size-height-lg);\n}\n:host .cds-custom--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-custom--popover-content *,\n:host .cds-custom--popover-content *::before,\n:host .cds-custom--popover-content *::after{\n box-sizing:inherit;\n}\n:host .cds-custom--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-custom--popover--open > .cds-custom--popover > .cds-custom--popover-content{\n display:block;\n}\n:host .cds-custom--popover--background-token__background .cds-custom--popover-content{\n background-color:var(--cds-background, #ffffff);\n}\n:host .cds-custom--popover-content::before{\n position:absolute;\n display:none;\n content:\"\";\n}\n:host .cds-custom--popover--open > .cds-custom--popover > .cds-custom--popover-content::before{\n display:block;\n}\n:host .cds-custom--popover-caret,\n:host .cds-custom--popover--auto-align.cds-custom--popover-caret{\n position:absolute;\n z-index:6000;\n display:none;\n will-change:transform;\n}\n:host .cds-custom--popover-caret::after,\n:host .cds-custom--popover--auto-align.cds-custom--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-custom--popover-caret::before,\n:host .cds-custom--popover--auto-align.cds-custom--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-custom--popover--background-token__background .cds-custom--popover-caret::after{\n background-color:var(--cds-background, #ffffff);\n}\n:host .cds-custom--popover--border .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border .cds-custom--popover--auto-align.cds-custom--popover-caret::before{\n display:block;\n}\n:host .cds-custom--popover--caret.cds-custom--popover--open > .cds-custom--popover > .cds-custom--popover-caret{\n display:block;\n}\n:host .cds-custom--popover--auto-align.cds-custom--popover--caret.cds-custom--popover--open > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret{\n display:block;\n}\n:host .cds-custom--popover--tab-tip > .cds-custom--popover > .cds-custom--popover-caret{\n display:none;\n}\n:host .cds-custom--popover--bottom:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--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-custom--popover--bottom:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content{\n transform:translate(50%, calc(100% + var(--cds-popover-offset, 0rem)));\n}\n:host .cds-custom--popover--bottom-left:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content,\n:host .cds-custom--popover--bottom-start:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--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-custom--popover--bottom-left:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content,\n:host [dir=rtl] .cds-custom--popover--bottom-start:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content{\n inset-inline-end:calc(50% - var(--cds-popover-offset, 0rem));\n inset-inline-start:initial;\n}\n:host .cds-custom--popover--bottom-right:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content,\n:host .cds-custom--popover--bottom-end:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--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-custom--popover--bottom-right:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content,\n:host [dir=rtl] .cds-custom--popover--bottom-end:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content{\n inset-inline-start:calc(50% - var(--cds-popover-offset, 0rem));\n}\n:host .cds-custom--popover--bottom > .cds-custom--popover > .cds-custom--popover-content::before,\n:host .cds-custom--popover--bottom-left > .cds-custom--popover > .cds-custom--popover-content::before,\n:host .cds-custom--popover--bottom-start > .cds-custom--popover > .cds-custom--popover-content::before,\n:host .cds-custom--popover--bottom-right > .cds-custom--popover > .cds-custom--popover-content::before,\n:host .cds-custom--popover--bottom-end > .cds-custom--popover > .cds-custom--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-custom--popover--bottom > .cds-custom--popover > .cds-custom--popover-caret,\n:host .cds-custom--popover--bottom-left > .cds-custom--popover > .cds-custom--popover-caret,\n:host .cds-custom--popover--bottom-start > .cds-custom--popover > .cds-custom--popover-caret,\n:host .cds-custom--popover--bottom-right > .cds-custom--popover > .cds-custom--popover-caret,\n:host .cds-custom--popover--bottom-end > .cds-custom--popover > .cds-custom--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-custom--popover--bottom > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--bottom-left > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--bottom-start > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--bottom-right > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--bottom-end > .cds-custom--popover > .cds-custom--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-custom--popover--border.cds-custom--popover--bottom > .cds-custom--popover > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--bottom-left > .cds-custom--popover > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--bottom-start > .cds-custom--popover > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--bottom-right > .cds-custom--popover > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--bottom-end > .cds-custom--popover > .cds-custom--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-custom--popover--border.cds-custom--popover--bottom > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--bottom-left > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--bottom-start > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--bottom-right > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--bottom-end > .cds-custom--popover > .cds-custom--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-custom--popover--bottom > .cds-custom--popover > .cds-custom--popover-caret,\n:host [dir=rtl] .cds-custom--popover--bottom-left > .cds-custom--popover > .cds-custom--popover-caret,\n:host [dir=rtl] .cds-custom--popover--bottom-start > .cds-custom--popover > .cds-custom--popover-caret,\n:host [dir=rtl] .cds-custom--popover--bottom-right > .cds-custom--popover > .cds-custom--popover-caret,\n:host [dir=rtl] .cds-custom--popover--bottom-end > .cds-custom--popover > .cds-custom--popover-caret{\n transform:translate(50%, var(--cds-popover-offset, 0rem));\n}\n:host .cds-custom--popover--bottom.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret,\n:host .cds-custom--popover--bottom-left.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret,\n:host .cds-custom--popover--bottom-start.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret,\n:host .cds-custom--popover--bottom-right.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret,\n:host .cds-custom--popover--bottom-end.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--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-custom--popover--bottom.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--bottom-left.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--bottom-start.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--bottom-right.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--bottom-end.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--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-custom--popover--border.cds-custom--popover--bottom.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--bottom-left.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--bottom-start.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--bottom-right.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--bottom-end.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--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-custom--popover--border.cds-custom--popover--bottom.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--bottom-left.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--bottom-start.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--bottom-right.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--bottom-end.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--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-custom--popover--top:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--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-custom--popover--top:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content{\n transform:translate(50%, calc(-100% - var(--cds-popover-offset, 0rem)));\n}\n:host .cds-custom--popover--top-left:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content,\n:host .cds-custom--popover--top-start:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--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-custom--popover--top-left:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content,\n:host [dir=rtl] .cds-custom--popover--top-start:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content{\n inset-inline-end:calc(50% - var(--cds-popover-offset, 0rem));\n inset-inline-start:initial;\n}\n:host .cds-custom--popover--top-right:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content,\n:host .cds-custom--popover--top-end:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--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-custom--popover--top-right:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content,\n:host [dir=rtl] .cds-custom--popover--top-end:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content{\n inset-inline-start:calc(50% - var(--cds-popover-offset, 0rem));\n}\n:host .cds-custom--popover--top > .cds-custom--popover > .cds-custom--popover-content::before,\n:host .cds-custom--popover--top-left > .cds-custom--popover > .cds-custom--popover-content::before,\n:host .cds-custom--popover--top-start > .cds-custom--popover > .cds-custom--popover-content::before,\n:host .cds-custom--popover--top-right > .cds-custom--popover > .cds-custom--popover-content::before,\n:host .cds-custom--popover--top-end > .cds-custom--popover > .cds-custom--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-custom--popover--top > .cds-custom--popover > .cds-custom--popover-caret,\n:host .cds-custom--popover--top-left > .cds-custom--popover > .cds-custom--popover-caret,\n:host .cds-custom--popover--top-start > .cds-custom--popover > .cds-custom--popover-caret,\n:host .cds-custom--popover--top-right > .cds-custom--popover > .cds-custom--popover-caret,\n:host .cds-custom--popover--top-end > .cds-custom--popover > .cds-custom--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-custom--popover--top > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--top-left > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--top-start > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--top-right > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--top-end > .cds-custom--popover > .cds-custom--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-custom--popover--border.cds-custom--popover--top > .cds-custom--popover > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--top-left > .cds-custom--popover > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--top-start > .cds-custom--popover > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--top-right > .cds-custom--popover > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--top-end > .cds-custom--popover > .cds-custom--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-custom--popover--border.cds-custom--popover--top > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--top-left > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--top-start > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--top-right > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--top-end > .cds-custom--popover > .cds-custom--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-custom--popover--top:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret,\n:host [dir=rtl] .cds-custom--popover--top-left:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret,\n:host [dir=rtl] .cds-custom--popover--top-start:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret,\n:host [dir=rtl] .cds-custom--popover--top-right:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret,\n:host [dir=rtl] .cds-custom--popover--top-end:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret{\n transform:translate(50%, calc(-1 * var(--cds-popover-offset, 0rem)));\n}\n:host .cds-custom--popover--top.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret,\n:host .cds-custom--popover--top-left.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret,\n:host .cds-custom--popover--top-start.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret,\n:host .cds-custom--popover--top-right.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret,\n:host .cds-custom--popover--top-end.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--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-custom--popover--top.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--top-left.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--top-start.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--top-right.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--top-end.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--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-custom--popover--border.cds-custom--popover--top.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--top-left.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--top-start.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--top-right.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--top-end.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--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-custom--popover--border.cds-custom--popover--top.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--top-left.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--top-start.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--top-right.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--top-end.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--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-custom--popover--right:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--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-custom--popover--right-top:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content,\n:host .cds-custom--popover--right-start:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--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-custom--popover--right-bottom:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content,\n:host .cds-custom--popover--right-end:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--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-custom--popover--right:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content,\n:host [dir=rtl] .cds-custom--popover--right-bottom:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content,\n:host [dir=rtl] .cds-custom--popover--right-end:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content,\n:host [dir=rtl] .cds-custom--popover--right-top:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content,\n:host [dir=rtl] .cds-custom--popover--right-start:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content{\n inset-inline-end:100%;\n inset-inline-start:initial;\n}\n:host .cds-custom--popover--right > .cds-custom--popover > .cds-custom--popover-content::before,\n:host .cds-custom--popover--right-top > .cds-custom--popover > .cds-custom--popover-content::before,\n:host .cds-custom--popover--right-start > .cds-custom--popover > .cds-custom--popover-content::before,\n:host .cds-custom--popover--right-bottom > .cds-custom--popover > .cds-custom--popover-content::before,\n:host .cds-custom--popover--right-end > .cds-custom--popover > .cds-custom--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-custom--popover--right:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret,\n:host .cds-custom--popover--right-top:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret,\n:host .cds-custom--popover--right-start:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret,\n:host .cds-custom--popover--right-bottom:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret,\n:host .cds-custom--popover--right-end:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--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-custom--popover--right:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--right-top:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--right-start:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--right-bottom:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--right-end:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--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-custom--popover--right:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret,\n:host [dir=rtl] .cds-custom--popover--right-top:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret,\n:host [dir=rtl] .cds-custom--popover--right-start:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret,\n:host [dir=rtl] .cds-custom--popover--right-bottom:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret,\n:host [dir=rtl] .cds-custom--popover--right-end:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret{\n inset-inline-end:100%;\n inset-inline-start:initial;\n}\n:host .cds-custom--popover--border.cds-custom--popover--right:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--right-top:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--right-start:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--right-bottom:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--right-end:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--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-custom--popover--border.cds-custom--popover--right:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--right-top:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--right-start:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--right-bottom:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--right-end:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after{\n inset-inline-start:1px;\n}\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--right:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--right-top:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--right-start:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--right-bottom:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--right-end:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after{\n inset-inline-start:-1px;\n}\n:host .cds-custom--popover--right.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret,\n:host .cds-custom--popover--right-top.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret,\n:host .cds-custom--popover--right-start.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret,\n:host .cds-custom--popover--right-bottom.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret,\n:host .cds-custom--popover--right-end.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--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-custom--popover--right.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--right-top.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--right-start.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--right-bottom.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--right-end.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--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-custom--popover--border.cds-custom--popover--right.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--right-top.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--right-start.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--right-bottom.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--right-end.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--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-custom--popover--border.cds-custom--popover--right.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--right-top.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--right-start.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--right-bottom.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--right-end.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after{\n inset-inline-start:1px;\n}\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--right.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::before,\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--right-top.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::before,\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--right-start.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::before,\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--right-bottom.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::before,\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--right-end.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::before{\n margin-inline-start:1px;\n}\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--right.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--right-top.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--right-start.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--right-bottom.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--right-end.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after{\n inset-inline-start:0;\n}\n:host .cds-custom--popover--left:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--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-custom--popover--left-top:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content,\n:host .cds-custom--popover--left-start:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--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-custom--popover--left-bottom:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content,\n:host .cds-custom--popover--left-end:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--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-custom--popover--left:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content,\n:host [dir=rtl] .cds-custom--popover--left-bottom:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content,\n:host [dir=rtl] .cds-custom--popover--left-end:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content,\n:host [dir=rtl] .cds-custom--popover--left-top:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content,\n:host [dir=rtl] .cds-custom--popover--left-start:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content{\n inset-inline-end:initial;\n inset-inline-start:100%;\n}\n:host .cds-custom--popover--left > .cds-custom--popover > .cds-custom--popover-content::before,\n:host .cds-custom--popover--left-top > .cds-custom--popover > .cds-custom--popover-content::before,\n:host .cds-custom--popover--left-start > .cds-custom--popover > .cds-custom--popover-content::before,\n:host .cds-custom--popover--left-bottom > .cds-custom--popover > .cds-custom--popover-content::before,\n:host .cds-custom--popover--left-end > .cds-custom--popover > .cds-custom--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-custom--popover--left:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret,\n:host .cds-custom--popover--left-top:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret,\n:host .cds-custom--popover--left-start:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret,\n:host .cds-custom--popover--left-bottom:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret,\n:host .cds-custom--popover--left-end:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--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-custom--popover--left:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--left-top:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--left-start:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--left-bottom:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--left-end:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--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-custom--popover--left:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret,\n:host [dir=rtl] .cds-custom--popover--left-top:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret,\n:host [dir=rtl] .cds-custom--popover--left-start:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret,\n:host [dir=rtl] .cds-custom--popover--left-bottom:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret,\n:host [dir=rtl] .cds-custom--popover--left-end:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret{\n inset-inline-end:initial;\n inset-inline-start:100%;\n}\n:host .cds-custom--popover--border.cds-custom--popover--left:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--left-top:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--left-start:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--left-bottom:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--left-end:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--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-custom--popover--border.cds-custom--popover--left:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--left-top:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--left-start:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--left-bottom:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--left-end:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after{\n inset-inline-start:-1px;\n}\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--left:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--left-top:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--left-start:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--left-bottom:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--left-end:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after{\n inset-inline-start:1px;\n}\n:host .cds-custom--popover--left.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret,\n:host .cds-custom--popover--left-top.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret,\n:host .cds-custom--popover--left-start.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret,\n:host .cds-custom--popover--left-bottom.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret,\n:host .cds-custom--popover--left-end.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--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-custom--popover--left.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--left-top.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--left-start.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--left-bottom.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--left-end.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--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-custom--popover--border.cds-custom--popover--left.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--left-top.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--left-start.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--left-bottom.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--left-end.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--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-custom--popover--border.cds-custom--popover--left.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--left-top.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--left-start.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--left-bottom.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--left-end.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after{\n inset-inline-start:-1px;\n}\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--left.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::before,\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--left-top.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::before,\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--left-start.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::before,\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--left-bottom.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::before,\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--left-end.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::before{\n margin-inline-start:-1px;\n}\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--left.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--left-top.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--left-start.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--left-bottom.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--left-end.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after{\n inset-inline-start:0;\n}\n:host .cds-custom--popover--tab-tip > .cds-custom--popover > .cds-custom--popover-content{\n border-radius:0;\n}\n:host .cds-custom--popover--tab-tip.cds-custom--popover--top-start:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content,\n:host .cds-custom--popover--tab-tip.cds-custom--popover--bottom-start:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content,\n:host [dir=rtl] .cds-custom--popover--tab-tip.cds-custom--popover--top-end:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content,\n:host [dir=rtl] .cds-custom--popover--tab-tip.cds-custom--popover--bottom-end:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content{\n inset-inline-start:0;\n}\n:host .cds-custom--popover--tab-tip.cds-custom--popover--top-end:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content,\n:host .cds-custom--popover--tab-tip.cds-custom--popover--bottom-end:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content,\n:host [dir=rtl] .cds-custom--popover--tab-tip.cds-custom--popover--top-start:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content,\n:host [dir=rtl] .cds-custom--popover--tab-tip.cds-custom--popover--bottom-start:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content{\n inset-inline-end:0;\n inset-inline-start:initial;\n}\n:host .cds-custom--popover--tab-tip .cds-custom--popover{\n will-change:filter;\n}\n:host .cds-custom--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-custom--popover--tab-tip__button *,\n:host .cds-custom--popover--tab-tip__button *::before,\n:host .cds-custom--popover--tab-tip__button *::after{\n box-sizing:inherit;\n}\n:host .cds-custom--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-custom--popover--tab-tip__button::-moz-focus-inner{\n border:0;\n}\n:host .cds-custom--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-custom--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-custom--popover--tab-tip__button:focus{\n outline-style:dotted;\n }\n}\n:host .cds-custom--popover--tab-tip__button:hover{\n background-color:var(--cds-layer-hover);\n}\n:host .cds-custom--popover--tab-tip.cds-custom--popover--open .cds-custom--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-custom--popover--tab-tip.cds-custom--popover--open .cds-custom--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-custom--popover--tab-tip__button svg{\n fill:var(--cds-icon-primary, #161616);\n}\n:host .cds-custom--tooltip{\n --cds-popover-offset:12px;\n}\n:host .cds-custom--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-custom--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-custom--icon-tooltip .cds-custom--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-custom--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-custom--definition-term *,\n:host .cds-custom--definition-term *::before,\n:host .cds-custom--definition-term *::after{\n box-sizing:inherit;\n}\n:host .cds-custom--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-custom--definition-term::-moz-focus-inner{\n border:0;\n}\n:host .cds-custom--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-custom--definition-term:focus{\n outline:1px solid var(--cds-focus, #0f62fe);\n}\n@media screen and (prefers-contrast){\n :host .cds-custom--definition-term:focus{\n outline-style:dotted;\n }\n}\n:host .cds-custom--definition-term:focus{\n border-block-end-color:var(--cds-border-interactive, #0f62fe);\n}\n:host .cds-custom--definition-term:hover{\n border-block-end-color:var(--cds-border-interactive, #0f62fe);\n}\n:host .cds-custom--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-custom--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-custom--btn *,\n:host .cds-custom--btn *::before,\n:host .cds-custom--btn *::after{\n box-sizing:inherit;\n}\n:host .cds-custom--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-custom--btn:disabled, :host .cds-custom--btn:hover:disabled, :host .cds-custom--btn:focus:disabled, :host .cds-custom--btn.cds-custom--btn--disabled, :host .cds-custom--btn.cds-custom--btn--disabled:hover, :host .cds-custom--btn.cds-custom--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-custom--btn .cds-custom--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-custom--btn::-moz-focus-inner{\n padding:0;\n border:0;\n}\n:host .cds-custom--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-custom--btn--primary:hover{\n background-color:var(--cds-button-primary-hover, #0050e6);\n}\n:host .cds-custom--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-custom--btn--primary:active{\n background-color:var(--cds-button-primary-active, #002d9c);\n}\n:host .cds-custom--btn--primary .cds-custom--btn__icon,\n:host .cds-custom--btn--primary .cds-custom--btn__icon path:not([data-icon-path]):not([fill=none]){\n fill:currentColor;\n}\n:host .cds-custom--btn--primary:hover{\n color:var(--cds-text-on-color, #ffffff);\n}\n:host .cds-custom--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-custom--btn--secondary:hover{\n background-color:var(--cds-button-secondary-hover, #474747);\n}\n:host .cds-custom--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-custom--btn--secondary:active{\n background-color:var(--cds-button-secondary-active, #6f6f6f);\n}\n:host .cds-custom--btn--secondary .cds-custom--btn__icon,\n:host .cds-custom--btn--secondary .cds-custom--btn__icon path:not([data-icon-path]):not([fill=none]){\n fill:currentColor;\n}\n:host .cds-custom--btn--secondary:hover, :host .cds-custom--btn--secondary:focus{\n color:var(--cds-text-on-color, #ffffff);\n}\n:host .cds-custom--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-custom--btn--tertiary:hover{\n background-color:var(--cds-button-tertiary-hover, #0050e6);\n}\n:host .cds-custom--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-custom--btn--tertiary:active{\n background-color:var(--cds-button-tertiary-active, #002d9c);\n}\n:host .cds-custom--btn--tertiary .cds-custom--btn__icon,\n:host .cds-custom--btn--tertiary .cds-custom--btn__icon path:not([data-icon-path]):not([fill=none]){\n fill:currentColor;\n}\n:host .cds-custom--btn--tertiary:hover{\n color:var(--cds-text-inverse, #ffffff);\n}\n:host .cds-custom--btn--tertiary:focus{\n background-color:var(--cds-button-tertiary, #0f62fe);\n color:var(--cds-text-inverse, #ffffff);\n}\n:host .cds-custom--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-custom--btn--tertiary:disabled, :host .cds-custom--btn--tertiary:hover:disabled, :host .cds-custom--btn--tertiary:focus:disabled, :host .cds-custom--btn--tertiary.cds-custom--btn--disabled, :host .cds-custom--btn--tertiary.cds-custom--btn--disabled:hover, :host .cds-custom--btn--tertiary.cds-custom--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-custom--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-custom--btn--ghost:hover{\n background-color:var(--cds-background-hover, rgba(141, 141, 141, 0.12));\n}\n:host .cds-custom--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-custom--btn--ghost:active{\n background-color:var(--cds-background-active, rgba(141, 141, 141, 0.5));\n}\n:host .cds-custom--btn--ghost .cds-custom--btn__icon,\n:host .cds-custom--btn--ghost .cds-custom--btn__icon path:not([data-icon-path]):not([fill=none]){\n fill:currentColor;\n}\n:host .cds-custom--btn--ghost{\n padding-inline-end:calc(var(--cds-layout-density-padding-inline-local) - 0.0625rem);\n}\n:host .cds-custom--btn--ghost .cds-custom--btn__icon{\n position:static;\n align-self:center;\n margin-inline-start:0.5rem;\n}\n:host .cds-custom--btn--ghost:hover, :host .cds-custom--btn--ghost:active{\n color:var(--cds-link-primary-hover, #0043ce);\n}\n:host .cds-custom--btn--ghost:active{\n background-color:var(--cds-background-active, rgba(141, 141, 141, 0.5));\n}\n:host .cds-custom--btn--ghost:disabled, :host .cds-custom--btn--ghost:hover:disabled, :host .cds-custom--btn--ghost:focus:disabled, :host .cds-custom--btn--ghost.cds-custom--btn--disabled, :host .cds-custom--btn--ghost.cds-custom--btn--disabled:hover, :host .cds-custom--btn--ghost.cds-custom--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-custom--btn--ghost:not([disabled]) svg{\n fill:var(--cds-icon-primary, #161616);\n}\n:host .cds-custom--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-custom--btn--icon-only > :first-child{\n min-inline-size:1rem;\n}\n:host .cds-custom--btn--icon-only .cds-custom--btn__icon{\n position:static;\n}\n:host .cds-custom--btn--icon-only.cds-custom--btn--ghost .cds-custom--btn__icon, :host .cds-custom--btn--icon-only.cds-custom--btn--danger--ghost .cds-custom--btn__icon{\n margin:0;\n}\n:host .cds-custom--btn--icon-only.cds-custom--btn--danger--ghost{\n padding-inline-end:calc(var(--cds-layout-density-padding-inline-local) - 1rem);\n}\n:host .cds-custom--btn--xs:not(.cds-custom--btn--icon-only){\n padding-block-start:1.5px;\n}\n:host .cds-custom--btn--xs:not(.cds-custom--btn--icon-only) .cds-custom--btn__icon,\n:host .cds-custom--btn--sm:not(.cds-custom--btn--icon-only) .cds-custom--btn__icon,\n:host .cds-custom--btn--md:not(.cds-custom--btn--icon-only) .cds-custom--btn__icon{\n margin-block-start:0;\n}\n:host .cds-custom--btn--icon-only.cds-custom--btn--selected{\n background:var(--cds-background-selected, rgba(141, 141, 141, 0.2));\n}\n:host .cds-custom--btn path[data-icon-path=inner-path]{\n fill:none;\n}\n:host .cds-custom--btn--ghost.cds-custom--btn--icon-only .cds-custom--btn__icon path:not([data-icon-path]):not([fill=none]),\n:host .cds-custom--btn--ghost.cds-custom--btn--icon-only .cds-custom--btn__icon{\n fill:var(--cds-icon-primary, #161616);\n}\n:host .cds-custom--btn--ghost.cds-custom--btn--icon-only[disabled] .cds-custom--btn__icon path:not([data-icon-path]):not([fill=none]),\n:host .cds-custom--btn--ghost.cds-custom--btn--icon-only[disabled] .cds-custom--btn__icon,\n:host .cds-custom--btn.cds-custom--btn--icon-only.cds-custom--btn--ghost[disabled]:hover .cds-custom--btn__icon{\n fill:var(--cds-icon-on-color-disabled, #8d8d8d);\n}\n:host .cds-custom--btn--ghost.cds-custom--btn--icon-only[disabled]{\n cursor:not-allowed;\n}\n:host .cds-custom--icon-tooltip--disabled .cds-custom--tooltip-trigger__wrapper{\n cursor:not-allowed;\n}\n:host .cds-custom--icon-tooltip--disabled .cds-custom--btn--icon-only[disabled]{\n pointer-events:none;\n}\n:host .cds-custom--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-custom--btn--danger:hover{\n background-color:var(--cds-button-danger-hover, #b81921);\n}\n:host .cds-custom--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-custom--btn--danger:active{\n background-color:var(--cds-button-danger-active, #750e13);\n}\n:host .cds-custom--btn--danger .cds-custom--btn__icon,\n:host .cds-custom--btn--danger .cds-custom--btn__icon path:not([data-icon-path]):not([fill=none]){\n fill:currentColor;\n}\n:host .cds-custom--btn--danger:hover{\n color:var(--cds-text-on-color, #ffffff);\n}\n:host .cds-custom--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-custom--btn--danger--tertiary:hover{\n background-color:var(--cds-button-danger-hover, #b81921);\n}\n:host .cds-custom--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-custom--btn--danger--tertiary:active{\n background-color:var(--cds-button-danger-active, #750e13);\n}\n:host .cds-custom--btn--danger--tertiary .cds-custom--btn__icon,\n:host .cds-custom--btn--danger--tertiary .cds-custom--btn__icon path:not([data-icon-path]):not([fill=none]){\n fill:currentColor;\n}\n:host .cds-custom--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-custom--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-custom--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-custom--btn--danger--tertiary:disabled, :host .cds-custom--btn--danger--tertiary:hover:disabled, :host .cds-custom--btn--danger--tertiary:focus:disabled, :host .cds-custom--btn--danger--tertiary.cds-custom--btn--disabled, :host .cds-custom--btn--danger--tertiary.cds-custom--btn--disabled:hover, :host .cds-custom--btn--danger--tertiary.cds-custom--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-custom--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-custom--btn--danger--ghost:hover{\n background-color:var(--cds-button-danger-hover, #b81921);\n}\n:host .cds-custom--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-custom--btn--danger--ghost:active{\n background-color:var(--cds-button-danger-active, #750e13);\n}\n:host .cds-custom--btn--danger--ghost .cds-custom--btn__icon,\n:host .cds-custom--btn--danger--ghost .cds-custom--btn__icon path:not([data-icon-path]):not([fill=none]){\n fill:currentColor;\n}\n:host .cds-custom--btn--danger--ghost{\n padding-inline-end:calc(var(--cds-layout-density-padding-inline-local) - 0.0625rem);\n}\n:host .cds-custom--btn--danger--ghost .cds-custom--btn__icon{\n position:static;\n margin-inline-start:0.5rem;\n}\n:host .cds-custom--btn--danger--ghost:hover, :host .cds-custom--btn--danger--ghost:active{\n color:var(--cds-text-on-color, #ffffff);\n}\n:host .cds-custom--btn--danger--ghost:disabled, :host .cds-custom--btn--danger--ghost:hover:disabled, :host .cds-custom--btn--danger--ghost:focus:disabled, :host .cds-custom--btn--danger--ghost.cds-custom--btn--disabled, :host .cds-custom--btn--danger--ghost.cds-custom--btn--disabled:hover, :host .cds-custom--btn--danger--ghost.cds-custom--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-custom--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-custom--btn--icon-only.cds-custom--btn--expressive{\n padding:12px 13px;\n}\n:host .cds-custom--btn.cds-custom--btn--expressive .cds-custom--btn__icon{\n block-size:1.25rem;\n inline-size:1.25rem;\n}\n:host .cds-custom--btn-set .cds-custom--btn.cds-custom--btn--expressive{\n max-inline-size:20rem;\n}\n:host .cds-custom--btn.cds-custom--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-custom--btn.cds-custom--skeleton:hover, :host .cds-custom--btn.cds-custom--skeleton:focus, :host .cds-custom--btn.cds-custom--skeleton:active{\n border:none;\n cursor:default;\n outline:none;\n}\n:host .cds-custom--btn.cds-custom--skeleton::before{\n position:absolute;\n animation:3000ms ease-in-out cds-custom--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-custom--btn.cds-custom--skeleton::before{\n animation:none;\n }\n}\n@media screen and (-ms-high-contrast: active), (forced-colors: active){\n :host .cds-custom--btn.cds-custom--skeleton{\n background:CanvasText;\n }\n :host .cds-custom--btn.cds-custom--skeleton::before{\n background:Canvas;\n forced-color-adjust:none;\n }\n}\n:host .cds-custom--btn.cds-custom--skeleton{\n inline-size:9.375rem;\n}\n:host .cds-custom--btn-set{\n display:flex;\n}\n:host .cds-custom--btn-set--stacked{\n flex-direction:column;\n}\n:host .cds-custom--btn-set .cds-custom--btn{\n inline-size:100%;\n max-inline-size:12.25rem;\n}\n:host .cds-custom--btn-set .cds-custom--btn:not(:focus){\n box-shadow:-0.0625rem 0 0 0 var(--cds-button-separator, #e0e0e0);\n}\n:host .cds-custom--btn-set .cds-custom--btn:first-of-type:not(:focus){\n box-shadow:inherit;\n}\n:host .cds-custom--btn-set .cds-custom--btn:focus + .cds-custom--btn{\n box-shadow:inherit;\n}\n:host .cds-custom--btn-set--stacked .cds-custom--btn:not(:focus){\n box-shadow:0 -0.0625rem 0 0 var(--cds-button-separator, #e0e0e0);\n}\n:host .cds-custom--btn-set--stacked .cds-custom--btn:first-of-type:not(:focus){\n box-shadow:inherit;\n}\n:host .cds-custom--btn-set .cds-custom--btn.cds-custom--btn--disabled{\n box-shadow:-0.0625rem 0 0 0 var(--cds-icon-on-color-disabled, #8d8d8d);\n}\n:host .cds-custom--btn-set .cds-custom--btn.cds-custom--btn--disabled:first-of-type{\n box-shadow:none;\n}\n:host .cds-custom--btn-set--stacked .cds-custom--btn.cds-custom--btn--disabled{\n box-shadow:0 -0.0625rem 0 0 var(--cds-layer-selected-disabled, #8d8d8d);\n}\n:host .cds-custom--btn-set--stacked .cds-custom--btn.cds-custom--btn--disabled:first-of-type{\n box-shadow:none;\n}\n:host .cds-custom--btn-set .cds-custom--btn.cds-custom--btn--loading{\n border-color:transparent;\n background-color:transparent;\n box-shadow:none;\n}\n:host .cds-custom--btn--sm .cds-custom--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-custom--btn:focus{\n color:Highlight;\n outline:1px solid Highlight;\n }\n}\n:host [dir=rtl] .cds-custom--btn-set .cds-custom--btn:not(:focus){\n box-shadow:0.0625rem 0 0 0 var(--cds-button-separator, #e0e0e0);\n}\n:host .cds-custom-aichat--response-user-avatar img{\n block-size:100%;\n inline-size:100%;\n}\n:host .cds-custom-aichat--response-user-avatar svg{\n fill:currentcolor;\n}\n:host .cds-custom-aichat--response-user-avatar .cds-custom-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-custom-aichat--response-user-avatar .cds-custom-aichat--response-user-avatar__circle .cds-custom-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-custom-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-custom-aichat--human-agent-banner .cds-custom-aichat--response-user-avatar{\n margin:0 0.75rem 0 0;\n block-size:32px;\n inline-size:32px;\n}\n:host .cds-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--human-agent-banner .cds-custom-aichat--response-user-avatar{\n margin:0 0 0 0.75rem;\n}\n:host .cds-custom-aichat--human-agent-banner .cds-custom-aichat--response-user-avatar img{\n border-radius:16px;\n}\n:host .cds-custom-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-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--human-agent-banner__human-agent-info{\n padding:0 0 0 1rem;\n}\n:host .cds-custom-aichat--human-agent-banner__human-agent-line1{\n font-weight:600;\n}\n:host .cds-custom-aichat--human-agent-banner--connected .cds-custom-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-custom-aichat--human-agent-banner__human-agent-line2{\n padding-block-start:0.25rem;\n}\n:host .cds-custom-aichat--human-agent-banner__human-agent-line2,\n:host .cds-custom-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-custom-aichat--agent-banner__stop-sharing-button{\n inline-size:100%;\n max-inline-size:unset;\n}\n:host{\n}\n:host .cds-custom-aichat--custom-panel{\n display:flex;\n flex-direction:column;\n block-size:100%;\n inline-size:100%;\n}\n:host .cds-custom-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-custom-aichat--custom-panel .cds-custom-aichat--panel-content{\n flex:1;\n}\n:host{\n}\n:host .cds-custom-aichat--body-and-footer-component{\n display:flex;\n flex-direction:column;\n block-size:100%;\n}\n:host .cds-custom-aichat--body-and-footer-component .cds-custom-aichat--body-message-components{\n overflow:auto;\n flex:1;\n}\n:host .cds-custom-aichat--body-and-footer-component .cds-custom-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-custom-aichat--widget--max-width .cds-custom-aichat--header__header-bottom-element{\n margin:auto;\n max-inline-size:var(--cds-custom-aichat-max-width, 672px);\n}\n:host .cds-custom-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-custom-aichat--header{\n position:relative;\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-custom-aichat--header--content{\n position:relative;\n display:flex;\n inline-size:100%;\n}\n:host .cds-custom-aichat--widget--max-width .cds-custom-aichat--header--content{\n max-inline-size:var(--cds-custom-aichat-max-width, 672px);\n}\n:host .cds-custom-aichat--header__buttons{\n display:flex;\n align-items:center;\n}\n:host .cds-custom-aichat--header__buttons .cds-custom-aichat--header__slug{\n margin:0.5rem;\n}\n:host .cds-custom-aichat--widget.cds-custom-aichat--widget--rounded .cds-custom-aichat--header--content{\n border-start-end-radius:calc(var(--cds-custom-aichat-border-radius, 0px) - 1px);\n border-start-start-radius:calc(var(--cds-custom-aichat-border-radius, 0px) - 1px);\n}\n:host .cds-custom-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-custom-aichat--header__center-container:first-child{\n margin:0 1rem;\n}\n:host .cds-custom-aichat--header__slug-title{\n padding-block-end:0.75rem;\n}\n:host .cds-custom-aichat--header__overflow-menu{\n max-block-size:488px;\n}\n:host .cds-custom-aichat--header__overflow-menu svg,\n:host .cds-custom-aichat--header__back-button svg,\n:host .cds-custom-aichat--header__restart-button svg,\n:host .cds-custom-aichat--header__close-button svg{\n block-size:16px;\n inline-size:16px;\n}\n:host .cds-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--home-screen-header button.cds-custom-aichat--header__back-button{\n transform:none;\n}\n:host .cds-custom-aichat--header--with-avatar .cds-custom-aichat--header__center-container{\n margin-inline-start:0;\n}\n:host .cds-custom-aichat--header__left-items,\n:host .cds-custom-aichat--chat-header-overflow-menu__host-element,\n:host .cds-custom-aichat--header__title-container{\n max-inline-size:100%;\n}\n:host .cds-custom-aichat--header__left-items :first-child{\n overflow:hidden;\n border-start-start-radius:calc(var(--cds-custom-aichat-border-radius, 0px) - 1px);\n}\n:host .cds-custom-aichat--header__left-items :first-child::part(button){\n border-start-start-radius:calc(var(--cds-custom-aichat-border-radius, 0px) - 1px);\n}\n:host .cds-custom-aichat--header__right-buttons :last-child::part(button){\n border-start-end-radius:calc(var(--cds-custom-aichat-border-radius, 0px) - 1px);\n}\n:host cds-custom-aichat-chat-header-avatar{\n align-self:center;\n margin-inline:0.5rem;\n}\n:host cds-custom-aichat-chat-header-avatar + .cds-custom-aichat--header__separator{\n margin-inline-start:0.5rem;\n}\n:host .cds-custom-aichat--wide-width.cds-custom-aichat--widget--max-width .cds-custom-aichat--header__center-container:first-child{\n margin:0 1rem 0 0;\n}\n:host .cds-custom-aichat--header--with-avatar .cds-custom-aichat--header__center-container:first-child > cds-custom-aichat-chat-header-avatar{\n margin-inline-start:0.75rem;\n}\n:host{\n}\n:host .cds-custom-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-custom-aichat--home-screen--background-ai-theme{\n background-color:var(--cds-chat-shell-background, #ffffff);\n background-image:var(--cds-custom-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-custom-aichat-ai-box-shadow-inner, inset 0 -80px 70px -65px var(--cds-ai-inner-shadow, rgba(69, 137, 255, 0.1))), var(--cds-custom-aichat-ai-box-shadow-outer, 0 4px 10px 2px var(--cds-ai-drop-shadow, rgba(15, 98, 254, 0.1)));\n}\n:host .cds-custom-aichat--home-screen__home-screen-bottom-element{\n position:relative;\n margin:auto;\n inline-size:100%;\n max-inline-size:var(--cds-custom-aichat-max-width, 672px);\n}\n:host{\n}\n:host .cds-custom-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-custom-aichat--home-screen--first-render .cds-custom-aichat--home-screen__content{\n animation:none;\n }\n}\n@media screen and (prefers-reduced-motion: no-preference){\n :host .cds-custom-aichat--home-screen--first-render .cds-custom-aichat--home-screen__content{\n animation:400ms cubic-bezier(0, 0, 0.3, 1) cds-custom-aichat-fade-in 70ms both;\n }\n}\n:host .cds-custom-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-custom-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-custom-aichat--home-screen__body--custom-content{\n flex-grow:1;\n flex-shrink:0;\n min-block-size:90%;\n}\n:host .cds-custom-aichat--home-screen__body--custom-content > *{\n flex-shrink:0;\n}\n:host{\n}\n:host .cds-custom-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-custom-aichat--home-screen.cds-custom-aichat--home-screen--hydration-complete .cds-custom-aichat--home-screen__avatar-holder{\n animation:none;\n }\n}\n@media screen and (prefers-reduced-motion: no-preference){\n :host .cds-custom-aichat--home-screen.cds-custom-aichat--home-screen--hydration-complete .cds-custom-aichat--home-screen__avatar-holder{\n animation:400ms cubic-bezier(0, 0, 0.3, 1) cds-custom-aichat-fade-in 70ms both;\n }\n}\n:host .cds-custom-aichat--home-screen__avatar-holder img{\n border-radius:48px;\n}\n:host .cds-custom-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-custom-aichat--home-screen.cds-custom-aichat--home-screen--hydration-complete .cds-custom-aichat--home-screen__greeting{\n animation:none;\n }\n}\n@media screen and (prefers-reduced-motion: no-preference){\n :host .cds-custom-aichat--home-screen.cds-custom-aichat--home-screen--hydration-complete .cds-custom-aichat--home-screen__greeting{\n animation:400ms cubic-bezier(0, 0, 0.3, 1) cds-custom-aichat-fade-in-up 70ms both;\n }\n}\n:host .cds-custom-aichat--home-screen__starters{\n margin-block-start:2rem;\n}\n:host{\n}\n:host .cds-custom-aichat--home-screen__body--no-custom-content .cds-custom-aichat--home-screen__starters{\n margin-block-end:2rem;\n}\n:host{\n}\n:host .cds-custom-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-custom-aichat--home-screen.cds-custom-aichat--home-screen--hydration-complete cds-custom-chat-button.cds-custom-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-custom-aichat--home-screen.cds-custom-aichat--home-screen--hydration-complete cds-custom-chat-button.cds-custom-aichat--home-screen__starter:last-child{\n margin-block-end:0;\n }\n}\n:host cds-custom-chat-button.cds-custom-aichat--home-screen__starter:nth-child(1){\n --cds-custom-aichat-homescreen-starter-index:1;\n}\n:host cds-custom-chat-button.cds-custom-aichat--home-screen__starter:nth-child(2){\n --cds-custom-aichat-homescreen-starter-index:2;\n}\n:host cds-custom-chat-button.cds-custom-aichat--home-screen__starter:nth-child(3){\n --cds-custom-aichat-homescreen-starter-index:3;\n}\n:host cds-custom-chat-button.cds-custom-aichat--home-screen__starter:nth-child(4){\n --cds-custom-aichat-homescreen-starter-index:4;\n}\n:host cds-custom-chat-button.cds-custom-aichat--home-screen__starter:nth-child(5){\n --cds-custom-aichat-homescreen-starter-index:5;\n}\n@media screen and (prefers-reduced-motion: no-preference){\n :host .cds-custom-aichat--home-screen.cds-custom-aichat--home-screen--hydration-complete cds-custom-chat-button.cds-custom-aichat--home-screen__starter{\n display:block;\n animation:400ms cubic-bezier(0, 0, 0.3, 1) cds-custom-aichat-fade-in-up calc(var(--cds-custom-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-custom-aichat--home-screen.cds-custom-aichat--home-screen--hydration-complete cds-custom-chat-button.cds-custom-aichat--home-screen__starter:last-child{\n margin-block-end:0;\n }\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-custom-aichat--home-screen.cds-custom-aichat--home-screen--hydration-complete .cds-custom-aichat--home-screen__starters--animate-group cds-custom-chat-button.cds-custom-aichat--home-screen__starter{\n animation:none;\n }\n}\n@media screen and (prefers-reduced-motion: no-preference){\n :host .cds-custom-aichat--home-screen.cds-custom-aichat--home-screen--hydration-complete .cds-custom-aichat--home-screen__starters--animate-group cds-custom-chat-button.cds-custom-aichat--home-screen__starter{\n animation:400ms cubic-bezier(0, 0, 0.3, 1) cds-custom-aichat-fade-in-up 120ms both;\n }\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-custom-aichat--home-screen.cds-custom-aichat--home-screen--hydration-complete .cds-custom-aichat--home-screen__custom-content--animation{\n animation:none;\n }\n}\n@media screen and (prefers-reduced-motion: no-preference){\n :host .cds-custom-aichat--home-screen.cds-custom-aichat--home-screen--hydration-complete .cds-custom-aichat--home-screen__custom-content--animation{\n animation:400ms cubic-bezier(0, 0, 0.3, 1) cds-custom-aichat-fade-in-up 330ms both;\n }\n}\n:host .cds-custom-aichat--home-screen__back-button{\n position:absolute;\n inset-inline-start:50%;\n transform:translate(-50%, calc(-100% - 1rem));\n}\n:host .cds-custom-aichat--home-screen__back-button .cds-custom-aichat--home-screen__back-button-content{\n display:flex;\n}\n:host .cds-custom-aichat--home-screen__back-button .cds-custom-aichat--home-screen__back-button-content .cds-custom-aichat--home-screen__back-button-content-text{\n margin-inline-end:0.5rem;\n white-space:nowrap;\n}\n:host .cds-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--home-screen__back-button .cds-custom-aichat--home-screen__back-button-content .cds-custom-aichat--home-screen__back-button-content-text{\n margin-inline:0.5rem unset;\n}\n@keyframes cds-custom-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-custom-aichat--home-screen.cds-custom-aichat--home-screen--hydration-complete .cds-custom-aichat--home-screen__back-button{\n animation:none;\n }\n}\n@media screen and (prefers-reduced-motion: no-preference){\n :host .cds-custom-aichat--home-screen.cds-custom-aichat--home-screen--hydration-complete .cds-custom-aichat--home-screen__back-button{\n animation:400ms cubic-bezier(0, 0, 0.3, 1) cds-custom-aichat-fade-in-up-back-button 350ms both;\n }\n}\n:host .cds-custom-aichat--home-screen__input-container-wrapper,\n:host .cds-custom-aichat--home-screen__input-container{\n display:flex;\n inline-size:100%;\n transform:translateY(0);\n}\n:host .cds-custom-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-custom-aichat--home-screen.cds-custom-aichat--home-screen--first-render .cds-custom-aichat--input-container{\n animation:none;\n }\n}\n@media screen and (prefers-reduced-motion: no-preference){\n :host .cds-custom-aichat--home-screen.cds-custom-aichat--home-screen--first-render .cds-custom-aichat--input-container{\n animation:400ms cubic-bezier(0, 0, 0.3, 1) cds-custom-aichat-fade-in-up 370ms both;\n }\n}\n:host{\n}\n:host .cds-custom-aichat--input-and-completions{\n position:relative;\n inline-size:100%;\n}\n:host .cds-custom-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-custom-aichat--widget--max-width.cds-custom-aichat--wide-width .cds-custom-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-custom-aichat--ai-theme .cds-custom-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-custom-aichat--input-container--show-upload-button{\n padding-inline-start:0.5rem;\n}\n:host .cds-custom-aichat--input-container__text-and-upload{\n display:flex;\n align-items:center;\n}\n:host .cds-custom-aichat--input-container__text-and-upload > *:not(:last-child),\n:host .cds-custom-aichat--input-container > *:not(:last-child){\n margin-inline-end:0.5rem;\n}\n:host .cds-custom-aichat--input-container__files-container{\n overflow:auto;\n margin-block-start:0.5rem;\n max-block-size:200px;\n}\n:host .cds-custom-aichat--input-container__files-container cds-custom-file-uploader-item{\n margin-block-end:0;\n}\n:host .cds-custom-aichat--input-container__upload-button-container{\n display:inline-block;\n inline-size:32px;\n vertical-align:top;\n}\n:host .cds-custom-aichat--input-container .cds-custom-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-custom-aichat--input-container__upload-input:focus + .cds-custom-aichat--input-container__upload-button{\n box-shadow:inset 0 0 0 2px var(--cds-focus, #0f62fe);\n}\n:host .cds-custom-aichat--input-container__upload-button:hover{\n background-color:var(--cds-background-hover, rgba(141, 141, 141, 0.12));\n}\n:host .cds-custom-aichat--input-container__upload-button:active{\n background-color:var(--cds-background-active, rgba(141, 141, 141, 0.5));\n}\n:host .cds-custom-aichat--input-container .cds-custom-aichat--input-container__upload-button--disabled{\n cursor:default;\n opacity:0.5;\n}\n:host label.cds-custom-aichat--input-container__upload-button--disabled:hover{\n background-color:transparent;\n}\n:host .cds-custom-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-custom-aichat--input-container--has-focus{\n outline-color:var(--cds-focus, #0f62fe);\n}\n:host .cds-custom-aichat--input-container .cds-custom-aichat--input-container__left-container .cds-custom-aichat--text-area .cds-custom-aichat--text-area-textarea{\n border:none;\n}\n:host .cds-custom-aichat--assistant-container .cds-custom-aichat--input-container{\n display:flex;\n}\n:host .cds-custom-aichat--input-container .cds-custom-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-custom-aichat--input-container--show-upload-button .cds-custom-aichat--text-area{\n inline-size:calc(100% - 32px);\n}\n:host .cds-custom-aichat--input-container .cds-custom-aichat--text-area textarea.cds-custom-aichat--text-area-textarea{\n display:block;\n margin:0;\n background:transparent;\n color:var(--cds-text-primary, #161616);\n resize:none;\n}\n:host .cds-custom-aichat--input-container .cds-custom-aichat--text-area .cds-custom-aichat--text-area-textarea,\n:host .cds-custom-aichat--input-container .cds-custom-aichat--text-area .cds-custom-aichat--text-area-sizer{\n max-block-size:157px;\n}\n:host .cds-custom-aichat--input-container .cds-custom-aichat--text-area .cds-custom-aichat--text-area-textarea::-moz-placeholder{\n color:var(--cds-text-placeholder, rgba(22, 22, 22, 0.4));\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-family:inherit;\n}\n:host .cds-custom-aichat--input-container .cds-custom-aichat--text-area .cds-custom-aichat--text-area-textarea::placeholder{\n color:var(--cds-text-placeholder, rgba(22, 22, 22, 0.4));\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-family:inherit;\n}\n:host .cds-custom-aichat--input-container__send-button-container,\n:host .cds-custom-aichat--input-container__upload-button-container{\n display:flex;\n flex:0 1;\n align-self:flex-start;\n}\n:host .cds-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--input-container__send-button svg{\n transform:scale(-1, 1);\n}\n:host cds-custom-button.cds-custom-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-custom-button.cds-custom-aichat--input-container__send-button:active svg,\n:host cds-custom-button.cds-custom-aichat--input-container__send-button:focus svg,\n:host cds-custom-button.cds-custom-aichat--input-container__send-button:active:focus svg{\n fill:var(--cds-interactive, #0f62fe);\n}\n:host cds-custom-button.cds-custom-aichat--input-container__send-button[disabled]:hover svg,\n:host cds-custom-button.cds-custom-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-custom-aichat--launcher__button-container{\n position:fixed;\n z-index:var(--cds-custom-aichat-z-index, 99999);\n border-radius:0.125rem;\n animation:cds-custom-aichat-launcher-in 150ms cubic-bezier(0, 0, 0.3, 1) both;\n background-color:var(--cds-background, #ffffff);\n box-shadow:var(--cds-custom-aichat-box-shadow, 1px 0 4px hsla(0, 0%, 9%, 0.3));\n inset-block-end:var(--cds-custom-aichat-launcher-position-bottom, 3rem);\n inset-inline-end:var(--cds-custom-aichat-launcher-position-right, 2rem);\n}\n:host .cds-custom-aichat--launcher__button-container--hidden{\n visibility:hidden;\n}\n:host .cds-custom-aichat--launcher__button-container--mobile{\n inset-block-end:var(--cds-custom-aichat-launcher-position-bottom-mobile, 1rem);\n inset-inline-end:var(--cds-custom-aichat-launcher-position-bottom-mobile, 1rem);\n}\n:host .cds-custom-aichat--launcher__button-container--round{\n border-radius:28px;\n box-shadow:var(--cds-custom-aichat-box-shadow, 1px 0 4px hsla(0, 0%, 9%, 0.3));\n}\n:host .cds-custom-aichat--launcher__button-container--round .cds-custom-aichat--launcher__button{\n border-radius:28px;\n background-color:var(--cds-custom-aichat-launcher-color-background, var(--cds-button-primary, #0f62fe));\n transition:unset;\n}\n:host .cds-custom-aichat--launcher__button-container--round .cds-custom-aichat--launcher__button::part(button):focus{\n box-shadow:inset 0 0 0 2px var(--cds-custom-aichat-launcher-color-focus-border, var(--cds-text-on-color, #ffffff));\n}\n:host .cds-custom-aichat--launcher__button-container--round .cds-custom-aichat--launcher__button:focus{\n border-width:2px;\n border-color:var(--cds-custom-aichat-launcher-color-background, var(--cds-button-primary, #0f62fe));\n}\n:host .cds-custom-aichat--launcher__button-container--round .cds-custom-aichat--launcher__button:hover{\n border-color:var(--cds-custom-aichat-launcher-color-background-hover, var(--cds-button-primary-hover, #0050e6));\n background-color:var(--cds-custom-aichat-launcher-color-background-hover, var(--cds-button-primary-hover, #0050e6));\n}\n:host .cds-custom-aichat--launcher__button-container--round .cds-custom-aichat--launcher__button:active{\n border-width:2px;\n border-color:var(--cds-custom-aichat-launcher-color-background-active, var(--cds-button-primary-active, #002d9c));\n background-color:var(--cds-custom-aichat-launcher-color-background-active, var(--cds-button-primary-active, #002d9c));\n box-shadow:inset 0 0 0 2px var(--cds-custom-aichat-launcher-color-focus-border, var(--cds-text-on-color, #ffffff));\n}\n:host .cds-custom-aichat--launcher__button-container--round .cds-custom-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-custom-aichat-unread-indicator-color-background, var(--cds-support-error, #da1e28));\n color:var(--cds-custom-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-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--count-indicator{\n inset-inline:calc(-1 * 0.125rem) unset;\n}\n:host .cds-custom-aichat--launcher__button-container--no-animation{\n animation:none;\n}\n:host .cds-custom-aichat--launcher__button-container--bounce-animation{\n animation:cds-custom-aichat-launcher-bounce 500ms cubic-bezier(0, 0, 0.3, 1) forwards;\n}\n:host cds-custom-button.cds-custom-aichat--launcher__button::part(button) svg{\n block-size:24px;\n fill:var(--cds-custom-aichat-launcher-color-avatar, var(--cds-text-on-color, #ffffff));\n inline-size:24px;\n}\n:host cds-custom-button.cds-custom-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-custom-button.cds-custom-aichat--launcher__button::part(button):focus{\n border-width:2px;\n}\n:host cds-custom-button.cds-custom-aichat--launcher__button{\n position:static;\n padding:0;\n border-radius:0.125rem;\n background-color:var(--cds-custom-aichat-launcher-color-background, var(--cds-button-primary, #0f62fe));\n block-size:var(--cds-custom-aichat-launcher-default-size, 56px);\n inline-size:var(--cds-custom-aichat-launcher-default-size, 56px);\n transition:background 250ms ease-in-out, transform 150ms ease;\n}\n:host .cds-custom-aichat--launcher__svg{\n fill:currentcolor;\n}\n:host .cds-custom-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-custom-aichat--launcher__button .cds-custom-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-custom-aichat--launcher-complex__container{\n border-radius:0.75rem;\n animation:none;\n background-color:var(--cds-custom-aichat-launcher-color-background, var(--cds-button-primary, #0f62fe));\n box-shadow:none;\n inset-block-end:calc(1rem + var(--cds-custom-aichat-launcher-default-size, 56px) + var(--cds-custom-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-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--launcher-complex__container{\n inset-inline:4rem unset;\n}\n:host .cds-custom-aichat--launcher-complex__container .cds-custom-aichat--launcher-complex__content-button{\n padding:0;\n border:2px solid transparent;\n border-radius:0.75rem;\n background-color:var(--cds-custom-aichat-launcher-color-background, var(--cds-button-primary, #0f62fe));\n box-shadow:none;\n min-inline-size:10rem;\n}\n:host .cds-custom-aichat--launcher-complex__container .cds-custom-aichat--launcher-complex__content-button:enabled:focus{\n border-width:2px;\n border-color:var(--cds-custom-aichat-launcher-expanded-message-color-background, var(--cds-button-primary, #0f62fe));\n box-shadow:inset 0 0 0 2px var(--cds-custom-aichat-launcher-expanded-message-color-focus-border, var(--cds-text-on-color, #ffffff));\n outline:none;\n}\n:host .cds-custom-aichat--launcher-complex__container .cds-custom-aichat--launcher-complex__content-button:enabled:hover{\n border-color:var(--cds-custom-aichat-launcher-expanded-message-color-background-hover, var(--cds-button-primary-hover, #0050e6));\n background-color:var(--cds-custom-aichat-launcher-expanded-message-color-background-hover, var(--cds-button-primary-hover, #0050e6));\n cursor:pointer;\n}\n:host .cds-custom-aichat--launcher-complex__container .cds-custom-aichat--launcher-complex__content-button:enabled:active{\n border-width:2px;\n border-color:var(--cds-custom-aichat-launcher-expanded-message-color-background-active, var(--cds-button-primary-active, #002d9c));\n background-color:var(--cds-custom-aichat-launcher-expanded-message-color-background-active, var(--cds-button-primary-active, #002d9c));\n box-shadow:inset 0 0 0 2px var(--cds-custom-aichat-launcher-expanded-message-color-focus-border, var(--cds-text-on-color, #ffffff));\n}\n:host .cds-custom-aichat--launcher-complex__container .cds-custom-aichat--launcher-complex__text{\n display:-webkit-box;\n margin:1rem;\n -webkit-box-orient:vertical;\n color:var(--cds-custom-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-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--launcher-complex__container .cds-custom-aichat--launcher-complex__text{\n text-align:end;\n}\n:host .cds-custom-aichat--launcher-complex__container .cds-custom-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-custom-aichat--launcher-complex__container .cds-custom-aichat--launcher__close-button:focus{\n border-color:var(--cds-focus, #0f62fe);\n outline:none;\n}\n:host .cds-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--launcher-complex__container .cds-custom-aichat--launcher__close-button{\n padding:3px 3px 3px 7px;\n inset-inline:0 unset;\n}\n:host .cds-custom-aichat--launcher-complex__container .cds-custom-aichat--launcher__close-button .cds-custom-aichat--launcher__close-button-icon{\n margin-inline-end:0.25rem;\n}\n:host .cds-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--launcher-complex__container .cds-custom-aichat--launcher__close-button .cds-custom-aichat--launcher__close-button-icon{\n margin-inline:0.25rem unset;\n}\n:host .cds-custom-aichat--launcher-complex__container--intro-animation{\n animation:700ms cds-custom-aichat-launcher-fade-in-slide-up forwards;\n}\n:host .cds-custom-aichat--launcher-complex__container--intro-animation .cds-custom-aichat--launcher__avatar{\n animation:700ms cds-custom-aichat-launcher-avatar-resize forwards;\n}\n:host .cds-custom-aichat--launcher-complex__container--intro-animation .cds-custom-aichat--launcher-complex__text{\n animation:700ms cds-custom-aichat-launcher-fade-in-text forwards;\n}\n:host .cds-custom-aichat--launcher-complex__container--intro-animation .cds-custom-aichat--launcher-complex__small-launcher-container,\n:host .cds-custom-aichat--launcher-complex__container--intro-animation .cds-custom-aichat--launcher__button-container.cds-custom-aichat--launcher-complex__small-launcher-container .cds-custom-aichat--launcher__button{\n animation:700ms cds-custom-aichat-launcher-resize-reposition forwards;\n}\n:host .cds-custom-aichat--launcher-complex__container--intro-animation .cds-custom-aichat--launcher__close-button{\n animation:700ms cds-custom-aichat-launcher-fade-in-close-button forwards;\n}\n:host .cds-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--launcher-complex__container--intro-animation .cds-custom-aichat--launcher-complex__small-launcher-container,\n:host .cds-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--launcher-complex__container--intro-animation .cds-custom-aichat--launcher__button-container.cds-custom-aichat--launcher-complex__small-launcher-container .cds-custom-aichat--launcher__button{\n animation:700ms cds-custom-aichat-launcher-resize-reposition-rtl forwards;\n}\n:host .cds-custom-aichat--launcher-complex__container--simple-animation{\n animation:150ms cds-custom-aichat-launcher-fade-in-slide-up forwards;\n}\n:host .cds-custom-aichat--launcher-complex__container--simple-animation .cds-custom-aichat--launcher__avatar{\n animation:150ms cds-custom-aichat-launcher-avatar-resize forwards;\n}\n:host .cds-custom-aichat--launcher-complex__container--simple-animation .cds-custom-aichat--launcher-complex__text{\n animation:150ms cds-custom-aichat-launcher-fade-in-text forwards;\n}\n:host .cds-custom-aichat--launcher-complex__container--simple-animation .cds-custom-aichat--launcher-complex__small-launcher-container,\n:host .cds-custom-aichat--launcher-complex__container--simple-animation .cds-custom-aichat--launcher__button-container.cds-custom-aichat--launcher-complex__small-launcher-container .cds-custom-aichat--launcher__button{\n padding:0 60px 60px 0;\n border-radius:5rem;\n animation:150ms cds-custom-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-custom-aichat--launcher-complex__container--simple-animation .cds-custom-aichat--launcher__close-button{\n animation:150ms cds-custom-aichat-launcher-fade-in-close-button forwards;\n}\n:host .cds-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--launcher-complex__container--simple-animation .cds-custom-aichat--launcher-complex__small-launcher-container,\n:host .cds-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--launcher-complex__container--simple-animation .cds-custom-aichat--launcher__button-container.cds-custom-aichat--launcher-complex__small-launcher-container .cds-custom-aichat--launcher__button{\n padding:0 0 60px 60px;\n inset-inline:calc(-1 * 5rem) unset;\n}\n:host .cds-custom-aichat--launcher-complex__container--tooling-preview{\n background-color:var(--cds-custom-aichat-launcher-expanded-message-color-background, var(--cds-button-primary, #0f62fe));\n box-shadow:var(--cds-custom-aichat-box-shadow, 1px 0 4px hsla(0, 0%, 9%, 0.3));\n inset-block-end:4rem;\n}\n:host .cds-custom-aichat--launcher-complex__container--tooling-preview .cds-custom-aichat--launcher-complex__text{\n opacity:1;\n}\n:host .cds-custom-aichat--launcher-complex__container--tooling-preview .cds-custom-aichat--launcher-complex__small-launcher-container,\n:host .cds-custom-aichat--launcher-complex__container--tooling-preview .cds-custom-aichat--launcher__button-container.cds-custom-aichat--launcher-complex__small-launcher-container .cds-custom-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-custom-aichat--launcher-complex__container--tooling-preview .cds-custom-aichat--launcher__close-button{\n opacity:1;\n}\n:host .cds-custom-aichat--launcher-complex__container--close-animation{\n animation:400ms cds-custom-aichat-launcher-fade-out-slide-down forwards;\n}\n:host .cds-custom-aichat--launcher-complex__container--close-animation .cds-custom-aichat--launcher__avatar{\n animation:400ms cds-custom-aichat-launcher-avatar-resize backwards;\n}\n:host .cds-custom-aichat--launcher-complex__container--close-animation .cds-custom-aichat--launcher-complex__text,\n:host .cds-custom-aichat--launcher-complex__container--close-animation .cds-custom-aichat--launcher__close-button{\n animation:400ms cds-custom-aichat-launcher-fade-out forwards;\n}\n:host .cds-custom-aichat--launcher-complex__container--close-animation .cds-custom-aichat--launcher-complex__small-launcher-container,\n:host .cds-custom-aichat--launcher-complex__container--close-animation .cds-custom-aichat--launcher__button-container.cds-custom-aichat--launcher-complex__small-launcher-container .cds-custom-aichat--launcher__button{\n animation:400ms cds-custom-aichat-launcher-default-size-position forwards;\n}\n:host .cds-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--launcher-complex__container--close-animation .cds-custom-aichat--launcher-complex__small-launcher-container,\n:host .cds-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--launcher-complex__container--close-animation .cds-custom-aichat--launcher__button-container.cds-custom-aichat--launcher-complex__small-launcher-container .cds-custom-aichat--launcher__button{\n animation:700ms cds-custom-aichat-launcher-default-size-position-rtl forwards;\n}\n:host{\n}\n:host .cds-custom-aichat--launcher-extended__container{\n block-size:var(--cds-custom-aichat-launcher-default-size, 56px);\n inline-size:var(--cds-custom-aichat-launcher-default-size, 56px);\n}\n:host cds-custom-button.cds-custom-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-custom-aichat--launcher-extended__button--hidden{\n visibility:hidden;\n}\n:host .cds-custom-aichat--launcher-extended__wrapper-container{\n position:relative;\n overflow:hidden;\n block-size:100%;\n inline-size:100%;\n}\n:host .cds-custom-aichat--launcher-extended__wrapper{\n position:absolute;\n display:flex;\n inline-size:calc(var(--cds-custom-aichat-launcher-extended-width, 280px) - 6px);\n inset-inline-end:0;\n max-inline-size:calc(100vw - var(--cds-custom-aichat-launcher-position-bottom, 3rem) - 6px);\n}\n:host .cds-custom-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-custom-aichat--launcher-extended__greeting{\n position:absolute;\n display:flex;\n align-items:center;\n block-size:100%;\n color:var(--cds-custom-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-custom-aichat-is-phone .cds-custom-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-custom-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-custom-aichat--launcher-extended__button .cds-custom-aichat--launcher__icon-holder{\n display:flex;\n align-items:center;\n justify-content:center;\n block-size:calc(var(--cds-custom-aichat-launcher-default-size, 56px) - 4px);\n inline-size:calc(var(--cds-custom-aichat-launcher-default-size, 56px) - 4px);\n margin-inline-start:auto;\n}\n:host .cds-custom-aichat--launcher-extended__button .cds-custom-aichat--launcher__icon-holder svg{\n position:absolute;\n block-size:24px;\n inline-size:24px;\n}\n:host .cds-custom-aichat--launcher-extended__button .cds-custom-aichat--launcher-extended__element--hidden{\n display:none;\n}\n:host .cds-custom-aichat--launcher-extended__button .cds-custom-aichat--launcher-extended__element--fade-out{\n animation:cds-custom-aichat-launcher-extended-element-fade-out 500ms ease-out 400ms both;\n}\n:host .cds-custom-aichat--launcher-extended__button .cds-custom-aichat--launcher-extended__element--fade-in{\n animation:cds-custom-aichat-launcher-extended-element-fade-in 500ms ease-out 400ms both;\n}\n:host .cds-custom-aichat--launcher__button-container.cds-custom-aichat--launcher-extended__button--extended{\n border-radius:14px;\n inline-size:var(--cds-custom-aichat-launcher-extended-width, 280px);\n}\n:host .cds-custom-aichat--launcher__button-container.cds-custom-aichat--launcher-extended__button--extended cds-custom-button.cds-custom-aichat--launcher__button{\n inline-size:var(--cds-custom-aichat-launcher-extended-width, 280px);\n}\n:host .cds-custom-aichat--launcher__button-container.cds-custom-aichat--launcher-extended__button--extended cds-custom-button.cds-custom-aichat--launcher__button.cds-custom-aichat--launcher-extended__button::part(button\n ){\n border-radius:14px;\n}\n:host .cds-custom-aichat--launcher__button-container.cds-custom-aichat--launcher-extended__button--extended .cds-custom-aichat--launcher__svg{\n inline-size:24px;\n}\n:host .cds-custom-aichat--launcher__button-container.cds-custom-aichat--launcher-extended__button--extended-animation{\n animation:cds-custom-aichat-launcher-extend 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 500ms both, cds-custom-aichat-launcher-partially-round 300ms ease-in 500ms both;\n}\n:host .cds-custom-aichat--launcher__button-container.cds-custom-aichat--launcher-extended__button--extended-animation cds-custom-button.cds-custom-aichat--launcher-extended__button::part(button){\n animation:cds-custom-aichat-launcher-partially-round 300ms ease-in 500ms both;\n}\n:host .cds-custom-aichat--launcher__button-container.cds-custom-aichat--launcher-extended__button--extended-animation .cds-custom-aichat--launcher__svg{\n animation:cds-custom-aichat-launcher-icon-to-24 300ms ease-out 500ms both;\n}\n:host .cds-custom-aichat--launcher__button-container.cds-custom-aichat--launcher-extended__button--reduced-animation{\n animation:cds-custom-aichat-launcher-reduce 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 500ms both, cds-custom-aichat-launcher-completely-round 300ms ease-out 500ms both;\n}\n:host .cds-custom-aichat--launcher__button-container.cds-custom-aichat--launcher-extended__button--reduced-animation cds-custom-button.cds-custom-aichat--launcher-extended__button::part(button){\n animation:cds-custom-aichat-launcher-completely-round 300ms ease-out 500ms both;\n}\n:host .cds-custom-aichat--launcher__button-container.cds-custom-aichat--launcher-extended__button--reduced-animation .cds-custom-aichat--launcher__svg{\n animation:cds-custom-aichat-launcher-icon-to-32 300ms ease-out 500ms both;\n}\n:host .cds-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--launcher-extended__container .cds-custom-aichat--launcher-extended__wrapper{\n inset-inline:0 unset;\n}\n:host .cds-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--launcher-extended__container .cds-custom-aichat--launcher-extended__text-holder{\n padding:0.75rem 0.75rem 0.75rem 0;\n}\n:host{\n}\n:host .cds-custom-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-custom-aichat--confirm-modal .cds-custom-aichat--confirm-modal__container{\n margin:auto;\n background-color:var(--cds-background, #ffffff);\n max-inline-size:min(var(--cds-custom-aichat-max-width, 672px) - 1rem * 2, 512px);\n}\n:host .cds-custom-aichat--confirm-modal .cds-custom-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-custom-aichat--confirm-modal .cds-custom-aichat--confirm-modal__message{\n padding:0 1rem 3rem 1rem;\n}\n:host .cds-custom-aichat--confirm-modal .cds-custom-aichat--confirm-modal__no-button{\n margin-inline-end:1px;\n}\n:host .cds-custom-aichat--confirm-modal .cds-custom-aichat--confirm-modal__button-container{\n display:flex;\n border-block-start:solid 1px var(--cds-layer-03, #f4f4f4);\n}\n:host .cds-custom-aichat--confirm-modal .cds-custom-aichat--confirm-modal__button-container *{\n flex:1;\n}\n:host{\n}\n:host .cds-custom-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-custom-aichat-scrollbar-width));\n inset-block-start:1rem;\n overflow-y:auto;\n}\n:host .cds-custom-aichat--notifications__notification{\n display:block;\n inline-size:100%;\n margin-block-end:1rem;\n}\n:host{\n}\n:host .cds-custom-aichat--max-width-small{\n max-inline-size:291px;\n}\n:host .cds-custom-aichat--max-width-medium{\n max-inline-size:438px;\n}\n:host .cds-custom-aichat--max-width-large{\n max-inline-size:585px;\n}\n:host{\n}\n:host .cds-custom-aichat--connect-to-human-agent{\n max-inline-size:var(--cds-custom-aichat-card-max-width, 424px);\n}\n:host .cds-custom-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-custom-aichat--connect-to-human-agent__text{\n padding-block-end:1.5rem;\n}\n:host .cds-custom-aichat--connect-to-agent__text p,\n:host .cds-custom-aichat--connect-to-human-agent__request-button svg{\n margin-inline-start:2rem;\n}\n:host .cds-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--connect-to-human-agent__request-button svg{\n margin-inline:0 2rem;\n transform:scaleX(-1);\n}\n:host .cds-custom-aichat--message .cds-custom-aichat--connect-to-human-agent__warning a,\n:host .cds-custom-aichat--message .cds-custom-aichat--connect-to-human-agent__warning a:visited{\n color:var(--cds-link-inverse, #78a9ff);\n}\n:host .cds-custom-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-custom-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-custom-aichat--carousel-container__navigation-button,\n:host .cds-custom-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-custom-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-custom-aichat-card-max-width, 424px);\n}\n:host .cds-custom-aichat--carousel-container__navigation cds-custom-button::part(button){\n color:currentcolor;\n}\n:host .cds-custom-aichat--carousel-container__navigation-button{\n padding:0;\n color:currentcolor;\n inline-size:32px;\n}\n:host .cds-custom-aichat--carousel-container__navigation-button:first-of-type{\n margin-inline-end:0.5rem;\n}\n:host .cds-custom-aichat--carousel-container__navigation-button:last-of-type{\n margin-inline-start:0.5rem;\n}\n:host button.cds-custom-aichat--carousel-container__navigation-button > svg{\n fill:var(--cds-text-secondary, #525252);\n}\n:host .swiper .cds-custom-aichat--card-message-component{\n display:flex;\n flex-direction:column;\n block-size:calc(100% - 2px);\n}\n:host .swiper .cds-custom-aichat--body-message-components{\n flex:1;\n}\n:host .cds-custom-aichat--carousel-container__slide--narrow.swiper-slide{\n max-inline-size:calc(100% - 32px);\n}\n:host .cds-custom-aichat--carousel-container__slide--wide.swiper-slide,\n:host .cds-custom-aichat--carousel-container__slide--standard.swiper-slide{\n max-inline-size:calc(100% - 72px);\n}\n:host .cds-custom-aichat--carousel-container__controls--standard,\n:host .cds-custom-aichat--carousel-container__controls--wide{\n padding-block-start:0.5rem;\n padding-inline:56px 16px;\n}\n:host .cds-custom-aichat--carousel-container--one-slide{\n max-inline-size:var(--cds-custom-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-custom-aichat-card-max-width, 424px);\n}\n:host{\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-custom-aichat--conversational-search-citations{\n animation:none;\n padding-block-start:16px;\n }\n}\n:host .cds-custom-aichat--conversational-search-citations{\n animation:400ms cubic-bezier(0, 0, 0.3, 1) cds-custom-chat-fade-in both;\n padding-block-start:16px;\n}\n:host .cds-custom-aichat--conversational-search-citations .swiper-slide{\n block-size:unset;\n}\n:host .cds-custom-aichat--conversational-search .cds-custom-aichat--carousel-container__controls{\n padding-block-end:0;\n}\n:host .cds-custom-aichat--standard-width .cds-custom-aichat--conversational-search .cds-custom-aichat--carousel-container--one-slide,\n:host .cds-custom-aichat--wide-width .cds-custom-aichat--conversational-search .cds-custom-aichat--carousel-container--one-slide,\n:host .cds-custom-aichat--wide-width .cds-custom-aichat--conversational-search-disclaimer,\n:host .cds-custom-aichat--standard-width .cds-custom-aichat--conversational-search-disclaimer{\n margin-inline:56px 16px;\n}\n:host .cds-custom-aichat--narrow-width .cds-custom-aichat--conversational-search .cds-custom-aichat--carousel-container--one-slide,\n:host .cds-custom-aichat--narrow-width .cds-custom-aichat--conversational-search-disclaimer{\n margin-inline:16px;\n}\n:host{\n}\n:host .cds-custom-aichat--received--conversational-search .cds-custom-aichat--received--feedback,\n:host .cds-custom-aichat--wide-width .cds-custom-aichat--conversational-search-text,\n:host .cds-custom-aichat--standard-width .cds-custom-aichat--conversational-search-text{\n margin-inline:56px 16px;\n}\n:host .cds-custom-aichat--narrow-width .cds-custom-aichat--received--conversational-search .cds-custom-aichat--received--feedback,\n:host .cds-custom-aichat--narrow-width .cds-custom-aichat--conversational-search-text{\n margin-inline-start:16px;\n}\n:host .cds-custom-aichat--conversational-search-text__citations-toggle-container{\n display:block;\n padding-block-start:0.25rem;\n}\n:host .cds-custom-aichat--conversational-search-text__citations-toggle{\n margin:0;\n}\n:host .cds-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--conversational-search-text__segment:nth-last-child(1 of .cds-custom-aichat--conversational-search-text__segment){\n margin-inline:0.25rem 0;\n}\n:host{\n}\n:host .cds-custom-aichat--date-picker__confirm-button{\n display:block;\n}\n:host .cds-custom-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-custom-aichat--inline-error{\n display:flex;\n flex-direction:row;\n margin-inline-start:-16px;\n}\n:host .cds-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--inline-error{\n margin-inline:unset -16px;\n}\n:host .cds-custom-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-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--inline-error--icon-holder{\n margin:0.125rem 1rem 0 0.5rem;\n}\n:host .cds-custom-aichat--inline-error--icon{\n block-size:1rem;\n inline-size:1rem;\n}\n:host .cds-custom-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-custom-aichat--inline-error .cds-custom-aichat--inline-error--text{\n color:var(--cds-text-error, #da1e28);\n}\n:host{\n}\n:host .cds-custom-aichat--grid{\n display:flex;\n flex-direction:column;\n inline-size:100%;\n row-gap:0.5rem;\n}\n:host .cds-custom-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-custom-aichat--grid__cell{\n display:flex;\n flex-direction:column;\n inline-size:100%;\n row-gap:0.5rem;\n}\n:host .cds-custom-aichat--grid__cell .cds-custom-aichat--message-user-defined-response{\n inline-size:100%;\n}\n:host .cds-custom-aichat--grid .cds-custom-aichat--image{\n border:none;\n}\n:host .cds-custom-aichat--grid .cds-custom-aichat--image__image-wrapper{\n background-color:transparent;\n}\n:host .cds-custom-aichat--grid .cds-custom-aichat--image__skeleton{\n display:none;\n}\n:host .cds-custom-aichat--grid .cds-custom-aichat--media-player__skeleton{\n display:none;\n}\n:host .cds-custom-aichat--grid .cds-custom-aichat--media-player__root{\n inline-size:100%;\n}\n:host{\n}\n:host .cds-custom-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-custom-aichat--i-frame-panel__content{\n position:relative;\n display:flex;\n flex:1;\n}\n:host .cds-custom-aichat--i-frame-panel__content .cds-custom-aichat--i-frame-component__status-container{\n background-color:var(--cds-chat-shell-background, #ffffff);\n}\n:host .cds-custom-aichat--i-frame-panel__content .cds-custom-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-custom-aichat--i-frame-preview-card .cds-custom-aichat--image{\n position:unset;\n transition:none;\n }\n}\n:host .cds-custom-aichat--i-frame-preview-card .cds-custom-aichat--image{\n position:unset;\n transition:150ms cubic-bezier(0.2, 0, 0.38, 0.9);\n}\n:host .cds-custom-aichat--i-frame-preview-card:focus .cds-custom-aichat--image{\n outline:2px solid var(--cds-focus, #0f62fe);\n}\n:host .cds-custom-aichat--i-frame-preview-card:hover .cds-custom-aichat--image{\n background-color:var(--cds-layer-hover);\n text-decoration:underline;\n}\n:host{\n}\n:host .cds-custom-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-custom-aichat--inline-i-frame .cds-custom-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-custom-aichat--i-frame-component__wrapper{\n position:relative;\n overflow:hidden;\n background:transparent;\n}\n:host .cds-custom-aichat--i-frame-component__wrapper,\n:host .cds-custom-aichat--i-frame-component__i-frame{\n block-size:100%;\n inline-size:100%;\n}\n:host .cds-custom-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-custom-aichat--i-frame-component__status-container .cds-custom-aichat--loading-spinner{\n block-size:48px;\n inline-size:48px;\n}\n:host .cds-custom-aichat--i-frame-panel .cds-custom-aichat--panel-content{\n display:flex;\n flex:1;\n flex-direction:column;\n}\n:host .cds-custom-aichat--i-frame-panel__content{\n block-size:100%;\n inline-size:100%;\n}\n:host{\n}\n:host .cds-custom-aichat--image{\n overflow:hidden;\n padding:0;\n min-block-size:0;\n min-inline-size:0;\n}\n:host cds-custom-ai-skeleton-placeholder.cds-custom-aichat--image__skeleton::part(skeleton-placeholder\n ),\n:host cds-custom-skeleton-placeholder.cds-custom-aichat--image__skeleton::part(placeholder){\n block-size:192px;\n inline-size:100%;\n}\n:host .cds-custom-aichat--image__image-wrapper{\n background-color:var(--cds-layer-02, #ffffff);\n}\n:host .cds-custom-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-custom-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-custom-aichat--image__image--loaded{\n animation-duration:110ms;\n animation-iteration-count:1;\n animation-name:cds-custom-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-custom-aichat--image .cds-custom-aichat--image__image--loaded{\n display:block;\n margin:auto;\n}\n:host .cds-custom-aichat--image__text-and-icon .cds-custom-aichat--text-holder-tile__url{\n padding-inline-end:calc(1rem + 2px);\n}\n:host .cds-custom-aichat--image__icon-only .cds-custom-aichat--image__icon{\n padding:0.75rem;\n border-radius:var(--cds-custom-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-custom-aichat--image__icon{\n display:block;\n margin-block-end:1rem;\n margin-inline:auto 1rem;\n}\n:host .cds-custom-aichat--image__icon-only .cds-custom-aichat--image__icon,\n:host svg.cds-custom-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-custom-aichat--image__icon--link{\n color:var(--cds-link-primary, #0f62fe);\n}\n:host .cds-custom-aichat--container--render[dir=rtl] svg.cds-custom-aichat--image__icon--link{\n inset-inline:0.5rem unset;\n}\n:host{\n}\n:host .cds-custom-aichat--button-holder{\n margin-block-start:0.5rem;\n}\n:host .cds-custom-aichat--button-holder ul{\n padding:0;\n margin:0;\n list-style:none;\n}\n:host .cds-custom-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-custom-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-custom-aichat--custom-select-temporary-padding{\n padding-block-end:5rem;\n}\n:host cds-custom-dropdown::part(trigger-button){\n block-size:2.5rem;\n}\n:host cds-custom-dropdown::part(menu-body){\n position:static;\n}\n:host{\n}\n:host .cds-custom-aichat--text-area{\n position:relative;\n block-size:-moz-fit-content;\n block-size:fit-content;\n}\n:host .cds-custom-aichat--text-area .cds-custom-aichat--text-area-textarea,\n:host .cds-custom-aichat--text-area .cds-custom-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-custom-aichat--text-area .cds-custom-aichat--text-area-textarea:focus{\n border:2px solid var(--cds-focus, #0f62fe);\n border-radius:0;\n outline:0;\n}\n:host .cds-custom-aichat--text-area .cds-custom-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-custom-aichat--text-area.cds-custom-aichat--text-area--auto-size .cds-custom-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-custom-aichat--text-area .cds-custom-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-custom-aichat--body-message-components__message-wrapper{\n padding:1rem;\n}\n:host .cds-custom-aichat--body-message-components__message-wrapper.cds-custom-aichat--body-message-components__message-wrapper--short-bottom-padding{\n padding-block-end:0.75rem;\n}\n:host .cds-custom-aichat--body-message-components .cds-custom-aichat--media-player__skeleton,\n:host .cds-custom-aichat--body-message-components .cds-custom-aichat--media-player,\n:host .cds-custom-aichat--body-message-components .cds-custom-aichat--image{\n border:none;\n}\n:host{\n}\n:host .cds-custom-aichat--body-message-components__message-wrapper.cds-custom-aichat--body-message-components__message-wrapper--short-bottom-padding + .cds-custom-aichat--body-message-components__message-wrapper:not(.cds-custom-aichat--body-message-components__message-wrapper--full-width){\n padding-block-start:0;\n}\n:host .cds-custom-aichat--body-message-components__message-wrapper.cds-custom-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-custom-aichat--clickable-image{\n position:relative;\n overflow:hidden;\n padding:0;\n border:none;\n border-radius:var(--cds-custom-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-custom-aichat-card-max-width, 424px);\n outline:none;\n outline-offset:-2px;\n text-align:unset;\n transition:none;\n }\n}\n:host .cds-custom-aichat--clickable-image{\n position:relative;\n overflow:hidden;\n padding:0;\n border:none;\n border-radius:var(--cds-custom-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-custom-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-custom-aichat--clickable-image .cds-custom-aichat--text-holder-tile__title{\n color:var(--cds-text-primary, #161616);\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-custom-aichat--clickable-image .cds-custom-aichat--image{\n position:unset;\n transition:none;\n }\n}\n:host .cds-custom-aichat--clickable-image .cds-custom-aichat--image{\n position:unset;\n transition:150ms cubic-bezier(0.2, 0, 0.38, 0.9);\n}\n:host .cds-custom-aichat--clickable-image .cds-custom-aichat--image__image{\n -webkit-user-select:none;\n -moz-user-select:none;\n user-select:none;\n}\n:host .cds-custom-aichat--clickable-image:disabled{\n cursor:not-allowed;\n}\n:host .cds-custom-aichat--clickable-image:disabled .cds-custom-aichat--image{\n opacity:0.5;\n}\n:host .cds-custom-aichat--clickable-image:enabled:focus{\n outline:2px solid var(--cds-focus, #0f62fe);\n}\n:host .cds-custom-aichat--clickable-image:enabled:hover .cds-custom-aichat--image{\n background-color:var(--cds-layer-hover);\n text-decoration:underline;\n}\n:host .cds-custom-aichat--clickable-image:enabled:hover .cds-custom-aichat--image__image{\n opacity:0.8;\n}\n:host{\n}\n:host .cds-custom-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-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--disclaimer__title,\n:host .cds-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--disclaimer__description{\n text-align:end;\n}\n:host{\n}\n:host .cds-custom-aichat--footer-button-components{\n display:flex;\n inline-size:100%;\n}\n:host .cds-custom-aichat--footer-button-components cds-custom-button.cds-custom-aichat--button-item{\n flex:auto;\n}\n:host .cds-custom-aichat--footer-button-components cds-custom-button[href][kind=ghost] svg{\n fill:var(--cds-link-primary, #0f62fe);\n}\n:host cds-custom-tile .cds-custom-aichat--footer-button-components:not(.cds-custom-aichat--footer-button-components--column){\n gap:0.0625rem;\n}\n:host cds-custom-tile .cds-custom-aichat--footer-button-components:not(.cds-custom-aichat--footer-button-components--column):not(:has([kind=ghost])){\n background-color:var(--cds-button-separator, #e0e0e0);\n}\n:host cds-custom-tile .cds-custom-aichat--footer-button-components:not(.cds-custom-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-custom-tile .cds-custom-aichat--footer-button-components:not(.cds-custom-aichat--footer-button-components--column) .cds-custom-aichat--button-item:first-child::part(button){\n border-end-start-radius:calc(0.5rem - 0.0625rem);\n}\n:host cds-custom-tile .cds-custom-aichat--footer-button-components:not(.cds-custom-aichat--footer-button-components--column) .cds-custom-aichat--button-item:last-child::part(button){\n border-end-end-radius:calc(0.5rem - 0.0625rem);\n}\n:host cds-custom-tile .cds-custom-aichat--footer-button-components.cds-custom-aichat--footer-button-components--column{\n flex-direction:column;\n}\n:host cds-custom-tile .cds-custom-aichat--footer-button-components.cds-custom-aichat--footer-button-components--column .cds-custom-aichat--button-item[kind=ghost]{\n border-block-start:0.0625rem solid var(--cds-chat-bubble-border, #e0e0e0);\n}\n:host cds-custom-tile .cds-custom-aichat--footer-button-components.cds-custom-aichat--footer-button-components--column .cds-custom-aichat--button-item:last-child::part(button){\n border-end-end-radius:calc(0.5rem - 0.0625rem);\n border-end-start-radius:calc(0.5rem - 0.0625rem);\n}\n:host .cds-custom-aichat--widget--rounded .cds-custom-aichat--overlay-panel .cds-custom-aichat--footer-button-components:not(.cds-custom-aichat--footer-button-components--column){\n gap:0.0625rem;\n}\n:host .cds-custom-aichat--widget--rounded .cds-custom-aichat--overlay-panel .cds-custom-aichat--footer-button-components:not(.cds-custom-aichat--footer-button-components--column):not(:has([kind=ghost])){\n background-color:var(--cds-button-separator, #e0e0e0);\n}\n:host .cds-custom-aichat--widget--rounded .cds-custom-aichat--overlay-panel .cds-custom-aichat--footer-button-components:not(.cds-custom-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-custom-aichat--widget--rounded .cds-custom-aichat--overlay-panel .cds-custom-aichat--footer-button-components:not(.cds-custom-aichat--footer-button-components--column) .cds-custom-aichat--button-item:first-child::part(button){\n border-end-start-radius:calc(var(--cds-custom-aichat-border-radius, 0px) - 0.0625rem);\n}\n:host .cds-custom-aichat--widget--rounded .cds-custom-aichat--overlay-panel .cds-custom-aichat--footer-button-components:not(.cds-custom-aichat--footer-button-components--column) .cds-custom-aichat--button-item:last-child::part(button){\n border-end-end-radius:calc(var(--cds-custom-aichat-border-radius, 0px) - 0.0625rem);\n}\n:host .cds-custom-aichat--widget--rounded .cds-custom-aichat--overlay-panel .cds-custom-aichat--footer-button-components.cds-custom-aichat--footer-button-components--column{\n flex-direction:column;\n}\n:host .cds-custom-aichat--widget--rounded .cds-custom-aichat--overlay-panel .cds-custom-aichat--footer-button-components.cds-custom-aichat--footer-button-components--column .cds-custom-aichat--button-item[kind=ghost]{\n border-block-start:0.0625rem solid var(--cds-chat-bubble-border, #e0e0e0);\n}\n:host .cds-custom-aichat--widget--rounded .cds-custom-aichat--overlay-panel .cds-custom-aichat--footer-button-components.cds-custom-aichat--footer-button-components--column .cds-custom-aichat--button-item:last-child::part(button){\n border-end-end-radius:calc(var(--cds-custom-aichat-border-radius, 0px) - 0.0625rem);\n border-end-start-radius:calc(var(--cds-custom-aichat-border-radius, 0px) - 0.0625rem);\n}\n:host .cds-custom-aichat--widget__animation-container--with-branding-banner .cds-custom-aichat--overlay-panel .cds-custom-aichat--footer-button-components .cds-custom-aichat--button-item:first-child::part(button),\n:host .cds-custom-aichat--widget:not(.cds-custom-aichat--widget--rounded) .cds-custom-aichat--widget__animation-container:not(.cds-custom-aichat--widget__animation-container--with-branding-banner) .cds-custom-aichat--overlay-panel .cds-custom-aichat--footer-button-components .cds-custom-aichat--button-item:first-child::part(button){\n border-end-start-radius:0;\n}\n:host .cds-custom-aichat--widget__animation-container--with-branding-banner .cds-custom-aichat--overlay-panel .cds-custom-aichat--footer-button-components .cds-custom-aichat--button-item:last-child::part(button),\n:host .cds-custom-aichat--widget:not(.cds-custom-aichat--widget--rounded) .cds-custom-aichat--widget__animation-container:not(.cds-custom-aichat--widget__animation-container--with-branding-banner) .cds-custom-aichat--overlay-panel .cds-custom-aichat--footer-button-components .cds-custom-aichat--button-item:last-child::part(button){\n border-end-end-radius:0;\n}\n:host .cds-custom-aichat--widget__animation-container--with-branding-banner .cds-custom-aichat--overlay-panel .cds-custom-aichat--footer-button-components--column .cds-custom-aichat--button-item.cds-custom-aichat--button-item:last-child::part(button),\n:host .cds-custom-aichat--footer-button-components.cds-custom-aichat--footer-button-components--column .cds-custom-aichat--button-item.cds-custom-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-custom-aichat--media-player,\n:host .cds-custom-aichat--media-player__skeleton{\n overflow:hidden;\n padding:0;\n}\n:host .cds-custom-aichat--media-player__wrapper{\n overflow:hidden;\n}\n:host .cds-custom-aichat--media-player__skeleton-container,\n:host .cds-custom-aichat--media-player__wrapper{\n position:relative;\n padding-block-start:0;\n}\n:host .cds-custom-aichat--media-player__background{\n background-color:var(--cds-layer-accent-01, #e0e0e0);\n}\n:host .cds-custom-aichat--media-player__background--audio{\n display:flex;\n align-items:center;\n justify-content:center;\n}\n:host .cds-custom-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-custom-aichat--media-player__music-icon{\n fill:var(--cds-icon-on-color, #ffffff);\n}\n:host cds-custom-ai-skeleton-placeholder.cds-custom-aichat--media-player__skeleton-player::part(skeleton-placeholder\n ),\n:host cds-custom-skeleton-placeholder.cds-custom-aichat--media-player__skeleton-player::part(placeholder\n ),\n:host .cds-custom-aichat--media-player__background,\n:host .cds-custom-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-custom-ai-skeleton-placeholder.cds-custom-aichat--media-player__skeleton-player::part(skeleton-placeholder\n ),\n:host cds-custom-skeleton-placeholder.cds-custom-aichat--media-player__skeleton-player::part(placeholder\n ),\n:host .cds-custom-aichat--media-player__background{\n block-size:100%;\n inline-size:100%;\n}\n:host .cds-custom-aichat--media-player__root{\n inline-size:100%;\n}\n:host .cds-custom-aichat--media-player__skeleton-text-container{\n padding:1rem;\n}\n:host{\n}\n:host .cds-custom-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-custom-aichat--received--metablock-content:nth-child(2){\n margin-block-start:0.5rem;\n}\n:host{\n}\n:host .cds-custom-aichat--text-holder-tile{\n display:flex;\n padding:1rem;\n min-block-size:initial;\n}\n:host .cds-custom-aichat--text-holder-tile__icon{\n flex:0 1 auto;\n margin:0.125rem 0.5rem 0 0;\n}\n:host .cds-custom-aichat--text-holder-tile__wrapper{\n flex:1 1;\n align-self:center;\n}\n:host .cds-custom-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-custom-aichat--text-holder-tile__description{\n color:var(--cds-text-secondary, #525252);\n}\n:host .cds-custom-aichat--text-holder-tile__description,\n:host .cds-custom-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-custom-aichat--text-holder-tile__description-margin{\n margin-block-start:0.125rem;\n}\n:host .cds-custom-aichat--text-holder-tile__url{\n color:var(--cds-link-primary, #0f62fe);\n}\n:host .cds-custom-aichat--text-holder-tile__url-margin{\n margin-block-start:1rem;\n}\n@supports (-webkit-line-clamp: 3){\n :host .cds-custom-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-custom-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-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--text-holder-tile__icon{\n margin-inline:0.5rem 0;\n}\n:host{\n}\n:host .cds-custom-aichat--search-result-highlight{\n background-color:var(--cds-highlight, #d0e2ff);\n}\n:host{\n}\n:host .cds-custom-aichat--citation-card{\n display:block;\n inline-size:100%;\n}\n:host .cds-custom-aichat--message a.cds-custom-aichat--citation-card--clickable,\n:host .cds-custom-aichat--message button.cds-custom-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-custom-aichat--message a.cds-custom-aichat--citation-card--clickable cds-custom-tile,\n:host .cds-custom-aichat--message button.cds-custom-aichat--citation-card--clickable cds-custom-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-custom-aichat--message a.cds-custom-aichat--citation-card--clickable cds-custom-tile,\n :host .cds-custom-aichat--message button.cds-custom-aichat--citation-card--clickable cds-custom-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-custom-aichat--message a.cds-custom-aichat--citation-card--clickable:focus,\n:host .cds-custom-aichat--message button.cds-custom-aichat--citation-card--clickable:focus{\n text-decoration:none;\n}\n:host .cds-custom-aichat--message a.cds-custom-aichat--citation-card--clickable:focus cds-custom-tile,\n:host .cds-custom-aichat--message button.cds-custom-aichat--citation-card--clickable:focus cds-custom-tile{\n box-shadow:0 0 0 2px inset var(--cds-focus, #0f62fe);\n text-decoration:none;\n}\n:host .cds-custom-aichat--message a.cds-custom-aichat--citation-card--clickable:hover,\n:host .cds-custom-aichat--message button.cds-custom-aichat--citation-card--clickable:hover{\n text-decoration:none;\n}\n:host .cds-custom-aichat--message a.cds-custom-aichat--citation-card--clickable:hover cds-custom-tile,\n:host .cds-custom-aichat--message button.cds-custom-aichat--citation-card--clickable:hover cds-custom-tile{\n background:var(--cds-layer-hover-01, #e8e8e8);\n text-decoration:none;\n}\n:host .cds-custom-aichat--message a.cds-custom-aichat--citation-card--clickable:active,\n:host .cds-custom-aichat--message button.cds-custom-aichat--citation-card--clickable:active{\n text-decoration:none;\n}\n:host .cds-custom-aichat--message a.cds-custom-aichat--citation-card--clickable:active cds-custom-tile,\n:host .cds-custom-aichat--message button.cds-custom-aichat--citation-card--clickable:active cds-custom-tile{\n box-shadow:0 0 0 2px inset var(--cds-focus, #0f62fe);\n text-decoration:none;\n}\n:host .cds-custom-aichat--citation-card-header{\n block-size:128px;\n}\n:host .cds-custom-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-custom-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-custom-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-custom-aichat--citation-card-label,\n:host .cds-custom-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-custom-aichat--citation-card-icon{\n display:flex;\n align-items:center;\n}\n:host .cds-custom-aichat--message a:hover.cds-custom-aichat--citation-card--clickable{\n cursor:pointer;\n text-decoration:none;\n}\n:host{\n}\n:host .cds-custom-aichat--view-source-panel{\n position:relative;\n display:flex;\n flex-direction:column;\n block-size:100%;\n}\n:host .cds-custom-aichat--view-source-panel .cds-custom-aichat--panel-content{\n flex:1;\n}\n:host .cds-custom-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-custom-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-custom-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-custom-aichat--non-header-container{\n position:relative;\n display:flex;\n overflow:hidden;\n flex:1 1 0%;\n}\n:host .cds-custom-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-custom-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-custom-aichat--process-wizard-done-button{\n justify-content:center;\n}\n:host .cds-custom-aichat--messages-error-handler{\n padding:1rem;\n}\n:host{\n}\n:host .cds-custom-aichat--overlay-panel--catastrophic_panel .cds-custom-aichat--overlay-panel{\n display:flex;\n flex-direction:column;\n}\n:host .cds-custom-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-custom-aichat--catastrophic-error--with-header{\n border-start-end-radius:0;\n border-start-start-radius:0;\n}\n:host .cds-custom-aichat--catastrophic-error .cds-custom-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-custom-aichat--catastrophic-error__error-text-container{\n margin-block-start:1.5rem;\n margin-inline:2rem;\n}\n:host .cds-custom-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-custom-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-custom-aichat--catastrophic-error__restart-button{\n display:block;\n margin-block-start:1rem;\n}\n:host .cds-custom-aichat--catastrophic-error--with-header .cds-custom-aichat--catastrophic-error__error-text-container{\n margin-block-end:41px;\n}\n:host .cds-custom-aichat--wide-width.cds-custom-aichat--widget--max-width .cds-custom-aichat--catastrophic-error.cds-custom-aichat--panel-content{\n max-inline-size:100%;\n}\n:host .cds-custom-aichat--wide-width.cds-custom-aichat--widget--max-width .cds-custom-aichat--catastrophic-error__error-text-container{\n margin:auto;\n max-inline-size:var(--cds-custom-aichat-max-width, 672px);\n}\n:host{\n}\n:host .cds-custom-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-custom-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-custom-aichat--disclaimer__content{\n background-color:var(--cds-chat-shell-background, #ffffff);\n}\n:host .cds-custom-aichat--disclaimer .cds-custom-aichat--header{\n border-block-end:none;\n color:var(--cds-text-primary, #161616);\n}\n:host .cds-custom-aichat--disclaimer__content.cds-custom-aichat--panel-content,\n:host .cds-custom-aichat--wide-width .cds-custom-aichat--disclaimer__content.cds-custom-aichat--panel-content{\n overflow:hidden auto;\n flex-grow:1;\n padding:0 2rem 0 2rem;\n}\n:host .cds-custom-aichat--disclaimer__icon{\n padding:1.5rem 0 1.5rem 0;\n margin-inline-start:calc(1.5rem * -1);\n}\n:host .cds-custom-aichat--disclaimer__icon > svg{\n block-size:128px;\n inline-size:128px;\n}\n:host .cds-custom-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-custom-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-custom-aichat--disclaimer__buttons{\n border-block-start:1px solid var(--cds-border-subtle-01, #c6c6c6);\n inline-size:100%;\n}\n:host .cds-custom-aichat--wide-width .cds-custom-aichat--disclaimer__buttons{\n display:flex;\n flex-direction:row-reverse;\n}\n:host .cds-custom-aichat--wide-width .cds-custom-aichat--disclaimer__buttons cds-custom-button.cds-custom-aichat--disclaimer__accept-button{\n inline-size:288px;\n}\n:host .cds-custom-aichat--narrow-width .cds-custom-aichat--disclaimer__buttons cds-custom-button.cds-custom-aichat--disclaimer__accept-button,\n:host .cds-custom-aichat--standard-width .cds-custom-aichat--disclaimer__buttons cds-custom-button.cds-custom-aichat--disclaimer__accept-button{\n inline-size:100%;\n max-inline-size:unset;\n}\n:host .cds-custom-aichat--narrow-width .cds-custom-aichat--disclaimer__buttons cds-custom-button.cds-custom-aichat--disclaimer__accept-button::part(button),\n:host .cds-custom-aichat--standard-width .cds-custom-aichat--disclaimer__buttons cds-custom-button.cds-custom-aichat--disclaimer__accept-button::part(button){\n border-end-end-radius:var(--cds-custom-aichat-border-radius, 0px);\n border-end-start-radius:var(--cds-custom-aichat-border-radius, 0px);\n}\n:host .cds-custom-aichat--widget--max-width.cds-custom-aichat--wide-width .cds-custom-aichat--disclaimer__buttons-padding{\n display:flex;\n justify-content:flex-end;\n margin:auto;\n inline-size:var(--cds-custom-aichat-max-width, 672px);\n}\n:host{\n}\n:host .cds-custom-aichat--error-icon{\n fill:var(--cds-support-error, #da1e28);\n vertical-align:middle;\n}\n:host .cds-custom-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-custom-aichat--hydrating-container{\n display:flex;\n overflow:hidden;\n flex-direction:column;\n block-size:100%;\n}\n:host .cds-custom-aichat--hydrating{\n display:flex;\n align-items:center;\n justify-content:center;\n block-size:100%;\n}\n:host .cds-custom-aichat--hydrating.cds-custom-aichat--hydrating--home-screen circle{\n stroke:var(--cds-text-primary, #161616);\n}\n:host .cds-custom-aichat--hydrating .cds-custom-aichat--loading-spinner{\n block-size:48px;\n inline-size:48px;\n margin-block-start:-64px;\n}\n:host .cds-custom-aichat--hydrating .cds-custom-aichat--loading-spinner path{\n stroke:var(--cds-interactive, #0f62fe);\n}\n:host .cds-custom-aichat--widget--max-width .cds-custom-aichat--hydrating.cds-custom-aichat--panel-content{\n max-inline-size:100%;\n}\n:host{\n}\n:host .cds-custom-aichat--overlay-panel--disclaimer_panel{\n z-index:99;\n}\n:host .cds-custom-aichat--overlay-panel--custom_panel{\n z-index:95;\n}\n:host .cds-custom-aichat--overlay-panel--panel_response{\n z-index:94;\n}\n:host .cds-custom-aichat--overlay-panel--button_response_panel{\n z-index:93;\n}\n:host .cds-custom-aichat--overlay-panel--hydrating_panel{\n z-index:90;\n}\n:host .cds-custom-aichat--overlay-panel--catastrophic_panel{\n z-index:80;\n}\n:host .cds-custom-aichat--overlay-panel--home_screen_panel{\n z-index:30;\n}\n:host .cds-custom-aichat--overlay-panel--conversational_search_citation_panel{\n z-index:6;\n}\n:host .cds-custom-aichat--overlay-panel--iframe_panel{\n z-index:5;\n}\n:host .cds-custom-aichat--overlay-panel-container{\n position:absolute;\n block-size:100%;\n inline-size:100%;\n inset-block-start:0;\n}\n:host .cds-custom-aichat--overlay-panel-container--animating{\n overflow:hidden;\n}\n:host .cds-custom-aichat--widget--rounded .cds-custom-aichat--overlay--covering.cds-custom-aichat--overlay-panel-container .cds-custom-aichat--header--content{\n border-start-end-radius:0.5rem;\n border-start-start-radius:0.5rem;\n}\n:host .cds-custom-aichat--widget--rounded .cds-custom-aichat--wide-width .cds-custom-aichat--overlay--covering .cds-custom-aichat--header__left-buttons{\n border-start-start-radius:0.5rem;\n}\n:host .cds-custom-aichat--widget--rounded .cds-custom-aichat--wide-width .cds-custom-aichat--overlay--covering .cds-custom-aichat--header__right-buttons{\n border-start-end-radius:0.5rem;\n}\n:host .cds-custom-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-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--overlay-panel{\n inset-inline:unset 0;\n text-align:end;\n}\n:host .cds-custom-aichat--overlay-panel--closed{\n display:none;\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-custom-aichat--overlay-panel--opening--fade-in{\n animation:none;\n }\n}\n:host .cds-custom-aichat--overlay-panel--opening--fade-in{\n animation:240ms cubic-bezier(0, 0, 0.3, 1) cds-custom-aichat-fade-in both;\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-custom-aichat--overlay-panel--opening--slide-in-from-left{\n animation:none;\n }\n}\n:host .cds-custom-aichat--overlay-panel--opening--slide-in-from-left{\n animation:240ms cubic-bezier(0, 0, 0.3, 1) cds-custom-aichat-slide-in-from-left both;\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-custom-aichat--overlay-panel--opening--slide-in-from-right{\n animation:none;\n }\n}\n:host .cds-custom-aichat--overlay-panel--opening--slide-in-from-right{\n animation:240ms cubic-bezier(0, 0, 0.3, 1) cds-custom-aichat-slide-in-from-right both;\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-custom-aichat--container--render[dir=rtl] .cds-custom-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-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--overlay-panel--opening--slide-in-from-left{\n animation:240ms cubic-bezier(0, 0, 0.3, 1) cds-custom-aichat-slide-in-from-right both;\n }\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-custom-aichat--container--render[dir=rtl] .cds-custom-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-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--overlay-panel--opening--slide-in-from-right{\n animation:240ms cubic-bezier(0, 0, 0.3, 1) cds-custom-aichat-slide-in-from-left both;\n }\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-custom-aichat--overlay-panel--opening--slide-in-from-bottom{\n animation:none;\n }\n}\n:host .cds-custom-aichat--overlay-panel--opening--slide-in-from-bottom{\n animation:240ms cubic-bezier(0.4, 0.14, 1, 1) cds-custom-aichat-slide-in-from-bottom both;\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-custom-aichat--overlay-panel--closing--fade-out{\n animation:none;\n }\n}\n:host .cds-custom-aichat--overlay-panel--closing--fade-out{\n animation:240ms cubic-bezier(0.4, 0.14, 1, 1) cds-custom-aichat-fade-out both;\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-custom-aichat--overlay-panel--closing--slide-out-to-left{\n animation:none;\n }\n}\n:host .cds-custom-aichat--overlay-panel--closing--slide-out-to-left{\n animation:150ms cubic-bezier(0.4, 0.14, 1, 1) cds-custom-aichat-slide-out-to-left both;\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-custom-aichat--overlay-panel--closing--slide-out-to-right{\n animation:none;\n }\n}\n:host .cds-custom-aichat--overlay-panel--closing--slide-out-to-right{\n animation:150ms cubic-bezier(0.4, 0.14, 1, 1) cds-custom-aichat-slide-out-to-right both;\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-custom-aichat--overlay-panel--closing--slide-out-to-top{\n animation:none;\n }\n}\n:host .cds-custom-aichat--overlay-panel--closing--slide-out-to-top{\n animation:150ms cubic-bezier(0.4, 0.14, 1, 1) cds-custom-aichat-slide-out-to-top both;\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-custom-aichat--container--render[dir=rtl] .cds-custom-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-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--overlay-panel--closing--slide-out-to-left{\n animation:150ms cubic-bezier(0.4, 0.14, 1, 1) cds-custom-aichat-slide-out-to-right both;\n }\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-custom-aichat--container--render[dir=rtl] .cds-custom-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-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--overlay-panel--closing--slide-out-to-right{\n animation:150ms cubic-bezier(0.4, 0.14, 1, 1) cds-custom-aichat-slide-out-to-left both;\n }\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-custom-aichat--overlay-panel--closing--slide-out-to-bottom{\n animation:none;\n }\n}\n:host .cds-custom-aichat--overlay-panel--closing--slide-out-to-bottom{\n animation:150ms cubic-bezier(0.4, 0.14, 1, 1) cds-custom-aichat-slide-out-to-bottom both;\n}\n:host{\n}\n:host .cds-custom-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-custom-aichat--standard-width .cds-custom-aichat--conversational-search + .cds-custom-aichat--response-stopped,\n:host .cds-custom-aichat--wide-width .cds-custom-aichat--conversational-search + .cds-custom-aichat--response-stopped{\n padding-inline-start:56px;\n}\n:host .cds-custom-aichat--narrow-width .cds-custom-aichat--conversational-search + .cds-custom-aichat--response-stopped{\n padding-inline-start:16px;\n}\n:host{\n}\n:host .cds-custom-aichat--hidden{\n display:none;\n}\n:host .cds-custom-aichat--widget__break-word{\n overflow-wrap:break-word;\n word-break:break-word;\n word-wrap:break-word;\n}\n:host .cds-custom-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-custom-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-custom-aichat--container--render[dir=rtl]{\n direction:rtl;\n}\n:host .cds-custom-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-custom-aichat--widget__region-container{\n block-size:100%;\n inline-size:100%;\n}\n:host .cds-custom-aichat--modal-host{\n position:fixed;\n z-index:calc(var(--cds-custom-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-custom-aichat--modal-host:has(> *){\n pointer-events:auto;\n}\n:host .cds-custom-aichat--modal-host > *{\n pointer-events:auto;\n}\n:host .cds-custom-aichat--widget{\n position:relative;\n display:flex;\n flex-direction:column;\n block-size:100%;\n box-shadow:var(--cds-custom-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-custom-aichat--header{\n background-color:var(--cds-chat-header-background, #ffffff);\n}\n:host .cds-custom-aichat--ai-theme .cds-custom-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-custom-aichat-ai-box-shadow-outer, 0 4px 10px 2px var(--cds-ai-drop-shadow, rgba(15, 98, 254, 0.1)));\n}\n:host .cds-custom-aichat--frameless .cds-custom-aichat--widget{\n border:none;\n box-shadow:none;\n}\n:host{\n}\n:host .cds-custom-aichat--widget .cds-custom-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-custom-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-custom-aichat--widget.cds-custom-aichat--widget--rounded{\n border-radius:var(--cds-custom-aichat-border-radius, 0px);\n}\n:host .cds-custom-aichat--widget.cds-custom-aichat--widget--rounded .cds-custom-aichat--view-source-panel,\n:host .cds-custom-aichat--widget.cds-custom-aichat--widget--rounded .cds-custom-aichat--home-screen,\n:host .cds-custom-aichat--widget.cds-custom-aichat--widget--rounded .cds-custom-aichat--confirm-modal,\n:host .cds-custom-aichat--widget.cds-custom-aichat--widget--rounded .cds-custom-aichat--widget__animation-container,\n:host .cds-custom-aichat--widget.cds-custom-aichat--widget--rounded .cds-custom-aichat--assistant-container,\n:host .cds-custom-aichat--widget.cds-custom-aichat--widget--rounded .cds-custom-aichat--overlay-panel,\n:host .cds-custom-aichat--widget.cds-custom-aichat--widget--rounded .cds-custom-aichat--overlay-panel-container,\n:host .cds-custom-aichat--widget.cds-custom-aichat--widget--rounded .cds-custom-aichat--hydrating-container{\n border-end-end-radius:calc(var(--cds-custom-aichat-border-radius, 0px) - 1px);\n border-end-start-radius:calc(var(--cds-custom-aichat-border-radius, 0px) - 1px);\n border-start-end-radius:calc(var(--cds-custom-aichat-border-radius, 0px) - 1px);\n border-start-start-radius:calc(var(--cds-custom-aichat-border-radius, 0px) - 1px);\n}\n:host .cds-custom-aichat--widget.cds-custom-aichat--widget--rounded{\n}\n:host .cds-custom-aichat--widget.cds-custom-aichat--widget--rounded .cds-custom-aichat--header{\n border-start-end-radius:calc(var(--cds-custom-aichat-border-radius, 0px) - 1px);\n border-start-start-radius:calc(var(--cds-custom-aichat-border-radius, 0px) - 1px);\n}\n:host .cds-custom-aichat--widget.cds-custom-aichat--widget--rounded{\n}\n:host .cds-custom-aichat--widget.cds-custom-aichat--widget--rounded .cds-custom-aichat--input-container{\n border-end-end-radius:calc(var(--cds-custom-aichat-border-radius, 0px) - 1px);\n border-end-start-radius:calc(var(--cds-custom-aichat-border-radius, 0px) - 1px);\n}\n:host{\n}\n:host .cds-custom-aichat--grid .cds-custom-aichat--image,\n:host .cds-custom-aichat--grid .cds-custom-aichat--media-player,\n:host .cds-custom-aichat--grid .cds-custom-aichat--media-player__skeleton,\n:host .cds-custom-aichat--body-message-components__message-wrapper .cds-custom-aichat--image,\n:host .cds-custom-aichat--body-message-components__message-wrapper .cds-custom-aichat--media-player,\n:host .cds-custom-aichat--body-message-components__message-wrapper .cds-custom-aichat--media-player__skeleton{\n border-radius:0;\n}\n:host .cds-custom-aichat--widget.cds-custom-aichat--widget--closed .cds-custom-aichat--widget__animation-container{\n overflow:hidden;\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-custom-aichat--widget.cds-custom-aichat--widget--launched.cds-custom-aichat--widget--default-element{\n animation:none;\n }\n}\n:host .cds-custom-aichat--widget.cds-custom-aichat--widget--launched.cds-custom-aichat--widget--default-element:not(.cds-custom-aichat---is-phone){\n animation:cds-custom-aichat-widget-in 240ms cubic-bezier(0, 0, 0.3, 1) both;\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-custom-aichat--widget.cds-custom-aichat--widget--closing.cds-custom-aichat--widget--default-element{\n animation:none;\n }\n}\n:host .cds-custom-aichat--widget.cds-custom-aichat--widget--closing.cds-custom-aichat--widget--default-element{\n animation:cds-custom-aichat-widget-out 110ms cubic-bezier(0.4, 0.14, 1, 1) both;\n}\n:host .cds-custom-aichat--widget.cds-custom-aichat--widget.cds-custom-aichat--widget--closed,\n:host .cds-custom-aichat--ai-theme .cds-custom-aichat--widget.cds-custom-aichat--widget.cds-custom-aichat--widget--closed{\n border:none;\n box-shadow:none;\n}\n:host{\n}\n:host .cds-custom-aichat--widget.cds-custom-aichat--widget--closed{\n display:none;\n}\n:host{\n}\n:host .cds-custom-aichat--widget.cds-custom-aichat--widget--default-element{\n position:fixed;\n z-index:var(--cds-custom-aichat-z-index, 99999);\n block-size:var(--cds-custom-aichat-height, calc(100vh - 2 * 2rem));\n inline-size:var(--cds-custom-aichat-width, min(380px, var(--cds-custom-aichat-max-width, 672px)));\n inset:var(--cds-custom-aichat-top-position, auto) var(--cds-custom-aichat-right-position, 2rem) var(--cds-custom-aichat-bottom-position, 3rem) var(--cds-custom-aichat-left-position, auto);\n max-block-size:var(--cds-custom-aichat-max-height, 640px);\n max-inline-size:var(--cds-custom-aichat-max-width, 672px);\n min-block-size:var(--cds-custom-aichat-min-height, 150px);\n}\n:host .cds-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--widget.cds-custom-aichat--widget--default-element{\n inset-inline:var(--cds-custom-aichat-right-position, 2rem) var(--cds-custom-aichat-left-position, auto);\n}\n:host .cds-custom-aichat---is-phone:not(.cds-custom-aichat--container-disable-mobile-enhancements) .cds-custom-aichat--widget{\n position:fixed;\n z-index:var(--cds-custom-aichat-z-index, 99999);\n block-size:var(--cds-custom-aichat-height, calc(100vh - 2 * 2rem));\n inline-size:var(--cds-custom-aichat-width, min(380px, var(--cds-custom-aichat-max-width, 672px)));\n inset:var(--cds-custom-aichat-top-position, auto) var(--cds-custom-aichat-right-position, 2rem) var(--cds-custom-aichat-bottom-position, 3rem) var(--cds-custom-aichat-left-position, auto);\n max-block-size:var(--cds-custom-aichat-max-height, 640px);\n min-block-size:var(--cds-custom-aichat-min-height, 150px);\n}\n:host .cds-custom-aichat---is-phone:not(.cds-custom-aichat--container-disable-mobile-enhancements) .cds-custom-aichat--widget.cds-custom-aichat--widget--launched.cds-custom-aichat--widget--default-element{\n animation:cds-custom-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-custom-aichat---is-phone[dir=rtl]:not(.cds-custom-aichat--container-disable-mobile-enhancements) .cds-custom-aichat--widget{\n inset-inline:var(--cds-custom-aichat-right-position, 2rem) var(--cds-custom-aichat-left-position, auto);\n}\n:host .cds-custom-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-custom-aichat--widget--rounded .cds-custom-aichat{\n border-radius:calc(var(--cds-custom-aichat-border-radius, 0px) - 1px);\n}\n:host .cds-custom-aichat--ai-theme .cds-custom-aichat{\n background-image:var(--cds-custom-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-custom-aichat-ai-box-shadow-inner, inset 0 -80px 70px -65px var(--cds-ai-inner-shadow, rgba(69, 137, 255, 0.1))), var(--cds-custom-aichat-ai-box-shadow-outer, 0 4px 10px 2px var(--cds-ai-drop-shadow, rgba(15, 98, 254, 0.1)));\n}\n:host .cds-custom-aichat--frameless.cds-custom-aichat--ai-theme .cds-custom-aichat{\n box-shadow:var(--cds-custom-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-custom-aichat.cds-custom-aichat--human-agent-app{\n min-inline-size:unset;\n}\n:host .cds-custom-aichat--main-window,\n:host .cds-custom-aichat--widget__layer{\n block-size:100%;\n inline-size:100%;\n}\n:host .cds-custom-aichat--widget__focus-trap-glass{\n position:fixed;\n z-index:var(--cds-custom-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-custom-aichat--icon__logout--reverse{\n transform:scaleX(-1);\n}\n:host .cds-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--icon__logout--reverse{\n transform:none;\n}\n:host .cds-custom-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-custom-aichat--container--render .cds-custom-aichat--reverse-icon svg,\n:host .cds-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--direction-has-reversible-svg svg{\n transform:scaleX(-1);\n}\n:host{\n}\n:host .cds-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--direction-has-reversible-svg.cds-custom-aichat--reverse-icon svg{\n transform:scaleX(1);\n}\n:host{\n}\n:host .cds-custom-aichat--panel-content{\n overflow:hidden;\n}\n:host .cds-custom-aichat--widget--max-width{\n --cds-custom-aichat-border-radius:0;\n}\n:host .cds-custom-aichat--widget--max-width .cds-custom-aichat--panel-content{\n flex:1;\n margin:auto;\n block-size:100%;\n inline-size:100%;\n max-inline-size:var(--cds-custom-aichat-max-width, 672px);\n}\n:host{\n}\n:host .cds-custom-aichat--widget--rounded .cds-custom-aichat--body-and-footer-component{\n border-end-end-radius:calc(var(--cds-custom-aichat-border-radius, 0px) - 1px);\n border-end-start-radius:calc(var(--cds-custom-aichat-border-radius, 0px) - 1px);\n border-start-end-radius:calc(var(--cds-custom-aichat-border-radius, 0px) - 1px);\n border-start-start-radius:calc(var(--cds-custom-aichat-border-radius, 0px) - 1px);\n}\n:host .cds-custom-aichat--widget--rounded .cds-custom-aichat--panel-content{\n border-end-end-radius:calc(var(--cds-custom-aichat-border-radius, 0px) - 1px);\n border-end-start-radius:calc(var(--cds-custom-aichat-border-radius, 0px) - 1px);\n}\n:host{\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-custom-aichat--message{\n position:relative;\n display:block;\n margin:0;\n animation:none;\n }\n}\n:host .cds-custom-aichat--message{\n position:relative;\n display:block;\n margin:0;\n animation:cds-custom-aichat-fade-in 240ms cubic-bezier(0, 0, 0.38, 0.9) forwards;\n}\n:host .cds-custom-aichat--message.cds-custom-aichat--message--no-animation{\n animation:none;\n}\n:host .cds-custom-aichat--message.cds-custom-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-custom-aichat--message.cds-custom-aichat--message--first-message.cds-custom-aichat--message--has-focus::after{\n block-size:calc(100% - 0.5rem);\n inset-block-start:0.5rem;\n}\n:host .cds-custom-aichat--message--with-avatar-line.cds-custom-aichat--message--response.cds-custom-aichat--message--last-message:not(.cds-custom-aichat--with-human-agent){\n min-block-size:calc(100% - 88px);\n}\n:host .cds-custom-aichat--message.cds-custom-aichat--message--last-message.cds-custom-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-custom-aichat--message .cds-custom-aichat--message-vertical-padding,\n:host .cds-custom-aichat--message .cds-custom-aichat--ui-customization-element--response{\n padding-block-start:1rem;\n}\n:host .cds-custom-aichat--message--with-avatar-line .cds-custom-aichat--message-vertical-padding,\n:host .cds-custom-aichat--message--with-avatar-line .cds-custom-aichat--ui-customization-element--response,\n:host .cds-custom-aichat--message--option-response-without-title-or-description .cds-custom-aichat--message-vertical-padding{\n padding-block-start:0;\n}\n:host .cds-custom-aichat--message--option-response-without-title-or-description .cds-custom-aichat--ui-customization-element--response{\n padding-block-start:0;\n}\n:host .cds-custom-aichat--message.cds-custom-aichat--message--custom .cds-custom-aichat--message-vertical-padding,\n:host .cds-custom-aichat--message.cds-custom-aichat--message--custom .cds-custom-aichat--ui-customization-element--response{\n padding-block:0;\n}\n:host .cds-custom-aichat--message__avatar-line + .cds-custom-aichat--message--padding .cds-custom-aichat--assistant-message > div.cds-custom-aichat--received,\n:host .cds-custom-aichat--message__avatar-line + .cds-custom-aichat--message--padding .cds-custom-aichat--assistant-message > div.cds-custom-aichat--received.cds-custom-aichat--received--carousel:not(.cds-custom-aichat--received--carousel-single):first-child,\n:host .cds-custom-aichat--message__avatar-line + .cds-custom-aichat--message--padding .cds-custom-aichat--assistant-message > div.cds-custom-aichat--received.cds-custom-aichat--received--full-width:first-child{\n margin-block-start:0.5rem;\n}\n:host .cds-custom-aichat--message.cds-custom-aichat--message--last-message .cds-custom-aichat--message--padding{\n padding-block-end:1.5rem;\n}\n:host .cds-custom-aichat--sent-container{\n display:flex;\n justify-content:flex-end;\n}\n:host .cds-custom-aichat--message .cds-custom-aichat--received,\n:host .cds-custom-aichat--message .cds-custom-aichat--sent-container{\n flex-grow:1;\n margin-inline:1rem;\n min-inline-size:0;\n}\n:host .cds-custom-aichat--wide-width .cds-custom-aichat--message .cds-custom-aichat--received.cds-custom-aichat--received--conversational-search,\n:host .cds-custom-aichat--wide-width .cds-custom-aichat--message .cds-custom-aichat--received.cds-custom-aichat--received--search,\n:host .cds-custom-aichat--wide-width .cds-custom-aichat--message .cds-custom-aichat--received--carousel:not(.cds-custom-aichat--received--carousel-single),\n:host .cds-custom-aichat--wide-width .cds-custom-aichat--message .cds-custom-aichat--received.cds-custom-aichat--received--full-width,\n:host .cds-custom-aichat--narrow-width .cds-custom-aichat--message .cds-custom-aichat--received.cds-custom-aichat--received--conversational-search,\n:host .cds-custom-aichat--narrow-width .cds-custom-aichat--message .cds-custom-aichat--received.cds-custom-aichat--received--search,\n:host .cds-custom-aichat--narrow-width .cds-custom-aichat--message .cds-custom-aichat--received--carousel:not(.cds-custom-aichat--received--carousel-single),\n:host .cds-custom-aichat--narrow-width .cds-custom-aichat--message .cds-custom-aichat--received.cds-custom-aichat--received--full-width,\n:host .cds-custom-aichat--standard-width .cds-custom-aichat--message .cds-custom-aichat--received.cds-custom-aichat--received--conversational-search,\n:host .cds-custom-aichat--standard-width .cds-custom-aichat--message .cds-custom-aichat--received.cds-custom-aichat--received--search,\n:host .cds-custom-aichat--standard-width .cds-custom-aichat--message .cds-custom-aichat--received--carousel:not(.cds-custom-aichat--received--carousel-single),\n:host .cds-custom-aichat--standard-width .cds-custom-aichat--message .cds-custom-aichat--received.cds-custom-aichat--received--full-width{\n margin-inline:0 1rem;\n}\n:host .cds-custom-aichat--message a:not(button){\n color:var(--cds-link-primary, #0f62fe);\n outline:none;\n text-decoration:none;\n}\n:host .cds-custom-aichat--message a:visited:not(button){\n color:var(--cds-link-primary, #0f62fe);\n}\n:host .cds-custom-aichat--message a:hover:not(button){\n text-decoration:underline;\n}\n:host .cds-custom-aichat--message a:focus:not(button){\n text-decoration:underline;\n}\n:host .cds-custom-aichat--message::after{\n display:table;\n clear:both;\n content:\"\";\n}\n:host .cds-custom-aichat--messages--welcome.cds-custom-aichat--messages--welcome--typing{\n min-block-size:100%;\n}\n:host .cds-custom-aichat--assistant-message{\n position:relative;\n display:flex;\n flex-direction:row;\n max-inline-size:100%;\n}\n:host .cds-custom-aichat--received--inline-error,\n:host .cds-custom-aichat--received--text,\n:host .cds-custom-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-custom-aichat--message-user-defined-response{\n max-inline-size:100%;\n}\n:host .cds-custom-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-custom-aichat--received--video,\n:host .cds-custom-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-custom-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-custom-aichat--message-status{\n display:flex;\n align-items:center;\n margin-inline:8px;\n}\n:host{\n}\n:host .cds-custom-aichat--sent-and-message-state--below-message{\n display:flex;\n flex-direction:column;\n align-items:flex-end;\n}\n:host .cds-custom-aichat--sent-and-message-state--below-message .cds-custom-aichat--message-status{\n margin-inline:0;\n padding-block-start:0.5rem;\n}\n:host{\n}\n:host .cds-custom-aichat--message-status .cds-custom-aichat--loading-spinner circle{\n stroke-width:6;\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-custom-aichat--sent-container .cds-custom-aichat--message-status-file-success svg{\n animation:none;\n fill:var(--cds-interactive, #0f62fe);\n }\n}\n:host .cds-custom-aichat--sent-container .cds-custom-aichat--message-status-file-success svg{\n animation:150ms cubic-bezier(0.4, 0.14, 1, 1) 2000ms cds-custom-chat-fade-out forwards;\n fill:var(--cds-interactive, #0f62fe);\n}\n:host .cds-custom-aichat--received--loading,\n:host .cds-custom-aichat--search-result,\n:host .cds-custom-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-custom-aichat--received--loading .cds-custom-aichat--received--inner{\n position:relative;\n}\n:host .cds-custom-aichat--sent--text > span{\n flex:1;\n white-space:pre-wrap;\n}\n:host .cds-custom-aichat--sent--text{\n display:flex;\n}\n:host svg.cds-custom-aichat--sent-file-icon{\n margin-inline-end:8px;\n}\n:host .cds-custom-aichat--sent{\n display:flex;\n flex-direction:column;\n inline-size:100%;\n}\n:host .cds-custom-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-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--sent--bubble{\n border-radius:0 0.5rem 0.5rem 0.5rem;\n}\n:host .cds-custom-aichat--received--options,\n:host .cds-custom-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-custom-aichat--received--iframe-preview-card{\n overflow:hidden;\n inline-size:100%;\n}\n:host .cds-custom-aichat--assistant-message .cds-custom-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-custom-aichat--assistant-message .cds-custom-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-custom-aichat--message--system-message{\n padding-block-start:28px;\n}\n:host .cds-custom-aichat--message__avatar-line{\n display:flex;\n padding-block-start:28px;\n}\n:host .cds-custom-aichat--message__avatar-line .cds-custom-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-custom-aichat--message__avatar-line .cds-custom-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-custom-aichat--message__avatar-line .cds-custom-aichat--message__avatar--assistant svg{\n block-size:28px;\n inline-size:28px;\n}\n:host .cds-custom-aichat--message__avatar-line .cds-custom-aichat--image-with-fallback{\n display:flex;\n}\n:host .cds-custom-aichat--message__avatar-line .cds-custom-aichat--image-with-fallback img,\n:host .cds-custom-aichat--message__avatar-line .cds-custom-aichat--image-with-fallback .cds-custom-aichat--icon-holder{\n border-radius:14px;\n block-size:28px;\n inline-size:28px;\n}\n:host .cds-custom-aichat--message__avatar-line .cds-custom-aichat--image-with-fallback img svg,\n:host .cds-custom-aichat--message__avatar-line .cds-custom-aichat--image-with-fallback .cds-custom-aichat--icon-holder svg{\n block-size:16px;\n fill:var(--cds-icon-inverse, #ffffff);\n inline-size:16px;\n}\n:host .cds-custom-aichat--message--request .cds-custom-aichat--message__avatar-line{\n justify-content:flex-end;\n padding-inline-end:1rem;\n}\n:host .cds-custom-aichat--message--request .cds-custom-aichat--message__avatar-line .cds-custom-aichat--message__label{\n padding-block-end:0.5rem;\n padding-inline-start:0.5rem;\n}\n:host{\n}\n:host .cds-custom-aichat--message--response .cds-custom-aichat--message__avatar-line{\n padding-inline-start:0.5rem;\n}\n:host .cds-custom-aichat--message--response .cds-custom-aichat--message__avatar-line .cds-custom-aichat--message__label{\n padding-block:0.5rem;\n padding-inline:0.5rem;\n}\n:host .cds-custom-aichat--message--response:not(.cds-custom-aichat--message--system-message).cds-custom-aichat--message--agent-message + .cds-custom-aichat--message--response:not(.cds-custom-aichat--message--system-message).cds-custom-aichat--message--agent-message,\n:host .cds-custom-aichat--message--request + .cds-custom-aichat--message--request{\n padding-block-start:0.5rem;\n}\n:host .cds-custom-aichat--message--response:not(.cds-custom-aichat--message--system-message).cds-custom-aichat--message--agent-message + .cds-custom-aichat--message--response:not(.cds-custom-aichat--message--system-message).cds-custom-aichat--message--agent-message .cds-custom-aichat--message__avatar-line,\n:host .cds-custom-aichat--message--request + .cds-custom-aichat--message--request .cds-custom-aichat--message__avatar-line{\n display:none;\n}\n:host .cds-custom-aichat--message--response:not(.cds-custom-aichat--message--system-message).cds-custom-aichat--message--agent-message + .cds-custom-aichat--message--response:not(.cds-custom-aichat--message--system-message).cds-custom-aichat--message--agent-message .cds-custom-aichat--received--from-human,\n:host .cds-custom-aichat--message--response:not(.cds-custom-aichat--message--system-message).cds-custom-aichat--message--agent-message + .cds-custom-aichat--message--response:not(.cds-custom-aichat--message--system-message).cds-custom-aichat--message--agent-message .cds-custom-aichat--sent--bubble,\n:host .cds-custom-aichat--message--request + .cds-custom-aichat--message--request .cds-custom-aichat--received--from-human,\n:host .cds-custom-aichat--message--request + .cds-custom-aichat--message--request .cds-custom-aichat--sent--bubble{\n border-radius:0.5rem;\n}\n:host .cds-custom-aichat--message--response:not(.cds-custom-aichat--message--agent-message) .cds-custom-aichat--message__avatar-line + .cds-custom-aichat--message--padding{\n padding-block-start:0.25rem;\n}\n:host .cds-custom-aichat--message__avatar--agent .cds-custom-aichat--image-with-fallback .cds-custom-aichat--icon-holder{\n background-color:var(--cds-chat-avatar-agent, #393939);\n}\n:host .cds-custom-aichat--received--from-human.cds-custom-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-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--received--from-agent.cds-custom-aichat--received--text{\n border-radius:0.5rem 0 0.5rem 0.5rem;\n}\n:host .cds-custom-aichat--message__avatar--assistant .cds-custom-aichat--image-with-fallback .cds-custom-aichat--icon-holder{\n background-color:var(--cds-chat-avatar-bot, #6f6f6f);\n}\n:host{\n}\n:host .cds-custom-aichat--standard-width .cds-custom-aichat--message__avatar-line + .cds-custom-aichat--message--padding .cds-custom-aichat--assistant-message > div.cds-custom-aichat--received,\n:host .cds-custom-aichat--wide-width .cds-custom-aichat--message__avatar-line + .cds-custom-aichat--message--padding .cds-custom-aichat--assistant-message > div.cds-custom-aichat--received{\n margin-block-start:0;\n}\n:host .cds-custom-aichat--standard-width .cds-custom-aichat--message .cds-custom-aichat--received.cds-custom-aichat--received--agent-status-message,\n:host .cds-custom-aichat--wide-width .cds-custom-aichat--message .cds-custom-aichat--received.cds-custom-aichat--received--agent-status-message{\n margin-inline:0;\n}\n:host{\n}\n:host .cds-custom-aichat--wide-width .cds-custom-aichat--message .cds-custom-aichat--received,\n:host .cds-custom-aichat--standard-width .cds-custom-aichat--message .cds-custom-aichat--received,\n:host .cds-custom-aichat--wide-width .cds-custom-aichat--message .cds-custom-aichat--sent-container,\n:host .cds-custom-aichat--standard-width .cds-custom-aichat--message .cds-custom-aichat--sent-container{\n margin-inline:calc(0.5rem + 2rem + 0.5rem) 1rem;\n}\n:host{\n}\n:host .cds-custom-aichat--messages--holder{\n display:flex;\n overflow:hidden;\n flex:1;\n flex-direction:column;\n}\n:host .cds-custom-aichat--messages__wrapper{\n position:relative;\n overflow:hidden;\n flex:1;\n inline-size:100%;\n}\n:host .cds-custom-aichat--messages__wrapper:focus{\n outline:none;\n}\n:host .cds-custom-aichat--message--focus-handle,\n:host .cds-custom-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-custom-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-custom-aichat--messages{\n overflow:hidden auto;\n block-size:100%;\n inline-size:100%;\n}\n:host .cds-custom-aichat-scrollDownIndicatorIcon{\n position:absolute;\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-custom-aichat-scrollDownIndicatorIcon:active{\n background-color:var(--cds-button-secondary-active, #6f6f6f);\n}\n:host .cds-custom-aichat-scrollDownIndicatorIcon:hover{\n background-color:var(--cds-button-secondary-hover, #474747);\n}\n:host .cds-custom-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-custom--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-custom--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-custom--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-custom--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-custom--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-custom--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-custom--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-custom--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-custom--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-custom--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-custom--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-custom--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-custom-tile{\n border:1px solid var(--cds-chat-bubble-border, #e0e0e0);\n border-radius:0.5rem;\n}\n:host .cds-custom-aichat--light cds-custom-tile,\n:host .cds-custom--white cds-custom-tile,\n:host .cds-custom--g10 cds-custom-tile{\n background-color:#ffffff;\n}\n:host .cds-custom-aichat--dark,\n:host .cds-custom--g90,\n:host .cds-custom--g100{\n scrollbar-color:var(--cds-layer-03) var(--cds-layer-01);\n}\n:host .cds-custom-aichat--dark cds-custom-tile,\n:host .cds-custom--g90 cds-custom-tile,\n:host .cds-custom--g100 cds-custom-tile{\n background-color:#262626;\n}";
17092
+ var css_248z = ".cds-custom--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-custom--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-custom--layout-constraint--size__min-xs{\n --cds-layout-size-height-min:var(--cds-layout-size-height-xs, 1.5rem);\n}\n\n.cds-custom--layout-constraint--size__max-xs{\n --cds-layout-size-height-max:var(--cds-layout-size-height-xs, 1.5rem);\n}\n\n.cds-custom--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-custom--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-custom--layout-constraint--size__min-sm{\n --cds-layout-size-height-min:var(--cds-layout-size-height-sm, 2rem);\n}\n\n.cds-custom--layout-constraint--size__max-sm{\n --cds-layout-size-height-max:var(--cds-layout-size-height-sm, 2rem);\n}\n\n.cds-custom--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-custom--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-custom--layout-constraint--size__min-md{\n --cds-layout-size-height-min:var(--cds-layout-size-height-md, 2.5rem);\n}\n\n.cds-custom--layout-constraint--size__max-md{\n --cds-layout-size-height-max:var(--cds-layout-size-height-md, 2.5rem);\n}\n\n.cds-custom--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-custom--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-custom--layout-constraint--size__min-lg{\n --cds-layout-size-height-min:var(--cds-layout-size-height-lg, 3rem);\n}\n\n.cds-custom--layout-constraint--size__max-lg{\n --cds-layout-size-height-max:var(--cds-layout-size-height-lg, 3rem);\n}\n\n.cds-custom--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-custom--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-custom--layout-constraint--size__min-xl{\n --cds-layout-size-height-min:var(--cds-layout-size-height-xl, 4rem);\n}\n\n.cds-custom--layout-constraint--size__max-xl{\n --cds-layout-size-height-max:var(--cds-layout-size-height-xl, 4rem);\n}\n\n.cds-custom--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-custom--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-custom--layout-constraint--size__min-2xl{\n --cds-layout-size-height-min:var(--cds-layout-size-height-2xl, 5rem);\n}\n\n.cds-custom--layout-constraint--size__max-2xl{\n --cds-layout-size-height-max:var(--cds-layout-size-height-2xl, 5rem);\n}\n\n.cds-custom--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-custom--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-custom--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-custom--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-custom--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-custom--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-custom--layout-constraint--density__min-normal{\n --cds-layout-density-padding-inline-min:var(--cds-layout-density-padding-inline-normal, 1rem);\n}\n\n.cds-custom--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-custom-aichat-fade-in{\n 0%{\n opacity:0;\n }\n 100%{\n opacity:1;\n }\n}\n@keyframes cds-custom-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-custom-aichat-fade-out{\n 0%{\n opacity:1;\n }\n 100%{\n opacity:0;\n }\n}\n@keyframes cds-custom-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-custom-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-custom-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-custom-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-custom-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-custom-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-custom-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-custom-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-custom-aichat-widget-in{\n 0%{\n inset-block-end:0;\n opacity:0;\n }\n 100%{\n inset-block-end:var(--cds-custom-aichat-bottom-position, 3rem);\n opacity:1;\n }\n}\n@keyframes cds-custom-aichat-widget-in-mobile{\n 0%{\n opacity:0;\n }\n 100%{\n opacity:1;\n }\n}\n@keyframes cds-custom-aichat-widget-out{\n 0%{\n opacity:1;\n }\n 100%{\n opacity:0;\n }\n}\n@keyframes cds-custom-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-custom-aichat-launcher-in{\n 0%{\n inset-block-end:calc(var(--cds-custom-aichat-launcher-position-bottom, 3rem) - 1rem);\n opacity:0;\n }\n 100%{\n inset-block-end:var(--cds-custom-aichat-launcher-position-bottom, 3rem);\n opacity:1;\n }\n}\n@keyframes cds-custom-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-custom-aichat-launcher-fade-in-slide-up{\n 0%{\n background:transparent;\n box-shadow:none;\n inset-block-end:calc(2rem + var(--cds-custom-aichat-launcher-default-size, 56px) + var(--cds-custom-aichat-launcher-position-bottom, 3rem) - var(--cds-custom-aichat-launcher-desktop-expanded-height, 320px));\n }\n 30%{\n background:transparent;\n box-shadow:none;\n }\n 100%{\n background:var(--cds-custom-aichat-launcher-expanded-message-color-background, var(--cds-button-primary, #0f62fe));\n box-shadow:var(--cds-custom-aichat-box-shadow, 1px 0 4px hsla(0, 0%, 9%, 0.3));\n inset-block-end:4rem;\n }\n}\n@keyframes cds-custom-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-custom-aichat-launcher-resize-reposition{\n 0%{\n padding:0;\n border-radius:28px;\n block-size:var(--cds-custom-aichat-launcher-default-size, 56px);\n inline-size:var(--cds-custom-aichat-launcher-default-size, 56px);\n inset-block-end:var(--cds-custom-aichat-launcher-position-bottom, 3rem);\n inset-inline-end:var(--cds-custom-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-custom-aichat-launcher-resize-reposition-rtl{\n 0%{\n padding:0;\n border-radius:28px;\n block-size:var(--cds-custom-aichat-launcher-default-size, 56px);\n inline-size:var(--cds-custom-aichat-launcher-default-size, 56px);\n inset-block-end:var(--cds-custom-aichat-launcher-position-bottom, 3rem);\n inset-inline-start:var(--cds-custom-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-custom-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-custom-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-custom-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-custom-aichat-launcher-fade-out-slide-down{\n 0%{\n background:var(--cds-custom-aichat-launcher-expanded-message-color-background, var(--cds-button-primary, #0f62fe));\n box-shadow:var(--cds-custom-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-custom-aichat-launcher-default-size, 56px) + var(--cds-custom-aichat-launcher-position-bottom, 3rem) - var(--cds-custom-aichat-launcher-desktop-expanded-height, 320px));\n }\n}\n@keyframes cds-custom-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-custom-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-custom-aichat-launcher-default-size, 56px);\n inline-size:var(--cds-custom-aichat-launcher-default-size, 56px);\n inset-block-end:var(--cds-custom-aichat-launcher-position-bottom, 3rem);\n inset-inline-end:var(--cds-custom-aichat-launcher-position-right, 2rem);\n }\n}\n@keyframes cds-custom-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-custom-aichat-launcher-default-size, 56px);\n inline-size:var(--cds-custom-aichat-launcher-default-size, 56px);\n inset-block-end:var(--cds-custom-aichat-launcher-position-bottom, 3rem);\n inset-inline-start:var(--cds-custom-aichat-launcher-position-right, 2rem);\n }\n}\n@keyframes cds-custom-aichat-launcher-icon-to-32{\n 0%{\n inline-size:24px;\n }\n 100%{\n inline-size:32px;\n }\n}\n@keyframes cds-custom-aichat-launcher-icon-to-24{\n 0%{\n inline-size:32px;\n }\n 100%{\n inline-size:24px;\n }\n}\n@keyframes cds-custom-aichat-launcher-partially-round{\n 0%{\n border-radius:28px;\n }\n 100%{\n border-radius:14px;\n }\n}\n@keyframes cds-custom-aichat-launcher-completely-round{\n 0%{\n border-radius:14px;\n }\n 100%{\n border-radius:28px;\n }\n}\n@keyframes cds-custom-aichat-launcher-extend{\n 0%{\n inline-size:var(--cds-custom-aichat-launcher-default-size, 56px);\n }\n 100%{\n inline-size:var(--cds-custom-aichat-launcher-extended-width, 280px);\n }\n}\n@keyframes cds-custom-aichat-launcher-reduce{\n 0%{\n inline-size:var(--cds-custom-aichat-launcher-extended-width, 280px);\n }\n 100%{\n inline-size:var(--cds-custom-aichat-launcher-default-size, 56px);\n }\n}\n@keyframes cds-custom-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-custom-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-custom-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-custom-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-custom-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-custom-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-custom-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-custom-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-custom-aichat-widget-in{\n 0%{\n inset-block-end:calc(var(--cds-custom-aichat-bottom-position, 3rem) - 2rem);\n opacity:0;\n }\n 100%{\n inset-block-end:var(--cds-custom-aichat-bottom-position, 3rem);\n opacity:1;\n }\n}\n@keyframes cds-custom-aichat-widget-out{\n 0%{\n opacity:1;\n }\n 100%{\n opacity:0;\n }\n}\n@keyframes cds-custom-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-custom-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-custom-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-custom-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-custom-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-custom-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-custom-aichat--container--render{\n --cds-custom-aichat-max-height:640px;\n --cds-custom-aichat-min-height:max(\n 150px,\n calc(min(256px, 100vh) - var(--cds-custom-aichat-bottom-position))\n );\n --cds-custom-aichat-max-width:672px;\n --cds-custom-aichat-bottom-position:3rem;\n --cds-custom-aichat-right-position:2rem;\n --cds-custom-aichat-top-position:auto;\n --cds-custom-aichat-left-position:auto;\n --cds-custom-aichat-z-index:99999;\n --cds-custom-aichat-border-radius:0;\n --cds-custom-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-custom-aichat-ai-box-shadow-inner:inset 0 -80px 70px -65px var(--cds-ai-inner-shadow, rgba(69, 137, 255, 0.1));\n --cds-custom-aichat-ai-box-shadow-outer:0 4px 10px 2px var(--cds-ai-drop-shadow, rgba(15, 98, 254, 0.1));\n --cds-custom-aichat-card-border-radius:0.5rem;\n --cds-custom-aichat-card-max-width:424px;\n --cds-custom-aichat-box-shadow:1px 0 4px hsl(0deg 0% 9% / 30%);\n --cds-custom-aichat-width:min(380px, var(--cds-custom-aichat-max-width));\n --cds-custom-aichat-height:calc(100vh - (2 * 2rem));\n --cds-custom-aichat-launcher-default-size:56px;\n --cds-custom-aichat-launcher-position-bottom:3rem;\n --cds-custom-aichat-launcher-position-right:2rem;\n --cds-custom-aichat-launcher-extended-width:280px;\n --cds-custom-aichat-launcher-desktop-expanded-height:320px;\n --cds-custom-aichat-launcher-position-bottom-mobile:1rem;\n --cds-custom-aichat-launcher-color-background:var(--cds-button-primary, #0f62fe);\n --cds-custom-aichat-launcher-color-avatar:var(--cds-text-on-color, #ffffff);\n --cds-custom-aichat-launcher-color-background-hover:var(--cds-button-primary-hover, #0050e6);\n --cds-custom-aichat-launcher-color-background-active:var(--cds-button-primary-active, #002d9c);\n --cds-custom-aichat-launcher-color-focus-border:var(--cds-text-on-color, #ffffff);\n --cds-custom-aichat-launcher-mobile-color-text:var(--cds-text-on-color, #ffffff);\n --cds-custom-aichat-launcher-expanded-message-color-text:var(--cds-text-on-color, #ffffff);\n --cds-custom-aichat-launcher-expanded-message-color-background:var(--cds-button-primary, #0f62fe);\n --cds-custom-aichat-launcher-expanded-message-color-background-hover:var(--cds-button-primary-hover, #0050e6);\n --cds-custom-aichat-launcher-expanded-message-color-background-active:var(--cds-button-primary-active, #002d9c);\n --cds-custom-aichat-launcher-expanded-message-color-focus-border:var(--cds-text-on-color, #ffffff);\n --cds-custom-aichat-unread-indicator-color-background:var(--cds-support-error, #da1e28);\n --cds-custom-aichat-unread-indicator-color-text:var(--cds-text-on-color, #ffffff);\n}\n:host .cds-custom-aichat--container--render .cds-custom-aichat--widget--rounded{\n --cds-custom-aichat-border-radius:0.5rem;\n}\n:host .cds-custom-aichat--container--render.cds-custom-aichat---is-phone{\n --cds-custom-aichat-width:calc(100vw - 4px);\n --cds-custom-aichat-height:calc(100vh - 4px);\n --cds-custom-aichat-left-position:2;\n --cds-custom-aichat-top-position:2;\n --cds-custom-aichat-max-height:auto;\n --cds-custom-aichat-min-height:auto;\n --cds-custom-aichat-right-position:auto;\n}\n@supports (height: 100dvh){\n :host .cds-custom-aichat--container--render.cds-custom-aichat---is-phone{\n --cds-custom-aichat-width:calc(100dvw - 4px);\n --cds-custom-aichat-height:calc(100dvh - 4px);\n }\n}\n:host{\n}\n:host .cds-custom--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-custom--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-custom--layout-constraint--size__min-xs{\n --cds-layout-size-height-min:var(--cds-layout-size-height-xs, 1.5rem);\n}\n:host .cds-custom--layout-constraint--size__max-xs{\n --cds-layout-size-height-max:var(--cds-layout-size-height-xs, 1.5rem);\n}\n:host .cds-custom--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-custom--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-custom--layout-constraint--size__min-sm{\n --cds-layout-size-height-min:var(--cds-layout-size-height-sm, 2rem);\n}\n:host .cds-custom--layout-constraint--size__max-sm{\n --cds-layout-size-height-max:var(--cds-layout-size-height-sm, 2rem);\n}\n:host .cds-custom--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-custom--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-custom--layout-constraint--size__min-md{\n --cds-layout-size-height-min:var(--cds-layout-size-height-md, 2.5rem);\n}\n:host .cds-custom--layout-constraint--size__max-md{\n --cds-layout-size-height-max:var(--cds-layout-size-height-md, 2.5rem);\n}\n:host .cds-custom--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-custom--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-custom--layout-constraint--size__min-lg{\n --cds-layout-size-height-min:var(--cds-layout-size-height-lg, 3rem);\n}\n:host .cds-custom--layout-constraint--size__max-lg{\n --cds-layout-size-height-max:var(--cds-layout-size-height-lg, 3rem);\n}\n:host .cds-custom--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-custom--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-custom--layout-constraint--size__min-xl{\n --cds-layout-size-height-min:var(--cds-layout-size-height-xl, 4rem);\n}\n:host .cds-custom--layout-constraint--size__max-xl{\n --cds-layout-size-height-max:var(--cds-layout-size-height-xl, 4rem);\n}\n:host .cds-custom--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-custom--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-custom--layout-constraint--size__min-2xl{\n --cds-layout-size-height-min:var(--cds-layout-size-height-2xl, 5rem);\n}\n:host .cds-custom--layout-constraint--size__max-2xl{\n --cds-layout-size-height-max:var(--cds-layout-size-height-2xl, 5rem);\n}\n:host .cds-custom--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-custom--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-custom--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-custom--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-custom--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-custom--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-custom--layout-constraint--density__min-normal{\n --cds-layout-density-padding-inline-min:var(--cds-layout-density-padding-inline-normal, 1rem);\n}\n:host .cds-custom--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-custom--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-custom--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-custom--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-custom--layer-one.cds-custom--layer__with-background{\n background-color:var(--cds-layer-background);\n}\n:host .cds-custom--layer-two.cds-custom--layer__with-background{\n background-color:var(--cds-layer-background);\n}\n:host .cds-custom--layer-three.cds-custom--layer__with-background{\n background-color:var(--cds-layer-background);\n}\n@keyframes cds-custom--hide-feedback{\n 0%{\n opacity:1;\n visibility:inherit;\n }\n 100%{\n opacity:0;\n visibility:hidden;\n }\n}\n@keyframes cds-custom--show-feedback{\n 0%{\n opacity:0;\n visibility:hidden;\n }\n 100%{\n opacity:1;\n visibility:inherit;\n }\n}\n@keyframes cds-custom--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-custom--assistive-text,\n:host .cds-custom--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-custom--popover-container{\n display:inline-block;\n}\n:host .cds-custom--popover-container:not(.cds-custom--popover--auto-align){\n position:relative;\n}\n:host .cds-custom--popover--high-contrast .cds-custom--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-custom--popover--drop-shadow .cds-custom--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-custom--popover--border .cds-custom--popover > .cds-custom--popover-content{\n outline:1px solid var(--cds-popover-border-color, var(--cds-border-subtle));\n outline-offset:-1px;\n}\n:host .cds-custom--popover--caret{\n --cds-popover-offset:0.625rem;\n}\n:host .cds-custom--popover{\n position:absolute;\n z-index:6000;\n inset:0;\n pointer-events:none;\n}\n:host .cds-custom--popover-content{\n --cds-layout-size-height-sm:2rem;\n}\n:host .cds-custom--popover-content.cds-custom--layout--size-sm, :host .cds-custom--layout--size-sm :where(.cds-custom--popover-content){\n --cds-layout-size-height:var(--cds-layout-size-height-sm);\n}\n:host .cds-custom--popover-content{\n --cds-layout-size-height-md:2.5rem;\n}\n:host .cds-custom--popover-content.cds-custom--layout--size-md, :host .cds-custom--layout--size-md :where(.cds-custom--popover-content){\n --cds-layout-size-height:var(--cds-layout-size-height-md);\n}\n:host .cds-custom--popover-content{\n --cds-layout-size-height-lg:3rem;\n}\n:host .cds-custom--popover-content.cds-custom--layout--size-lg, :host .cds-custom--layout--size-lg :where(.cds-custom--popover-content){\n --cds-layout-size-height:var(--cds-layout-size-height-lg);\n}\n:host .cds-custom--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-custom--popover-content *,\n:host .cds-custom--popover-content *::before,\n:host .cds-custom--popover-content *::after{\n box-sizing:inherit;\n}\n:host .cds-custom--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-custom--popover--open > .cds-custom--popover > .cds-custom--popover-content{\n display:block;\n}\n:host .cds-custom--popover--background-token__background .cds-custom--popover-content{\n background-color:var(--cds-background, #ffffff);\n}\n:host .cds-custom--popover-content::before{\n position:absolute;\n display:none;\n content:\"\";\n}\n:host .cds-custom--popover--open > .cds-custom--popover > .cds-custom--popover-content::before{\n display:block;\n}\n:host .cds-custom--popover-caret,\n:host .cds-custom--popover--auto-align.cds-custom--popover-caret{\n position:absolute;\n z-index:6000;\n display:none;\n will-change:transform;\n}\n:host .cds-custom--popover-caret::after,\n:host .cds-custom--popover--auto-align.cds-custom--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-custom--popover-caret::before,\n:host .cds-custom--popover--auto-align.cds-custom--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-custom--popover--background-token__background .cds-custom--popover-caret::after{\n background-color:var(--cds-background, #ffffff);\n}\n:host .cds-custom--popover--border .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border .cds-custom--popover--auto-align.cds-custom--popover-caret::before{\n display:block;\n}\n:host .cds-custom--popover--caret.cds-custom--popover--open > .cds-custom--popover > .cds-custom--popover-caret{\n display:block;\n}\n:host .cds-custom--popover--auto-align.cds-custom--popover--caret.cds-custom--popover--open > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret{\n display:block;\n}\n:host .cds-custom--popover--tab-tip > .cds-custom--popover > .cds-custom--popover-caret{\n display:none;\n}\n:host .cds-custom--popover--bottom:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--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-custom--popover--bottom:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content{\n transform:translate(50%, calc(100% + var(--cds-popover-offset, 0rem)));\n}\n:host .cds-custom--popover--bottom-left:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content,\n:host .cds-custom--popover--bottom-start:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--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-custom--popover--bottom-left:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content,\n:host [dir=rtl] .cds-custom--popover--bottom-start:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content{\n inset-inline-end:calc(50% - var(--cds-popover-offset, 0rem));\n inset-inline-start:initial;\n}\n:host .cds-custom--popover--bottom-right:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content,\n:host .cds-custom--popover--bottom-end:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--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-custom--popover--bottom-right:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content,\n:host [dir=rtl] .cds-custom--popover--bottom-end:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content{\n inset-inline-start:calc(50% - var(--cds-popover-offset, 0rem));\n}\n:host .cds-custom--popover--bottom > .cds-custom--popover > .cds-custom--popover-content::before,\n:host .cds-custom--popover--bottom-left > .cds-custom--popover > .cds-custom--popover-content::before,\n:host .cds-custom--popover--bottom-start > .cds-custom--popover > .cds-custom--popover-content::before,\n:host .cds-custom--popover--bottom-right > .cds-custom--popover > .cds-custom--popover-content::before,\n:host .cds-custom--popover--bottom-end > .cds-custom--popover > .cds-custom--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-custom--popover--bottom > .cds-custom--popover > .cds-custom--popover-caret,\n:host .cds-custom--popover--bottom-left > .cds-custom--popover > .cds-custom--popover-caret,\n:host .cds-custom--popover--bottom-start > .cds-custom--popover > .cds-custom--popover-caret,\n:host .cds-custom--popover--bottom-right > .cds-custom--popover > .cds-custom--popover-caret,\n:host .cds-custom--popover--bottom-end > .cds-custom--popover > .cds-custom--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-custom--popover--bottom > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--bottom-left > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--bottom-start > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--bottom-right > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--bottom-end > .cds-custom--popover > .cds-custom--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-custom--popover--border.cds-custom--popover--bottom > .cds-custom--popover > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--bottom-left > .cds-custom--popover > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--bottom-start > .cds-custom--popover > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--bottom-right > .cds-custom--popover > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--bottom-end > .cds-custom--popover > .cds-custom--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-custom--popover--border.cds-custom--popover--bottom > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--bottom-left > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--bottom-start > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--bottom-right > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--bottom-end > .cds-custom--popover > .cds-custom--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-custom--popover--bottom > .cds-custom--popover > .cds-custom--popover-caret,\n:host [dir=rtl] .cds-custom--popover--bottom-left > .cds-custom--popover > .cds-custom--popover-caret,\n:host [dir=rtl] .cds-custom--popover--bottom-start > .cds-custom--popover > .cds-custom--popover-caret,\n:host [dir=rtl] .cds-custom--popover--bottom-right > .cds-custom--popover > .cds-custom--popover-caret,\n:host [dir=rtl] .cds-custom--popover--bottom-end > .cds-custom--popover > .cds-custom--popover-caret{\n transform:translate(50%, var(--cds-popover-offset, 0rem));\n}\n:host .cds-custom--popover--bottom.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret,\n:host .cds-custom--popover--bottom-left.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret,\n:host .cds-custom--popover--bottom-start.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret,\n:host .cds-custom--popover--bottom-right.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret,\n:host .cds-custom--popover--bottom-end.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--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-custom--popover--bottom.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--bottom-left.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--bottom-start.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--bottom-right.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--bottom-end.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--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-custom--popover--border.cds-custom--popover--bottom.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--bottom-left.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--bottom-start.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--bottom-right.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--bottom-end.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--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-custom--popover--border.cds-custom--popover--bottom.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--bottom-left.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--bottom-start.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--bottom-right.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--bottom-end.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--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-custom--popover--top:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--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-custom--popover--top:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content{\n transform:translate(50%, calc(-100% - var(--cds-popover-offset, 0rem)));\n}\n:host .cds-custom--popover--top-left:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content,\n:host .cds-custom--popover--top-start:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--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-custom--popover--top-left:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content,\n:host [dir=rtl] .cds-custom--popover--top-start:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content{\n inset-inline-end:calc(50% - var(--cds-popover-offset, 0rem));\n inset-inline-start:initial;\n}\n:host .cds-custom--popover--top-right:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content,\n:host .cds-custom--popover--top-end:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--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-custom--popover--top-right:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content,\n:host [dir=rtl] .cds-custom--popover--top-end:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content{\n inset-inline-start:calc(50% - var(--cds-popover-offset, 0rem));\n}\n:host .cds-custom--popover--top > .cds-custom--popover > .cds-custom--popover-content::before,\n:host .cds-custom--popover--top-left > .cds-custom--popover > .cds-custom--popover-content::before,\n:host .cds-custom--popover--top-start > .cds-custom--popover > .cds-custom--popover-content::before,\n:host .cds-custom--popover--top-right > .cds-custom--popover > .cds-custom--popover-content::before,\n:host .cds-custom--popover--top-end > .cds-custom--popover > .cds-custom--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-custom--popover--top > .cds-custom--popover > .cds-custom--popover-caret,\n:host .cds-custom--popover--top-left > .cds-custom--popover > .cds-custom--popover-caret,\n:host .cds-custom--popover--top-start > .cds-custom--popover > .cds-custom--popover-caret,\n:host .cds-custom--popover--top-right > .cds-custom--popover > .cds-custom--popover-caret,\n:host .cds-custom--popover--top-end > .cds-custom--popover > .cds-custom--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-custom--popover--top > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--top-left > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--top-start > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--top-right > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--top-end > .cds-custom--popover > .cds-custom--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-custom--popover--border.cds-custom--popover--top > .cds-custom--popover > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--top-left > .cds-custom--popover > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--top-start > .cds-custom--popover > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--top-right > .cds-custom--popover > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--top-end > .cds-custom--popover > .cds-custom--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-custom--popover--border.cds-custom--popover--top > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--top-left > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--top-start > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--top-right > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--top-end > .cds-custom--popover > .cds-custom--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-custom--popover--top:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret,\n:host [dir=rtl] .cds-custom--popover--top-left:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret,\n:host [dir=rtl] .cds-custom--popover--top-start:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret,\n:host [dir=rtl] .cds-custom--popover--top-right:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret,\n:host [dir=rtl] .cds-custom--popover--top-end:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret{\n transform:translate(50%, calc(-1 * var(--cds-popover-offset, 0rem)));\n}\n:host .cds-custom--popover--top.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret,\n:host .cds-custom--popover--top-left.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret,\n:host .cds-custom--popover--top-start.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret,\n:host .cds-custom--popover--top-right.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret,\n:host .cds-custom--popover--top-end.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--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-custom--popover--top.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--top-left.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--top-start.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--top-right.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--top-end.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--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-custom--popover--border.cds-custom--popover--top.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--top-left.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--top-start.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--top-right.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--top-end.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--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-custom--popover--border.cds-custom--popover--top.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--top-left.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--top-start.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--top-right.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--top-end.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--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-custom--popover--right:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--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-custom--popover--right-top:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content,\n:host .cds-custom--popover--right-start:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--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-custom--popover--right-bottom:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content,\n:host .cds-custom--popover--right-end:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--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-custom--popover--right:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content,\n:host [dir=rtl] .cds-custom--popover--right-bottom:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content,\n:host [dir=rtl] .cds-custom--popover--right-end:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content,\n:host [dir=rtl] .cds-custom--popover--right-top:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content,\n:host [dir=rtl] .cds-custom--popover--right-start:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content{\n inset-inline-end:100%;\n inset-inline-start:initial;\n}\n:host .cds-custom--popover--right > .cds-custom--popover > .cds-custom--popover-content::before,\n:host .cds-custom--popover--right-top > .cds-custom--popover > .cds-custom--popover-content::before,\n:host .cds-custom--popover--right-start > .cds-custom--popover > .cds-custom--popover-content::before,\n:host .cds-custom--popover--right-bottom > .cds-custom--popover > .cds-custom--popover-content::before,\n:host .cds-custom--popover--right-end > .cds-custom--popover > .cds-custom--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-custom--popover--right:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret,\n:host .cds-custom--popover--right-top:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret,\n:host .cds-custom--popover--right-start:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret,\n:host .cds-custom--popover--right-bottom:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret,\n:host .cds-custom--popover--right-end:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--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-custom--popover--right:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--right-top:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--right-start:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--right-bottom:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--right-end:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--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-custom--popover--right:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret,\n:host [dir=rtl] .cds-custom--popover--right-top:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret,\n:host [dir=rtl] .cds-custom--popover--right-start:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret,\n:host [dir=rtl] .cds-custom--popover--right-bottom:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret,\n:host [dir=rtl] .cds-custom--popover--right-end:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret{\n inset-inline-end:100%;\n inset-inline-start:initial;\n}\n:host .cds-custom--popover--border.cds-custom--popover--right:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--right-top:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--right-start:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--right-bottom:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--right-end:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--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-custom--popover--border.cds-custom--popover--right:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--right-top:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--right-start:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--right-bottom:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--right-end:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after{\n inset-inline-start:1px;\n}\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--right:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--right-top:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--right-start:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--right-bottom:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--right-end:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after{\n inset-inline-start:-1px;\n}\n:host .cds-custom--popover--right.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret,\n:host .cds-custom--popover--right-top.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret,\n:host .cds-custom--popover--right-start.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret,\n:host .cds-custom--popover--right-bottom.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret,\n:host .cds-custom--popover--right-end.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--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-custom--popover--right.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--right-top.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--right-start.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--right-bottom.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--right-end.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--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-custom--popover--border.cds-custom--popover--right.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--right-top.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--right-start.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--right-bottom.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--right-end.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--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-custom--popover--border.cds-custom--popover--right.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--right-top.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--right-start.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--right-bottom.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--right-end.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after{\n inset-inline-start:1px;\n}\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--right.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::before,\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--right-top.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::before,\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--right-start.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::before,\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--right-bottom.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::before,\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--right-end.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::before{\n margin-inline-start:1px;\n}\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--right.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--right-top.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--right-start.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--right-bottom.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--right-end.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after{\n inset-inline-start:0;\n}\n:host .cds-custom--popover--left:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--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-custom--popover--left-top:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content,\n:host .cds-custom--popover--left-start:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--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-custom--popover--left-bottom:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content,\n:host .cds-custom--popover--left-end:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--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-custom--popover--left:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content,\n:host [dir=rtl] .cds-custom--popover--left-bottom:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content,\n:host [dir=rtl] .cds-custom--popover--left-end:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content,\n:host [dir=rtl] .cds-custom--popover--left-top:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content,\n:host [dir=rtl] .cds-custom--popover--left-start:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content{\n inset-inline-end:initial;\n inset-inline-start:100%;\n}\n:host .cds-custom--popover--left > .cds-custom--popover > .cds-custom--popover-content::before,\n:host .cds-custom--popover--left-top > .cds-custom--popover > .cds-custom--popover-content::before,\n:host .cds-custom--popover--left-start > .cds-custom--popover > .cds-custom--popover-content::before,\n:host .cds-custom--popover--left-bottom > .cds-custom--popover > .cds-custom--popover-content::before,\n:host .cds-custom--popover--left-end > .cds-custom--popover > .cds-custom--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-custom--popover--left:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret,\n:host .cds-custom--popover--left-top:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret,\n:host .cds-custom--popover--left-start:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret,\n:host .cds-custom--popover--left-bottom:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret,\n:host .cds-custom--popover--left-end:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--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-custom--popover--left:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--left-top:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--left-start:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--left-bottom:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--left-end:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--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-custom--popover--left:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret,\n:host [dir=rtl] .cds-custom--popover--left-top:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret,\n:host [dir=rtl] .cds-custom--popover--left-start:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret,\n:host [dir=rtl] .cds-custom--popover--left-bottom:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret,\n:host [dir=rtl] .cds-custom--popover--left-end:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret{\n inset-inline-end:initial;\n inset-inline-start:100%;\n}\n:host .cds-custom--popover--border.cds-custom--popover--left:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--left-top:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--left-start:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--left-bottom:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--left-end:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--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-custom--popover--border.cds-custom--popover--left:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--left-top:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--left-start:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--left-bottom:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--left-end:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after{\n inset-inline-start:-1px;\n}\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--left:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--left-top:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--left-start:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--left-bottom:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after,\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--left-end:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-caret::after{\n inset-inline-start:1px;\n}\n:host .cds-custom--popover--left.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret,\n:host .cds-custom--popover--left-top.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret,\n:host .cds-custom--popover--left-start.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret,\n:host .cds-custom--popover--left-bottom.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret,\n:host .cds-custom--popover--left-end.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--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-custom--popover--left.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--left-top.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--left-start.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--left-bottom.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--left-end.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--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-custom--popover--border.cds-custom--popover--left.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--left-top.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--left-start.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--left-bottom.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::before,\n:host .cds-custom--popover--border.cds-custom--popover--left-end.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--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-custom--popover--border.cds-custom--popover--left.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--left-top.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--left-start.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--left-bottom.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host .cds-custom--popover--border.cds-custom--popover--left-end.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after{\n inset-inline-start:-1px;\n}\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--left.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::before,\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--left-top.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::before,\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--left-start.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::before,\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--left-bottom.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::before,\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--left-end.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::before{\n margin-inline-start:-1px;\n}\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--left.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--left-top.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--left-start.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--left-bottom.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after,\n:host [dir=rtl] .cds-custom--popover--border.cds-custom--popover--left-end.cds-custom--popover--auto-align > .cds-custom--popover > .cds-custom--popover-content > .cds-custom--popover-caret::after{\n inset-inline-start:0;\n}\n:host .cds-custom--popover--tab-tip > .cds-custom--popover > .cds-custom--popover-content{\n border-radius:0;\n}\n:host .cds-custom--popover--tab-tip.cds-custom--popover--top-start:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content,\n:host .cds-custom--popover--tab-tip.cds-custom--popover--bottom-start:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content,\n:host [dir=rtl] .cds-custom--popover--tab-tip.cds-custom--popover--top-end:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content,\n:host [dir=rtl] .cds-custom--popover--tab-tip.cds-custom--popover--bottom-end:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content{\n inset-inline-start:0;\n}\n:host .cds-custom--popover--tab-tip.cds-custom--popover--top-end:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content,\n:host .cds-custom--popover--tab-tip.cds-custom--popover--bottom-end:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content,\n:host [dir=rtl] .cds-custom--popover--tab-tip.cds-custom--popover--top-start:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content,\n:host [dir=rtl] .cds-custom--popover--tab-tip.cds-custom--popover--bottom-start:not(.cds-custom--popover--auto-align) > .cds-custom--popover > .cds-custom--popover-content{\n inset-inline-end:0;\n inset-inline-start:initial;\n}\n:host .cds-custom--popover--tab-tip .cds-custom--popover{\n will-change:filter;\n}\n:host .cds-custom--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-custom--popover--tab-tip__button *,\n:host .cds-custom--popover--tab-tip__button *::before,\n:host .cds-custom--popover--tab-tip__button *::after{\n box-sizing:inherit;\n}\n:host .cds-custom--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-custom--popover--tab-tip__button::-moz-focus-inner{\n border:0;\n}\n:host .cds-custom--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-custom--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-custom--popover--tab-tip__button:focus{\n outline-style:dotted;\n }\n}\n:host .cds-custom--popover--tab-tip__button:hover{\n background-color:var(--cds-layer-hover);\n}\n:host .cds-custom--popover--tab-tip.cds-custom--popover--open .cds-custom--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-custom--popover--tab-tip.cds-custom--popover--open .cds-custom--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-custom--popover--tab-tip__button svg{\n fill:var(--cds-icon-primary, #161616);\n}\n:host .cds-custom--tooltip{\n --cds-popover-offset:12px;\n}\n:host .cds-custom--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-custom--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-custom--icon-tooltip .cds-custom--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-custom--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-custom--definition-term *,\n:host .cds-custom--definition-term *::before,\n:host .cds-custom--definition-term *::after{\n box-sizing:inherit;\n}\n:host .cds-custom--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-custom--definition-term::-moz-focus-inner{\n border:0;\n}\n:host .cds-custom--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-custom--definition-term:focus{\n outline:1px solid var(--cds-focus, #0f62fe);\n}\n@media screen and (prefers-contrast){\n :host .cds-custom--definition-term:focus{\n outline-style:dotted;\n }\n}\n:host .cds-custom--definition-term:focus{\n border-block-end-color:var(--cds-border-interactive, #0f62fe);\n}\n:host .cds-custom--definition-term:hover{\n border-block-end-color:var(--cds-border-interactive, #0f62fe);\n}\n:host .cds-custom--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-custom--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-custom--btn *,\n:host .cds-custom--btn *::before,\n:host .cds-custom--btn *::after{\n box-sizing:inherit;\n}\n:host .cds-custom--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-custom--btn:disabled, :host .cds-custom--btn:hover:disabled, :host .cds-custom--btn:focus:disabled, :host .cds-custom--btn.cds-custom--btn--disabled, :host .cds-custom--btn.cds-custom--btn--disabled:hover, :host .cds-custom--btn.cds-custom--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-custom--btn .cds-custom--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-custom--btn::-moz-focus-inner{\n padding:0;\n border:0;\n}\n:host .cds-custom--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-custom--btn--primary:hover{\n background-color:var(--cds-button-primary-hover, #0050e6);\n}\n:host .cds-custom--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-custom--btn--primary:active{\n background-color:var(--cds-button-primary-active, #002d9c);\n}\n:host .cds-custom--btn--primary .cds-custom--btn__icon,\n:host .cds-custom--btn--primary .cds-custom--btn__icon path:not([data-icon-path]):not([fill=none]){\n fill:currentColor;\n}\n:host .cds-custom--btn--primary:hover{\n color:var(--cds-text-on-color, #ffffff);\n}\n:host .cds-custom--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-custom--btn--secondary:hover{\n background-color:var(--cds-button-secondary-hover, #474747);\n}\n:host .cds-custom--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-custom--btn--secondary:active{\n background-color:var(--cds-button-secondary-active, #6f6f6f);\n}\n:host .cds-custom--btn--secondary .cds-custom--btn__icon,\n:host .cds-custom--btn--secondary .cds-custom--btn__icon path:not([data-icon-path]):not([fill=none]){\n fill:currentColor;\n}\n:host .cds-custom--btn--secondary:hover, :host .cds-custom--btn--secondary:focus{\n color:var(--cds-text-on-color, #ffffff);\n}\n:host .cds-custom--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-custom--btn--tertiary:hover{\n background-color:var(--cds-button-tertiary-hover, #0050e6);\n}\n:host .cds-custom--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-custom--btn--tertiary:active{\n background-color:var(--cds-button-tertiary-active, #002d9c);\n}\n:host .cds-custom--btn--tertiary .cds-custom--btn__icon,\n:host .cds-custom--btn--tertiary .cds-custom--btn__icon path:not([data-icon-path]):not([fill=none]){\n fill:currentColor;\n}\n:host .cds-custom--btn--tertiary:hover{\n color:var(--cds-text-inverse, #ffffff);\n}\n:host .cds-custom--btn--tertiary:focus{\n background-color:var(--cds-button-tertiary, #0f62fe);\n color:var(--cds-text-inverse, #ffffff);\n}\n:host .cds-custom--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-custom--btn--tertiary:disabled, :host .cds-custom--btn--tertiary:hover:disabled, :host .cds-custom--btn--tertiary:focus:disabled, :host .cds-custom--btn--tertiary.cds-custom--btn--disabled, :host .cds-custom--btn--tertiary.cds-custom--btn--disabled:hover, :host .cds-custom--btn--tertiary.cds-custom--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-custom--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-custom--btn--ghost:hover{\n background-color:var(--cds-background-hover, rgba(141, 141, 141, 0.12));\n}\n:host .cds-custom--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-custom--btn--ghost:active{\n background-color:var(--cds-background-active, rgba(141, 141, 141, 0.5));\n}\n:host .cds-custom--btn--ghost .cds-custom--btn__icon,\n:host .cds-custom--btn--ghost .cds-custom--btn__icon path:not([data-icon-path]):not([fill=none]){\n fill:currentColor;\n}\n:host .cds-custom--btn--ghost{\n padding-inline-end:calc(var(--cds-layout-density-padding-inline-local) - 0.0625rem);\n}\n:host .cds-custom--btn--ghost .cds-custom--btn__icon{\n position:static;\n align-self:center;\n margin-inline-start:0.5rem;\n}\n:host .cds-custom--btn--ghost:hover, :host .cds-custom--btn--ghost:active{\n color:var(--cds-link-primary-hover, #0043ce);\n}\n:host .cds-custom--btn--ghost:active{\n background-color:var(--cds-background-active, rgba(141, 141, 141, 0.5));\n}\n:host .cds-custom--btn--ghost:disabled, :host .cds-custom--btn--ghost:hover:disabled, :host .cds-custom--btn--ghost:focus:disabled, :host .cds-custom--btn--ghost.cds-custom--btn--disabled, :host .cds-custom--btn--ghost.cds-custom--btn--disabled:hover, :host .cds-custom--btn--ghost.cds-custom--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-custom--btn--ghost:not([disabled]) svg{\n fill:var(--cds-icon-primary, #161616);\n}\n:host .cds-custom--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-custom--btn--icon-only > :first-child{\n min-inline-size:1rem;\n}\n:host .cds-custom--btn--icon-only .cds-custom--btn__icon{\n position:static;\n}\n:host .cds-custom--btn--icon-only.cds-custom--btn--ghost .cds-custom--btn__icon, :host .cds-custom--btn--icon-only.cds-custom--btn--danger--ghost .cds-custom--btn__icon{\n margin:0;\n}\n:host .cds-custom--btn--icon-only.cds-custom--btn--danger--ghost{\n padding-inline-end:calc(var(--cds-layout-density-padding-inline-local) - 1rem);\n}\n:host .cds-custom--btn--xs:not(.cds-custom--btn--icon-only){\n padding-block-start:1.5px;\n}\n:host .cds-custom--btn--xs:not(.cds-custom--btn--icon-only) .cds-custom--btn__icon,\n:host .cds-custom--btn--sm:not(.cds-custom--btn--icon-only) .cds-custom--btn__icon,\n:host .cds-custom--btn--md:not(.cds-custom--btn--icon-only) .cds-custom--btn__icon{\n margin-block-start:0;\n}\n:host .cds-custom--btn--icon-only.cds-custom--btn--selected{\n background:var(--cds-background-selected, rgba(141, 141, 141, 0.2));\n}\n:host .cds-custom--btn path[data-icon-path=inner-path]{\n fill:none;\n}\n:host .cds-custom--btn--ghost.cds-custom--btn--icon-only .cds-custom--btn__icon path:not([data-icon-path]):not([fill=none]),\n:host .cds-custom--btn--ghost.cds-custom--btn--icon-only .cds-custom--btn__icon{\n fill:var(--cds-icon-primary, #161616);\n}\n:host .cds-custom--btn--ghost.cds-custom--btn--icon-only[disabled] .cds-custom--btn__icon path:not([data-icon-path]):not([fill=none]),\n:host .cds-custom--btn--ghost.cds-custom--btn--icon-only[disabled] .cds-custom--btn__icon,\n:host .cds-custom--btn.cds-custom--btn--icon-only.cds-custom--btn--ghost[disabled]:hover .cds-custom--btn__icon{\n fill:var(--cds-icon-on-color-disabled, #8d8d8d);\n}\n:host .cds-custom--btn--ghost.cds-custom--btn--icon-only[disabled]{\n cursor:not-allowed;\n}\n:host .cds-custom--icon-tooltip--disabled .cds-custom--tooltip-trigger__wrapper{\n cursor:not-allowed;\n}\n:host .cds-custom--icon-tooltip--disabled .cds-custom--btn--icon-only[disabled]{\n pointer-events:none;\n}\n:host .cds-custom--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-custom--btn--danger:hover{\n background-color:var(--cds-button-danger-hover, #b81921);\n}\n:host .cds-custom--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-custom--btn--danger:active{\n background-color:var(--cds-button-danger-active, #750e13);\n}\n:host .cds-custom--btn--danger .cds-custom--btn__icon,\n:host .cds-custom--btn--danger .cds-custom--btn__icon path:not([data-icon-path]):not([fill=none]){\n fill:currentColor;\n}\n:host .cds-custom--btn--danger:hover{\n color:var(--cds-text-on-color, #ffffff);\n}\n:host .cds-custom--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-custom--btn--danger--tertiary:hover{\n background-color:var(--cds-button-danger-hover, #b81921);\n}\n:host .cds-custom--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-custom--btn--danger--tertiary:active{\n background-color:var(--cds-button-danger-active, #750e13);\n}\n:host .cds-custom--btn--danger--tertiary .cds-custom--btn__icon,\n:host .cds-custom--btn--danger--tertiary .cds-custom--btn__icon path:not([data-icon-path]):not([fill=none]){\n fill:currentColor;\n}\n:host .cds-custom--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-custom--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-custom--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-custom--btn--danger--tertiary:disabled, :host .cds-custom--btn--danger--tertiary:hover:disabled, :host .cds-custom--btn--danger--tertiary:focus:disabled, :host .cds-custom--btn--danger--tertiary.cds-custom--btn--disabled, :host .cds-custom--btn--danger--tertiary.cds-custom--btn--disabled:hover, :host .cds-custom--btn--danger--tertiary.cds-custom--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-custom--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-custom--btn--danger--ghost:hover{\n background-color:var(--cds-button-danger-hover, #b81921);\n}\n:host .cds-custom--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-custom--btn--danger--ghost:active{\n background-color:var(--cds-button-danger-active, #750e13);\n}\n:host .cds-custom--btn--danger--ghost .cds-custom--btn__icon,\n:host .cds-custom--btn--danger--ghost .cds-custom--btn__icon path:not([data-icon-path]):not([fill=none]){\n fill:currentColor;\n}\n:host .cds-custom--btn--danger--ghost{\n padding-inline-end:calc(var(--cds-layout-density-padding-inline-local) - 0.0625rem);\n}\n:host .cds-custom--btn--danger--ghost .cds-custom--btn__icon{\n position:static;\n margin-inline-start:0.5rem;\n}\n:host .cds-custom--btn--danger--ghost:hover, :host .cds-custom--btn--danger--ghost:active{\n color:var(--cds-text-on-color, #ffffff);\n}\n:host .cds-custom--btn--danger--ghost:disabled, :host .cds-custom--btn--danger--ghost:hover:disabled, :host .cds-custom--btn--danger--ghost:focus:disabled, :host .cds-custom--btn--danger--ghost.cds-custom--btn--disabled, :host .cds-custom--btn--danger--ghost.cds-custom--btn--disabled:hover, :host .cds-custom--btn--danger--ghost.cds-custom--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-custom--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-custom--btn--icon-only.cds-custom--btn--expressive{\n padding:12px 13px;\n}\n:host .cds-custom--btn.cds-custom--btn--expressive .cds-custom--btn__icon{\n block-size:1.25rem;\n inline-size:1.25rem;\n}\n:host .cds-custom--btn-set .cds-custom--btn.cds-custom--btn--expressive{\n max-inline-size:20rem;\n}\n:host .cds-custom--btn.cds-custom--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-custom--btn.cds-custom--skeleton:hover, :host .cds-custom--btn.cds-custom--skeleton:focus, :host .cds-custom--btn.cds-custom--skeleton:active{\n border:none;\n cursor:default;\n outline:none;\n}\n:host .cds-custom--btn.cds-custom--skeleton::before{\n position:absolute;\n animation:3000ms ease-in-out cds-custom--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-custom--btn.cds-custom--skeleton::before{\n animation:none;\n }\n}\n@media screen and (-ms-high-contrast: active), (forced-colors: active){\n :host .cds-custom--btn.cds-custom--skeleton{\n background:CanvasText;\n }\n :host .cds-custom--btn.cds-custom--skeleton::before{\n background:Canvas;\n forced-color-adjust:none;\n }\n}\n:host .cds-custom--btn.cds-custom--skeleton{\n inline-size:9.375rem;\n}\n:host .cds-custom--btn-set{\n display:flex;\n}\n:host .cds-custom--btn-set--stacked{\n flex-direction:column;\n}\n:host .cds-custom--btn-set .cds-custom--btn{\n inline-size:100%;\n max-inline-size:12.25rem;\n}\n:host .cds-custom--btn-set .cds-custom--btn:not(:focus){\n box-shadow:-0.0625rem 0 0 0 var(--cds-button-separator, #e0e0e0);\n}\n:host .cds-custom--btn-set .cds-custom--btn:first-of-type:not(:focus){\n box-shadow:inherit;\n}\n:host .cds-custom--btn-set .cds-custom--btn:focus + .cds-custom--btn{\n box-shadow:inherit;\n}\n:host .cds-custom--btn-set--stacked .cds-custom--btn:not(:focus){\n box-shadow:0 -0.0625rem 0 0 var(--cds-button-separator, #e0e0e0);\n}\n:host .cds-custom--btn-set--stacked .cds-custom--btn:first-of-type:not(:focus){\n box-shadow:inherit;\n}\n:host .cds-custom--btn-set .cds-custom--btn.cds-custom--btn--disabled{\n box-shadow:-0.0625rem 0 0 0 var(--cds-icon-on-color-disabled, #8d8d8d);\n}\n:host .cds-custom--btn-set .cds-custom--btn.cds-custom--btn--disabled:first-of-type{\n box-shadow:none;\n}\n:host .cds-custom--btn-set--stacked .cds-custom--btn.cds-custom--btn--disabled{\n box-shadow:0 -0.0625rem 0 0 var(--cds-layer-selected-disabled, #8d8d8d);\n}\n:host .cds-custom--btn-set--stacked .cds-custom--btn.cds-custom--btn--disabled:first-of-type{\n box-shadow:none;\n}\n:host .cds-custom--btn-set .cds-custom--btn.cds-custom--btn--loading{\n border-color:transparent;\n background-color:transparent;\n box-shadow:none;\n}\n:host .cds-custom--btn--sm .cds-custom--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-custom--btn:focus{\n color:Highlight;\n outline:1px solid Highlight;\n }\n}\n:host [dir=rtl] .cds-custom--btn-set .cds-custom--btn:not(:focus){\n box-shadow:0.0625rem 0 0 0 var(--cds-button-separator, #e0e0e0);\n}\n:host .cds-custom-aichat--response-user-avatar img{\n block-size:100%;\n inline-size:100%;\n}\n:host .cds-custom-aichat--response-user-avatar svg{\n fill:currentcolor;\n}\n:host .cds-custom-aichat--response-user-avatar .cds-custom-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-custom-aichat--response-user-avatar .cds-custom-aichat--response-user-avatar__circle .cds-custom-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-custom-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-custom-aichat--human-agent-banner .cds-custom-aichat--response-user-avatar{\n margin:0 0.75rem 0 0;\n block-size:32px;\n inline-size:32px;\n}\n:host .cds-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--human-agent-banner .cds-custom-aichat--response-user-avatar{\n margin:0 0 0 0.75rem;\n}\n:host .cds-custom-aichat--human-agent-banner .cds-custom-aichat--response-user-avatar img{\n border-radius:16px;\n}\n:host .cds-custom-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-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--human-agent-banner__human-agent-info{\n padding:0 0 0 1rem;\n}\n:host .cds-custom-aichat--human-agent-banner__human-agent-line1{\n font-weight:600;\n}\n:host .cds-custom-aichat--human-agent-banner--connected .cds-custom-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-custom-aichat--human-agent-banner__human-agent-line2{\n padding-block-start:0.25rem;\n}\n:host .cds-custom-aichat--human-agent-banner__human-agent-line2,\n:host .cds-custom-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-custom-aichat--agent-banner__stop-sharing-button{\n inline-size:100%;\n max-inline-size:unset;\n}\n:host{\n}\n:host .cds-custom-aichat--custom-panel{\n display:flex;\n flex-direction:column;\n block-size:100%;\n inline-size:100%;\n}\n:host .cds-custom-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-custom-aichat--custom-panel .cds-custom-aichat--panel-content{\n flex:1;\n}\n:host{\n}\n:host .cds-custom-aichat--body-and-footer-component{\n display:flex;\n flex-direction:column;\n block-size:100%;\n}\n:host .cds-custom-aichat--body-and-footer-component .cds-custom-aichat--body-message-components{\n overflow:auto;\n flex:1;\n}\n:host .cds-custom-aichat--body-and-footer-component .cds-custom-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-custom-aichat--widget--max-width .cds-custom-aichat--header__header-bottom-element{\n margin:auto;\n max-inline-size:var(--cds-custom-aichat-max-width, 672px);\n}\n:host .cds-custom-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-custom-aichat--header{\n position:relative;\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-custom-aichat--header--content{\n position:relative;\n display:flex;\n inline-size:100%;\n}\n:host .cds-custom-aichat--widget--max-width .cds-custom-aichat--header--content{\n max-inline-size:var(--cds-custom-aichat-max-width, 672px);\n}\n:host .cds-custom-aichat--header__buttons{\n display:flex;\n align-items:center;\n}\n:host .cds-custom-aichat--header__buttons .cds-custom-aichat--header__slug{\n margin:0.5rem;\n}\n:host .cds-custom-aichat--widget.cds-custom-aichat--widget--rounded .cds-custom-aichat--header--content{\n border-start-end-radius:calc(var(--cds-custom-aichat-border-radius, 0px) - 1px);\n border-start-start-radius:calc(var(--cds-custom-aichat-border-radius, 0px) - 1px);\n}\n:host .cds-custom-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-custom-aichat--header__center-container:first-child{\n margin:0 1rem;\n}\n:host .cds-custom-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-custom-aichat--header__slug-title{\n padding-block-end:0.75rem;\n}\n:host .cds-custom-aichat--header__overflow-menu{\n max-block-size:488px;\n}\n:host .cds-custom-aichat--header__overflow-menu svg,\n:host .cds-custom-aichat--header__back-button svg,\n:host .cds-custom-aichat--header__restart-button svg,\n:host .cds-custom-aichat--header__close-button svg{\n block-size:16px;\n inline-size:16px;\n}\n:host .cds-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--home-screen-header button.cds-custom-aichat--header__back-button{\n transform:none;\n}\n:host .cds-custom-aichat--header--with-avatar .cds-custom-aichat--header__center-container{\n margin-inline-start:0;\n}\n:host .cds-custom-aichat--header__left-items,\n:host .cds-custom-aichat--chat-header-overflow-menu__host-element,\n:host .cds-custom-aichat--header__title-container{\n max-inline-size:100%;\n}\n:host .cds-custom-aichat--header__left-items :first-child{\n overflow:hidden;\n border-start-start-radius:calc(var(--cds-custom-aichat-border-radius, 0px) - 1px);\n}\n:host .cds-custom-aichat--header__left-items :first-child::part(button){\n border-start-start-radius:calc(var(--cds-custom-aichat-border-radius, 0px) - 1px);\n}\n:host .cds-custom-aichat--header__right-buttons :last-child::part(button){\n border-start-end-radius:calc(var(--cds-custom-aichat-border-radius, 0px) - 1px);\n}\n:host cds-custom-aichat-chat-header-avatar{\n align-self:center;\n margin-inline:0.5rem;\n}\n:host cds-custom-aichat-chat-header-avatar + .cds-custom-aichat--header__separator{\n margin-inline-start:0.5rem;\n}\n:host .cds-custom-aichat--wide-width.cds-custom-aichat--widget--max-width .cds-custom-aichat--header__center-container:first-child{\n margin:0 1rem 0 0;\n}\n:host .cds-custom-aichat--header--with-avatar .cds-custom-aichat--header__center-container:first-child > cds-custom-aichat-chat-header-avatar{\n margin-inline-start:0.75rem;\n}\n:host{\n}\n:host .cds-custom-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-custom-aichat--home-screen--background-ai-theme{\n background-color:var(--cds-chat-shell-background, #ffffff);\n background-image:var(--cds-custom-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-custom-aichat-ai-box-shadow-inner, inset 0 -80px 70px -65px var(--cds-ai-inner-shadow, rgba(69, 137, 255, 0.1))), var(--cds-custom-aichat-ai-box-shadow-outer, 0 4px 10px 2px var(--cds-ai-drop-shadow, rgba(15, 98, 254, 0.1)));\n}\n:host .cds-custom-aichat--home-screen__home-screen-bottom-element{\n position:relative;\n margin:auto;\n inline-size:100%;\n max-inline-size:var(--cds-custom-aichat-max-width, 672px);\n}\n:host{\n}\n:host .cds-custom-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-custom-aichat--home-screen--first-render .cds-custom-aichat--home-screen__content{\n animation:none;\n }\n}\n@media screen and (prefers-reduced-motion: no-preference){\n :host .cds-custom-aichat--home-screen--first-render .cds-custom-aichat--home-screen__content{\n animation:400ms cubic-bezier(0, 0, 0.3, 1) cds-custom-aichat-fade-in 70ms both;\n }\n}\n:host .cds-custom-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-custom-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-custom-aichat--home-screen__body--custom-content{\n flex-grow:1;\n flex-shrink:0;\n min-block-size:90%;\n}\n:host .cds-custom-aichat--home-screen__body--custom-content > *{\n flex-shrink:0;\n}\n:host{\n}\n:host .cds-custom-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-custom-aichat--home-screen.cds-custom-aichat--home-screen--hydration-complete .cds-custom-aichat--home-screen__avatar-holder{\n animation:none;\n }\n}\n@media screen and (prefers-reduced-motion: no-preference){\n :host .cds-custom-aichat--home-screen.cds-custom-aichat--home-screen--hydration-complete .cds-custom-aichat--home-screen__avatar-holder{\n animation:400ms cubic-bezier(0, 0, 0.3, 1) cds-custom-aichat-fade-in 70ms both;\n }\n}\n:host .cds-custom-aichat--home-screen__avatar-holder img{\n border-radius:48px;\n}\n:host .cds-custom-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-custom-aichat--home-screen.cds-custom-aichat--home-screen--hydration-complete .cds-custom-aichat--home-screen__greeting{\n animation:none;\n }\n}\n@media screen and (prefers-reduced-motion: no-preference){\n :host .cds-custom-aichat--home-screen.cds-custom-aichat--home-screen--hydration-complete .cds-custom-aichat--home-screen__greeting{\n animation:400ms cubic-bezier(0, 0, 0.3, 1) cds-custom-aichat-fade-in-up 70ms both;\n }\n}\n:host .cds-custom-aichat--home-screen__starters{\n margin-block-start:2rem;\n}\n:host{\n}\n:host .cds-custom-aichat--home-screen__body--no-custom-content .cds-custom-aichat--home-screen__starters{\n margin-block-end:2rem;\n}\n:host{\n}\n:host .cds-custom-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-custom-aichat--home-screen.cds-custom-aichat--home-screen--hydration-complete cds-custom-chat-button.cds-custom-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-custom-aichat--home-screen.cds-custom-aichat--home-screen--hydration-complete cds-custom-chat-button.cds-custom-aichat--home-screen__starter:last-child{\n margin-block-end:0;\n }\n}\n:host cds-custom-chat-button.cds-custom-aichat--home-screen__starter:nth-child(1){\n --cds-custom-aichat-homescreen-starter-index:1;\n}\n:host cds-custom-chat-button.cds-custom-aichat--home-screen__starter:nth-child(2){\n --cds-custom-aichat-homescreen-starter-index:2;\n}\n:host cds-custom-chat-button.cds-custom-aichat--home-screen__starter:nth-child(3){\n --cds-custom-aichat-homescreen-starter-index:3;\n}\n:host cds-custom-chat-button.cds-custom-aichat--home-screen__starter:nth-child(4){\n --cds-custom-aichat-homescreen-starter-index:4;\n}\n:host cds-custom-chat-button.cds-custom-aichat--home-screen__starter:nth-child(5){\n --cds-custom-aichat-homescreen-starter-index:5;\n}\n@media screen and (prefers-reduced-motion: no-preference){\n :host .cds-custom-aichat--home-screen.cds-custom-aichat--home-screen--hydration-complete cds-custom-chat-button.cds-custom-aichat--home-screen__starter{\n display:block;\n animation:400ms cubic-bezier(0, 0, 0.3, 1) cds-custom-aichat-fade-in-up calc(var(--cds-custom-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-custom-aichat--home-screen.cds-custom-aichat--home-screen--hydration-complete cds-custom-chat-button.cds-custom-aichat--home-screen__starter:last-child{\n margin-block-end:0;\n }\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-custom-aichat--home-screen.cds-custom-aichat--home-screen--hydration-complete .cds-custom-aichat--home-screen__starters--animate-group cds-custom-chat-button.cds-custom-aichat--home-screen__starter{\n animation:none;\n }\n}\n@media screen and (prefers-reduced-motion: no-preference){\n :host .cds-custom-aichat--home-screen.cds-custom-aichat--home-screen--hydration-complete .cds-custom-aichat--home-screen__starters--animate-group cds-custom-chat-button.cds-custom-aichat--home-screen__starter{\n animation:400ms cubic-bezier(0, 0, 0.3, 1) cds-custom-aichat-fade-in-up 120ms both;\n }\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-custom-aichat--home-screen.cds-custom-aichat--home-screen--hydration-complete .cds-custom-aichat--home-screen__custom-content--animation{\n animation:none;\n }\n}\n@media screen and (prefers-reduced-motion: no-preference){\n :host .cds-custom-aichat--home-screen.cds-custom-aichat--home-screen--hydration-complete .cds-custom-aichat--home-screen__custom-content--animation{\n animation:400ms cubic-bezier(0, 0, 0.3, 1) cds-custom-aichat-fade-in-up 330ms both;\n }\n}\n:host .cds-custom-aichat--home-screen__back-button{\n position:absolute;\n inset-inline-start:50%;\n transform:translate(-50%, calc(-100% - 1rem));\n}\n:host .cds-custom-aichat--home-screen__back-button .cds-custom-aichat--home-screen__back-button-content{\n display:flex;\n}\n:host .cds-custom-aichat--home-screen__back-button .cds-custom-aichat--home-screen__back-button-content .cds-custom-aichat--home-screen__back-button-content-text{\n margin-inline-end:0.5rem;\n white-space:nowrap;\n}\n:host .cds-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--home-screen__back-button .cds-custom-aichat--home-screen__back-button-content .cds-custom-aichat--home-screen__back-button-content-text{\n margin-inline:0.5rem unset;\n}\n@keyframes cds-custom-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-custom-aichat--home-screen.cds-custom-aichat--home-screen--hydration-complete .cds-custom-aichat--home-screen__back-button{\n animation:none;\n }\n}\n@media screen and (prefers-reduced-motion: no-preference){\n :host .cds-custom-aichat--home-screen.cds-custom-aichat--home-screen--hydration-complete .cds-custom-aichat--home-screen__back-button{\n animation:400ms cubic-bezier(0, 0, 0.3, 1) cds-custom-aichat-fade-in-up-back-button 350ms both;\n }\n}\n:host .cds-custom-aichat--home-screen__input-container-wrapper,\n:host .cds-custom-aichat--home-screen__input-container{\n display:flex;\n inline-size:100%;\n transform:translateY(0);\n}\n:host .cds-custom-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-custom-aichat--home-screen.cds-custom-aichat--home-screen--first-render .cds-custom-aichat--input-container{\n animation:none;\n }\n}\n@media screen and (prefers-reduced-motion: no-preference){\n :host .cds-custom-aichat--home-screen.cds-custom-aichat--home-screen--first-render .cds-custom-aichat--input-container{\n animation:400ms cubic-bezier(0, 0, 0.3, 1) cds-custom-aichat-fade-in-up 370ms both;\n }\n}\n:host{\n}\n:host .cds-custom-aichat--input-and-completions{\n position:relative;\n inline-size:100%;\n}\n:host .cds-custom-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-custom-aichat--widget--max-width.cds-custom-aichat--wide-width .cds-custom-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-custom-aichat--ai-theme .cds-custom-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-custom-aichat--input-container--show-upload-button{\n padding-inline-start:0.5rem;\n}\n:host .cds-custom-aichat--input-container__text-and-upload{\n display:flex;\n align-items:center;\n}\n:host .cds-custom-aichat--input-container__text-and-upload > *:not(:last-child),\n:host .cds-custom-aichat--input-container > *:not(:last-child){\n margin-inline-end:0.5rem;\n}\n:host .cds-custom-aichat--input-container__files-container{\n overflow:auto;\n margin-block-start:0.5rem;\n max-block-size:200px;\n}\n:host .cds-custom-aichat--input-container__files-container cds-custom-file-uploader-item{\n margin-block-end:0;\n}\n:host .cds-custom-aichat--input-container__upload-button-container{\n display:inline-block;\n inline-size:32px;\n vertical-align:top;\n}\n:host .cds-custom-aichat--input-container .cds-custom-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-custom-aichat--input-container__upload-input:focus + .cds-custom-aichat--input-container__upload-button{\n box-shadow:inset 0 0 0 2px var(--cds-focus, #0f62fe);\n}\n:host .cds-custom-aichat--input-container__upload-button:hover{\n background-color:var(--cds-background-hover, rgba(141, 141, 141, 0.12));\n}\n:host .cds-custom-aichat--input-container__upload-button:active{\n background-color:var(--cds-background-active, rgba(141, 141, 141, 0.5));\n}\n:host .cds-custom-aichat--input-container .cds-custom-aichat--input-container__upload-button--disabled{\n cursor:default;\n opacity:0.5;\n}\n:host label.cds-custom-aichat--input-container__upload-button--disabled:hover{\n background-color:transparent;\n}\n:host .cds-custom-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-custom-aichat--input-container--has-focus{\n outline-color:var(--cds-focus, #0f62fe);\n}\n:host .cds-custom-aichat--input-container .cds-custom-aichat--input-container__left-container .cds-custom-aichat--text-area .cds-custom-aichat--text-area-textarea{\n border:none;\n}\n:host .cds-custom-aichat--assistant-container .cds-custom-aichat--input-container{\n display:flex;\n}\n:host .cds-custom-aichat--input-container .cds-custom-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-custom-aichat--input-container--show-upload-button .cds-custom-aichat--text-area{\n inline-size:calc(100% - 32px);\n}\n:host .cds-custom-aichat--input-container .cds-custom-aichat--text-area textarea.cds-custom-aichat--text-area-textarea{\n display:block;\n margin:0;\n background:transparent;\n color:var(--cds-text-primary, #161616);\n resize:none;\n}\n:host .cds-custom-aichat--input-container .cds-custom-aichat--text-area .cds-custom-aichat--text-area-textarea,\n:host .cds-custom-aichat--input-container .cds-custom-aichat--text-area .cds-custom-aichat--text-area-sizer{\n max-block-size:157px;\n}\n:host .cds-custom-aichat--input-container .cds-custom-aichat--text-area .cds-custom-aichat--text-area-textarea::-moz-placeholder{\n color:var(--cds-text-placeholder, rgba(22, 22, 22, 0.4));\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-family:inherit;\n}\n:host .cds-custom-aichat--input-container .cds-custom-aichat--text-area .cds-custom-aichat--text-area-textarea::placeholder{\n color:var(--cds-text-placeholder, rgba(22, 22, 22, 0.4));\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-family:inherit;\n}\n:host .cds-custom-aichat--input-container__send-button-container,\n:host .cds-custom-aichat--input-container__upload-button-container{\n display:flex;\n flex:0 1;\n align-self:flex-start;\n}\n:host .cds-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--input-container__send-button svg{\n transform:scale(-1, 1);\n}\n:host cds-custom-button.cds-custom-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-custom-button.cds-custom-aichat--input-container__send-button:active svg,\n:host cds-custom-button.cds-custom-aichat--input-container__send-button:focus svg,\n:host cds-custom-button.cds-custom-aichat--input-container__send-button:active:focus svg{\n fill:var(--cds-interactive, #0f62fe);\n}\n:host cds-custom-button.cds-custom-aichat--input-container__send-button[disabled]:hover svg,\n:host cds-custom-button.cds-custom-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-custom-aichat--launcher__button-container{\n position:fixed;\n z-index:var(--cds-custom-aichat-z-index, 99999);\n border-radius:0.125rem;\n animation:cds-custom-aichat-launcher-in 150ms cubic-bezier(0, 0, 0.3, 1) both;\n background-color:var(--cds-background, #ffffff);\n box-shadow:var(--cds-custom-aichat-box-shadow, 1px 0 4px hsla(0, 0%, 9%, 0.3));\n inset-block-end:var(--cds-custom-aichat-launcher-position-bottom, 3rem);\n inset-inline-end:var(--cds-custom-aichat-launcher-position-right, 2rem);\n}\n:host .cds-custom-aichat--launcher__button-container--hidden{\n visibility:hidden;\n}\n:host .cds-custom-aichat--launcher__button-container--mobile{\n inset-block-end:var(--cds-custom-aichat-launcher-position-bottom-mobile, 1rem);\n inset-inline-end:var(--cds-custom-aichat-launcher-position-bottom-mobile, 1rem);\n}\n:host .cds-custom-aichat--launcher__button-container--round{\n border-radius:28px;\n box-shadow:var(--cds-custom-aichat-box-shadow, 1px 0 4px hsla(0, 0%, 9%, 0.3));\n}\n:host .cds-custom-aichat--launcher__button-container--round .cds-custom-aichat--launcher__button{\n border-radius:28px;\n background-color:var(--cds-custom-aichat-launcher-color-background, var(--cds-button-primary, #0f62fe));\n transition:unset;\n}\n:host .cds-custom-aichat--launcher__button-container--round .cds-custom-aichat--launcher__button::part(button):focus{\n box-shadow:inset 0 0 0 2px var(--cds-custom-aichat-launcher-color-focus-border, var(--cds-text-on-color, #ffffff));\n}\n:host .cds-custom-aichat--launcher__button-container--round .cds-custom-aichat--launcher__button:focus{\n border-width:2px;\n border-color:var(--cds-custom-aichat-launcher-color-background, var(--cds-button-primary, #0f62fe));\n}\n:host .cds-custom-aichat--launcher__button-container--round .cds-custom-aichat--launcher__button:hover{\n border-color:var(--cds-custom-aichat-launcher-color-background-hover, var(--cds-button-primary-hover, #0050e6));\n background-color:var(--cds-custom-aichat-launcher-color-background-hover, var(--cds-button-primary-hover, #0050e6));\n}\n:host .cds-custom-aichat--launcher__button-container--round .cds-custom-aichat--launcher__button:active{\n border-width:2px;\n border-color:var(--cds-custom-aichat-launcher-color-background-active, var(--cds-button-primary-active, #002d9c));\n background-color:var(--cds-custom-aichat-launcher-color-background-active, var(--cds-button-primary-active, #002d9c));\n box-shadow:inset 0 0 0 2px var(--cds-custom-aichat-launcher-color-focus-border, var(--cds-text-on-color, #ffffff));\n}\n:host .cds-custom-aichat--launcher__button-container--round .cds-custom-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-custom-aichat-unread-indicator-color-background, var(--cds-support-error, #da1e28));\n color:var(--cds-custom-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-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--count-indicator{\n inset-inline:calc(-1 * 0.125rem) unset;\n}\n:host .cds-custom-aichat--launcher__button-container--no-animation{\n animation:none;\n}\n:host .cds-custom-aichat--launcher__button-container--bounce-animation{\n animation:cds-custom-aichat-launcher-bounce 500ms cubic-bezier(0, 0, 0.3, 1) forwards;\n}\n:host cds-custom-button.cds-custom-aichat--launcher__button::part(button) svg{\n block-size:24px;\n fill:var(--cds-custom-aichat-launcher-color-avatar, var(--cds-text-on-color, #ffffff));\n inline-size:24px;\n}\n:host cds-custom-button.cds-custom-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-custom-button.cds-custom-aichat--launcher__button::part(button):focus{\n border-width:2px;\n}\n:host cds-custom-button.cds-custom-aichat--launcher__button{\n position:static;\n padding:0;\n border-radius:0.125rem;\n background-color:var(--cds-custom-aichat-launcher-color-background, var(--cds-button-primary, #0f62fe));\n block-size:var(--cds-custom-aichat-launcher-default-size, 56px);\n inline-size:var(--cds-custom-aichat-launcher-default-size, 56px);\n transition:background 250ms ease-in-out, transform 150ms ease;\n}\n:host .cds-custom-aichat--launcher__svg{\n fill:currentcolor;\n}\n:host .cds-custom-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-custom-aichat--launcher__button .cds-custom-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-custom-aichat--launcher-complex__container{\n border-radius:0.75rem;\n animation:none;\n background-color:var(--cds-custom-aichat-launcher-color-background, var(--cds-button-primary, #0f62fe));\n box-shadow:none;\n inset-block-end:calc(1rem + var(--cds-custom-aichat-launcher-default-size, 56px) + var(--cds-custom-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-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--launcher-complex__container{\n inset-inline:4rem unset;\n}\n:host .cds-custom-aichat--launcher-complex__container .cds-custom-aichat--launcher-complex__content-button{\n padding:0;\n border:2px solid transparent;\n border-radius:0.75rem;\n background-color:var(--cds-custom-aichat-launcher-color-background, var(--cds-button-primary, #0f62fe));\n box-shadow:none;\n min-inline-size:10rem;\n}\n:host .cds-custom-aichat--launcher-complex__container .cds-custom-aichat--launcher-complex__content-button:enabled:focus{\n border-width:2px;\n border-color:var(--cds-custom-aichat-launcher-expanded-message-color-background, var(--cds-button-primary, #0f62fe));\n box-shadow:inset 0 0 0 2px var(--cds-custom-aichat-launcher-expanded-message-color-focus-border, var(--cds-text-on-color, #ffffff));\n outline:none;\n}\n:host .cds-custom-aichat--launcher-complex__container .cds-custom-aichat--launcher-complex__content-button:enabled:hover{\n border-color:var(--cds-custom-aichat-launcher-expanded-message-color-background-hover, var(--cds-button-primary-hover, #0050e6));\n background-color:var(--cds-custom-aichat-launcher-expanded-message-color-background-hover, var(--cds-button-primary-hover, #0050e6));\n cursor:pointer;\n}\n:host .cds-custom-aichat--launcher-complex__container .cds-custom-aichat--launcher-complex__content-button:enabled:active{\n border-width:2px;\n border-color:var(--cds-custom-aichat-launcher-expanded-message-color-background-active, var(--cds-button-primary-active, #002d9c));\n background-color:var(--cds-custom-aichat-launcher-expanded-message-color-background-active, var(--cds-button-primary-active, #002d9c));\n box-shadow:inset 0 0 0 2px var(--cds-custom-aichat-launcher-expanded-message-color-focus-border, var(--cds-text-on-color, #ffffff));\n}\n:host .cds-custom-aichat--launcher-complex__container .cds-custom-aichat--launcher-complex__text{\n display:-webkit-box;\n margin:1rem;\n -webkit-box-orient:vertical;\n color:var(--cds-custom-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-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--launcher-complex__container .cds-custom-aichat--launcher-complex__text{\n text-align:end;\n}\n:host .cds-custom-aichat--launcher-complex__container .cds-custom-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-custom-aichat--launcher-complex__container .cds-custom-aichat--launcher__close-button:focus{\n border-color:var(--cds-focus, #0f62fe);\n outline:none;\n}\n:host .cds-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--launcher-complex__container .cds-custom-aichat--launcher__close-button{\n padding:3px 3px 3px 7px;\n inset-inline:0 unset;\n}\n:host .cds-custom-aichat--launcher-complex__container .cds-custom-aichat--launcher__close-button .cds-custom-aichat--launcher__close-button-icon{\n margin-inline-end:0.25rem;\n}\n:host .cds-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--launcher-complex__container .cds-custom-aichat--launcher__close-button .cds-custom-aichat--launcher__close-button-icon{\n margin-inline:0.25rem unset;\n}\n:host .cds-custom-aichat--launcher-complex__container--intro-animation{\n animation:700ms cds-custom-aichat-launcher-fade-in-slide-up forwards;\n}\n:host .cds-custom-aichat--launcher-complex__container--intro-animation .cds-custom-aichat--launcher__avatar{\n animation:700ms cds-custom-aichat-launcher-avatar-resize forwards;\n}\n:host .cds-custom-aichat--launcher-complex__container--intro-animation .cds-custom-aichat--launcher-complex__text{\n animation:700ms cds-custom-aichat-launcher-fade-in-text forwards;\n}\n:host .cds-custom-aichat--launcher-complex__container--intro-animation .cds-custom-aichat--launcher-complex__small-launcher-container,\n:host .cds-custom-aichat--launcher-complex__container--intro-animation .cds-custom-aichat--launcher__button-container.cds-custom-aichat--launcher-complex__small-launcher-container .cds-custom-aichat--launcher__button{\n animation:700ms cds-custom-aichat-launcher-resize-reposition forwards;\n}\n:host .cds-custom-aichat--launcher-complex__container--intro-animation .cds-custom-aichat--launcher__close-button{\n animation:700ms cds-custom-aichat-launcher-fade-in-close-button forwards;\n}\n:host .cds-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--launcher-complex__container--intro-animation .cds-custom-aichat--launcher-complex__small-launcher-container,\n:host .cds-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--launcher-complex__container--intro-animation .cds-custom-aichat--launcher__button-container.cds-custom-aichat--launcher-complex__small-launcher-container .cds-custom-aichat--launcher__button{\n animation:700ms cds-custom-aichat-launcher-resize-reposition-rtl forwards;\n}\n:host .cds-custom-aichat--launcher-complex__container--simple-animation{\n animation:150ms cds-custom-aichat-launcher-fade-in-slide-up forwards;\n}\n:host .cds-custom-aichat--launcher-complex__container--simple-animation .cds-custom-aichat--launcher__avatar{\n animation:150ms cds-custom-aichat-launcher-avatar-resize forwards;\n}\n:host .cds-custom-aichat--launcher-complex__container--simple-animation .cds-custom-aichat--launcher-complex__text{\n animation:150ms cds-custom-aichat-launcher-fade-in-text forwards;\n}\n:host .cds-custom-aichat--launcher-complex__container--simple-animation .cds-custom-aichat--launcher-complex__small-launcher-container,\n:host .cds-custom-aichat--launcher-complex__container--simple-animation .cds-custom-aichat--launcher__button-container.cds-custom-aichat--launcher-complex__small-launcher-container .cds-custom-aichat--launcher__button{\n padding:0 60px 60px 0;\n border-radius:5rem;\n animation:150ms cds-custom-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-custom-aichat--launcher-complex__container--simple-animation .cds-custom-aichat--launcher__close-button{\n animation:150ms cds-custom-aichat-launcher-fade-in-close-button forwards;\n}\n:host .cds-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--launcher-complex__container--simple-animation .cds-custom-aichat--launcher-complex__small-launcher-container,\n:host .cds-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--launcher-complex__container--simple-animation .cds-custom-aichat--launcher__button-container.cds-custom-aichat--launcher-complex__small-launcher-container .cds-custom-aichat--launcher__button{\n padding:0 0 60px 60px;\n inset-inline:calc(-1 * 5rem) unset;\n}\n:host .cds-custom-aichat--launcher-complex__container--tooling-preview{\n background-color:var(--cds-custom-aichat-launcher-expanded-message-color-background, var(--cds-button-primary, #0f62fe));\n box-shadow:var(--cds-custom-aichat-box-shadow, 1px 0 4px hsla(0, 0%, 9%, 0.3));\n inset-block-end:4rem;\n}\n:host .cds-custom-aichat--launcher-complex__container--tooling-preview .cds-custom-aichat--launcher-complex__text{\n opacity:1;\n}\n:host .cds-custom-aichat--launcher-complex__container--tooling-preview .cds-custom-aichat--launcher-complex__small-launcher-container,\n:host .cds-custom-aichat--launcher-complex__container--tooling-preview .cds-custom-aichat--launcher__button-container.cds-custom-aichat--launcher-complex__small-launcher-container .cds-custom-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-custom-aichat--launcher-complex__container--tooling-preview .cds-custom-aichat--launcher__close-button{\n opacity:1;\n}\n:host .cds-custom-aichat--launcher-complex__container--close-animation{\n animation:400ms cds-custom-aichat-launcher-fade-out-slide-down forwards;\n}\n:host .cds-custom-aichat--launcher-complex__container--close-animation .cds-custom-aichat--launcher__avatar{\n animation:400ms cds-custom-aichat-launcher-avatar-resize backwards;\n}\n:host .cds-custom-aichat--launcher-complex__container--close-animation .cds-custom-aichat--launcher-complex__text,\n:host .cds-custom-aichat--launcher-complex__container--close-animation .cds-custom-aichat--launcher__close-button{\n animation:400ms cds-custom-aichat-launcher-fade-out forwards;\n}\n:host .cds-custom-aichat--launcher-complex__container--close-animation .cds-custom-aichat--launcher-complex__small-launcher-container,\n:host .cds-custom-aichat--launcher-complex__container--close-animation .cds-custom-aichat--launcher__button-container.cds-custom-aichat--launcher-complex__small-launcher-container .cds-custom-aichat--launcher__button{\n animation:400ms cds-custom-aichat-launcher-default-size-position forwards;\n}\n:host .cds-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--launcher-complex__container--close-animation .cds-custom-aichat--launcher-complex__small-launcher-container,\n:host .cds-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--launcher-complex__container--close-animation .cds-custom-aichat--launcher__button-container.cds-custom-aichat--launcher-complex__small-launcher-container .cds-custom-aichat--launcher__button{\n animation:700ms cds-custom-aichat-launcher-default-size-position-rtl forwards;\n}\n:host{\n}\n:host .cds-custom-aichat--launcher-extended__container{\n block-size:var(--cds-custom-aichat-launcher-default-size, 56px);\n inline-size:var(--cds-custom-aichat-launcher-default-size, 56px);\n}\n:host cds-custom-button.cds-custom-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-custom-aichat--launcher-extended__button--hidden{\n visibility:hidden;\n}\n:host .cds-custom-aichat--launcher-extended__wrapper-container{\n position:relative;\n overflow:hidden;\n block-size:100%;\n inline-size:100%;\n}\n:host .cds-custom-aichat--launcher-extended__wrapper{\n position:absolute;\n display:flex;\n inline-size:calc(var(--cds-custom-aichat-launcher-extended-width, 280px) - 6px);\n inset-inline-end:0;\n max-inline-size:calc(100vw - var(--cds-custom-aichat-launcher-position-bottom, 3rem) - 6px);\n}\n:host .cds-custom-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-custom-aichat--launcher-extended__greeting{\n position:absolute;\n display:flex;\n align-items:center;\n block-size:100%;\n color:var(--cds-custom-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-custom-aichat-is-phone .cds-custom-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-custom-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-custom-aichat--launcher-extended__button .cds-custom-aichat--launcher__icon-holder{\n display:flex;\n align-items:center;\n justify-content:center;\n block-size:calc(var(--cds-custom-aichat-launcher-default-size, 56px) - 4px);\n inline-size:calc(var(--cds-custom-aichat-launcher-default-size, 56px) - 4px);\n margin-inline-start:auto;\n}\n:host .cds-custom-aichat--launcher-extended__button .cds-custom-aichat--launcher__icon-holder svg{\n position:absolute;\n block-size:24px;\n inline-size:24px;\n}\n:host .cds-custom-aichat--launcher-extended__button .cds-custom-aichat--launcher-extended__element--hidden{\n display:none;\n}\n:host .cds-custom-aichat--launcher-extended__button .cds-custom-aichat--launcher-extended__element--fade-out{\n animation:cds-custom-aichat-launcher-extended-element-fade-out 500ms ease-out 400ms both;\n}\n:host .cds-custom-aichat--launcher-extended__button .cds-custom-aichat--launcher-extended__element--fade-in{\n animation:cds-custom-aichat-launcher-extended-element-fade-in 500ms ease-out 400ms both;\n}\n:host .cds-custom-aichat--launcher__button-container.cds-custom-aichat--launcher-extended__button--extended{\n border-radius:14px;\n inline-size:var(--cds-custom-aichat-launcher-extended-width, 280px);\n}\n:host .cds-custom-aichat--launcher__button-container.cds-custom-aichat--launcher-extended__button--extended cds-custom-button.cds-custom-aichat--launcher__button{\n inline-size:var(--cds-custom-aichat-launcher-extended-width, 280px);\n}\n:host .cds-custom-aichat--launcher__button-container.cds-custom-aichat--launcher-extended__button--extended cds-custom-button.cds-custom-aichat--launcher__button.cds-custom-aichat--launcher-extended__button::part(button\n ){\n border-radius:14px;\n}\n:host .cds-custom-aichat--launcher__button-container.cds-custom-aichat--launcher-extended__button--extended .cds-custom-aichat--launcher__svg{\n inline-size:24px;\n}\n:host .cds-custom-aichat--launcher__button-container.cds-custom-aichat--launcher-extended__button--extended-animation{\n animation:cds-custom-aichat-launcher-extend 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 500ms both, cds-custom-aichat-launcher-partially-round 300ms ease-in 500ms both;\n}\n:host .cds-custom-aichat--launcher__button-container.cds-custom-aichat--launcher-extended__button--extended-animation cds-custom-button.cds-custom-aichat--launcher-extended__button::part(button){\n animation:cds-custom-aichat-launcher-partially-round 300ms ease-in 500ms both;\n}\n:host .cds-custom-aichat--launcher__button-container.cds-custom-aichat--launcher-extended__button--extended-animation .cds-custom-aichat--launcher__svg{\n animation:cds-custom-aichat-launcher-icon-to-24 300ms ease-out 500ms both;\n}\n:host .cds-custom-aichat--launcher__button-container.cds-custom-aichat--launcher-extended__button--reduced-animation{\n animation:cds-custom-aichat-launcher-reduce 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 500ms both, cds-custom-aichat-launcher-completely-round 300ms ease-out 500ms both;\n}\n:host .cds-custom-aichat--launcher__button-container.cds-custom-aichat--launcher-extended__button--reduced-animation cds-custom-button.cds-custom-aichat--launcher-extended__button::part(button){\n animation:cds-custom-aichat-launcher-completely-round 300ms ease-out 500ms both;\n}\n:host .cds-custom-aichat--launcher__button-container.cds-custom-aichat--launcher-extended__button--reduced-animation .cds-custom-aichat--launcher__svg{\n animation:cds-custom-aichat-launcher-icon-to-32 300ms ease-out 500ms both;\n}\n:host .cds-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--launcher-extended__container .cds-custom-aichat--launcher-extended__wrapper{\n inset-inline:0 unset;\n}\n:host .cds-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--launcher-extended__container .cds-custom-aichat--launcher-extended__text-holder{\n padding:0.75rem 0.75rem 0.75rem 0;\n}\n:host{\n}\n:host .cds-custom-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-custom-aichat--confirm-modal .cds-custom-aichat--confirm-modal__container{\n margin:auto;\n background-color:var(--cds-background, #ffffff);\n max-inline-size:min(var(--cds-custom-aichat-max-width, 672px) - 1rem * 2, 512px);\n}\n:host .cds-custom-aichat--confirm-modal .cds-custom-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-custom-aichat--confirm-modal .cds-custom-aichat--confirm-modal__message{\n padding:0 1rem 3rem 1rem;\n}\n:host .cds-custom-aichat--confirm-modal .cds-custom-aichat--confirm-modal__no-button{\n margin-inline-end:1px;\n}\n:host .cds-custom-aichat--confirm-modal .cds-custom-aichat--confirm-modal__button-container{\n display:flex;\n border-block-start:solid 1px var(--cds-layer-03, #f4f4f4);\n}\n:host .cds-custom-aichat--confirm-modal .cds-custom-aichat--confirm-modal__button-container *{\n flex:1;\n}\n:host{\n}\n:host .cds-custom-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-custom-aichat-scrollbar-width));\n inset-block-start:1rem;\n overflow-y:auto;\n}\n:host .cds-custom-aichat--notifications__notification{\n display:block;\n inline-size:100%;\n margin-block-end:1rem;\n}\n:host{\n}\n:host .cds-custom-aichat--max-width-small{\n max-inline-size:291px;\n}\n:host .cds-custom-aichat--max-width-medium{\n max-inline-size:438px;\n}\n:host .cds-custom-aichat--max-width-large{\n max-inline-size:585px;\n}\n:host{\n}\n:host .cds-custom-aichat--connect-to-human-agent{\n max-inline-size:var(--cds-custom-aichat-card-max-width, 424px);\n}\n:host .cds-custom-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-custom-aichat--connect-to-human-agent__text{\n padding-block-end:1.5rem;\n}\n:host .cds-custom-aichat--connect-to-agent__text p,\n:host .cds-custom-aichat--connect-to-human-agent__request-button svg{\n margin-inline-start:2rem;\n}\n:host .cds-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--connect-to-human-agent__request-button svg{\n margin-inline:0 2rem;\n transform:scaleX(-1);\n}\n:host .cds-custom-aichat--message .cds-custom-aichat--connect-to-human-agent__warning a,\n:host .cds-custom-aichat--message .cds-custom-aichat--connect-to-human-agent__warning a:visited{\n color:var(--cds-link-inverse, #78a9ff);\n}\n:host .cds-custom-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-custom-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-custom-aichat--carousel-container__navigation-button,\n:host .cds-custom-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-custom-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-custom-aichat-card-max-width, 424px);\n}\n:host .cds-custom-aichat--carousel-container__navigation cds-custom-button::part(button){\n color:currentcolor;\n}\n:host .cds-custom-aichat--carousel-container__navigation-button{\n padding:0;\n color:currentcolor;\n inline-size:32px;\n}\n:host .cds-custom-aichat--carousel-container__navigation-button:first-of-type{\n margin-inline-end:0.5rem;\n}\n:host .cds-custom-aichat--carousel-container__navigation-button:last-of-type{\n margin-inline-start:0.5rem;\n}\n:host button.cds-custom-aichat--carousel-container__navigation-button > svg{\n fill:var(--cds-text-secondary, #525252);\n}\n:host .swiper .cds-custom-aichat--card-message-component{\n display:flex;\n flex-direction:column;\n block-size:calc(100% - 2px);\n}\n:host .swiper .cds-custom-aichat--body-message-components{\n flex:1;\n}\n:host .cds-custom-aichat--carousel-container__slide--narrow.swiper-slide{\n max-inline-size:calc(100% - 32px);\n}\n:host .cds-custom-aichat--carousel-container__slide--wide.swiper-slide,\n:host .cds-custom-aichat--carousel-container__slide--standard.swiper-slide{\n max-inline-size:calc(100% - 72px);\n}\n:host .cds-custom-aichat--carousel-container__controls--standard,\n:host .cds-custom-aichat--carousel-container__controls--wide{\n padding-block-start:0.5rem;\n padding-inline:56px 16px;\n}\n:host .cds-custom-aichat--carousel-container--one-slide{\n max-inline-size:var(--cds-custom-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-custom-aichat-card-max-width, 424px);\n}\n:host{\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-custom-aichat--conversational-search-citations{\n animation:none;\n padding-block-start:16px;\n }\n}\n:host .cds-custom-aichat--conversational-search-citations{\n animation:400ms cubic-bezier(0, 0, 0.3, 1) cds-custom-chat-fade-in both;\n padding-block-start:16px;\n}\n:host .cds-custom-aichat--conversational-search-citations .swiper-slide{\n block-size:unset;\n}\n:host .cds-custom-aichat--conversational-search .cds-custom-aichat--carousel-container__controls{\n padding-block-end:0;\n}\n:host .cds-custom-aichat--standard-width .cds-custom-aichat--conversational-search .cds-custom-aichat--carousel-container--one-slide,\n:host .cds-custom-aichat--wide-width .cds-custom-aichat--conversational-search .cds-custom-aichat--carousel-container--one-slide,\n:host .cds-custom-aichat--wide-width .cds-custom-aichat--conversational-search-disclaimer,\n:host .cds-custom-aichat--standard-width .cds-custom-aichat--conversational-search-disclaimer{\n margin-inline:56px 16px;\n}\n:host .cds-custom-aichat--narrow-width .cds-custom-aichat--conversational-search .cds-custom-aichat--carousel-container--one-slide,\n:host .cds-custom-aichat--narrow-width .cds-custom-aichat--conversational-search-disclaimer{\n margin-inline:16px;\n}\n:host{\n}\n:host .cds-custom-aichat--received--conversational-search .cds-custom-aichat--received--feedback,\n:host .cds-custom-aichat--wide-width .cds-custom-aichat--conversational-search-text,\n:host .cds-custom-aichat--standard-width .cds-custom-aichat--conversational-search-text{\n margin-inline:56px 16px;\n}\n:host .cds-custom-aichat--narrow-width .cds-custom-aichat--received--conversational-search .cds-custom-aichat--received--feedback,\n:host .cds-custom-aichat--narrow-width .cds-custom-aichat--conversational-search-text{\n margin-inline-start:16px;\n}\n:host .cds-custom-aichat--conversational-search-text__citations-toggle-container{\n display:block;\n padding-block-start:0.25rem;\n}\n:host .cds-custom-aichat--conversational-search-text__citations-toggle{\n margin:0;\n}\n:host .cds-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--conversational-search-text__segment:nth-last-child(1 of .cds-custom-aichat--conversational-search-text__segment){\n margin-inline:0.25rem 0;\n}\n:host{\n}\n:host .cds-custom-aichat--date-picker__confirm-button{\n display:block;\n}\n:host .cds-custom-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-custom-aichat--inline-error{\n display:flex;\n flex-direction:row;\n margin-inline-start:-16px;\n}\n:host .cds-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--inline-error{\n margin-inline:unset -16px;\n}\n:host .cds-custom-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-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--inline-error--icon-holder{\n margin:0.125rem 1rem 0 0.5rem;\n}\n:host .cds-custom-aichat--inline-error--icon{\n block-size:1rem;\n inline-size:1rem;\n}\n:host .cds-custom-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-custom-aichat--inline-error .cds-custom-aichat--inline-error--text{\n color:var(--cds-text-error, #da1e28);\n}\n:host{\n}\n:host .cds-custom-aichat--grid{\n display:flex;\n flex-direction:column;\n inline-size:100%;\n row-gap:0.5rem;\n}\n:host .cds-custom-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-custom-aichat--grid__cell{\n display:flex;\n flex-direction:column;\n inline-size:100%;\n row-gap:0.5rem;\n}\n:host .cds-custom-aichat--grid__cell .cds-custom-aichat--message-user-defined-response{\n inline-size:100%;\n}\n:host .cds-custom-aichat--grid .cds-custom-aichat--image{\n border:none;\n}\n:host .cds-custom-aichat--grid .cds-custom-aichat--image__image-wrapper{\n background-color:transparent;\n}\n:host .cds-custom-aichat--grid .cds-custom-aichat--image__skeleton{\n display:none;\n}\n:host .cds-custom-aichat--grid .cds-custom-aichat--media-player__skeleton{\n display:none;\n}\n:host .cds-custom-aichat--grid .cds-custom-aichat--media-player__root{\n inline-size:100%;\n}\n:host{\n}\n:host .cds-custom-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-custom-aichat--i-frame-panel__content{\n position:relative;\n display:flex;\n flex:1;\n}\n:host .cds-custom-aichat--i-frame-panel__content .cds-custom-aichat--i-frame-component__status-container{\n background-color:var(--cds-chat-shell-background, #ffffff);\n}\n:host .cds-custom-aichat--i-frame-panel__content .cds-custom-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-custom-aichat--i-frame-preview-card .cds-custom-aichat--image{\n position:unset;\n transition:none;\n }\n}\n:host .cds-custom-aichat--i-frame-preview-card .cds-custom-aichat--image{\n position:unset;\n transition:150ms cubic-bezier(0.2, 0, 0.38, 0.9);\n}\n:host .cds-custom-aichat--i-frame-preview-card:focus .cds-custom-aichat--image{\n outline:2px solid var(--cds-focus, #0f62fe);\n}\n:host .cds-custom-aichat--i-frame-preview-card:hover .cds-custom-aichat--image{\n background-color:var(--cds-layer-hover);\n text-decoration:underline;\n}\n:host{\n}\n:host .cds-custom-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-custom-aichat--inline-i-frame .cds-custom-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-custom-aichat--i-frame-component__wrapper{\n position:relative;\n overflow:hidden;\n background:transparent;\n}\n:host .cds-custom-aichat--i-frame-component__wrapper,\n:host .cds-custom-aichat--i-frame-component__i-frame{\n block-size:100%;\n inline-size:100%;\n}\n:host .cds-custom-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-custom-aichat--i-frame-component__status-container .cds-custom-aichat--loading-spinner{\n block-size:48px;\n inline-size:48px;\n}\n:host .cds-custom-aichat--i-frame-panel .cds-custom-aichat--panel-content{\n display:flex;\n flex:1;\n flex-direction:column;\n}\n:host .cds-custom-aichat--i-frame-panel__content{\n block-size:100%;\n inline-size:100%;\n}\n:host{\n}\n:host .cds-custom-aichat--image{\n overflow:hidden;\n padding:0;\n min-block-size:0;\n min-inline-size:0;\n}\n:host cds-custom-ai-skeleton-placeholder.cds-custom-aichat--image__skeleton::part(skeleton-placeholder\n ),\n:host cds-custom-skeleton-placeholder.cds-custom-aichat--image__skeleton::part(placeholder){\n block-size:192px;\n inline-size:100%;\n}\n:host .cds-custom-aichat--image__image-wrapper{\n background-color:var(--cds-layer-02, #ffffff);\n}\n:host .cds-custom-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-custom-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-custom-aichat--image__image--loaded{\n animation-duration:110ms;\n animation-iteration-count:1;\n animation-name:cds-custom-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-custom-aichat--image .cds-custom-aichat--image__image--loaded{\n display:block;\n margin:auto;\n}\n:host .cds-custom-aichat--image__text-and-icon .cds-custom-aichat--text-holder-tile__url{\n padding-inline-end:calc(1rem + 2px);\n}\n:host .cds-custom-aichat--image__icon-only .cds-custom-aichat--image__icon{\n padding:0.75rem;\n border-radius:var(--cds-custom-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-custom-aichat--image__icon{\n display:block;\n margin-block-end:1rem;\n margin-inline:auto 1rem;\n}\n:host .cds-custom-aichat--image__icon-only .cds-custom-aichat--image__icon,\n:host svg.cds-custom-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-custom-aichat--image__icon--link{\n color:var(--cds-link-primary, #0f62fe);\n}\n:host .cds-custom-aichat--container--render[dir=rtl] svg.cds-custom-aichat--image__icon--link{\n inset-inline:0.5rem unset;\n}\n:host{\n}\n:host .cds-custom-aichat--button-holder{\n margin-block-start:0.5rem;\n}\n:host .cds-custom-aichat--button-holder ul{\n padding:0;\n margin:0;\n list-style:none;\n}\n:host .cds-custom-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-custom-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-custom-aichat--custom-select-temporary-padding{\n padding-block-end:5rem;\n}\n:host cds-custom-dropdown::part(trigger-button){\n block-size:2.5rem;\n}\n:host cds-custom-dropdown::part(menu-body){\n position:static;\n}\n:host{\n}\n:host .cds-custom-aichat--text-area{\n position:relative;\n block-size:-moz-fit-content;\n block-size:fit-content;\n}\n:host .cds-custom-aichat--text-area .cds-custom-aichat--text-area-textarea,\n:host .cds-custom-aichat--text-area .cds-custom-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-custom-aichat--text-area .cds-custom-aichat--text-area-textarea:focus{\n border:2px solid var(--cds-focus, #0f62fe);\n border-radius:0;\n outline:0;\n}\n:host .cds-custom-aichat--text-area .cds-custom-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-custom-aichat--text-area.cds-custom-aichat--text-area--auto-size .cds-custom-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-custom-aichat--text-area .cds-custom-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-custom-aichat--body-message-components__message-wrapper{\n padding:1rem;\n}\n:host .cds-custom-aichat--body-message-components__message-wrapper.cds-custom-aichat--body-message-components__message-wrapper--short-bottom-padding{\n padding-block-end:0.75rem;\n}\n:host .cds-custom-aichat--body-message-components .cds-custom-aichat--media-player__skeleton,\n:host .cds-custom-aichat--body-message-components .cds-custom-aichat--media-player,\n:host .cds-custom-aichat--body-message-components .cds-custom-aichat--image{\n border:none;\n}\n:host{\n}\n:host .cds-custom-aichat--body-message-components__message-wrapper.cds-custom-aichat--body-message-components__message-wrapper--short-bottom-padding + .cds-custom-aichat--body-message-components__message-wrapper:not(.cds-custom-aichat--body-message-components__message-wrapper--full-width){\n padding-block-start:0;\n}\n:host .cds-custom-aichat--body-message-components__message-wrapper.cds-custom-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-custom-aichat--clickable-image{\n position:relative;\n overflow:hidden;\n padding:0;\n border:none;\n border-radius:var(--cds-custom-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-custom-aichat-card-max-width, 424px);\n outline:none;\n outline-offset:-2px;\n text-align:unset;\n transition:none;\n }\n}\n:host .cds-custom-aichat--clickable-image{\n position:relative;\n overflow:hidden;\n padding:0;\n border:none;\n border-radius:var(--cds-custom-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-custom-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-custom-aichat--clickable-image .cds-custom-aichat--text-holder-tile__title{\n color:var(--cds-text-primary, #161616);\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-custom-aichat--clickable-image .cds-custom-aichat--image{\n position:unset;\n transition:none;\n }\n}\n:host .cds-custom-aichat--clickable-image .cds-custom-aichat--image{\n position:unset;\n transition:150ms cubic-bezier(0.2, 0, 0.38, 0.9);\n}\n:host .cds-custom-aichat--clickable-image .cds-custom-aichat--image__image{\n -webkit-user-select:none;\n -moz-user-select:none;\n user-select:none;\n}\n:host .cds-custom-aichat--clickable-image:disabled{\n cursor:not-allowed;\n}\n:host .cds-custom-aichat--clickable-image:disabled .cds-custom-aichat--image{\n opacity:0.5;\n}\n:host .cds-custom-aichat--clickable-image:enabled:focus{\n outline:2px solid var(--cds-focus, #0f62fe);\n}\n:host .cds-custom-aichat--clickable-image:enabled:hover .cds-custom-aichat--image{\n background-color:var(--cds-layer-hover);\n text-decoration:underline;\n}\n:host .cds-custom-aichat--clickable-image:enabled:hover .cds-custom-aichat--image__image{\n opacity:0.8;\n}\n:host{\n}\n:host .cds-custom-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-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--disclaimer__title,\n:host .cds-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--disclaimer__description{\n text-align:end;\n}\n:host{\n}\n:host .cds-custom-aichat--footer-button-components{\n display:flex;\n inline-size:100%;\n}\n:host .cds-custom-aichat--footer-button-components cds-custom-button.cds-custom-aichat--button-item{\n flex:auto;\n}\n:host .cds-custom-aichat--footer-button-components cds-custom-button[href][kind=ghost] svg{\n fill:var(--cds-link-primary, #0f62fe);\n}\n:host cds-custom-tile .cds-custom-aichat--footer-button-components:not(.cds-custom-aichat--footer-button-components--column){\n gap:0.0625rem;\n}\n:host cds-custom-tile .cds-custom-aichat--footer-button-components:not(.cds-custom-aichat--footer-button-components--column):not(:has([kind=ghost])){\n background-color:var(--cds-button-separator, #e0e0e0);\n}\n:host cds-custom-tile .cds-custom-aichat--footer-button-components:not(.cds-custom-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-custom-tile .cds-custom-aichat--footer-button-components:not(.cds-custom-aichat--footer-button-components--column) .cds-custom-aichat--button-item:first-child::part(button){\n border-end-start-radius:calc(0.5rem - 0.0625rem);\n}\n:host cds-custom-tile .cds-custom-aichat--footer-button-components:not(.cds-custom-aichat--footer-button-components--column) .cds-custom-aichat--button-item:last-child::part(button){\n border-end-end-radius:calc(0.5rem - 0.0625rem);\n}\n:host cds-custom-tile .cds-custom-aichat--footer-button-components.cds-custom-aichat--footer-button-components--column{\n flex-direction:column;\n}\n:host cds-custom-tile .cds-custom-aichat--footer-button-components.cds-custom-aichat--footer-button-components--column .cds-custom-aichat--button-item[kind=ghost]{\n border-block-start:0.0625rem solid var(--cds-chat-bubble-border, #e0e0e0);\n}\n:host cds-custom-tile .cds-custom-aichat--footer-button-components.cds-custom-aichat--footer-button-components--column .cds-custom-aichat--button-item:last-child::part(button){\n border-end-end-radius:calc(0.5rem - 0.0625rem);\n border-end-start-radius:calc(0.5rem - 0.0625rem);\n}\n:host .cds-custom-aichat--widget--rounded .cds-custom-aichat--overlay-panel .cds-custom-aichat--footer-button-components:not(.cds-custom-aichat--footer-button-components--column){\n gap:0.0625rem;\n}\n:host .cds-custom-aichat--widget--rounded .cds-custom-aichat--overlay-panel .cds-custom-aichat--footer-button-components:not(.cds-custom-aichat--footer-button-components--column):not(:has([kind=ghost])){\n background-color:var(--cds-button-separator, #e0e0e0);\n}\n:host .cds-custom-aichat--widget--rounded .cds-custom-aichat--overlay-panel .cds-custom-aichat--footer-button-components:not(.cds-custom-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-custom-aichat--widget--rounded .cds-custom-aichat--overlay-panel .cds-custom-aichat--footer-button-components:not(.cds-custom-aichat--footer-button-components--column) .cds-custom-aichat--button-item:first-child::part(button){\n border-end-start-radius:calc(var(--cds-custom-aichat-border-radius, 0px) - 0.0625rem);\n}\n:host .cds-custom-aichat--widget--rounded .cds-custom-aichat--overlay-panel .cds-custom-aichat--footer-button-components:not(.cds-custom-aichat--footer-button-components--column) .cds-custom-aichat--button-item:last-child::part(button){\n border-end-end-radius:calc(var(--cds-custom-aichat-border-radius, 0px) - 0.0625rem);\n}\n:host .cds-custom-aichat--widget--rounded .cds-custom-aichat--overlay-panel .cds-custom-aichat--footer-button-components.cds-custom-aichat--footer-button-components--column{\n flex-direction:column;\n}\n:host .cds-custom-aichat--widget--rounded .cds-custom-aichat--overlay-panel .cds-custom-aichat--footer-button-components.cds-custom-aichat--footer-button-components--column .cds-custom-aichat--button-item[kind=ghost]{\n border-block-start:0.0625rem solid var(--cds-chat-bubble-border, #e0e0e0);\n}\n:host .cds-custom-aichat--widget--rounded .cds-custom-aichat--overlay-panel .cds-custom-aichat--footer-button-components.cds-custom-aichat--footer-button-components--column .cds-custom-aichat--button-item:last-child::part(button){\n border-end-end-radius:calc(var(--cds-custom-aichat-border-radius, 0px) - 0.0625rem);\n border-end-start-radius:calc(var(--cds-custom-aichat-border-radius, 0px) - 0.0625rem);\n}\n:host .cds-custom-aichat--widget__animation-container--with-branding-banner .cds-custom-aichat--overlay-panel .cds-custom-aichat--footer-button-components .cds-custom-aichat--button-item:first-child::part(button),\n:host .cds-custom-aichat--widget:not(.cds-custom-aichat--widget--rounded) .cds-custom-aichat--widget__animation-container:not(.cds-custom-aichat--widget__animation-container--with-branding-banner) .cds-custom-aichat--overlay-panel .cds-custom-aichat--footer-button-components .cds-custom-aichat--button-item:first-child::part(button){\n border-end-start-radius:0;\n}\n:host .cds-custom-aichat--widget__animation-container--with-branding-banner .cds-custom-aichat--overlay-panel .cds-custom-aichat--footer-button-components .cds-custom-aichat--button-item:last-child::part(button),\n:host .cds-custom-aichat--widget:not(.cds-custom-aichat--widget--rounded) .cds-custom-aichat--widget__animation-container:not(.cds-custom-aichat--widget__animation-container--with-branding-banner) .cds-custom-aichat--overlay-panel .cds-custom-aichat--footer-button-components .cds-custom-aichat--button-item:last-child::part(button){\n border-end-end-radius:0;\n}\n:host .cds-custom-aichat--widget__animation-container--with-branding-banner .cds-custom-aichat--overlay-panel .cds-custom-aichat--footer-button-components--column .cds-custom-aichat--button-item.cds-custom-aichat--button-item:last-child::part(button),\n:host .cds-custom-aichat--footer-button-components.cds-custom-aichat--footer-button-components--column .cds-custom-aichat--button-item.cds-custom-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-custom-aichat--media-player,\n:host .cds-custom-aichat--media-player__skeleton{\n overflow:hidden;\n padding:0;\n}\n:host .cds-custom-aichat--media-player__wrapper{\n overflow:hidden;\n}\n:host .cds-custom-aichat--media-player__skeleton-container,\n:host .cds-custom-aichat--media-player__wrapper{\n position:relative;\n padding-block-start:0;\n}\n:host .cds-custom-aichat--media-player__background{\n background-color:var(--cds-layer-accent-01, #e0e0e0);\n}\n:host .cds-custom-aichat--media-player__background--audio{\n display:flex;\n align-items:center;\n justify-content:center;\n}\n:host .cds-custom-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-custom-aichat--media-player__music-icon{\n fill:var(--cds-icon-on-color, #ffffff);\n}\n:host cds-custom-ai-skeleton-placeholder.cds-custom-aichat--media-player__skeleton-player::part(skeleton-placeholder\n ),\n:host cds-custom-skeleton-placeholder.cds-custom-aichat--media-player__skeleton-player::part(placeholder\n ),\n:host .cds-custom-aichat--media-player__background,\n:host .cds-custom-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-custom-ai-skeleton-placeholder.cds-custom-aichat--media-player__skeleton-player::part(skeleton-placeholder\n ),\n:host cds-custom-skeleton-placeholder.cds-custom-aichat--media-player__skeleton-player::part(placeholder\n ),\n:host .cds-custom-aichat--media-player__background{\n block-size:100%;\n inline-size:100%;\n}\n:host .cds-custom-aichat--media-player__root{\n inline-size:100%;\n}\n:host .cds-custom-aichat--media-player__skeleton-text-container{\n padding:1rem;\n}\n:host{\n}\n:host .cds-custom-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-custom-aichat--received--metablock-content:nth-child(2){\n margin-block-start:0.5rem;\n}\n:host{\n}\n:host .cds-custom-aichat--text-holder-tile{\n display:flex;\n padding:1rem;\n min-block-size:initial;\n}\n:host .cds-custom-aichat--text-holder-tile__icon{\n flex:0 1 auto;\n margin:0.125rem 0.5rem 0 0;\n}\n:host .cds-custom-aichat--text-holder-tile__wrapper{\n flex:1 1;\n align-self:center;\n}\n:host .cds-custom-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-custom-aichat--text-holder-tile__description{\n color:var(--cds-text-secondary, #525252);\n}\n:host .cds-custom-aichat--text-holder-tile__description,\n:host .cds-custom-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-custom-aichat--text-holder-tile__description-margin{\n margin-block-start:0.125rem;\n}\n:host .cds-custom-aichat--text-holder-tile__url{\n color:var(--cds-link-primary, #0f62fe);\n}\n:host .cds-custom-aichat--text-holder-tile__url-margin{\n margin-block-start:1rem;\n}\n@supports (-webkit-line-clamp: 3){\n :host .cds-custom-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-custom-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-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--text-holder-tile__icon{\n margin-inline:0.5rem 0;\n}\n:host{\n}\n:host .cds-custom-aichat--search-result-highlight{\n background-color:var(--cds-highlight, #d0e2ff);\n}\n:host{\n}\n:host .cds-custom-aichat--citation-card{\n display:block;\n inline-size:100%;\n}\n:host .cds-custom-aichat--message a.cds-custom-aichat--citation-card--clickable,\n:host .cds-custom-aichat--message button.cds-custom-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-custom-aichat--message a.cds-custom-aichat--citation-card--clickable cds-custom-tile,\n:host .cds-custom-aichat--message button.cds-custom-aichat--citation-card--clickable cds-custom-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-custom-aichat--message a.cds-custom-aichat--citation-card--clickable cds-custom-tile,\n :host .cds-custom-aichat--message button.cds-custom-aichat--citation-card--clickable cds-custom-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-custom-aichat--message a.cds-custom-aichat--citation-card--clickable:focus,\n:host .cds-custom-aichat--message button.cds-custom-aichat--citation-card--clickable:focus{\n text-decoration:none;\n}\n:host .cds-custom-aichat--message a.cds-custom-aichat--citation-card--clickable:focus cds-custom-tile,\n:host .cds-custom-aichat--message button.cds-custom-aichat--citation-card--clickable:focus cds-custom-tile{\n box-shadow:0 0 0 2px inset var(--cds-focus, #0f62fe);\n text-decoration:none;\n}\n:host .cds-custom-aichat--message a.cds-custom-aichat--citation-card--clickable:hover,\n:host .cds-custom-aichat--message button.cds-custom-aichat--citation-card--clickable:hover{\n text-decoration:none;\n}\n:host .cds-custom-aichat--message a.cds-custom-aichat--citation-card--clickable:hover cds-custom-tile,\n:host .cds-custom-aichat--message button.cds-custom-aichat--citation-card--clickable:hover cds-custom-tile{\n background:var(--cds-layer-hover-01, #e8e8e8);\n text-decoration:none;\n}\n:host .cds-custom-aichat--message a.cds-custom-aichat--citation-card--clickable:active,\n:host .cds-custom-aichat--message button.cds-custom-aichat--citation-card--clickable:active{\n text-decoration:none;\n}\n:host .cds-custom-aichat--message a.cds-custom-aichat--citation-card--clickable:active cds-custom-tile,\n:host .cds-custom-aichat--message button.cds-custom-aichat--citation-card--clickable:active cds-custom-tile{\n box-shadow:0 0 0 2px inset var(--cds-focus, #0f62fe);\n text-decoration:none;\n}\n:host .cds-custom-aichat--citation-card-header{\n block-size:128px;\n}\n:host .cds-custom-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-custom-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-custom-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-custom-aichat--citation-card-label,\n:host .cds-custom-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-custom-aichat--citation-card-icon{\n display:flex;\n align-items:center;\n}\n:host .cds-custom-aichat--message a:hover.cds-custom-aichat--citation-card--clickable{\n cursor:pointer;\n text-decoration:none;\n}\n:host{\n}\n:host .cds-custom-aichat--view-source-panel{\n position:relative;\n display:flex;\n flex-direction:column;\n block-size:100%;\n}\n:host .cds-custom-aichat--view-source-panel .cds-custom-aichat--panel-content{\n flex:1;\n}\n:host .cds-custom-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-custom-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-custom-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-custom-aichat--non-header-container{\n position:relative;\n display:flex;\n overflow:hidden;\n flex:1 1 0%;\n}\n:host .cds-custom-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-custom-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-custom-aichat--process-wizard-done-button{\n justify-content:center;\n}\n:host .cds-custom-aichat--messages-error-handler{\n padding:1rem;\n}\n:host{\n}\n:host .cds-custom-aichat--overlay-panel--catastrophic_panel .cds-custom-aichat--overlay-panel{\n display:flex;\n flex-direction:column;\n}\n:host .cds-custom-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-custom-aichat--catastrophic-error--with-header{\n border-start-end-radius:0;\n border-start-start-radius:0;\n}\n:host .cds-custom-aichat--catastrophic-error .cds-custom-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-custom-aichat--catastrophic-error__error-text-container{\n margin-block-start:1.5rem;\n margin-inline:2rem;\n}\n:host .cds-custom-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-custom-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-custom-aichat--catastrophic-error__restart-button{\n display:block;\n margin-block-start:1rem;\n}\n:host .cds-custom-aichat--catastrophic-error--with-header .cds-custom-aichat--catastrophic-error__error-text-container{\n margin-block-end:41px;\n}\n:host .cds-custom-aichat--wide-width.cds-custom-aichat--widget--max-width .cds-custom-aichat--catastrophic-error.cds-custom-aichat--panel-content{\n max-inline-size:100%;\n}\n:host .cds-custom-aichat--wide-width.cds-custom-aichat--widget--max-width .cds-custom-aichat--catastrophic-error__error-text-container{\n margin:auto;\n max-inline-size:var(--cds-custom-aichat-max-width, 672px);\n}\n:host{\n}\n:host .cds-custom-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-custom-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-custom-aichat--disclaimer__content{\n background-color:var(--cds-chat-shell-background, #ffffff);\n}\n:host .cds-custom-aichat--disclaimer .cds-custom-aichat--header{\n border-block-end:none;\n color:var(--cds-text-primary, #161616);\n}\n:host .cds-custom-aichat--disclaimer__content.cds-custom-aichat--panel-content,\n:host .cds-custom-aichat--wide-width .cds-custom-aichat--disclaimer__content.cds-custom-aichat--panel-content{\n overflow:hidden auto;\n flex-grow:1;\n padding:0 2rem 0 2rem;\n}\n:host .cds-custom-aichat--disclaimer__icon{\n padding:1.5rem 0 1.5rem 0;\n margin-inline-start:calc(1.5rem * -1);\n}\n:host .cds-custom-aichat--disclaimer__icon > svg{\n block-size:128px;\n inline-size:128px;\n}\n:host .cds-custom-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-custom-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-custom-aichat--disclaimer__buttons{\n border-block-start:1px solid var(--cds-border-subtle-01, #c6c6c6);\n inline-size:100%;\n}\n:host .cds-custom-aichat--wide-width .cds-custom-aichat--disclaimer__buttons{\n display:flex;\n flex-direction:row-reverse;\n}\n:host .cds-custom-aichat--wide-width .cds-custom-aichat--disclaimer__buttons cds-custom-button.cds-custom-aichat--disclaimer__accept-button{\n inline-size:288px;\n}\n:host .cds-custom-aichat--narrow-width .cds-custom-aichat--disclaimer__buttons cds-custom-button.cds-custom-aichat--disclaimer__accept-button,\n:host .cds-custom-aichat--standard-width .cds-custom-aichat--disclaimer__buttons cds-custom-button.cds-custom-aichat--disclaimer__accept-button{\n inline-size:100%;\n max-inline-size:unset;\n}\n:host .cds-custom-aichat--narrow-width .cds-custom-aichat--disclaimer__buttons cds-custom-button.cds-custom-aichat--disclaimer__accept-button::part(button),\n:host .cds-custom-aichat--standard-width .cds-custom-aichat--disclaimer__buttons cds-custom-button.cds-custom-aichat--disclaimer__accept-button::part(button){\n border-end-end-radius:var(--cds-custom-aichat-border-radius, 0px);\n border-end-start-radius:var(--cds-custom-aichat-border-radius, 0px);\n}\n:host .cds-custom-aichat--widget--max-width.cds-custom-aichat--wide-width .cds-custom-aichat--disclaimer__buttons-padding{\n display:flex;\n justify-content:flex-end;\n margin:auto;\n inline-size:var(--cds-custom-aichat-max-width, 672px);\n}\n:host{\n}\n:host .cds-custom-aichat--error-icon{\n fill:var(--cds-support-error, #da1e28);\n vertical-align:middle;\n}\n:host .cds-custom-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-custom-aichat--hydrating-container{\n display:flex;\n overflow:hidden;\n flex-direction:column;\n block-size:100%;\n}\n:host .cds-custom-aichat--hydrating{\n display:flex;\n align-items:center;\n justify-content:center;\n block-size:100%;\n}\n:host .cds-custom-aichat--hydrating.cds-custom-aichat--hydrating--home-screen circle{\n stroke:var(--cds-text-primary, #161616);\n}\n:host .cds-custom-aichat--hydrating .cds-custom-aichat--loading-spinner{\n block-size:48px;\n inline-size:48px;\n margin-block-start:-64px;\n}\n:host .cds-custom-aichat--hydrating .cds-custom-aichat--loading-spinner path{\n stroke:var(--cds-interactive, #0f62fe);\n}\n:host .cds-custom-aichat--widget--max-width .cds-custom-aichat--hydrating.cds-custom-aichat--panel-content{\n max-inline-size:100%;\n}\n:host{\n}\n:host .cds-custom-aichat--overlay-panel--disclaimer_panel{\n z-index:99;\n}\n:host .cds-custom-aichat--overlay-panel--custom_panel{\n z-index:95;\n}\n:host .cds-custom-aichat--overlay-panel--panel_response{\n z-index:94;\n}\n:host .cds-custom-aichat--overlay-panel--button_response_panel{\n z-index:93;\n}\n:host .cds-custom-aichat--overlay-panel--hydrating_panel{\n z-index:90;\n}\n:host .cds-custom-aichat--overlay-panel--catastrophic_panel{\n z-index:80;\n}\n:host .cds-custom-aichat--overlay-panel--home_screen_panel{\n z-index:30;\n}\n:host .cds-custom-aichat--overlay-panel--conversational_search_citation_panel{\n z-index:6;\n}\n:host .cds-custom-aichat--overlay-panel--iframe_panel{\n z-index:5;\n}\n:host .cds-custom-aichat--overlay-panel-container{\n position:absolute;\n block-size:100%;\n inline-size:100%;\n inset-block-start:0;\n}\n:host .cds-custom-aichat--overlay-panel-container--animating{\n overflow:hidden;\n}\n:host .cds-custom-aichat--widget--rounded .cds-custom-aichat--overlay--covering.cds-custom-aichat--overlay-panel-container .cds-custom-aichat--header--content{\n border-start-end-radius:0.5rem;\n border-start-start-radius:0.5rem;\n}\n:host .cds-custom-aichat--widget--rounded .cds-custom-aichat--wide-width .cds-custom-aichat--overlay--covering .cds-custom-aichat--header__left-buttons{\n border-start-start-radius:0.5rem;\n}\n:host .cds-custom-aichat--widget--rounded .cds-custom-aichat--wide-width .cds-custom-aichat--overlay--covering .cds-custom-aichat--header__right-buttons{\n border-start-end-radius:0.5rem;\n}\n:host .cds-custom-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-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--overlay-panel{\n inset-inline:unset 0;\n text-align:end;\n}\n:host .cds-custom-aichat--overlay-panel--closed{\n display:none;\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-custom-aichat--overlay-panel--opening--fade-in{\n animation:none;\n }\n}\n:host .cds-custom-aichat--overlay-panel--opening--fade-in{\n animation:240ms cubic-bezier(0, 0, 0.3, 1) cds-custom-aichat-fade-in both;\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-custom-aichat--overlay-panel--opening--slide-in-from-left{\n animation:none;\n }\n}\n:host .cds-custom-aichat--overlay-panel--opening--slide-in-from-left{\n animation:240ms cubic-bezier(0, 0, 0.3, 1) cds-custom-aichat-slide-in-from-left both;\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-custom-aichat--overlay-panel--opening--slide-in-from-right{\n animation:none;\n }\n}\n:host .cds-custom-aichat--overlay-panel--opening--slide-in-from-right{\n animation:240ms cubic-bezier(0, 0, 0.3, 1) cds-custom-aichat-slide-in-from-right both;\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-custom-aichat--container--render[dir=rtl] .cds-custom-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-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--overlay-panel--opening--slide-in-from-left{\n animation:240ms cubic-bezier(0, 0, 0.3, 1) cds-custom-aichat-slide-in-from-right both;\n }\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-custom-aichat--container--render[dir=rtl] .cds-custom-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-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--overlay-panel--opening--slide-in-from-right{\n animation:240ms cubic-bezier(0, 0, 0.3, 1) cds-custom-aichat-slide-in-from-left both;\n }\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-custom-aichat--overlay-panel--opening--slide-in-from-bottom{\n animation:none;\n }\n}\n:host .cds-custom-aichat--overlay-panel--opening--slide-in-from-bottom{\n animation:240ms cubic-bezier(0.4, 0.14, 1, 1) cds-custom-aichat-slide-in-from-bottom both;\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-custom-aichat--overlay-panel--closing--fade-out{\n animation:none;\n }\n}\n:host .cds-custom-aichat--overlay-panel--closing--fade-out{\n animation:240ms cubic-bezier(0.4, 0.14, 1, 1) cds-custom-aichat-fade-out both;\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-custom-aichat--overlay-panel--closing--slide-out-to-left{\n animation:none;\n }\n}\n:host .cds-custom-aichat--overlay-panel--closing--slide-out-to-left{\n animation:150ms cubic-bezier(0.4, 0.14, 1, 1) cds-custom-aichat-slide-out-to-left both;\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-custom-aichat--overlay-panel--closing--slide-out-to-right{\n animation:none;\n }\n}\n:host .cds-custom-aichat--overlay-panel--closing--slide-out-to-right{\n animation:150ms cubic-bezier(0.4, 0.14, 1, 1) cds-custom-aichat-slide-out-to-right both;\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-custom-aichat--overlay-panel--closing--slide-out-to-top{\n animation:none;\n }\n}\n:host .cds-custom-aichat--overlay-panel--closing--slide-out-to-top{\n animation:150ms cubic-bezier(0.4, 0.14, 1, 1) cds-custom-aichat-slide-out-to-top both;\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-custom-aichat--container--render[dir=rtl] .cds-custom-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-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--overlay-panel--closing--slide-out-to-left{\n animation:150ms cubic-bezier(0.4, 0.14, 1, 1) cds-custom-aichat-slide-out-to-right both;\n }\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-custom-aichat--container--render[dir=rtl] .cds-custom-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-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--overlay-panel--closing--slide-out-to-right{\n animation:150ms cubic-bezier(0.4, 0.14, 1, 1) cds-custom-aichat-slide-out-to-left both;\n }\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-custom-aichat--overlay-panel--closing--slide-out-to-bottom{\n animation:none;\n }\n}\n:host .cds-custom-aichat--overlay-panel--closing--slide-out-to-bottom{\n animation:150ms cubic-bezier(0.4, 0.14, 1, 1) cds-custom-aichat-slide-out-to-bottom both;\n}\n:host{\n}\n:host .cds-custom-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-custom-aichat--standard-width .cds-custom-aichat--conversational-search + .cds-custom-aichat--response-stopped,\n:host .cds-custom-aichat--wide-width .cds-custom-aichat--conversational-search + .cds-custom-aichat--response-stopped{\n padding-inline-start:56px;\n}\n:host .cds-custom-aichat--narrow-width .cds-custom-aichat--conversational-search + .cds-custom-aichat--response-stopped{\n padding-inline-start:16px;\n}\n:host{\n}\n:host .cds-custom-aichat--hidden{\n display:none;\n}\n:host .cds-custom-aichat--widget__break-word{\n overflow-wrap:break-word;\n word-break:break-word;\n word-wrap:break-word;\n}\n:host .cds-custom-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-custom-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-custom-aichat--container--render[dir=rtl]{\n direction:rtl;\n}\n:host .cds-custom-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-custom-aichat--widget__region-container{\n block-size:100%;\n inline-size:100%;\n}\n:host .cds-custom-aichat--modal-host{\n position:fixed;\n z-index:calc(var(--cds-custom-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-custom-aichat--modal-host:has(> *){\n pointer-events:auto;\n}\n:host .cds-custom-aichat--modal-host > *{\n pointer-events:auto;\n}\n:host .cds-custom-aichat--widget{\n position:relative;\n display:flex;\n flex-direction:column;\n block-size:100%;\n box-shadow:var(--cds-custom-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-custom-aichat--header{\n background-color:var(--cds-chat-header-background, #ffffff);\n}\n:host .cds-custom-aichat--ai-theme .cds-custom-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-custom-aichat-ai-box-shadow-outer, 0 4px 10px 2px var(--cds-ai-drop-shadow, rgba(15, 98, 254, 0.1)));\n}\n:host .cds-custom-aichat--frameless .cds-custom-aichat--widget{\n border:none;\n box-shadow:none;\n}\n:host{\n}\n:host .cds-custom-aichat--widget .cds-custom-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-custom-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-custom-aichat--widget.cds-custom-aichat--widget--rounded{\n border-radius:var(--cds-custom-aichat-border-radius, 0px);\n}\n:host .cds-custom-aichat--widget.cds-custom-aichat--widget--rounded .cds-custom-aichat--view-source-panel,\n:host .cds-custom-aichat--widget.cds-custom-aichat--widget--rounded .cds-custom-aichat--home-screen,\n:host .cds-custom-aichat--widget.cds-custom-aichat--widget--rounded .cds-custom-aichat--confirm-modal,\n:host .cds-custom-aichat--widget.cds-custom-aichat--widget--rounded .cds-custom-aichat--widget__animation-container,\n:host .cds-custom-aichat--widget.cds-custom-aichat--widget--rounded .cds-custom-aichat--assistant-container,\n:host .cds-custom-aichat--widget.cds-custom-aichat--widget--rounded .cds-custom-aichat--overlay-panel,\n:host .cds-custom-aichat--widget.cds-custom-aichat--widget--rounded .cds-custom-aichat--overlay-panel-container,\n:host .cds-custom-aichat--widget.cds-custom-aichat--widget--rounded .cds-custom-aichat--hydrating-container{\n border-end-end-radius:calc(var(--cds-custom-aichat-border-radius, 0px) - 1px);\n border-end-start-radius:calc(var(--cds-custom-aichat-border-radius, 0px) - 1px);\n border-start-end-radius:calc(var(--cds-custom-aichat-border-radius, 0px) - 1px);\n border-start-start-radius:calc(var(--cds-custom-aichat-border-radius, 0px) - 1px);\n}\n:host .cds-custom-aichat--widget.cds-custom-aichat--widget--rounded{\n}\n:host .cds-custom-aichat--widget.cds-custom-aichat--widget--rounded .cds-custom-aichat--header{\n border-start-end-radius:calc(var(--cds-custom-aichat-border-radius, 0px) - 1px);\n border-start-start-radius:calc(var(--cds-custom-aichat-border-radius, 0px) - 1px);\n}\n:host .cds-custom-aichat--widget.cds-custom-aichat--widget--rounded{\n}\n:host .cds-custom-aichat--widget.cds-custom-aichat--widget--rounded .cds-custom-aichat--input-container{\n border-end-end-radius:calc(var(--cds-custom-aichat-border-radius, 0px) - 1px);\n border-end-start-radius:calc(var(--cds-custom-aichat-border-radius, 0px) - 1px);\n}\n:host{\n}\n:host .cds-custom-aichat--grid .cds-custom-aichat--image,\n:host .cds-custom-aichat--grid .cds-custom-aichat--media-player,\n:host .cds-custom-aichat--grid .cds-custom-aichat--media-player__skeleton,\n:host .cds-custom-aichat--body-message-components__message-wrapper .cds-custom-aichat--image,\n:host .cds-custom-aichat--body-message-components__message-wrapper .cds-custom-aichat--media-player,\n:host .cds-custom-aichat--body-message-components__message-wrapper .cds-custom-aichat--media-player__skeleton{\n border-radius:0;\n}\n:host .cds-custom-aichat--widget.cds-custom-aichat--widget--closed .cds-custom-aichat--widget__animation-container{\n overflow:hidden;\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-custom-aichat--widget.cds-custom-aichat--widget--launched.cds-custom-aichat--widget--default-element{\n animation:none;\n }\n}\n:host .cds-custom-aichat--widget.cds-custom-aichat--widget--launched.cds-custom-aichat--widget--default-element:not(.cds-custom-aichat---is-phone){\n animation:cds-custom-aichat-widget-in 240ms cubic-bezier(0, 0, 0.3, 1) both;\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-custom-aichat--widget.cds-custom-aichat--widget--closing.cds-custom-aichat--widget--default-element{\n animation:none;\n }\n}\n:host .cds-custom-aichat--widget.cds-custom-aichat--widget--closing.cds-custom-aichat--widget--default-element{\n animation:cds-custom-aichat-widget-out 110ms cubic-bezier(0.4, 0.14, 1, 1) both;\n}\n:host .cds-custom-aichat--widget.cds-custom-aichat--widget.cds-custom-aichat--widget--closed,\n:host .cds-custom-aichat--ai-theme .cds-custom-aichat--widget.cds-custom-aichat--widget.cds-custom-aichat--widget--closed{\n border:none;\n box-shadow:none;\n}\n:host{\n}\n:host .cds-custom-aichat--widget.cds-custom-aichat--widget--closed{\n display:none;\n}\n:host{\n}\n:host .cds-custom-aichat--widget.cds-custom-aichat--widget--default-element{\n position:fixed;\n z-index:var(--cds-custom-aichat-z-index, 99999);\n block-size:var(--cds-custom-aichat-height, calc(100vh - 2 * 2rem));\n inline-size:var(--cds-custom-aichat-width, min(380px, var(--cds-custom-aichat-max-width, 672px)));\n inset:var(--cds-custom-aichat-top-position, auto) var(--cds-custom-aichat-right-position, 2rem) var(--cds-custom-aichat-bottom-position, 3rem) var(--cds-custom-aichat-left-position, auto);\n max-block-size:var(--cds-custom-aichat-max-height, 640px);\n max-inline-size:var(--cds-custom-aichat-max-width, 672px);\n min-block-size:var(--cds-custom-aichat-min-height, 150px);\n}\n:host .cds-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--widget.cds-custom-aichat--widget--default-element{\n inset-inline:var(--cds-custom-aichat-right-position, 2rem) var(--cds-custom-aichat-left-position, auto);\n}\n:host .cds-custom-aichat---is-phone:not(.cds-custom-aichat--container-disable-mobile-enhancements) .cds-custom-aichat--widget{\n position:fixed;\n z-index:var(--cds-custom-aichat-z-index, 99999);\n block-size:var(--cds-custom-aichat-height, calc(100vh - 2 * 2rem));\n inline-size:var(--cds-custom-aichat-width, min(380px, var(--cds-custom-aichat-max-width, 672px)));\n inset:var(--cds-custom-aichat-top-position, auto) var(--cds-custom-aichat-right-position, 2rem) var(--cds-custom-aichat-bottom-position, 3rem) var(--cds-custom-aichat-left-position, auto);\n max-block-size:var(--cds-custom-aichat-max-height, 640px);\n min-block-size:var(--cds-custom-aichat-min-height, 150px);\n}\n:host .cds-custom-aichat---is-phone:not(.cds-custom-aichat--container-disable-mobile-enhancements) .cds-custom-aichat--widget.cds-custom-aichat--widget--launched.cds-custom-aichat--widget--default-element{\n animation:cds-custom-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-custom-aichat---is-phone[dir=rtl]:not(.cds-custom-aichat--container-disable-mobile-enhancements) .cds-custom-aichat--widget{\n inset-inline:var(--cds-custom-aichat-right-position, 2rem) var(--cds-custom-aichat-left-position, auto);\n}\n:host .cds-custom-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-custom-aichat--widget--rounded .cds-custom-aichat{\n border-radius:calc(var(--cds-custom-aichat-border-radius, 0px) - 1px);\n}\n:host .cds-custom-aichat--ai-theme .cds-custom-aichat{\n background-image:var(--cds-custom-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-custom-aichat-ai-box-shadow-inner, inset 0 -80px 70px -65px var(--cds-ai-inner-shadow, rgba(69, 137, 255, 0.1))), var(--cds-custom-aichat-ai-box-shadow-outer, 0 4px 10px 2px var(--cds-ai-drop-shadow, rgba(15, 98, 254, 0.1)));\n}\n:host .cds-custom-aichat--frameless.cds-custom-aichat--ai-theme .cds-custom-aichat{\n box-shadow:var(--cds-custom-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-custom-aichat.cds-custom-aichat--human-agent-app{\n min-inline-size:unset;\n}\n:host .cds-custom-aichat--main-window,\n:host .cds-custom-aichat--widget__layer{\n block-size:100%;\n inline-size:100%;\n}\n:host .cds-custom-aichat--widget__focus-trap-glass{\n position:fixed;\n z-index:var(--cds-custom-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-custom-aichat--icon__logout--reverse{\n transform:scaleX(-1);\n}\n:host .cds-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--icon__logout--reverse{\n transform:none;\n}\n:host .cds-custom-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-custom-aichat--container--render .cds-custom-aichat--reverse-icon svg,\n:host .cds-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--direction-has-reversible-svg svg{\n transform:scaleX(-1);\n}\n:host{\n}\n:host .cds-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--direction-has-reversible-svg.cds-custom-aichat--reverse-icon svg{\n transform:scaleX(1);\n}\n:host{\n}\n:host .cds-custom-aichat--panel-content{\n overflow:hidden;\n}\n:host .cds-custom-aichat--widget--max-width{\n --cds-custom-aichat-border-radius:0;\n}\n:host .cds-custom-aichat--widget--max-width .cds-custom-aichat--panel-content{\n flex:1;\n margin:auto;\n block-size:100%;\n inline-size:100%;\n max-inline-size:var(--cds-custom-aichat-max-width, 672px);\n}\n:host{\n}\n:host .cds-custom-aichat--widget--rounded .cds-custom-aichat--body-and-footer-component{\n border-end-end-radius:calc(var(--cds-custom-aichat-border-radius, 0px) - 1px);\n border-end-start-radius:calc(var(--cds-custom-aichat-border-radius, 0px) - 1px);\n border-start-end-radius:calc(var(--cds-custom-aichat-border-radius, 0px) - 1px);\n border-start-start-radius:calc(var(--cds-custom-aichat-border-radius, 0px) - 1px);\n}\n:host .cds-custom-aichat--widget--rounded .cds-custom-aichat--panel-content{\n border-end-end-radius:calc(var(--cds-custom-aichat-border-radius, 0px) - 1px);\n border-end-start-radius:calc(var(--cds-custom-aichat-border-radius, 0px) - 1px);\n}\n:host{\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-custom-aichat--message{\n position:relative;\n display:block;\n margin:0;\n animation:none;\n }\n}\n:host .cds-custom-aichat--message{\n position:relative;\n display:block;\n margin:0;\n animation:cds-custom-aichat-fade-in 240ms cubic-bezier(0, 0, 0.38, 0.9) forwards;\n}\n:host .cds-custom-aichat--message.cds-custom-aichat--message--no-animation{\n animation:none;\n}\n:host .cds-custom-aichat--message.cds-custom-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-custom-aichat--message.cds-custom-aichat--message--first-message.cds-custom-aichat--message--has-focus::after{\n block-size:calc(100% - 0.5rem);\n inset-block-start:0.5rem;\n}\n:host .cds-custom-aichat--message--with-avatar-line.cds-custom-aichat--message--response.cds-custom-aichat--message--last-message:not(.cds-custom-aichat--with-human-agent){\n min-block-size:calc(100% - 88px);\n}\n:host .cds-custom-aichat--message.cds-custom-aichat--message--last-message.cds-custom-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-custom-aichat--message .cds-custom-aichat--message-vertical-padding,\n:host .cds-custom-aichat--message .cds-custom-aichat--ui-customization-element--response{\n padding-block-start:1rem;\n}\n:host .cds-custom-aichat--message--with-avatar-line .cds-custom-aichat--message-vertical-padding,\n:host .cds-custom-aichat--message--with-avatar-line .cds-custom-aichat--ui-customization-element--response,\n:host .cds-custom-aichat--message--option-response-without-title-or-description .cds-custom-aichat--message-vertical-padding{\n padding-block-start:0;\n}\n:host .cds-custom-aichat--message--option-response-without-title-or-description .cds-custom-aichat--ui-customization-element--response{\n padding-block-start:0;\n}\n:host .cds-custom-aichat--message.cds-custom-aichat--message--custom .cds-custom-aichat--message-vertical-padding,\n:host .cds-custom-aichat--message.cds-custom-aichat--message--custom .cds-custom-aichat--ui-customization-element--response{\n padding-block:0;\n}\n:host .cds-custom-aichat--message__avatar-line + .cds-custom-aichat--message--padding .cds-custom-aichat--assistant-message > div.cds-custom-aichat--received,\n:host .cds-custom-aichat--message__avatar-line + .cds-custom-aichat--message--padding .cds-custom-aichat--assistant-message > div.cds-custom-aichat--received.cds-custom-aichat--received--carousel:not(.cds-custom-aichat--received--carousel-single):first-child,\n:host .cds-custom-aichat--message__avatar-line + .cds-custom-aichat--message--padding .cds-custom-aichat--assistant-message > div.cds-custom-aichat--received.cds-custom-aichat--received--full-width:first-child{\n margin-block-start:0.5rem;\n}\n:host .cds-custom-aichat--message.cds-custom-aichat--message--last-message .cds-custom-aichat--message--padding{\n padding-block-end:1.5rem;\n}\n:host .cds-custom-aichat--sent-container{\n display:flex;\n justify-content:flex-end;\n}\n:host .cds-custom-aichat--message .cds-custom-aichat--received,\n:host .cds-custom-aichat--message .cds-custom-aichat--sent-container{\n flex-grow:1;\n margin-inline:1rem;\n min-inline-size:0;\n}\n:host .cds-custom-aichat--wide-width .cds-custom-aichat--message .cds-custom-aichat--received.cds-custom-aichat--received--conversational-search,\n:host .cds-custom-aichat--wide-width .cds-custom-aichat--message .cds-custom-aichat--received.cds-custom-aichat--received--search,\n:host .cds-custom-aichat--wide-width .cds-custom-aichat--message .cds-custom-aichat--received--carousel:not(.cds-custom-aichat--received--carousel-single),\n:host .cds-custom-aichat--wide-width .cds-custom-aichat--message .cds-custom-aichat--received.cds-custom-aichat--received--full-width,\n:host .cds-custom-aichat--narrow-width .cds-custom-aichat--message .cds-custom-aichat--received.cds-custom-aichat--received--conversational-search,\n:host .cds-custom-aichat--narrow-width .cds-custom-aichat--message .cds-custom-aichat--received.cds-custom-aichat--received--search,\n:host .cds-custom-aichat--narrow-width .cds-custom-aichat--message .cds-custom-aichat--received--carousel:not(.cds-custom-aichat--received--carousel-single),\n:host .cds-custom-aichat--narrow-width .cds-custom-aichat--message .cds-custom-aichat--received.cds-custom-aichat--received--full-width,\n:host .cds-custom-aichat--standard-width .cds-custom-aichat--message .cds-custom-aichat--received.cds-custom-aichat--received--conversational-search,\n:host .cds-custom-aichat--standard-width .cds-custom-aichat--message .cds-custom-aichat--received.cds-custom-aichat--received--search,\n:host .cds-custom-aichat--standard-width .cds-custom-aichat--message .cds-custom-aichat--received--carousel:not(.cds-custom-aichat--received--carousel-single),\n:host .cds-custom-aichat--standard-width .cds-custom-aichat--message .cds-custom-aichat--received.cds-custom-aichat--received--full-width{\n margin-inline:0 1rem;\n}\n:host .cds-custom-aichat--message a:not(button){\n color:var(--cds-link-primary, #0f62fe);\n outline:none;\n text-decoration:none;\n}\n:host .cds-custom-aichat--message a:visited:not(button){\n color:var(--cds-link-primary, #0f62fe);\n}\n:host .cds-custom-aichat--message a:hover:not(button){\n text-decoration:underline;\n}\n:host .cds-custom-aichat--message a:focus:not(button){\n text-decoration:underline;\n}\n:host .cds-custom-aichat--message::after{\n display:table;\n clear:both;\n content:\"\";\n}\n:host .cds-custom-aichat--messages--welcome.cds-custom-aichat--messages--welcome--typing{\n min-block-size:100%;\n}\n:host .cds-custom-aichat--assistant-message{\n position:relative;\n display:flex;\n flex-direction:row;\n max-inline-size:100%;\n}\n:host .cds-custom-aichat--received--inline-error,\n:host .cds-custom-aichat--received--text,\n:host .cds-custom-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-custom-aichat--message-user-defined-response{\n max-inline-size:100%;\n}\n:host .cds-custom-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-custom-aichat--received--video,\n:host .cds-custom-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-custom-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-custom-aichat--message-status{\n display:flex;\n align-items:center;\n margin-inline:8px;\n}\n:host{\n}\n:host .cds-custom-aichat--sent-and-message-state--below-message{\n display:flex;\n flex-direction:column;\n align-items:flex-end;\n}\n:host .cds-custom-aichat--sent-and-message-state--below-message .cds-custom-aichat--message-status{\n margin-inline:0;\n padding-block-start:0.5rem;\n}\n:host{\n}\n:host .cds-custom-aichat--message-status .cds-custom-aichat--loading-spinner circle{\n stroke-width:6;\n}\n@media screen and (prefers-reduced-motion: reduce){\n :host .cds-custom-aichat--sent-container .cds-custom-aichat--message-status-file-success svg{\n animation:none;\n fill:var(--cds-interactive, #0f62fe);\n }\n}\n:host .cds-custom-aichat--sent-container .cds-custom-aichat--message-status-file-success svg{\n animation:150ms cubic-bezier(0.4, 0.14, 1, 1) 2000ms cds-custom-chat-fade-out forwards;\n fill:var(--cds-interactive, #0f62fe);\n}\n:host .cds-custom-aichat--received--loading,\n:host .cds-custom-aichat--search-result,\n:host .cds-custom-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-custom-aichat--received--loading .cds-custom-aichat--received--inner{\n position:relative;\n}\n:host .cds-custom-aichat--sent--text > span{\n flex:1;\n white-space:pre-wrap;\n}\n:host .cds-custom-aichat--sent--text{\n display:flex;\n}\n:host svg.cds-custom-aichat--sent-file-icon{\n margin-inline-end:8px;\n}\n:host .cds-custom-aichat--sent{\n display:flex;\n flex-direction:column;\n inline-size:100%;\n}\n:host .cds-custom-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-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--sent--bubble{\n border-radius:0 0.5rem 0.5rem 0.5rem;\n}\n:host .cds-custom-aichat--received--options,\n:host .cds-custom-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-custom-aichat--received--iframe-preview-card{\n overflow:hidden;\n inline-size:100%;\n}\n:host .cds-custom-aichat--assistant-message .cds-custom-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-custom-aichat--assistant-message .cds-custom-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-custom-aichat--message--system-message{\n padding-block-start:28px;\n}\n:host .cds-custom-aichat--message__avatar-line{\n display:flex;\n padding-block-start:28px;\n}\n:host .cds-custom-aichat--message__avatar-line .cds-custom-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-custom-aichat--message__avatar-line .cds-custom-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-custom-aichat--message__avatar-line .cds-custom-aichat--message__avatar--assistant svg{\n block-size:28px;\n inline-size:28px;\n}\n:host .cds-custom-aichat--message__avatar-line .cds-custom-aichat--image-with-fallback{\n display:flex;\n}\n:host .cds-custom-aichat--message__avatar-line .cds-custom-aichat--image-with-fallback img,\n:host .cds-custom-aichat--message__avatar-line .cds-custom-aichat--image-with-fallback .cds-custom-aichat--icon-holder{\n border-radius:14px;\n block-size:28px;\n inline-size:28px;\n}\n:host .cds-custom-aichat--message__avatar-line .cds-custom-aichat--image-with-fallback img svg,\n:host .cds-custom-aichat--message__avatar-line .cds-custom-aichat--image-with-fallback .cds-custom-aichat--icon-holder svg{\n block-size:16px;\n fill:var(--cds-icon-inverse, #ffffff);\n inline-size:16px;\n}\n:host .cds-custom-aichat--message--request .cds-custom-aichat--message__avatar-line{\n justify-content:flex-end;\n padding-inline-end:1rem;\n}\n:host .cds-custom-aichat--message--request .cds-custom-aichat--message__avatar-line .cds-custom-aichat--message__label{\n padding-block-end:0.5rem;\n padding-inline-start:0.5rem;\n}\n:host{\n}\n:host .cds-custom-aichat--message--response .cds-custom-aichat--message__avatar-line{\n padding-inline-start:0.5rem;\n}\n:host .cds-custom-aichat--message--response .cds-custom-aichat--message__avatar-line .cds-custom-aichat--message__label{\n padding-block:0.5rem;\n padding-inline:0.5rem;\n}\n:host .cds-custom-aichat--message--response:not(.cds-custom-aichat--message--system-message).cds-custom-aichat--message--agent-message + .cds-custom-aichat--message--response:not(.cds-custom-aichat--message--system-message).cds-custom-aichat--message--agent-message,\n:host .cds-custom-aichat--message--request + .cds-custom-aichat--message--request{\n padding-block-start:0.5rem;\n}\n:host .cds-custom-aichat--message--response:not(.cds-custom-aichat--message--system-message).cds-custom-aichat--message--agent-message + .cds-custom-aichat--message--response:not(.cds-custom-aichat--message--system-message).cds-custom-aichat--message--agent-message .cds-custom-aichat--message__avatar-line,\n:host .cds-custom-aichat--message--request + .cds-custom-aichat--message--request .cds-custom-aichat--message__avatar-line{\n display:none;\n}\n:host .cds-custom-aichat--message--response:not(.cds-custom-aichat--message--system-message).cds-custom-aichat--message--agent-message + .cds-custom-aichat--message--response:not(.cds-custom-aichat--message--system-message).cds-custom-aichat--message--agent-message .cds-custom-aichat--received--from-human,\n:host .cds-custom-aichat--message--response:not(.cds-custom-aichat--message--system-message).cds-custom-aichat--message--agent-message + .cds-custom-aichat--message--response:not(.cds-custom-aichat--message--system-message).cds-custom-aichat--message--agent-message .cds-custom-aichat--sent--bubble,\n:host .cds-custom-aichat--message--request + .cds-custom-aichat--message--request .cds-custom-aichat--received--from-human,\n:host .cds-custom-aichat--message--request + .cds-custom-aichat--message--request .cds-custom-aichat--sent--bubble{\n border-radius:0.5rem;\n}\n:host .cds-custom-aichat--message--response:not(.cds-custom-aichat--message--agent-message) .cds-custom-aichat--message__avatar-line + .cds-custom-aichat--message--padding{\n padding-block-start:0.25rem;\n}\n:host .cds-custom-aichat--message__avatar--agent .cds-custom-aichat--image-with-fallback .cds-custom-aichat--icon-holder{\n background-color:var(--cds-chat-avatar-agent, #393939);\n}\n:host .cds-custom-aichat--received--from-human.cds-custom-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-custom-aichat--container--render[dir=rtl] .cds-custom-aichat--received--from-agent.cds-custom-aichat--received--text{\n border-radius:0.5rem 0 0.5rem 0.5rem;\n}\n:host .cds-custom-aichat--message__avatar--assistant .cds-custom-aichat--image-with-fallback .cds-custom-aichat--icon-holder{\n background-color:var(--cds-chat-avatar-bot, #6f6f6f);\n}\n:host{\n}\n:host .cds-custom-aichat--standard-width .cds-custom-aichat--message__avatar-line + .cds-custom-aichat--message--padding .cds-custom-aichat--assistant-message > div.cds-custom-aichat--received,\n:host .cds-custom-aichat--wide-width .cds-custom-aichat--message__avatar-line + .cds-custom-aichat--message--padding .cds-custom-aichat--assistant-message > div.cds-custom-aichat--received{\n margin-block-start:0;\n}\n:host .cds-custom-aichat--standard-width .cds-custom-aichat--message .cds-custom-aichat--received.cds-custom-aichat--received--agent-status-message,\n:host .cds-custom-aichat--wide-width .cds-custom-aichat--message .cds-custom-aichat--received.cds-custom-aichat--received--agent-status-message{\n margin-inline:0;\n}\n:host{\n}\n:host .cds-custom-aichat--wide-width .cds-custom-aichat--message .cds-custom-aichat--received,\n:host .cds-custom-aichat--standard-width .cds-custom-aichat--message .cds-custom-aichat--received,\n:host .cds-custom-aichat--wide-width .cds-custom-aichat--message .cds-custom-aichat--sent-container,\n:host .cds-custom-aichat--standard-width .cds-custom-aichat--message .cds-custom-aichat--sent-container{\n margin-inline:calc(0.5rem + 2rem + 0.5rem) 1rem;\n}\n:host{\n}\n:host .cds-custom-aichat--messages--holder{\n display:flex;\n overflow:hidden;\n flex:1;\n flex-direction:column;\n}\n:host .cds-custom-aichat--messages__wrapper{\n position:relative;\n overflow:hidden;\n flex:1;\n inline-size:100%;\n}\n:host .cds-custom-aichat--messages__wrapper:focus{\n outline:none;\n}\n:host .cds-custom-aichat--message--focus-handle,\n:host .cds-custom-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-custom-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-custom-aichat--messages{\n overflow:hidden auto;\n block-size:100%;\n inline-size:100%;\n}\n:host .cds-custom-aichat-scrollDownIndicatorIcon{\n position:absolute;\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-custom-aichat-scrollDownIndicatorIcon:active{\n background-color:var(--cds-button-secondary-active, #6f6f6f);\n}\n:host .cds-custom-aichat-scrollDownIndicatorIcon:hover{\n background-color:var(--cds-button-secondary-hover, #474747);\n}\n:host .cds-custom-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-custom--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-custom--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-custom--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-custom--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-custom--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-custom--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-custom--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-custom--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-custom--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-custom--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-custom--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-custom--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-custom-tile{\n border:1px solid var(--cds-chat-bubble-border, #e0e0e0);\n border-radius:0.5rem;\n}\n:host .cds-custom-aichat--light cds-custom-tile,\n:host .cds-custom--white cds-custom-tile,\n:host .cds-custom--g10 cds-custom-tile{\n background-color:#ffffff;\n}\n:host .cds-custom-aichat--dark,\n:host .cds-custom--g90,\n:host .cds-custom--g100{\n scrollbar-color:var(--cds-layer-03) var(--cds-layer-01);\n}\n:host .cds-custom-aichat--dark cds-custom-tile,\n:host .cds-custom--g90 cds-custom-tile,\n:host .cds-custom--g100 cds-custom-tile{\n background-color:#262626;\n}";
17035
17093
 
17036
17094
  function detectConfigChanges(previousConfig, newConfig) {
17037
17095
  if (!previousConfig) {