@carbon/ai-chat-components 0.7.0 → 0.7.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.
Files changed (542) hide show
  1. package/custom-elements.json +1 -1
  2. package/es/components/code-snippet/src/codemirror/base-setup.js +3 -3
  3. package/es/components/code-snippet/src/codemirror/codemirror-runtime.d.ts +1 -1
  4. package/es/components/code-snippet/src/codemirror/codemirror-runtime.js +1 -1
  5. package/es/components/code-snippet/src/codemirror/content-sync.d.ts +1 -1
  6. package/es/components/code-snippet/src/codemirror/editor-manager.d.ts +1 -1
  7. package/es/components/code-snippet/src/codemirror/editor-manager.js +1 -1
  8. package/es/components/code-snippet/src/codemirror/language-controller.d.ts +1 -1
  9. package/es/components/code-snippet/src/codemirror/theme.js +1 -1
  10. package/es-custom/components/card/index.d.ts +11 -0
  11. package/es-custom/components/card/index.js +11 -0
  12. package/es-custom/components/card/index.js.map +1 -0
  13. package/es-custom/components/card/src/card-footer.d.ts +43 -0
  14. package/es-custom/components/card/src/card-footer.js +141 -0
  15. package/es-custom/components/card/src/card-footer.js.map +1 -0
  16. package/es-custom/components/card/src/card-footer.scss.js +13 -0
  17. package/es-custom/components/card/src/card-footer.scss.js.map +1 -0
  18. package/es-custom/components/card/src/card-steps.d.ts +28 -0
  19. package/es-custom/components/card/src/card-steps.js +91 -0
  20. package/es-custom/components/card/src/card-steps.js.map +1 -0
  21. package/es-custom/components/card/src/card-steps.scss.js +13 -0
  22. package/es-custom/components/card/src/card-steps.scss.js.map +1 -0
  23. package/es-custom/components/card/src/card.d.ts +27 -0
  24. package/es-custom/components/card/src/card.js +65 -0
  25. package/es-custom/components/card/src/card.js.map +1 -0
  26. package/es-custom/components/card/src/card.scss.js +13 -0
  27. package/es-custom/components/card/src/card.scss.js.map +1 -0
  28. package/es-custom/components/chain-of-thought/defs.d.ts +54 -0
  29. package/es-custom/components/chain-of-thought/defs.js +38 -0
  30. package/es-custom/components/chain-of-thought/defs.js.map +1 -0
  31. package/es-custom/components/chain-of-thought/index.d.ts +10 -0
  32. package/es-custom/components/chain-of-thought/index.js +13 -0
  33. package/es-custom/components/chain-of-thought/index.js.map +1 -0
  34. package/es-custom/components/chain-of-thought/src/chain-of-thought-step.d.ts +43 -0
  35. package/es-custom/components/chain-of-thought/src/chain-of-thought-step.js +351 -0
  36. package/es-custom/components/chain-of-thought/src/chain-of-thought-step.js.map +1 -0
  37. package/es-custom/components/chain-of-thought/src/chain-of-thought-step.scss.js +13 -0
  38. package/es-custom/components/chain-of-thought/src/chain-of-thought-step.scss.js.map +1 -0
  39. package/es-custom/components/chain-of-thought/src/chain-of-thought-toggle.d.ts +33 -0
  40. package/es-custom/components/chain-of-thought/src/chain-of-thought-toggle.js +107 -0
  41. package/es-custom/components/chain-of-thought/src/chain-of-thought-toggle.js.map +1 -0
  42. package/es-custom/components/chain-of-thought/src/chain-of-thought-toggle.scss.js +13 -0
  43. package/es-custom/components/chain-of-thought/src/chain-of-thought-toggle.scss.js.map +1 -0
  44. package/es-custom/components/chain-of-thought/src/chain-of-thought.d.ts +41 -0
  45. package/es-custom/components/chain-of-thought/src/chain-of-thought.js +132 -0
  46. package/es-custom/components/chain-of-thought/src/chain-of-thought.js.map +1 -0
  47. package/es-custom/components/chain-of-thought/src/chain-of-thought.scss.js +13 -0
  48. package/es-custom/components/chain-of-thought/src/chain-of-thought.scss.js.map +1 -0
  49. package/es-custom/components/chain-of-thought/src/tool-call-data.d.ts +33 -0
  50. package/es-custom/components/chain-of-thought/src/tool-call-data.js +179 -0
  51. package/es-custom/components/chain-of-thought/src/tool-call-data.js.map +1 -0
  52. package/es-custom/components/chain-of-thought/src/tool-call-data.scss.js +13 -0
  53. package/es-custom/components/chain-of-thought/src/tool-call-data.scss.js.map +1 -0
  54. package/es-custom/components/chat-button/defs.d.ts +25 -0
  55. package/es-custom/components/chat-button/defs.js +36 -0
  56. package/es-custom/components/chat-button/defs.js.map +1 -0
  57. package/es-custom/components/chat-button/index.d.ts +9 -0
  58. package/es-custom/components/chat-button/index.js +9 -0
  59. package/es-custom/components/chat-button/index.js.map +1 -0
  60. package/es-custom/components/chat-button/src/chat-button.d.ts +40 -0
  61. package/es-custom/components/chat-button/src/chat-button.js +78 -0
  62. package/es-custom/components/chat-button/src/chat-button.js.map +1 -0
  63. package/es-custom/components/chat-button/src/chat-button.scss.js +13 -0
  64. package/es-custom/components/chat-button/src/chat-button.scss.js.map +1 -0
  65. package/es-custom/components/code-snippet/index.d.ts +3 -0
  66. package/es-custom/components/code-snippet/index.js +10 -0
  67. package/es-custom/components/code-snippet/index.js.map +1 -0
  68. package/es-custom/components/code-snippet/src/code-snippet-card.d.ts +63 -0
  69. package/es-custom/components/code-snippet/src/code-snippet-card.js +186 -0
  70. package/es-custom/components/code-snippet/src/code-snippet-card.js.map +1 -0
  71. package/es-custom/components/code-snippet/src/code-snippet.d.ts +461 -0
  72. package/es-custom/components/code-snippet/src/code-snippet.js +678 -0
  73. package/es-custom/components/code-snippet/src/code-snippet.js.map +1 -0
  74. package/es-custom/components/code-snippet/src/code-snippet.scss.js +13 -0
  75. package/es-custom/components/code-snippet/src/code-snippet.scss.js.map +1 -0
  76. package/es-custom/components/code-snippet/src/codemirror/base-setup.d.ts +12 -0
  77. package/es-custom/components/code-snippet/src/codemirror/base-setup.js +65 -0
  78. package/es-custom/components/code-snippet/src/codemirror/base-setup.js.map +1 -0
  79. package/es-custom/components/code-snippet/src/codemirror/codemirror-loader.d.ts +12 -0
  80. package/es-custom/components/code-snippet/src/codemirror/codemirror-loader.js +36 -0
  81. package/es-custom/components/code-snippet/src/codemirror/codemirror-loader.js.map +1 -0
  82. package/es-custom/components/code-snippet/src/codemirror/codemirror-runtime.d.ts +7 -0
  83. package/es-custom/components/code-snippet/src/codemirror/codemirror-runtime.js +13 -0
  84. package/es-custom/components/code-snippet/src/codemirror/codemirror-runtime.js.map +1 -0
  85. package/es-custom/components/code-snippet/src/codemirror/content-sync.d.ts +12 -0
  86. package/es-custom/components/code-snippet/src/codemirror/content-sync.js +72 -0
  87. package/es-custom/components/code-snippet/src/codemirror/content-sync.js.map +1 -0
  88. package/es-custom/components/code-snippet/src/codemirror/editor-manager.d.ts +28 -0
  89. package/es-custom/components/code-snippet/src/codemirror/editor-manager.js +75 -0
  90. package/es-custom/components/code-snippet/src/codemirror/editor-manager.js.map +1 -0
  91. package/es-custom/components/code-snippet/src/codemirror/language-controller.d.ts +38 -0
  92. package/es-custom/components/code-snippet/src/codemirror/language-controller.js +220 -0
  93. package/es-custom/components/code-snippet/src/codemirror/language-controller.js.map +1 -0
  94. package/es-custom/components/code-snippet/src/codemirror/language-data.d.ts +6 -0
  95. package/es-custom/components/code-snippet/src/codemirror/language-data.js +1043 -0
  96. package/es-custom/components/code-snippet/src/codemirror/language-data.js.map +1 -0
  97. package/es-custom/components/code-snippet/src/codemirror/language-utils.d.ts +79 -0
  98. package/es-custom/components/code-snippet/src/codemirror/language-utils.js +219 -0
  99. package/es-custom/components/code-snippet/src/codemirror/language-utils.js.map +1 -0
  100. package/es-custom/components/code-snippet/src/codemirror/marker-utils.d.ts +123 -0
  101. package/es-custom/components/code-snippet/src/codemirror/marker-utils.js +183 -0
  102. package/es-custom/components/code-snippet/src/codemirror/marker-utils.js.map +1 -0
  103. package/es-custom/components/code-snippet/src/codemirror/theme.d.ts +54 -0
  104. package/es-custom/components/code-snippet/src/codemirror/theme.js +320 -0
  105. package/es-custom/components/code-snippet/src/codemirror/theme.js.map +1 -0
  106. package/es-custom/components/code-snippet/src/dom-utils.d.ts +24 -0
  107. package/es-custom/components/code-snippet/src/dom-utils.js +63 -0
  108. package/es-custom/components/code-snippet/src/dom-utils.js.map +1 -0
  109. package/es-custom/components/code-snippet/src/formatters.d.ts +4 -0
  110. package/es-custom/components/code-snippet/src/formatters.js +19 -0
  111. package/es-custom/components/code-snippet/src/formatters.js.map +1 -0
  112. package/es-custom/components/code-snippet/src/layout-utils.d.ts +22 -0
  113. package/es-custom/components/code-snippet/src/layout-utils.js +63 -0
  114. package/es-custom/components/code-snippet/src/layout-utils.js.map +1 -0
  115. package/es-custom/components/code-snippet/src/streaming-manager.d.ts +24 -0
  116. package/es-custom/components/code-snippet/src/streaming-manager.js +120 -0
  117. package/es-custom/components/code-snippet/src/streaming-manager.js.map +1 -0
  118. package/es-custom/components/feedback/index.d.ts +4 -0
  119. package/es-custom/components/feedback/index.js +10 -0
  120. package/es-custom/components/feedback/index.js.map +1 -0
  121. package/es-custom/components/feedback/src/feedback-buttons.d.ts +63 -0
  122. package/es-custom/components/feedback/src/feedback-buttons.js +113 -0
  123. package/es-custom/components/feedback/src/feedback-buttons.js.map +1 -0
  124. package/es-custom/components/feedback/src/feedback-buttons.scss.js +13 -0
  125. package/es-custom/components/feedback/src/feedback-buttons.scss.js.map +1 -0
  126. package/es-custom/components/feedback/src/feedback-buttons.template.d.ts +4 -0
  127. package/es-custom/components/feedback/src/feedback-buttons.template.js +79 -0
  128. package/es-custom/components/feedback/src/feedback-buttons.template.js.map +1 -0
  129. package/es-custom/components/feedback/src/feedback.d.ts +113 -0
  130. package/es-custom/components/feedback/src/feedback.js +195 -0
  131. package/es-custom/components/feedback/src/feedback.js.map +1 -0
  132. package/es-custom/components/feedback/src/feedback.scss.js +13 -0
  133. package/es-custom/components/feedback/src/feedback.scss.js.map +1 -0
  134. package/es-custom/components/feedback/src/feedback.template.d.ts +12 -0
  135. package/es-custom/components/feedback/src/feedback.template.js +115 -0
  136. package/es-custom/components/feedback/src/feedback.template.js.map +1 -0
  137. package/es-custom/components/markdown/index.d.ts +2 -0
  138. package/es-custom/components/markdown/index.js +9 -0
  139. package/es-custom/components/markdown/index.js.map +1 -0
  140. package/es-custom/components/markdown/src/markdown-renderer.d.ts +66 -0
  141. package/es-custom/components/markdown/src/markdown-renderer.js +359 -0
  142. package/es-custom/components/markdown/src/markdown-renderer.js.map +1 -0
  143. package/es-custom/components/markdown/src/markdown-token-tree.d.ts +32 -0
  144. package/es-custom/components/markdown/src/markdown-token-tree.js +180 -0
  145. package/es-custom/components/markdown/src/markdown-token-tree.js.map +1 -0
  146. package/es-custom/components/markdown/src/markdown.d.ts +72 -0
  147. package/es-custom/components/markdown/src/markdown.js +342 -0
  148. package/es-custom/components/markdown/src/markdown.js.map +1 -0
  149. package/es-custom/components/markdown/src/markdown.scss.js +13 -0
  150. package/es-custom/components/markdown/src/markdown.scss.js.map +1 -0
  151. package/es-custom/components/markdown/src/markdown.template.d.ts +6 -0
  152. package/es-custom/components/markdown/src/markdown.template.js +29 -0
  153. package/es-custom/components/markdown/src/markdown.template.js.map +1 -0
  154. package/es-custom/components/markdown/src/plugins/markdown-it-attrs.d.ts +7 -0
  155. package/es-custom/components/markdown/src/plugins/markdown-it-attrs.js +84 -0
  156. package/es-custom/components/markdown/src/plugins/markdown-it-attrs.js.map +1 -0
  157. package/es-custom/components/markdown/src/plugins/markdown-it-highlight.d.ts +7 -0
  158. package/es-custom/components/markdown/src/plugins/markdown-it-highlight.js +59 -0
  159. package/es-custom/components/markdown/src/plugins/markdown-it-highlight.js.map +1 -0
  160. package/es-custom/components/markdown/src/plugins/markdown-it-task-lists.d.ts +12 -0
  161. package/es-custom/components/markdown/src/plugins/markdown-it-task-lists.js +73 -0
  162. package/es-custom/components/markdown/src/plugins/markdown-it-task-lists.js.map +1 -0
  163. package/es-custom/components/markdown/src/plugins/markdownItAttrs/core.d.ts +26 -0
  164. package/es-custom/components/markdown/src/plugins/markdownItAttrs/core.js +330 -0
  165. package/es-custom/components/markdown/src/plugins/markdownItAttrs/core.js.map +1 -0
  166. package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/blocks.d.ts +6 -0
  167. package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/blocks.js +63 -0
  168. package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/blocks.js.map +1 -0
  169. package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/code.d.ts +6 -0
  170. package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/code.js +43 -0
  171. package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/code.js.map +1 -0
  172. package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/index.d.ts +5 -0
  173. package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/index.js +55 -0
  174. package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/index.js.map +1 -0
  175. package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/inline.d.ts +19 -0
  176. package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/inline.js +210 -0
  177. package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/inline.js.map +1 -0
  178. package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/lists.d.ts +13 -0
  179. package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/lists.js +156 -0
  180. package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/lists.js.map +1 -0
  181. package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/tables.d.ts +13 -0
  182. package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/tables.js +216 -0
  183. package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/tables.js.map +1 -0
  184. package/es-custom/components/markdown/src/plugins/markdownItAttrs/types.d.ts +34 -0
  185. package/es-custom/components/markdown/src/plugins/markdownItAttrs/types.js +8 -0
  186. package/es-custom/components/markdown/src/plugins/markdownItAttrs/types.js.map +1 -0
  187. package/es-custom/components/markdown/src/plugins/markdownItAttrs/utils.d.ts +25 -0
  188. package/es-custom/components/markdown/src/plugins/markdownItAttrs/utils.js +62 -0
  189. package/es-custom/components/markdown/src/plugins/markdownItAttrs/utils.js.map +1 -0
  190. package/es-custom/components/markdown/src/utils/html-helpers.d.ts +2 -0
  191. package/es-custom/components/markdown/src/utils/html-helpers.js +204 -0
  192. package/es-custom/components/markdown/src/utils/html-helpers.js.map +1 -0
  193. package/es-custom/components/markdown/src/utils/table-helpers.d.ts +31 -0
  194. package/es-custom/components/markdown/src/utils/table-helpers.js +106 -0
  195. package/es-custom/components/markdown/src/utils/table-helpers.js.map +1 -0
  196. package/es-custom/components/markdown/src/utils.d.ts +8 -0
  197. package/es-custom/components/markdown/src/utils.js +31 -0
  198. package/es-custom/components/markdown/src/utils.js.map +1 -0
  199. package/es-custom/components/processing/index.d.ts +1 -0
  200. package/es-custom/components/processing/index.js +9 -0
  201. package/es-custom/components/processing/index.js.map +1 -0
  202. package/es-custom/components/processing/src/processing.d.ts +16 -0
  203. package/es-custom/components/processing/src/processing.js +59 -0
  204. package/es-custom/components/processing/src/processing.js.map +1 -0
  205. package/es-custom/components/processing/src/processing.scss.js +13 -0
  206. package/es-custom/components/processing/src/processing.scss.js.map +1 -0
  207. package/es-custom/components/reasoning-steps/index.d.ts +4 -0
  208. package/es-custom/components/reasoning-steps/index.js +11 -0
  209. package/es-custom/components/reasoning-steps/index.js.map +1 -0
  210. package/es-custom/components/reasoning-steps/src/reasoning-step.d.ts +33 -0
  211. package/es-custom/components/reasoning-steps/src/reasoning-step.js +251 -0
  212. package/es-custom/components/reasoning-steps/src/reasoning-step.js.map +1 -0
  213. package/es-custom/components/reasoning-steps/src/reasoning-step.scss.js +13 -0
  214. package/es-custom/components/reasoning-steps/src/reasoning-step.scss.js.map +1 -0
  215. package/es-custom/components/reasoning-steps/src/reasoning-steps-toggle.d.ts +36 -0
  216. package/es-custom/components/reasoning-steps/src/reasoning-steps-toggle.js +81 -0
  217. package/es-custom/components/reasoning-steps/src/reasoning-steps-toggle.js.map +1 -0
  218. package/es-custom/components/reasoning-steps/src/reasoning-steps-toggle.scss.js +13 -0
  219. package/es-custom/components/reasoning-steps/src/reasoning-steps-toggle.scss.js.map +1 -0
  220. package/es-custom/components/reasoning-steps/src/reasoning-steps-toggle.template.d.ts +3 -0
  221. package/es-custom/components/reasoning-steps/src/reasoning-steps-toggle.template.js +43 -0
  222. package/es-custom/components/reasoning-steps/src/reasoning-steps-toggle.template.js.map +1 -0
  223. package/es-custom/components/reasoning-steps/src/reasoning-steps.d.ts +19 -0
  224. package/es-custom/components/reasoning-steps/src/reasoning-steps.js +112 -0
  225. package/es-custom/components/reasoning-steps/src/reasoning-steps.js.map +1 -0
  226. package/es-custom/components/reasoning-steps/src/reasoning-steps.scss.js +13 -0
  227. package/es-custom/components/reasoning-steps/src/reasoning-steps.scss.js.map +1 -0
  228. package/es-custom/components/table/index.d.ts +3 -0
  229. package/es-custom/components/table/index.js +9 -0
  230. package/es-custom/components/table/index.js.map +1 -0
  231. package/es-custom/components/table/src/table-loader.d.ts +4 -0
  232. package/es-custom/components/table/src/table-loader.js +28 -0
  233. package/es-custom/components/table/src/table-loader.js.map +1 -0
  234. package/es-custom/components/table/src/table-pagination.template.d.ts +27 -0
  235. package/es-custom/components/table/src/table-pagination.template.js +55 -0
  236. package/es-custom/components/table/src/table-pagination.template.js.map +1 -0
  237. package/es-custom/components/table/src/table-runtime.d.ts +2 -0
  238. package/es-custom/components/table/src/table-runtime.js +10 -0
  239. package/es-custom/components/table/src/table-runtime.js.map +1 -0
  240. package/es-custom/components/table/src/table-skeleton.template.d.ts +6 -0
  241. package/es-custom/components/table/src/table-skeleton.template.js +34 -0
  242. package/es-custom/components/table/src/table-skeleton.template.js.map +1 -0
  243. package/es-custom/components/table/src/table.d.ts +184 -0
  244. package/es-custom/components/table/src/table.js +543 -0
  245. package/es-custom/components/table/src/table.js.map +1 -0
  246. package/es-custom/components/table/src/table.scss.js +13 -0
  247. package/es-custom/components/table/src/table.scss.js.map +1 -0
  248. package/es-custom/components/table/src/table.template.d.ts +10 -0
  249. package/es-custom/components/table/src/table.template.js +89 -0
  250. package/es-custom/components/table/src/table.template.js.map +1 -0
  251. package/es-custom/components/table/src/types.d.ts +13 -0
  252. package/es-custom/components/table/src/types.js +8 -0
  253. package/es-custom/components/table/src/types.js.map +1 -0
  254. package/es-custom/components/toolbar/index.d.ts +1 -0
  255. package/es-custom/components/toolbar/index.js +9 -0
  256. package/es-custom/components/toolbar/index.js.map +1 -0
  257. package/es-custom/components/toolbar/src/toolbar.d.ts +38 -0
  258. package/es-custom/components/toolbar/src/toolbar.js +191 -0
  259. package/es-custom/components/toolbar/src/toolbar.js.map +1 -0
  260. package/es-custom/components/toolbar/src/toolbar.scss.js +13 -0
  261. package/es-custom/components/toolbar/src/toolbar.scss.js.map +1 -0
  262. package/es-custom/components/workspace-shell/index.d.ts +4 -0
  263. package/es-custom/components/workspace-shell/index.js +12 -0
  264. package/es-custom/components/workspace-shell/index.js.map +1 -0
  265. package/es-custom/components/workspace-shell/src/workspace-shell-body.d.ts +17 -0
  266. package/es-custom/components/workspace-shell/src/workspace-shell-body.js +50 -0
  267. package/es-custom/components/workspace-shell/src/workspace-shell-body.js.map +1 -0
  268. package/es-custom/components/workspace-shell/src/workspace-shell-footer.d.ts +40 -0
  269. package/es-custom/components/workspace-shell/src/workspace-shell-footer.js +144 -0
  270. package/es-custom/components/workspace-shell/src/workspace-shell-footer.js.map +1 -0
  271. package/es-custom/components/workspace-shell/src/workspace-shell-footer.scss.js +13 -0
  272. package/es-custom/components/workspace-shell/src/workspace-shell-footer.scss.js.map +1 -0
  273. package/es-custom/components/workspace-shell/src/workspace-shell-header.d.ts +28 -0
  274. package/es-custom/components/workspace-shell/src/workspace-shell-header.js +78 -0
  275. package/es-custom/components/workspace-shell/src/workspace-shell-header.js.map +1 -0
  276. package/es-custom/components/workspace-shell/src/workspace-shell-header.scss.js +13 -0
  277. package/es-custom/components/workspace-shell/src/workspace-shell-header.scss.js.map +1 -0
  278. package/es-custom/components/workspace-shell/src/workspace-shell.d.ts +19 -0
  279. package/es-custom/components/workspace-shell/src/workspace-shell.js +56 -0
  280. package/es-custom/components/workspace-shell/src/workspace-shell.js.map +1 -0
  281. package/es-custom/components/workspace-shell/src/workspace-shell.scss.js +13 -0
  282. package/es-custom/components/workspace-shell/src/workspace-shell.scss.js.map +1 -0
  283. package/es-custom/globals/decorators/carbon-element.d.ts +37 -0
  284. package/es-custom/globals/decorators/carbon-element.js +68 -0
  285. package/es-custom/globals/decorators/carbon-element.js.map +1 -0
  286. package/es-custom/globals/decorators/index.d.ts +1 -0
  287. package/es-custom/globals/decorators/index.js +9 -0
  288. package/es-custom/globals/decorators/index.js.map +1 -0
  289. package/es-custom/globals/settings.d.ts +2 -0
  290. package/es-custom/globals/settings.js +20 -0
  291. package/es-custom/globals/settings.js.map +1 -0
  292. package/es-custom/globals/utils/uuid.d.ts +5 -0
  293. package/es-custom/globals/utils/uuid.js +32 -0
  294. package/es-custom/globals/utils/uuid.js.map +1 -0
  295. package/es-custom/node_modules/@carbon/utilities/es/documentLang/documentLang.js +9 -0
  296. package/es-custom/node_modules/@carbon/utilities/es/documentLang/documentLang.js.map +1 -0
  297. package/es-custom/node_modules/@carbon/utilities/es/overflowHandler/overflowHandler.js +11 -0
  298. package/es-custom/node_modules/@carbon/utilities/es/overflowHandler/overflowHandler.js.map +1 -0
  299. package/es-custom/react/ai-label.d.ts +4 -0
  300. package/es-custom/react/ai-label.js +28 -0
  301. package/es-custom/react/ai-label.js.map +1 -0
  302. package/es-custom/react/button.d.ts +6 -0
  303. package/es-custom/react/button.js +29 -0
  304. package/es-custom/react/button.js.map +1 -0
  305. package/es-custom/react/card.d.ts +9 -0
  306. package/es-custom/react/card.js +43 -0
  307. package/es-custom/react/card.js.map +1 -0
  308. package/es-custom/react/chain-of-thought-step.d.ts +4 -0
  309. package/es-custom/react/chain-of-thought-step.js +32 -0
  310. package/es-custom/react/chain-of-thought-step.js.map +1 -0
  311. package/es-custom/react/chain-of-thought-toggle.d.ts +6 -0
  312. package/es-custom/react/chain-of-thought-toggle.js +31 -0
  313. package/es-custom/react/chain-of-thought-toggle.js.map +1 -0
  314. package/es-custom/react/chain-of-thought.d.ts +7 -0
  315. package/es-custom/react/chain-of-thought.js +33 -0
  316. package/es-custom/react/chain-of-thought.js.map +1 -0
  317. package/es-custom/react/chat-button.d.ts +13 -0
  318. package/es-custom/react/chat-button.js +30 -0
  319. package/es-custom/react/chat-button.js.map +1 -0
  320. package/es-custom/react/code-snippet-card.d.ts +4 -0
  321. package/es-custom/react/code-snippet-card.js +31 -0
  322. package/es-custom/react/code-snippet-card.js.map +1 -0
  323. package/es-custom/react/code-snippet.d.ts +4 -0
  324. package/es-custom/react/code-snippet.js +31 -0
  325. package/es-custom/react/code-snippet.js.map +1 -0
  326. package/es-custom/react/content-switcher.d.ts +7 -0
  327. package/es-custom/react/content-switcher.js +37 -0
  328. package/es-custom/react/content-switcher.js.map +1 -0
  329. package/es-custom/react/feedback-buttons.d.ts +4 -0
  330. package/es-custom/react/feedback-buttons.js +31 -0
  331. package/es-custom/react/feedback-buttons.js.map +1 -0
  332. package/es-custom/react/feedback.d.ts +6 -0
  333. package/es-custom/react/feedback.js +32 -0
  334. package/es-custom/react/feedback.js.map +1 -0
  335. package/es-custom/react/icon-button.d.ts +4 -0
  336. package/es-custom/react/icon-button.js +28 -0
  337. package/es-custom/react/icon-button.js.map +1 -0
  338. package/es-custom/react/icon.d.ts +4 -0
  339. package/es-custom/react/icon.js +28 -0
  340. package/es-custom/react/icon.js.map +1 -0
  341. package/es-custom/react/inline-notification.d.ts +4 -0
  342. package/es-custom/react/inline-notification.js +28 -0
  343. package/es-custom/react/inline-notification.js.map +1 -0
  344. package/es-custom/react/markdown.d.ts +4 -0
  345. package/es-custom/react/markdown.js +28 -0
  346. package/es-custom/react/markdown.js.map +1 -0
  347. package/es-custom/react/overflow-menu.d.ts +9 -0
  348. package/es-custom/react/overflow-menu.js +40 -0
  349. package/es-custom/react/overflow-menu.js.map +1 -0
  350. package/es-custom/react/processing.d.ts +4 -0
  351. package/es-custom/react/processing.js +28 -0
  352. package/es-custom/react/processing.js.map +1 -0
  353. package/es-custom/react/reasoning-step.d.ts +4 -0
  354. package/es-custom/react/reasoning-step.js +32 -0
  355. package/es-custom/react/reasoning-step.js.map +1 -0
  356. package/es-custom/react/reasoning-steps-toggle.d.ts +6 -0
  357. package/es-custom/react/reasoning-steps-toggle.js +31 -0
  358. package/es-custom/react/reasoning-steps-toggle.js.map +1 -0
  359. package/es-custom/react/reasoning-steps.d.ts +4 -0
  360. package/es-custom/react/reasoning-steps.js +28 -0
  361. package/es-custom/react/reasoning-steps.js.map +1 -0
  362. package/es-custom/react/tag.d.ts +4 -0
  363. package/es-custom/react/tag.js +28 -0
  364. package/es-custom/react/tag.js.map +1 -0
  365. package/es-custom/react/tile.d.ts +7 -0
  366. package/es-custom/react/tile.js +34 -0
  367. package/es-custom/react/tile.js.map +1 -0
  368. package/es-custom/react/tool-call-data.d.ts +4 -0
  369. package/es-custom/react/tool-call-data.js +28 -0
  370. package/es-custom/react/tool-call-data.js.map +1 -0
  371. package/es-custom/react/toolbar.d.ts +4 -0
  372. package/es-custom/react/toolbar.js +28 -0
  373. package/es-custom/react/toolbar.js.map +1 -0
  374. package/es-custom/react/utils/withWebComponentBridge.d.ts +15 -0
  375. package/es-custom/react/utils/withWebComponentBridge.js +95 -0
  376. package/es-custom/react/utils/withWebComponentBridge.js.map +1 -0
  377. package/es-custom/react/workspace-shell.d.ts +11 -0
  378. package/es-custom/react/workspace-shell.js +49 -0
  379. package/es-custom/react/workspace-shell.js.map +1 -0
  380. package/es-custom/testing/load-all-lazy-deps.d.ts +10 -0
  381. package/es-custom/testing/load-all-lazy-deps.js +30 -0
  382. package/es-custom/testing/load-all-lazy-deps.js.map +1 -0
  383. package/package.json +8 -6
  384. package/dist/16-C9Ph5740.js +0 -91
  385. package/dist/16-Dw0Ci4Fd.js +0 -91
  386. package/dist/16-FH37w-8T.js +0 -91
  387. package/dist/apl-ugs9-gp6.js +0 -91
  388. package/dist/asciiarmor-BsIYfA6P.js +0 -91
  389. package/dist/asn1-HkF5z2_O.js +0 -91
  390. package/dist/asterisk-CAIjKZq6.js +0 -91
  391. package/dist/button-Bc3tNCYN.js +0 -157
  392. package/dist/button-skeleton-DH50p4bH.js +0 -131
  393. package/dist/carbon-element-C38isbCs.js +0 -91
  394. package/dist/card.min.js +0 -193
  395. package/dist/chain-of-thought.min.js +0 -294
  396. package/dist/chat-button.min.js +0 -107
  397. package/dist/checkbox-skeleton-CS3inOnf.js +0 -166
  398. package/dist/class-map-BE4cOc2X.js +0 -128
  399. package/dist/clike-BIFB3b_k.js +0 -91
  400. package/dist/clojure-CXNiCqqB.js +0 -91
  401. package/dist/cmake-CR9NkLsk.js +0 -91
  402. package/dist/cobol-Ck90O_9v.js +0 -91
  403. package/dist/code-snippet.min.js +0 -91
  404. package/dist/codemirror-runtime-D8qZsrKE.js +0 -173
  405. package/dist/coffeescript-C0nvD2I-.js +0 -91
  406. package/dist/collection-helpers-BqatNkHh.js +0 -91
  407. package/dist/commonlisp-BROP4IME.js +0 -91
  408. package/dist/crystal-D6K96_U-.js +0 -91
  409. package/dist/css-CdH_tvvW.js +0 -91
  410. package/dist/cypher-CtHiEXsa.js +0 -91
  411. package/dist/d-Dcs18F9P.js +0 -91
  412. package/dist/diff-Bp64yuxL.js +0 -91
  413. package/dist/dockerfile-1DOwDLks.js +0 -91
  414. package/dist/dtd-DBKuh-AW.js +0 -91
  415. package/dist/dylan-ZUYgifRI.js +0 -91
  416. package/dist/ebnf-CEelJcGq.js +0 -91
  417. package/dist/ecl-CphVX9Cq.js +0 -91
  418. package/dist/eiffel-BQPneqZH.js +0 -91
  419. package/dist/elm-DSPAgqOt.js +0 -91
  420. package/dist/erlang-D_rMo9WA.js +0 -91
  421. package/dist/factor-CMTQjKbR.js +0 -91
  422. package/dist/fcl-BX3Rw6-t.js +0 -91
  423. package/dist/feedback.min.js +0 -281
  424. package/dist/forth-BGhjMNd3.js +0 -91
  425. package/dist/fortran-AEBjaYMh.js +0 -91
  426. package/dist/gas-DZXAjJGb.js +0 -91
  427. package/dist/gherkin-DxJx7fVg.js +0 -91
  428. package/dist/groovy-dfLbXlDy.js +0 -91
  429. package/dist/haskell-DyZ9y283.js +0 -91
  430. package/dist/haxe-D47ScCJn.js +0 -91
  431. package/dist/http-CQ5YdFwi.js +0 -91
  432. package/dist/icon-button-jLtiwRb4.js +0 -143
  433. package/dist/icon-loader-BKTEuybf.js +0 -101
  434. package/dist/idl-DMLd56tu.js +0 -91
  435. package/dist/if-defined-Dk7gHH6I.js +0 -96
  436. package/dist/index--CctdwCC.js +0 -91
  437. package/dist/index--ktPsmev.js +0 -168
  438. package/dist/index-BHiWR-3B.js +0 -91
  439. package/dist/index-BI8bnAEd.js +0 -91
  440. package/dist/index-BbGF94cg.js +0 -91
  441. package/dist/index-BnQBLEPx.js +0 -91
  442. package/dist/index-BsUuLdXD.js +0 -91
  443. package/dist/index-C2xfmTPp.js +0 -91
  444. package/dist/index-C3BN0MYy.js +0 -91
  445. package/dist/index-CD4di8Cf.js +0 -91
  446. package/dist/index-CVyUt3LQ.js +0 -91
  447. package/dist/index-Cg7m4sg1.js +0 -91
  448. package/dist/index-ClimwzxW.js +0 -91
  449. package/dist/index-CrevYuI-.js +0 -91
  450. package/dist/index-D5kcnwm2.js +0 -91
  451. package/dist/index-DCbIO0Hl.js +0 -91
  452. package/dist/index-Db-BDibx.js +0 -91
  453. package/dist/index-DmpHBiKi.js +0 -91
  454. package/dist/index-DzPjFlOn.js +0 -91
  455. package/dist/index-MgVf_8OP.js +0 -91
  456. package/dist/index-WHfhssUV.js +0 -91
  457. package/dist/index-rdaURAlB.js +0 -91
  458. package/dist/index-tFrMu4B_.js +0 -278
  459. package/dist/index-yLnmvqXN.js +0 -91
  460. package/dist/javascript-CB_5CYW7.js +0 -91
  461. package/dist/julia-DmOIk9mc.js +0 -91
  462. package/dist/livescript-BkgLC0lL.js +0 -91
  463. package/dist/loading-icon-CmnM4I_H.js +0 -106
  464. package/dist/lua-CWM_r9JC.js +0 -91
  465. package/dist/markdown.min.js +0 -298
  466. package/dist/mathematica-BSatVfC1.js +0 -91
  467. package/dist/mbox-4am1R8hd.js +0 -91
  468. package/dist/mirc-pdtTGW9l.js +0 -91
  469. package/dist/mllike-C0YFsE1U.js +0 -91
  470. package/dist/modelica-DVTWSHR-.js +0 -91
  471. package/dist/mscgen-ByAgrjGx.js +0 -91
  472. package/dist/mumps-X97p0_h_.js +0 -91
  473. package/dist/nginx-CqUadVPT.js +0 -91
  474. package/dist/nsis-Urp7BrWk.js +0 -91
  475. package/dist/ntriples-CToxeTsT.js +0 -91
  476. package/dist/octave-Dc4mpp8A.js +0 -91
  477. package/dist/oz-DX2Pk_mI.js +0 -91
  478. package/dist/pascal-B9GL_nqz.js +0 -91
  479. package/dist/perl-BvZFpXKD.js +0 -91
  480. package/dist/pig-BxFxDHBk.js +0 -91
  481. package/dist/powershell-CwCLRM7O.js +0 -91
  482. package/dist/processing.min.js +0 -105
  483. package/dist/properties-3nFD-Vnh.js +0 -91
  484. package/dist/protobuf-RqEyuWlw.js +0 -91
  485. package/dist/pug-1L6dEUb3.js +0 -91
  486. package/dist/puppet-C-gxR1ON.js +0 -91
  487. package/dist/python-BSbm1-vO.js +0 -91
  488. package/dist/q-4yAbTbi2.js +0 -91
  489. package/dist/r-BxfoMXlJ.js +0 -91
  490. package/dist/reasoning-steps.min.js +0 -202
  491. package/dist/rpm-DOp6MTEb.js +0 -91
  492. package/dist/ruby-DD6QCAKT.js +0 -91
  493. package/dist/sas-Cb-4sFOe.js +0 -91
  494. package/dist/scheme-CZsCl8E_.js +0 -91
  495. package/dist/settings-e2aItLYn.js +0 -99
  496. package/dist/shell-Bba6ETw_.js +0 -91
  497. package/dist/sieve-DZz1QovM.js +0 -91
  498. package/dist/simple-mode-DAyX7kcU.js +0 -91
  499. package/dist/smalltalk-BVigbKw-.js +0 -91
  500. package/dist/solr-BRh8QRgo.js +0 -91
  501. package/dist/sparql-DPq9GGqu.js +0 -91
  502. package/dist/spreadsheet-DWXWohNi.js +0 -91
  503. package/dist/sql-HgNux1Fi.js +0 -91
  504. package/dist/state-Bv4FM_9B.js +0 -96
  505. package/dist/stex-DB306cTl.js +0 -91
  506. package/dist/stylus-BVbE3BhF.js +0 -91
  507. package/dist/swift-k2z0otOi.js +0 -91
  508. package/dist/sync-D3qEZKNY.js +0 -91
  509. package/dist/table-runtime-Q-ak_IZE.js +0 -510
  510. package/dist/table.min.js +0 -91
  511. package/dist/tcl-BJwoeXra.js +0 -91
  512. package/dist/text-input-BlCqTf_p.js +0 -158
  513. package/dist/textile-9DAvWy-Y.js +0 -91
  514. package/dist/throttle-Bst9TagJ.js +0 -91
  515. package/dist/tiddlywiki-CDJdAycW.js +0 -91
  516. package/dist/tiki-Dlg5DFIR.js +0 -91
  517. package/dist/toml-DGqt7oU6.js +0 -91
  518. package/dist/toolbar.min.js +0 -178
  519. package/dist/troff-xJv1Y_X_.js +0 -91
  520. package/dist/ttcn-cfg-CrKiCUlI.js +0 -91
  521. package/dist/ttcn-dBogkyiy.js +0 -91
  522. package/dist/turtle-qtDt5E0f.js +0 -91
  523. package/dist/vb-h5NatM2n.js +0 -91
  524. package/dist/vbscript-BnXXn72l.js +0 -91
  525. package/dist/velocity-C_ZqzMiT.js +0 -91
  526. package/dist/verilog-s8oM517K.js +0 -91
  527. package/dist/vhdl-BgZd0MBH.js +0 -91
  528. package/dist/webidl-CDRn4bGa.js +0 -91
  529. package/dist/workspace-shell.min.js +0 -157
  530. package/dist/xquery-DTfjYCD7.js +0 -91
  531. package/dist/yacas-DxV9-gAO.js +0 -91
  532. package/dist/z80-PFwavMao.js +0 -91
  533. package/es/node_modules/@codemirror/autocomplete/dist/index.js +0 -258
  534. package/es/node_modules/@codemirror/autocomplete/dist/index.js.map +0 -1
  535. package/es/node_modules/@codemirror/commands/dist/index.js +0 -1140
  536. package/es/node_modules/@codemirror/commands/dist/index.js.map +0 -1
  537. package/es/node_modules/@codemirror/lint/dist/index.js +0 -636
  538. package/es/node_modules/@codemirror/lint/dist/index.js.map +0 -1
  539. package/es/node_modules/@lezer/common/dist/index.js +0 -253
  540. package/es/node_modules/@lezer/common/dist/index.js.map +0 -1
  541. package/es/node_modules/crelt/index.js +0 -37
  542. package/es/node_modules/crelt/index.js.map +0 -1
