botframework-webchat-fluent-theme 4.18.1-main.20250515.4c7400a → 4.18.1-main.20250528.43d5b5c

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/components/dropZone/DropZone.module.css","../src/components/preChatActivity/PreChatMessageActivity.module.css","../src/components/preChatActivity/StarterPromptsCardAction.module.css","../src/components/preChatActivity/StarterPromptsToolbar.module.css","../src/components/activity/ActivityDecorator.module.css","../src/components/activity/CopilotMessageHeader.module.css","../src/components/suggestedActions/SuggestedAction.module.css","../src/components/suggestedActions/SuggestedActions.module.css","../src/components/telephoneKeypad/private/Button.module.css","../src/components/telephoneKeypad/private/TelephoneKeypad.module.css","../src/components/sendBox/Toolbar.module.css","../src/components/sendBox/AddAttachmentButton.module.css","../src/components/sendBox/Attachments.module.css","../src/components/sendBox/ErrorMessage.module.css","../src/components/sendBox/SendBox.module.css","../src/components/sendBox/TextArea.module.css","../src/components/activity/ActivityLoader.module.css","../src/components/linerActivity/private/LinerMessageActivity.module.css","../src/components/theme/Theme.module.css","../src/components/typingIndicator/SlidingDotsTypingIndicator.module.css"],"sourcesContent":[":global(.webchat-fluent) .sendbox__attachment-drop-zone {\n background-color: var(--webchat-colorNeutralBackground4);\n border-radius: inherit;\n cursor: copy;\n display: grid;\n gap: 8px;\n inset: 0;\n place-content: center;\n place-items: center;\n position: absolute;\n transition: all var(--webchat-durationNormal) var(--webchat-curveDecelerateMid);\n}\n\n:global(.webchat-fluent) .sendbox__attachment-drop-zone--droppable {\n background-color: var(--webchat-colorBrandBackground2Hover);\n}\n\n:global(.webchat-fluent) .sendbox__attachment-drop-zone-icon {\n font-size: 36px;\n /* Set \"pointer-events: none\" to ignore dragging over the icon. Otherwise, when dragging over the icon; it would disable the \"--droppable\" modifier.*/\n pointer-events: none;\n}\n",":global(.webchat-fluent) .pre-chat-message-activity {\n box-sizing: border-box;\n display: grid;\n gap: var(--webchat-spacingHorizontalXXXL);\n grid-template-areas: 'body' 'toolbar';\n grid-template-rows: auto auto;\n padding: var(--webchat-spacingHorizontalXXXL) var(--webchat-spacingHorizontalM);\n position: relative;\n}\n\n:global(.webchat-fluent) .pre-chat-message-activity__body {\n align-items: center;\n display: flex;\n flex-flow: column nowrap;\n font-family: var(--webchat-fontFamilyBase);\n font-size: var(--webchat-fontSizeBase300);\n font-weight: var(--webchat-fontWeightRegular);\n gap: var(--webchat-spacingVerticalXS);\n grid-area: body;\n line-height: var(--webchat-lineHeightBase300);\n text-align: center;\n}\n\n:global(.webchat-fluent) .pre-chat-message-activity__body--blueprint {\n opacity: 60%;\n\n .pre-chat-message-activity__body-avatar {\n filter: grayscale(1);\n }\n}\n\n:global(.webchat-fluent) .pre-chat-message-activity__body-avatar {\n border-radius: var(--webchat-borderRadiusMedium);\n height: 64px;\n margin-block-end: var(--webchat-spacingVerticalM);\n}\n\n:global(.webchat-fluent) .pre-chat-message-activity__body-title {\n color: var(--webchat-colorNeutralForeground1);\n font-family: inherit;\n font-size: var(--webchat-fontSizeHero700);\n font-weight: var(--webchat-fontWeightSemibold);\n line-height: var(--webchat-lineHeightHero700);\n margin: 0;\n overflow-wrap: anywhere;\n}\n\n:global(.webchat-fluent) .pre-chat-message-activity__body-subtitle {\n font-size: var(--webchat-fontSizeBase300);\n line-height: var(--webchat-lineHeightBase300);\n overflow-wrap: anywhere;\n}\n\n:global(.webchat-fluent) .pre-chat-message-activity__toolbar {\n grid-area: toolbar;\n}\n",":global(.webchat-fluent) .pre-chat-message-activity__card-action-box {\n appearance: none;\n background-color: var(--webchat-colorNeutralBackground1);\n border: 0;\n border-radius: 16px;\n box-shadow: var(--webchat-shadow2);\n color: var(--webchat-colorNeutralForeground1);\n cursor: pointer;\n display: grid;\n gap: var(--webchat-spacingVerticalS);\n grid-template-areas: 'title' 'subtitle';\n grid-template-columns: 1fr;\n grid-template-rows: auto 1fr;\n overflow: hidden;\n padding: 16px 20px;\n text-align: left;\n transition: background-color var(--webchat-durationNormal) var(--webchat-curveDecelerateMid);\n user-select: none;\n\n &:has(.pre-chat-message-activity__card-action-image) {\n grid-template-areas: 'image title' 'image subtitle';\n grid-template-columns: 20px 1fr;\n }\n\n &:empty {\n row-gap: 14px;\n }\n\n &[aria-disabled='true'],\n &:empty {\n cursor: default;\n }\n\n &[aria-disabled='true']:not(:empty) {\n background-color: var(--webchat-colorNeutralBackgroundDisabled);\n }\n\n &:hover:not([aria-disabled='true'], :empty) {\n background-color: var(--webchat-colorNeutralBackground1Hover);\n }\n\n &:active:not([aria-disabled='true'], :empty) {\n background-color: var(--webchat-colorNeutralBackground1Pressed);\n }\n\n &:focus-visible {\n outline: solid 2px var(--webchat-colorStrokeFocus2);\n outline-offset: -2px;\n }\n\n &:empty::after,\n &:empty::before {\n animation: blueprintAnimation 3s linear infinite;\n background-attachment: fixed;\n background-image: linear-gradient(\n -90deg,\n var(--webchat-colorNeutralStencil1) 0%,\n var(--webchat-colorNeutralStencil2) 50%,\n var(--webchat-colorNeutralStencil1) 100%\n );\n background-size: 300% 100%;\n content: '';\n display: block;\n }\n\n /* animation-* needs to position after animation shorthand. */\n @media (prefers-reduced-motion: reduce) {\n &:empty::after,\n &:empty::before {\n animation-delay: -1s;\n animation-play-state: paused;\n }\n }\n\n &:dir(rtl) {\n &:empty::after,\n &:empty::before {\n animation-direction: reverse;\n }\n }\n\n &:empty::after {\n border-radius: 16px;\n height: 16px;\n width: 100%;\n }\n\n &:empty::before {\n border-radius: 18px;\n height: 18px;\n width: 66%;\n }\n}\n\n@keyframes blueprintAnimation {\n from {\n background-position-x: 0%;\n }\n\n to {\n background-position-x: -300%;\n }\n}\n\n:global(.webchat-fluent) .pre-chat-message-activity__card-action-image {\n color: var(--webchat-colorNeutralForeground4);\n font-size: 20px;\n grid-area: image;\n}\n\n:global(.webchat-fluent) .pre-chat-message-activity__card-action-subtitle {\n font-family: var(--webchat-fontFamilyBase);\n font-size: 14px;\n font-weight: var(--webchat-fontWeightRegular);\n grid-area: subtitle;\n line-height: 20px;\n pointer-events: none; /* Links in subtitle are not clickable. */\n}\n\n:global(.webchat-fluent) .pre-chat-message-activity__card-action-title {\n font-family: var(--webchat-fontFamilyBase);\n font-size: 14px;\n font-weight: var(--webchat-fontWeightSemibold);\n grid-area: title;\n line-height: 20px;\n}\n",":global(.webchat-fluent) .pre-chat-message-activity__card-action-toolbar {\n container-name: webchat-container;\n container-type: inline-size;\n}\n\n:global(.webchat-fluent) .pre-chat-message-activity__card-action-toolbar-grid {\n display: grid;\n gap: var(--webchat-spacingHorizontalM);\n grid-template-columns: 1fr 1fr 1fr;\n padding: 0;\n}\n\n/* TODO: What is the good width to show as 3 columns? Web Chat, by default, has a bubble max width of 480px. */\n@container webchat-container (width <= 480px) {\n :global(.webchat-fluent) .pre-chat-message-activity__card-action-toolbar-grid {\n grid-template-columns: 1fr;\n }\n}\n",":global(.webchat-fluent) .activity-decorator {\n display: contents;\n font-family: var(--webchat__font--primary);\n\n --webchat__bubble--inline-padding: var(--webchat-spacingHorizontalL);\n --webchat__bubble--block-padding: var(--webchat-spacingVerticalM);\n --webchat__bubble--min-height: var(--webchat-bubble-minHeight);\n --webchat__bubble--max-width: var(--webchat-bubble-maxWidth);\n --webchat__bubble--min-width: var(--webchat-bubble-minWidth);\n\n --webchat-bubble-maxWidth: var(--bubble-maxWidth, max(450px, 75%));\n --webchat-bubble-minWidth: var(--bubble-minWidth, auto);\n --webchat-bubble-minHeight: var(--bubble-minHeight, 36px);\n --webchat-externalLink-mask: var(\n --externalLink-mask,\n var(--webchat__icon-url--external-link) center center /\n 10px 10px\n );\n --webchat-externalLink-maxWidth: var(--externalLink-maxWidth, 204px);\n\n /* Override for stacked layout message which has user message bubble props */\n &:has(:global(.webchat__stacked-layout .webchat__bubble--from-user)) {\n --webchat__bubble--background-color: var(--webchat-colorBrandBackground2);\n --webchat__bubble--block-padding: var(--webchat-spacingVerticalS);\n --webchat__bubble--min-width: auto;\n }\n}\n\n/* Decorator fluent variant */\n:global(.webchat-fluent) .activity-decorator.variant-fluent {\n --webchat__bubble--background-color: var(--webchat-colorNeutralBackground1);\n --webchat__bubble--border-radius: var(--webchat-borderRadiusXLarge);\n --webchat__bubble--box-shadow: var(--webchat-shadow4);\n}\n\n/* Decorator copilot variant */\n:global(.webchat-fluent) .activity-decorator.variant-copilot {\n --webchat__bubble--border-radius: var(--webchat-borderRadiusXLarge);\n\n :global(.webchat__activity-status) {\n margin: 0 0 var(--webchat-spacingHorizontalXXS);\n }\n\n :global(.webchat__stacked-layout__status) {\n order: -1;\n }\n\n &:has(:global(.webchat__bubble--from-user)) :global(.webchat__bubble) {\n margin-block-end: var(--webchat-spacingVerticalM);\n }\n\n /* Hide generated badge as it is in the copilot header */\n :global(.webchat__bubble .webchat__text-content .webchat__text-content__generated-badge) {\n display: none;\n }\n}\n\n/* Decorator copilot variant which has bot message */\n:global(.webchat-fluent) .activity-decorator.variant-copilot:not(:has(:global(.webchat__bubble--from-user))) {\n --webchat__bubble--block-padding: 0;\n --webchat__bubble--border-radius: var(--webchat-borderRadiusMedium);\n --webchat__bubble--inline-padding: 0;\n --webchat__bubble--max-width: 100%;\n --webchat__bubble--min-height: 20px;\n\n display: flex;\n flex-flow: column nowrap;\n gap: var(--webchat-spacingVerticalS);\n margin-inline: var(--webchat-spacingHorizontalM);\n padding: var(--webchat-spacingVerticalMNudge) var(--webchat-spacingHorizontalM) var(--webchat-spacingVerticalM);\n position: relative;\n\n :global(.webchat__stacked-layout) {\n margin: 0;\n position: static;\n }\n\n :global(.webchat__bubble) {\n position: static;\n width: var(--webchat__bubble--max-width);\n }\n\n :global(.webchat__bubble .webchat__bubble__content) {\n overflow: visible;\n }\n\n :global(.webchat__text-content) {\n margin-inline-start: 28px;\n }\n\n :global(.border-loader) {\n display: flex;\n flex-flow: column nowrap;\n gap: var(--webchat-spacingVerticalS);\n padding-inline-end: var(--webchat-spacingHorizontalM);\n width: 500px;\n }\n\n :global(.border-loader__track) {\n border-radius: inherit;\n box-sizing: border-box;\n clip-path: border-box;\n margin-inline-start: 28px;\n order: -1;\n width: auto;\n }\n\n :global(.webchat__stacked-layout__status) {\n display: none;\n }\n}\n\n/* Transcript activity non-empty */\n:global(.webchat-fluent) .activity-decorator :global(.webchat__basic-transcript__activity-body:not(:empty)) {\n padding-block-end: var(--webchat-spacingVerticalXL);\n}\n\n/* Stacked layout */\n:global(.webchat-fluent) .activity-decorator :global(.webchat__stacked-layout) {\n display: flex;\n flex-flow: column nowrap;\n}\n\n/* Stacked layout which has message bubble */\n:global(.webchat-fluent)\n .activity-decorator\n :global(.webchat__stacked-layout .webchat__stacked-layout__content:has(.webchat__bubble)) {\n max-width: 100%;\n overflow: visible;\n}\n\n/* Message status */\n:global(.webchat-fluent) .activity-decorator :global(.webchat__stacked-layout .webchat__stacked-layout__status) {\n font-size: var(--webchat__font-size--small);\n line-height: var(--webchat__line-height--small);\n}\n\n/* Message bubble */\n:global(.webchat-fluent) .activity-decorator :global(.webchat__stacked-layout .webchat__bubble) {\n max-width: min(var(--webchat__bubble--max-width), 100%);\n min-width: var(--webchat__bubble--min-width);\n overflow: visible;\n\n /* Take all width available when has message bubble latency loader */\n &:has(:global(.border-loader)) {\n width: 100%;\n }\n\n /* Ensure activity loader doesn't have bubble and shadow */\n &:has(:global(.activity-loader)) :global(.webchat__bubble__content) {\n background: transparent;\n box-shadow: none;\n }\n}\n\n/* Message bubble content */\n:global(.webchat-fluent)\n .activity-decorator\n :global(.webchat__stacked-layout .webchat__bubble .webchat__bubble__content) {\n background-color: var(--webchat__bubble--background-color);\n border-radius: var(--webchat__bubble--border-radius);\n border-width: 0;\n box-shadow: var(--webchat__bubble--box-shadow);\n box-sizing: border-box;\n color: var(--webchat-colorNeutralForeground1);\n max-width: 100%;\n min-height: var(--webchat__bubble--min-height);\n}\n\n/* Message bubble text content */\n:global(.webchat-fluent) .activity-decorator :global(.webchat__stacked-layout .webchat__bubble .webchat__text-content) {\n font-size: var(--webchat__font-size--medium);\n line-height: var(--webchat__line-height--medium);\n min-height: auto;\n padding-block: var(--webchat__bubble--block-padding);\n padding-inline: var(--webchat__bubble--inline-padding);\n\n &:empty {\n padding-block-end: 0;\n }\n\n + :global(.webchat__text-content) {\n margin-top: calc(var(--webchat__bubble--block-padding) * -1);\n }\n}\n\n/* Message bubble text content generated badge */\n:global(.webchat-fluent)\n .activity-decorator\n :global(.webchat__stacked-layout .webchat__bubble .webchat__text-content__generated-badge) {\n align-items: center;\n align-self: flex-start;\n background-color: var(--webchat-colorNeutralBackground5);\n border-radius: var(--webchat-borderRadiusMedium);\n box-sizing: border-box;\n color: var(--webchat-colorNeutralForeground3);\n cursor: default;\n display: inline-flex;\n font-size: var(--webchat-fontSizeBase100);\n height: 16px;\n line-height: var(--webchat-lineHeightBase100);\n padding-inline: var(--webchat-spacingHorizontalXS);\n}\n\n/* Message bubble attachment content */\n:global(.webchat-fluent)\n .activity-decorator\n :global(.webchat__stacked-layout .webchat__bubble .webchat__fileContent__badge) {\n cursor: default;\n font-size: var(--webchat-fontSizeBase300);\n line-height: var(--webchat-lineHeightBase300);\n\n :global(.webchat__fileContent__fileName) {\n color: var(--webchat-colorBrandForegroundLink);\n font-family: inherit;\n }\n :global(.webchat__fileContent__size) {\n color: var(--webchat-colorNeutralForeground2);\n font-family: inherit;\n }\n}\n\n/* Markdown links and citation links */\n:global(.webchat-fluent)\n .activity-decorator\n :global(.webchat__render-markdown)\n a[href]:not(:global(.webchat__render-markdown__pure-identifier)) {\n color: var(--webchat-colorBrandForegroundLink);\n text-decoration-color: transparent;\n\n &:target {\n color: var(--webchat-colorBrandForegroundLinkSelected);\n }\n\n &:hover {\n color: var(--webchat-colorBrandForegroundLinkHover);\n text-decoration: underline 1px currentColor;\n }\n\n &:active {\n color: var(--webchat-colorBrandForegroundLinkPressed);\n }\n\n &:focus-visible {\n outline: none;\n text-decoration: underline 1px double var(--webchat-colorStrokeFocus2);\n }\n\n :global(.webchat__render-markdown__external-link-icon) {\n background: currentColor;\n -webkit-mask: var(--webchat__icon-url--external-link) no-repeat;\n mask: var(--webchat__icon-url--external-link) no-repeat;\n }\n}\n\n/* Citation inline references */\n:global(.webchat-fluent)\n .activity-decorator\n :global(.webchat__render-markdown)\n :global(.webchat__render-markdown__citation),\n:global(.webchat-fluent)\n .activity-decorator\n :global(.webchat__render-markdown)\n :global(.webchat__render-markdown__pure-identifier) {\n align-items: center;\n background-color: var(--webchat-colorNeutralBackground3);\n border-radius: var(--webchat-borderRadiusMedium);\n border: var(--webchat-strokeWidthThin) solid var(--webchat-colorNeutralStroke2);\n box-sizing: border-box;\n color: var(--webchat-colorNeutralForeground2);\n display: inline-flex;\n font-size: var(--webchat-fontSizeBase100);\n font-weight: var(--webchat-fontWeightSemibold);\n height: 14px;\n justify-content: center;\n line-height: var(--webchat-lineHeightBase100);\n margin-left: var(--webchat-spacingHorizontalXXS);\n margin-right: var(--webchat-spacingHorizontalXXS);\n min-width: 14px;\n text-decoration: none;\n transition: all var(--webchat-durationNormal) var(--webchat-curveDecelerateMid);\n vertical-align: calc((var(--webchat-lineHeightBase100) - var(--webchat-fontSizeBase100)) / 2);\n\n &:hover {\n background-color: var(--webchat-colorBrandBackground2Hover);\n border-color: var(--webchat-colorBrandStroke2Hover);\n color: var(--webchat-colorBrandForeground2Hover);\n cursor: pointer;\n }\n\n &:hover:active {\n background-color: var(--webchat-colorBrandBackground2Pressed);\n border-color: var(--webchat-colorBrandStroke2Pressed);\n color: var(--webchat-colorBrandForeground2Pressed);\n }\n\n &::before,\n &::after {\n all: unset;\n }\n\n &:has(:global(.webchat__render-markdown__external-link-icon)) {\n padding-inline: 3px;\n }\n\n :global(.webchat__render-markdown__external-link-icon) {\n background: currentColor;\n height: 0.7em;\n -webkit-mask: var(--webchat__icon-url--external-link) no-repeat;\n mask: var(--webchat__icon-url--external-link) no-repeat;\n }\n}\n\n/* Citation summary chevron */\n:global(.webchat-fluent) .activity-decorator :global(.webchat__link-definitions__header) {\n border-radius: var(--webchat-borderRadiusMedium);\n\n :global(.webchat__link-definitions__header-text) {\n color: var(--webchat-colorNeutralForeground3);\n }\n\n :global(.webchat__link-definitions__header-chevron) {\n fill: var(--webchat-colorNeutralForeground3);\n font-size: var(--webchat__font-size--small);\n width: 1em;\n }\n\n &:focus-visible {\n outline-offset: 1px;\n outline: var(--webchat-strokeWidthThin) solid var(--webchat-colorStrokeFocus2);\n }\n}\n\n/* Citation link definitions */\n:global(.webchat-fluent) .activity-decorator :global(.webchat__link-definitions) {\n --webchat__citation__external-link--mask: var(--webchat-externalLink-mask);\n --webchat__citation__link--max-width: var(--webchat-externalLink-maxWidth);\n\n :global(.webchat__link-definitions__list) {\n color: var(--webchat__color--subtle);\n display: flex;\n flex-flow: row wrap;\n gap: var(--webchat-spacingHorizontalS);\n }\n\n :global(.webchat__link-definitions__list-item) {\n border-radius: var(--webchat-borderRadiusMedium);\n max-width: var(--webchat__citation__link--max-width);\n }\n\n :global(.webchat__link-definitions__list-item-box) {\n background-color: var(--webchat-colorNeutralBackground3);\n border-radius: var(--webchat-borderRadiusMedium);\n border: var(--webchat-strokeWidthThin) solid var(--webchat-colorNeutralStroke2);\n box-sizing: border-box;\n color: currentColor;\n display: inline-flex;\n font-size: var(--webchat__font-size--small);\n height: 24px;\n padding-inline-end: var(--webchat-spacingHorizontalS);\n }\n\n :global(.webchat__link-definitions__list-item-body) {\n font-family: inherit;\n gap: var(--webchat-spacingHorizontalSNudge);\n min-width: 0;\n padding: 0;\n }\n\n :global(.webchat__link-definitions__badge) {\n align-self: center;\n background-color: transparent;\n border-radius: 0;\n border: none;\n color: currentColor;\n font-size: var(--webchat-fontSizeBase100);\n font-weight: var(--webchat-fontWeightSemibold);\n line-height: var(--webchat-lineHeightBase100);\n margin: 0;\n min-width: 20px;\n padding: 0;\n position: relative;\n text-align: center;\n }\n\n :global(.webchat__link-definitions__badge)::after {\n border-right: var(--webchat-strokeWidthThin) solid var(--webchat-colorNeutralStroke2);\n bottom: 0;\n content: '';\n display: block;\n height: 16px;\n position: absolute;\n right: 0;\n top: 0;\n width: 0;\n }\n\n :global(.webchat__link-definitions__list-item-main-text) {\n gap: var(--webchat-spacingHorizontalXS);\n }\n\n :global(.webchat__link-definitions__list-item-text) {\n color: currentColor;\n text-decoration: none;\n text-overflow: ellipsis;\n }\n\n :global(.webchat__link-definitions__list-item-main-text):has(\n :global(.webchat__link-definitions__open-in-new-window-icon)\n )::before {\n align-self: center;\n background: currentColor;\n color: currentColor;\n content: '';\n flex: none;\n font-size: var(--webchat-fontSizeBase400);\n height: 1em;\n -webkit-mask: var(--webchat__citation__external-link--mask) no-repeat;\n mask: var(--webchat__citation__external-link--mask) no-repeat;\n padding: 0;\n width: 1em;\n }\n\n /* It seems Copilot does not show per-item sensitivity label, i.e. \"General\", etc. */\n :global(.webchat__link-definitions__list-item-badge) {\n display: none;\n }\n\n :global(.webchat__link-definitions__open-in-new-window-icon) {\n display: none;\n }\n}\n",":global(.webchat-fluent) .copilot-message-header {\n align-items: center;\n box-sizing: border-box;\n cursor: default;\n display: flex;\n flex-wrap: nowrap;\n gap: var(--webchat-spacingHorizontalS);\n max-width: var(--webchat__bubble--max-width);\n}\n\n:global(.webchat-fluent) .copilot-message-header__avatar {\n aspect-ratio: 1;\n background-color: var(--background-color);\n border-radius: var(--webchat-borderRadiusSmall);\n width: 20px;\n}\n\n:global(.webchat-fluent) .copilot-message-header__title {\n font-size: var(--webchat-fontSizeBase300);\n font-weight: var(--webchat-fontWeightSemibold);\n line-height: var(--webchat-lineHeightBase300);\n overflow: hidden;\n text-overflow: ellipsis;\n text-wrap: nowrap;\n}\n\n:global(.webchat-fluent) .copilot-message-header__ai-generated-content {\n align-items: center;\n background-color: var(--webchat-colorNeutralBackground5);\n border-radius: var(--webchat-borderRadiusMedium);\n color: var(--webchat-colorNeutralForeground3);\n display: flex;\n flex: none;\n font-size: var(--webchat-fontSizeBase100);\n height: 20px;\n line-height: var(--webchat-lineHeightBase100);\n padding-inline: var(--webchat-spacingHorizontalXS);\n}\n",":global(.webchat-fluent) .suggested-action {\n align-items: center;\n background: transparent;\n border-radius: var(--webchat-borderRadiusXLarge);\n border: var(--webchat-strokeWidthThin) solid var(--webchat-colorBrandStroke2);\n color: currentColor;\n cursor: pointer;\n display: flex;\n font-family: var(--webchat__font--primary);\n font-size: var(--webchat-fontSizeBase200);\n gap: var(--webchat-spacingHorizontalXS);\n padding: var(--webchat-spacingVerticalXS) var(--webchat-spacingHorizontalS);\n text-align: start;\n transition: all var(--webchat-durationNormal) var(--webchat-curveDecelerateMid);\n\n @media (hover: hover) {\n &:not([aria-disabled='true']):hover {\n background-color: var(--webchat-colorBrandBackground2Hover);\n color: var(--webchat-colorBrandForeground2Hover);\n }\n }\n &:not([aria-disabled='true']):active {\n background-color: var(--webchat-colorBrandBackground2Pressed);\n color: var(--webchat-colorBrandForeground2Pressed);\n }\n &[aria-disabled='true'] {\n color: var(--webchat-colorNeutralForegroundDisabled);\n cursor: not-allowed;\n }\n}\n\n:global(.webchat-fluent) .suggested-action__image {\n font-size: var(--webchat-fontSizeBase200);\n height: 1em;\n width: 1em;\n}\n",":global(.webchat-fluent) .suggested-actions {\n align-items: flex-end;\n align-self: flex-end;\n display: flex;\n flex-direction: column;\n gap: 8px;\n\n &:not(:empty) {\n padding-block-end: 8px;\n padding-inline-start: 4px;\n }\n\n &.suggested-actions--flow {\n flex-direction: row;\n flex-wrap: wrap;\n justify-content: flex-end;\n }\n\n &.suggested-actions--stacked {\n flex-direction: column;\n }\n}\n",":global(.webchat-fluent) .telephone-keypad__button {\n -webkit-user-select: none;\n align-items: center;\n appearance: none;\n /* backgroundColor: isDarkTheme() || isHighContrastTheme() ? black : white, */\n background-color: White;\n border-radius: 100%;\n\n /* Whitelabel styles */\n /* border: `solid 1px ${isHighContrastTheme() ? white : isDarkTheme() ? gray160 : gray40}`, */\n /* color: inherit; */\n\n border: solid 1px var(--webchat-colorNeutralStroke1);\n color: var(--webchat-colorGray200);\n font-weight: var(--webchat-fontWeightSemibold);\n\n cursor: pointer;\n display: flex;\n flex-direction: column;\n height: 60px;\n opacity: 0.7;\n padding: 0;\n position: relative;\n touch-action: none;\n user-select: none;\n width: 60px;\n\n &:hover {\n /* backgroundColor: isHighContrastTheme() ? gray210 : isDarkTheme() ? gray150 : gray30 */\n background-color: var(--webchat-colorGray30);\n }\n}\n\n:global(.webchat-fluent) .telephone-keypad__button__ruby {\n /* color: isHighContrastTheme() ? white : isDarkTheme() ? gray40 : gray160, */\n color: var(--webchat-colorGray190);\n font-size: 10px;\n}\n\n:global(.webchat-fluent) .telephone-keypad__button__text {\n font-size: 24px;\n margin-top: 8px;\n}\n\n:global(.webchat-fluent) .telephone-keypad--horizontal {\n & .telephone-keypad__button {\n height: 32px;\n justify-content: center;\n margin: 8px 4px;\n width: 32px;\n }\n\n .telephone-keypad__button__ruby {\n display: none;\n }\n\n & .telephone-keypad__button__text {\n font-size: 20px;\n margin-top: 0;\n }\n}\n",":global(.webchat-fluent) .telephone-keypad {\n /* Commented out whitelabel styles for now. */\n /* background: getHighContrastDarkThemeColor(highContrastColor: black, darkThemeColor: gray190, string, defaultColor: gray10), */\n /* borderRadius: '8px 8px 0px 0px; */\n /* boxShadow: '-3px 0px 7px 0px rgba(0, 0, 0, 0.13), -0.6px 0px 1.8px 0px rgba(0, 0, 0, 0.10)', */\n\n align-items: center;\n background: var(--webchat-colorNeutralBackground1);\n /* border: isHighContrastTheme() ? `1px solid ${white}` : none; */\n border: none;\n border-radius: var(--webchat-borderRadiusXLarge);\n /* boxShadow: var(--shadow16); */\n display: flex;\n flex-direction: column;\n font-family: var(--webchat-fontFamilyBase);\n justify-content: center;\n /* margin: var(--spacingHorizontalMNudge)' */\n}\n\n:global(.webchat-fluent) .telephone-keypad__box {\n box-sizing: border-box;\n display: grid;\n gap: 16px;\n grid-template-columns: repeat(3, 1fr);\n grid-template-rows: repeat(4, 1fr);\n justify-items: center;\n padding: 16px;\n width: 100%;\n}\n\n:global(.webchat-fluent) .telephone-keypad__info-message {\n align-items: center;\n color: var(--webchat-colorNeutralForeground4);\n display: flex;\n font-size: 12px;\n gap: 6px;\n margin-block-end: 6px;\n}\n\n:global(.webchat-fluent) .telephone-keypad__info-message-link {\n color: var(--webchat-colorBrandForegroundLink);\n text-decoration-color: transparent;\n\n &:target {\n color: var(--webchat-colorBrandForegroundLinkSelected);\n }\n &:hover {\n color: var(--webchat-colorBrandForegroundLinkHover);\n text-decoration: underline 1px currentColor;\n }\n &:active {\n color: var(--webchat-colorBrandForegroundLinkPressed);\n }\n &:focus-visible {\n outline: none;\n text-decoration: underline 1px double var(--webchat-colorStrokeFocus2);\n }\n}\n",":global(.webchat-fluent) .sendbox__toolbar {\n --webchat__sendbox-button-height: 32px;\n\n display: flex;\n gap: 4px;\n height: var(--webchat__sendbox-button-height);\n margin-inline-start: auto;\n}\n\n:global(.webchat-fluent) .sendbox__toolbar-button {\n align-items: center;\n appearance: none;\n aspect-ratio: 1;\n background: transparent;\n border-radius: var(--webchat-borderRadiusSmall);\n border: none;\n color: currentColor;\n cursor: pointer;\n display: flex;\n height: var(--webchat__sendbox-button-height);\n justify-content: center;\n padding: 3px;\n\n > :global(.webchat__monochrome-image-masker) {\n font-size: 20px;\n pointer-events: none;\n }\n\n &.sendbox__toolbar-button--selected {\n color: var(--webchat-colorNeutralForeground2BrandSelected);\n }\n\n @media (hover: hover) {\n &:not([aria-disabled='true']):hover {\n color: var(--webchat-colorNeutralForeground2BrandHover);\n }\n }\n\n &:not([aria-disabled='true']):active {\n color: var(--webchat-colorNeutralForeground2BrandPressed);\n }\n\n &[aria-disabled='true'] {\n color: var(--webchat-colorNeutralForegroundDisabled);\n cursor: not-allowed;\n }\n}\n\n:global(.webchat-fluent) .sendbox__toolbar-separator {\n align-self: center;\n border-inline-end: 1px solid var(--webchat-colorNeutralStroke2);\n height: 28px;\n\n &:first-child,\n &:last-child,\n &:only-child {\n display: none;\n }\n}\n",":global(.webchat-fluent) .sendbox__add-attachment {\n display: grid;\n}\n\n:global(.webchat-fluent) .sendbox__add-attachment-input {\n font-size: 0;\n height: 0;\n opacity: 0;\n width: 1px; /* iOS Safari does not honor 0px for the width. */\n}\n",":global(.webchat-fluent) .sendbox__attachment {\n border-radius: var(--webchat-borderRadiusLarge);\n border: 1px solid var(--webchat-colorNeutralStroke1);\n cursor: default;\n padding: 6px 8px;\n width: fit-content;\n}\n",":global(.webchat-fluent) .sendbox__error-message {\n color: transparent;\n font-size: 0;\n height: 0;\n left: 0;\n position: absolute;\n top: 0;\n width: 0;\n}\n",":global(.webchat-fluent) .sendbox {\n --webchat__sendbox--padding: var(--webchat__padding--sendbox);\n\n color: var(--webchat-colorNeutralForeground1);\n font-family: var(--webchat-fontFamilyBase);\n padding: var(--webchat__sendbox--padding);\n text-rendering: optimizeLegibility;\n\n --webchat-sendbox-attachment-area-active: ;\n --webchat-sendbox-border-radius: var(--webchat-borderRadiusLarge);\n}\n\n/* Copilot variant */\n:global(.webchat-fluent) .sendbox.variant-copilot {\n .sendbox__text-counter:not(.sendbox__text-counter--error) {\n visibility: hidden;\n }\n}\n\n:global(.webchat-fluent) .sendbox__sendbox {\n background-color: var(--webchat-colorNeutralBackground1);\n border-radius: var(--webchat-sendbox-border-radius);\n border: 1px solid var(--webchat-colorNeutralStroke1);\n display: grid;\n font-family: var(--webchat-fontFamilyBase);\n font-size: 14px;\n gap: 6px;\n grid-template:\n [telephone-keypad-start] 'text-area' [telephone-keypad-end]\n var(--webchat-sendbox-attachment-area-active)\n 'controls' / [telephone-keypad] 1fr;\n line-height: 20px;\n padding: 8px;\n position: relative;\n\n &:has(.sendbox__attachment--in-grid) {\n --webchat-sendbox-attachment-area-active: 'attachment';\n }\n\n &:focus-within {\n border-color: var(--webchat-colorNeutralStroke1Selected);\n }\n\n &::after {\n border-bottom-left-radius: var(--webchat-sendbox-border-radius);\n border-bottom-right-radius: var(--webchat-sendbox-border-radius);\n border-bottom: var(--webchat-strokeWidthThicker) solid var(--webchat-colorCompoundBrandForeground1Hover);\n bottom: -1px;\n clip-path: inset(calc(100% - var(--webchat-strokeWidthThicker)) 50% 0 50%);\n content: '';\n height: var(--webchat-sendbox-border-radius);\n left: -1px;\n position: absolute;\n right: -1px;\n transition: clip-path var(--webchat-durationUltraFast) var(--webchat-curveAccelerateMid);\n }\n\n &:focus-within::after {\n clip-path: inset(calc(100% - var(--webchat-strokeWidthThicker)) 0 0 0);\n transition: clip-path var(--webchat-durationNormal) var(--webchat-curveDecelerateMid);\n }\n\n > .sendbox__text-area--in-grid {\n grid-area: text-area;\n }\n\n > .sendbox__attachment--in-grid {\n grid-area: attachment;\n }\n\n > .sendbox__sendbox-controls--in-grid {\n grid-area: controls;\n }\n\n > .sendbox__telephone-keypad--in-grid {\n grid-area: telephone-keypad;\n }\n}\n\n:global(.webchat-fluent) .sendbox__sendbox-text {\n background-color: transparent;\n border: none;\n flex: auto;\n font-family: var(--webchat-fontFamilyBase);\n font-size: 14px;\n line-height: 20px;\n outline: none;\n margin: var(--webchat-spacingVerticalXS) var(--webchat-spacingHorizontalXS) var(--webchat-spacingVerticalNone);\n resize: none;\n\n /* Prevent zoom on focus on iOS */\n @media only screen and (hover: none) and (pointer: coarse) {\n &:focus-within {\n font-size: 16px;\n }\n }\n}\n\n:global(.webchat-fluent) .sendbox__sendbox-controls {\n align-items: center;\n display: flex;\n padding-inline-start: 4px;\n}\n\n:global(.webchat-fluent) .sendbox__text-counter {\n color: var(--webchat-colorNeutralForeground4);\n cursor: default;\n font-family: var(--webchat-fontFamilyNumeric);\n font-size: 10px;\n line-height: 14px;\n margin-inline-end: 4px;\n}\n\n:global(.webchat-fluent) .sendbox__text-counter--error {\n color: var(--webchat-colorStatusDangerForeground1);\n}\n",":global(.webchat-fluent) .sendbox__text-area {\n display: grid;\n grid-template-areas: 'main';\n max-height: 200px;\n overflow: auto;\n scrollbar-gutter: stable;\n}\n\n:global(.webchat-fluent) .sendbox__text-area--hidden {\n /* TODO: Not perfect way of hiding the text box. */\n height: 0;\n visibility: collapse;\n}\n\n:global(.webchat-fluent) .sendbox__text-area--in-completion {\n .sendbox__text-area-doppelganger {\n visibility: unset;\n }\n\n .sendbox__text-area-input {\n background-color: transparent;\n caret-color: var(--webchat-colorNeutralForeground1);\n color: transparent;\n }\n\n textarea::placeholder {\n color: transparent;\n }\n}\n\n:global(.webchat-fluent) .sendbox__text-area-shared {\n border: none;\n font: inherit;\n grid-area: main;\n outline: inherit;\n overflow-wrap: anywhere;\n resize: inherit;\n}\n\n:global(.webchat-fluent) .sendbox__text-area-doppelganger {\n overflow: visible;\n pointer-events: none;\n user-select: none;\n visibility: hidden;\n white-space: pre-wrap;\n}\n\n:global(.webchat-fluent) .sendbox__text-area-input {\n background-color: inherit;\n color: currentColor;\n contain: size;\n overflow: hidden;\n padding: 0;\n}\n\n:global(.webchat-fluent) .sendbox__text-area--scroll {\n /* Edge uses -webkit-scrollbar if scrollbar-* is not set */\n scrollbar-color: unset;\n scrollbar-width: unset;\n /* Firefox */\n -moz-scrollbar-color: var(--webchat-colorNeutralBackground5) var(--webchat-colorNeutralForeground2);\n -moz-scrollbar-width: thin;\n\n /* Chrome, Edge, and Safari */\n &::-webkit-scrollbar {\n width: 8px;\n }\n\n &::-webkit-scrollbar-track {\n background-color: var(--webchat-colorNeutralBackground5);\n border-radius: 16px;\n }\n\n &::-webkit-scrollbar-thumb {\n background-color: var(--webchat-colorNeutralForeground2);\n border-radius: 16px;\n }\n\n &::-webkit-scrollbar-corner {\n background-color: var(--webchat-colorNeutralBackground5);\n }\n}\n",":global(.webchat-fluent) .activity-loader {\n flex: none;\n height: 8px;\n margin: var(--webchat-spacingHorizontalM) 0 0 18px;\n width: auto;\n\n &.variant-fluent {\n margin: 0 0 var(--webchat-spacingHorizontalM) var(--webchat-spacingVerticalSNudge);\n }\n}\n",":global(.webchat-fluent) .liner-message-activity {\n align-items: center;\n box-sizing: border-box;\n color: var(--webchat-colorNeutralForeground3);\n display: flex;\n flex-direction: row;\n font-family: var(--webchat__font--primary);\n font-size: var(--webchat-fontSizeBase200);\n font-weight: var(--webchat-fontWeightRegular);\n gap: var(--webchat-spacingHorizontalM);\n line-height: var(--webchat-lineHeightBase200);\n padding: var(--webchat-spacingVerticalSNudge) var(--webchat-spacingHorizontalM);\n text-align: center;\n width: 100%;\n\n &::before,\n &::after {\n border-top: var(--webchat-strokeWidthThin) solid var(--webchat-colorNeutralStroke2);\n content: '';\n display: flex;\n flex: auto;\n min-width: 8px;\n }\n}\n\n:global(.webchat-fluent) .liner-message-activity__text {\n text-align: center;\n}\n",":global {\n /* biome-ignore format: do not print each class on the new line */\n .a, .b, .c, .d, .e, .f, .g, .h, .i, .j, .k, .l, .m, .n, .o, .p, .q, .r, .s, .t, .v, .w, .u, .x, .y, .z,\n .A, .B, .C, .D, .E, .F, .G, .H, .I, .J, .K, .L, .M, .N, .O, .P, .Q, .R, .S, .T, .V, .W, .U, .X, .Y, .Z {\n /* esbuild considers empty global classes as used and removes them due to lack of rules */\n }\n}\n\n:global(.webchat-fluent).theme {\n display: contents;\n\n --webchat-colorNeutralForegroundDisabled: var(--colorNeutralForegroundDisabled, #bdbdbd);\n --webchat-colorNeutralForeground1: var(--colorNeutralForeground1, #242424);\n --webchat-colorNeutralForeground1Hover: var(--colorNeutralForeground1Hover, #242424);\n --webchat-colorNeutralForeground1Pressed: var(--colorNeutralForeground1Pressed, #242424);\n --webchat-colorNeutralForeground2: var(--colorNeutralForeground2, #424242);\n --webchat-colorNeutralForeground2BrandHover: var(--colorNeutralForeground2BrandHover, #02729c);\n --webchat-colorNeutralForeground2BrandPressed: var(--colorNeutralForeground2BrandPressed, #01678c);\n --webchat-colorNeutralForeground2BrandSelected: var(--colorNeutralForeground2BrandSelected, #067191);\n --webchat-colorNeutralForeground3: var(--colorNeutralForeground3, #616161);\n --webchat-colorNeutralForeground4: var(--colorNeutralForeground4, #707070);\n --webchat-colorNeutralForeground5: var(--colorNeutralForeground5, #7e7e7e);\n\n --webchat-colorNeutralForegroundOnBrand: var(--colorNeutralForegroundOnBrand, #fff);\n\n --webchat-colorNeutralBackgroundDisabled: var(--colorNeutralBackgroundDisabled, #f0f0f0);\n --webchat-colorNeutralBackground1: var(--colorNeutralBackground1, #ffffff);\n --webchat-colorNeutralBackground1Hover: var(--colorNeutralBackground1Hover, #f5f5f5);\n --webchat-colorNeutralBackground1Pressed: var(--colorNeutralBackground1Pressed, #e0e0e0);\n --webchat-colorNeutralBackground3: var(--colorNeutralBackground3, #f5f5f5);\n --webchat-colorNeutralBackground4: var(--colorNeutralBackground4, #f0f0f0);\n --webchat-colorNeutralBackground5: var(--colorNeutralBackground5, #ebebeb);\n --webchat-colorNeutralBackground6: var(--colorNeutralBackground6, #e6e6e6);\n\n --webchat-colorNeutralStencil1: var(--colorNeutralStencil1, #e6e6e6); /* #575757 for dark mode */\n --webchat-colorNeutralStencil2: var(--colorNeutralStencil2, #fafafa); /* #333333 for dark mode */\n\n --webchat-colorNeutralShadowAmbient: var(--colorNeutralShadowAmbient, rgba(0, 0, 0, 0.12));\n --webchat-colorNeutralShadowKey: var(--colorNeutralShadowKey, rgba(0, 0, 0, 0.14));\n\n --webchat-colorTransparentBackground: var(--colorTransparentBackground, rgba(0, 0, 0, 0.4));\n\n --webchat-colorNeutralStrokeDisabled: var(--colorNeutralStrokeDisabled, #e0e0e0);\n --webchat-colorNeutralStroke1: var(--colorNeutralStroke1, #d1d1d1);\n --webchat-colorNeutralStroke1Hover: var(--colorNeutralStroke1Hover, #c7c7c7);\n --webchat-colorNeutralStroke1Pressed: var(--colorNeutralStroke1Pressed, #b3b3b3);\n --webchat-colorNeutralStroke1Selected: var(--colorNeutralStroke1Selected, #bdbdbd);\n --webchat-colorNeutralStroke2: var(--colorNeutralStroke2, #e0e0e0);\n\n --webchat-colorStrokeFocus2: var(--colorStrokeFocus2, #000000);\n\n --webchat-colorBrandStroke2: var(--colorBrandStroke2, #9edcf7);\n --webchat-colorBrandStroke2Pressed: var(--colorBrandStroke2Pressed, #01384d);\n\n --webchat-colorTransparentStroke: var(--colorTransparentStroke, transparent);\n\n --webchat-colorBrandForeground1: var(--colorBrandForeground1, #01678c);\n --webchat-colorBrandForeground2Hover: var(--colorBrandForeground2Hover, #015a7a);\n --webchat-colorBrandForeground2Pressed: var(--colorBrandForeground2Pressed, #01384d);\n\n --webchat-colorBrandForegroundLink: var(--colorBrandForegroundLink, #01678c);\n --webchat-colorBrandForegroundLinkHover: var(--colorBrandForegroundLinkHover, #015a7a);\n --webchat-colorBrandForegroundLinkPressed: var(--colorBrandForegroundLinkPressed, #014259);\n --webchat-colorBrandForegroundLinkSelected: var(--colorBrandForegroundLinkSelected, #01678c);\n\n --webchat-colorBrandBackground: var(--colorBrandBackground, #077fab);\n --webchat-colorBrandBackgroundHover: var(--colorBrandBackgroundHover, #06729a);\n --webchat-colorBrandBackgroundPressed: var(--colorBrandBackgroundPressed, #044760);\n --webchat-colorBrandBackground2: var(--colorBrandBackground2, #def2fc);\n --webchat-colorBrandBackground2Hover: var(--colorBrandBackground2Hover, #bee7fa);\n --webchat-colorBrandBackground2Pressed: var(--colorBrandBackground2Pressed, #7fd2f5);\n\n --webchat-colorCompoundBrandForeground1Hover: var(--colorCompoundBrandForeground1Hover, #02729c);\n\n --webchat-colorStatusDangerForeground1: var(--colorStatusDangerForeground1, #b10e1c);\n\n /* https://github.com/microsoft/fluentui/blob/master/packages/tokens/src/global/colors.ts */\n --webchat-colorGray30: var(--colorGray30, #edebe9);\n --webchat-colorGray160: var(--colorGray160, #323130);\n --webchat-colorGray190: var(--colorGray190, #201f1e);\n --webchat-colorGray200: var(--colorGray200, #1b1a19);\n\n /* New greys from the link above not exposed by Fluent */\n --webchat-colorGrey8: #141414;\n --webchat-colorGrey14: #242424;\n --webchat-colorGrey92: #ebebeb;\n --webchat-colorGrey98: #fafafa;\n\n /* https://github.com/microsoft/fluentui/blob/master/packages/tokens/src/utils/shadows.ts */\n --webchat-shadow2: var(--shadow2, 0 0 2px rgba(0, 0, 0, 12%), 0 1px 2px rgba(0, 0, 0, 14%));\n --webchat-shadow4: var(--shadow4, 0 0 2px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.14));\n --webchat-shadow16: var(--shadow16, 0 6.4px 14.4px 0 rgba(0, 0, 0, 0.132), 0 1.2px 3.6px 0 rgba(0, 0, 0, 0.108));\n --webchat-shadow64: var(--shadow64, 0 0 8px rgba(0, 0, 0, 0.12), 0 32px 64px rgba(0, 0, 0, 0.14));\n\n /* https://github.com/microsoft/fluentui/blob/master/packages/tokens/src/global/spacings.ts */\n --webchat-spacingHorizontalNone: var(--spacingHorizontalNone, 0);\n --webchat-spacingHorizontalXXS: var(--spacingHorizontalXXS, 2px);\n --webchat-spacingHorizontalXS: var(--spacingHorizontalXS, 4px);\n --webchat-spacingHorizontalSNudge: var(--spacingHorizontalSNudge, 6px);\n --webchat-spacingHorizontalS: var(--spacingHorizontalS, 8px);\n --webchat-spacingHorizontalMNudge: var(--spacingHorizontalMNudge, 10px);\n --webchat-spacingHorizontalM: var(--spacingHorizontalM, 12px);\n --webchat-spacingHorizontalL: var(--spacingHorizontalL, 16px);\n --webchat-spacingHorizontalXL: var(--spacingHorizontalXL, 20px);\n --webchat-spacingHorizontalXXL: var(--spacingHorizontalXXL, 24px);\n --webchat-spacingHorizontalXXXL: var(--spacingHorizontalXXXL, 32px);\n\n /* https://github.com/microsoft/fluentui/blob/master/packages/tokens/src/global/spacings.ts */\n --webchat-spacingVerticalNone: var(--spacingVerticalNone, 0);\n --webchat-spacingVerticalXXS: var(--spacingVerticalXXS, 2px);\n --webchat-spacingVerticalXS: var(--spacingVerticalXS, 4px);\n --webchat-spacingVerticalSNudge: var(--spacingVerticalSNudge, 6px);\n --webchat-spacingVerticalS: var(--spacingVerticalS, 8px);\n --webchat-spacingVerticalMNudge: var(--spacingVerticalMNudge, 10px);\n --webchat-spacingVerticalM: var(--spacingVerticalM, 12px);\n --webchat-spacingVerticalL: var(--spacingVerticalL, 16px);\n --webchat-spacingVerticalXL: var(--spacingVerticalXL, 20px);\n --webchat-spacingVerticalXXL: var(--spacingVerticalXXL, 24px);\n --webchat-spacingVerticalXXXL: var(--spacingVerticalXXXL, 32px);\n\n /* https://github.com/microsoft/fluentui/blob/master/packages/tokens/src/global/fonts.ts */\n --webchat-fontFamilyBase: var(\n --fontFamilyBase,\n 'Segoe UI',\n 'Segoe UI Web (West European)',\n -apple-system,\n BlinkMacSystemFont,\n Roboto,\n 'Helvetica Neue',\n sans-serif\n );\n --webchat-fontFamilyMonospace: var(--fontFamilyMonospace, Consolas, 'Courier New', Courier, monospace);\n --webchat-fontFamilyNumeric: var(\n --fontFamilyNumeric,\n Bahnschrift,\n 'Segoe UI',\n 'Segoe UI Web (West European)',\n -apple-system,\n BlinkMacSystemFont,\n Roboto,\n 'Helvetica Neue',\n sans-serif\n );\n\n /* https://github.com/microsoft/fluentui/blob/master/packages/tokens/src/global/fonts.ts */\n --webchat-fontWeightRegular: var(--fontWeightRegular, 400);\n --webchat-fontWeightSemibold: var(--fontWeightSemibold, 600);\n\n /* https://github.com/microsoft/fluentui/blob/master/packages/tokens/src/global/fonts.ts */\n --webchat-fontSizeBase100: var(--fontSizeBase100, 10px);\n --webchat-fontSizeBase200: var(--fontSizeBase200, 12px);\n --webchat-fontSizeBase300: var(--fontSizeBase300, 14px);\n --webchat-fontSizeBase400: var(--fontSizeBase400, 16px);\n --webchat-fontSizeBase500: var(--fontSizeBase500, 20px);\n --webchat-fontSizeBase600: var(--fontSizeBase600, 24px);\n --webchat-fontSizeHero700: var(--fontSizeHero700, 28px);\n --webchat-fontSizeHero800: var(--fontSizeHero800, 32px);\n --webchat-fontSizeHero900: var(--fontSizeHero900, 40px);\n\n --webchat-lineHeightBase100: var(--lineHeightBase100, 14px);\n --webchat-lineHeightBase200: var(--lineHeightBase200, 16px);\n --webchat-lineHeightBase300: var(--lineHeightBase300, 20px);\n --webchat-lineHeightBase400: var(--lineHeightBase400, 22px);\n --webchat-lineHeightBase500: var(--lineHeightBase500, 28px);\n --webchat-lineHeightBase600: var(--lineHeightBase600, 32px);\n --webchat-lineHeightHero700: var(--lineHeightHero700, 36px);\n --webchat-lineHeightHero800: var(--lineHeightHero800, 40px);\n --webchat-lineHeightHero900: var(--lineHeightHero900, 52px);\n --webchat-lineHeightHero1000: var(--lineHeightHero1000, 92px);\n\n /* https://github.com/microsoft/fluentui/blob/master/packages/tokens/src/global/borderRadius.ts */\n --webchat-borderRadiusSmall: var(--borderRadiusSmall, 2px);\n --webchat-borderRadiusMedium: var(--borderRadiusMedium, 4px);\n --webchat-borderRadiusLarge: var(--borderRadiusLarge, 6px);\n --webchat-borderRadiusXLarge: var(--borderRadiusXLarge, 8px);\n\n /* https://github.com/microsoft/fluentui/blob/master/packages/tokens/src/global/strokeWidths.ts */\n --webchat-strokeWidthThin: var(--strokeWidthThin, 1px);\n --webchat-strokeWidthThick: var(--strokeWidthThick, 2px);\n --webchat-strokeWidthThicker: var(--strokeWidthThicker, 3px);\n\n /* https://github.com/microsoft/fluentui/blob/master/packages/tokens/src/global/durations.ts */\n --webchat-durationUltraFast: var(--durationUltraFast, 0);\n --webchat-durationNormal: var(--durationNormal, 200ms);\n --webchat-durationUltraSlow: var(--durationUltraSlow, 500ms);\n\n /* https://github.com/microsoft/fluentui/blob/master/packages/tokens/src/global/curves.ts */\n --webchat-curveAccelerateMid: var(--curveAccelerateMid, cubic-bezier(1, 0, 1, 1));\n --webchat-curveDecelerateMid: var(--curveDecelerateMid, cubic-bezier(0, 0, 0, 1));\n}\n\n@media (prefers-reduced-motion) {\n :global(.webchat-fluent).theme {\n --webchat-durationUltraFast: 0.01ms;\n --webchat-durationNormal: 0.01ms;\n }\n}\n\n/* Style Options override */\n:global(.webchat-fluent).theme :global(.webchat__css-custom-properties) {\n --webchat__color--accent: var(--webchat-colorBrandForeground1);\n --webchat__color--subtle: var(--webchat-colorNeutralForeground2);\n --webchat__color--timestamp: var(--webchat-colorNeutralForeground3);\n --webchat__font--primary: var(--webchat-fontFamilyBase);\n --webchat__font-size--small: var(--webchat-fontSizeBase200);\n --webchat__font-size--medium: var(--webchat-fontSizeBase300);\n --webchat__line-height--small: var(--webchat-lineHeightBase200);\n --webchat__line-height--medium: var(--webchat-lineHeightBase300);\n --webchat__max-width--bubble: var(--webchat-bubble-maxWidth);\n --webchat__min-height--bubble: var(--webchat-bubble-minHeight);\n --webchat__padding--regular: var(--webchat-spacingVerticalS);\n --webchat__padding--sendbox: var(--webchat-spacingVerticalNone) var(--webchat-spacingHorizontalMNudge)\n var(--webchat-spacingHorizontalMNudge);\n --webchat__border-animation--color-1: #464feb;\n --webchat__border-animation--color-2: #47cffa;\n --webchat__border-animation--color-3: #b47cf8;\n}\n\n:global(.webchat-fluent).theme.variant-copilot :global(.webchat__css-custom-properties) {\n --webchat__padding--sendbox: var(--webchat-spacingVerticalNone) var(--webchat-spacingHorizontalXL)\n var(--webchat-spacingVerticalMNudge) var(--webchat-spacingHorizontalMNudge);\n}\n\n/* Transcript surface */\n:global(.webchat-fluent).theme :global(.webchat__surface) {\n background-color: var(--webchat__color--surface);\n}\n\n:global(.webchat-fluent).theme.variant-copilot :global(.webchat__surface) {\n box-sizing: border-box;\n padding-inline-start: var(--webchat-spacingHorizontalMNudge);\n}\n\n/* Scrollbars */\n:global(.webchat-fluent).theme :global(.webchat__basic-transcript .webchat__basic-transcript__scrollable),\n:global(.webchat-fluent).theme :global(.webchat__view-code-dialog__code-body),\n:global(.webchat-fluent).theme :global(.webchat__render-markdown [data-math-type='block']),\n:global(.webchat-fluent).theme :global(.webchat__feedback-form-text-area-input--scroll),\n:global(.webchat-fluent).theme :global(.webchat__view-code-dialog__body) {\n /* Edge uses -webkit-scrollbar if scrollbar-* is not set */\n scrollbar-color: unset;\n scrollbar-width: unset;\n /* Firefox */\n -moz-scrollbar-color: var(--webchat-colorNeutralForeground5) transparent;\n -moz-scrollbar-width: thin;\n\n &::-webkit-scrollbar {\n height: var(--webchat-spacingVerticalMNudge);\n width: var(--webchat-spacingVerticalMNudge);\n visibility: hidden;\n }\n\n &::-webkit-scrollbar-corner {\n background: transparent;\n }\n\n &:hover::-webkit-scrollbar {\n height: var(--webchat-spacingVerticalMNudge);\n width: var(--webchat-spacingVerticalMNudge);\n }\n\n &:hover::-webkit-scrollbar-thumb {\n background-clip: padding-box;\n background-color: var(--webchat-colorNeutralForeground5);\n border-radius: 10px;\n border-right: 4px solid transparent;\n border: 3px solid transparent;\n }\n\n &:hover::-webkit-scrollbar-thumb:hover {\n background-clip: padding-box;\n background-color: var(--webchat-colorNeutralForeground5);\n border-radius: 10px;\n border-right: 2px solid transparent;\n border: 1px solid transparent;\n }\n}\n\n:global(.webchat-fluent).theme.variant-copilot\n :global(.webchat__basic-transcript .webchat__basic-transcript__scrollable) {\n scrollbar-gutter: stable;\n}\n\n/* Transcript focus indicator color when in focus-visible state */\n:global(.webchat-fluent).theme\n :global(\n .webchat__basic-transcript\n .webchat__basic-transcript__terminator:focus-visible\n + .webchat__basic-transcript__focus-indicator\n ) {\n border-color: var(--webchat-colorStrokeFocus2);\n}\n\n/* Transcript Activity indicator without focus-visible state */\n:global(.webchat-fluent).theme\n :global(.webchat__basic-transcript:not(:focus-visible) .webchat__basic-transcript__activity-indicator--focus) {\n /* Hide activity focus when no focus-visible state */\n display: none;\n}\n\n/* Transcript Focus indicator when activity focused */\n:global(.webchat-fluent).theme\n :global(.webchat__basic-transcript:focus-visible:has(.webchat__basic-transcript__activity-indicator--focus)) {\n :global(.webchat__basic-transcript__focus-indicator) {\n /* Hide transcript focus when an activity is focused */\n display: none;\n }\n}\n\n/* Transcript focused activity */\n:global(.webchat-fluent).theme\n :global(\n .webchat__basic-transcript:focus-visible\n .webchat__basic-transcript__activity:has(.webchat__basic-transcript__activity-indicator--focus)\n ) {\n :global(.webchat__basic-transcript__activity-indicator--focus) {\n /* Hide transcript activity focus when the activity is focused */\n display: none;\n }\n\n :global(.webchat__bubble)::after,\n :global(.pre-chat-message-activity)::after {\n border-radius: var(--webchat__bubble--border-radius);\n content: '';\n inset: 0;\n outline-offset: 0;\n outline: var(--webchat-strokeWidthThick) solid var(--webchat-colorStrokeFocus2);\n pointer-events: none;\n position: absolute;\n }\n\n :global(.pre-chat-message-activity)::after {\n border-radius: var(--webchat-borderRadiusMedium);\n outline-offset: -3px;\n }\n\n :global(.liner-message-activity__text) {\n border-radius: 20px;\n outline-offset: 4px;\n outline: var(--webchat-strokeWidthThick) solid var(--webchat-colorStrokeFocus2);\n }\n}\n\n/* Transcript filer in copilot variant */\n:global(.webchat-fluent).theme.variant-copilot :global(.webchat__basic-transcript .webchat__basic-transcript__filler) {\n /* No filler unless pre-chat activity, see next rule */\n flex-grow: 0;\n}\n\n/* Transcript with a single pre-chat activity */\n:global(.webchat-fluent).theme\n :global(\n .webchat__basic-transcript:has(.webchat__basic-transcript__activity:only-child):has(.pre-chat-message-activity)\n .webchat__basic-transcript__filler\n ) {\n /* limit grow to half of the size to center the activity */\n flex-grow: 0.5;\n}\n\n/* Modal */\n:global(.webchat-fluent).theme :global(.webchat__modal-dialog) {\n height: 100%;\n display: grid;\n place-items: center;\n\n &::backdrop {\n background-color: var(--webchat-colorTransparentBackground);\n }\n\n :global(.webchat__modal-dialog__box) {\n background-color: var(--webchat-colorNeutralBackground1);\n border-radius: var(--webchat-borderRadiusXLarge);\n position: relative;\n color: var(--webchat-colorNeutralForeground1);\n box-shadow: var(--webchat-shadow64);\n }\n\n :global(.webchat__modal-dialog__close-button) {\n color: var(--webchat-colorNeutralForeground1);\n transition: background-color var(--webchat-durationNormal) var(--webchat-curveDecelerateMid);\n }\n\n /* TODO: align with original fluent modal styles in WebChat as they don't match v9 anymore */\n :global(.webchat__modal-dialog__close-button):not(:active):hover {\n background-color: var(--webchat-colorNeutralBackground3);\n }\n\n :global(.webchat__modal-dialog__close-button):focus:active {\n background-color: var(--webchat-colorNeutralBackground4);\n }\n\n :global(.webchat__modal-dialog__close-button):not(:focus-visible) {\n border: none;\n }\n\n :global(.webchat__modal-dialog__close-button):focus {\n border-color: var(--webchat-colorStrokeFocus2);\n }\n\n :global(.webchat__modal-dialog__close-button-image) {\n fill: currentColor;\n }\n}\n\n/* Code block */\n:global(.webchat-fluent).theme :global(.webchat__code-block) {\n border: none;\n font-family: var(--webchat-fontFamilyMonospace);\n font-size: var(--webchat-fontSizeBase300);\n\n --webchat__code-block__copy-button--color: var(--webchat-colorNeutralForeground1);\n --webchat__code-block__copy-button--background: var(--webchat-colorNeutralBackground3);\n\n :global(.webchat__code-block-copy-button) {\n background: transparent;\n border: none;\n color: var(--webchat__code-block__copy-button--color);\n height: 20px;\n margin-inline-start: var(--webchat-spacingHorizontalS);\n padding: 0;\n width: 20px;\n transition: background-color var(--webchat-durationNormal) var(--webchat-curveDecelerateMid);\n\n :global(.webchat__code-block-copy-button__icon) {\n background-color: currentColor;\n }\n\n &:hover {\n background: var(--webchat__code-block__copy-button--background);\n color: var(--webchat__code-block__copy-button--color);\n }\n\n &:active {\n background: var(--webchat__code-block__copy-button--background);\n color: var(--webchat__code-block__copy-button--color);\n }\n\n &:focus {\n color: var(--webchat__code-block__copy-button--color);\n outline-color: currentColor;\n }\n }\n\n &:global(:has(.webchat__code-block__body:focus-visible)):focus-within {\n outline: var(--webchat-strokeWidthThick) solid var(--webchat-colorStrokeFocus2);\n outline-offset: calc(var(--webchat-strokeWidthThick) * -1);\n\n :global(.webchat__code-block__body) {\n outline: none;\n }\n }\n\n &:global(:has(> .webchat__code-block__theme--github-dark-default)) {\n --webchat__background--code-block: var(--codeBlockBackground, var(--webchat-colorGrey8));\n --webchat__code-block__copy-button--background: var(\n --codeBlockCopyButtonBackgroundPressed,\n var(--webchat-colorGrey14)\n );\n --webchat__code-block__copy-button--color: var(--codeBlockCopyButtonForeground, var(--webchat__color--code-block));\n --webchat__color--code-block: var(--codeBlockForeground, var(--webchat-colorGrey98));\n }\n\n &:global(:has(> .webchat__code-block__theme--github-light-default)) {\n --webchat__background--code-block: var(--codeBlockBackground, var(--webchat-colorGrey98));\n --webchat__code-block__copy-button--background: var(--codeBlockBackgroundPressed, var(--webchat-colorGrey92));\n --webchat__code-block__copy-button--color: var(--codeBlockCopyButtonForeground, var(--webchat__color--code-block));\n --webchat__color--code-block: var(--codeBlockForeground, var(--webchat-colorGrey8));\n }\n}\n\n/* View Code dialog */\n:global(.webchat-fluent).theme :global(.webchat__modal-dialog.webchat__view-code-dialog) {\n :global(.webchat__modal-dialog__close-button-layout) {\n display: flex;\n padding: var(--webchat-spacingVerticalS) var(--webchat-spacingHorizontalS);\n }\n\n :global(.webchat__modal-dialog__close-button) {\n align-items: center;\n aspect-ratio: 1;\n display: flex;\n height: var(--webchat-lineHeightBase300);\n justify-content: center;\n padding: 0;\n width: unset;\n }\n\n :global(.webchat__code-block-copy-button) {\n --webchat__code-block__copy-button--color: var(--webchat-colorNeutralForeground1);\n --webchat__code-block__copy-button--background: var(--webchat-colorNeutralBackground3);\n\n margin-block-start: var(--webchat-spacingVerticalS);\n position: absolute;\n right: 32px;\n top: 0;\n }\n\n :global(.webchat__modal-dialog__box) {\n width: fit-content;\n }\n\n :global(.webchat__modal-dialog__body) {\n margin: 0;\n padding: var(--webchat-spacingVerticalS) var(--webchat-spacingHorizontalM);\n }\n\n :global(.webchat__view-code-dialog__title) {\n font-size: var(--webchat-fontSizeBase300);\n font-weight: var(--webchat-fontWeightSemibold);\n line-height: var(--webchat-lineHeightBase300);\n }\n\n :global(.webchat__view-code-dialog__body) {\n font-family: var(--webchat-fontFamilyMonospace);\n font-size: var(--webchat-fontSizeBase300);\n margin: 0 calc(var(--webchat-spacingHorizontalM) * -1);\n padding: 0 var(--webchat-spacingHorizontalM);\n }\n\n :global(.webchat__view-code-dialog__footer) {\n color: var(--webchat-colorNeutralForeground4);\n font-size: var(--webchat-fontSizeBase100);\n line-height: var(--webchat-lineHeightBase100);\n }\n\n :global(.webchat__view-code-dialog__link) {\n color: var(--webchat-colorBrandForegroundLink);\n text-decoration-color: transparent;\n\n &:target {\n color: var(--webchat-colorBrandForegroundLinkSelected);\n }\n &:hover {\n color: var(--webchat-colorBrandForegroundLinkHover);\n text-decoration: underline 1px currentColor;\n }\n &:active {\n color: var(--webchat-colorBrandForegroundLinkPressed);\n }\n &:focus-visible {\n outline: none;\n text-decoration: underline 1px double var(--webchat-colorStrokeFocus2);\n }\n }\n}\n\n/* Activity button */\n:global(.webchat-fluent).theme :global(.webchat__activity-button) {\n background: var(--webchat-colorNeutralBackground1);\n border-radius: var(--webchat-borderRadiusMedium);\n border: var(--webchat-strokeWidthThin) solid var(--webchat-colorNeutralStroke1);\n color: var(--webchat-colorNeutralForeground1);\n gap: var(--webchat-spacingHorizontalXS);\n padding: 5px var(--webchat-spacingHorizontalM);\n\n &:hover {\n background: var(--webchat-colorNeutralBackground1Hover);\n border: var(--webchat-strokeWidthThin) solid var(--webchat-colorNeutralStroke1Hover);\n color: var(--webchat-colorNeutralForeground1Hover);\n }\n\n &:active {\n background: var(--webchat-colorNeutralBackground1Pressed);\n border: var(--webchat-strokeWidthThin) solid var(--webchat-colorNeutralStroke1Pressed);\n color: var(--webchat-colorNeutralForeground1Pressed);\n }\n\n &:focus-visible {\n background: var(--webchat-colorNeutralBackground1);\n outline: var(--webchat-strokeWidthThick) solid var(--webchat-colorStrokeFocus2);\n outline-offset: calc(var(--webchat-strokeWidthThick) * -1);\n }\n\n &[aria-disabled='true'] {\n background: var(--webchat-colorNeutralBackgroundDisabled);\n border: var(--webchat-strokeWidthThin) solid var(--webchat-colorNeutralStrokeDisabled);\n color: var(--webchat-colorNeutralForegroundDisabled);\n }\n\n :global(.webchat__activity-button__icon) {\n height: 20px;\n width: 20px;\n }\n}\n\n/* Copy button */\n:global(.webchat-fluent).theme :global(.webchat__activity-copy-button) {\n :global(.webchat__activity-copy-button__copied-text) {\n background-color: var(--webchat-colorNeutralBackground1);\n }\n\n &:global(.webchat__activity-copy-button--copied) :global(.webchat__activity-copy-button__copied-text) {\n animation-duration: var(--webchat-durationUltraSlow);\n }\n}\n\n/* Monochrome image masker */\n:global(.webchat-fluent).theme :global(.webchat__monochrome-image-masker) {\n background-color: currentColor;\n height: 1em;\n width: 1em;\n}\n\n/* Feedback button */\n:global(.webchat-fluent).theme :global(.webchat__thumb-button) {\n color: var(--webchat-colorNeutralForeground1);\n\n &:focus-visible {\n outline: var(--webchat-strokeWidthThick) solid var(--webchat-colorStrokeFocus2);\n }\n\n &[aria-disabled='true'] {\n color: var(--webchat-colorNeutralForegroundDisabled);\n }\n}\n\n/* Tooltip */\n:global(.webchat-fluent).theme :global(.webchat__tooltip) {\n --webchat__tooltip-background: var(--tooltip-background, var(--webchat-colorNeutralBackground1));\n\n color: var(--webchat-colorNeutralForeground1);\n filter: drop-shadow(0 0 2px var(--webchat-colorNeutralShadowAmbient))\n drop-shadow(0 4px 8px var(--webchat-colorNeutralShadowKey));\n font-family: var(--webchat-fontFamilyBase);\n font-size: var(--webchat-fontSizeBase200);\n font-weight: var(--webchat-fontWeightRegular);\n line-height: var(--webchat-lineHeightBase200);\n padding: var(--webchat-spacingVerticalSNudge) var(--webchat-spacingHorizontalM);\n transition: opacity var(--webchat-durationNormal) var(--webchat-curveDecelerateMid);\n}\n\n/* Feedback Form */\n:global(.webchat-fluent).theme :global(.webchat__feedback-form) {\n gap: var(--webchat-spacingVerticalXS);\n\n :global(.webchat__feedback-form__body) {\n font-family: var(--webchat-fontFamilyBase);\n color: var(--webchat-colorNeutralForeground1);\n font-size: var(--webchat-fontSizeBase300);\n font-weight: var(--webchat-fontWeightRegular);\n line-height: var(--webchat-lineHeightBase300);\n }\n \n :global(.webchat__feedback-form__caption) {\n font-family: var(--webchat-fontFamilyBase);\n color: var(--webchat-colorNeutralForeground1);\n font-size: var(--webchat-fontSizeBase100);\n font-weight: var(--webchat-fontWeightRegular);\n line-height: var(--webchat-lineHeightBase200);\n }\n \n :global(.webchat__feedback-form__submit-button) {\n background-color: var(--webchat-colorBrandBackground);\n border: var(--webchat-strokeWidthThin) solid var(--webchat-colorBrandBackground);\n border-radius: var(--webchat-borderRadiusMedium);\n color: var(--webchat-colorNeutralForegroundOnBrand);\n cursor: pointer;\n font-family: var(--webchat-fontFamilyBase);\n font-size: var(--webchat-fontSizeBase300);\n padding: var(--webchat-spacingVerticalNone) var(--webchat-spacingHorizontalS);\n transition: background-color var(--webchat-durationNormal) var(--webchat-curveDecelerateMid);\n \n &:hover {\n background-color: var(--webchat-colorBrandBackgroundHover);\n border: var(--webchat-strokeWidthThin) solid var(--webchat-colorBrandBackgroundHover);\n }\n \n &:focus-visible {\n outline: var(--webchat-strokeWidthThick) solid var(--webchat-colorStrokeFocus2);\n outline-offset: calc(var(--webchat-strokeWidthThin) * -1);\n }\n \n &:active {\n background-color: var(--webchat-colorBrandBackgroundPressed);\n border: var(--webchat-strokeWidthThin) solid var(--webchat-colorBrandBackgroundPressed);\n }\n }\n \n :global(.webchat__feedback-form__cancel-button) {\n background-color: var(--webchat-colorNeutralBackground1);\n border: var(--webchat-strokeWidthThin) solid var(--webchat-colorNeutralStroke1);\n border-radius: var(--webchat-borderRadiusMedium);\n color: var(--webchat-colorNeutralForeground1);\n cursor: pointer;\n font-family: var(--webchat-fontFamilyBase);\n font-size: var(--webchat-fontSizeBase300);\n padding: var(--webchat-spacingVerticalNone) var(--webchat-spacingHorizontalS);\n transition: background-color var(--webchat-durationNormal) var(--webchat-curveDecelerateMid);\n \n &:hover {\n background-color: var(--webchat-colorNeutralBackground1Hover);\n border: var(--webchat-strokeWidthThin) solid var(--webchat-colorNeutralStroke1Hover);\n }\n \n &:focus-visible {\n outline: var(--webchat-strokeWidthThick) solid var(--webchat-colorStrokeFocus2);\n outline-offset: calc(var(--webchat-strokeWidthThin) * -1);\n }\n \n &:active {\n background-color: var(--webchat-colorNeutralBackground1Pressed);\n border: var(--webchat-strokeWidthThin) solid var(--webchat-colorNeutralStroke1Pressed);\n }\n }\n \n :global(.webchat__feedback-form-text-area) {\n background-color: var(--webchat-colorNeutralBackground1);\n border-radius: var(--webchat-borderRadiusMedium);\n border: var(--webchat-strokeWidthThin) solid var(--webchat-colorNeutralStroke1);\n font-family: var(--webchat-fontFamilyBase);\n font-size: var(--webchat-fontSizeBase300);\n line-height: var(--webchat-lineHeightBase300);\n gap: var(--webchat-spacingVerticalSNudge);\n padding: var(--webchat-spacingVerticalS) var(--webchat-spacingHorizontalM);\n &::after {\n border-bottom-left-radius: var(--webchat-borderRadiusMedium);\n border-bottom-right-radius: var(--webchat-borderRadiusMedium);\n border-bottom: var(--webchat-strokeWidthThicker) solid var(--webchat-colorBrandForeground1);\n clip-path: inset(calc(100% - var(--webchat-strokeWidthThicker)) 50% 0 50%);\n transition: clip-path var(--webchat-durationNormal) var(--webchat-curveDecelerateMid);\n }\n &:focus-within {\n border: var(--webchat-strokeWidthThin) solid var(--webchat-colorNeutralStroke1);\n }\n &:focus-within::after {\n clip-path: inset(calc(100% - var(--webchat-strokeWidthThicker)) 0 0 0);\n transition: clip-path var(--webchat-durationNormal) var(--webchat-curveDecelerateMid);\n }\n } \n}",":global(.webchat-fluent) .sliding-dots-typing-indicator {\n align-self: start;\n display: flex;\n flex: none;\n height: 16px;\n margin: auto var(--webchat-spacingHorizontalMNudge);\n}\n\n:global(.webchat-fluent) .sliding-dots-typing-indicator__image {\n height: 6px;\n width: auto;\n}\n"],"mappings":"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","names":["sendbox__attachment-drop-zone","sendbox__attachment-drop-zone--droppable","sendbox__attachment-drop-zone-icon","pre-chat-message-activity","pre-chat-message-activity__body","pre-chat-message-activity__body--blueprint","pre-chat-message-activity__body-avatar","pre-chat-message-activity__body-title","pre-chat-message-activity__body-subtitle","pre-chat-message-activity__toolbar","pre-chat-message-activity__card-action-box","pre-chat-message-activity__card-action-image","blueprintAnimation","pre-chat-message-activity__card-action-subtitle","pre-chat-message-activity__card-action-title","pre-chat-message-activity__card-action-toolbar","pre-chat-message-activity__card-action-toolbar-grid","activity-decorator","variant-fluent","variant-copilot","copilot-message-header","copilot-message-header__avatar","copilot-message-header__title","copilot-message-header__ai-generated-content","suggested-action","suggested-action__image","suggested-actions","suggested-actions--flow","suggested-actions--stacked","telephone-keypad__button","telephone-keypad__button__ruby","telephone-keypad__button__text","telephone-keypad--horizontal","telephone-keypad","telephone-keypad__box","telephone-keypad__info-message","telephone-keypad__info-message-link","sendbox__toolbar","sendbox__toolbar-button","sendbox__toolbar-button--selected","sendbox__toolbar-separator","sendbox__add-attachment","sendbox__add-attachment-input","sendbox__attachment","sendbox__error-message","sendbox","variant-copilot","sendbox__text-counter","sendbox__text-counter--error","sendbox__sendbox","sendbox__attachment--in-grid","sendbox__text-area--in-grid","sendbox__sendbox-controls--in-grid","sendbox__telephone-keypad--in-grid","sendbox__sendbox-text","sendbox__sendbox-controls","sendbox__text-area","sendbox__text-area--hidden","sendbox__text-area--in-completion","sendbox__text-area-doppelganger","sendbox__text-area-input","sendbox__text-area-shared","sendbox__text-area--scroll","activity-loader","variant-fluent","liner-message-activity","liner-message-activity__text","theme","variant-copilot","sliding-dots-typing-indicator","sliding-dots-typing-indicator__image"]}
1
+ {"version":3,"sources":["unplugin-lightningcss:/__w/1/s/BotFramework-WebChat/packages/fluent-theme/src/components/dropZone/DropZone.module_built.css","unplugin-lightningcss:/__w/1/s/BotFramework-WebChat/packages/fluent-theme/src/components/preChatActivity/PreChatMessageActivity.module_built.css","unplugin-lightningcss:/__w/1/s/BotFramework-WebChat/packages/fluent-theme/src/components/preChatActivity/StarterPromptsCardAction.module_built.css","unplugin-lightningcss:/__w/1/s/BotFramework-WebChat/packages/fluent-theme/src/components/preChatActivity/StarterPromptsToolbar.module_built.css","unplugin-lightningcss:/__w/1/s/BotFramework-WebChat/packages/fluent-theme/src/components/activity/ActivityDecorator.module_built.css","unplugin-lightningcss:/__w/1/s/BotFramework-WebChat/packages/fluent-theme/src/components/activity/CopilotMessageHeader.module_built.css","unplugin-lightningcss:/__w/1/s/BotFramework-WebChat/packages/fluent-theme/src/components/suggestedActions/SuggestedAction.module_built.css","unplugin-lightningcss:/__w/1/s/BotFramework-WebChat/packages/fluent-theme/src/components/suggestedActions/SuggestedActions.module_built.css","unplugin-lightningcss:/__w/1/s/BotFramework-WebChat/packages/fluent-theme/src/components/telephoneKeypad/private/Button.module_built.css","unplugin-lightningcss:/__w/1/s/BotFramework-WebChat/packages/fluent-theme/src/components/telephoneKeypad/private/TelephoneKeypad.module_built.css","unplugin-lightningcss:/__w/1/s/BotFramework-WebChat/packages/fluent-theme/src/components/sendBox/Toolbar.module_built.css","unplugin-lightningcss:/__w/1/s/BotFramework-WebChat/packages/fluent-theme/src/components/sendBox/AddAttachmentButton.module_built.css","unplugin-lightningcss:/__w/1/s/BotFramework-WebChat/packages/fluent-theme/src/components/sendBox/Attachments.module_built.css","unplugin-lightningcss:/__w/1/s/BotFramework-WebChat/packages/fluent-theme/src/components/sendBox/ErrorMessage.module_built.css","unplugin-lightningcss:/__w/1/s/BotFramework-WebChat/packages/fluent-theme/src/components/sendBox/SendBox.module_built.css","unplugin-lightningcss:/__w/1/s/BotFramework-WebChat/packages/fluent-theme/src/components/sendBox/TextArea.module_built.css","unplugin-lightningcss:/__w/1/s/BotFramework-WebChat/packages/fluent-theme/src/components/activity/ActivityLoader.module_built.css","unplugin-lightningcss:/__w/1/s/BotFramework-WebChat/packages/fluent-theme/src/components/linerActivity/private/LinerMessageActivity.module_built.css","unplugin-lightningcss:/__w/1/s/BotFramework-WebChat/packages/fluent-theme/src/components/theme/Theme.module_built.css","unplugin-lightningcss:/__w/1/s/BotFramework-WebChat/packages/fluent-theme/src/components/typingIndicator/SlidingDotsTypingIndicator.module_built.css"],"sourcesContent":[".webchat-fluent .wbibrda_sendbox__attachment-drop-zone {\n background-color: var(--webchat-colorNeutralBackground4);\n border-radius: inherit;\n cursor: copy;\n transition: all var(--webchat-durationNormal) var(--webchat-curveDecelerateMid);\n place-content: center;\n place-items: center;\n gap: 8px;\n display: grid;\n position: absolute;\n inset: 0;\n}\n\n.webchat-fluent .wbibrda_sendbox__attachment-drop-zone--droppable {\n background-color: var(--webchat-colorBrandBackground2Hover);\n}\n\n.webchat-fluent .wbibrda_sendbox__attachment-drop-zone-icon {\n pointer-events: none;\n font-size: 36px;\n}\n",".webchat-fluent .wdPvBTa_pre-chat-message-activity {\n box-sizing: border-box;\n gap: var(--webchat-spacingHorizontalXXXL);\n padding: var(--webchat-spacingHorizontalXXXL) var(--webchat-spacingHorizontalM);\n grid-template-rows: auto auto;\n grid-template-areas: \"body\"\n \"toolbar\";\n display: grid;\n position: relative;\n}\n\n.webchat-fluent .wdPvBTa_pre-chat-message-activity__body {\n font-family: var(--webchat-fontFamilyBase);\n font-size: var(--webchat-fontSizeBase300);\n font-weight: var(--webchat-fontWeightRegular);\n align-items: center;\n gap: var(--webchat-spacingVerticalXS);\n line-height: var(--webchat-lineHeightBase300);\n text-align: center;\n flex-flow: column;\n grid-area: body;\n display: flex;\n}\n\n.webchat-fluent .wdPvBTa_pre-chat-message-activity__body--blueprint {\n opacity: .6;\n\n & .wdPvBTa_pre-chat-message-activity__body-avatar {\n filter: grayscale();\n }\n}\n\n.webchat-fluent .wdPvBTa_pre-chat-message-activity__body-avatar {\n border-radius: var(--webchat-borderRadiusMedium);\n height: 64px;\n margin-block-end: var(--webchat-spacingVerticalM);\n}\n\n.webchat-fluent .wdPvBTa_pre-chat-message-activity__body-title {\n color: var(--webchat-colorNeutralForeground1);\n font-family: inherit;\n font-size: var(--webchat-fontSizeHero700);\n font-weight: var(--webchat-fontWeightSemibold);\n line-height: var(--webchat-lineHeightHero700);\n overflow-wrap: anywhere;\n margin: 0;\n}\n\n.webchat-fluent .wdPvBTa_pre-chat-message-activity__body-subtitle {\n font-size: var(--webchat-fontSizeBase300);\n line-height: var(--webchat-lineHeightBase300);\n overflow-wrap: anywhere;\n}\n\n.webchat-fluent .wdPvBTa_pre-chat-message-activity__toolbar {\n grid-area: toolbar;\n}\n",".webchat-fluent .woY4Pxq_pre-chat-message-activity__card-action-box {\n appearance: none;\n background-color: var(--webchat-colorNeutralBackground1);\n box-shadow: var(--webchat-shadow2);\n color: var(--webchat-colorNeutralForeground1);\n cursor: pointer;\n gap: var(--webchat-spacingVerticalS);\n text-align: left;\n transition: background-color var(--webchat-durationNormal) var(--webchat-curveDecelerateMid);\n user-select: none;\n border: 0;\n border-radius: 16px;\n grid-template: \"title\"\n \"subtitle\" 1fr\n / 1fr;\n padding: 16px 20px;\n display: grid;\n overflow: hidden;\n\n &:has(.woY4Pxq_pre-chat-message-activity__card-action-image) {\n grid-template-columns: 20px 1fr;\n grid-template-areas: \"image title\"\n \"image subtitle\";\n }\n\n &:empty {\n row-gap: 14px;\n }\n\n &[aria-disabled=\"true\"], &:empty {\n cursor: default;\n }\n\n &[aria-disabled=\"true\"]:not(:empty) {\n background-color: var(--webchat-colorNeutralBackgroundDisabled);\n }\n\n &:hover:not([aria-disabled=\"true\"], :empty) {\n background-color: var(--webchat-colorNeutralBackground1Hover);\n }\n\n &:active:not([aria-disabled=\"true\"], :empty) {\n background-color: var(--webchat-colorNeutralBackground1Pressed);\n }\n\n &:focus-visible {\n outline: solid 2px var(--webchat-colorStrokeFocus2);\n outline-offset: -2px;\n }\n\n &:empty:after, &:empty:before {\n background-attachment: fixed;\n background-image: linear-gradient(-90deg, var(--webchat-colorNeutralStencil1) 0%, var(--webchat-colorNeutralStencil2) 50%, var(--webchat-colorNeutralStencil1) 100%);\n content: \"\";\n background-size: 300% 100%;\n animation: 3s linear infinite blueprintAnimation;\n display: block;\n }\n\n @media (prefers-reduced-motion: reduce) {\n &:empty:after, &:empty:before {\n animation-play-state: paused;\n animation-delay: -1s;\n }\n }\n\n &:dir(rtl) {\n &:empty:after, &:empty:before {\n animation-direction: reverse;\n }\n }\n\n &:empty:after {\n border-radius: 16px;\n width: 100%;\n height: 16px;\n }\n\n &:empty:before {\n border-radius: 18px;\n width: 66%;\n height: 18px;\n }\n}\n\n@keyframes blueprintAnimation {\n from {\n background-position-x: 0%;\n }\n\n to {\n background-position-x: -300%;\n }\n}\n\n.webchat-fluent .woY4Pxq_pre-chat-message-activity__card-action-image {\n color: var(--webchat-colorNeutralForeground4);\n grid-area: image;\n font-size: 20px;\n}\n\n.webchat-fluent .woY4Pxq_pre-chat-message-activity__card-action-subtitle {\n font-family: var(--webchat-fontFamilyBase);\n font-size: 14px;\n font-weight: var(--webchat-fontWeightRegular);\n pointer-events: none;\n grid-area: subtitle;\n line-height: 20px;\n}\n\n.webchat-fluent .woY4Pxq_pre-chat-message-activity__card-action-title {\n font-family: var(--webchat-fontFamilyBase);\n font-size: 14px;\n font-weight: var(--webchat-fontWeightSemibold);\n grid-area: title;\n line-height: 20px;\n}\n",".webchat-fluent .wvd8n9G_pre-chat-message-activity__card-action-toolbar {\n container: webchat-container / inline-size;\n}\n\n.webchat-fluent .wvd8n9G_pre-chat-message-activity__card-action-toolbar-grid {\n gap: var(--webchat-spacingHorizontalM);\n grid-template-columns: 1fr 1fr 1fr;\n padding: 0;\n display: grid;\n}\n\n@container webchat-container (width <= 480px) {\n .webchat-fluent .wvd8n9G_pre-chat-message-activity__card-action-toolbar-grid {\n grid-template-columns: 1fr;\n }\n}\n",".webchat-fluent .wLpvzAq_activity-decorator {\n font-family: var(--webchat__font--primary);\n --webchat__bubble--inline-padding: var(--webchat-spacingHorizontalL);\n --webchat__bubble--block-padding: var(--webchat-spacingVerticalM);\n --webchat__bubble--min-height: var(--webchat-bubble-minHeight);\n --webchat__bubble--max-width: var(--webchat-bubble-maxWidth);\n --webchat__bubble--min-width: var(--webchat-bubble-minWidth);\n --webchat-bubble-maxWidth: var(--bubble-maxWidth, max(450px, 75%));\n --webchat-bubble-minWidth: var(--bubble-minWidth, auto);\n --webchat-bubble-minHeight: var(--bubble-minHeight, 36px);\n --webchat-externalLink-mask: var(--externalLink-mask, var(--webchat__icon-url--external-link) center center / 10px 10px);\n --webchat-externalLink-maxWidth: var(--externalLink-maxWidth, 204px);\n display: contents;\n\n &:has(.webchat__stacked-layout .webchat__bubble--from-user) {\n --webchat__bubble--background-color: var(--webchat-colorBrandBackground2);\n --webchat__bubble--block-padding: var(--webchat-spacingVerticalS);\n --webchat__bubble--min-width: auto;\n }\n}\n\n.webchat-fluent .wLpvzAq_activity-decorator.wLpvzAq_variant-fluent {\n --webchat__bubble--background-color: var(--webchat-colorNeutralBackground1);\n --webchat__bubble--border-radius: var(--webchat-borderRadiusXLarge);\n --webchat__bubble--box-shadow: var(--webchat-shadow4);\n}\n\n.webchat-fluent .wLpvzAq_activity-decorator.wLpvzAq_variant-copilot {\n --webchat__bubble--border-radius: var(--webchat-borderRadiusXLarge);\n\n & .webchat__activity-status {\n margin: 0 0 var(--webchat-spacingHorizontalXXS);\n }\n\n & .webchat__stacked-layout__status {\n order: -1;\n }\n\n &:has(.webchat__bubble--from-user) .webchat__bubble {\n margin-block-end: var(--webchat-spacingVerticalM);\n }\n\n & .webchat__bubble .webchat__text-content .webchat__text-content__generated-badge {\n display: none;\n }\n}\n\n.webchat-fluent .wLpvzAq_activity-decorator.wLpvzAq_variant-copilot:not(:has(.webchat__bubble--from-user)) {\n --webchat__bubble--block-padding: 0;\n --webchat__bubble--border-radius: var(--webchat-borderRadiusMedium);\n --webchat__bubble--inline-padding: 0;\n --webchat__bubble--max-width: 100%;\n --webchat__bubble--min-height: 20px;\n gap: var(--webchat-spacingVerticalS);\n margin-inline: var(--webchat-spacingHorizontalM);\n padding: var(--webchat-spacingVerticalMNudge) var(--webchat-spacingHorizontalM) var(--webchat-spacingVerticalM);\n flex-flow: column;\n display: flex;\n position: relative;\n\n & .webchat__stacked-layout {\n margin: 0;\n position: static;\n }\n\n & .webchat__bubble {\n width: var(--webchat__bubble--max-width);\n position: static;\n }\n\n & .webchat__bubble .webchat__bubble__content {\n overflow: visible;\n }\n\n & .webchat__text-content {\n margin-inline-start: 28px;\n }\n\n & .border-loader {\n gap: var(--webchat-spacingVerticalS);\n flex-flow: column;\n width: 500px;\n padding-inline-end: var(--webchat-spacingHorizontalM);\n display: flex;\n }\n\n & .border-loader__track {\n border-radius: inherit;\n box-sizing: border-box;\n clip-path: border-box;\n order: -1;\n width: auto;\n margin-inline-start: 28px;\n }\n\n & .webchat__stacked-layout__status {\n display: none;\n }\n}\n\n.webchat-fluent .wLpvzAq_activity-decorator .webchat__basic-transcript__activity-body:not(:empty) {\n padding-block-end: var(--webchat-spacingVerticalXL);\n}\n\n.webchat-fluent .wLpvzAq_activity-decorator .webchat__stacked-layout {\n flex-flow: column;\n display: flex;\n}\n\n.webchat-fluent .wLpvzAq_activity-decorator .webchat__stacked-layout .webchat__stacked-layout__content:has(.webchat__bubble) {\n max-width: 100%;\n overflow: visible;\n}\n\n.webchat-fluent .wLpvzAq_activity-decorator .webchat__stacked-layout .webchat__stacked-layout__status {\n font-size: var(--webchat__font-size--small);\n line-height: var(--webchat__line-height--small);\n}\n\n.webchat-fluent .wLpvzAq_activity-decorator .webchat__stacked-layout .webchat__bubble {\n max-width: min(var(--webchat__bubble--max-width), 100%);\n min-width: var(--webchat__bubble--min-width);\n overflow: visible;\n\n &:has(.border-loader) {\n width: 100%;\n }\n\n &:has(.activity-loader) .webchat__bubble__content {\n box-shadow: none;\n background: none;\n }\n}\n\n.webchat-fluent .wLpvzAq_activity-decorator .webchat__stacked-layout .webchat__bubble .webchat__bubble__content {\n background-color: var(--webchat__bubble--background-color);\n border-radius: var(--webchat__bubble--border-radius);\n box-shadow: var(--webchat__bubble--box-shadow);\n box-sizing: border-box;\n color: var(--webchat-colorNeutralForeground1);\n max-width: 100%;\n min-height: var(--webchat__bubble--min-height);\n border-width: 0;\n}\n\n.webchat-fluent .wLpvzAq_activity-decorator .webchat__stacked-layout .webchat__bubble .webchat__text-content {\n font-size: var(--webchat__font-size--medium);\n line-height: var(--webchat__line-height--medium);\n min-height: auto;\n padding-block: var(--webchat__bubble--block-padding);\n padding-inline: var(--webchat__bubble--inline-padding);\n\n &:empty {\n padding-block-end: 0;\n }\n\n & + .webchat__text-content {\n margin-top: calc(var(--webchat__bubble--block-padding) * -1);\n }\n}\n\n.webchat-fluent .wLpvzAq_activity-decorator .webchat__stacked-layout .webchat__bubble .webchat__text-content__generated-badge {\n background-color: var(--webchat-colorNeutralBackground5);\n border-radius: var(--webchat-borderRadiusMedium);\n box-sizing: border-box;\n color: var(--webchat-colorNeutralForeground3);\n cursor: default;\n font-size: var(--webchat-fontSizeBase100);\n height: 16px;\n line-height: var(--webchat-lineHeightBase100);\n padding-inline: var(--webchat-spacingHorizontalXS);\n align-self: flex-start;\n align-items: center;\n display: inline-flex;\n}\n\n.webchat-fluent .wLpvzAq_activity-decorator .webchat__stacked-layout .webchat__bubble .webchat__fileContent__badge {\n cursor: default;\n font-size: var(--webchat-fontSizeBase300);\n line-height: var(--webchat-lineHeightBase300);\n\n & .webchat__fileContent__fileName {\n color: var(--webchat-colorBrandForegroundLink);\n font-family: inherit;\n }\n\n & .webchat__fileContent__size {\n color: var(--webchat-colorNeutralForeground2);\n font-family: inherit;\n }\n}\n\n.webchat-fluent .wLpvzAq_activity-decorator .webchat__render-markdown a[href]:not(.webchat__render-markdown__pure-identifier) {\n color: var(--webchat-colorBrandForegroundLink);\n text-decoration-color: #0000;\n\n &:target {\n color: var(--webchat-colorBrandForegroundLinkSelected);\n }\n\n &:hover {\n color: var(--webchat-colorBrandForegroundLinkHover);\n text-decoration: underline 1px;\n }\n\n &:active {\n color: var(--webchat-colorBrandForegroundLinkPressed);\n }\n\n &:focus-visible {\n text-decoration: underline 1px double var(--webchat-colorStrokeFocus2);\n outline: none;\n }\n\n & .webchat__render-markdown__external-link-icon {\n -webkit-mask: var(--webchat__icon-url--external-link) no-repeat;\n mask: var(--webchat__icon-url--external-link) no-repeat;\n background: currentColor;\n }\n}\n\n.webchat-fluent .wLpvzAq_activity-decorator .webchat__render-markdown .webchat__render-markdown__citation, .webchat-fluent .wLpvzAq_activity-decorator .webchat__render-markdown .webchat__render-markdown__pure-identifier {\n background-color: var(--webchat-colorNeutralBackground3);\n border-radius: var(--webchat-borderRadiusMedium);\n border: var(--webchat-strokeWidthThin) solid var(--webchat-colorNeutralStroke2);\n box-sizing: border-box;\n color: var(--webchat-colorNeutralForeground2);\n font-size: var(--webchat-fontSizeBase100);\n font-weight: var(--webchat-fontWeightSemibold);\n height: 14px;\n line-height: var(--webchat-lineHeightBase100);\n margin-left: var(--webchat-spacingHorizontalXXS);\n margin-right: var(--webchat-spacingHorizontalXXS);\n min-width: 14px;\n transition: all var(--webchat-durationNormal) var(--webchat-curveDecelerateMid);\n vertical-align: calc((var(--webchat-lineHeightBase100) - var(--webchat-fontSizeBase100)) / 2);\n justify-content: center;\n align-items: center;\n text-decoration: none;\n display: inline-flex;\n\n &:hover {\n background-color: var(--webchat-colorBrandBackground2Hover);\n border-color: var(--webchat-colorBrandStroke2Hover);\n color: var(--webchat-colorBrandForeground2Hover);\n cursor: pointer;\n }\n\n &:hover:active {\n background-color: var(--webchat-colorBrandBackground2Pressed);\n border-color: var(--webchat-colorBrandStroke2Pressed);\n color: var(--webchat-colorBrandForeground2Pressed);\n }\n\n &:before, &:after {\n all: unset;\n }\n\n &:has(.webchat__render-markdown__external-link-icon) {\n padding-inline: 3px;\n }\n\n & .webchat__render-markdown__external-link-icon {\n height: .7em;\n -webkit-mask: var(--webchat__icon-url--external-link) no-repeat;\n mask: var(--webchat__icon-url--external-link) no-repeat;\n background: currentColor;\n }\n}\n\n.webchat-fluent .wLpvzAq_activity-decorator .webchat__link-definitions__header {\n border-radius: var(--webchat-borderRadiusMedium);\n\n & .webchat__link-definitions__header-text {\n color: var(--webchat-colorNeutralForeground3);\n }\n\n & .webchat__link-definitions__header-chevron {\n fill: var(--webchat-colorNeutralForeground3);\n font-size: var(--webchat__font-size--small);\n width: 1em;\n }\n\n &:focus-visible {\n outline-offset: 1px;\n outline: var(--webchat-strokeWidthThin) solid var(--webchat-colorStrokeFocus2);\n }\n}\n\n.webchat-fluent .wLpvzAq_activity-decorator .webchat__link-definitions {\n --webchat__citation__external-link--mask: var(--webchat-externalLink-mask);\n --webchat__citation__link--max-width: var(--webchat-externalLink-maxWidth);\n\n & .webchat__link-definitions__list {\n color: var(--webchat__color--subtle);\n gap: var(--webchat-spacingHorizontalS);\n flex-flow: wrap;\n display: flex;\n }\n\n & .webchat__link-definitions__list-item {\n border-radius: var(--webchat-borderRadiusMedium);\n max-width: var(--webchat__citation__link--max-width);\n }\n\n & .webchat__link-definitions__list-item-box {\n background-color: var(--webchat-colorNeutralBackground3);\n border-radius: var(--webchat-borderRadiusMedium);\n border: var(--webchat-strokeWidthThin) solid var(--webchat-colorNeutralStroke2);\n box-sizing: border-box;\n color: currentColor;\n font-size: var(--webchat__font-size--small);\n height: 24px;\n padding-inline-end: var(--webchat-spacingHorizontalS);\n display: inline-flex;\n }\n\n & .webchat__link-definitions__list-item-body {\n gap: var(--webchat-spacingHorizontalSNudge);\n min-width: 0;\n padding: 0;\n font-family: inherit;\n }\n\n & .webchat__link-definitions__badge {\n color: currentColor;\n font-size: var(--webchat-fontSizeBase100);\n font-weight: var(--webchat-fontWeightSemibold);\n line-height: var(--webchat-lineHeightBase100);\n text-align: center;\n background-color: #0000;\n border: none;\n border-radius: 0;\n align-self: center;\n min-width: 20px;\n margin: 0;\n padding: 0;\n position: relative;\n }\n\n & .webchat__link-definitions__badge:after {\n border-right: var(--webchat-strokeWidthThin) solid var(--webchat-colorNeutralStroke2);\n content: \"\";\n width: 0;\n height: 16px;\n display: block;\n position: absolute;\n top: 0;\n bottom: 0;\n right: 0;\n }\n\n & .webchat__link-definitions__list-item-main-text {\n gap: var(--webchat-spacingHorizontalXS);\n }\n\n & .webchat__link-definitions__list-item-text {\n color: currentColor;\n text-overflow: ellipsis;\n text-decoration: none;\n }\n\n & .webchat__link-definitions__list-item-main-text:has(.webchat__link-definitions__open-in-new-window-icon):before {\n color: currentColor;\n content: \"\";\n font-size: var(--webchat-fontSizeBase400);\n height: 1em;\n -webkit-mask: var(--webchat__citation__external-link--mask) no-repeat;\n mask: var(--webchat__citation__external-link--mask) no-repeat;\n background: currentColor;\n flex: none;\n align-self: center;\n width: 1em;\n padding: 0;\n }\n\n & .webchat__link-definitions__list-item-badge {\n display: none;\n }\n\n & .webchat__link-definitions__open-in-new-window-icon {\n display: none;\n }\n}\n",".webchat-fluent .wyJATiG_copilot-message-header {\n box-sizing: border-box;\n cursor: default;\n align-items: center;\n gap: var(--webchat-spacingHorizontalS);\n max-width: var(--webchat__bubble--max-width);\n flex-wrap: nowrap;\n display: flex;\n}\n\n.webchat-fluent .wyJATiG_copilot-message-header__avatar {\n aspect-ratio: 1;\n background-color: var(--background-color);\n border-radius: var(--webchat-borderRadiusSmall);\n width: 20px;\n}\n\n.webchat-fluent .wyJATiG_copilot-message-header__title {\n font-size: var(--webchat-fontSizeBase300);\n font-weight: var(--webchat-fontWeightSemibold);\n line-height: var(--webchat-lineHeightBase300);\n text-overflow: ellipsis;\n text-wrap: nowrap;\n overflow: hidden;\n}\n\n.webchat-fluent .wyJATiG_copilot-message-header__ai-generated-content {\n background-color: var(--webchat-colorNeutralBackground5);\n border-radius: var(--webchat-borderRadiusMedium);\n color: var(--webchat-colorNeutralForeground3);\n font-size: var(--webchat-fontSizeBase100);\n height: 20px;\n line-height: var(--webchat-lineHeightBase100);\n padding-inline: var(--webchat-spacingHorizontalXS);\n flex: none;\n align-items: center;\n display: flex;\n}\n",".webchat-fluent .wenGMeW_suggested-action {\n border-radius: var(--webchat-borderRadiusXLarge);\n border: var(--webchat-strokeWidthThin) solid var(--webchat-colorBrandStroke2);\n color: currentColor;\n cursor: pointer;\n font-family: var(--webchat__font--primary);\n font-size: var(--webchat-fontSizeBase200);\n align-items: center;\n gap: var(--webchat-spacingHorizontalXS);\n padding: var(--webchat-spacingVerticalXS) var(--webchat-spacingHorizontalS);\n text-align: start;\n transition: all var(--webchat-durationNormal) var(--webchat-curveDecelerateMid);\n background: none;\n display: flex;\n\n @media (hover: hover) {\n &:not([aria-disabled=\"true\"]):hover {\n background-color: var(--webchat-colorBrandBackground2Hover);\n color: var(--webchat-colorBrandForeground2Hover);\n }\n }\n\n &:not([aria-disabled=\"true\"]):active {\n background-color: var(--webchat-colorBrandBackground2Pressed);\n color: var(--webchat-colorBrandForeground2Pressed);\n }\n\n &[aria-disabled=\"true\"] {\n color: var(--webchat-colorNeutralForegroundDisabled);\n cursor: not-allowed;\n }\n}\n\n.webchat-fluent .wenGMeW_suggested-action__image {\n font-size: var(--webchat-fontSizeBase200);\n width: 1em;\n height: 1em;\n}\n",".webchat-fluent .wy3OzFW_suggested-actions {\n flex-direction: column;\n align-self: flex-end;\n align-items: flex-end;\n gap: 8px;\n display: flex;\n\n &:not(:empty) {\n padding-block-end: 8px;\n padding-inline-start: 4px;\n }\n\n &.wy3OzFW_suggested-actions--flow {\n flex-flow: wrap;\n justify-content: flex-end;\n }\n\n &.wy3OzFW_suggested-actions--stacked {\n flex-direction: column;\n }\n}\n",".webchat-fluent .wwTs9lq_telephone-keypad__button {\n -webkit-user-select: none;\n user-select: none;\n appearance: none;\n border: solid 1px var(--webchat-colorNeutralStroke1);\n color: var(--webchat-colorGray200);\n font-weight: var(--webchat-fontWeightSemibold);\n cursor: pointer;\n opacity: .7;\n touch-action: none;\n background-color: #fff;\n border-radius: 100%;\n flex-direction: column;\n align-items: center;\n width: 60px;\n height: 60px;\n padding: 0;\n display: flex;\n position: relative;\n\n &:hover {\n background-color: var(--webchat-colorGray30);\n }\n}\n\n.webchat-fluent .wwTs9lq_telephone-keypad__button__ruby {\n color: var(--webchat-colorGray190);\n font-size: 10px;\n}\n\n.webchat-fluent .wwTs9lq_telephone-keypad__button__text {\n margin-top: 8px;\n font-size: 24px;\n}\n\n.webchat-fluent .wwTs9lq_telephone-keypad--horizontal {\n & .wwTs9lq_telephone-keypad__button {\n justify-content: center;\n width: 32px;\n height: 32px;\n margin: 8px 4px;\n }\n\n & .wwTs9lq_telephone-keypad__button__ruby {\n display: none;\n }\n\n & .wwTs9lq_telephone-keypad__button__text {\n margin-top: 0;\n font-size: 20px;\n }\n}\n",".webchat-fluent .wEgqGmW_telephone-keypad {\n background: var(--webchat-colorNeutralBackground1);\n border-radius: var(--webchat-borderRadiusXLarge);\n font-family: var(--webchat-fontFamilyBase);\n border: none;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n display: flex;\n}\n\n.webchat-fluent .wEgqGmW_telephone-keypad__box {\n box-sizing: border-box;\n grid-template-rows: repeat(4, 1fr);\n grid-template-columns: repeat(3, 1fr);\n justify-items: center;\n gap: 16px;\n width: 100%;\n padding: 16px;\n display: grid;\n}\n\n.webchat-fluent .wEgqGmW_telephone-keypad__info-message {\n color: var(--webchat-colorNeutralForeground4);\n align-items: center;\n gap: 6px;\n margin-block-end: 6px;\n font-size: 12px;\n display: flex;\n}\n\n.webchat-fluent .wEgqGmW_telephone-keypad__info-message-link {\n color: var(--webchat-colorBrandForegroundLink);\n text-decoration-color: #0000;\n\n &:target {\n color: var(--webchat-colorBrandForegroundLinkSelected);\n }\n\n &:hover {\n color: var(--webchat-colorBrandForegroundLinkHover);\n text-decoration: underline 1px;\n }\n\n &:active {\n color: var(--webchat-colorBrandForegroundLinkPressed);\n }\n\n &:focus-visible {\n text-decoration: underline 1px double var(--webchat-colorStrokeFocus2);\n outline: none;\n }\n}\n",".webchat-fluent .weDCCeq_sendbox__toolbar {\n --webchat__sendbox-button-height: 32px;\n height: var(--webchat__sendbox-button-height);\n gap: 4px;\n margin-inline-start: auto;\n display: flex;\n}\n\n.webchat-fluent .weDCCeq_sendbox__toolbar-button {\n appearance: none;\n aspect-ratio: 1;\n border-radius: var(--webchat-borderRadiusSmall);\n color: currentColor;\n cursor: pointer;\n height: var(--webchat__sendbox-button-height);\n background: none;\n border: none;\n justify-content: center;\n align-items: center;\n padding: 3px;\n display: flex;\n\n & > .webchat__monochrome-image-masker {\n pointer-events: none;\n font-size: 20px;\n }\n\n &.weDCCeq_sendbox__toolbar-button--selected {\n color: var(--webchat-colorNeutralForeground2BrandSelected);\n }\n\n @media (hover: hover) {\n &:not([aria-disabled=\"true\"]):hover {\n color: var(--webchat-colorNeutralForeground2BrandHover);\n }\n }\n\n &:not([aria-disabled=\"true\"]):active {\n color: var(--webchat-colorNeutralForeground2BrandPressed);\n }\n\n &[aria-disabled=\"true\"] {\n color: var(--webchat-colorNeutralForegroundDisabled);\n cursor: not-allowed;\n }\n}\n\n.webchat-fluent .weDCCeq_sendbox__toolbar-separator {\n border-inline-end: 1px solid var(--webchat-colorNeutralStroke2);\n align-self: center;\n height: 28px;\n\n &:first-child, &:last-child, &:only-child {\n display: none;\n }\n}\n",".webchat-fluent .wTxWh-G_sendbox__add-attachment {\n display: grid;\n}\n\n.webchat-fluent .wTxWh-G_sendbox__add-attachment-input {\n opacity: 0;\n width: 1px;\n height: 0;\n font-size: 0;\n}\n",".webchat-fluent .wPugToa_sendbox__attachment {\n border-radius: var(--webchat-borderRadiusLarge);\n border: 1px solid var(--webchat-colorNeutralStroke1);\n cursor: default;\n width: fit-content;\n padding: 6px 8px;\n}\n",".webchat-fluent .wa8yVAW_sendbox__error-message {\n color: #0000;\n width: 0;\n height: 0;\n font-size: 0;\n position: absolute;\n top: 0;\n left: 0;\n}\n",".webchat-fluent .wHTirJa_sendbox {\n --webchat__sendbox--padding: var(--webchat__padding--sendbox);\n color: var(--webchat-colorNeutralForeground1);\n font-family: var(--webchat-fontFamilyBase);\n padding: var(--webchat__sendbox--padding);\n text-rendering: optimizeLegibility;\n --webchat-sendbox-attachment-area-active: ;\n --webchat-sendbox-border-radius: var(--webchat-borderRadiusLarge);\n}\n\n.webchat-fluent .wHTirJa_sendbox.wHTirJa_variant-copilot {\n & .wHTirJa_sendbox__text-counter:not(.wHTirJa_sendbox__text-counter--error) {\n visibility: hidden;\n }\n}\n\n.webchat-fluent .wHTirJa_sendbox__sendbox {\n background-color: var(--webchat-colorNeutralBackground1);\n border-radius: var(--webchat-sendbox-border-radius);\n border: 1px solid var(--webchat-colorNeutralStroke1);\n font-family: var(--webchat-fontFamilyBase);\n grid-template: [telephone-keypad-start] \"text-area\" [telephone-keypad-end] var(--webchat-sendbox-attachment-area-active) \"controls\" / [telephone-keypad] 1fr;\n gap: 6px;\n padding: 8px;\n font-size: 14px;\n line-height: 20px;\n display: grid;\n position: relative;\n\n &:has(.wHTirJa_sendbox__attachment--in-grid) {\n --webchat-sendbox-attachment-area-active: \"attachment\";\n }\n\n &:focus-within {\n border-color: var(--webchat-colorNeutralStroke1Selected);\n }\n\n &:after {\n border-bottom-left-radius: var(--webchat-sendbox-border-radius);\n border-bottom-right-radius: var(--webchat-sendbox-border-radius);\n border-bottom: var(--webchat-strokeWidthThicker) solid var(--webchat-colorCompoundBrandForeground1Hover);\n clip-path: inset(calc(100% - var(--webchat-strokeWidthThicker)) 50% 0 50%);\n content: \"\";\n height: var(--webchat-sendbox-border-radius);\n transition: clip-path var(--webchat-durationUltraFast) var(--webchat-curveAccelerateMid);\n position: absolute;\n bottom: -1px;\n left: -1px;\n right: -1px;\n }\n\n &:focus-within:after {\n clip-path: inset(calc(100% - var(--webchat-strokeWidthThicker)) 0 0 0);\n transition: clip-path var(--webchat-durationNormal) var(--webchat-curveDecelerateMid);\n }\n\n & > .wHTirJa_sendbox__text-area--in-grid {\n grid-area: text-area;\n }\n\n & > .wHTirJa_sendbox__attachment--in-grid {\n grid-area: attachment;\n }\n\n & > .wHTirJa_sendbox__sendbox-controls--in-grid {\n grid-area: controls;\n }\n\n & > .wHTirJa_sendbox__telephone-keypad--in-grid {\n grid-area: telephone-keypad;\n }\n}\n\n.webchat-fluent .wHTirJa_sendbox__sendbox-text {\n font-family: var(--webchat-fontFamilyBase);\n margin: var(--webchat-spacingVerticalXS) var(--webchat-spacingHorizontalXS) var(--webchat-spacingVerticalNone);\n resize: none;\n background-color: #0000;\n border: none;\n outline: none;\n flex: auto;\n font-size: 14px;\n line-height: 20px;\n\n @media only screen and (hover: none) and (pointer: coarse) {\n &:focus-within {\n font-size: 16px;\n }\n }\n}\n\n.webchat-fluent .wHTirJa_sendbox__sendbox-controls {\n align-items: center;\n padding-inline-start: 4px;\n display: flex;\n}\n\n.webchat-fluent .wHTirJa_sendbox__text-counter {\n color: var(--webchat-colorNeutralForeground4);\n cursor: default;\n font-family: var(--webchat-fontFamilyNumeric);\n margin-inline-end: 4px;\n font-size: 10px;\n line-height: 14px;\n}\n\n.webchat-fluent .wHTirJa_sendbox__text-counter--error {\n color: var(--webchat-colorStatusDangerForeground1);\n}\n",".webchat-fluent .woL7KnG_sendbox__text-area {\n scrollbar-gutter: stable;\n grid-template-areas: \"main\";\n max-height: 200px;\n display: grid;\n overflow: auto;\n}\n\n.webchat-fluent .woL7KnG_sendbox__text-area--hidden {\n visibility: collapse;\n height: 0;\n}\n\n.webchat-fluent .woL7KnG_sendbox__text-area--in-completion {\n & .woL7KnG_sendbox__text-area-doppelganger {\n visibility: unset;\n }\n\n & .woL7KnG_sendbox__text-area-input {\n caret-color: var(--webchat-colorNeutralForeground1);\n color: #0000;\n background-color: #0000;\n }\n\n & textarea::placeholder {\n color: #0000;\n }\n}\n\n.webchat-fluent .woL7KnG_sendbox__text-area-shared {\n font: inherit;\n outline: inherit;\n overflow-wrap: anywhere;\n resize: inherit;\n border: none;\n grid-area: main;\n}\n\n.webchat-fluent .woL7KnG_sendbox__text-area-doppelganger {\n pointer-events: none;\n user-select: none;\n visibility: hidden;\n white-space: pre-wrap;\n overflow: visible;\n}\n\n.webchat-fluent .woL7KnG_sendbox__text-area-input {\n background-color: inherit;\n color: currentColor;\n contain: size;\n padding: 0;\n overflow: hidden;\n}\n\n.webchat-fluent .woL7KnG_sendbox__text-area--scroll {\n scrollbar-color: unset;\n scrollbar-width: unset;\n -moz-scrollbar-color: var(--webchat-colorNeutralBackground5) var(--webchat-colorNeutralForeground2);\n -moz-scrollbar-width: thin;\n\n &::-webkit-scrollbar {\n width: 8px;\n }\n\n &::-webkit-scrollbar-track {\n background-color: var(--webchat-colorNeutralBackground5);\n border-radius: 16px;\n }\n\n &::-webkit-scrollbar-thumb {\n background-color: var(--webchat-colorNeutralForeground2);\n border-radius: 16px;\n }\n\n &::-webkit-scrollbar-corner {\n background-color: var(--webchat-colorNeutralBackground5);\n }\n}\n",".webchat-fluent .wnVy-QG_activity-loader {\n height: 8px;\n margin: var(--webchat-spacingHorizontalM) 0 0 18px;\n flex: none;\n width: auto;\n\n &.wnVy-QG_variant-fluent {\n margin: 0 0 var(--webchat-spacingHorizontalM) var(--webchat-spacingVerticalSNudge);\n }\n}\n",".webchat-fluent .wQVQNzG_liner-message-activity {\n box-sizing: border-box;\n color: var(--webchat-colorNeutralForeground3);\n font-family: var(--webchat__font--primary);\n font-size: var(--webchat-fontSizeBase200);\n font-weight: var(--webchat-fontWeightRegular);\n align-items: center;\n gap: var(--webchat-spacingHorizontalM);\n line-height: var(--webchat-lineHeightBase200);\n padding: var(--webchat-spacingVerticalSNudge) var(--webchat-spacingHorizontalM);\n text-align: center;\n flex-direction: row;\n width: 100%;\n display: flex;\n\n &:before, &:after {\n border-top: var(--webchat-strokeWidthThin) solid var(--webchat-colorNeutralStroke2);\n content: \"\";\n flex: auto;\n min-width: 8px;\n display: flex;\n }\n}\n\n.webchat-fluent .wQVQNzG_liner-message-activity__text {\n text-align: center;\n}\n",".webchat-fluent.w2roZmq_theme {\n --webchat-colorNeutralForegroundDisabled: var(--colorNeutralForegroundDisabled, #bdbdbd);\n --webchat-colorNeutralForeground1: var(--colorNeutralForeground1, #242424);\n --webchat-colorNeutralForeground1Hover: var(--colorNeutralForeground1Hover, #242424);\n --webchat-colorNeutralForeground1Pressed: var(--colorNeutralForeground1Pressed, #242424);\n --webchat-colorNeutralForeground2: var(--colorNeutralForeground2, #424242);\n --webchat-colorNeutralForeground2BrandHover: var(--colorNeutralForeground2BrandHover, #02729c);\n --webchat-colorNeutralForeground2BrandPressed: var(--colorNeutralForeground2BrandPressed, #01678c);\n --webchat-colorNeutralForeground2BrandSelected: var(--colorNeutralForeground2BrandSelected, #067191);\n --webchat-colorNeutralForeground3: var(--colorNeutralForeground3, #616161);\n --webchat-colorNeutralForeground4: var(--colorNeutralForeground4, #707070);\n --webchat-colorNeutralForeground5: var(--colorNeutralForeground5, #7e7e7e);\n --webchat-colorNeutralForegroundOnBrand: var(--colorNeutralForegroundOnBrand, #fff);\n --webchat-colorNeutralBackgroundDisabled: var(--colorNeutralBackgroundDisabled, #f0f0f0);\n --webchat-colorNeutralBackground1: var(--colorNeutralBackground1, #fff);\n --webchat-colorNeutralBackground1Hover: var(--colorNeutralBackground1Hover, #f5f5f5);\n --webchat-colorNeutralBackground1Pressed: var(--colorNeutralBackground1Pressed, #e0e0e0);\n --webchat-colorNeutralBackground3: var(--colorNeutralBackground3, #f5f5f5);\n --webchat-colorNeutralBackground4: var(--colorNeutralBackground4, #f0f0f0);\n --webchat-colorNeutralBackground5: var(--colorNeutralBackground5, #ebebeb);\n --webchat-colorNeutralBackground6: var(--colorNeutralBackground6, #e6e6e6);\n --webchat-colorNeutralStencil1: var(--colorNeutralStencil1, #e6e6e6);\n --webchat-colorNeutralStencil2: var(--colorNeutralStencil2, #fafafa);\n --webchat-colorNeutralShadowAmbient: var(--colorNeutralShadowAmbient, #0000001f);\n --webchat-colorNeutralShadowKey: var(--colorNeutralShadowKey, #00000024);\n --webchat-colorTransparentBackground: var(--colorTransparentBackground, #0006);\n --webchat-colorNeutralStrokeDisabled: var(--colorNeutralStrokeDisabled, #e0e0e0);\n --webchat-colorNeutralStroke1: var(--colorNeutralStroke1, #d1d1d1);\n --webchat-colorNeutralStroke1Hover: var(--colorNeutralStroke1Hover, #c7c7c7);\n --webchat-colorNeutralStroke1Pressed: var(--colorNeutralStroke1Pressed, #b3b3b3);\n --webchat-colorNeutralStroke1Selected: var(--colorNeutralStroke1Selected, #bdbdbd);\n --webchat-colorNeutralStroke2: var(--colorNeutralStroke2, #e0e0e0);\n --webchat-colorStrokeFocus2: var(--colorStrokeFocus2, #000);\n --webchat-colorBrandStroke2: var(--colorBrandStroke2, #9edcf7);\n --webchat-colorBrandStroke2Pressed: var(--colorBrandStroke2Pressed, #01384d);\n --webchat-colorTransparentStroke: var(--colorTransparentStroke, transparent);\n --webchat-colorBrandForeground1: var(--colorBrandForeground1, #01678c);\n --webchat-colorBrandForeground2Hover: var(--colorBrandForeground2Hover, #015a7a);\n --webchat-colorBrandForeground2Pressed: var(--colorBrandForeground2Pressed, #01384d);\n --webchat-colorBrandForegroundLink: var(--colorBrandForegroundLink, #01678c);\n --webchat-colorBrandForegroundLinkHover: var(--colorBrandForegroundLinkHover, #015a7a);\n --webchat-colorBrandForegroundLinkPressed: var(--colorBrandForegroundLinkPressed, #014259);\n --webchat-colorBrandForegroundLinkSelected: var(--colorBrandForegroundLinkSelected, #01678c);\n --webchat-colorBrandBackground: var(--colorBrandBackground, #077fab);\n --webchat-colorBrandBackgroundHover: var(--colorBrandBackgroundHover, #06729a);\n --webchat-colorBrandBackgroundPressed: var(--colorBrandBackgroundPressed, #044760);\n --webchat-colorBrandBackground2: var(--colorBrandBackground2, #def2fc);\n --webchat-colorBrandBackground2Hover: var(--colorBrandBackground2Hover, #bee7fa);\n --webchat-colorBrandBackground2Pressed: var(--colorBrandBackground2Pressed, #7fd2f5);\n --webchat-colorCompoundBrandForeground1Hover: var(--colorCompoundBrandForeground1Hover, #02729c);\n --webchat-colorStatusDangerForeground1: var(--colorStatusDangerForeground1, #b10e1c);\n --webchat-colorGray30: var(--colorGray30, #edebe9);\n --webchat-colorGray160: var(--colorGray160, #323130);\n --webchat-colorGray190: var(--colorGray190, #201f1e);\n --webchat-colorGray200: var(--colorGray200, #1b1a19);\n --webchat-colorGrey8: #141414;\n --webchat-colorGrey14: #242424;\n --webchat-colorGrey92: #ebebeb;\n --webchat-colorGrey98: #fafafa;\n --webchat-shadow2: var(--shadow2, 0 0 2px #0000001f, 0 1px 2px #00000024);\n --webchat-shadow4: var(--shadow4, 0 0 2px #0000001f, 0 2px 4px #00000024);\n --webchat-shadow16: var(--shadow16, 0 6.4px 14.4px 0 #0002, 0 1.2px 3.6px 0 #0000001c);\n --webchat-shadow64: var(--shadow64, 0 0 8px #0000001f, 0 32px 64px #00000024);\n --webchat-spacingHorizontalNone: var(--spacingHorizontalNone, 0);\n --webchat-spacingHorizontalXXS: var(--spacingHorizontalXXS, 2px);\n --webchat-spacingHorizontalXS: var(--spacingHorizontalXS, 4px);\n --webchat-spacingHorizontalSNudge: var(--spacingHorizontalSNudge, 6px);\n --webchat-spacingHorizontalS: var(--spacingHorizontalS, 8px);\n --webchat-spacingHorizontalMNudge: var(--spacingHorizontalMNudge, 10px);\n --webchat-spacingHorizontalM: var(--spacingHorizontalM, 12px);\n --webchat-spacingHorizontalL: var(--spacingHorizontalL, 16px);\n --webchat-spacingHorizontalXL: var(--spacingHorizontalXL, 20px);\n --webchat-spacingHorizontalXXL: var(--spacingHorizontalXXL, 24px);\n --webchat-spacingHorizontalXXXL: var(--spacingHorizontalXXXL, 32px);\n --webchat-spacingVerticalNone: var(--spacingVerticalNone, 0);\n --webchat-spacingVerticalXXS: var(--spacingVerticalXXS, 2px);\n --webchat-spacingVerticalXS: var(--spacingVerticalXS, 4px);\n --webchat-spacingVerticalSNudge: var(--spacingVerticalSNudge, 6px);\n --webchat-spacingVerticalS: var(--spacingVerticalS, 8px);\n --webchat-spacingVerticalMNudge: var(--spacingVerticalMNudge, 10px);\n --webchat-spacingVerticalM: var(--spacingVerticalM, 12px);\n --webchat-spacingVerticalL: var(--spacingVerticalL, 16px);\n --webchat-spacingVerticalXL: var(--spacingVerticalXL, 20px);\n --webchat-spacingVerticalXXL: var(--spacingVerticalXXL, 24px);\n --webchat-spacingVerticalXXXL: var(--spacingVerticalXXXL, 32px);\n --webchat-fontFamilyBase: var(--fontFamilyBase, \"Segoe UI\", \"Segoe UI Web (West European)\", -apple-system, BlinkMacSystemFont, Roboto, \"Helvetica Neue\", sans-serif);\n --webchat-fontFamilyMonospace: var(--fontFamilyMonospace, Consolas, \"Courier New\", Courier, monospace);\n --webchat-fontFamilyNumeric: var(--fontFamilyNumeric, Bahnschrift, \"Segoe UI\", \"Segoe UI Web (West European)\", -apple-system, BlinkMacSystemFont, Roboto, \"Helvetica Neue\", sans-serif);\n --webchat-fontWeightRegular: var(--fontWeightRegular, 400);\n --webchat-fontWeightSemibold: var(--fontWeightSemibold, 600);\n --webchat-fontSizeBase100: var(--fontSizeBase100, 10px);\n --webchat-fontSizeBase200: var(--fontSizeBase200, 12px);\n --webchat-fontSizeBase300: var(--fontSizeBase300, 14px);\n --webchat-fontSizeBase400: var(--fontSizeBase400, 16px);\n --webchat-fontSizeBase500: var(--fontSizeBase500, 20px);\n --webchat-fontSizeBase600: var(--fontSizeBase600, 24px);\n --webchat-fontSizeHero700: var(--fontSizeHero700, 28px);\n --webchat-fontSizeHero800: var(--fontSizeHero800, 32px);\n --webchat-fontSizeHero900: var(--fontSizeHero900, 40px);\n --webchat-lineHeightBase100: var(--lineHeightBase100, 14px);\n --webchat-lineHeightBase200: var(--lineHeightBase200, 16px);\n --webchat-lineHeightBase300: var(--lineHeightBase300, 20px);\n --webchat-lineHeightBase400: var(--lineHeightBase400, 22px);\n --webchat-lineHeightBase500: var(--lineHeightBase500, 28px);\n --webchat-lineHeightBase600: var(--lineHeightBase600, 32px);\n --webchat-lineHeightHero700: var(--lineHeightHero700, 36px);\n --webchat-lineHeightHero800: var(--lineHeightHero800, 40px);\n --webchat-lineHeightHero900: var(--lineHeightHero900, 52px);\n --webchat-lineHeightHero1000: var(--lineHeightHero1000, 92px);\n --webchat-borderRadiusSmall: var(--borderRadiusSmall, 2px);\n --webchat-borderRadiusMedium: var(--borderRadiusMedium, 4px);\n --webchat-borderRadiusLarge: var(--borderRadiusLarge, 6px);\n --webchat-borderRadiusXLarge: var(--borderRadiusXLarge, 8px);\n --webchat-strokeWidthThin: var(--strokeWidthThin, 1px);\n --webchat-strokeWidthThick: var(--strokeWidthThick, 2px);\n --webchat-strokeWidthThicker: var(--strokeWidthThicker, 3px);\n --webchat-durationUltraFast: var(--durationUltraFast, 0);\n --webchat-durationNormal: var(--durationNormal, .2s);\n --webchat-durationUltraSlow: var(--durationUltraSlow, .5s);\n --webchat-curveAccelerateMid: var(--curveAccelerateMid, cubic-bezier(1, 0, 1, 1));\n --webchat-curveDecelerateMid: var(--curveDecelerateMid, cubic-bezier(0, 0, 0, 1));\n display: contents;\n}\n\n@media (prefers-reduced-motion) {\n .webchat-fluent.w2roZmq_theme {\n --webchat-durationUltraFast: .01ms;\n --webchat-durationNormal: .01ms;\n }\n}\n\n.webchat-fluent.w2roZmq_theme .webchat__css-custom-properties {\n --webchat__color--accent: var(--webchat-colorBrandForeground1);\n --webchat__color--subtle: var(--webchat-colorNeutralForeground2);\n --webchat__color--timestamp: var(--webchat-colorNeutralForeground3);\n --webchat__font--primary: var(--webchat-fontFamilyBase);\n --webchat__font-size--small: var(--webchat-fontSizeBase200);\n --webchat__font-size--medium: var(--webchat-fontSizeBase300);\n --webchat__line-height--small: var(--webchat-lineHeightBase200);\n --webchat__line-height--medium: var(--webchat-lineHeightBase300);\n --webchat__max-width--bubble: var(--webchat-bubble-maxWidth);\n --webchat__min-height--bubble: var(--webchat-bubble-minHeight);\n --webchat__padding--regular: var(--webchat-spacingVerticalS);\n --webchat__padding--sendbox: var(--webchat-spacingVerticalNone) var(--webchat-spacingHorizontalMNudge) var(--webchat-spacingHorizontalMNudge);\n --webchat__border-animation--color-1: #464feb;\n --webchat__border-animation--color-2: #47cffa;\n --webchat__border-animation--color-3: #b47cf8;\n}\n\n.webchat-fluent.w2roZmq_theme.w2roZmq_variant-copilot .webchat__css-custom-properties {\n --webchat__padding--sendbox: var(--webchat-spacingVerticalNone) var(--webchat-spacingHorizontalXL) var(--webchat-spacingVerticalMNudge) var(--webchat-spacingHorizontalMNudge);\n}\n\n.webchat-fluent.w2roZmq_theme .webchat__surface {\n background-color: var(--webchat__color--surface);\n}\n\n.webchat-fluent.w2roZmq_theme.w2roZmq_variant-copilot .webchat__surface {\n box-sizing: border-box;\n padding-inline-start: var(--webchat-spacingHorizontalMNudge);\n}\n\n.webchat-fluent.w2roZmq_theme .webchat__basic-transcript .webchat__basic-transcript__scrollable, .webchat-fluent.w2roZmq_theme .webchat__view-code-dialog__code-body, .webchat-fluent.w2roZmq_theme .webchat__render-markdown [data-math-type=\"block\"], .webchat-fluent.w2roZmq_theme .webchat__feedback-form-text-area-input--scroll, .webchat-fluent.w2roZmq_theme .webchat__view-code-dialog__body {\n scrollbar-color: unset;\n scrollbar-width: unset;\n -moz-scrollbar-color: var(--webchat-colorNeutralForeground5) transparent;\n -moz-scrollbar-width: thin;\n\n &::-webkit-scrollbar {\n height: var(--webchat-spacingVerticalMNudge);\n width: var(--webchat-spacingVerticalMNudge);\n visibility: hidden;\n }\n\n &::-webkit-scrollbar-corner {\n background: none;\n }\n\n &:hover::-webkit-scrollbar {\n height: var(--webchat-spacingVerticalMNudge);\n width: var(--webchat-spacingVerticalMNudge);\n }\n\n &:hover::-webkit-scrollbar-thumb {\n background-clip: padding-box;\n background-color: var(--webchat-colorNeutralForeground5);\n border: 3px solid #0000;\n border-radius: 10px;\n }\n\n &:hover::-webkit-scrollbar-thumb:hover {\n background-clip: padding-box;\n background-color: var(--webchat-colorNeutralForeground5);\n border: 1px solid #0000;\n border-radius: 10px;\n }\n}\n\n.webchat-fluent.w2roZmq_theme.w2roZmq_variant-copilot .webchat__basic-transcript .webchat__basic-transcript__scrollable {\n scrollbar-gutter: stable;\n}\n\n.webchat-fluent.w2roZmq_theme .webchat__basic-transcript .webchat__basic-transcript__terminator:focus-visible + .webchat__basic-transcript__focus-indicator {\n border-color: var(--webchat-colorStrokeFocus2);\n}\n\n.webchat-fluent.w2roZmq_theme .webchat__basic-transcript:not(:focus-visible) .webchat__basic-transcript__activity-indicator--focus {\n display: none;\n}\n\n.webchat-fluent.w2roZmq_theme .webchat__basic-transcript:focus-visible:has(.webchat__basic-transcript__activity-indicator--focus) {\n & .webchat__basic-transcript__focus-indicator {\n display: none;\n }\n}\n\n.webchat-fluent.w2roZmq_theme .webchat__basic-transcript:focus-visible .webchat__basic-transcript__activity:has(.webchat__basic-transcript__activity-indicator--focus) {\n & .webchat__basic-transcript__activity-indicator--focus {\n display: none;\n }\n\n & .webchat__bubble:after, & .pre-chat-message-activity:after {\n border-radius: var(--webchat__bubble--border-radius);\n content: \"\";\n outline-offset: 0;\n outline: var(--webchat-strokeWidthThick) solid var(--webchat-colorStrokeFocus2);\n pointer-events: none;\n position: absolute;\n inset: 0;\n }\n\n & .pre-chat-message-activity:after {\n border-radius: var(--webchat-borderRadiusMedium);\n outline-offset: -3px;\n }\n\n & .liner-message-activity__text {\n outline-offset: 4px;\n outline: var(--webchat-strokeWidthThick) solid var(--webchat-colorStrokeFocus2);\n border-radius: 20px;\n }\n}\n\n.webchat-fluent.w2roZmq_theme.w2roZmq_variant-copilot .webchat__basic-transcript .webchat__basic-transcript__filler {\n flex-grow: 0;\n}\n\n.webchat-fluent.w2roZmq_theme .webchat__basic-transcript:has(.webchat__basic-transcript__activity:only-child):has(.pre-chat-message-activity) .webchat__basic-transcript__filler {\n flex-grow: .5;\n}\n\n.webchat-fluent.w2roZmq_theme .webchat__modal-dialog {\n place-items: center;\n height: 100%;\n display: grid;\n\n &::backdrop {\n background-color: var(--webchat-colorTransparentBackground);\n }\n\n & .webchat__modal-dialog__box {\n background-color: var(--webchat-colorNeutralBackground1);\n border-radius: var(--webchat-borderRadiusXLarge);\n color: var(--webchat-colorNeutralForeground1);\n box-shadow: var(--webchat-shadow64);\n position: relative;\n }\n\n & .webchat__modal-dialog__close-button {\n color: var(--webchat-colorNeutralForeground1);\n transition: background-color var(--webchat-durationNormal) var(--webchat-curveDecelerateMid);\n }\n\n & .webchat__modal-dialog__close-button:not(:active):hover {\n background-color: var(--webchat-colorNeutralBackground3);\n }\n\n & .webchat__modal-dialog__close-button:focus:active {\n background-color: var(--webchat-colorNeutralBackground4);\n }\n\n & .webchat__modal-dialog__close-button:not(:focus-visible) {\n border: none;\n }\n\n & .webchat__modal-dialog__close-button:focus {\n border-color: var(--webchat-colorStrokeFocus2);\n }\n\n & .webchat__modal-dialog__close-button-image {\n fill: currentColor;\n }\n}\n\n.webchat-fluent.w2roZmq_theme .webchat__code-block {\n font-family: var(--webchat-fontFamilyMonospace);\n font-size: var(--webchat-fontSizeBase300);\n --webchat__code-block__copy-button--color: var(--webchat-colorNeutralForeground1);\n --webchat__code-block__copy-button--background: var(--webchat-colorNeutralBackground3);\n border: none;\n\n & .webchat__code-block-copy-button {\n color: var(--webchat__code-block__copy-button--color);\n height: 20px;\n width: 20px;\n transition: background-color var(--webchat-durationNormal) var(--webchat-curveDecelerateMid);\n background: none;\n border: none;\n margin-inline-start: var(--webchat-spacingHorizontalS);\n padding: 0;\n\n & .webchat__code-block-copy-button__icon {\n background-color: currentColor;\n }\n\n &:hover, &:active {\n background: var(--webchat__code-block__copy-button--background);\n color: var(--webchat__code-block__copy-button--color);\n }\n\n &:focus {\n color: var(--webchat__code-block__copy-button--color);\n outline-color: currentColor;\n }\n }\n\n &:has(.webchat__code-block__body:focus-visible):focus-within {\n outline: var(--webchat-strokeWidthThick) solid var(--webchat-colorStrokeFocus2);\n outline-offset: calc(var(--webchat-strokeWidthThick) * -1);\n\n & .webchat__code-block__body {\n outline: none;\n }\n }\n\n &:has( > .webchat__code-block__theme--github-dark-default) {\n --webchat__background--code-block: var(--codeBlockBackground, var(--webchat-colorGrey8));\n --webchat__code-block__copy-button--background: var(--codeBlockCopyButtonBackgroundPressed, var(--webchat-colorGrey14));\n --webchat__code-block__copy-button--color: var(--codeBlockCopyButtonForeground, var(--webchat__color--code-block));\n --webchat__color--code-block: var(--codeBlockForeground, var(--webchat-colorGrey98));\n }\n\n &:has( > .webchat__code-block__theme--github-light-default) {\n --webchat__background--code-block: var(--codeBlockBackground, var(--webchat-colorGrey98));\n --webchat__code-block__copy-button--background: var(--codeBlockBackgroundPressed, var(--webchat-colorGrey92));\n --webchat__code-block__copy-button--color: var(--codeBlockCopyButtonForeground, var(--webchat__color--code-block));\n --webchat__color--code-block: var(--codeBlockForeground, var(--webchat-colorGrey8));\n }\n}\n\n.webchat-fluent.w2roZmq_theme .webchat__modal-dialog.webchat__view-code-dialog {\n & .webchat__modal-dialog__close-button-layout {\n padding: var(--webchat-spacingVerticalS) var(--webchat-spacingHorizontalS);\n display: flex;\n }\n\n & .webchat__modal-dialog__close-button {\n aspect-ratio: 1;\n height: var(--webchat-lineHeightBase300);\n width: unset;\n justify-content: center;\n align-items: center;\n padding: 0;\n display: flex;\n }\n\n & .webchat__code-block-copy-button {\n --webchat__code-block__copy-button--color: var(--webchat-colorNeutralForeground1);\n --webchat__code-block__copy-button--background: var(--webchat-colorNeutralBackground3);\n margin-block-start: var(--webchat-spacingVerticalS);\n position: absolute;\n top: 0;\n right: 32px;\n }\n\n & .webchat__modal-dialog__box {\n width: fit-content;\n }\n\n & .webchat__modal-dialog__body {\n padding: var(--webchat-spacingVerticalS) var(--webchat-spacingHorizontalM);\n margin: 0;\n }\n\n & .webchat__view-code-dialog__title {\n font-size: var(--webchat-fontSizeBase300);\n font-weight: var(--webchat-fontWeightSemibold);\n line-height: var(--webchat-lineHeightBase300);\n }\n\n & .webchat__view-code-dialog__body {\n font-family: var(--webchat-fontFamilyMonospace);\n font-size: var(--webchat-fontSizeBase300);\n margin: 0 calc(var(--webchat-spacingHorizontalM) * -1);\n padding: 0 var(--webchat-spacingHorizontalM);\n }\n\n & .webchat__view-code-dialog__footer {\n color: var(--webchat-colorNeutralForeground4);\n font-size: var(--webchat-fontSizeBase100);\n line-height: var(--webchat-lineHeightBase100);\n }\n\n & .webchat__view-code-dialog__link {\n color: var(--webchat-colorBrandForegroundLink);\n text-decoration-color: #0000;\n\n &:target {\n color: var(--webchat-colorBrandForegroundLinkSelected);\n }\n\n &:hover {\n color: var(--webchat-colorBrandForegroundLinkHover);\n text-decoration: underline 1px;\n }\n\n &:active {\n color: var(--webchat-colorBrandForegroundLinkPressed);\n }\n\n &:focus-visible {\n text-decoration: underline 1px double var(--webchat-colorStrokeFocus2);\n outline: none;\n }\n }\n}\n\n.webchat-fluent.w2roZmq_theme .webchat__activity-button {\n background: var(--webchat-colorNeutralBackground1);\n border-radius: var(--webchat-borderRadiusMedium);\n border: var(--webchat-strokeWidthThin) solid var(--webchat-colorNeutralStroke1);\n color: var(--webchat-colorNeutralForeground1);\n gap: var(--webchat-spacingHorizontalXS);\n padding: 5px var(--webchat-spacingHorizontalM);\n\n &:hover {\n background: var(--webchat-colorNeutralBackground1Hover);\n border: var(--webchat-strokeWidthThin) solid var(--webchat-colorNeutralStroke1Hover);\n color: var(--webchat-colorNeutralForeground1Hover);\n }\n\n &:active {\n background: var(--webchat-colorNeutralBackground1Pressed);\n border: var(--webchat-strokeWidthThin) solid var(--webchat-colorNeutralStroke1Pressed);\n color: var(--webchat-colorNeutralForeground1Pressed);\n }\n\n &:focus-visible {\n background: var(--webchat-colorNeutralBackground1);\n outline: var(--webchat-strokeWidthThick) solid var(--webchat-colorStrokeFocus2);\n outline-offset: calc(var(--webchat-strokeWidthThick) * -1);\n }\n\n &[aria-disabled=\"true\"] {\n background: var(--webchat-colorNeutralBackgroundDisabled);\n border: var(--webchat-strokeWidthThin) solid var(--webchat-colorNeutralStrokeDisabled);\n color: var(--webchat-colorNeutralForegroundDisabled);\n }\n\n & .webchat__activity-button__icon {\n width: 20px;\n height: 20px;\n }\n}\n\n.webchat-fluent.w2roZmq_theme .webchat__activity-copy-button {\n & .webchat__activity-copy-button__copied-text {\n background-color: var(--webchat-colorNeutralBackground1);\n }\n\n &.webchat__activity-copy-button--copied .webchat__activity-copy-button__copied-text {\n animation-duration: var(--webchat-durationUltraSlow);\n }\n}\n\n.webchat-fluent.w2roZmq_theme .webchat__monochrome-image-masker {\n background-color: currentColor;\n width: 1em;\n height: 1em;\n}\n\n.webchat-fluent.w2roZmq_theme .webchat__thumb-button {\n & .webchat__thumb-button__image {\n color: var(--webchat-colorNeutralForeground1);\n }\n\n &:has(.webchat__thumb-button__input:focus-visible) {\n outline: var(--webchat-strokeWidthThick) solid var(--webchat-colorStrokeFocus2);\n }\n\n &:has(.webchat__thumb-button__input[aria-disabled=\"true\"]) .webchat__thumb-button__image {\n color: var(--webchat-colorNeutralForegroundDisabled);\n }\n}\n\n.webchat-fluent.w2roZmq_theme .webchat__tooltip {\n --webchat__tooltip-background: var(--tooltip-background, var(--webchat-colorNeutralBackground1));\n color: var(--webchat-colorNeutralForeground1);\n filter: drop-shadow(0 0 2px var(--webchat-colorNeutralShadowAmbient)) drop-shadow(0 4px 8px var(--webchat-colorNeutralShadowKey));\n font-family: var(--webchat-fontFamilyBase);\n font-size: var(--webchat-fontSizeBase200);\n font-weight: var(--webchat-fontWeightRegular);\n line-height: var(--webchat-lineHeightBase200);\n padding: var(--webchat-spacingVerticalSNudge) var(--webchat-spacingHorizontalM);\n transition: opacity var(--webchat-durationNormal) var(--webchat-curveDecelerateMid);\n}\n\n.webchat-fluent.w2roZmq_theme .webchat__feedback-form {\n & .webchat__feedback-form__form-header {\n color: var(--webchat-colorNeutralForeground1);\n font-family: var(--webchat-fontFamilyBase);\n font-size: var(--webchat-fontSizeBase300);\n font-weight: var(--webchat-fontWeightRegular);\n line-height: var(--webchat-lineHeightBase300);\n }\n\n & .webchat__feedback-form__form {\n gap: var(--webchat-spacingVerticalXS);\n }\n\n & .webchat__feedback-form__form-footer {\n color: var(--webchat-colorNeutralForeground1);\n font-family: var(--webchat-fontFamilyBase);\n font-size: var(--webchat-fontSizeBase100);\n font-weight: var(--webchat-fontWeightRegular);\n line-height: var(--webchat-lineHeightBase200);\n }\n\n & .webchat__feedback-form__submit-button {\n background-color: var(--webchat-colorBrandBackground);\n border: var(--webchat-strokeWidthThin) solid var(--webchat-colorBrandBackground);\n border-radius: var(--webchat-borderRadiusMedium);\n color: var(--webchat-colorNeutralForegroundOnBrand);\n cursor: pointer;\n font-family: var(--webchat-fontFamilyBase);\n font-size: var(--webchat-fontSizeBase300);\n padding: var(--webchat-spacingVerticalNone) var(--webchat-spacingHorizontalS);\n transition: background-color var(--webchat-durationNormal) var(--webchat-curveDecelerateMid);\n\n &:hover {\n background-color: var(--webchat-colorBrandBackgroundHover);\n border: var(--webchat-strokeWidthThin) solid var(--webchat-colorBrandBackgroundHover);\n }\n\n &:focus-visible {\n outline: var(--webchat-strokeWidthThick) solid var(--webchat-colorStrokeFocus2);\n outline-offset: calc(var(--webchat-strokeWidthThin) * -1);\n }\n\n &:active {\n background-color: var(--webchat-colorBrandBackgroundPressed);\n border: var(--webchat-strokeWidthThin) solid var(--webchat-colorBrandBackgroundPressed);\n }\n }\n\n & .webchat__feedback-form__cancel-button {\n background-color: var(--webchat-colorNeutralBackground1);\n border: var(--webchat-strokeWidthThin) solid var(--webchat-colorNeutralStroke1);\n border-radius: var(--webchat-borderRadiusMedium);\n color: var(--webchat-colorNeutralForeground1);\n cursor: pointer;\n font-family: var(--webchat-fontFamilyBase);\n font-size: var(--webchat-fontSizeBase300);\n padding: var(--webchat-spacingVerticalNone) var(--webchat-spacingHorizontalS);\n transition: background-color var(--webchat-durationNormal) var(--webchat-curveDecelerateMid);\n\n &:hover {\n background-color: var(--webchat-colorNeutralBackground1Hover);\n border: var(--webchat-strokeWidthThin) solid var(--webchat-colorNeutralStroke1Hover);\n }\n\n &:focus-visible {\n outline: var(--webchat-strokeWidthThick) solid var(--webchat-colorStrokeFocus2);\n outline-offset: calc(var(--webchat-strokeWidthThin) * -1);\n }\n\n &:active {\n background-color: var(--webchat-colorNeutralBackground1Pressed);\n border: var(--webchat-strokeWidthThin) solid var(--webchat-colorNeutralStroke1Pressed);\n }\n }\n\n & .webchat__feedback-form-text-area {\n background-color: var(--webchat-colorNeutralBackground1);\n border-radius: var(--webchat-borderRadiusMedium);\n border: var(--webchat-strokeWidthThin) solid var(--webchat-colorNeutralStroke1);\n font-family: var(--webchat-fontFamilyBase);\n font-size: var(--webchat-fontSizeBase300);\n line-height: var(--webchat-lineHeightBase300);\n gap: var(--webchat-spacingVerticalSNudge);\n padding: var(--webchat-spacingVerticalS) var(--webchat-spacingHorizontalM);\n\n &:after {\n border-bottom-left-radius: var(--webchat-borderRadiusMedium);\n border-bottom-right-radius: var(--webchat-borderRadiusMedium);\n border-bottom: var(--webchat-strokeWidthThicker) solid var(--webchat-colorBrandForeground1);\n clip-path: inset(calc(100% - var(--webchat-strokeWidthThicker)) 50% 0 50%);\n transition: clip-path var(--webchat-durationNormal) var(--webchat-curveDecelerateMid);\n }\n\n &:focus-within {\n border: var(--webchat-strokeWidthThin) solid var(--webchat-colorNeutralStroke1);\n }\n\n &:focus-within:after {\n clip-path: inset(calc(100% - var(--webchat-strokeWidthThicker)) 0 0 0);\n transition: clip-path var(--webchat-durationNormal) var(--webchat-curveDecelerateMid);\n }\n }\n}\n",".webchat-fluent .wQOMcSW_sliding-dots-typing-indicator {\n height: 16px;\n margin: auto var(--webchat-spacingHorizontalMNudge);\n flex: none;\n align-self: start;\n display: flex;\n}\n\n.webchat-fluent .wQOMcSW_sliding-dots-typing-indicator__image {\n width: auto;\n height: 6px;\n}\n"],"mappings":"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","names":[]}