@@ -0,0 +1,13 @@
1
+ /**
2
+ * Copyright IBM Corp. 2025
3
+ *
4
+ * This source code is licensed under the Apache-2.0 license found in the
5
+ * LICENSE file in the root directory of this source tree.
6
+ */
7
+
8
+ import { css } from 'lit';
9
+
10
+ var styles = css([".cds-custom--layout--size-xs{--cds-custom-layout-size-height-context:var(--cds-custom-layout-size-height-xs,1.5rem);--cds-custom-layout-size-height:var(--cds-custom-layout-size-height-context)}.cds-custom--layout-constraint--size__default-xs{--cds-custom-layout-size-height:var(--cds-custom-layout-size-height-context,var(--cds-custom-layout-size-height-xs,1.5rem))}.cds-custom--layout-constraint--size__min-xs{--cds-custom-layout-size-height-min:var(--cds-custom-layout-size-height-xs,1.5rem)}.cds-custom--layout-constraint--size__max-xs{--cds-custom-layout-size-height-max:var(--cds-custom-layout-size-height-xs,1.5rem)}.cds-custom--layout--size-sm{--cds-custom-layout-size-height-context:var(--cds-custom-layout-size-height-sm,2rem);--cds-custom-layout-size-height:var(--cds-custom-layout-size-height-context)}.cds-custom--layout-constraint--size__default-sm{--cds-custom-layout-size-height:var(--cds-custom-layout-size-height-context,var(--cds-custom-layout-size-height-sm,2rem))}.cds-custom--layout-constraint--size__min-sm{--cds-custom-layout-size-height-min:var(--cds-custom-layout-size-height-sm,2rem)}.cds-custom--layout-constraint--size__max-sm{--cds-custom-layout-size-height-max:var(--cds-custom-layout-size-height-sm,2rem)}.cds-custom--layout--size-md{--cds-custom-layout-size-height-context:var(--cds-custom-layout-size-height-md,2.5rem);--cds-custom-layout-size-height:var(--cds-custom-layout-size-height-context)}.cds-custom--layout-constraint--size__default-md{--cds-custom-layout-size-height:var(--cds-custom-layout-size-height-context,var(--cds-custom-layout-size-height-md,2.5rem))}.cds-custom--layout-constraint--size__min-md{--cds-custom-layout-size-height-min:var(--cds-custom-layout-size-height-md,2.5rem)}.cds-custom--layout-constraint--size__max-md{--cds-custom-layout-size-height-max:var(--cds-custom-layout-size-height-md,2.5rem)}.cds-custom--layout--size-lg{--cds-custom-layout-size-height-context:var(--cds-custom-layout-size-height-lg,3rem);--cds-custom-layout-size-height:var(--cds-custom-layout-size-height-context)}.cds-custom--layout-constraint--size__default-lg{--cds-custom-layout-size-height:var(--cds-custom-layout-size-height-context,var(--cds-custom-layout-size-height-lg,3rem))}.cds-custom--layout-constraint--size__min-lg{--cds-custom-layout-size-height-min:var(--cds-custom-layout-size-height-lg,3rem)}.cds-custom--layout-constraint--size__max-lg{--cds-custom-layout-size-height-max:var(--cds-custom-layout-size-height-lg,3rem)}.cds-custom--layout--size-xl{--cds-custom-layout-size-height-context:var(--cds-custom-layout-size-height-xl,4rem);--cds-custom-layout-size-height:var(--cds-custom-layout-size-height-context)}.cds-custom--layout-constraint--size__default-xl{--cds-custom-layout-size-height:var(--cds-custom-layout-size-height-context,var(--cds-custom-layout-size-height-xl,4rem))}.cds-custom--layout-constraint--size__min-xl{--cds-custom-layout-size-height-min:var(--cds-custom-layout-size-height-xl,4rem)}.cds-custom--layout-constraint--size__max-xl{--cds-custom-layout-size-height-max:var(--cds-custom-layout-size-height-xl,4rem)}.cds-custom--layout--size-2xl{--cds-custom-layout-size-height-context:var(--cds-custom-layout-size-height-2xl,5rem);--cds-custom-layout-size-height:var(--cds-custom-layout-size-height-context)}.cds-custom--layout-constraint--size__default-2xl{--cds-custom-layout-size-height:var(--cds-custom-layout-size-height-context,var(--cds-custom-layout-size-height-2xl,5rem))}.cds-custom--layout-constraint--size__min-2xl{--cds-custom-layout-size-height-min:var(--cds-custom-layout-size-height-2xl,5rem)}.cds-custom--layout-constraint--size__max-2xl{--cds-custom-layout-size-height-max:var(--cds-custom-layout-size-height-2xl,5rem)}.cds-custom--layout--density-condensed{--cds-custom-layout-density-padding-inline-context:var(--cds-custom-layout-density-padding-inline-condensed,0.5rem);--cds-custom-layout-density-padding-inline:var(--cds-custom-layout-density-padding-inline-context)}.cds-custom--layout-constraint--density__default-condensed{--cds-custom-layout-density-padding-inline:var(--cds-custom-layout-density-padding-inline-context,var(--cds-custom-layout-density-padding-inline-condensed,0.5rem))}.cds-custom--layout-constraint--density__min-condensed{--cds-custom-layout-density-padding-inline-min:var(--cds-custom-layout-density-padding-inline-condensed,0.5rem)}.cds-custom--layout-constraint--density__max-condensed{--cds-custom-layout-density-padding-inline-max:var(--cds-custom-layout-density-padding-inline-condensed,0.5rem)}.cds-custom--layout--density-normal{--cds-custom-layout-density-padding-inline-context:var(--cds-custom-layout-density-padding-inline-normal,1rem);--cds-custom-layout-density-padding-inline:var(--cds-custom-layout-density-padding-inline-context)}.cds-custom--layout-constraint--density__default-normal{--cds-custom-layout-density-padding-inline:var(--cds-custom-layout-density-padding-inline-context,var(--cds-custom-layout-density-padding-inline-normal,1rem))}.cds-custom--layout-constraint--density__min-normal{--cds-custom-layout-density-padding-inline-min:var(--cds-custom-layout-density-padding-inline-normal,1rem)}.cds-custom--layout-constraint--density__max-normal{--cds-custom-layout-density-padding-inline-max:var(--cds-custom-layout-density-padding-inline-normal,1rem)}:root{--cds-custom-layout-size-height-xs:1.5rem;--cds-custom-layout-size-height-sm:2rem;--cds-custom-layout-size-height-md:2.5rem;--cds-custom-layout-size-height-lg:3rem;--cds-custom-layout-size-height-xl:4rem;--cds-custom-layout-size-height-2xl:5rem;--cds-custom-layout-size-height-min:0px;--cds-custom-layout-size-height-max:999999999px;--cds-custom-layout-density-padding-inline-condensed:0.5rem;--cds-custom-layout-density-padding-inline-normal:1rem;--cds-custom-layout-density-padding-inline-min:0px;--cds-custom-layout-density-padding-inline-max:999999999px}.cds-custom--layer-one,:root{--cds-custom-layer:var(--cds-custom-layer-01,#f4f4f4);--cds-custom-layer-active:var(--cds-custom-layer-active-01,#c6c6c6);--cds-custom-layer-background:var(--cds-custom-layer-background-01,#fff);--cds-custom-layer-hover:var(--cds-custom-layer-hover-01,#e8e8e8);--cds-custom-layer-selected:var(--cds-custom-layer-selected-01,#e0e0e0);--cds-custom-layer-selected-hover:var(--cds-custom-layer-selected-hover-01,#d1d1d1);--cds-custom-layer-accent:var(--cds-custom-layer-accent-01,#e0e0e0);--cds-custom-layer-accent-hover:var(--cds-custom-layer-accent-hover-01,#d1d1d1);--cds-custom-layer-accent-active:var(--cds-custom-layer-accent-active-01,#a8a8a8);--cds-custom-field:var(--cds-custom-field-01,#f4f4f4);--cds-custom-field-hover:var(--cds-custom-field-hover-01,#e8e8e8);--cds-custom-border-subtle:var(--cds-custom-border-subtle-00,#e0e0e0);--cds-custom-border-subtle-selected:var(--cds-custom-border-subtle-selected-01,#c6c6c6);--cds-custom-border-strong:var(--cds-custom-border-strong-01,#8d8d8d);--cds-custom-border-tile:var(--cds-custom-border-tile-01,#c6c6c6)}.cds-custom--layer-two{--cds-custom-layer:var(--cds-custom-layer-02,#fff);--cds-custom-layer-active:var(--cds-custom-layer-active-02,#c6c6c6);--cds-custom-layer-background:var(--cds-custom-layer-background-02,#f4f4f4);--cds-custom-layer-hover:var(--cds-custom-layer-hover-02,#e8e8e8);--cds-custom-layer-selected:var(--cds-custom-layer-selected-02,#e0e0e0);--cds-custom-layer-selected-hover:var(--cds-custom-layer-selected-hover-02,#d1d1d1);--cds-custom-layer-accent:var(--cds-custom-layer-accent-02,#e0e0e0);--cds-custom-layer-accent-hover:var(--cds-custom-layer-accent-hover-02,#d1d1d1);--cds-custom-layer-accent-active:var(--cds-custom-layer-accent-active-02,#a8a8a8);--cds-custom-field:var(--cds-custom-field-02,#fff);--cds-custom-field-hover:var(--cds-custom-field-hover-02,#e8e8e8);--cds-custom-border-subtle:var(--cds-custom-border-subtle-01,#c6c6c6);--cds-custom-border-subtle-selected:var(--cds-custom-border-subtle-selected-02,#c6c6c6);--cds-custom-border-strong:var(--cds-custom-border-strong-02,#8d8d8d);--cds-custom-border-tile:var(--cds-custom-border-tile-02,#a8a8a8)}.cds-custom--layer-three{--cds-custom-layer:var(--cds-custom-layer-03,#f4f4f4);--cds-custom-layer-active:var(--cds-custom-layer-active-03,#c6c6c6);--cds-custom-layer-background:var(--cds-custom-layer-background-03,#fff);--cds-custom-layer-hover:var(--cds-custom-layer-hover-03,#e8e8e8);--cds-custom-layer-selected:var(--cds-custom-layer-selected-03,#e0e0e0);--cds-custom-layer-selected-hover:var(--cds-custom-layer-selected-hover-03,#d1d1d1);--cds-custom-layer-accent:var(--cds-custom-layer-accent-03,#e0e0e0);--cds-custom-layer-accent-hover:var(--cds-custom-layer-accent-hover-03,#d1d1d1);--cds-custom-layer-accent-active:var(--cds-custom-layer-accent-active-03,#a8a8a8);--cds-custom-field:var(--cds-custom-field-03,#f4f4f4);--cds-custom-field-hover:var(--cds-custom-field-hover-03,#e8e8e8);--cds-custom-border-subtle:var(--cds-custom-border-subtle-02,#e0e0e0);--cds-custom-border-subtle-selected:var(--cds-custom-border-subtle-selected-03,#c6c6c6);--cds-custom-border-strong:var(--cds-custom-border-strong-03,#8d8d8d);--cds-custom-border-tile:var(--cds-custom-border-tile-03,#c6c6c6)}.cds-custom--layer-one.cds-custom--layer__with-background,.cds-custom--layer-three.cds-custom--layer__with-background,.cds-custom--layer-two.cds-custom--layer__with-background{background-color:var(--cds-custom-layer-background)}@keyframes cds-custom--hide-feedback{0%{opacity:1;visibility:inherit}to{opacity:0;visibility:hidden}}@keyframes cds-custom--show-feedback{0%{opacity:0;visibility:hidden}to{opacity:1;visibility:inherit}}@keyframes cds-custom--skeleton{0%{opacity:.3;transform:scaleX(0);transform-origin:left}20%{opacity:1;transform:scaleX(1);transform-origin:left}28%{transform:scaleX(1);transform-origin:right}51%{transform:scaleX(0);transform-origin:right}58%{transform:scaleX(0);transform-origin:right}82%{transform:scaleX(1);transform-origin:right}83%{transform:scaleX(1);transform-origin:left}96%{transform:scaleX(0);transform-origin:left}to{opacity:.3;transform:scaleX(0);transform-origin:left}}.cds-custom--assistive-text,.cds-custom--visually-hidden{clip:rect(0,0,0,0);block-size:1px;border:0;inline-size:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;visibility:inherit;white-space:nowrap}.cds-custom--popover-container{display:inline-block}.cds-custom--popover-container:not(.cds-custom--popover--auto-align){position:relative}.cds-custom--popover--high-contrast .cds-custom--popover{--cds-custom-popover-background-color:var(--cds-custom-background-inverse,#393939);--cds-custom-popover-text-color:var(--cds-custom-text-inverse,#fff)}.cds-custom--popover--drop-shadow .cds-custom--popover{filter:var(--cds-custom-popover-drop-shadow,drop-shadow(0 .125rem .125rem rgba(0,0,0,.2)))}.cds-custom--popover--border>.cds-custom--popover>.cds-custom--popover-content{outline:1px solid var(--cds-custom-popover-border-color,var(--cds-custom-border-subtle));outline-offset:-1px}.cds-custom--popover--caret{--cds-custom-popover-offset:0.625rem}.cds-custom--popover{inset:0;pointer-events:none;position:absolute;z-index:6000}.cds-custom--popover-content{--cds-custom-layout-size-height-sm:2rem}.cds-custom--layout--size-sm :where(.cds-custom--popover-content),.cds-custom--popover-content.cds-custom--layout--size-sm{--cds-custom-layout-size-height:var(--cds-custom-layout-size-height-sm)}.cds-custom--popover-content{--cds-custom-layout-size-height-md:2.5rem}.cds-custom--layout--size-md :where(.cds-custom--popover-content),.cds-custom--popover-content.cds-custom--layout--size-md{--cds-custom-layout-size-height:var(--cds-custom-layout-size-height-md)}.cds-custom--popover-content{--cds-custom-layout-size-height-lg:3rem}.cds-custom--layout--size-lg :where(.cds-custom--popover-content),.cds-custom--popover-content.cds-custom--layout--size-lg{--cds-custom-layout-size-height:var(--cds-custom-layout-size-height-lg)}.cds-custom--popover-content{border:0;box-sizing:border-box;font-family:inherit;font-size:100%;margin:0;padding:0;vertical-align:baseline}.cds-custom--popover-content *,.cds-custom--popover-content :after,.cds-custom--popover-content :before{box-sizing:inherit}.cds-custom--popover-content{background-color:var(--cds-custom-popover-background-color,var(--cds-custom-layer));border-radius:var(--cds-custom-popover-border-radius,2px);color:var(--cds-custom-popover-text-color,var(--cds-custom-text-primary,#161616));display:none;inline-size:-moz-max-content;inline-size:max-content;max-inline-size:23rem;pointer-events:auto;position:absolute;z-index:6000}.cds-custom--popover--open>.cds-custom--popover>.cds-custom--popover-content{display:block}.cds-custom--popover--background-token__background>.cds-custom--popover>.cds-custom--popover-content{background-color:var(--cds-custom-background,#fff)}.cds-custom--popover-content:before{content:\"\";display:none;position:absolute}.cds-custom--popover--open>.cds-custom--popover>.cds-custom--popover-content:before{display:block}.cds-custom--popover--auto-align.cds-custom--popover-caret,.cds-custom--popover-caret{display:none;position:absolute;will-change:transform;z-index:6000}.cds-custom--popover--auto-align.cds-custom--popover-caret:after,.cds-custom--popover-caret:after{background-color:var(--cds-custom-popover-background-color,var(--cds-custom-layer));content:\"\";display:block;position:absolute}.cds-custom--popover--auto-align.cds-custom--popover-caret:before,.cds-custom--popover-caret:before{background-color:var(--cds-custom-popover-border-color,var(--cds-custom-border-subtle));content:\"\";display:none;position:absolute}.cds-custom--popover--background-token__background>.cds-custom--popover>.cds-custom--popover-caret:after{background-color:var(--cds-custom-background,#fff)}.cds-custom--popover--auto-align.cds-custom--popover--caret.cds-custom--popover--open>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret,.cds-custom--popover--border .cds-custom--popover--auto-align.cds-custom--popover-caret:before,.cds-custom--popover--border .cds-custom--popover-caret:before,.cds-custom--popover--caret.cds-custom--popover--open>.cds-custom--popover>.cds-custom--popover-caret{display:block}.cds-custom--popover--tab-tip>.cds-custom--popover>.cds-custom--popover-caret{display:none}.cds-custom--popover--bottom:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content{inset-block-end:0;inset-inline-start:50%;transform:translate(-50%,calc(100% + var(--cds-custom-popover-offset, 0rem)))}[dir=rtl] .cds-custom--popover--bottom:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content{transform:translate(50%,calc(100% + var(--cds-custom-popover-offset, 0rem)))}.cds-custom--popover--bottom-left:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content,.cds-custom--popover--bottom-start:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content{inset-block-end:0;inset-inline-start:calc(50% - var(--cds-custom-popover-offset, 0rem));transform:translate(calc(var(--cds-custom-popover-offset, 0rem)*-1),calc(100% + var(--cds-custom-popover-offset, 0rem)))}[dir=rtl] .cds-custom--popover--bottom-left:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content,[dir=rtl] .cds-custom--popover--bottom-start:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content{inset-inline-end:calc(50% - var(--cds-custom-popover-offset, 0rem));inset-inline-start:auto}.cds-custom--popover--bottom-end:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content,.cds-custom--popover--bottom-right:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content{inset-block-end:0;inset-inline-end:calc(50% - var(--cds-custom-popover-offset, 0rem));transform:translate(var(--cds-custom-popover-offset,0),calc(100% + var(--cds-custom-popover-offset, 0rem)))}[dir=rtl] .cds-custom--popover--bottom-end:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content,[dir=rtl] .cds-custom--popover--bottom-right:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content{inset-inline-start:calc(50% - var(--cds-custom-popover-offset, 0rem))}.cds-custom--popover--bottom-end>.cds-custom--popover>.cds-custom--popover-content:before,.cds-custom--popover--bottom-left>.cds-custom--popover>.cds-custom--popover-content:before,.cds-custom--popover--bottom-right>.cds-custom--popover>.cds-custom--popover-content:before,.cds-custom--popover--bottom-start>.cds-custom--popover>.cds-custom--popover-content:before,.cds-custom--popover--bottom>.cds-custom--popover>.cds-custom--popover-content:before{block-size:var(--cds-custom-popover-offset,0);inset-block-start:0;inset-inline:0;transform:translateY(-100%)}.cds-custom--popover--bottom-end>.cds-custom--popover>.cds-custom--popover-caret,.cds-custom--popover--bottom-left>.cds-custom--popover>.cds-custom--popover-caret,.cds-custom--popover--bottom-right>.cds-custom--popover>.cds-custom--popover-caret,.cds-custom--popover--bottom-start>.cds-custom--popover>.cds-custom--popover-caret,.cds-custom--popover--bottom>.cds-custom--popover>.cds-custom--popover-caret{block-size:var(--cds-custom-popover-caret-height,.375rem);inline-size:var(--cds-custom-popover-caret-width,.75rem);inset-block-end:0;inset-inline-start:50%;transform:translate(-50%,var(--cds-custom-popover-offset,0))}.cds-custom--popover--border.cds-custom--popover--bottom-end>.cds-custom--popover>.cds-custom--popover-caret:before,.cds-custom--popover--border.cds-custom--popover--bottom-left>.cds-custom--popover>.cds-custom--popover-caret:before,.cds-custom--popover--border.cds-custom--popover--bottom-right>.cds-custom--popover>.cds-custom--popover-caret:before,.cds-custom--popover--border.cds-custom--popover--bottom-start>.cds-custom--popover>.cds-custom--popover-caret:before,.cds-custom--popover--border.cds-custom--popover--bottom>.cds-custom--popover>.cds-custom--popover-caret:before,.cds-custom--popover--bottom-end>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--bottom-left>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--bottom-right>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--bottom-start>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--bottom>.cds-custom--popover>.cds-custom--popover-caret:after{block-size:var(--cds-custom-popover-caret-height,.375rem);clip-path:polygon(0 100%,50% 0,100% 100%);inline-size:var(--cds-custom-popover-caret-width,.75rem)}.cds-custom--popover--border.cds-custom--popover--bottom-end>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--border.cds-custom--popover--bottom-left>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--border.cds-custom--popover--bottom-right>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--border.cds-custom--popover--bottom-start>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--border.cds-custom--popover--bottom>.cds-custom--popover>.cds-custom--popover-caret:after{inline-size:calc(var(--cds-custom-popover-caret-width, .75rem) - 1px);inset-block-start:1px;inset-inline-start:.5px}[dir=rtl] .cds-custom--popover--bottom-end>.cds-custom--popover>.cds-custom--popover-caret,[dir=rtl] .cds-custom--popover--bottom-left>.cds-custom--popover>.cds-custom--popover-caret,[dir=rtl] .cds-custom--popover--bottom-right>.cds-custom--popover>.cds-custom--popover-caret,[dir=rtl] .cds-custom--popover--bottom-start>.cds-custom--popover>.cds-custom--popover-caret,[dir=rtl] .cds-custom--popover--bottom>.cds-custom--popover>.cds-custom--popover-caret{transform:translate(50%,var(--cds-custom-popover-offset,0))}.cds-custom--popover--bottom-end.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret,.cds-custom--popover--bottom-left.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret,.cds-custom--popover--bottom-right.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret,.cds-custom--popover--bottom-start.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret,.cds-custom--popover--bottom.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret{block-size:var(--cds-custom-popover-caret-height,.375rem);inline-size:var(--cds-custom-popover-caret-width,.75rem)}.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,.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,.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,.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,.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,.cds-custom--popover--bottom-end.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,.cds-custom--popover--bottom-left.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,.cds-custom--popover--bottom-right.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,.cds-custom--popover--bottom-start.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,.cds-custom--popover--bottom.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after{block-size:var(--cds-custom-popover-caret-height,.375rem);clip-path:polygon(0 100%,50% 0,100% 100%);inline-size:var(--cds-custom-popover-caret-width,.75rem)}.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,.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,.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,.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,.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{inline-size:calc(var(--cds-custom-popover-caret-width, .75rem) - 1px);inset-block-start:1px;inset-inline-start:.5px}.cds-custom--popover--top:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content{inset-block-start:0;inset-inline-start:50%;transform:translate(-50%,calc(-100% - var(--cds-custom-popover-offset, 0rem)))}[dir=rtl] .cds-custom--popover--top:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content{transform:translate(50%,calc(-100% - var(--cds-custom-popover-offset, 0rem)))}.cds-custom--popover--top-left:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content,.cds-custom--popover--top-start:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content{inset-block-start:0;inset-inline-start:calc(50% - var(--cds-custom-popover-offset, 0rem));transform:translate(calc(var(--cds-custom-popover-offset, 0rem)*-1),calc(-100% - var(--cds-custom-popover-offset, 0rem)))}[dir=rtl] .cds-custom--popover--top-left:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content,[dir=rtl] .cds-custom--popover--top-start:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content{inset-inline-end:calc(50% - var(--cds-custom-popover-offset, 0rem));inset-inline-start:auto}.cds-custom--popover--top-end:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content,.cds-custom--popover--top-right:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content{inset-block-start:0;inset-inline-end:calc(50% - var(--cds-custom-popover-offset, 0rem));transform:translate(var(--cds-custom-popover-offset,0),calc(-100% - var(--cds-custom-popover-offset, 0rem)))}[dir=rtl] .cds-custom--popover--top-end:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content,[dir=rtl] .cds-custom--popover--top-right:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content{inset-inline-start:calc(50% - var(--cds-custom-popover-offset, 0rem))}.cds-custom--popover--top-end>.cds-custom--popover>.cds-custom--popover-content:before,.cds-custom--popover--top-left>.cds-custom--popover>.cds-custom--popover-content:before,.cds-custom--popover--top-right>.cds-custom--popover>.cds-custom--popover-content:before,.cds-custom--popover--top-start>.cds-custom--popover>.cds-custom--popover-content:before,.cds-custom--popover--top>.cds-custom--popover>.cds-custom--popover-content:before{block-size:var(--cds-custom-popover-offset,0);inset-block-end:0;inset-inline:0;transform:translateY(100%)}.cds-custom--popover--top-end>.cds-custom--popover>.cds-custom--popover-caret,.cds-custom--popover--top-left>.cds-custom--popover>.cds-custom--popover-caret,.cds-custom--popover--top-right>.cds-custom--popover>.cds-custom--popover-caret,.cds-custom--popover--top-start>.cds-custom--popover>.cds-custom--popover-caret,.cds-custom--popover--top>.cds-custom--popover>.cds-custom--popover-caret{block-size:var(--cds-custom-popover-caret-height,.375rem);inline-size:var(--cds-custom-popover-caret-width,.75rem);inset-block-start:0;inset-inline-start:50%;transform:translate(-50%,calc(var(--cds-custom-popover-offset, 0rem)*-1))}.cds-custom--popover--border.cds-custom--popover--top-end>.cds-custom--popover>.cds-custom--popover-caret:before,.cds-custom--popover--border.cds-custom--popover--top-left>.cds-custom--popover>.cds-custom--popover-caret:before,.cds-custom--popover--border.cds-custom--popover--top-right>.cds-custom--popover>.cds-custom--popover-caret:before,.cds-custom--popover--border.cds-custom--popover--top-start>.cds-custom--popover>.cds-custom--popover-caret:before,.cds-custom--popover--border.cds-custom--popover--top>.cds-custom--popover>.cds-custom--popover-caret:before,.cds-custom--popover--top-end>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--top-left>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--top-right>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--top-start>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--top>.cds-custom--popover>.cds-custom--popover-caret:after{block-size:var(--cds-custom-popover-caret-height,.375rem);clip-path:polygon(0 0,50% 100%,100% 0);inline-size:var(--cds-custom-popover-caret-width,.75rem)}.cds-custom--popover--border.cds-custom--popover--top-end>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--border.cds-custom--popover--top-left>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--border.cds-custom--popover--top-right>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--border.cds-custom--popover--top-start>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--border.cds-custom--popover--top>.cds-custom--popover>.cds-custom--popover-caret:after{inline-size:calc(var(--cds-custom-popover-caret-width, .75rem) - 1px);inset-block-start:-1px;inset-inline-start:.5px}[dir=rtl] .cds-custom--popover--top-end:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret,[dir=rtl] .cds-custom--popover--top-left:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret,[dir=rtl] .cds-custom--popover--top-right:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret,[dir=rtl] .cds-custom--popover--top-start:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret,[dir=rtl] .cds-custom--popover--top:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret{transform:translate(50%,calc(var(--cds-custom-popover-offset, 0rem)*-1))}.cds-custom--popover--top-end.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret,.cds-custom--popover--top-left.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret,.cds-custom--popover--top-right.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret,.cds-custom--popover--top-start.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret,.cds-custom--popover--top.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret{block-size:var(--cds-custom-popover-caret-height,.375rem);inline-size:var(--cds-custom-popover-caret-width,.75rem)}.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,.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,.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,.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,.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,.cds-custom--popover--top-end.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,.cds-custom--popover--top-left.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,.cds-custom--popover--top-right.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,.cds-custom--popover--top-start.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,.cds-custom--popover--top.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after{block-size:var(--cds-custom-popover-caret-height,.375rem);clip-path:polygon(0 0,50% 100%,100% 0);inline-size:var(--cds-custom-popover-caret-width,.75rem)}.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,.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,.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,.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,.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{inline-size:calc(var(--cds-custom-popover-caret-width, .75rem) - 1px);inset-block-start:-1px;inset-inline-start:.5px}.cds-custom--popover--right:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content{inset-block-start:50%;inset-inline-start:100%;transform:translate(var(--cds-custom-popover-offset,0),-50%)}.cds-custom--popover--right-start:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content,.cds-custom--popover--right-top:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content{inset-block-start:50%;inset-inline-start:100%;transform:translate(var(--cds-custom-popover-offset,0),calc(var(--cds-custom-popover-offset, 0rem)*.5*-1 - 16px))}.cds-custom--popover--right-bottom:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content,.cds-custom--popover--right-end:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content{inset-block-end:50%;inset-inline-start:100%;transform:translate(var(--cds-custom-popover-offset,0),calc(var(--cds-custom-popover-offset, 0rem)*.5 + 16px))}[dir=rtl] .cds-custom--popover--right-bottom:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content,[dir=rtl] .cds-custom--popover--right-end:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content,[dir=rtl] .cds-custom--popover--right-start:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content,[dir=rtl] .cds-custom--popover--right-top:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content,[dir=rtl] .cds-custom--popover--right:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content{inset-inline-end:100%;inset-inline-start:auto}.cds-custom--popover--right-bottom>.cds-custom--popover>.cds-custom--popover-content:before,.cds-custom--popover--right-end>.cds-custom--popover>.cds-custom--popover-content:before,.cds-custom--popover--right-start>.cds-custom--popover>.cds-custom--popover-content:before,.cds-custom--popover--right-top>.cds-custom--popover>.cds-custom--popover-content:before,.cds-custom--popover--right>.cds-custom--popover>.cds-custom--popover-content:before{inline-size:var(--cds-custom-popover-offset,0);inset-block:0;inset-inline-start:0;transform:translateX(-100%)}.cds-custom--popover--right-bottom:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret,.cds-custom--popover--right-end:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret,.cds-custom--popover--right-start:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret,.cds-custom--popover--right-top:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret,.cds-custom--popover--right:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret{block-size:var(--cds-custom-popover-caret-width,.75rem);inline-size:var(--cds-custom-popover-caret-height,.375rem);inset-block-start:50%;inset-inline-start:100%;transform:translate(calc(var(--cds-custom-popover-offset, 0rem) - 100%),-50%)}.cds-custom--popover--right-bottom:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--right-end:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--right-start:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--right-top:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--right:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:after{block-size:var(--cds-custom-popover-caret-width,.75rem);clip-path:polygon(0 50%,100% 0,100% 100%);inline-size:var(--cds-custom-popover-caret-height,.375rem)}[dir=rtl] .cds-custom--popover--right-bottom:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret,[dir=rtl] .cds-custom--popover--right-end:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret,[dir=rtl] .cds-custom--popover--right-start:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret,[dir=rtl] .cds-custom--popover--right-top:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret,[dir=rtl] .cds-custom--popover--right:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret{inset-inline-end:100%;inset-inline-start:auto}.cds-custom--popover--border.cds-custom--popover--right-bottom:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:before,.cds-custom--popover--border.cds-custom--popover--right-end:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:before,.cds-custom--popover--border.cds-custom--popover--right-start:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:before,.cds-custom--popover--border.cds-custom--popover--right-top:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:before,.cds-custom--popover--border.cds-custom--popover--right:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:before{block-size:var(--cds-custom-popover-caret-width,.75rem);clip-path:polygon(0 50%,100% 0,100% 100%);inline-size:var(--cds-custom-popover-caret-height,.375rem)}.cds-custom--popover--border.cds-custom--popover--right-bottom:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--border.cds-custom--popover--right-end:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--border.cds-custom--popover--right-start:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--border.cds-custom--popover--right-top:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--border.cds-custom--popover--right:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:after{inset-inline-start:1px}[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,[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,[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,[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,[dir=rtl] .cds-custom--popover--border.cds-custom--popover--right:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:after{inset-inline-start:-1px}.cds-custom--popover--right-bottom.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret,.cds-custom--popover--right-end.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret,.cds-custom--popover--right-start.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret,.cds-custom--popover--right-top.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret,.cds-custom--popover--right.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret{block-size:var(--cds-custom-popover-caret-width,.75rem);inline-size:var(--cds-custom-popover-caret-height,.375rem)}.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,.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,.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,.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,.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,.cds-custom--popover--right-bottom.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,.cds-custom--popover--right-end.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,.cds-custom--popover--right-start.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,.cds-custom--popover--right-top.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,.cds-custom--popover--right.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after{block-size:var(--cds-custom-popover-caret-width,.75rem);clip-path:polygon(0 50%,100% 0,100% 100%);inline-size:var(--cds-custom-popover-caret-height,.375rem)}.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,.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,.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,.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,.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{inset-inline-start:1px}[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,[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,[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,[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,[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{margin-inline-start:1px}[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,[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,[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,[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,[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{inset-inline-start:0}.cds-custom--popover--left:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content{inset-block-start:50%;inset-inline-end:100%;transform:translate(calc(var(--cds-custom-popover-offset, 0rem)*-1 + .1px),-50%)}.cds-custom--popover--left-start:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content,.cds-custom--popover--left-top:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content{inset-block-start:50%;inset-inline-end:100%;transform:translate(calc(var(--cds-custom-popover-offset, 0rem)*-1),calc(var(--cds-custom-popover-offset, 0rem)*-.5 - 16px))}.cds-custom--popover--left-bottom:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content,.cds-custom--popover--left-end:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content{inset-block-end:50%;inset-inline-end:100%;transform:translate(calc(var(--cds-custom-popover-offset, 0rem)*-1),calc(var(--cds-custom-popover-offset, 0rem)*.5 + 16px))}[dir=rtl] .cds-custom--popover--left-bottom:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content,[dir=rtl] .cds-custom--popover--left-end:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content,[dir=rtl] .cds-custom--popover--left-start:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content,[dir=rtl] .cds-custom--popover--left-top:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content,[dir=rtl] .cds-custom--popover--left:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content{inset-inline-end:auto;inset-inline-start:100%}.cds-custom--popover--left-bottom>.cds-custom--popover>.cds-custom--popover-content:before,.cds-custom--popover--left-end>.cds-custom--popover>.cds-custom--popover-content:before,.cds-custom--popover--left-start>.cds-custom--popover>.cds-custom--popover-content:before,.cds-custom--popover--left-top>.cds-custom--popover>.cds-custom--popover-content:before,.cds-custom--popover--left>.cds-custom--popover>.cds-custom--popover-content:before{inline-size:var(--cds-custom-popover-offset,0);inset-block:0;inset-inline-end:0;transform:translateX(100%)}.cds-custom--popover--left-bottom:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret,.cds-custom--popover--left-end:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret,.cds-custom--popover--left-start:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret,.cds-custom--popover--left-top:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret,.cds-custom--popover--left:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret{block-size:var(--cds-custom-popover-caret-width,.75rem);inline-size:var(--cds-custom-popover-caret-height,.375rem);inset-block-start:50%;inset-inline-end:100%;transform:translate(calc(var(--cds-custom-popover-offset, 0rem)*-1 + 100%),-50%)}.cds-custom--popover--left-bottom:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--left-end:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--left-start:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--left-top:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--left:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:after{block-size:var(--cds-custom-popover-caret-width,.75rem);clip-path:polygon(0 0,100% 50%,0 100%);inline-size:var(--cds-custom-popover-caret-height,.375rem)}[dir=rtl] .cds-custom--popover--left-bottom:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret,[dir=rtl] .cds-custom--popover--left-end:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret,[dir=rtl] .cds-custom--popover--left-start:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret,[dir=rtl] .cds-custom--popover--left-top:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret,[dir=rtl] .cds-custom--popover--left:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret{inset-inline-end:auto;inset-inline-start:100%}.cds-custom--popover--border.cds-custom--popover--left-bottom:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:before,.cds-custom--popover--border.cds-custom--popover--left-end:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:before,.cds-custom--popover--border.cds-custom--popover--left-start:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:before,.cds-custom--popover--border.cds-custom--popover--left-top:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:before,.cds-custom--popover--border.cds-custom--popover--left:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:before{block-size:var(--cds-custom-popover-caret-width,.75rem);clip-path:polygon(0 0,100% 50%,0 100%);inline-size:var(--cds-custom-popover-caret-height,.375rem)}.cds-custom--popover--border.cds-custom--popover--left-bottom:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--border.cds-custom--popover--left-end:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--border.cds-custom--popover--left-start:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--border.cds-custom--popover--left-top:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--border.cds-custom--popover--left:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:after{inset-inline-start:-1px}[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,[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,[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,[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,[dir=rtl] .cds-custom--popover--border.cds-custom--popover--left:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:after{inset-inline-start:1px}.cds-custom--popover--left-bottom.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret,.cds-custom--popover--left-end.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret,.cds-custom--popover--left-start.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret,.cds-custom--popover--left-top.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret,.cds-custom--popover--left.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret{block-size:var(--cds-custom-popover-caret-width,.75rem);inline-size:var(--cds-custom-popover-caret-height,.375rem)}.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,.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,.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,.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,.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,.cds-custom--popover--left-bottom.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,.cds-custom--popover--left-end.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,.cds-custom--popover--left-start.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,.cds-custom--popover--left-top.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,.cds-custom--popover--left.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after{block-size:var(--cds-custom-popover-caret-width,.75rem);clip-path:polygon(0 0,100% 50%,0 100%);inline-size:var(--cds-custom-popover-caret-height,.375rem)}.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,.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,.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,.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,.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{inset-inline-start:-1px}[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,[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,[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,[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,[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{margin-inline-start:-1px}[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,[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,[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,[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,[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{inset-inline-start:0}.cds-custom--popover--tab-tip>.cds-custom--popover>.cds-custom--popover-content{border-radius:0}.cds-custom--popover--tab-tip.cds-custom--popover--bottom-start:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content,.cds-custom--popover--tab-tip.cds-custom--popover--top-start:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content,[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,[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{inset-inline-start:0}.cds-custom--popover--tab-tip.cds-custom--popover--bottom-end:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content,.cds-custom--popover--tab-tip.cds-custom--popover--top-end:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content,[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,[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{inset-inline-end:0;inset-inline-start:auto}.cds-custom--popover--tab-tip .cds-custom--popover{will-change:filter}.cds-custom--popover--tab-tip__button{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:none;border:0;box-sizing:border-box;cursor:pointer;display:inline-block;font-family:inherit;font-size:100%;inline-size:100%;margin:0;padding:0;text-align:start;vertical-align:baseline}.cds-custom--popover--tab-tip__button *,.cds-custom--popover--tab-tip__button :after,.cds-custom--popover--tab-tip__button :before{box-sizing:inherit}.cds-custom--popover--tab-tip__button::-moz-focus-inner{border:0}.cds-custom--popover--tab-tip__button{align-items:center;block-size:2rem;display:inline-flex;inline-size:2rem;justify-content:center;position:relative}.cds-custom--popover--tab-tip__button:focus{outline:2px solid var(--cds-custom-focus,#0f62fe);outline-offset:-2px}@media screen and (prefers-contrast){.cds-custom--popover--tab-tip__button:focus{outline-style:dotted}}.cds-custom--popover--tab-tip__button:hover{background-color:var(--cds-custom-layer-hover)}.cds-custom--popover--tab-tip.cds-custom--popover--open .cds-custom--popover--tab-tip__button{background:var(--cds-custom-layer);box-shadow:0 2px 2px rgba(0,0,0,.2)}.cds-custom--popover--tab-tip.cds-custom--popover--open .cds-custom--popover--tab-tip__button:not(:focus):after{background:var(--cds-custom-layer);block-size:2px;content:\"\";inline-size:100%;inset-block-end:0;position:absolute;z-index:6001}.cds-custom--popover--tab-tip__button svg{fill:var(--cds-custom-icon-primary,#161616)}.cds-custom--tooltip{--cds-custom-popover-offset:12px}.cds-custom--tooltip-content{font-size:var(--cds-custom-body-01-font-size,.875rem);font-weight:var(--cds-custom-body-01-font-weight,400);letter-spacing:var(--cds-custom-body-01-letter-spacing,.16px);line-height:var(--cds-custom-body-01-line-height,1.42857);max-inline-size:18rem;overflow-wrap:break-word;padding:var(--cds-custom-tooltip-padding-block,1rem) var(--cds-custom-tooltip-padding-inline,1rem)}.cds-custom--icon-tooltip{--cds-custom-tooltip-padding-block:0.125rem;--cds-custom-popover-caret-width:0.5rem;--cds-custom-popover-caret-height:0.25rem;--cds-custom-popover-offset:0.5rem}.cds-custom--icon-tooltip .cds-custom--tooltip-content{font-size:var(--cds-custom-body-compact-01-font-size,.875rem);font-weight:var(--cds-custom-body-compact-01-font-weight,400);letter-spacing:var(--cds-custom-body-compact-01-letter-spacing,.16px);line-height:var(--cds-custom-body-compact-01-line-height,1.28572)}.cds-custom--definition-term{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:none;border:0;box-sizing:border-box;cursor:pointer;display:inline-block;font-family:inherit;font-size:100%;inline-size:100%;margin:0;padding:0;text-align:start;vertical-align:baseline}.cds-custom--definition-term *,.cds-custom--definition-term :after,.cds-custom--definition-term :before{box-sizing:inherit}.cds-custom--definition-term::-moz-focus-inner{border:0}.cds-custom--definition-term{border-block-end:1px dotted var(--cds-custom-border-strong);border-radius:0;color:var(--cds-custom-text-primary,#161616)}.cds-custom--definition-term:focus{outline:1px solid var(--cds-custom-focus,#0f62fe)}@media screen and (prefers-contrast){.cds-custom--definition-term:focus{outline-style:dotted}}.cds-custom--definition-term:focus,.cds-custom--definition-term:hover{border-block-end-color:var(--cds-custom-border-interactive,#0f62fe)}.cds-custom--definition-tooltip{text-wrap:auto;font-size:var(--cds-custom-body-01-font-size,.875rem);font-weight:var(--cds-custom-body-01-font-weight,400);letter-spacing:var(--cds-custom-body-01-letter-spacing,.16px);line-height:var(--cds-custom-body-01-line-height,1.42857);max-inline-size:11rem;padding:.5rem 1rem;word-break:break-word}.cds-custom--btn{--cds-custom-layout-size-height-local:clamp(max(var(--cds-custom-layout-size-height-min),var(--cds-custom-layout-size-height-xs)),var(--cds-custom-layout-size-height,var(--cds-custom-layout-size-height-lg)),min(var(--cds-custom-layout-size-height-max),var(--cds-custom-layout-size-height-2xl)));--cds-custom-layout-density-padding-inline-local:clamp(var(--cds-custom-layout-density-padding-inline-min),var(--cds-custom-layout-density-padding-inline,var(--cds-custom-layout-density-padding-inline-normal)),var(--cds-custom-layout-density-padding-inline-max));--temp-1lh:(var(--cds-custom-body-compact-01-line-height,1.28572) * 1em);--temp-expressive-1lh:(var(--cds-custom-body-compact-02-line-height,1.375) * 1em);--temp-padding-block-max:calc((var(--cds-custom-layout-size-height-lg) - var(--temp-1lh))/2 - 0.0625rem);border:0;box-sizing:border-box;font-family:inherit;font-size:100%;padding:0;vertical-align:baseline}.cds-custom--btn *,.cds-custom--btn :after,.cds-custom--btn :before{box-sizing:inherit}.cds-custom--btn{border-radius:0;cursor:pointer;display:inline-flex;flex-shrink:0;font-size:var(--cds-custom-body-compact-01-font-size,.875rem);font-weight:var(--cds-custom-body-compact-01-font-weight,400);inline-size:-moz-max-content;inline-size:max-content;justify-content:space-between;letter-spacing:var(--cds-custom-body-compact-01-letter-spacing,.16px);line-height:var(--cds-custom-body-compact-01-line-height,1.28572);margin:0;max-inline-size:20rem;min-block-size:var(--cds-custom-layout-size-height-local);outline:none;padding-block:min((var(--cds-custom-layout-size-height-local) - var(--temp-1lh))/2 - .0625rem,var(--temp-padding-block-max));padding-inline:calc(var(--cds-custom-layout-density-padding-inline-local) - .0625rem) calc(var(--cds-custom-layout-density-padding-inline-local)*3 + .9375rem);position:relative;text-align:start;text-decoration:none;transition:background 70ms cubic-bezier(0,0,.38,.9),box-shadow 70ms cubic-bezier(0,0,.38,.9),border-color 70ms cubic-bezier(0,0,.38,.9),outline 70ms cubic-bezier(0,0,.38,.9);vertical-align:top}.cds-custom--btn.cds-custom--btn--disabled,.cds-custom--btn.cds-custom--btn--disabled:focus,.cds-custom--btn.cds-custom--btn--disabled:hover,.cds-custom--btn:disabled,.cds-custom--btn:focus:disabled,.cds-custom--btn:hover:disabled{background:var(--cds-custom-button-disabled,#c6c6c6);border-color:var(--cds-custom-button-disabled,#c6c6c6);box-shadow:none;color:var(--cds-custom-text-on-color-disabled,#8d8d8d);cursor:not-allowed}.cds-custom--btn .cds-custom--btn__icon,:host(cds-aichat-button) .cds-custom--btn ::slotted([slot=icon]),:host(cds-custom-button) .cds-custom--btn ::slotted([slot=icon]),:host(cds-custom-modal-footer-button) .cds-custom--btn ::slotted([slot=icon]){block-size:1rem;flex-shrink:0;inline-size:1rem;inset-block-start:min((var(--cds-custom-layout-size-height-local) - 1rem)/2 - .0625rem,var(--temp-padding-block-max));inset-inline-end:var(--cds-custom-layout-density-padding-inline-local);margin-block-start:.0625rem;position:absolute}.cds-custom--btn::-moz-focus-inner{border:0;padding:0}.cds-custom--btn--primary{background-color:var(--cds-custom-button-primary,#0f62fe);border:1px solid transparent;color:var(--cds-custom-text-on-color,#fff)}.cds-custom--btn--primary:hover{background-color:var(--cds-custom-button-primary-hover,#0050e6)}.cds-custom--btn--primary:focus{border-color:var(--cds-custom-button-focus-color,var(--cds-custom-focus,#0f62fe));box-shadow:inset 0 0 0 1px var(--cds-custom-button-focus-color,var(--cds-custom-focus,#0f62fe)),inset 0 0 0 2px var(--cds-custom-background,#fff)}.cds-custom--btn--primary:active{background-color:var(--cds-custom-button-primary-active,#002d9c)}.cds-custom--btn--primary .cds-custom--btn__icon,.cds-custom--btn--primary .cds-custom--btn__icon path:not([data-icon-path]):not([fill=none]),:host(cds-aichat-button) .cds-custom--btn--primary ::slotted([slot=icon]),:host(cds-aichat-button) .cds-custom--btn--primary ::slotted([slot=icon]) path:not([data-icon-path]):not([fill=none]),:host(cds-custom-button) .cds-custom--btn--primary ::slotted([slot=icon]),:host(cds-custom-button) .cds-custom--btn--primary ::slotted([slot=icon]) path:not([data-icon-path]):not([fill=none]),:host(cds-custom-modal-footer-button) .cds-custom--btn--primary ::slotted([slot=icon]),:host(cds-custom-modal-footer-button) .cds-custom--btn--primary ::slotted([slot=icon]) path:not([data-icon-path]):not([fill=none]){fill:currentColor}.cds-custom--btn--primary:hover,.cds-custom--btn--secondary{color:var(--cds-custom-text-on-color,#fff)}.cds-custom--btn--secondary{background-color:var(--cds-custom-button-secondary,#393939);border:1px solid transparent}.cds-custom--btn--secondary:hover{background-color:var(--cds-custom-button-secondary-hover,#474747)}.cds-custom--btn--secondary:focus{border-color:var(--cds-custom-button-focus-color,var(--cds-custom-focus,#0f62fe));box-shadow:inset 0 0 0 1px var(--cds-custom-button-focus-color,var(--cds-custom-focus,#0f62fe)),inset 0 0 0 2px var(--cds-custom-background,#fff)}.cds-custom--btn--secondary:active{background-color:var(--cds-custom-button-secondary-active,#6f6f6f)}.cds-custom--btn--secondary .cds-custom--btn__icon,.cds-custom--btn--secondary .cds-custom--btn__icon path:not([data-icon-path]):not([fill=none]),:host(cds-aichat-button) .cds-custom--btn--secondary ::slotted([slot=icon]),:host(cds-aichat-button) .cds-custom--btn--secondary ::slotted([slot=icon]) path:not([data-icon-path]):not([fill=none]),:host(cds-custom-button) .cds-custom--btn--secondary ::slotted([slot=icon]),:host(cds-custom-button) .cds-custom--btn--secondary ::slotted([slot=icon]) path:not([data-icon-path]):not([fill=none]),:host(cds-custom-modal-footer-button) .cds-custom--btn--secondary ::slotted([slot=icon]),:host(cds-custom-modal-footer-button) .cds-custom--btn--secondary ::slotted([slot=icon]) path:not([data-icon-path]):not([fill=none]){fill:currentColor}.cds-custom--btn--secondary:focus,.cds-custom--btn--secondary:hover{color:var(--cds-custom-text-on-color,#fff)}.cds-custom--btn--tertiary{background-color:transparent;border-color:var(--cds-custom-button-tertiary,#0f62fe);border-style:solid;border-width:1px;color:var(--cds-custom-button-tertiary,#0f62fe)}.cds-custom--btn--tertiary:hover{background-color:var(--cds-custom-button-tertiary-hover,#0050e6)}.cds-custom--btn--tertiary:focus{border-color:var(--cds-custom-button-focus-color,var(--cds-custom-focus,#0f62fe));box-shadow:inset 0 0 0 1px var(--cds-custom-button-focus-color,var(--cds-custom-focus,#0f62fe)),inset 0 0 0 2px var(--cds-custom-background,#fff)}.cds-custom--btn--tertiary .cds-custom--btn__icon,.cds-custom--btn--tertiary .cds-custom--btn__icon path:not([data-icon-path]):not([fill=none]),:host(cds-aichat-button) .cds-custom--btn--tertiary ::slotted([slot=icon]),:host(cds-aichat-button) .cds-custom--btn--tertiary ::slotted([slot=icon]) path:not([data-icon-path]):not([fill=none]),:host(cds-custom-button) .cds-custom--btn--tertiary ::slotted([slot=icon]),:host(cds-custom-button) .cds-custom--btn--tertiary ::slotted([slot=icon]) path:not([data-icon-path]):not([fill=none]),:host(cds-custom-modal-footer-button) .cds-custom--btn--tertiary ::slotted([slot=icon]),:host(cds-custom-modal-footer-button) .cds-custom--btn--tertiary ::slotted([slot=icon]) path:not([data-icon-path]):not([fill=none]){fill:currentColor}.cds-custom--btn--tertiary:focus,.cds-custom--btn--tertiary:hover{color:var(--cds-custom-text-inverse,#fff)}.cds-custom--btn--tertiary:focus{background-color:var(--cds-custom-button-tertiary,#0f62fe)}.cds-custom--btn--tertiary:active{background-color:var(--cds-custom-button-tertiary-active,#002d9c);border-color:transparent;color:var(--cds-custom-text-inverse,#fff)}.cds-custom--btn--tertiary.cds-custom--btn--disabled,.cds-custom--btn--tertiary.cds-custom--btn--disabled:focus,.cds-custom--btn--tertiary.cds-custom--btn--disabled:hover,.cds-custom--btn--tertiary:disabled,.cds-custom--btn--tertiary:focus:disabled,.cds-custom--btn--tertiary:hover:disabled{background:transparent;color:var(--cds-custom-text-disabled,hsla(0,0%,9%,.25));outline:none}.cds-custom--btn--ghost{background-color:transparent;border:1px solid transparent;color:var(--cds-custom-link-primary,#0f62fe)}.cds-custom--btn--ghost:hover{background-color:var(--cds-custom-background-hover,hsla(0,0%,55%,.12))}.cds-custom--btn--ghost:focus{border-color:var(--cds-custom-button-focus-color,var(--cds-custom-focus,#0f62fe));box-shadow:inset 0 0 0 1px var(--cds-custom-button-focus-color,var(--cds-custom-focus,#0f62fe)),inset 0 0 0 2px var(--cds-custom-background,#fff)}.cds-custom--btn--ghost .cds-custom--btn__icon,.cds-custom--btn--ghost .cds-custom--btn__icon path:not([data-icon-path]):not([fill=none]),:host(cds-aichat-button) .cds-custom--btn--ghost ::slotted([slot=icon]),:host(cds-aichat-button) .cds-custom--btn--ghost ::slotted([slot=icon]) path:not([data-icon-path]):not([fill=none]),:host(cds-custom-button) .cds-custom--btn--ghost ::slotted([slot=icon]),:host(cds-custom-button) .cds-custom--btn--ghost ::slotted([slot=icon]) path:not([data-icon-path]):not([fill=none]),:host(cds-custom-modal-footer-button) .cds-custom--btn--ghost ::slotted([slot=icon]),:host(cds-custom-modal-footer-button) .cds-custom--btn--ghost ::slotted([slot=icon]) path:not([data-icon-path]):not([fill=none]){fill:currentColor}.cds-custom--btn--ghost{padding-inline-end:calc(var(--cds-custom-layout-density-padding-inline-local) - .0625rem)}.cds-custom--btn--ghost .cds-custom--btn__icon,:host(cds-aichat-button) .cds-custom--btn--ghost ::slotted([slot=icon]),:host(cds-custom-button) .cds-custom--btn--ghost ::slotted([slot=icon]),:host(cds-custom-modal-footer-button) .cds-custom--btn--ghost ::slotted([slot=icon]){align-self:center;margin-inline-start:.5rem;position:static}.cds-custom--btn--ghost:active,.cds-custom--btn--ghost:hover{color:var(--cds-custom-link-primary-hover,#0043ce)}.cds-custom--btn--ghost:active{background-color:var(--cds-custom-background-active,hsla(0,0%,55%,.5))}.cds-custom--btn--ghost.cds-custom--btn--disabled,.cds-custom--btn--ghost.cds-custom--btn--disabled:focus,.cds-custom--btn--ghost.cds-custom--btn--disabled:hover,.cds-custom--btn--ghost:disabled,.cds-custom--btn--ghost:focus:disabled,.cds-custom--btn--ghost:hover:disabled{background:transparent;border-color:transparent;color:var(--cds-custom-text-disabled,hsla(0,0%,9%,.25));outline:none}.cds-custom--btn--ghost:not([disabled]) svg{fill:var(--cds-custom-icon-primary,#161616)}.cds-custom--btn--icon-only{align-items:center;block-size:var(--cds-custom-layout-size-height-local);inline-size:var(--cds-custom-layout-size-height-local);justify-content:center;padding:0;padding-block-start:0}.cds-custom--btn--icon-only>:first-child{min-inline-size:1rem}.cds-custom--btn--icon-only .cds-custom--btn__icon,:host(cds-aichat-button) .cds-custom--btn--icon-only ::slotted([slot=icon]),:host(cds-custom-button) .cds-custom--btn--icon-only ::slotted([slot=icon]),:host(cds-custom-modal-footer-button) .cds-custom--btn--icon-only ::slotted([slot=icon]){position:static}.cds-custom--btn--icon-only.cds-custom--btn--danger--ghost .cds-custom--btn__icon,.cds-custom--btn--icon-only.cds-custom--btn--ghost .cds-custom--btn__icon,:host(cds-aichat-button) .cds-custom--btn--icon-only.cds-custom--btn--danger--ghost ::slotted([slot=icon]),:host(cds-aichat-button) .cds-custom--btn--icon-only.cds-custom--btn--ghost ::slotted([slot=icon]),:host(cds-custom-button) .cds-custom--btn--icon-only.cds-custom--btn--danger--ghost ::slotted([slot=icon]),:host(cds-custom-button) .cds-custom--btn--icon-only.cds-custom--btn--ghost ::slotted([slot=icon]),:host(cds-custom-modal-footer-button) .cds-custom--btn--icon-only.cds-custom--btn--danger--ghost ::slotted([slot=icon]),:host(cds-custom-modal-footer-button) .cds-custom--btn--icon-only.cds-custom--btn--ghost ::slotted([slot=icon]){margin:0}.cds-custom--btn--icon-only.cds-custom--btn--danger--ghost{padding-inline-end:calc(var(--cds-custom-layout-density-padding-inline-local) - 1rem)}.cds-custom--btn--xs:not(.cds-custom--btn--icon-only){padding-block-start:1.5px}.cds-custom--btn--md:not(.cds-custom--btn--icon-only) .cds-custom--btn__icon,.cds-custom--btn--sm:not(.cds-custom--btn--icon-only) .cds-custom--btn__icon,.cds-custom--btn--xs:not(.cds-custom--btn--icon-only) .cds-custom--btn__icon,:host(cds-aichat-button) .cds-custom--btn--md:not(.cds-custom--btn--icon-only) ::slotted([slot=icon]),:host(cds-aichat-button) .cds-custom--btn--sm:not(.cds-custom--btn--icon-only) ::slotted([slot=icon]),:host(cds-aichat-button) .cds-custom--btn--xs:not(.cds-custom--btn--icon-only) ::slotted([slot=icon]),:host(cds-custom-button) .cds-custom--btn--md:not(.cds-custom--btn--icon-only) ::slotted([slot=icon]),:host(cds-custom-button) .cds-custom--btn--sm:not(.cds-custom--btn--icon-only) ::slotted([slot=icon]),:host(cds-custom-button) .cds-custom--btn--xs:not(.cds-custom--btn--icon-only) ::slotted([slot=icon]),:host(cds-custom-modal-footer-button) .cds-custom--btn--md:not(.cds-custom--btn--icon-only) ::slotted([slot=icon]),:host(cds-custom-modal-footer-button) .cds-custom--btn--sm:not(.cds-custom--btn--icon-only) ::slotted([slot=icon]),:host(cds-custom-modal-footer-button) .cds-custom--btn--xs:not(.cds-custom--btn--icon-only) ::slotted([slot=icon]){margin-block-start:0}.cds-custom--btn--icon-only.cds-custom--btn--selected{background:var(--cds-custom-background-selected,hsla(0,0%,55%,.2))}.cds-custom--btn path[data-icon-path=inner-path]{fill:none}.cds-custom--btn--ghost.cds-custom--btn--icon-only .cds-custom--btn__icon,.cds-custom--btn--ghost.cds-custom--btn--icon-only .cds-custom--btn__icon path:not([data-icon-path]):not([fill=none]),:host(cds-aichat-button) .cds-custom--btn--ghost.cds-custom--btn--icon-only ::slotted([slot=icon]),:host(cds-aichat-button) .cds-custom--btn--ghost.cds-custom--btn--icon-only ::slotted([slot=icon]) path:not([data-icon-path]):not([fill=none]),:host(cds-custom-button) .cds-custom--btn--ghost.cds-custom--btn--icon-only ::slotted([slot=icon]),:host(cds-custom-button) .cds-custom--btn--ghost.cds-custom--btn--icon-only ::slotted([slot=icon]) path:not([data-icon-path]):not([fill=none]),:host(cds-custom-modal-footer-button) .cds-custom--btn--ghost.cds-custom--btn--icon-only ::slotted([slot=icon]),:host(cds-custom-modal-footer-button) .cds-custom--btn--ghost.cds-custom--btn--icon-only ::slotted([slot=icon]) path:not([data-icon-path]):not([fill=none]){fill:var(--cds-custom-icon-primary,#161616)}.cds-custom--btn--ghost.cds-custom--btn--icon-only[disabled] .cds-custom--btn__icon,.cds-custom--btn--ghost.cds-custom--btn--icon-only[disabled] .cds-custom--btn__icon path:not([data-icon-path]):not([fill=none]),.cds-custom--btn.cds-custom--btn--icon-only.cds-custom--btn--ghost[disabled]:hover .cds-custom--btn__icon,:host(cds-aichat-button) .cds-custom--btn--ghost.cds-custom--btn--icon-only[disabled] ::slotted([slot=icon]),:host(cds-aichat-button) .cds-custom--btn--ghost.cds-custom--btn--icon-only[disabled] ::slotted([slot=icon]) path:not([data-icon-path]):not([fill=none]),:host(cds-custom-button) .cds-custom--btn--ghost.cds-custom--btn--icon-only[disabled] ::slotted([slot=icon]),:host(cds-custom-button) .cds-custom--btn--ghost.cds-custom--btn--icon-only[disabled] ::slotted([slot=icon]) path:not([data-icon-path]):not([fill=none]),:host(cds-custom-modal-footer-button) .cds-custom--btn--ghost.cds-custom--btn--icon-only[disabled] ::slotted([slot=icon]),:host(cds-custom-modal-footer-button) .cds-custom--btn--ghost.cds-custom--btn--icon-only[disabled] ::slotted([slot=icon]) path:not([data-icon-path]):not([fill=none]){fill:var(--cds-custom-icon-on-color-disabled,#8d8d8d)}.cds-custom--btn--ghost.cds-custom--btn--icon-only[disabled],.cds-custom--icon-tooltip--disabled .cds-custom--tooltip-trigger__wrapper{cursor:not-allowed}.cds-custom--icon-tooltip--disabled .cds-custom--btn--icon-only[disabled]{pointer-events:none}.cds-custom--btn--danger{background-color:var(--cds-custom-button-danger-primary,#da1e28);border:1px solid transparent;color:var(--cds-custom-text-on-color,#fff)}.cds-custom--btn--danger:hover{background-color:var(--cds-custom-button-danger-hover,#b81921)}.cds-custom--btn--danger:focus{border-color:var(--cds-custom-button-focus-color,var(--cds-custom-focus,#0f62fe));box-shadow:inset 0 0 0 1px var(--cds-custom-button-focus-color,var(--cds-custom-focus,#0f62fe)),inset 0 0 0 2px var(--cds-custom-background,#fff)}.cds-custom--btn--danger:active{background-color:var(--cds-custom-button-danger-active,#750e13)}.cds-custom--btn--danger .cds-custom--btn__icon,.cds-custom--btn--danger .cds-custom--btn__icon path:not([data-icon-path]):not([fill=none]),:host(cds-aichat-button) .cds-custom--btn--danger ::slotted([slot=icon]),:host(cds-aichat-button) .cds-custom--btn--danger ::slotted([slot=icon]) path:not([data-icon-path]):not([fill=none]),:host(cds-custom-button) .cds-custom--btn--danger ::slotted([slot=icon]),:host(cds-custom-button) .cds-custom--btn--danger ::slotted([slot=icon]) path:not([data-icon-path]):not([fill=none]),:host(cds-custom-modal-footer-button) .cds-custom--btn--danger ::slotted([slot=icon]),:host(cds-custom-modal-footer-button) .cds-custom--btn--danger ::slotted([slot=icon]) path:not([data-icon-path]):not([fill=none]){fill:currentColor}.cds-custom--btn--danger:hover{color:var(--cds-custom-text-on-color,#fff)}.cds-custom--btn--danger--tertiary{background-color:transparent;border-color:var(--cds-custom-button-danger-secondary,#da1e28);border-style:solid;border-width:1px;color:var(--cds-custom-button-danger-secondary,#da1e28)}.cds-custom--btn--danger--tertiary:hover{background-color:var(--cds-custom-button-danger-hover,#b81921)}.cds-custom--btn--danger--tertiary:focus{border-color:var(--cds-custom-button-focus-color,var(--cds-custom-focus,#0f62fe));box-shadow:inset 0 0 0 1px var(--cds-custom-button-focus-color,var(--cds-custom-focus,#0f62fe)),inset 0 0 0 2px var(--cds-custom-background,#fff)}.cds-custom--btn--danger--tertiary .cds-custom--btn__icon,.cds-custom--btn--danger--tertiary .cds-custom--btn__icon path:not([data-icon-path]):not([fill=none]),:host(cds-aichat-button) .cds-custom--btn--danger--tertiary ::slotted([slot=icon]),:host(cds-aichat-button) .cds-custom--btn--danger--tertiary ::slotted([slot=icon]) path:not([data-icon-path]):not([fill=none]),:host(cds-custom-button) .cds-custom--btn--danger--tertiary ::slotted([slot=icon]),:host(cds-custom-button) .cds-custom--btn--danger--tertiary ::slotted([slot=icon]) path:not([data-icon-path]):not([fill=none]),:host(cds-custom-modal-footer-button) .cds-custom--btn--danger--tertiary ::slotted([slot=icon]),:host(cds-custom-modal-footer-button) .cds-custom--btn--danger--tertiary ::slotted([slot=icon]) path:not([data-icon-path]):not([fill=none]){fill:currentColor}.cds-custom--btn--danger--tertiary:hover{border-color:var(--cds-custom-button-danger-hover,#b81921);color:var(--cds-custom-text-on-color,#fff)}.cds-custom--btn--danger--tertiary:focus{background-color:var(--cds-custom-button-danger-primary,#da1e28);color:var(--cds-custom-text-on-color,#fff)}.cds-custom--btn--danger--tertiary:active{background-color:var(--cds-custom-button-danger-active,#750e13);border-color:var(--cds-custom-button-danger-active,#750e13);color:var(--cds-custom-text-on-color,#fff)}.cds-custom--btn--danger--tertiary.cds-custom--btn--disabled,.cds-custom--btn--danger--tertiary.cds-custom--btn--disabled:focus,.cds-custom--btn--danger--tertiary.cds-custom--btn--disabled:hover,.cds-custom--btn--danger--tertiary:disabled,.cds-custom--btn--danger--tertiary:focus:disabled,.cds-custom--btn--danger--tertiary:hover:disabled{background:transparent;color:var(--cds-custom-text-disabled,hsla(0,0%,9%,.25));outline:none}.cds-custom--btn--danger--ghost{background-color:transparent;border:1px solid transparent;color:var(--cds-custom-button-danger-secondary,#da1e28)}.cds-custom--btn--danger--ghost:hover{background-color:var(--cds-custom-button-danger-hover,#b81921)}.cds-custom--btn--danger--ghost:focus{border-color:var(--cds-custom-button-focus-color,var(--cds-custom-focus,#0f62fe));box-shadow:inset 0 0 0 1px var(--cds-custom-button-focus-color,var(--cds-custom-focus,#0f62fe)),inset 0 0 0 2px var(--cds-custom-background,#fff)}.cds-custom--btn--danger--ghost:active{background-color:var(--cds-custom-button-danger-active,#750e13)}.cds-custom--btn--danger--ghost .cds-custom--btn__icon,.cds-custom--btn--danger--ghost .cds-custom--btn__icon path:not([data-icon-path]):not([fill=none]),:host(cds-aichat-button) .cds-custom--btn--danger--ghost ::slotted([slot=icon]),:host(cds-aichat-button) .cds-custom--btn--danger--ghost ::slotted([slot=icon]) path:not([data-icon-path]):not([fill=none]),:host(cds-custom-button) .cds-custom--btn--danger--ghost ::slotted([slot=icon]),:host(cds-custom-button) .cds-custom--btn--danger--ghost ::slotted([slot=icon]) path:not([data-icon-path]):not([fill=none]),:host(cds-custom-modal-footer-button) .cds-custom--btn--danger--ghost ::slotted([slot=icon]),:host(cds-custom-modal-footer-button) .cds-custom--btn--danger--ghost ::slotted([slot=icon]) path:not([data-icon-path]):not([fill=none]){fill:currentColor}.cds-custom--btn--danger--ghost{padding-inline-end:calc(var(--cds-custom-layout-density-padding-inline-local) - .0625rem)}.cds-custom--btn--danger--ghost .cds-custom--btn__icon,:host(cds-aichat-button) .cds-custom--btn--danger--ghost ::slotted([slot=icon]),:host(cds-custom-button) .cds-custom--btn--danger--ghost ::slotted([slot=icon]),:host(cds-custom-modal-footer-button) .cds-custom--btn--danger--ghost ::slotted([slot=icon]){margin-inline-start:.5rem;position:static}.cds-custom--btn--danger--ghost:active,.cds-custom--btn--danger--ghost:hover{color:var(--cds-custom-text-on-color,#fff)}.cds-custom--btn--danger--ghost.cds-custom--btn--disabled,.cds-custom--btn--danger--ghost.cds-custom--btn--disabled:focus,.cds-custom--btn--danger--ghost.cds-custom--btn--disabled:hover,.cds-custom--btn--danger--ghost:disabled,.cds-custom--btn--danger--ghost:focus:disabled,.cds-custom--btn--danger--ghost:hover:disabled{background:transparent;border-color:transparent;color:var(--cds-custom-text-disabled,hsla(0,0%,9%,.25));outline:none}.cds-custom--btn--expressive{font-size:var(--cds-custom-body-compact-02-font-size,1rem);font-weight:var(--cds-custom-body-compact-02-font-weight,400);letter-spacing:var(--cds-custom-body-compact-02-letter-spacing,0);line-height:var(--cds-custom-body-compact-02-line-height,1.375);padding-block:min((var(--cds-custom-layout-size-height-local) - var(--temp-expressive-1lh))/2 - .0625rem,var(--temp-padding-block-max))}.cds-custom--btn--icon-only.cds-custom--btn--expressive{padding:12px 13px}.cds-custom--btn.cds-custom--btn--expressive .cds-custom--btn__icon,:host(cds-aichat-button) .cds-custom--btn.cds-custom--btn--expressive ::slotted([slot=icon]),:host(cds-custom-button) .cds-custom--btn.cds-custom--btn--expressive ::slotted([slot=icon]),:host(cds-custom-modal-footer-button) .cds-custom--btn.cds-custom--btn--expressive ::slotted([slot=icon]){block-size:1.25rem;inline-size:1.25rem}.cds-custom--btn-set .cds-custom--btn.cds-custom--btn--expressive,:host(cds-custom-button-set) .cds-custom--btn.cds-custom--btn--expressive,:host(cds-custom-side-panel-button-set) .cds-custom--btn.cds-custom--btn--expressive{max-inline-size:20rem}.cds-custom--btn.cds-custom--skeleton{background:var(--cds-custom-skeleton-background,#e8e8e8);border:none;box-shadow:none;padding:0;pointer-events:none;position:relative}.cds-custom--btn.cds-custom--skeleton:active,.cds-custom--btn.cds-custom--skeleton:focus,.cds-custom--btn.cds-custom--skeleton:hover{border:none;cursor:default;outline:none}.cds-custom--btn.cds-custom--skeleton:before{animation:cds-custom--skeleton 3s ease-in-out infinite;background:var(--cds-custom-skeleton-element,#c6c6c6);block-size:100%;content:\"\";inline-size:100%;inset-inline-start:0;position:absolute;will-change:transform-origin,transform,opacity}@media (prefers-reduced-motion:reduce){.cds-custom--btn.cds-custom--skeleton:before{animation:none}}@media (forced-colors:active),screen and (-ms-high-contrast:active){.cds-custom--btn.cds-custom--skeleton{background:CanvasText}.cds-custom--btn.cds-custom--skeleton:before{background:Canvas;forced-color-adjust:none}}.cds-custom--btn.cds-custom--skeleton{inline-size:9.375rem}.cds-custom--btn-set,:host(cds-custom-button-set),:host(cds-custom-side-panel-button-set){display:flex}.cds-custom--btn-set--stacked,:host(cds-custom-button-set[stacked]){flex-direction:column}.cds-custom--btn-set .cds-custom--btn,:host(cds-custom-button-set) .cds-custom--btn,:host(cds-custom-side-panel-button-set) .cds-custom--btn{inline-size:100%;max-inline-size:12.25rem}.cds-custom--btn-set .cds-custom--btn:not(:focus),:host(cds-custom-button-set) .cds-custom--btn:not(:focus),:host(cds-custom-side-panel-button-set) .cds-custom--btn:not(:focus){box-shadow:-.0625rem 0 0 0 var(--cds-custom-button-separator,#e0e0e0)}.cds-custom--btn-set .cds-custom--btn:first-of-type:not(:focus),:host(cds-custom-button-set) .cds-custom--btn:first-of-type:not(:focus),:host(cds-custom-side-panel-button-set) .cds-custom--btn:first-of-type:not(:focus){box-shadow:inherit}.cds-custom--btn-set .cds-custom--btn:focus+.cds-custom--btn,:host(cds-custom-button-set) .cds-custom--btn:focus+.cds-custom--btn,:host(cds-custom-side-panel-button-set) .cds-custom--btn:focus+.cds-custom--btn{box-shadow:inherit}.cds-custom--btn-set--stacked .cds-custom--btn:not(:focus),:host(cds-custom-button-set[stacked]) .cds-custom--btn:not(:focus){box-shadow:0 -.0625rem 0 0 var(--cds-custom-button-separator,#e0e0e0)}.cds-custom--btn-set--stacked .cds-custom--btn:first-of-type:not(:focus),:host(cds-custom-button-set[stacked]) .cds-custom--btn:first-of-type:not(:focus){box-shadow:inherit}.cds-custom--btn-set .cds-custom--btn.cds-custom--btn--disabled,:host(cds-custom-button-set) .cds-custom--btn.cds-custom--btn--disabled,:host(cds-custom-side-panel-button-set) .cds-custom--btn.cds-custom--btn--disabled{box-shadow:-.0625rem 0 0 0 var(--cds-custom-icon-on-color-disabled,#8d8d8d)}.cds-custom--btn-set .cds-custom--btn.cds-custom--btn--disabled:first-of-type,:host(cds-custom-button-set) .cds-custom--btn.cds-custom--btn--disabled:first-of-type,:host(cds-custom-side-panel-button-set) .cds-custom--btn.cds-custom--btn--disabled:first-of-type{box-shadow:none}.cds-custom--btn-set--stacked .cds-custom--btn.cds-custom--btn--disabled,:host(cds-custom-button-set[stacked]) .cds-custom--btn.cds-custom--btn--disabled{box-shadow:0 -.0625rem 0 0 var(--cds-custom-layer-selected-disabled,#8d8d8d)}.cds-custom--btn-set--stacked .cds-custom--btn.cds-custom--btn--disabled:first-of-type,:host(cds-custom-button-set[stacked]) .cds-custom--btn.cds-custom--btn--disabled:first-of-type{box-shadow:none}.cds-custom--btn-set .cds-custom--btn.cds-custom--btn--loading,:host(cds-custom-button-set) .cds-custom--btn.cds-custom--btn--loading,:host(cds-custom-side-panel-button-set) .cds-custom--btn.cds-custom--btn--loading{background-color:transparent;border-color:transparent;box-shadow:none}.cds-custom--btn--sm .cds-custom--badge-indicator{margin-block-start:.25rem;margin-inline-end:.25rem}@media (forced-colors:active),screen and (-ms-high-contrast:active){.cds-custom--btn:focus{color:Highlight;outline:1px solid Highlight}}[dir=rtl] .cds-custom--btn-set .cds-custom--btn:not(:focus),[dir=rtl] :host(cds-custom-button-set) .cds-custom--btn:not(:focus),[dir=rtl] :host(cds-custom-side-panel-button-set) .cds-custom--btn:not(:focus){box-shadow:.0625rem 0 0 0 var(--cds-custom-button-separator,#e0e0e0)}.cds-custom--btn-set--fluid{container-type:inline-size}.cds-custom--btn-set--fluid .cds-custom--btn-set__fluid-inner{--flex-direction:row;align-items:stretch;display:flex;flex-direction:var(--flex-direction);inline-size:100%;justify-content:flex-end}.cds-custom--btn-set--fluid .cds-custom--btn-set__fluid-inner .cds-custom--btn{flex:0 1 25%;max-inline-size:14.5rem}.cds-custom--btn-set--fluid .cds-custom--btn-set__fluid-inner--auto-stack .cds-custom--btn{min-inline-size:11rem}.cds-custom--btn-set--fluid .cds-custom--btn-set__fluid-inner .cds-custom--btn--danger--ghost,.cds-custom--btn-set--fluid .cds-custom--btn-set__fluid-inner .cds-custom--btn--ghost{flex:1 1 25%;max-inline-size:none;padding-inline-start:2rem}@container (width <= 11rem){.cds-custom--btn-set--fluid .cds-custom--btn-set__fluid-inner--auto-stack:has(:first-child:last-child){--flex-direction:column}.cds-custom--btn-set--fluid .cds-custom--btn-set__fluid-inner--auto-stack:has(:first-child:last-child) .cds-custom--btn{flex:initial;inline-size:100%;max-inline-size:none}.cds-custom--btn-set--fluid .cds-custom--btn-set__fluid-inner--auto-stack:has(:first-child:last-child) .cds-custom--btn--ghost{padding-inline-start:1rem}}@container (width <= 22rem){.cds-custom--btn-set--fluid .cds-custom--btn-set__fluid-inner--auto-stack:has(:nth-child(2):last-child){--flex-direction:column}.cds-custom--btn-set--fluid .cds-custom--btn-set__fluid-inner--auto-stack:has(:nth-child(2):last-child) .cds-custom--btn{flex:initial;inline-size:100%;max-inline-size:none}.cds-custom--btn-set--fluid .cds-custom--btn-set__fluid-inner--auto-stack:has(:nth-child(2):last-child) .cds-custom--btn--ghost{padding-inline-start:1rem}}@container (width <= 33rem){.cds-custom--btn-set--fluid .cds-custom--btn-set__fluid-inner--auto-stack:has(:nth-child(3):last-child){--flex-direction:column}.cds-custom--btn-set--fluid .cds-custom--btn-set__fluid-inner--auto-stack:has(:nth-child(3):last-child) .cds-custom--btn{flex:initial;inline-size:100%;max-inline-size:none}.cds-custom--btn-set--fluid .cds-custom--btn-set__fluid-inner--auto-stack:has(:nth-child(3):last-child) .cds-custom--btn--ghost{padding-inline-start:1rem}}@container (width <= 44rem){.cds-custom--btn-set--fluid .cds-custom--btn-set__fluid-inner--auto-stack:has(:nth-child(4):last-child){--flex-direction:column}.cds-custom--btn-set--fluid .cds-custom--btn-set__fluid-inner--auto-stack:has(:nth-child(4):last-child) .cds-custom--btn{flex:initial;inline-size:100%;max-inline-size:none}.cds-custom--btn-set--fluid .cds-custom--btn-set__fluid-inner--auto-stack:has(:nth-child(4):last-child) .cds-custom--btn--ghost{padding-inline-start:1rem}}@container (width <= 44rem){.cds-custom--btn-set--fluid .cds-custom--btn-set__fluid-inner:has(:nth-child(2):last-child) .cds-custom--btn{flex-basis:50%;max-inline-size:none}}@container (width <= 33rem){.cds-custom--btn-set--fluid .cds-custom--btn-set__fluid-inner:has(:first-child:last-child) .cds-custom--btn{flex:1 1 100%;max-inline-size:none}}.cds-custom--copy-btn{position:relative}.cds-custom--copy-btn:hover{background-color:var(--cds-custom-layer-hover)}.cds-custom--copy-btn:active{background-color:var(--cds-custom-layer-active)}.cds-custom--copy-btn:before{block-size:0;border-style:solid;content:\"\";display:none;inline-size:0;position:absolute;z-index:6000}.cds-custom--copy-btn .cds-custom--copy-btn__feedback{background-color:var(--cds-custom-background-inverse,#393939);block-size:auto;border-radius:.125rem;box-shadow:0 2px 6px var(--cds-custom-shadow,rgba(0,0,0,.3));color:var(--cds-custom-text-inverse,#fff);font-size:var(--cds-custom-body-compact-01-font-size,.875rem);font-weight:400;font-weight:var(--cds-custom-body-compact-01-font-weight,400);inline-size:-moz-max-content;inline-size:max-content;letter-spacing:var(--cds-custom-body-compact-01-letter-spacing,.16px);line-height:var(--cds-custom-body-compact-01-line-height,1.28572);max-inline-size:13rem;min-inline-size:1.5rem;padding:.5rem 1rem;text-align:start;transform:translateX(-50%);z-index:6000}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.cds-custom--copy-btn .cds-custom--copy-btn__feedback{inline-size:auto}}@supports (-ms-accelerator:true){.cds-custom--copy-btn .cds-custom--copy-btn__feedback{inline-size:auto}}@supports (-ms-ime-align:auto){.cds-custom--copy-btn .cds-custom--copy-btn__feedback{inline-size:auto}}@media screen and (-ms-high-contrast:active),screen and (prefers-contrast){.cds-custom--copy-btn .cds-custom--copy-btn__feedback{border:1px solid transparent}}.cds-custom--copy-btn .cds-custom--copy-btn__feedback{clip:auto;box-sizing:content-box;display:none;margin:auto;overflow:visible}.cds-custom--copy-btn.cds-custom--copy-btn--animating .cds-custom--copy-btn__feedback,.cds-custom--copy-btn.cds-custom--copy-btn--animating:before{display:block}.cds-custom--copy-btn.cds-custom--copy-btn--animating:before{border:none}.cds-custom--copy-btn.cds-custom--copy-btn--animating.cds-custom--copy-btn--fade-out .cds-custom--copy-btn__feedback,.cds-custom--copy-btn.cds-custom--copy-btn--animating.cds-custom--copy-btn--fade-out:before{animation:cds-custom--hide-feedback .11s cubic-bezier(.2,0,.38,.9)}.cds-custom--copy-btn.cds-custom--copy-btn--animating.cds-custom--copy-btn--fade-in .cds-custom--copy-btn__feedback,.cds-custom--copy-btn.cds-custom--copy-btn--animating.cds-custom--copy-btn--fade-in:before{animation:cds-custom--show-feedback .11s cubic-bezier(.2,0,.38,.9)}.cds-custom--copy-btn svg{fill:var(--cds-custom-icon-primary,#161616)}.cds-custom--copy{font-size:0}.cds-custom--chat-btn{border-radius:1.5rem}.cds-custom--chat-btn:not(.cds-custom--chat-btn--with-icon){padding-inline-end:.9375rem}.cds-custom--chat-btn.cds-custom--btn--md{border-radius:1.25rem}.cds-custom--chat-btn.cds-custom--btn--sm{border-radius:1rem}.cds-custom--chat-btn--quick-action{align-items:center;background:transparent;border:1px solid var(--cds-custom-chat-button,#0f62fe);color:var(--cds-custom-chat-button,#0f62fe)}.cds-custom--chat-btn--quick-action:hover:not(:active):not([disabled]){background:var(--cds-custom-chat-button-hover,hsla(0,0%,55%,.12));border-color:transparent;color:var(--cds-custom-chat-button-text-hover,#0043ce)}.cds-custom--chat-btn--quick-action:active{background:var(--cds-custom-chat-button-active,hsla(0,0%,55%,.5));border-color:transparent;color:var(--cds-custom-chat-button-text-hover,#0043ce)}.cds-custom--chat-btn--quick-action.cds-custom--btn--ghost:focus{border-color:var(--cds-custom-focus,#0f62fe);box-shadow:inset 0 0 0 1px var(--cds-custom-focus,#0f62fe)}.cds-custom--chat-btn--quick-action.cds-custom--btn--ghost:hover:focus{border-color:var(--cds-custom-focus,#0f62fe);box-shadow:inset 0 0 0 1px var(--cds-custom-focus-inset,#fff)}.cds-custom--chat-btn--quick-action[disabled],.cds-custom--chat-btn--quick-action[disabled]:hover{border-color:var(--cds-custom-button-disabled,#c6c6c6);color:var(--cds-custom-button-disabled,#c6c6c6)}.cds-custom--chat-btn--quick-action--selected,.cds-custom--chat-btn--quick-action--selected[disabled],.cds-custom--chat-btn--quick-action--selected[disabled]:hover{background:var(--cds-custom-chat-button-selected,hsla(0,0%,55%,.2));border-color:transparent;color:var(--cds-custom-chat-button-text-selected,#525252)}.cds-custom--chat-btn--quick-action.cds-custom--chat-btn--quick-action--selected:not([disabled]):active,.cds-custom--chat-btn--quick-action.cds-custom--chat-btn--quick-action--selected:not([disabled]):hover{color:var(--cds-custom-chat-button-text-selected,#525252)}.cds-custom--chat-btn.cds-custom--skeleton{overflow:hidden}.cds-custom--snippet html{font-size:100%}.cds-custom--snippet body{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:IBM Plex Sans,system-ui,-apple-system,BlinkMacSystemFont,\\.SFNSText-Regular,sans-serif;font-weight:400;text-rendering:optimizeLegibility}.cds-custom--snippet code{font-family:IBM Plex Mono,system-ui,-apple-system,BlinkMacSystemFont,\\.SFNSText-Regular,monospace}.cds-custom--snippet strong{font-weight:600}.cds-custom--snippet--disabled,.cds-custom--snippet--disabled .cds-custom--btn.cds-custom--snippet-btn--expand{background-color:var(--cds-custom-layer);color:var(--cds-custom-text-disabled,hsla(0,0%,9%,.25))}.cds-custom--snippet--disabled .cds-custom--copy-btn,.cds-custom--snippet--disabled .cds-custom--copy-btn:hover,.cds-custom--snippet--disabled .cds-custom--snippet-btn--expand:hover{background-color:var(--cds-custom-layer);color:var(--cds-custom-text-disabled,hsla(0,0%,9%,.25));cursor:not-allowed}.cds-custom--snippet--disabled .cds-custom--snippet-btn--expand .cds-custom--icon-chevron--down,.cds-custom--snippet--disabled .cds-custom--snippet__icon{fill:var(--cds-custom-icon-disabled,hsla(0,0%,9%,.25))}.cds-custom--snippet code{font-family:var(--cds-custom-code-01-font-family,\"IBM Plex Mono\",system-ui,-apple-system,BlinkMacSystemFont,\".SFNSText-Regular\",monospace);font-size:var(--cds-custom-code-01-font-size,.75rem);font-weight:var(--cds-custom-code-01-font-weight,400);letter-spacing:var(--cds-custom-code-01-letter-spacing,.32px);line-height:var(--cds-custom-code-01-line-height,1.33333)}.cds-custom--snippet--inline html{font-size:100%}.cds-custom--snippet--inline body{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:IBM Plex Sans,system-ui,-apple-system,BlinkMacSystemFont,\\.SFNSText-Regular,sans-serif;font-weight:400;text-rendering:optimizeLegibility}.cds-custom--snippet--inline code{font-family:IBM Plex Mono,system-ui,-apple-system,BlinkMacSystemFont,\\.SFNSText-Regular,monospace}.cds-custom--snippet--inline strong{font-weight:600}.cds-custom--snippet--inline{background-color:var(--cds-custom-layer);border:1px solid transparent;border-radius:4px;color:var(--cds-custom-text-primary,#161616);cursor:pointer;display:inline;padding:0;position:relative}.cds-custom--snippet--inline:hover{background-color:var(--cds-custom-layer-hover)}.cds-custom--snippet--inline:active{background-color:var(--cds-custom-layer-active)}.cds-custom--snippet--inline:focus{border:1px solid var(--cds-custom-focus,#0f62fe);outline:none}.cds-custom--snippet--inline:before{block-size:0;border:none;content:\"\";display:none;inline-size:0;position:absolute;z-index:6000}.cds-custom--snippet--inline .cds-custom--copy-btn__feedback{background-color:var(--cds-custom-background-inverse,#393939);block-size:auto;border-radius:.125rem;box-shadow:0 2px 6px var(--cds-custom-shadow,rgba(0,0,0,.3));color:var(--cds-custom-text-inverse,#fff);font-size:var(--cds-custom-body-compact-01-font-size,.875rem);font-weight:400;font-weight:var(--cds-custom-body-compact-01-font-weight,400);inline-size:-moz-max-content;inline-size:max-content;letter-spacing:var(--cds-custom-body-compact-01-letter-spacing,.16px);line-height:var(--cds-custom-body-compact-01-line-height,1.28572);max-inline-size:13rem;min-inline-size:1.5rem;padding:.5rem 1rem;text-align:start;transform:translateX(-50%);z-index:6000}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.cds-custom--snippet--inline .cds-custom--copy-btn__feedback{inline-size:auto}}@supports (-ms-accelerator:true){.cds-custom--snippet--inline .cds-custom--copy-btn__feedback{inline-size:auto}}@supports (-ms-ime-align:auto){.cds-custom--snippet--inline .cds-custom--copy-btn__feedback{inline-size:auto}}@media screen and (-ms-high-contrast:active),screen and (prefers-contrast){.cds-custom--snippet--inline .cds-custom--copy-btn__feedback{border:1px solid transparent}}.cds-custom--snippet--inline .cds-custom--copy-btn__feedback{clip:auto;box-sizing:content-box;display:none;margin:auto;overflow:visible}.cds-custom--snippet--inline.cds-custom--copy-btn--animating .cds-custom--copy-btn__feedback,.cds-custom--snippet--inline.cds-custom--copy-btn--animating:before{display:block}.cds-custom--snippet--inline.cds-custom--copy-btn--animating.cds-custom--copy-btn--fade-out .cds-custom--copy-btn__feedback,.cds-custom--snippet--inline.cds-custom--copy-btn--animating.cds-custom--copy-btn--fade-out:before{animation:cds-custom--hide-feedback .11s cubic-bezier(.2,0,.38,.9)}.cds-custom--snippet--inline.cds-custom--copy-btn--animating.cds-custom--copy-btn--fade-in .cds-custom--copy-btn__feedback,.cds-custom--snippet--inline.cds-custom--copy-btn--animating.cds-custom--copy-btn--fade-in:before{animation:cds-custom--show-feedback .11s cubic-bezier(.2,0,.38,.9)}.cds-custom--snippet--inline code{padding:0 .5rem}.cds-custom--snippet--inline.cds-custom--snippet--no-copy{display:inline-block}.cds-custom--snippet--inline.cds-custom--snippet--no-copy:hover{background-color:var(--cds-custom-layer);cursor:auto}.cds-custom--snippet--light.cds-custom--snippet--inline.cds-custom--snippet--no-copy:hover{background-color:var(--cds-custom-layer-hover);cursor:auto}.cds-custom--snippet--single{align-items:center;background-color:var(--cds-custom-layer);block-size:2.5rem;display:flex;font-family:var(--cds-custom-code-01-font-family,\"IBM Plex Mono\",system-ui,-apple-system,BlinkMacSystemFont,\".SFNSText-Regular\",monospace);font-size:var(--cds-custom-code-01-font-size,.75rem);font-weight:var(--cds-custom-code-01-font-weight,400);inline-size:100%;letter-spacing:var(--cds-custom-code-01-letter-spacing,.32px);line-height:var(--cds-custom-code-01-line-height,1.33333);max-inline-size:48rem;padding-inline-end:2.5rem;position:relative}.cds-custom--snippet--single.cds-custom--snippet--no-copy{padding:0}.cds-custom--snippet--single.cds-custom--snippet--no-copy:after{inset-inline-end:1rem}.cds-custom--snippet--single .cds-custom--snippet-container{align-items:center;block-size:100%;display:flex;overflow-x:auto;padding-inline-start:1rem;position:relative}.cds-custom--snippet--single .cds-custom--snippet-container:focus{outline:2px solid var(--cds-custom-focus,#0f62fe);outline-offset:-2px}@media screen and (prefers-contrast){.cds-custom--snippet--single .cds-custom--snippet-container:focus{outline-style:dotted}}.cds-custom--snippet--single pre{font-family:var(--cds-custom-code-01-font-family,\"IBM Plex Mono\",system-ui,-apple-system,BlinkMacSystemFont,\".SFNSText-Regular\",monospace);font-size:var(--cds-custom-code-01-font-size,.75rem);font-weight:var(--cds-custom-code-01-font-weight,400);letter-spacing:var(--cds-custom-code-01-letter-spacing,.32px);line-height:var(--cds-custom-code-01-line-height,1.33333);padding-inline-end:2rem}.cds-custom--snippet--inline code,.cds-custom--snippet--single pre{white-space:pre}.cds-custom--snippet--multi{background-color:var(--cds-custom-layer);display:flex;font-family:var(--cds-custom-code-01-font-family,\"IBM Plex Mono\",system-ui,-apple-system,BlinkMacSystemFont,\".SFNSText-Regular\",monospace);font-size:var(--cds-custom-code-01-font-size,.75rem);font-weight:var(--cds-custom-code-01-font-weight,400);inline-size:100%;letter-spacing:var(--cds-custom-code-01-letter-spacing,.32px);line-height:var(--cds-custom-code-01-line-height,1.33333);max-inline-size:48rem;padding:1rem}.cds-custom--snippet--multi .cds-custom--snippet-container{max-block-size:100%;min-block-size:100%;order:1;overflow-y:auto;position:relative;transition:max-height .15s cubic-bezier(.2,0,.38,.9)}.cds-custom--snippet--multi .cds-custom--snippet-container:focus{outline:2px solid var(--cds-custom-focus,#0f62fe);outline-offset:-2px}@media screen and (prefers-contrast){.cds-custom--snippet--multi .cds-custom--snippet-container:focus{outline-style:dotted}}.cds-custom--snippet--multi .cds-custom--snippet-container:focus{outline-offset:0}.cds-custom--snippet--multi.cds-custom--snippet--expand .cds-custom--snippet-container{padding-block-end:1rem;transition:max-height .15s cubic-bezier(.2,0,.38,.9)}.cds-custom--snippet--multi.cds-custom--snippet--wraptext pre{word-wrap:break-word;white-space:pre-wrap}.cds-custom--snippet--multi .cds-custom--snippet-container pre{overflow:auto;padding-block-end:1.5rem;padding-inline-end:1.5rem}.cds-custom--snippet--multi.cds-custom--snippet--no-copy .cds-custom--snippet-container pre{padding-inline-end:0}[dir=rtl] .cds-custom--snippet--multi.cds-custom--snippet--has-right-overflow:after{background-image:linear-gradient(to left,transparent,var(--cds-custom-layer))}.cds-custom--snippet--multi .cds-custom--snippet-container pre code{overflow:hidden}.cds-custom--snippet__icon{fill:var(--cds-custom-icon-primary,#161616);block-size:1rem;inline-size:1rem;transition:all 70ms cubic-bezier(.2,0,.38,.9)}.cds-custom--btn>.cds-custom--snippet__icon{margin-block-start:0}.cds-custom--copy-btn html{font-size:100%}.cds-custom--copy-btn body{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:IBM Plex Sans,system-ui,-apple-system,BlinkMacSystemFont,\\.SFNSText-Regular,sans-serif;font-weight:400;text-rendering:optimizeLegibility}.cds-custom--copy-btn code{font-family:IBM Plex Mono,system-ui,-apple-system,BlinkMacSystemFont,\\.SFNSText-Regular,monospace}.cds-custom--copy-btn strong{font-weight:600}.cds-custom--copy-btn{align-items:center;background-color:var(--cds-custom-layer);border:none;cursor:pointer;display:flex;justify-content:center;outline:none;overflow:visible;padding:0}.cds-custom--copy-btn:focus{outline:2px solid var(--cds-custom-focus,#0f62fe);outline-offset:-2px}@media screen and (prefers-contrast){.cds-custom--copy-btn:focus{outline-style:dotted}}.cds-custom--copy-btn:focus{outline-color:var(--cds-custom-focus,#0f62fe)}.cds-custom--snippet .cds-custom--popover-container{font-family:IBM Plex Sans,system-ui,-apple-system,BlinkMacSystemFont,\\.SFNSText-Regular,sans-serif;inset-block-start:0;inset-inline-end:0;position:absolute}.cds-custom--snippet--inline.cds-custom--btn{block-size:1.25rem;inline-size:auto;max-inline-size:unset;min-block-size:1.25rem;padding-inline:0}.cds-custom--snippet--inline.cds-custom--btn.cds-custom--btn--primary:hover{color:var(--cds-custom-text-primary,#161616)}.cds-custom--snippet.cds-custom--snippet--multi .cds-custom--popover-container{inset-block-start:.5rem;inset-inline-end:.5rem}.cds-custom--snippet--multi .cds-custom--copy-btn{z-index:10}.cds-custom--snippet-btn--expand{align-items:center;background-color:var(--cds-custom-layer);block-size:2rem;border:0;color:var(--cds-custom-text-primary,#161616);display:inline-flex;font-family:IBM Plex Sans,system-ui,-apple-system,BlinkMacSystemFont,\\.SFNSText-Regular,sans-serif;font-size:var(--cds-custom-body-compact-01-font-size,.875rem);font-weight:var(--cds-custom-body-compact-01-font-weight,400);inset-block-end:0;inset-inline-end:0;letter-spacing:var(--cds-custom-body-compact-01-letter-spacing,.16px);line-height:var(--cds-custom-body-compact-01-line-height,1.28572);padding:.5rem 1rem;position:absolute;z-index:10}.cds-custom--snippet-btn--expand .cds-custom--snippet-btn--text{inset-block-start:-.0625rem;position:relative}.cds-custom--snippet-btn--expand--hide.cds-custom--snippet-btn--expand{display:none}.cds-custom--snippet-btn--expand .cds-custom--icon-chevron--down{fill:var(--cds-custom-icon-primary,#161616);margin-inline-start:.5rem;transform:rotate(0deg);transition:.15s cubic-bezier(.2,0,.38,.9)}.cds-custom--snippet-btn--expand:hover{background:var(--cds-custom-layer-hover);color:var(--cds-custom-text-primary,#161616)}.cds-custom--snippet-btn--expand:active{background-color:var(--cds-custom-layer-active)}.cds-custom--snippet-btn--expand:focus{outline:2px solid var(--cds-custom-focus,#0f62fe);outline-offset:-2px}@media screen and (prefers-contrast){.cds-custom--snippet-btn--expand:focus{outline-style:dotted}}.cds-custom--snippet-btn--expand:focus{border-color:transparent}.cds-custom--snippet--expand .cds-custom--snippet-btn--expand .cds-custom--icon-chevron--down{transform:rotate(180deg);transition:transform .3s}.cds-custom--snippet--light,.cds-custom--snippet--light .cds-custom--btn.cds-custom--snippet-btn--expand,.cds-custom--snippet--light .cds-custom--copy-btn,.cds-custom--snippet--light .cds-custom--snippet-button{background-color:var(--cds-custom-layer)}.cds-custom--snippet--light .cds-custom--btn.cds-custom--snippet-btn--expand:hover,.cds-custom--snippet--light .cds-custom--copy-btn:hover,.cds-custom--snippet--light .cds-custom--snippet-button:hover,.cds-custom--snippet--light.cds-custom--snippet--inline:hover{background-color:var(--cds-custom-layer-hover)}.cds-custom--snippet--light .cds-custom--btn.cds-custom--snippet-btn--expand:active,.cds-custom--snippet--light .cds-custom--copy-btn:active,.cds-custom--snippet--light .cds-custom--snippet-button:active,.cds-custom--snippet--light.cds-custom--snippet--inline:active{background-color:var(--cds-custom-layer-active)}.cds-custom--snippet.cds-custom--skeleton .cds-custom--snippet-container{block-size:100%;inline-size:100%}.cds-custom--snippet-button .cds-custom--btn--copy__feedback{inset-block-start:3.175rem;inset-inline:50% auto}.cds-custom--snippet-button .cds-custom--btn--copy__feedback:before{inset-block-start:0}.cds-custom--snippet-button .cds-custom--btn--copy__feedback:after{inset-block-start:-.25rem}.cds-custom--snippet--multi .cds-custom--snippet-button .cds-custom--btn--copy__feedback{inset-block-start:2.675rem}.cds-custom--snippet--inline .cds-custom--btn--copy__feedback{inset-block-start:calc(100% - .25rem);inset-inline:50% auto}.cds-custom--snippet--single .cds-custom--snippet-container{-webkit-mask-image:linear-gradient(90deg,#000 calc(100% - 2rem),transparent);mask-image:linear-gradient(90deg,#000 calc(100% - 2rem),transparent);pointer-events:auto}.cds-custom--snippet--multi{position:relative}.cds-custom--snippet--multi .cds-custom--snippet-container{inline-size:100%;-webkit-mask-composite:source-in,xor;mask-composite:intersect;-webkit-mask-image:linear-gradient(90deg,#000 calc(100% - 2rem),transparent),linear-gradient(180deg,#000 calc(100% - 1rem),transparent);mask-image:linear-gradient(90deg,#000 calc(100% - 2rem),transparent),linear-gradient(180deg,#000 calc(100% - 1rem),transparent);pointer-events:auto}[dir=rtl] .cds-custom--snippet--single .cds-custom--snippet-container{-webkit-mask-image:linear-gradient(270deg,#000 calc(100% - 2rem),transparent);mask-image:linear-gradient(270deg,#000 calc(100% - 2rem),transparent)}[dir=rtl] .cds-custom--snippet--multi .cds-custom--snippet-container{-webkit-mask-image:linear-gradient(270deg,#000 calc(100% - 2rem),transparent),linear-gradient(180deg,#000 calc(100% - 1rem),transparent);mask-image:linear-gradient(270deg,#000 calc(100% - 2rem),transparent),linear-gradient(180deg,#000 calc(100% - 1rem),transparent)}.cds-custom--snippet--multi:focus-within .cds-custom--snippet-container,.cds-custom--snippet--single:focus-within .cds-custom--snippet-container{-webkit-mask-image:none;mask-image:none}.cds-custom--snippet--multi.cds-custom--skeleton{block-size:6.125rem}.cds-custom--snippet--single.cds-custom--skeleton{block-size:3.5rem}.cds-custom--snippet.cds-custom--skeleton span{background:var(--cds-custom-skeleton-background,#e8e8e8);border:none;box-shadow:none;padding:0;pointer-events:none;position:relative}.cds-custom--snippet.cds-custom--skeleton span:active,.cds-custom--snippet.cds-custom--skeleton span:focus,.cds-custom--snippet.cds-custom--skeleton span:hover{border:none;cursor:default;outline:none}.cds-custom--snippet.cds-custom--skeleton span:before{animation:cds-custom--skeleton 3s ease-in-out infinite;background:var(--cds-custom-skeleton-element,#c6c6c6);block-size:100%;content:\"\";inline-size:100%;inset-inline-start:0;position:absolute;will-change:transform-origin,transform,opacity}@media (prefers-reduced-motion:reduce){.cds-custom--snippet.cds-custom--skeleton span:before{animation:none}}@media (forced-colors:active),screen and (-ms-high-contrast:active){.cds-custom--snippet.cds-custom--skeleton span{background:CanvasText}.cds-custom--snippet.cds-custom--skeleton span:before{background:Canvas;forced-color-adjust:none}}.cds-custom--snippet.cds-custom--skeleton span{block-size:1rem;display:block;inline-size:100%;margin-block-start:.5rem}.cds-custom--snippet.cds-custom--skeleton span:first-child{margin:0}.cds-custom--snippet.cds-custom--skeleton span:nth-child(2){inline-size:85%}.cds-custom--snippet.cds-custom--skeleton span:nth-child(3){inline-size:95%}.cds-custom--snippet--single.cds-custom--skeleton .cds-custom--snippet-container{padding-block-end:0}@media (forced-colors:active),screen and (-ms-high-contrast:active){.cds-custom--snippet--inline:focus{color:Highlight;outline:1px solid Highlight}.cds-custom--snippet--multi,.cds-custom--snippet--single{outline:1px solid transparent}}:host(cds-aichat-button),:host(cds-custom-button),:host(cds-custom-modal-footer-button){--cds-custom-layout-size-height-xs:1.5rem;--cds-custom-layout-size-height-sm:2rem;--cds-custom-layout-size-height-md:2.5rem;--cds-custom-layout-size-height-lg:3rem;--cds-custom-layout-size-height-xl:4rem;--cds-custom-layout-size-height-2xl:5rem;--cds-custom-layout-size-height-min:0px;--cds-custom-layout-size-height-max:999999999px;--cds-custom-layout-density-padding-inline-condensed:0.5rem;--cds-custom-layout-density-padding-inline-normal:1rem;--cds-custom-layout-density-padding-inline-min:0px;--cds-custom-layout-density-padding-inline-max:999999999px;display:inline-flex}:host(cds-aichat-button) .cds-custom--btn,:host(cds-custom-button) .cds-custom--btn,:host(cds-custom-modal-footer-button) .cds-custom--btn{flex-grow:1;max-inline-size:100%}:host(cds-custom-button-skeleton){--cds-custom-layout-size-height-xs:1.5rem;--cds-custom-layout-size-height-sm:2rem;--cds-custom-layout-size-height-md:2.5rem;--cds-custom-layout-size-height-lg:3rem;--cds-custom-layout-size-height-xl:4rem;--cds-custom-layout-size-height-2xl:5rem;--cds-custom-layout-size-height-min:0px;--cds-custom-layout-size-height-max:999999999px;--cds-custom-layout-density-padding-inline-condensed:0.5rem;--cds-custom-layout-density-padding-inline-normal:1rem;--cds-custom-layout-density-padding-inline-min:0px;--cds-custom-layout-density-padding-inline-max:999999999px}:host(cds-custom-button[isExpressive]) ::slotted([slot=icon]),:host(cds-custom-modal-footer-button[isExpressive]) ::slotted([slot=icon]){block-size:1.25rem;inline-size:1.25rem}:host(cds-custom-button[pagination]) .cds-custom--btn,:host(cds-custom-modal-footer-button[pagination]) .cds-custom--btn{border:none;border-inline-start:1px solid var(--cds-custom-border-subtle);padding:0;transition:none}:host(cds-custom-button[pagination]) .cds-custom--btn:focus,:host(cds-custom-modal-footer-button[pagination]) .cds-custom--btn:focus{border-inline-start:0;box-shadow:none;outline:.125rem solid var(--cds-custom-focus,#0f62fe);outline-offset:-.125rem}:host(cds-custom-button[pagination]:not([disabled])) .cds-custom--btn,:host(cds-custom-modal-footer-button[pagination]:not([disabled])) .cds-custom--btn{color:var(--cds-custom-icon-primary,#161616)}:host(cds-custom-button[pagination]:not([disabled])) .cds-custom--btn:active,:host(cds-custom-modal-footer-button[pagination]:not([disabled])) .cds-custom--btn:active{background-color:var(--cds-custom-layer-hover)}:host(cds-custom-button[pagination][batch-action]:not([disabled])) .cds-custom--btn,:host(cds-custom-modal-footer-button[pagination][batch-action]:not([disabled])) .cds-custom--btn{padding:calc(.875rem - 3px) 1rem}:host(cds-custom-button[pagination][batch-action]:not([disabled])) .cds-custom--btn:focus,:host(cds-custom-modal-footer-button[pagination][batch-action]:not([disabled])) .cds-custom--btn:focus{outline:.125rem solid var(--cds-custom-layer);outline-offset:-.125rem}:host(cds-custom-button[pagination][batch-action]:not([disabled])) :host(cds-custom-button[pagination][has-main-content]:not([disabled])) ::slotted([slot=icon]),:host(cds-custom-button[pagination][batch-action]:not([disabled])) :host(cds-custom-modal-footer-button[pagination][has-main-content]:not([disabled])) ::slotted([slot=icon]),:host(cds-custom-modal-footer-button[pagination][batch-action]:not([disabled])) :host(cds-custom-button[pagination][has-main-content]:not([disabled])) ::slotted([slot=icon]),:host(cds-custom-modal-footer-button[pagination][batch-action]:not([disabled])) :host(cds-custom-modal-footer-button[pagination][has-main-content]:not([disabled])) ::slotted([slot=icon]){margin-inline-start:.25rem;position:static}:host(cds-aichat-button) .cds-custom--btn--icon-only,:host(cds-custom-button) .cds-custom--btn--icon-only{align-items:center;padding-block-start:0}:host(cds-aichat-button) .cds-custom--btn--icon-only.cds-custom--btn--expressive,:host(cds-aichat-button) .cds-custom--btn--icon-only.cds-custom--btn--selected,:host(cds-custom-button) .cds-custom--btn--icon-only.cds-custom--btn--expressive,:host(cds-custom-button) .cds-custom--btn--icon-only.cds-custom--btn--selected{padding:.5rem}:host(cds-aichat-button) .cds-custom--btn--ghost:not([disabled]) ::slotted([slot=icon]),:host(cds-custom-button) .cds-custom--btn--ghost:not([disabled]) ::slotted([slot=icon]){fill:var(--cds-custom-icon-primary,#161616)}:host(cds-custom-button[kind=ghost]) .cds-custom--btn--ghost:active,:host(cds-custom-button[kind=ghost]) .cds-custom--btn--ghost:hover{outline:none}:host(cds-custom-button[kind=ghost]) .cds-custom--btn--ghost:not(:focus){box-shadow:none}:host(cds-custom-button[kind=danger-ghost]) .cds-custom--btn--danger-ghost:not(:focus){box-shadow:none}:host(cds-custom-button-set) ::slotted(cds-custom-button),:host(cds-custom-side-panel-button-set) ::slotted(cds-custom-button){inline-size:100%;max-inline-size:12.25rem}:host(cds-custom-button-set) ::slotted(cds-custom-button:not(:first-of-type)),:host(cds-custom-side-panel-button-set) ::slotted(cds-custom-button:not(:first-of-type)){box-shadow:-.0625rem 0 0 0 var(--cds-custom-button-separator,#e0e0e0);z-index:1}:host(cds-custom-button-set) ::slotted(cds-custom-button:focus-within),:host(cds-custom-side-panel-button-set) ::slotted(cds-custom-button:focus-within){box-shadow:inherit}:host(cds-custom-button-set) ::slotted(cds-custom-button:not(:first-of-type)[hide-margin]),:host(cds-custom-side-panel-button-set) ::slotted(cds-custom-button:not(:first-of-type)[hide-margin]){box-shadow:inherit}:host(cds-custom-button-set[stacked]) ::slotted(cds-custom-button:not(:first-of-type)){box-shadow:0 -.0625rem 0 0 var(--cds-custom-button-separator,#e0e0e0);z-index:1}:host(cds-custom-button-set[stacked]) ::slotted(cds-custom-button:focus-within){box-shadow:inherit}:host(cds-custom-button-set[stacked]) ::slotted(cds-custom-button:not(:first-of-type)[hide-margin]){box-shadow:inherit}:host(cds-custom-button[data-context=data-table]) .cds-custom--btn{padding-inline:1rem}:host(cds-custom-button[data-context=data-table]) .cds-custom--btn__icon,:host(cds-custom-button[data-context=data-table]):host(cds-custom-button) ::slotted([slot=icon]){fill:var(--cds-custom-icon-on-color,#fff);margin-inline-start:.5rem;position:static}:host(cds-custom-button[data-context=data-table]) .cds-custom--btn__icon .st0,:host(cds-custom-button[data-context=data-table]):host(cds-custom-button) ::slotted([slot=icon]) .st0{fill:none}:host(cds-custom-button.cds-custom--batch-summary__cancel){--divider-opacity:1}:host(cds-custom-button.cds-custom--batch-summary__cancel) button.cds-custom--btn{align-items:center;block-size:100%;display:inline-flex;justify-content:center;margin:0;min-block-size:100%;padding-inline-end:1rem;padding-inline-start:1rem;position:relative}@media (prefers-reduced-motion:reduce){:host(cds-custom-button.cds-custom--batch-summary__cancel) button.cds-custom--btn:before{transition:none}}:host(cds-custom-button.cds-custom--batch-summary__cancel) button.cds-custom--btn:before{background-color:var(--cds-custom-text-on-color,#fff);block-size:1rem;border:none;content:\"\";display:block;inline-size:.0625rem;inset-block-start:.9375rem;inset-inline-start:0;opacity:var(--divider-opacity);position:absolute;transition:opacity .11s cubic-bezier(.2,0,.38,.9)}:host(cds-custom-button.cds-custom--batch-summary__cancel) button.cds-custom--btn:hover:before{opacity:0}:host(cds-custom-button.cds-custom--batch-summary__cancel[size=sm]) button.cds-custom--btn{block-size:2rem;min-block-size:auto;padding-block:.375rem}:host(cds-custom-button.cds-custom--batch-summary__cancel[size=sm]) button.cds-custom--btn:before{inset-block-start:.5rem}:host(cds-custom-button.cds-custom--batch-summary__cancel[size=lg]) button.cds-custom--btn{block-size:3rem;min-block-size:auto}:host(cds-custom-button.cds-custom--batch-summary__cancel[size=lg]) button.cds-custom--btn:before{inset-block-start:.9375rem}:host(cds-aichat-button) .cds-custom--btn--ghost:not([disabled]):not(.cds-custom--btn--icon-only) ::slotted([slot=icon]){fill:currentColor}:host(cds-aichat-button) .cds-custom--btn{border-radius:1.5rem;max-inline-size:19rem}:host(cds-aichat-button) .cds-custom--btn.cds-custom--btn--md{border-radius:1.25rem}:host(cds-aichat-button) .cds-custom--btn.cds-custom--btn--sm{border-radius:1rem}:host(cds-aichat-button) .cds-custom--btn:not(.cds-custom-ce--btn--has-icon){padding-inline-end:calc(var(--cds-custom-layout-density-padding-inline-local) - .0625rem)}:host(cds-aichat-button[is-quick-action]) .cds-custom--btn{background:transparent;border:.0625rem solid var(--cds-custom-chat-button,#0f62fe);color:var(--cds-custom-chat-button,#0f62fe)}:host(cds-aichat-button[is-quick-action]) .cds-custom--btn[disabled]:not(.cds-custom--btn--selected){background:transparent;border:.0625rem solid var(--cds-custom-border-disabled,#c6c6c6);color:var(--cds-custom-text-disabled,hsla(0,0%,9%,.25))}:host(cds-aichat-button[is-quick-action]) .cds-custom--btn:hover:not([disabled]){background:var(--cds-custom-chat-button-hover,hsla(0,0%,55%,.12));border-color:transparent;color:var(--cds-custom-chat-button-text-hover,#0043ce)}:host(cds-aichat-button[is-quick-action]) .cds-custom--btn:hover:not([disabled]).cds-custom--btn--selected{color:var(--cds-custom-chat-button-text-selected,#525252)}:host(cds-aichat-button[is-quick-action]) .cds-custom--btn:hover:not([disabled]):focus{border-color:var(--cds-custom-focus,#0f62fe);box-shadow:inset 0 0 0 .0625rem var(--cds-custom-focus-inset,#fff)}:host(cds-aichat-button[is-quick-action]) .cds-custom--btn:active:not([disabled]){background:var(--cds-custom-chat-button-active,hsla(0,0%,55%,.5))}:host(cds-aichat-button[is-quick-action]) .cds-custom--btn.cds-custom--btn--selected{background:var(--cds-custom-chat-button-selected,hsla(0,0%,55%,.2));border-color:transparent;color:var(--cds-custom-chat-button-text-selected,#525252)}:host(cds-aichat-button[is-quick-action]) .cds-custom--btn.cds-custom--btn--selected:focus{border-color:var(--cds-custom-focus,#0f62fe);box-shadow:inset 0 0 0 .0625rem var(--cds-custom-focus,#0f62fe)}:host(cds-aichat-button[is-quick-action]) .cds-custom--btn:focus{border-color:var(--cds-custom-focus,#0f62fe);box-shadow:inset 0 0 0 .0625rem var(--cds-custom-focus,#0f62fe)}"]);
11
+
12
+ export { styles as default };
13
+ //# sourceMappingURL=chat-button.scss.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"chat-button.scss.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;"}
@@ -0,0 +1,3 @@
1
+ import "./src/code-snippet-card.js";
2
+ export { default } from "./src/code-snippet-card.js";
3
+ export { CODE_SNIPPET_TYPE } from "@carbon/web-components/es-custom/components/code-snippet/defs.js";
@@ -0,0 +1,10 @@
1
+ /**
2
+ * Copyright IBM Corp. 2025
3
+ *
4
+ * This source code is licensed under the Apache-2.0 license found in the
5
+ * LICENSE file in the root directory of this source tree.
6
+ */
7
+
8
+ export { default } from './src/code-snippet-card.js';
9
+ export { CODE_SNIPPET_TYPE } from '@carbon/web-components/es-custom/components/code-snippet/defs.js';
10
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;"}
@@ -0,0 +1,63 @@
1
+ import { LitElement } from "lit";
2
+ import "../../card/index.js";
3
+ import "./code-snippet.js";
4
+ import { type LineCountFormatter } from "./formatters.js";
5
+ /**
6
+ * AI Chat code snippet wrapper that places the snippet inside a Carbon tile.
7
+ *
8
+ * @element cds-aichat-code-snippet-card
9
+ */
10
+ declare class CDSAIChatCodeSnippetCard extends LitElement {
11
+ /** Language used for syntax highlighting. */
12
+ language: string;
13
+ /** Whether the snippet should be editable. */
14
+ editable: boolean;
15
+ /** Whether to enable syntax highlighting. */
16
+ highlight: boolean;
17
+ /** Fallback language to use when detection fails. */
18
+ defaultLanguage: string;
19
+ /** Text to copy when clicking the copy button. Defaults to slotted content. */
20
+ copyText: string;
21
+ /** Disable interactions on the snippet. */
22
+ disabled: boolean;
23
+ /** Feedback text shown after copy. */
24
+ feedback: string;
25
+ /** Duration (ms) to show feedback text. */
26
+ feedbackTimeout: number;
27
+ /** Hide the copy button. */
28
+ hideCopyButton: boolean;
29
+ /** Maximum rows to show when collapsed. */
30
+ maxCollapsedNumberOfRows: number;
31
+ /** Maximum rows to show when expanded (0 = unlimited). */
32
+ maxExpandedNumberOfRows: number;
33
+ /** Minimum rows to show when collapsed. */
34
+ minCollapsedNumberOfRows: number;
35
+ /** Minimum rows to show when expanded. */
36
+ minExpandedNumberOfRows: number;
37
+ /** Label for the “show less” control. */
38
+ showLessText: string;
39
+ /** Label for the “show more” control. */
40
+ showMoreText: string;
41
+ /** Tooltip label for the copy action. */
42
+ tooltipContent: string;
43
+ /** Wrap text instead of horizontal scrolling. */
44
+ wrapText: boolean;
45
+ /** Label for folding/collapsing code. */
46
+ foldCollapseLabel: string;
47
+ /** Label for unfolding/expanding code. */
48
+ foldExpandLabel: string;
49
+ /** Formatter for the line count display. */
50
+ getLineCountText: LineCountFormatter;
51
+ /**
52
+ * Handles the content-change event from the inner code snippet and re-dispatches it.
53
+ */
54
+ private _handleContentChange;
55
+ render(): import("lit-html").TemplateResult<1>;
56
+ }
57
+ declare global {
58
+ interface HTMLElementTagNameMap {
59
+ "cds-aichat-code-snippet-card": CDSAIChatCodeSnippetCard;
60
+ }
61
+ }
62
+ export { CDSAIChatCodeSnippetCard };
63
+ export default CDSAIChatCodeSnippetCard;
@@ -0,0 +1,186 @@
1
+ /**
2
+ * Copyright IBM Corp. 2025
3
+ *
4
+ * This source code is licensed under the Apache-2.0 license found in the
5
+ * LICENSE file in the root directory of this source tree.
6
+ */
7
+
8
+ import { __decorate } from 'tslib';
9
+ import { LitElement, html } from 'lit';
10
+ import { property } from 'lit/decorators.js';
11
+ import { carbonElement } from '../../../globals/decorators/carbon-element.js';
12
+ import '../../card/src/card.js';
13
+ import '../../card/src/card-footer.js';
14
+ import '../../card/src/card-steps.js';
15
+ import './code-snippet.js';
16
+ import { defaultLineCountText } from './formatters.js';
17
+
18
+ /*
19
+ * Copyright IBM Corp. 2025
20
+ *
21
+ * This source code is licensed under the Apache-2.0 license found in the
22
+ * LICENSE file in the root directory of this source tree.
23
+ *
24
+ * @license
25
+ */
26
+ /**
27
+ * AI Chat code snippet wrapper that places the snippet inside a Carbon tile.
28
+ *
29
+ * @element cds-aichat-code-snippet-card
30
+ */
31
+ let CDSAIChatCodeSnippetCard = class CDSAIChatCodeSnippetCard extends LitElement {
32
+ constructor() {
33
+ super(...arguments);
34
+ /** Language used for syntax highlighting. */
35
+ this.language = "";
36
+ /** Whether the snippet should be editable. */
37
+ this.editable = false;
38
+ /** Whether to enable syntax highlighting. */
39
+ this.highlight = false;
40
+ /** Fallback language to use when detection fails. */
41
+ this.defaultLanguage = "javascript";
42
+ /** Text to copy when clicking the copy button. Defaults to slotted content. */
43
+ this.copyText = "";
44
+ /** Disable interactions on the snippet. */
45
+ this.disabled = false;
46
+ /** Feedback text shown after copy. */
47
+ this.feedback = "Copied!";
48
+ /** Duration (ms) to show feedback text. */
49
+ this.feedbackTimeout = 2000;
50
+ /** Hide the copy button. */
51
+ this.hideCopyButton = false;
52
+ /** Maximum rows to show when collapsed. */
53
+ this.maxCollapsedNumberOfRows = 15;
54
+ /** Maximum rows to show when expanded (0 = unlimited). */
55
+ this.maxExpandedNumberOfRows = 0;
56
+ /** Minimum rows to show when collapsed. */
57
+ this.minCollapsedNumberOfRows = 3;
58
+ /** Minimum rows to show when expanded. */
59
+ this.minExpandedNumberOfRows = 16;
60
+ /** Label for the “show less” control. */
61
+ this.showLessText = "Show less";
62
+ /** Label for the “show more” control. */
63
+ this.showMoreText = "Show more";
64
+ /** Tooltip label for the copy action. */
65
+ this.tooltipContent = "Copy to clipboard";
66
+ /** Wrap text instead of horizontal scrolling. */
67
+ this.wrapText = false;
68
+ /** Label for folding/collapsing code. */
69
+ this.foldCollapseLabel = "Collapse code block";
70
+ /** Label for unfolding/expanding code. */
71
+ this.foldExpandLabel = "Expand code block";
72
+ /** Formatter for the line count display. */
73
+ this.getLineCountText = defaultLineCountText;
74
+ }
75
+ /**
76
+ * Handles the content-change event from the inner code snippet and re-dispatches it.
77
+ */
78
+ _handleContentChange(event) {
79
+ this.dispatchEvent(new CustomEvent("content-change", {
80
+ detail: event.detail,
81
+ bubbles: true,
82
+ composed: true,
83
+ }));
84
+ }
85
+ render() {
86
+ return html `
87
+ <cds-aichat-card>
88
+ <div slot="body">
89
+ <cds-aichat-code-snippet
90
+ data-rounded
91
+ language=${this.language}
92
+ default-language=${this.defaultLanguage}
93
+ ?editable=${this.editable}
94
+ ?highlight=${this.highlight}
95
+ @content-change=${this._handleContentChange}
96
+ copy-text=${this.copyText}
97
+ ?disabled=${this.disabled}
98
+ feedback=${this.feedback}
99
+ feedback-timeout=${this.feedbackTimeout}
100
+ ?hide-copy-button=${this.hideCopyButton}
101
+ max-collapsed-number-of-rows=${this.maxCollapsedNumberOfRows}
102
+ max-expanded-number-of-rows=${this.maxExpandedNumberOfRows}
103
+ min-collapsed-number-of-rows=${this.minCollapsedNumberOfRows}
104
+ min-expanded-number-of-rows=${this.minExpandedNumberOfRows}
105
+ .getLineCountText=${this.getLineCountText}
106
+ show-less-text=${this.showLessText}
107
+ show-more-text=${this.showMoreText}
108
+ tooltip-content=${this.tooltipContent}
109
+ ?wrap-text=${this.wrapText}
110
+ fold-collapse-label=${this.foldCollapseLabel}
111
+ fold-expand-label=${this.foldExpandLabel}
112
+ >
113
+ <slot></slot>
114
+ </cds-aichat-code-snippet>
115
+ </div>
116
+ </cds-aichat-card>
117
+ `;
118
+ }
119
+ };
120
+ __decorate([
121
+ property({ type: String })
122
+ ], CDSAIChatCodeSnippetCard.prototype, "language", void 0);
123
+ __decorate([
124
+ property({ type: Boolean })
125
+ ], CDSAIChatCodeSnippetCard.prototype, "editable", void 0);
126
+ __decorate([
127
+ property({ type: Boolean })
128
+ ], CDSAIChatCodeSnippetCard.prototype, "highlight", void 0);
129
+ __decorate([
130
+ property({ type: String, attribute: "default-language" })
131
+ ], CDSAIChatCodeSnippetCard.prototype, "defaultLanguage", void 0);
132
+ __decorate([
133
+ property({ attribute: "copy-text" })
134
+ ], CDSAIChatCodeSnippetCard.prototype, "copyText", void 0);
135
+ __decorate([
136
+ property({ type: Boolean, reflect: true })
137
+ ], CDSAIChatCodeSnippetCard.prototype, "disabled", void 0);
138
+ __decorate([
139
+ property()
140
+ ], CDSAIChatCodeSnippetCard.prototype, "feedback", void 0);
141
+ __decorate([
142
+ property({ type: Number, attribute: "feedback-timeout" })
143
+ ], CDSAIChatCodeSnippetCard.prototype, "feedbackTimeout", void 0);
144
+ __decorate([
145
+ property({ type: Boolean, reflect: true, attribute: "hide-copy-button" })
146
+ ], CDSAIChatCodeSnippetCard.prototype, "hideCopyButton", void 0);
147
+ __decorate([
148
+ property({ attribute: "max-collapsed-number-of-rows" })
149
+ ], CDSAIChatCodeSnippetCard.prototype, "maxCollapsedNumberOfRows", void 0);
150
+ __decorate([
151
+ property({ attribute: "max-expanded-number-of-rows" })
152
+ ], CDSAIChatCodeSnippetCard.prototype, "maxExpandedNumberOfRows", void 0);
153
+ __decorate([
154
+ property({ attribute: "min-collapsed-number-of-rows" })
155
+ ], CDSAIChatCodeSnippetCard.prototype, "minCollapsedNumberOfRows", void 0);
156
+ __decorate([
157
+ property({ attribute: "min-expanded-number-of-rows" })
158
+ ], CDSAIChatCodeSnippetCard.prototype, "minExpandedNumberOfRows", void 0);
159
+ __decorate([
160
+ property({ attribute: "show-less-text" })
161
+ ], CDSAIChatCodeSnippetCard.prototype, "showLessText", void 0);
162
+ __decorate([
163
+ property({ attribute: "show-more-text" })
164
+ ], CDSAIChatCodeSnippetCard.prototype, "showMoreText", void 0);
165
+ __decorate([
166
+ property({ attribute: "tooltip-content" })
167
+ ], CDSAIChatCodeSnippetCard.prototype, "tooltipContent", void 0);
168
+ __decorate([
169
+ property({ type: Boolean, reflect: true, attribute: "wrap-text" })
170
+ ], CDSAIChatCodeSnippetCard.prototype, "wrapText", void 0);
171
+ __decorate([
172
+ property({ attribute: "fold-collapse-label" })
173
+ ], CDSAIChatCodeSnippetCard.prototype, "foldCollapseLabel", void 0);
174
+ __decorate([
175
+ property({ attribute: "fold-expand-label" })
176
+ ], CDSAIChatCodeSnippetCard.prototype, "foldExpandLabel", void 0);
177
+ __decorate([
178
+ property({ attribute: false })
179
+ ], CDSAIChatCodeSnippetCard.prototype, "getLineCountText", void 0);
180
+ CDSAIChatCodeSnippetCard = __decorate([
181
+ carbonElement("cds-aichat-code-snippet-card")
182
+ ], CDSAIChatCodeSnippetCard);
183
+ var CDSAIChatCodeSnippetCard$1 = CDSAIChatCodeSnippetCard;
184
+
185
+ export { CDSAIChatCodeSnippetCard, CDSAIChatCodeSnippetCard$1 as default };
186
+ //# sourceMappingURL=code-snippet-card.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"code-snippet-card.js","sources":["../../../../src/components/code-snippet/src/code-snippet-card.ts"],"sourcesContent":[null],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA;;;;;;;AAOG;AASH;;;;AAIG;AAEH,IAAM,wBAAwB,GAA9B,MAAM,wBAAyB,SAAQ,UAAU,CAAA;AAAjD,IAAA,WAAA,GAAA;;;QAE8B,IAAA,CAAA,QAAQ,GAAG,EAAE;;QAGZ,IAAA,CAAA,QAAQ,GAAG,KAAK;;QAGhB,IAAA,CAAA,SAAS,GAAG,KAAK;;QAI9C,IAAA,CAAA,eAAe,GAAG,YAAY;;QAI9B,IAAA,CAAA,QAAQ,GAAG,EAAE;;QAIb,IAAA,CAAA,QAAQ,GAAG,KAAK;;QAIhB,IAAA,CAAA,QAAQ,GAAG,SAAS;;QAIpB,IAAA,CAAA,eAAe,GAAG,IAAI;;QAItB,IAAA,CAAA,cAAc,GAAG,KAAK;;QAItB,IAAA,CAAA,wBAAwB,GAAG,EAAE;;QAI7B,IAAA,CAAA,uBAAuB,GAAG,CAAC;;QAI3B,IAAA,CAAA,wBAAwB,GAAG,CAAC;;QAI5B,IAAA,CAAA,uBAAuB,GAAG,EAAE;;QAI5B,IAAA,CAAA,YAAY,GAAG,WAAW;;QAI1B,IAAA,CAAA,YAAY,GAAG,WAAW;;QAI1B,IAAA,CAAA,cAAc,GAAG,mBAAmB;;QAIpC,IAAA,CAAA,QAAQ,GAAG,KAAK;;QAIhB,IAAA,CAAA,iBAAiB,GAAG,qBAAqB;;QAIzC,IAAA,CAAA,eAAe,GAAG,mBAAmB;;QAIrC,IAAA,CAAA,gBAAgB,GAAuB,oBAAoB;IAiD7D;AA/CE;;AAEG;AACK,IAAA,oBAAoB,CAAC,KAAkB,EAAA;AAC7C,QAAA,IAAI,CAAC,aAAa,CAChB,IAAI,WAAW,CAAC,gBAAgB,EAAE;YAChC,MAAM,EAAE,KAAK,CAAC,MAAM;AACpB,YAAA,OAAO,EAAE,IAAI;AACb,YAAA,QAAQ,EAAE,IAAI;AACf,SAAA,CAAC,CACH;IACH;IAEA,MAAM,GAAA;AACJ,QAAA,OAAO,IAAI,CAAA;;;;;AAKQ,qBAAA,EAAA,IAAI,CAAC,QAAQ;AACL,6BAAA,EAAA,IAAI,CAAC,eAAe;AAC3B,sBAAA,EAAA,IAAI,CAAC,QAAQ;AACZ,uBAAA,EAAA,IAAI,CAAC,SAAS;AACT,4BAAA,EAAA,IAAI,CAAC,oBAAoB;AAC/B,sBAAA,EAAA,IAAI,CAAC,QAAQ;AACb,sBAAA,EAAA,IAAI,CAAC,QAAQ;AACd,qBAAA,EAAA,IAAI,CAAC,QAAQ;AACL,6BAAA,EAAA,IAAI,CAAC,eAAe;AACnB,8BAAA,EAAA,IAAI,CAAC,cAAc;AACR,yCAAA,EAAA,IAAI,CAAC,wBAAwB;AAC9B,wCAAA,EAAA,IAAI,CAAC,uBAAuB;AAC3B,yCAAA,EAAA,IAAI,CAAC,wBAAwB;AAC9B,wCAAA,EAAA,IAAI,CAAC,uBAAuB;AACtC,8BAAA,EAAA,IAAI,CAAC,gBAAgB;AACxB,2BAAA,EAAA,IAAI,CAAC,YAAY;AACjB,2BAAA,EAAA,IAAI,CAAC,YAAY;AAChB,4BAAA,EAAA,IAAI,CAAC,cAAc;AACxB,uBAAA,EAAA,IAAI,CAAC,QAAQ;AACJ,gCAAA,EAAA,IAAI,CAAC,iBAAiB;AACxB,8BAAA,EAAA,IAAI,CAAC,eAAe;;;;;;KAM/C;IACH;;AA1H4B,UAAA,CAAA;AAA3B,IAAA,QAAQ,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE;AAAgB,CAAA,EAAA,wBAAA,CAAA,SAAA,EAAA,UAAA,EAAA,MAAA,CAAA;AAGb,UAAA,CAAA;AAA5B,IAAA,QAAQ,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE;AAAmB,CAAA,EAAA,wBAAA,CAAA,SAAA,EAAA,UAAA,EAAA,MAAA,CAAA;AAGjB,UAAA,CAAA;AAA5B,IAAA,QAAQ,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE;AAAoB,CAAA,EAAA,wBAAA,CAAA,SAAA,EAAA,WAAA,EAAA,MAAA,CAAA;AAI/C,UAAA,CAAA;IADC,QAAQ,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,SAAS,EAAE,kBAAkB,EAAE;AAC1B,CAAA,EAAA,wBAAA,CAAA,SAAA,EAAA,iBAAA,EAAA,MAAA,CAAA;AAI/B,UAAA,CAAA;AADC,IAAA,QAAQ,CAAC,EAAE,SAAS,EAAE,WAAW,EAAE;AACtB,CAAA,EAAA,wBAAA,CAAA,SAAA,EAAA,UAAA,EAAA,MAAA,CAAA;AAId,UAAA,CAAA;IADC,QAAQ,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,OAAO,EAAE,IAAI,EAAE;AACzB,CAAA,EAAA,wBAAA,CAAA,SAAA,EAAA,UAAA,EAAA,MAAA,CAAA;AAIjB,UAAA,CAAA;AADC,IAAA,QAAQ;AACY,CAAA,EAAA,wBAAA,CAAA,SAAA,EAAA,UAAA,EAAA,MAAA,CAAA;AAIrB,UAAA,CAAA;IADC,QAAQ,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,SAAS,EAAE,kBAAkB,EAAE;AAClC,CAAA,EAAA,wBAAA,CAAA,SAAA,EAAA,iBAAA,EAAA,MAAA,CAAA;AAIvB,UAAA,CAAA;AADC,IAAA,QAAQ,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,OAAO,EAAE,IAAI,EAAE,SAAS,EAAE,kBAAkB,EAAE;AAClD,CAAA,EAAA,wBAAA,CAAA,SAAA,EAAA,gBAAA,EAAA,MAAA,CAAA;AAIvB,UAAA,CAAA;AADC,IAAA,QAAQ,CAAC,EAAE,SAAS,EAAE,8BAA8B,EAAE;AACzB,CAAA,EAAA,wBAAA,CAAA,SAAA,EAAA,0BAAA,EAAA,MAAA,CAAA;AAI9B,UAAA,CAAA;AADC,IAAA,QAAQ,CAAC,EAAE,SAAS,EAAE,6BAA6B,EAAE;AAC1B,CAAA,EAAA,wBAAA,CAAA,SAAA,EAAA,yBAAA,EAAA,MAAA,CAAA;AAI5B,UAAA,CAAA;AADC,IAAA,QAAQ,CAAC,EAAE,SAAS,EAAE,8BAA8B,EAAE;AAC1B,CAAA,EAAA,wBAAA,CAAA,SAAA,EAAA,0BAAA,EAAA,MAAA,CAAA;AAI7B,UAAA,CAAA;AADC,IAAA,QAAQ,CAAC,EAAE,SAAS,EAAE,6BAA6B,EAAE;AACzB,CAAA,EAAA,wBAAA,CAAA,SAAA,EAAA,yBAAA,EAAA,MAAA,CAAA;AAI7B,UAAA,CAAA;AADC,IAAA,QAAQ,CAAC,EAAE,SAAS,EAAE,gBAAgB,EAAE;AACd,CAAA,EAAA,wBAAA,CAAA,SAAA,EAAA,cAAA,EAAA,MAAA,CAAA;AAI3B,UAAA,CAAA;AADC,IAAA,QAAQ,CAAC,EAAE,SAAS,EAAE,gBAAgB,EAAE;AACd,CAAA,EAAA,wBAAA,CAAA,SAAA,EAAA,cAAA,EAAA,MAAA,CAAA;AAI3B,UAAA,CAAA;AADC,IAAA,QAAQ,CAAC,EAAE,SAAS,EAAE,iBAAiB,EAAE;AACL,CAAA,EAAA,wBAAA,CAAA,SAAA,EAAA,gBAAA,EAAA,MAAA,CAAA;AAIrC,UAAA,CAAA;AADC,IAAA,QAAQ,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,OAAO,EAAE,IAAI,EAAE,SAAS,EAAE,WAAW,EAAE;AACjD,CAAA,EAAA,wBAAA,CAAA,SAAA,EAAA,UAAA,EAAA,MAAA,CAAA;AAIjB,UAAA,CAAA;AADC,IAAA,QAAQ,CAAC,EAAE,SAAS,EAAE,qBAAqB,EAAE;AACJ,CAAA,EAAA,wBAAA,CAAA,SAAA,EAAA,mBAAA,EAAA,MAAA,CAAA;AAI1C,UAAA,CAAA;AADC,IAAA,QAAQ,CAAC,EAAE,SAAS,EAAE,mBAAmB,EAAE;AACN,CAAA,EAAA,wBAAA,CAAA,SAAA,EAAA,iBAAA,EAAA,MAAA,CAAA;AAItC,UAAA,CAAA;AADC,IAAA,QAAQ,CAAC,EAAE,SAAS,EAAE,KAAK,EAAE;AAC8B,CAAA,EAAA,wBAAA,CAAA,SAAA,EAAA,kBAAA,EAAA,MAAA,CAAA;AA5ExD,wBAAwB,GAAA,UAAA,CAAA;IAD7B,aAAa,CAAC,8BAA8B;AACvC,CAAA,EAAA,wBAAwB,CA6H7B;AASD,iCAAe,wBAAwB;;;;"}