@kaizen/components 0.0.0-canary-fix-select-futureselect-focus-jumping-20241003232256 → 0.0.0-canary-tsx-codemod-20241029235345

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (411) hide show
  1. package/bin/codemod.sh +2 -2
  2. package/codemods/README.md +12 -4
  3. package/codemods/upgradeIconV1/getNewIconPropsFromOldIconName.ts +255 -0
  4. package/codemods/upgradeIconV1/index.ts +33 -0
  5. package/codemods/upgradeIconV1/transformCaMonogramIconToBrand.spec.ts +83 -0
  6. package/codemods/upgradeIconV1/transformCaMonogramIconToBrand.ts +53 -0
  7. package/codemods/upgradeIconV1/transformIcon.spec.ts +181 -0
  8. package/codemods/upgradeIconV1/transformIcon.ts +115 -0
  9. package/codemods/upgradeIconV1/transformSpinnerIconToLoadingSpinner.spec.ts +81 -0
  10. package/codemods/upgradeIconV1/transformSpinnerIconToLoadingSpinner.ts +41 -0
  11. package/codemods/upgradeIconV1/upgradeIconV1.spec.ts +306 -0
  12. package/codemods/upgradeIconV1/upgradeIconV1.ts +94 -0
  13. package/codemods/utils/createProp.spec.ts +83 -0
  14. package/codemods/utils/createProp.ts +51 -0
  15. package/codemods/utils/getKaioTagName.spec.ts +85 -0
  16. package/codemods/utils/getKaioTagName.ts +129 -0
  17. package/codemods/utils/index.ts +3 -1
  18. package/codemods/utils/transformComponentsInDir.ts +32 -16
  19. package/codemods/utils/transformSource.ts +10 -5
  20. package/codemods/utils/updateJsxElementWithNewProps.ts +4 -3
  21. package/codemods/utils/updateKaioImports.spec.ts +223 -0
  22. package/codemods/utils/updateKaioImports.ts +233 -0
  23. package/dist/cjs/Avatar/Avatar.cjs +16 -13
  24. package/dist/cjs/Calendar/CalendarRange/CalendarRange.cjs +9 -7
  25. package/dist/cjs/Calendar/CalendarSingle/CalendarSingle.cjs +9 -7
  26. package/dist/cjs/Calendar/LegacyCalendarRange/LegacyCalendarRange.cjs +9 -7
  27. package/dist/cjs/Checkbox/Checkbox/Checkbox.cjs +5 -11
  28. package/dist/cjs/ClearButton/ClearButton.cjs +5 -4
  29. package/dist/cjs/Collapsible/Collapsible/Collapsible.cjs +4 -7
  30. package/dist/cjs/DateInput/DateInputWithIconButton/DateInputWithIconButton.cjs +5 -4
  31. package/dist/cjs/DateRangePicker/DateRangePicker.cjs +5 -4
  32. package/dist/cjs/ErrorPage/ErrorPage.cjs +9 -7
  33. package/dist/cjs/FieldMessage/FieldMessage.cjs +5 -11
  34. package/dist/cjs/Filter/FilterBar/context/FilterBarContext.cjs +17 -2
  35. package/dist/cjs/Filter/FilterBar/context/reducer/filterBarStateReducer.cjs +4 -0
  36. package/dist/cjs/Filter/FilterBar/context/reducer/setupFilterBarState.cjs +2 -1
  37. package/dist/cjs/Filter/FilterBar/subcomponents/AddFiltersMenu/AddFiltersMenu.cjs +16 -6
  38. package/dist/cjs/Filter/FilterBar/subcomponents/FilterBarButton/FilterBarButton.cjs +12 -1
  39. package/dist/cjs/Filter/FilterBar/subcomponents/FilterBarMultiSelect/FilterBarMultiSelect.cjs +13 -2
  40. package/dist/cjs/Filter/FilterButton/FilterButton/FilterButton.cjs +4 -7
  41. package/dist/cjs/Filter/FilterButton/FilterButtonRemovable/FilterButtonRemovable.cjs +5 -5
  42. package/dist/cjs/Filter/FilterMultiSelect/FilterMultiSelect.cjs +4 -2
  43. package/dist/cjs/Filter/FilterMultiSelect/context/MenuTriggerProvider/MenuTriggerProvider.cjs +4 -2
  44. package/dist/cjs/Filter/FilterMultiSelect/subcomponents/MultiSelectOption/MultiSelectOption.cjs +4 -4
  45. package/dist/cjs/Filter/FilterSelect/FilterSelect.cjs +2 -1
  46. package/dist/cjs/GuidanceBlock/GuidanceBlock.cjs +5 -4
  47. package/dist/cjs/Illustration/utils/usePausePlay.cjs +5 -8
  48. package/dist/cjs/Input/InputSearch/InputSearch.cjs +4 -3
  49. package/dist/cjs/LikertScaleLegacy/LikertScaleLegacy.cjs +5 -6
  50. package/dist/cjs/Loading/LoadingSpinner/LoadingSpinner.cjs +6 -42
  51. package/dist/cjs/Loading/LoadingSpinner/LoadingSpinner.module.css.cjs +10 -0
  52. package/dist/cjs/Loading/LoadingSpinner/subcomponents/SpinnerIcon.cjs +80 -0
  53. package/dist/cjs/Modal/ConfirmationModal/ConfirmationModal.cjs +31 -26
  54. package/dist/cjs/Modal/GenericModal/subcomponents/ModalHeader/ModalHeader.cjs +4 -5
  55. package/dist/cjs/MultiSelect/subcomponents/Checkbox/Checkbox.cjs +7 -17
  56. package/dist/cjs/MultiSelect/subcomponents/MultiSelectToggle/MultiSelectToggle.cjs +4 -7
  57. package/dist/cjs/Notification/subcomponents/CancelButton/CancelButton.cjs +4 -3
  58. package/dist/cjs/Notification/subcomponents/NotificationIcon/NotificationIcon.cjs +33 -38
  59. package/dist/cjs/Notification/subcomponents/NotificationIcon/NotificationIcon.module.css.cjs +6 -0
  60. package/dist/cjs/Pagination/subcomponents/DirectionalLink/DirectionalLink.cjs +11 -19
  61. package/dist/cjs/Pagination/subcomponents/TruncateIndicator/TruncateIndicator.cjs +4 -5
  62. package/dist/cjs/Popover/Popover.cjs +5 -4
  63. package/dist/cjs/Popover/utils/classMappers.cjs +21 -16
  64. package/dist/cjs/RichTextEditor/RichTextEditor/utils/controlmap.cjs +29 -25
  65. package/dist/cjs/RichTextEditor/utils/plugins/LinkManager/components/LinkPopover/LinkPopover.cjs +10 -12
  66. package/dist/cjs/Select/Select.cjs +8 -10
  67. package/dist/cjs/SplitButton/subcomponents/DropdownButton/DropdownButton.cjs +4 -4
  68. package/dist/cjs/Table/Table.cjs +11 -10
  69. package/dist/cjs/Tag/Tag.cjs +21 -17
  70. package/dist/cjs/TextArea/TextArea.cjs +20 -52
  71. package/dist/cjs/TextArea/TextArea.module.css.cjs +14 -0
  72. package/dist/cjs/TextField/TextField.cjs +7 -6
  73. package/dist/cjs/TextField/TextField.module.scss.cjs +4 -6
  74. package/dist/cjs/Tile/subcomponents/GenericTile/GenericTile.cjs +8 -7
  75. package/dist/cjs/TitleBlockZen/TitleBlockZen.cjs +9 -12
  76. package/dist/cjs/TitleBlockZen/subcomponents/MainActions.cjs +7 -7
  77. package/dist/cjs/TitleBlockZen/subcomponents/MobileActions.cjs +10 -15
  78. package/dist/cjs/TitleBlockZen/subcomponents/SecondaryActions.cjs +7 -7
  79. package/dist/cjs/ToggleSwitch/ToggleSwitch/ToggleSwitch.cjs +5 -5
  80. package/dist/cjs/Workflow/subcomponents/Footer/components/ProgressStepper/ProgressStepper.cjs +13 -18
  81. package/dist/cjs/__future__/Icon/Icon.cjs +47 -0
  82. package/dist/cjs/__future__/Icon/Icon.module.css.cjs +10 -0
  83. package/dist/cjs/__future__/Icon/constants.cjs +8 -0
  84. package/dist/cjs/__future__/Select/subcomponents/ListBox/ListBox.cjs +7 -10
  85. package/dist/cjs/__future__/Select/subcomponents/Option/Option.cjs +4 -5
  86. package/dist/cjs/__future__/Select/subcomponents/SelectToggle/SelectToggle.cjs +5 -9
  87. package/dist/cjs/__future__/Tabs/Tabs.cjs +23 -0
  88. package/dist/cjs/__future__/Tabs/subcomponents/Tab/Tab.cjs +39 -0
  89. package/dist/cjs/__future__/Tabs/subcomponents/Tab/Tab.module.css.cjs +7 -0
  90. package/dist/cjs/__future__/Tabs/subcomponents/TabList/TabList.cjs +31 -0
  91. package/dist/cjs/__future__/Tabs/subcomponents/TabList/TabList.module.css.cjs +7 -0
  92. package/dist/cjs/__future__/Tabs/subcomponents/TabPanel/TabPanel.cjs +24 -0
  93. package/dist/cjs/__future__/Tag/RemovableTag/subcomponents/RemoveButton.cjs +4 -3
  94. package/dist/cjs/future.cjs +10 -0
  95. package/dist/esm/Avatar/Avatar.mjs +16 -13
  96. package/dist/esm/Calendar/CalendarRange/CalendarRange.mjs +9 -7
  97. package/dist/esm/Calendar/CalendarSingle/CalendarSingle.mjs +9 -7
  98. package/dist/esm/Calendar/LegacyCalendarRange/LegacyCalendarRange.mjs +9 -7
  99. package/dist/esm/Checkbox/Checkbox/Checkbox.mjs +5 -11
  100. package/dist/esm/ClearButton/ClearButton.mjs +5 -4
  101. package/dist/esm/Collapsible/Collapsible/Collapsible.mjs +5 -8
  102. package/dist/esm/DateInput/DateInputWithIconButton/DateInputWithIconButton.mjs +5 -4
  103. package/dist/esm/DateRangePicker/DateRangePicker.mjs +5 -4
  104. package/dist/esm/ErrorPage/ErrorPage.mjs +10 -8
  105. package/dist/esm/FieldMessage/FieldMessage.mjs +6 -12
  106. package/dist/esm/Filter/FilterBar/context/FilterBarContext.mjs +17 -2
  107. package/dist/esm/Filter/FilterBar/context/reducer/filterBarStateReducer.mjs +4 -0
  108. package/dist/esm/Filter/FilterBar/context/reducer/setupFilterBarState.mjs +2 -1
  109. package/dist/esm/Filter/FilterBar/subcomponents/AddFiltersMenu/AddFiltersMenu.mjs +17 -7
  110. package/dist/esm/Filter/FilterBar/subcomponents/FilterBarButton/FilterBarButton.mjs +13 -2
  111. package/dist/esm/Filter/FilterBar/subcomponents/FilterBarMultiSelect/FilterBarMultiSelect.mjs +14 -3
  112. package/dist/esm/Filter/FilterButton/FilterButton/FilterButton.mjs +5 -8
  113. package/dist/esm/Filter/FilterButton/FilterButtonRemovable/FilterButtonRemovable.mjs +5 -5
  114. package/dist/esm/Filter/FilterMultiSelect/FilterMultiSelect.mjs +4 -2
  115. package/dist/esm/Filter/FilterMultiSelect/context/MenuTriggerProvider/MenuTriggerProvider.mjs +4 -2
  116. package/dist/esm/Filter/FilterMultiSelect/subcomponents/MultiSelectOption/MultiSelectOption.mjs +4 -4
  117. package/dist/esm/Filter/FilterSelect/FilterSelect.mjs +2 -1
  118. package/dist/esm/GuidanceBlock/GuidanceBlock.mjs +5 -4
  119. package/dist/esm/Illustration/utils/usePausePlay.mjs +5 -8
  120. package/dist/esm/Input/InputSearch/InputSearch.mjs +4 -3
  121. package/dist/esm/LikertScaleLegacy/LikertScaleLegacy.mjs +5 -6
  122. package/dist/esm/Loading/LoadingSpinner/LoadingSpinner.mjs +6 -42
  123. package/dist/esm/Loading/LoadingSpinner/LoadingSpinner.module.css.mjs +8 -0
  124. package/dist/esm/Loading/LoadingSpinner/subcomponents/SpinnerIcon.mjs +72 -0
  125. package/dist/esm/Modal/ConfirmationModal/ConfirmationModal.mjs +31 -26
  126. package/dist/esm/Modal/GenericModal/subcomponents/ModalHeader/ModalHeader.mjs +4 -5
  127. package/dist/esm/MultiSelect/subcomponents/Checkbox/Checkbox.mjs +7 -17
  128. package/dist/esm/MultiSelect/subcomponents/MultiSelectToggle/MultiSelectToggle.mjs +5 -8
  129. package/dist/esm/Notification/subcomponents/CancelButton/CancelButton.mjs +4 -3
  130. package/dist/esm/Notification/subcomponents/NotificationIcon/NotificationIcon.mjs +33 -38
  131. package/dist/esm/Notification/subcomponents/NotificationIcon/NotificationIcon.module.css.mjs +4 -0
  132. package/dist/esm/Pagination/subcomponents/DirectionalLink/DirectionalLink.mjs +11 -19
  133. package/dist/esm/Pagination/subcomponents/TruncateIndicator/TruncateIndicator.mjs +4 -5
  134. package/dist/esm/Popover/Popover.mjs +5 -4
  135. package/dist/esm/Popover/utils/classMappers.mjs +21 -16
  136. package/dist/esm/RichTextEditor/RichTextEditor/utils/controlmap.mjs +33 -29
  137. package/dist/esm/RichTextEditor/utils/plugins/LinkManager/components/LinkPopover/LinkPopover.mjs +10 -12
  138. package/dist/esm/Select/Select.mjs +9 -11
  139. package/dist/esm/SplitButton/subcomponents/DropdownButton/DropdownButton.mjs +4 -4
  140. package/dist/esm/Table/Table.mjs +11 -10
  141. package/dist/esm/Tag/Tag.mjs +21 -17
  142. package/dist/esm/TextArea/TextArea.mjs +21 -53
  143. package/dist/esm/TextArea/TextArea.module.css.mjs +12 -0
  144. package/dist/esm/TextField/TextField.mjs +7 -6
  145. package/dist/esm/TextField/TextField.module.scss.mjs +4 -6
  146. package/dist/esm/Tile/subcomponents/GenericTile/GenericTile.mjs +8 -7
  147. package/dist/esm/TitleBlockZen/TitleBlockZen.mjs +9 -12
  148. package/dist/esm/TitleBlockZen/subcomponents/MainActions.mjs +7 -7
  149. package/dist/esm/TitleBlockZen/subcomponents/MobileActions.mjs +13 -18
  150. package/dist/esm/TitleBlockZen/subcomponents/SecondaryActions.mjs +7 -7
  151. package/dist/esm/ToggleSwitch/ToggleSwitch/ToggleSwitch.mjs +5 -5
  152. package/dist/esm/Workflow/subcomponents/Footer/components/ProgressStepper/ProgressStepper.mjs +16 -21
  153. package/dist/esm/__future__/Icon/Icon.mjs +38 -0
  154. package/dist/esm/__future__/Icon/Icon.module.css.mjs +8 -0
  155. package/dist/esm/__future__/Icon/constants.mjs +6 -0
  156. package/dist/esm/__future__/Select/subcomponents/ListBox/ListBox.mjs +7 -11
  157. package/dist/esm/__future__/Select/subcomponents/Option/Option.mjs +4 -5
  158. package/dist/esm/__future__/Select/subcomponents/SelectToggle/SelectToggle.mjs +6 -10
  159. package/dist/esm/__future__/Tabs/Tabs.mjs +15 -0
  160. package/dist/esm/__future__/Tabs/subcomponents/Tab/Tab.mjs +30 -0
  161. package/dist/esm/__future__/Tabs/subcomponents/Tab/Tab.module.css.mjs +5 -0
  162. package/dist/esm/__future__/Tabs/subcomponents/TabList/TabList.mjs +22 -0
  163. package/dist/esm/__future__/Tabs/subcomponents/TabList/TabList.module.css.mjs +5 -0
  164. package/dist/esm/__future__/Tabs/subcomponents/TabPanel/TabPanel.mjs +16 -0
  165. package/dist/esm/__future__/Tag/RemovableTag/subcomponents/RemoveButton.mjs +4 -3
  166. package/dist/esm/future.mjs +5 -0
  167. package/dist/styles.css +828 -1388
  168. package/dist/types/Filter/FilterBar/context/FilterBarContext.d.ts +2 -0
  169. package/dist/types/Filter/FilterBar/context/reducer/filterBarStateReducer.d.ts +3 -0
  170. package/dist/types/Filter/FilterBar/context/types.d.ts +1 -0
  171. package/dist/types/Filter/FilterMultiSelect/FilterMultiSelect.d.ts +2 -1
  172. package/dist/types/Filter/FilterMultiSelect/context/MenuTriggerProvider/MenuTriggerProvider.d.ts +2 -1
  173. package/dist/types/Loading/LoadingSpinner/LoadingSpinner.d.ts +2 -2
  174. package/dist/types/Loading/LoadingSpinner/subcomponents/SpinnerIcon.d.ts +5 -0
  175. package/dist/types/Loading/LoadingSpinner/subcomponents/index.d.ts +1 -0
  176. package/dist/types/Tabs/subcomponents/index.d.ts +0 -1
  177. package/dist/types/TextArea/TextArea.d.ts +4 -0
  178. package/dist/types/__future__/Icon/Icon.d.ts +21 -0
  179. package/dist/types/__future__/Icon/constants.d.ts +5 -0
  180. package/dist/types/__future__/Icon/index.d.ts +1 -0
  181. package/dist/types/__future__/Icon/types.d.ts +4 -0
  182. package/dist/types/__future__/Tabs/Tabs.d.ts +11 -0
  183. package/dist/types/__future__/Tabs/index.d.ts +2 -0
  184. package/dist/types/__future__/Tabs/subcomponents/Tab/Tab.d.ts +12 -0
  185. package/dist/types/__future__/Tabs/subcomponents/Tab/index.d.ts +1 -0
  186. package/dist/types/__future__/Tabs/subcomponents/TabList/TabList.d.ts +17 -0
  187. package/dist/types/__future__/Tabs/subcomponents/TabList/index.d.ts +1 -0
  188. package/dist/types/__future__/Tabs/subcomponents/TabPanel/TabPanel.d.ts +6 -0
  189. package/dist/types/__future__/Tabs/subcomponents/TabPanel/index.d.ts +1 -0
  190. package/dist/types/__future__/Tabs/subcomponents/index.d.ts +3 -0
  191. package/dist/types/__future__/index.d.ts +2 -0
  192. package/package.json +36 -37
  193. package/src/Avatar/Avatar.module.scss +10 -12
  194. package/src/Avatar/Avatar.tsx +14 -5
  195. package/src/BrandMoment/_docs/BrandMoment.stories.tsx +6 -10
  196. package/src/BrandMoment/_docs/ExampleHeaders.tsx +2 -2
  197. package/src/Calendar/CalendarRange/CalendarRange.tsx +7 -3
  198. package/src/Calendar/CalendarSingle/CalendarSingle.tsx +7 -3
  199. package/src/Calendar/LegacyCalendarRange/LegacyCalendarRange.tsx +7 -3
  200. package/src/Calendar/baseCalendarClassNames.module.scss +0 -4
  201. package/src/Checkbox/Checkbox/Checkbox.module.scss +2 -10
  202. package/src/Checkbox/Checkbox/Checkbox.tsx +6 -8
  203. package/src/ClearButton/ClearButton.tsx +2 -2
  204. package/src/Collapsible/Collapsible/Collapsible.tsx +5 -6
  205. package/src/Collapsible/Collapsible/_docs/Collapsible.stories.tsx +2 -2
  206. package/src/DateInput/DateInputWithIconButton/DateInputWithIconButton.module.scss +2 -7
  207. package/src/DateInput/DateInputWithIconButton/DateInputWithIconButton.tsx +2 -2
  208. package/src/DateRangePicker/DateRangePicker.tsx +2 -2
  209. package/src/EmptyState/_docs/EmptyState.stickersheet.stories.tsx +8 -2
  210. package/src/EmptyState/_docs/EmptyState.stories.tsx +4 -2
  211. package/src/ErrorPage/ErrorPage.tsx +5 -3
  212. package/src/FieldMessage/FieldMessage.tsx +6 -14
  213. package/src/Filter/FilterBar/FilterBar.spec.tsx +99 -12
  214. package/src/Filter/FilterBar/context/FilterBarContext.tsx +11 -2
  215. package/src/Filter/FilterBar/context/reducer/filterBarStateReducer.ts +7 -0
  216. package/src/Filter/FilterBar/context/reducer/setupFilterBarState.ts +1 -0
  217. package/src/Filter/FilterBar/context/types.ts +1 -0
  218. package/src/Filter/FilterBar/subcomponents/AddFiltersMenu/AddFiltersMenu.tsx +14 -4
  219. package/src/Filter/FilterBar/subcomponents/FilterBarButton/FilterBarButton.tsx +10 -2
  220. package/src/Filter/FilterBar/subcomponents/FilterBarMultiSelect/FilterBarMultiSelect.tsx +18 -3
  221. package/src/Filter/FilterButton/FilterButton/FilterButton.module.scss +1 -1
  222. package/src/Filter/FilterButton/FilterButton/FilterButton.tsx +5 -6
  223. package/src/Filter/FilterButton/FilterButtonRemovable/FilterButtonRemovable.tsx +2 -2
  224. package/src/Filter/FilterDateRangePicker/FilterDateRangePicker.spec.tsx +0 -1
  225. package/src/Filter/FilterDateRangePicker/subcomponents/DateRangeInputField/DateRangeInputField.spec.tsx +2 -1
  226. package/src/Filter/FilterMultiSelect/FilterMultiSelect.tsx +3 -1
  227. package/src/Filter/FilterMultiSelect/context/MenuTriggerProvider/MenuTriggerProvider.tsx +4 -1
  228. package/src/Filter/FilterMultiSelect/subcomponents/MultiSelectOption/MultiSelectOption.tsx +2 -2
  229. package/src/Filter/FilterMultiSelect/subcomponents/SelectionControlButton/SelectionControlButton.module.scss +9 -11
  230. package/src/Filter/FilterSelect/FilterSelect.spec.tsx +52 -21
  231. package/src/Filter/FilterSelect/FilterSelect.tsx +2 -1
  232. package/src/Filter/FilterSelect/_docs/FilterSelect.stories.tsx +0 -1
  233. package/src/GuidanceBlock/GuidanceBlock.module.scss +4 -5
  234. package/src/GuidanceBlock/GuidanceBlock.tsx +6 -2
  235. package/src/Icon/_docs/{Icon.stories.tsx → Icon.docs.stories.tsx} +1 -1
  236. package/src/Icon/_docs/Icon.mdx +1 -2
  237. package/src/Icon/_docs/Icon.stickersheet.stories.tsx +1 -1
  238. package/src/Icon/bin/update-icons.sh +1 -1
  239. package/src/Illustration/utils/usePausePlay.tsx +7 -5
  240. package/src/Input/Input/_docs/Input.stickersheet.stories.tsx +7 -5
  241. package/src/Input/Input/_docs/Input.stories.tsx +5 -3
  242. package/src/Input/InputRange/InputRange.module.scss +4 -4
  243. package/src/Input/InputSearch/InputSearch.module.scss +21 -21
  244. package/src/Input/InputSearch/InputSearch.tsx +2 -2
  245. package/src/Label/Label.module.scss +4 -0
  246. package/src/LikertScaleLegacy/LikertScaleLegacy.module.scss +7 -8
  247. package/src/LikertScaleLegacy/LikertScaleLegacy.tsx +2 -2
  248. package/src/Loading/LoadingGraphic/_docs/LoadingGraphic.stories.tsx +2 -2
  249. package/src/Loading/LoadingSpinner/LoadingSpinner.module.css +32 -0
  250. package/src/Loading/LoadingSpinner/LoadingSpinner.tsx +10 -54
  251. package/src/Loading/LoadingSpinner/_docs/LoadingSpinner.mdx +7 -2
  252. package/src/Loading/LoadingSpinner/_docs/LoadingSpinner.stickersheet.stories.tsx +2 -1
  253. package/src/Loading/LoadingSpinner/_docs/LoadingSpinner.stories.tsx +19 -0
  254. package/src/Loading/LoadingSpinner/subcomponents/SpinnerIcon.tsx +87 -0
  255. package/src/Loading/LoadingSpinner/subcomponents/index.ts +1 -0
  256. package/src/Modal/ConfirmationModal/ConfirmationModal.module.scss +2 -0
  257. package/src/Modal/ConfirmationModal/ConfirmationModal.tsx +32 -35
  258. package/src/Modal/ContextModal/ContextModal.module.scss +4 -4
  259. package/src/Modal/GenericModal/GenericModal.module.scss +8 -8
  260. package/src/Modal/GenericModal/subcomponents/ModalHeader/ModalHeader.module.scss +2 -2
  261. package/src/Modal/GenericModal/subcomponents/ModalHeader/ModalHeader.tsx +2 -2
  262. package/src/Modal/InputEditModal/InputEditModal.module.scss +4 -4
  263. package/src/MultiSelect/MultiSelect.spec.tsx +7 -3
  264. package/src/MultiSelect/subcomponents/Checkbox/Checkbox.module.scss +0 -6
  265. package/src/MultiSelect/subcomponents/Checkbox/Checkbox.tsx +10 -9
  266. package/src/MultiSelect/subcomponents/MultiSelectOptions/MultiSelectOptions.spec.tsx +11 -7
  267. package/src/MultiSelect/subcomponents/MultiSelectToggle/MultiSelectToggle.tsx +5 -7
  268. package/src/Notification/subcomponents/CancelButton/CancelButton.tsx +2 -2
  269. package/src/Notification/subcomponents/GenericNotification/_mixins.scss +9 -8
  270. package/src/Notification/subcomponents/NotificationIcon/NotificationIcon.module.css +3 -0
  271. package/src/Notification/subcomponents/NotificationIcon/NotificationIcon.tsx +22 -16
  272. package/src/Pagination/subcomponents/DirectionalLink/DirectionalLink.module.scss +0 -4
  273. package/src/Pagination/subcomponents/DirectionalLink/DirectionalLink.tsx +13 -12
  274. package/src/Pagination/subcomponents/TruncateIndicator/TruncateIndicator.module.scss +0 -1
  275. package/src/Pagination/subcomponents/TruncateIndicator/TruncateIndicator.tsx +2 -2
  276. package/src/Popover/Popover.module.scss +3 -3
  277. package/src/Popover/Popover.tsx +2 -2
  278. package/src/Popover/utils/classMappers.tsx +6 -11
  279. package/src/RichTextEditor/RichTextEditor/RichTextEditor.module.scss +2 -2
  280. package/src/RichTextEditor/RichTextEditor/subcomponents/ToggleIconButton/ToggleIconButton.module.scss +1 -1
  281. package/src/RichTextEditor/RichTextEditor/subcomponents/ToggleIconButton/_docs/ToggleIconButton.stickersheet.stories.tsx +7 -7
  282. package/src/RichTextEditor/RichTextEditor/subcomponents/ToggleIconButton/_docs/ToggleIconButton.stories.tsx +2 -2
  283. package/src/RichTextEditor/RichTextEditor/subcomponents/Toolbar/Toolbar.spec.tsx +7 -4
  284. package/src/RichTextEditor/RichTextEditor/subcomponents/Toolbar/_docs/Toolbar.stories.tsx +18 -12
  285. package/src/RichTextEditor/RichTextEditor/utils/controlmap.tsx +25 -18
  286. package/src/RichTextEditor/utils/plugins/LinkManager/components/LinkPopover/LinkPopover.tsx +4 -8
  287. package/src/Select/Select.module.scss +9 -9
  288. package/src/Select/Select.tsx +10 -7
  289. package/src/SplitButton/subcomponents/DropdownButton/DropdownButton.spec.tsx +4 -5
  290. package/src/SplitButton/subcomponents/DropdownButton/DropdownButton.tsx +2 -2
  291. package/src/Table/Table.module.scss +11 -7
  292. package/src/Table/Table.tsx +4 -8
  293. package/src/Table/_docs/Table.stickersheet.stories.tsx +4 -4
  294. package/src/Table/_docs/Table.stories.tsx +3 -3
  295. package/src/Tabs/subcomponents/index.ts +0 -1
  296. package/src/Tag/Tag.module.scss +2 -0
  297. package/src/Tag/Tag.tsx +7 -13
  298. package/src/Text/Text.module.scss +2 -0
  299. package/src/TextArea/TextArea.module.css +142 -0
  300. package/src/TextArea/TextArea.tsx +25 -53
  301. package/src/TextField/TextField.module.scss +10 -36
  302. package/src/TextField/TextField.spec.tsx +9 -4
  303. package/src/TextField/TextField.tsx +4 -6
  304. package/src/TextField/_docs/TextField.stickersheet.stories.tsx +9 -1
  305. package/src/TextField/_docs/TextField.stories.tsx +4 -3
  306. package/src/Tile/subcomponents/GenericTile/GenericTile.module.scss +7 -8
  307. package/src/Tile/subcomponents/GenericTile/GenericTile.tsx +3 -3
  308. package/src/TitleBlockZen/TitleBlockZen.module.scss +15 -21
  309. package/src/TitleBlockZen/TitleBlockZen.spec.tsx +1 -1
  310. package/src/TitleBlockZen/TitleBlockZen.tsx +6 -9
  311. package/src/TitleBlockZen/_docs/TitleBlockZen.stories.tsx +5 -5
  312. package/src/TitleBlockZen/subcomponents/MainActions.tsx +5 -3
  313. package/src/TitleBlockZen/subcomponents/MobileActions.module.scss +2 -2
  314. package/src/TitleBlockZen/subcomponents/MobileActions.tsx +13 -16
  315. package/src/TitleBlockZen/subcomponents/SecondaryActions.tsx +3 -3
  316. package/src/ToggleSwitch/ToggleSwitch/ToggleSwitch.module.scss +0 -3
  317. package/src/ToggleSwitch/ToggleSwitch/ToggleSwitch.tsx +2 -2
  318. package/src/Workflow/_docs/Workflow.stories.tsx +4 -5
  319. package/src/Workflow/_docs/WorkflowHeader.stories.tsx +4 -5
  320. package/src/Workflow/_docs/controls/controls.tsx +4 -4
  321. package/src/Workflow/subcomponents/Footer/components/ProgressStepper/ProgressStepper.tsx +6 -31
  322. package/src/__actions__/Button/v1/Button/Button.module.scss +0 -1
  323. package/src/__actions__/Button/v1/Button/_docs/Button.mdx +1 -1
  324. package/src/__actions__/Button/v1/Button/_docs/Button.stickersheet.stories.tsx +6 -6
  325. package/src/__actions__/Button/v1/Button/_docs/Button.stories.tsx +7 -6
  326. package/src/__actions__/Button/v1/IconButton/_docs/IconButton.stickersheet.stories.tsx +7 -7
  327. package/src/__actions__/Button/v1/IconButton/_docs/IconButton.stories.tsx +5 -5
  328. package/src/__actions__/Button/v2/Button/_docs/Button.mdx +1 -1
  329. package/src/__actions__/Button/v2/Button/_docs/Button.stories.tsx +7 -6
  330. package/src/__actions__/Button/v2/IconButton/_docs/IconButton.stories.tsx +5 -5
  331. package/src/__actions__/Button/v3/_docs/ApiSpecification.mdx +1 -1
  332. package/src/__actions__/Button/v3/_docs/Button.docs.stories.tsx +1 -1
  333. package/src/__actions__/Button/v3/_docs/Button.mdx +1 -1
  334. package/src/__actions__/Button/v3/_docs/Button.spec.stories.tsx +1 -1
  335. package/src/__actions__/Button/v3/_docs/Button.stickersheet.stories.tsx +3 -3
  336. package/src/__actions__/Button/v3/_docs/Button.stories.tsx +1 -1
  337. package/src/__actions__/Menu/v1/_docs/Menu.stickersheet.stories.tsx +3 -3
  338. package/src/__actions__/Menu/v1/_docs/Menu.stories.tsx +3 -3
  339. package/src/__actions__/Menu/v1/_docs/MenuContentExample.tsx +6 -6
  340. package/src/__actions__/Menu/v1/_docs/examples.tsx +5 -5
  341. package/src/__actions__/Menu/v2/_docs/Menu.stories.tsx +3 -3
  342. package/src/__actions__/Menu/v3/_docs/ApiSpecification.mdx +1 -3
  343. package/src/__actions__/Menu/v3/_docs/Menu.docs.stories.tsx +46 -45
  344. package/src/__actions__/Menu/v3/_docs/Menu.mdx +1 -1
  345. package/src/__actions__/Menu/v3/_docs/Menu.spec.stories.tsx +21 -23
  346. package/src/__actions__/Menu/v3/_docs/Menu.stories.tsx +12 -15
  347. package/src/__future__/Icon/Icon.module.css +35 -0
  348. package/src/__future__/Icon/Icon.spec.tsx +36 -0
  349. package/src/__future__/Icon/Icon.tsx +85 -0
  350. package/src/__future__/Icon/_docs/Icon--api-specification.mdx +98 -0
  351. package/src/__future__/Icon/_docs/Icon--usage-guidelines.mdx +145 -0
  352. package/src/__future__/Icon/_docs/Icon.docs.module.css +17 -0
  353. package/src/__future__/Icon/_docs/Icon.docs.stories.tsx +524 -0
  354. package/src/__future__/Icon/_docs/Icon.stickersheet.stories.tsx +126 -0
  355. package/src/__future__/Icon/_docs/assets/interface-dont.png +0 -0
  356. package/src/__future__/Icon/_docs/assets/tooltip-dont.png +0 -0
  357. package/src/__future__/Icon/constants.ts +149 -0
  358. package/src/__future__/Icon/index.ts +1 -0
  359. package/src/__future__/Icon/material-symbols-metadata.json +3370 -0
  360. package/src/__future__/Icon/types.ts +11 -0
  361. package/src/__future__/Select/_docs/Select.stories.tsx +1 -2
  362. package/src/__future__/Select/subcomponents/ListBox/ListBox.tsx +3 -4
  363. package/src/__future__/Select/subcomponents/Option/Option.tsx +2 -2
  364. package/src/__future__/Select/subcomponents/SelectToggle/SelectToggle.module.scss +1 -1
  365. package/src/__future__/Select/subcomponents/SelectToggle/SelectToggle.tsx +6 -9
  366. package/src/__future__/Tabs/Tabs.tsx +18 -0
  367. package/src/__future__/Tabs/_docs/Tabs--api-specification.mdx +43 -0
  368. package/src/__future__/Tabs/_docs/Tabs--migration-guide.mdx +93 -0
  369. package/src/__future__/Tabs/_docs/Tabs.stories.tsx +74 -0
  370. package/src/__future__/Tabs/index.ts +2 -0
  371. package/src/__future__/Tabs/subcomponents/Tab/Tab.module.css +94 -0
  372. package/src/__future__/Tabs/subcomponents/Tab/Tab.tsx +58 -0
  373. package/src/__future__/Tabs/subcomponents/Tab/index.ts +1 -0
  374. package/src/__future__/Tabs/subcomponents/TabList/TabList.module.css +8 -0
  375. package/src/__future__/Tabs/subcomponents/TabList/TabList.tsx +45 -0
  376. package/src/__future__/Tabs/subcomponents/TabList/index.ts +1 -0
  377. package/src/__future__/Tabs/subcomponents/TabPanel/TabPanel.module.css +12 -0
  378. package/src/__future__/Tabs/subcomponents/TabPanel/TabPanel.tsx +20 -0
  379. package/src/__future__/Tabs/subcomponents/TabPanel/index.ts +1 -0
  380. package/src/__future__/Tabs/subcomponents/index.ts +3 -0
  381. package/src/__future__/Tag/RemovableTag/_docs/RemovableTag.stories.tsx +0 -77
  382. package/src/__future__/Tag/RemovableTag/subcomponents/RemoveButton.module.scss +1 -58
  383. package/src/__future__/Tag/RemovableTag/subcomponents/RemoveButton.tsx +2 -12
  384. package/src/__future__/Tag/Tag/Tag.module.scss +1 -1
  385. package/src/__future__/Tag/Tag/_docs/Tag-migration-guide.stories.tsx +6 -17
  386. package/src/__future__/Tag/Tag/_docs/Tag.stickersheet.stories.tsx +5 -2
  387. package/src/__future__/Tag/Tag/_docs/Tag.stories.tsx +13 -6
  388. package/src/__future__/index.ts +2 -0
  389. package/src/__overlays__/Tooltip/v1/_docs/Tooltip.stickersheet.stories.tsx +10 -10
  390. package/src/__overlays__/Tooltip/v1/_docs/Tooltip.stories.tsx +7 -4
  391. package/src/__overlays__/Tooltip/v1/utils/isSemanticElement.spec.tsx +4 -11
  392. package/src/__overlays__/Tooltip/v3/_docs/Tooltip.docs.stories.tsx +10 -10
  393. package/src/__overlays__/Tooltip/v3/_docs/Tooltip.spec.stories.tsx +3 -3
  394. package/codemods/utils/getTagName.spec.ts +0 -24
  395. package/codemods/utils/getTagName.ts +0 -32
  396. package/dist/cjs/Loading/LoadingSpinner/LoadingSpinner.module.scss.cjs +0 -7
  397. package/dist/cjs/TextArea/TextArea.module.scss.cjs +0 -13
  398. package/dist/cjs/__future__/Tag/RemovableTag/subcomponents/RemoveTagIcon.cjs +0 -23
  399. package/dist/esm/Loading/LoadingSpinner/LoadingSpinner.module.scss.mjs +0 -5
  400. package/dist/esm/TextArea/TextArea.module.scss.mjs +0 -11
  401. package/dist/esm/__future__/Tag/RemovableTag/subcomponents/RemoveTagIcon.mjs +0 -15
  402. package/dist/types/__future__/Tag/RemovableTag/subcomponents/RemoveTagIcon.d.ts +0 -2
  403. package/src/Loading/LoadingSpinner/LoadingSpinner.module.scss +0 -16
  404. package/src/TextArea/TextArea.module.scss +0 -137
  405. package/src/__future__/Tag/RemovableTag/subcomponents/RemoveTagIcon.tsx +0 -21
  406. /package/dist/cjs/__utilities__/{isClientReady → useIsClientReady}/useIsClientReady.cjs +0 -0
  407. /package/dist/esm/__utilities__/{isClientReady → useIsClientReady}/useIsClientReady.mjs +0 -0
  408. /package/dist/types/__utilities__/{isClientReady → useIsClientReady}/index.d.ts +0 -0
  409. /package/dist/types/__utilities__/{isClientReady → useIsClientReady}/useIsClientReady.d.ts +0 -0
  410. /package/src/__utilities__/{isClientReady → useIsClientReady}/index.ts +0 -0
  411. /package/src/__utilities__/{isClientReady → useIsClientReady}/useIsClientReady.tsx +0 -0
package/dist/styles.css CHANGED
@@ -1,31 +1,59 @@
1
- @layer tokens, normalize, reset;@layer tokens{:root{--theme-key:heart;--animation-easing-function-ease-in-out:cubic-bezier(0.455,0.03,0.515,0.955);--animation-easing-function-ease-in:cubic-bezier(0.55,0.085,0.68,0.53);--animation-easing-function-ease-out:cubic-bezier(0.25,0.46,0.45,0.94);--animation-easing-function-linear:linear;--animation-easing-function-bounce-in:cubic-bezier(0.485,0.155,0.24,1.245);--animation-easing-function-bounce-out:cubic-bezier(0.485,0.155,0.515,0.845);--animation-easing-function-bounce-in-out:cubic-bezier(0.76,-0.245,0.24,1.245);--animation-duration-instant:0ms;--animation-duration-immediate:100ms;--animation-duration-rapid:200ms;--animation-duration-fast:300ms;--animation-duration-slow:400ms;--animation-duration-deliberate:700ms;--border-solid-border-width:2px;--border-solid-border-radius:7px;--border-solid-border-style:solid;--border-solid-border-color:#e1e2ea;--border-solid-border-color-rgb:225,226,234;--border-dashed-border-width:2px;--border-dashed-border-radius:7px;--border-dashed-border-style:dashed;--border-borderless-border-width:2px;--border-borderless-border-radius:7px;--border-borderless-border-style:solid;--border-borderless-border-color:transparent;--border-borderless-border-color-rgb:0,0,0;--border-focus-ring-border-width:2px;--border-focus-ring-border-radius:10px;--border-focus-ring-border-style:solid;--border-width-1:1px;--color-purple-100:#f4edf8;--color-purple-100-rgb:244,237,248;--color-purple-200:#dfc9ea;--color-purple-200-rgb:223,201,234;--color-purple-300:#c9a5dd;--color-purple-300-rgb:201,165,221;--color-purple-400:#ae67b1;--color-purple-400-rgb:174,103,177;--color-purple-500:#844587;--color-purple-500-rgb:132,69,135;--color-purple-600:#5f3361;--color-purple-600-rgb:95,51,97;--color-purple-700:#4a234d;--color-purple-700-rgb:74,35,77;--color-purple-800:#2f2438;--color-purple-800-rgb:47,36,56;--color-blue-100:#e6f6ff;--color-blue-100-rgb:230,246,255;--color-blue-200:#bde2f5;--color-blue-200-rgb:189,226,245;--color-blue-300:#73c0e8;--color-blue-300-rgb:115,192,232;--color-blue-400:#008bd6;--color-blue-400-rgb:0,139,214;--color-blue-500:#0168b3;--color-blue-500-rgb:1,104,179;--color-blue-600:#004970;--color-blue-600-rgb:0,73,112;--color-blue-700:#003157;--color-blue-700-rgb:0,49,87;--color-green-100:#e8f8f4;--color-green-100-rgb:232,248,244;--color-green-200:#c4ede2;--color-green-200-rgb:196,237,226;--color-green-300:#8fdbc7;--color-green-300-rgb:143,219,199;--color-green-400:#5dcaad;--color-green-400-rgb:93,202,173;--color-green-500:#3f9a86;--color-green-500-rgb:63,154,134;--color-green-600:#2c7d67;--color-green-600-rgb:44,125,103;--color-green-700:#22594a;--color-green-700-rgb:34,89,74;--color-yellow-100:#fff9e4;--color-yellow-100-rgb:255,249,228;--color-yellow-200:#ffeeb3;--color-yellow-200-rgb:255,238,179;--color-yellow-300:#ffe36e;--color-yellow-300-rgb:255,227,110;--color-yellow-400:#ffca4d;--color-yellow-400-rgb:255,202,77;--color-yellow-500:#ffb600;--color-yellow-500-rgb:255,182,0;--color-yellow-600:#c68600;--color-yellow-600-rgb:198,134,0;--color-yellow-700:#876400;--color-yellow-700-rgb:135,100,0;--color-red-100:#fdeaee;--color-red-100-rgb:253,234,238;--color-red-200:#f9c2cb;--color-red-200-rgb:249,194,203;--color-red-300:#f597a8;--color-red-300-rgb:245,151,168;--color-red-400:#e0707d;--color-red-400-rgb:224,112,125;--color-red-500:#c93b55;--color-red-500-rgb:201,59,85;--color-red-600:#a82433;--color-red-600-rgb:168,36,51;--color-red-700:#6c1e20;--color-red-700-rgb:108,30,32;--color-orange-100:#fff0e8;--color-orange-100-rgb:255,240,232;--color-orange-200:#ffd1b9;--color-orange-200-rgb:255,209,185;--color-orange-300:#ffb08a;--color-orange-300-rgb:255,176,138;--color-orange-400:#ff9461;--color-orange-400-rgb:255,148,97;--color-orange-500:#e96c2f;--color-orange-500-rgb:233,108,47;--color-orange-600:#b74302;--color-orange-600-rgb:183,67,2;--color-orange-700:#903c00;--color-orange-700-rgb:144,60,0;--color-gray-100:#f9f9f9;--color-gray-100-rgb:249,249,249;--color-gray-200:#f4f4f5;--color-gray-200-rgb:244,244,245;--color-gray-300:#eaeaec;--color-gray-300-rgb:234,234,236;--color-gray-400:#cdcdd0;--color-gray-400-rgb:205,205,208;--color-gray-500:#878792;--color-gray-500-rgb:135,135,146;--color-gray-600:#524e56;--color-gray-600-rgb:82,78,86;--color-white:#fff;--color-white-rgb:255,255,255;--color-black:#000;--color-black-rgb:0,0,0;--data-viz-favorable:#7dd5bd;--data-viz-favorable-rgb:125,213,189;--data-viz-unfavorable:#e68d97;--data-viz-unfavorable-rgb:230,141,151;--layout-content-max-width:1392px;--layout-content-max-width-with-sidebar:1080px;--layout-content-side-margin:72px;--layout-mobile-actions-drawer-height:60px;--layout-navigation-bar-height:72px;--layout-breakpoints-medium:768px;--layout-breakpoints-large:1080px;--shadow-small-box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 3px 16px 0 rgba(0,0,0,.06);--shadow-large-box-shadow:0 3px 9px 0 rgba(0,0,0,.1),0 8px 40px 0 rgba(0,0,0,.08);--spacing-0:0;--spacing-1:.0625rem;--spacing-2:.125rem;--spacing-4:.25rem;--spacing-6:.375rem;--spacing-8:.5rem;--spacing-12:.75rem;--spacing-16:1rem;--spacing-20:1.25rem;--spacing-24:1.5rem;--spacing-32:2rem;--spacing-40:2.5rem;--spacing-48:3rem;--spacing-56:3.5rem;--spacing-64:4rem;--spacing-72:4.5rem;--spacing-80:5rem;--spacing-96:6rem;--spacing-112:7rem;--spacing-128:8rem;--spacing-160:10rem;--spacing-200:12.5rem;--spacing-240:15rem;--spacing-280:17.5rem;--spacing-320:20rem;--spacing-xs:0.375rem;--spacing-sm:0.75rem;--spacing-md:1.5rem;--spacing-lg:2.25rem;--spacing-xl:3rem;--spacing-xxl:3.75rem;--spacing-xxxl:4.5rem;--spacing-xxxxl:5.25rem;--spacing-xxxxxl:6rem;--typography-data-large-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-large-font-weight:700;--typography-data-large-font-size:5.25rem;--typography-data-large-line-height:5.25rem;--typography-data-large-letter-spacing:normal;--typography-data-large-units-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-large-units-font-weight:700;--typography-data-large-units-font-size:2.625rem;--typography-data-large-units-line-height:5.25rem;--typography-data-large-units-letter-spacing:normal;--typography-data-medium-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-medium-font-weight:700;--typography-data-medium-font-size:3rem;--typography-data-medium-line-height:5rem;--typography-data-medium-letter-spacing:normal;--typography-data-medium-units-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-medium-units-font-weight:700;--typography-data-medium-units-font-size:1.5rem;--typography-data-medium-units-line-height:5rem;--typography-data-medium-units-letter-spacing:normal;--typography-data-small-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-small-font-weight:700;--typography-data-small-font-size:1.5rem;--typography-data-small-line-height:1.5rem;--typography-data-small-letter-spacing:normal;--typography-data-small-units-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-small-units-font-weight:700;--typography-data-small-units-font-size:1.125rem;--typography-data-small-units-line-height:1.5rem;--typography-data-small-units-letter-spacing:normal;--typography-display-0-font-family:"Tiempos Headline",Georgia,serif;--typography-display-0-font-weight:800;--typography-display-0-font-size:4.5rem;--typography-display-0-line-height:5.25rem;--typography-display-0-letter-spacing:0em;--typography-heading-1-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-heading-1-font-weight:700;--typography-heading-1-font-size:2.125rem;--typography-heading-1-line-height:2.625rem;--typography-heading-1-letter-spacing:normal;--typography-heading-2-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-heading-2-font-weight:700;--typography-heading-2-font-size:1.75rem;--typography-heading-2-line-height:2.25rem;--typography-heading-2-letter-spacing:normal;--typography-heading-3-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-heading-3-font-weight:700;--typography-heading-3-font-size:1.375rem;--typography-heading-3-line-height:1.875rem;--typography-heading-3-letter-spacing:normal;--typography-heading-4-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-heading-4-font-weight:600;--typography-heading-4-font-size:1.125rem;--typography-heading-4-line-height:1.5rem;--typography-heading-4-letter-spacing:normal;--typography-heading-5-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-heading-5-font-weight:600;--typography-heading-5-font-size:1rem;--typography-heading-5-line-height:1.5rem;--typography-heading-5-letter-spacing:normal;--typography-heading-6-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-heading-6-font-weight:700;--typography-heading-6-font-size:0.875rem;--typography-heading-6-line-height:1.5rem;--typography-heading-6-letter-spacing:normal;--typography-paragraph-intro-lede-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-paragraph-intro-lede-font-weight:400;--typography-paragraph-intro-lede-font-size:1.25rem;--typography-paragraph-intro-lede-line-height:1.875rem;--typography-paragraph-intro-lede-letter-spacing:0;--typography-paragraph-intro-lede-max-width:975px;--typography-paragraph-body-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-paragraph-body-font-weight:400;--typography-paragraph-body-font-size:1rem;--typography-paragraph-body-line-height:1.5rem;--typography-paragraph-body-letter-spacing:normal;--typography-paragraph-body-max-width:780px;--typography-paragraph-small-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-paragraph-small-font-weight:400;--typography-paragraph-small-font-size:0.875rem;--typography-paragraph-small-line-height:1.125rem;--typography-paragraph-small-letter-spacing:normal;--typography-paragraph-small-max-width:680px;--typography-paragraph-extra-small-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-paragraph-extra-small-font-weight:400;--typography-paragraph-extra-small-font-size:0.75rem;--typography-paragraph-extra-small-line-height:1.125rem;--typography-paragraph-extra-small-letter-spacing:normal;--typography-paragraph-extra-small-max-width:600px;--typography-paragraph-bold-font-weight:600;--typography-button-primary-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-button-primary-font-weight:700;--typography-button-primary-font-size:1.125rem;--typography-button-primary-line-height:1.5rem;--typography-button-primary-letter-spacing:normal;--typography-button-secondary-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-button-secondary-font-weight:500;--typography-button-secondary-font-size:1rem;--typography-button-secondary-line-height:1.5rem;--typography-button-secondary-letter-spacing:normal}}@layer normalize{html{text-size-adjust:100%;line-height:1.15}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{appearance:none}::-webkit-file-upload-button{appearance:button;font:inherit}details{display:block}summary{display:list-item}[hidden],template{display:none}}@layer reset{@font-face{font-family:Tiempos Headline;font-weight:800;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/tiempos/tiempos-headline-bold.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/tiempos/tiempos-headline-bold.woff)}@font-face{font-family:Tiempos Headline;font-weight:500;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/tiempos/tiempos-headline-medium.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/tiempos/tiempos-headline-medium.woff)}@font-face{font-family:Greycliff CF;font-weight:300;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-light.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:400;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-regular.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:500;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-medium.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:600;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-demi-bold.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:700;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-bold.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:800;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-extra-bold.woff) format("woff")}@font-face{font-family:Inter;font-weight:300;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-light.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-light.woff)}@font-face{font-family:Inter;font-weight:400;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-regular.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-regular.woff)}@font-face{font-family:Inter;font-weight:500;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-medium.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-medium.woff)}@font-face{font-family:Inter;font-weight:600;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-demi-bold.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-demi-bold.woff)}@font-face{font-family:Inter;font-weight:700;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-bold.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-bold.woff)}@font-face{font-family:Inter;font-weight:800;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-extra-bold.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-extra-bold.woff)}@font-face{font-family:IBM Plex Mono;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/ibm-plex-mono/ibm-plex-mono-regular.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/ibm-plex-mono/ibm-plex-mono-regular.woff)}}@layer reset{*,:after,:before{border-color:var(--border-solid-border-color,"currentColor");border-style:solid;border-width:0}}
1
+ @layer tokens, normalize, reset;@layer tokens{:root{--theme-key:heart;--animation-easing-function-ease-in-out:cubic-bezier(0.455,0.03,0.515,0.955);--animation-easing-function-ease-in:cubic-bezier(0.55,0.085,0.68,0.53);--animation-easing-function-ease-out:cubic-bezier(0.25,0.46,0.45,0.94);--animation-easing-function-linear:linear;--animation-easing-function-bounce-in:cubic-bezier(0.485,0.155,0.24,1.245);--animation-easing-function-bounce-out:cubic-bezier(0.485,0.155,0.515,0.845);--animation-easing-function-bounce-in-out:cubic-bezier(0.76,-0.245,0.24,1.245);--animation-duration-instant:0ms;--animation-duration-immediate:100ms;--animation-duration-rapid:200ms;--animation-duration-fast:300ms;--animation-duration-slow:400ms;--animation-duration-deliberate:700ms;--border-solid-border-width:2px;--border-solid-border-radius:7px;--border-solid-border-style:solid;--border-solid-border-color:#e1e2ea;--border-solid-border-color-rgb:225,226,234;--border-dashed-border-width:2px;--border-dashed-border-radius:7px;--border-dashed-border-style:dashed;--border-borderless-border-width:2px;--border-borderless-border-radius:7px;--border-borderless-border-style:solid;--border-borderless-border-color:transparent;--border-borderless-border-color-rgb:0,0,0;--border-focus-ring-border-width:2px;--border-focus-ring-border-radius:10px;--border-focus-ring-border-style:solid;--border-width-1:1px;--color-purple-100:#f4edf8;--color-purple-100-rgb:244,237,248;--color-purple-200:#dfc9ea;--color-purple-200-rgb:223,201,234;--color-purple-300:#c9a5dd;--color-purple-300-rgb:201,165,221;--color-purple-400:#ae67b1;--color-purple-400-rgb:174,103,177;--color-purple-500:#844587;--color-purple-500-rgb:132,69,135;--color-purple-600:#5f3361;--color-purple-600-rgb:95,51,97;--color-purple-700:#4a234d;--color-purple-700-rgb:74,35,77;--color-purple-800:#2f2438;--color-purple-800-rgb:47,36,56;--color-blue-100:#e6f6ff;--color-blue-100-rgb:230,246,255;--color-blue-200:#bde2f5;--color-blue-200-rgb:189,226,245;--color-blue-300:#73c0e8;--color-blue-300-rgb:115,192,232;--color-blue-400:#008bd6;--color-blue-400-rgb:0,139,214;--color-blue-500:#0168b3;--color-blue-500-rgb:1,104,179;--color-blue-600:#004970;--color-blue-600-rgb:0,73,112;--color-blue-700:#003157;--color-blue-700-rgb:0,49,87;--color-green-100:#e8f8f4;--color-green-100-rgb:232,248,244;--color-green-200:#c4ede2;--color-green-200-rgb:196,237,226;--color-green-300:#8fdbc7;--color-green-300-rgb:143,219,199;--color-green-400:#5dcaad;--color-green-400-rgb:93,202,173;--color-green-500:#3f9a86;--color-green-500-rgb:63,154,134;--color-green-600:#2c7d67;--color-green-600-rgb:44,125,103;--color-green-700:#22594a;--color-green-700-rgb:34,89,74;--color-yellow-100:#fff9e4;--color-yellow-100-rgb:255,249,228;--color-yellow-200:#ffeeb3;--color-yellow-200-rgb:255,238,179;--color-yellow-300:#ffe36e;--color-yellow-300-rgb:255,227,110;--color-yellow-400:#ffca4d;--color-yellow-400-rgb:255,202,77;--color-yellow-500:#ffb600;--color-yellow-500-rgb:255,182,0;--color-yellow-600:#c68600;--color-yellow-600-rgb:198,134,0;--color-yellow-700:#876400;--color-yellow-700-rgb:135,100,0;--color-red-100:#fdeaee;--color-red-100-rgb:253,234,238;--color-red-200:#f9c2cb;--color-red-200-rgb:249,194,203;--color-red-300:#f597a8;--color-red-300-rgb:245,151,168;--color-red-400:#e0707d;--color-red-400-rgb:224,112,125;--color-red-500:#c93b55;--color-red-500-rgb:201,59,85;--color-red-600:#a82433;--color-red-600-rgb:168,36,51;--color-red-700:#6c1e20;--color-red-700-rgb:108,30,32;--color-orange-100:#fff0e8;--color-orange-100-rgb:255,240,232;--color-orange-200:#ffd1b9;--color-orange-200-rgb:255,209,185;--color-orange-300:#ffb08a;--color-orange-300-rgb:255,176,138;--color-orange-400:#ff9461;--color-orange-400-rgb:255,148,97;--color-orange-500:#e96c2f;--color-orange-500-rgb:233,108,47;--color-orange-600:#b74302;--color-orange-600-rgb:183,67,2;--color-orange-700:#903c00;--color-orange-700-rgb:144,60,0;--color-gray-100:#f9f9f9;--color-gray-100-rgb:249,249,249;--color-gray-200:#f4f4f5;--color-gray-200-rgb:244,244,245;--color-gray-300:#eaeaec;--color-gray-300-rgb:234,234,236;--color-gray-400:#cdcdd0;--color-gray-400-rgb:205,205,208;--color-gray-500:#878792;--color-gray-500-rgb:135,135,146;--color-gray-600:#524e56;--color-gray-600-rgb:82,78,86;--color-white:#fff;--color-white-rgb:255,255,255;--color-black:#000;--color-black-rgb:0,0,0;--data-viz-favorable:#7dd5bd;--data-viz-favorable-rgb:125,213,189;--data-viz-unfavorable:#e68d97;--data-viz-unfavorable-rgb:230,141,151;--layout-content-max-width:1392px;--layout-content-max-width-with-sidebar:1080px;--layout-content-side-margin:72px;--layout-mobile-actions-drawer-height:60px;--layout-navigation-bar-height:72px;--layout-breakpoints-medium:768px;--layout-breakpoints-large:1080px;--shadow-small-box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 3px 16px 0 rgba(0,0,0,.06);--shadow-large-box-shadow:0 3px 9px 0 rgba(0,0,0,.1),0 8px 40px 0 rgba(0,0,0,.08);--spacing-0:0;--spacing-1:.0625rem;--spacing-2:.125rem;--spacing-4:.25rem;--spacing-6:.375rem;--spacing-8:.5rem;--spacing-12:.75rem;--spacing-16:1rem;--spacing-20:1.25rem;--spacing-24:1.5rem;--spacing-32:2rem;--spacing-40:2.5rem;--spacing-48:3rem;--spacing-56:3.5rem;--spacing-64:4rem;--spacing-72:4.5rem;--spacing-80:5rem;--spacing-96:6rem;--spacing-112:7rem;--spacing-128:8rem;--spacing-160:10rem;--spacing-200:12.5rem;--spacing-240:15rem;--spacing-280:17.5rem;--spacing-320:20rem;--spacing-xs:0.375rem;--spacing-sm:0.75rem;--spacing-md:1.5rem;--spacing-lg:2.25rem;--spacing-xl:3rem;--spacing-xxl:3.75rem;--spacing-xxxl:4.5rem;--spacing-xxxxl:5.25rem;--spacing-xxxxxl:6rem;--typography-data-large-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-large-font-weight:700;--typography-data-large-font-size:5.25rem;--typography-data-large-line-height:5.25rem;--typography-data-large-letter-spacing:normal;--typography-data-large-units-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-large-units-font-weight:700;--typography-data-large-units-font-size:2.625rem;--typography-data-large-units-line-height:5.25rem;--typography-data-large-units-letter-spacing:normal;--typography-data-medium-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-medium-font-weight:700;--typography-data-medium-font-size:3rem;--typography-data-medium-line-height:5rem;--typography-data-medium-letter-spacing:normal;--typography-data-medium-units-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-medium-units-font-weight:700;--typography-data-medium-units-font-size:1.5rem;--typography-data-medium-units-line-height:5rem;--typography-data-medium-units-letter-spacing:normal;--typography-data-small-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-small-font-weight:700;--typography-data-small-font-size:1.5rem;--typography-data-small-line-height:1.5rem;--typography-data-small-letter-spacing:normal;--typography-data-small-units-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-small-units-font-weight:700;--typography-data-small-units-font-size:1.125rem;--typography-data-small-units-line-height:1.5rem;--typography-data-small-units-letter-spacing:normal;--typography-display-0-font-family:"Tiempos Headline",Georgia,serif;--typography-display-0-font-weight:800;--typography-display-0-font-size:4.5rem;--typography-display-0-line-height:5.25rem;--typography-display-0-letter-spacing:0em;--typography-heading-1-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-heading-1-font-weight:500;--typography-heading-1-font-size:2.125rem;--typography-heading-1-line-height:2.625rem;--typography-heading-1-letter-spacing:normal;--typography-heading-2-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-heading-2-font-weight:600;--typography-heading-2-font-size:1.75rem;--typography-heading-2-line-height:2.25rem;--typography-heading-2-letter-spacing:normal;--typography-heading-3-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-heading-3-font-weight:600;--typography-heading-3-font-size:1.375rem;--typography-heading-3-line-height:1.875rem;--typography-heading-3-letter-spacing:normal;--typography-heading-4-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-heading-4-font-weight:600;--typography-heading-4-font-size:1.125rem;--typography-heading-4-line-height:1.5rem;--typography-heading-4-letter-spacing:normal;--typography-heading-5-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-heading-5-font-weight:600;--typography-heading-5-font-size:1rem;--typography-heading-5-line-height:1.5rem;--typography-heading-5-letter-spacing:normal;--typography-heading-6-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-heading-6-font-weight:600;--typography-heading-6-font-size:0.875rem;--typography-heading-6-line-height:1.5rem;--typography-heading-6-letter-spacing:normal;--typography-paragraph-intro-lede-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-paragraph-intro-lede-font-weight:400;--typography-paragraph-intro-lede-font-size:1.25rem;--typography-paragraph-intro-lede-line-height:1.875rem;--typography-paragraph-intro-lede-letter-spacing:0;--typography-paragraph-intro-lede-max-width:975px;--typography-paragraph-body-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-paragraph-body-font-weight:400;--typography-paragraph-body-font-size:1rem;--typography-paragraph-body-line-height:1.5rem;--typography-paragraph-body-letter-spacing:normal;--typography-paragraph-body-max-width:780px;--typography-paragraph-small-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-paragraph-small-font-weight:400;--typography-paragraph-small-font-size:0.875rem;--typography-paragraph-small-line-height:1.125rem;--typography-paragraph-small-letter-spacing:normal;--typography-paragraph-small-max-width:680px;--typography-paragraph-extra-small-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-paragraph-extra-small-font-weight:400;--typography-paragraph-extra-small-font-size:0.75rem;--typography-paragraph-extra-small-line-height:1.125rem;--typography-paragraph-extra-small-letter-spacing:normal;--typography-paragraph-extra-small-max-width:600px;--typography-paragraph-bold-font-weight:600;--typography-button-primary-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-button-primary-font-weight:500;--typography-button-primary-font-size:1.125rem;--typography-button-primary-line-height:1.5rem;--typography-button-primary-letter-spacing:normal;--typography-button-secondary-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-button-secondary-font-weight:500;--typography-button-secondary-font-size:1rem;--typography-button-secondary-line-height:1.5rem;--typography-button-secondary-letter-spacing:normal}}@layer normalize{html{text-size-adjust:100%;line-height:1.15}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{appearance:none}::-webkit-file-upload-button{appearance:button;font:inherit}details{display:block}summary{display:list-item}[hidden],template{display:none}}@layer reset{@font-face{font-family:Tiempos Headline;font-weight:800;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/tiempos/tiempos-headline-bold.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/tiempos/tiempos-headline-bold.woff)}@font-face{font-family:Tiempos Headline;font-weight:500;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/tiempos/tiempos-headline-medium.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/tiempos/tiempos-headline-medium.woff)}@font-face{font-family:Greycliff CF;font-weight:300;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-light.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:400;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-regular.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:500;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-medium.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:600;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-demi-bold.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:700;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-bold.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:800;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-extra-bold.woff) format("woff")}@font-face{font-family:Inter;font-weight:300;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-light.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-light.woff)}@font-face{font-family:Inter;font-weight:400;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-regular.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-regular.woff)}@font-face{font-family:Inter;font-weight:500;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-medium.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-medium.woff)}@font-face{font-family:Inter;font-weight:600;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-demi-bold.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-demi-bold.woff)}@font-face{font-family:Inter;font-weight:700;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-bold.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-bold.woff)}@font-face{font-family:Inter;font-weight:800;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-extra-bold.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-extra-bold.woff)}@font-face{font-family:IBM Plex Mono;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/ibm-plex-mono/ibm-plex-mono-regular.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/ibm-plex-mono/ibm-plex-mono-regular.woff)}}@layer reset{*,:after,:before{border-color:var(--border-solid-border-color,"currentColor");border-style:solid;border-width:0}}
2
2
  /** THIS IS AN AUTOGENERATED FILE **/
3
3
  /** THIS IS AN AUTOGENERATED FILE **/
4
- .OverlayArrow-module_overlayArrow__hoDyK {
5
- display: flex;
6
- padding: 8px;
4
+ /** THIS IS AN AUTOGENERATED FILE **/
5
+ /** THIS IS AN AUTOGENERATED FILE **/
6
+ /** THIS IS AN AUTOGENERATED FILE **/
7
+ /** THIS IS AN AUTOGENERATED FILE **/
8
+ .Tooltip-module_tooltip__efL1m {
9
+ max-width: 200px;
10
+ padding: var(--spacing-8, 0.5rem) var(--spacing-12, 0.75rem);
11
+ color: var(--color-white, #ffffff);
12
+ text-align: center;
13
+ font-family: var(--typography-paragraph-extra-small-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
14
+ font-size: var(--typography-paragraph-extra-small-font-size, 0.75rem);
15
+ font-weight: var(--typography-paragraph-extra-small-font-weight, 400);
16
+ letter-spacing: var(--typography-paragraph-extra-small-letter-spacing, normal);
17
+ line-height: var(--typography-paragraph-extra-small-line-height, 1.125rem);
18
+ border-radius: var(--border-solid-border-radius, 7px);
19
+ box-shadow: var(--shadow-small-box-shadow, 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 3px 16px 0 rgba(0, 0, 0, 0.06));
20
+ background-color: var(--color-purple-800, #2f2438);
21
+ text-wrap: pretty;
22
+ /* fixes FF gap */
23
+ transform: translate3d(0, 0, 0);
7
24
  }
8
- .OverlayArrow-module_overlayArrow__hoDyK[data-placement=top], .OverlayArrow-module_overlayArrow__hoDyK[data-placement=bottom] {
9
- padding: 0 8px;
25
+ .Tooltip-module_tooltip__efL1m.Tooltip-module_reversed__NnCbZ {
26
+ background-color: var(--color-white, #ffffff);
27
+ color: var(--color-purple-800, #2f2438);
10
28
  }
11
- .OverlayArrow-module_overlayArrow__hoDyK[data-placement=left], .OverlayArrow-module_overlayArrow__hoDyK[data-placement=right] {
12
- padding: 8px 0;
29
+ .Tooltip-module_tooltip__efL1m[data-placement=top] {
30
+ --origin: translateY(4px);
13
31
  }
14
- .OverlayArrow-module_overlayArrow__hoDyK path {
15
- fill: var(--color-purple-800, #2f2438);
16
- box-shadow: var(--shadow-small-box-shadow, 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 3px 16px 0 rgba(0, 0, 0, 0.06));
32
+ .Tooltip-module_tooltip__efL1m[data-placement=bottom] {
33
+ --origin: translateY(-4px);
17
34
  }
18
- .OverlayArrow-module_overlayArrow__hoDyK[data-placement=right] svg {
19
- transform: rotate(90deg);
35
+ .Tooltip-module_tooltip__efL1m[data-placement=right] {
36
+ --origin: translateX(-4px);
20
37
  }
21
- .OverlayArrow-module_overlayArrow__hoDyK[data-placement=bottom] svg {
22
- transform: rotate(180deg);
38
+ .Tooltip-module_tooltip__efL1m[data-placement=left] {
39
+ --origin: translateX(4px);
23
40
  }
24
- .OverlayArrow-module_overlayArrow__hoDyK[data-placement=left] svg {
25
- transform: rotate(270deg);
41
+ .Tooltip-module_tooltip__efL1m[data-entering] {
42
+ animation: Tooltip-module_slide__lFdGA var(--animation-duration-fast, 300ms);
26
43
  }
27
- .OverlayArrow-module_overlayArrow__hoDyK.OverlayArrow-module_reversed__-WGcR path {
28
- fill: var(--color-white, #ffffff);
44
+ .Tooltip-module_tooltip__efL1m[data-exiting] {
45
+ animation: Tooltip-module_slide__lFdGA var(--animation-duration-fast, 300ms) reverse var(--animation-easing-function-ease-in, cubic-bezier(0.55, 0.085, 0.68, 0.53));
46
+ }
47
+
48
+ @keyframes Tooltip-module_slide__lFdGA {
49
+ from {
50
+ transform: var(--origin);
51
+ opacity: 0;
52
+ }
53
+ to {
54
+ transform: translateY(0);
55
+ opacity: 1;
56
+ }
29
57
  }
30
58
  .Menu-module_menu__iHYqh {
31
59
  background-color: var(--color-white);
@@ -184,89 +212,68 @@
184
212
  }
185
213
  /** THIS IS AN AUTOGENERATED FILE **/
186
214
  /** THIS IS AN AUTOGENERATED FILE **/
187
- /** THIS IS AN AUTOGENERATED FILE **/
188
- /** THIS IS AN AUTOGENERATED FILE **/
189
- /** THIS IS AN AUTOGENERATED FILE **/
190
- /** THIS IS AN AUTOGENERATED FILE **/
191
- .Tooltip-module_tooltip__efL1m {
192
- max-width: 200px;
193
- padding: var(--spacing-8, 0.5rem) var(--spacing-12, 0.75rem);
194
- color: var(--color-white, #ffffff);
195
- text-align: center;
196
- font-family: var(--typography-paragraph-extra-small-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
197
- font-size: var(--typography-paragraph-extra-small-font-size, 0.75rem);
198
- font-weight: var(--typography-paragraph-extra-small-font-weight, 400);
199
- letter-spacing: var(--typography-paragraph-extra-small-letter-spacing, normal);
200
- line-height: var(--typography-paragraph-extra-small-line-height, 1.125rem);
201
- border-radius: var(--border-solid-border-radius, 7px);
202
- box-shadow: var(--shadow-small-box-shadow, 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 3px 16px 0 rgba(0, 0, 0, 0.06));
203
- background-color: var(--color-purple-800, #2f2438);
204
- text-wrap: pretty;
205
- /* fixes FF gap */
206
- transform: translate3d(0, 0, 0);
215
+ .OverlayArrow-module_overlayArrow__hoDyK {
216
+ display: flex;
217
+ padding: 8px;
207
218
  }
208
- .Tooltip-module_tooltip__efL1m.Tooltip-module_reversed__NnCbZ {
209
- background-color: var(--color-white, #ffffff);
210
- color: var(--color-purple-800, #2f2438);
219
+ .OverlayArrow-module_overlayArrow__hoDyK[data-placement=top], .OverlayArrow-module_overlayArrow__hoDyK[data-placement=bottom] {
220
+ padding: 0 8px;
211
221
  }
212
- .Tooltip-module_tooltip__efL1m[data-placement=top] {
213
- --origin: translateY(4px);
222
+ .OverlayArrow-module_overlayArrow__hoDyK[data-placement=left], .OverlayArrow-module_overlayArrow__hoDyK[data-placement=right] {
223
+ padding: 8px 0;
214
224
  }
215
- .Tooltip-module_tooltip__efL1m[data-placement=bottom] {
216
- --origin: translateY(-4px);
225
+ .OverlayArrow-module_overlayArrow__hoDyK path {
226
+ fill: var(--color-purple-800, #2f2438);
227
+ box-shadow: var(--shadow-small-box-shadow, 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 3px 16px 0 rgba(0, 0, 0, 0.06));
217
228
  }
218
- .Tooltip-module_tooltip__efL1m[data-placement=right] {
219
- --origin: translateX(-4px);
229
+ .OverlayArrow-module_overlayArrow__hoDyK[data-placement=right] svg {
230
+ transform: rotate(90deg);
220
231
  }
221
- .Tooltip-module_tooltip__efL1m[data-placement=left] {
222
- --origin: translateX(4px);
232
+ .OverlayArrow-module_overlayArrow__hoDyK[data-placement=bottom] svg {
233
+ transform: rotate(180deg);
223
234
  }
224
- .Tooltip-module_tooltip__efL1m[data-entering] {
225
- animation: Tooltip-module_slide__lFdGA var(--animation-duration-fast, 300ms);
235
+ .OverlayArrow-module_overlayArrow__hoDyK[data-placement=left] svg {
236
+ transform: rotate(270deg);
226
237
  }
227
- .Tooltip-module_tooltip__efL1m[data-exiting] {
228
- animation: Tooltip-module_slide__lFdGA var(--animation-duration-fast, 300ms) reverse var(--animation-easing-function-ease-in, cubic-bezier(0.55, 0.085, 0.68, 0.53));
238
+ .OverlayArrow-module_overlayArrow__hoDyK.OverlayArrow-module_reversed__-WGcR path {
239
+ fill: var(--color-white, #ffffff);
229
240
  }
241
+ .Icon-module_icon__CkmHY {
242
+ font-size: calc(1px * var(--icon-size, 20));
243
+ font-weight: var(--icon-font-weight, 400);
244
+ vertical-align: var(--icon-vertical-align);
230
245
 
231
- @keyframes Tooltip-module_slide__lFdGA {
232
- from {
233
- transform: var(--origin);
234
- opacity: 0;
235
- }
236
- to {
237
- transform: translateY(0);
238
- opacity: 1;
239
- }
240
- }
241
- .SVG-module_icon__8J5Ev {
242
- width: 20px;
243
- height: 20px;
244
- display: inline-block;
246
+ /* Must use vars otherwise whole attribute must be set again */
247
+ font-variation-settings:
248
+ "FILL" var(--icon-fill, 0),
249
+ "GRAD" var(--icon-grade, 0),
250
+ "opsz" var(--icon-optical-size, var(--icon-size, 20));
245
251
  }
246
- .SVG-module_icon__8J5Ev > use {
247
- pointer-events: none;
252
+
253
+ .Icon-module_filled__-VArQ {
254
+ --icon-fill: 1;
248
255
  }
249
- @media screen and (-ms-high-contrast: active) {
250
- .SVG-module_icon__8J5Ev {
251
- color: black;
256
+
257
+ .Icon-module_shouldMirrorInRTL__kxncF {
258
+ [dir="rtl"] & {
259
+ transform: scale(-1, 1);
252
260
  }
253
261
  }
254
- @media screen and (-ms-high-contrast: white-on-black) {
255
- .SVG-module_icon__8J5Ev {
256
- color: white;
262
+
263
+ .Icon-module_iconLTR__b3GoB {
264
+ [dir="rtl"] & {
265
+ display: none;
257
266
  }
258
267
  }
259
- @media screen and (-ms-high-contrast: black-on-white) {
260
- .SVG-module_icon__8J5Ev {
261
- color: black;
268
+
269
+ .Icon-module_iconRTL__lpVw5 {
270
+ display: none;
271
+
272
+ [dir="rtl"] & {
273
+ display: inherit;
262
274
  }
263
275
  }
264
276
 
265
- .SVG-module_inheritSize__Q8iam {
266
- width: inherit;
267
- height: inherit;
268
- display: block;
269
- }
270
277
  /** THIS IS AN AUTOGENERATED FILE **/
271
278
  /** THIS IS AN AUTOGENERATED FILE **/
272
279
  /** THIS IS AN AUTOGENERATED FILE **/
@@ -349,24 +356,22 @@
349
356
 
350
357
  .Avatar-module_fallbackIcon__MPWxq {
351
358
  color: rgba(var(--color-purple-800-rgb, 47, 36, 56), 0.7);
352
- width: 28px;
359
+ font-size: var(--avatar-fallback-icon-size);
353
360
  }
354
361
  .Avatar-module_xxlarge__oOoGq .Avatar-module_fallbackIcon__MPWxq {
355
- width: 75px;
362
+ --avatar-fallback-icon-size: calc(7.75rem * 0.8);
356
363
  }
357
364
  .Avatar-module_xlarge__Vx4IG .Avatar-module_fallbackIcon__MPWxq {
358
- width: 60px;
365
+ --avatar-fallback-icon-size: calc(6rem * 0.8);
359
366
  }
360
367
  .Avatar-module_large__qiNWs .Avatar-module_fallbackIcon__MPWxq {
361
- width: 35px;
368
+ --avatar-fallback-icon-size: calc(4.5rem * 0.7);
362
369
  }
363
370
  .Avatar-module_medium__Vy3V8 .Avatar-module_fallbackIcon__MPWxq {
364
- width: 25px;
365
- margin-bottom: -1px;
371
+ --avatar-fallback-icon-size: calc(3rem * 0.7);
366
372
  }
367
373
  .Avatar-module_small__PeksS .Avatar-module_fallbackIcon__MPWxq {
368
- width: 10px;
369
- margin-bottom: -1px;
374
+ --avatar-fallback-icon-size: calc(1.25rem * 0.7);
370
375
  }
371
376
 
372
377
  .Avatar-module_initials__VDY2Q {
@@ -378,7 +383,7 @@
378
383
  width: 100%;
379
384
  font-size: 22px;
380
385
  font-family: var(--typography-heading-1-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
381
- font-weight: var(--typography-heading-1-font-weight, 700);
386
+ font-weight: var(--typography-heading-1-font-weight, 500);
382
387
  letter-spacing: var(--typography-heading-3-letter-spacing, normal);
383
388
  }
384
389
  .Avatar-module_initials__VDY2Q:not(.Avatar-module_longName__31Yuf)::before {
@@ -461,7 +466,7 @@
461
466
  height: 4.5rem;
462
467
  font-family: var(--typography-heading-3-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
463
468
  font-size: var(--typography-heading-3-font-size, 1.375rem);
464
- font-weight: var(--typography-heading-3-font-weight, 700);
469
+ font-weight: var(--typography-heading-3-font-weight, 600);
465
470
  letter-spacing: var(--typography-heading-3-letter-spacing, normal);
466
471
  }
467
472
  /** THIS IS AN AUTOGENERATED FILE **/
@@ -591,7 +596,7 @@
591
596
 
592
597
  .Heading-module_heading-1__PbAcw {
593
598
  font-family: var(--typography-heading-1-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
594
- font-weight: var(--typography-heading-1-font-weight, 700);
599
+ font-weight: var(--typography-heading-1-font-weight, 500);
595
600
  font-size: var(--typography-heading-1-font-size, 2.125rem);
596
601
  line-height: var(--typography-heading-1-line-height, 2.625rem);
597
602
  letter-spacing: var(--typography-heading-1-letter-spacing, normal);
@@ -599,7 +604,7 @@
599
604
 
600
605
  .Heading-module_heading-2__Ovpfe {
601
606
  font-family: var(--typography-heading-2-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
602
- font-weight: var(--typography-heading-2-font-weight, 700);
607
+ font-weight: var(--typography-heading-2-font-weight, 600);
603
608
  font-size: var(--typography-heading-2-font-size, 1.75rem);
604
609
  line-height: var(--typography-heading-2-line-height, 2.25rem);
605
610
  letter-spacing: var(--typography-heading-2-letter-spacing, normal);
@@ -607,7 +612,7 @@
607
612
 
608
613
  .Heading-module_heading-3__S4Pb1 {
609
614
  font-family: var(--typography-heading-3-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
610
- font-weight: var(--typography-heading-3-font-weight, 700);
615
+ font-weight: var(--typography-heading-3-font-weight, 600);
611
616
  font-size: var(--typography-heading-3-font-size, 1.375rem);
612
617
  line-height: var(--typography-heading-3-line-height, 1.875rem);
613
618
  letter-spacing: var(--typography-heading-3-letter-spacing, normal);
@@ -631,7 +636,7 @@
631
636
 
632
637
  .Heading-module_heading-6__kts-- {
633
638
  font-family: var(--typography-heading-6-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
634
- font-weight: var(--typography-heading-6-font-weight, 700);
639
+ font-weight: var(--typography-heading-6-font-weight, 600);
635
640
  font-size: var(--typography-heading-6-font-size, 0.875rem);
636
641
  line-height: var(--typography-heading-6-line-height, 1.5rem);
637
642
  letter-spacing: var(--typography-heading-6-letter-spacing, normal);
@@ -673,6 +678,7 @@
673
678
  /** THIS IS AN AUTOGENERATED FILE **/
674
679
  /** THIS IS AN AUTOGENERATED FILE **/
675
680
  .Text-module_text__Byo7R {
681
+ --icon-vertical-align: text-bottom;
676
682
  margin: 0;
677
683
  }
678
684
  .Text-module_text__Byo7R strong {
@@ -1098,20 +1104,39 @@
1098
1104
  white-space: nowrap;
1099
1105
  width: 1px;
1100
1106
  }
1101
- /** THIS IS AN AUTOGENERATED FILE **/
1102
- .LoadingSpinner-module_loadingSpinner__4SQsH {
1107
+ .LoadingSpinner-module_loadingSpinner__Zc2mJ {
1108
+ --loading-spinner-size: 48px;
1109
+
1103
1110
  display: flex;
1111
+ width: var(--loading-spinner-size);
1112
+ height: var(--loading-spinner-size);
1113
+ }
1114
+
1115
+ .LoadingSpinner-module_xs__y46OT {
1116
+ --loading-spinner-size: 16px;
1117
+ }
1118
+
1119
+ .LoadingSpinner-module_sm__nkmIa {
1120
+ --loading-spinner-size: 24px;
1121
+ }
1122
+
1123
+ .LoadingSpinner-module_md__OWP2- {
1124
+ --loading-spinner-size: 48px;
1104
1125
  }
1105
1126
 
1106
- .LoadingSpinner-module_spinner__bDpy0 {
1107
- animation: LoadingSpinner-module_spinner__bDpy0 var(--animation-duration-deliberate, 700ms) var(--animation-easing-function-ease-in-out, cubic-bezier(0.455, 0.03, 0.515, 0.955)) infinite;
1127
+ .LoadingSpinner-module_spinner__BKrX0 {
1128
+ animation: LoadingSpinner-module_spinner__BKrX0 var(--animation-duration-deliberate)
1129
+ var(--animation-easing-function-ease-in-out) infinite;
1130
+ width: 100%;
1131
+ height: 100%;
1108
1132
  }
1109
1133
 
1110
- @keyframes LoadingSpinner-module_spinner__bDpy0 {
1134
+ @keyframes LoadingSpinner-module_spinner__BKrX0 {
1111
1135
  100% {
1112
1136
  transform: rotate(360deg);
1113
1137
  }
1114
1138
  }
1139
+
1115
1140
  /** THIS IS AN AUTOGENERATED FILE **/
1116
1141
  /** THIS IS AN AUTOGENERATED FILE **/
1117
1142
  /** THIS IS AN AUTOGENERATED FILE **/
@@ -1164,7 +1189,7 @@
1164
1189
  -webkit-font-smoothing: antialiased;
1165
1190
  -moz-osx-font-smoothing: grayscale;
1166
1191
  font-family: var(--typography-button-primary-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
1167
- font-weight: var(--typography-button-primary-font-weight, 700);
1192
+ font-weight: var(--typography-button-primary-font-weight, 500);
1168
1193
  font-size: var(--typography-button-primary-font-size, 1.125rem);
1169
1194
  line-height: var(--typography-button-primary-line-height, 1.5rem);
1170
1195
  letter-spacing: var(--typography-button-primary-letter-spacing, normal);
@@ -1209,7 +1234,6 @@
1209
1234
  opacity: 30%;
1210
1235
  }
1211
1236
  .GenericButton-module_disabled__NQENR.GenericButton-module_button__vTuHz:focus-visible::after, .GenericButton-module_working__Ia8R2.GenericButton-module_button__vTuHz:focus-visible::after {
1212
- border-style: var(--border-dashed-border-style, dashed);
1213
1237
  border-color: var(--color-purple-800, #2f2438);
1214
1238
  }
1215
1239
  .GenericButton-module_button__vTuHz .GenericButton-module_content__McBme {
@@ -1474,9 +1498,6 @@
1474
1498
  .GenericButton-module_directionalLink__jgRQf {
1475
1499
  border: var(--border-solid-border-width, 2px) solid var(--color-blue-300, #73c0e8);
1476
1500
  }
1477
- [dir=rtl] .GenericButton-module_directionalLink__jgRQf {
1478
- transform: rotate(180deg);
1479
- }
1480
1501
  .GenericButton-module_directionalLink__jgRQf:not(.GenericButton-module_disabled__NQENR, .GenericButton-module_working__Ia8R2):hover, .GenericButton-module_directionalLink__jgRQf:not(.GenericButton-module_disabled__NQENR, .GenericButton-module_working__Ia8R2):active, .GenericButton-module_directionalLink__jgRQf:not(.GenericButton-module_disabled__NQENR, .GenericButton-module_working__Ia8R2):focus-visible {
1481
1502
  background-color: var(--color-blue-100, #e6f6ff);
1482
1503
  border-color: var(--color-blue-400, #008bd6);
@@ -1496,16 +1517,10 @@
1496
1517
  line-height: 1;
1497
1518
  }
1498
1519
  .GenericButton-module_label__Z08Ax:not(:first-child) {
1499
- margin-left: 0.5em;
1500
- }
1501
- .GenericButton-module_label__Z08Ax:not(:first-child)[dir=rtl], [dir=rtl] .GenericButton-module_label__Z08Ax:not(:first-child) {
1502
- margin-right: 0.5em;
1520
+ margin-inline-start: 0.5em;
1503
1521
  }
1504
1522
  .GenericButton-module_label__Z08Ax:not(:last-child) {
1505
- margin-right: 0.5em;
1506
- }
1507
- .GenericButton-module_label__Z08Ax:not(:last-child)[dir=rtl], [dir=rtl] .GenericButton-module_label__Z08Ax:not(:last-child) {
1508
- margin-left: 0.5em;
1523
+ margin-inline-end: 0.5em;
1509
1524
  }
1510
1525
 
1511
1526
  .GenericButton-module_fullWidth__2MPO6 {
@@ -1529,10 +1544,7 @@
1529
1544
  display: inherit;
1530
1545
  }
1531
1546
  .GenericButton-module_additionalContentWrapper__RwK-G:not(:last-child) {
1532
- margin-right: 0.5em;
1533
- }
1534
- .GenericButton-module_additionalContentWrapper__RwK-G:not(:last-child)[dir=rtl], [dir=rtl] .GenericButton-module_additionalContentWrapper__RwK-G:not(:last-child) {
1535
- margin-left: 0.5em;
1547
+ margin-inline-end: 0.5em;
1536
1548
  }
1537
1549
 
1538
1550
  .GenericButton-module_loadingSpinner__lbL3G svg {
@@ -2051,9 +2063,6 @@
2051
2063
  background-color: var(--color-blue-100, #e6f6ff);
2052
2064
  color: var(--color-blue-500, #0168b3);
2053
2065
  }
2054
- [dir=rtl] .baseCalendarClassNames-module_navButton__Socf8 {
2055
- transform: scale(-1, 1);
2056
- }
2057
2066
 
2058
2067
  .baseCalendarClassNames-module_table__4LTvb {
2059
2068
  border-collapse: separate;
@@ -2301,11 +2310,11 @@
2301
2310
  /* stylelint-disable selector-no-vendor-prefix */
2302
2311
  /** THIS IS AN AUTOGENERATED FILE **/
2303
2312
  .Checkbox-module_checkbox__qJnwV.Checkbox-module_checkbox__qJnwV {
2304
- opacity: 0%;
2305
- position: absolute;
2306
2313
  width: 24px;
2307
2314
  height: 24px;
2308
2315
  margin: 0;
2316
+ opacity: 0%;
2317
+ position: absolute;
2309
2318
  }
2310
2319
  .ideal-sans .Checkbox-module_checkbox__qJnwV.Checkbox-module_checkbox__qJnwV {
2311
2320
  position: absolute;
@@ -2316,12 +2325,7 @@
2316
2325
  }
2317
2326
 
2318
2327
  .Checkbox-module_icon__h6ebV {
2319
- height: 24px;
2320
- width: 24px;
2321
2328
  position: absolute;
2322
- top: 50%;
2323
- transform: translateY(-50%);
2324
- left: calc(-1 * var(--border-solid-border-width, 2px));
2325
2329
  color: var(--color-white, #ffffff);
2326
2330
  }
2327
2331
 
@@ -2403,6 +2407,10 @@
2403
2407
  /** THIS IS AN AUTOGENERATED FILE **/
2404
2408
  /** THIS IS AN AUTOGENERATED FILE **/
2405
2409
  /** THIS IS AN AUTOGENERATED FILE **/
2410
+ .Label-module_label__Dmp7q {
2411
+ --icon-vertical-align: text-bottom;
2412
+ }
2413
+
2406
2414
  .Label-module_label__Dmp7q,
2407
2415
  .ideal-sans .Label-module_label__Dmp7q {
2408
2416
  opacity: inherit;
@@ -2432,7 +2440,7 @@
2432
2440
  font-size: var(--typography-heading-6-font-size, 0.875rem);
2433
2441
  line-height: var(--typography-heading-6-line-height, 1.5rem);
2434
2442
  letter-spacing: var(--typography-heading-6-letter-spacing, normal);
2435
- font-weight: var(--typography-heading-6-font-weight, 700);
2443
+ font-weight: var(--typography-heading-6-font-weight, 600);
2436
2444
  }
2437
2445
 
2438
2446
  .Label-module_radio__-Iu-D, .Label-module_checkbox__Fhjww {
@@ -2769,7 +2777,7 @@
2769
2777
  width: 100%;
2770
2778
  margin-bottom: 2px;
2771
2779
  }
2772
- .Input-module_input__d-Moh::-webkit-input-placeholder {
2780
+ .Input-module_input__d-Moh::placeholder {
2773
2781
  font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
2774
2782
  font-size: var(--typography-paragraph-body-font-size, 1rem);
2775
2783
  font-weight: var(--typography-paragraph-body-font-weight, 400);
@@ -2778,34 +2786,7 @@
2778
2786
  position: static;
2779
2787
  opacity: 100%;
2780
2788
  }
2781
- .Input-module_input__d-Moh:-moz-placeholder {
2782
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
2783
- font-size: var(--typography-paragraph-body-font-size, 1rem);
2784
- font-weight: var(--typography-paragraph-body-font-weight, 400);
2785
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
2786
- position: static;
2787
- line-height: 2.9rem;
2788
- opacity: 100%;
2789
- }
2790
- .Input-module_input__d-Moh::-moz-placeholder {
2791
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
2792
- font-size: var(--typography-paragraph-body-font-size, 1rem);
2793
- font-weight: var(--typography-paragraph-body-font-weight, 400);
2794
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
2795
- position: static;
2796
- line-height: 2.9rem;
2797
- opacity: 100%;
2798
- }
2799
- .Input-module_input__d-Moh:-ms-input-placeholder {
2800
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
2801
- font-size: var(--typography-paragraph-body-font-size, 1rem);
2802
- font-weight: var(--typography-paragraph-body-font-weight, 400);
2803
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
2804
- position: static;
2805
- line-height: 2.9rem;
2806
- opacity: 100%;
2807
- }
2808
- .Input-module_input__d-Moh:focus:not([disabled])::-webkit-input-placeholder, .Input-module_input__d-Moh:hover:focus:not([disabled])::-webkit-input-placeholder {
2789
+ .Input-module_input__d-Moh:focus:not([disabled])::placeholder, .Input-module_input__d-Moh:hover:focus:not([disabled])::placeholder {
2809
2790
  font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
2810
2791
  font-size: var(--typography-paragraph-body-font-size, 1rem);
2811
2792
  font-weight: var(--typography-paragraph-body-font-weight, 400);
@@ -2814,37 +2795,10 @@
2814
2795
  position: static;
2815
2796
  opacity: 0%;
2816
2797
  }
2817
- .Input-module_input__d-Moh:focus:not([disabled]):-moz-placeholder, .Input-module_input__d-Moh:hover:focus:not([disabled]):-moz-placeholder {
2818
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
2819
- font-size: var(--typography-paragraph-body-font-size, 1rem);
2820
- font-weight: var(--typography-paragraph-body-font-weight, 400);
2821
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
2822
- position: static;
2823
- line-height: 2.9rem;
2824
- opacity: 0%;
2825
- }
2826
- .Input-module_input__d-Moh:focus:not([disabled])::-moz-placeholder, .Input-module_input__d-Moh:hover:focus:not([disabled])::-moz-placeholder {
2827
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
2828
- font-size: var(--typography-paragraph-body-font-size, 1rem);
2829
- font-weight: var(--typography-paragraph-body-font-weight, 400);
2830
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
2831
- position: static;
2832
- line-height: 2.9rem;
2833
- opacity: 0%;
2834
- }
2835
- .Input-module_input__d-Moh:focus:not([disabled]):-ms-input-placeholder, .Input-module_input__d-Moh:hover:focus:not([disabled]):-ms-input-placeholder {
2836
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
2837
- font-size: var(--typography-paragraph-body-font-size, 1rem);
2838
- font-weight: var(--typography-paragraph-body-font-weight, 400);
2839
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
2840
- position: static;
2841
- line-height: 2.9rem;
2842
- opacity: 0%;
2843
- }
2844
2798
  .Input-module_input__d-Moh.Input-module_disabled__CJeOi:not(.Input-module_reversed__Kh7dc) {
2845
2799
  background: var(--color-gray-300, #eaeaec);
2846
2800
  }
2847
- .Input-module_input__d-Moh.Input-module_disabled__CJeOi::-webkit-input-placeholder {
2801
+ .Input-module_input__d-Moh.Input-module_disabled__CJeOi::placeholder {
2848
2802
  font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
2849
2803
  font-size: var(--typography-paragraph-body-font-size, 1rem);
2850
2804
  font-weight: var(--typography-paragraph-body-font-weight, 400);
@@ -2853,33 +2807,6 @@
2853
2807
  position: static;
2854
2808
  color: rgba(var(--color-purple-800-rgb, 47, 36, 56), 0.3);
2855
2809
  }
2856
- .Input-module_input__d-Moh.Input-module_disabled__CJeOi:-moz-placeholder {
2857
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
2858
- font-size: var(--typography-paragraph-body-font-size, 1rem);
2859
- font-weight: var(--typography-paragraph-body-font-weight, 400);
2860
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
2861
- position: static;
2862
- line-height: 2.9rem;
2863
- color: rgba(var(--color-purple-800-rgb, 47, 36, 56), 0.3);
2864
- }
2865
- .Input-module_input__d-Moh.Input-module_disabled__CJeOi::-moz-placeholder {
2866
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
2867
- font-size: var(--typography-paragraph-body-font-size, 1rem);
2868
- font-weight: var(--typography-paragraph-body-font-weight, 400);
2869
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
2870
- position: static;
2871
- line-height: 2.9rem;
2872
- color: rgba(var(--color-purple-800-rgb, 47, 36, 56), 0.3);
2873
- }
2874
- .Input-module_input__d-Moh.Input-module_disabled__CJeOi:-ms-input-placeholder {
2875
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
2876
- font-size: var(--typography-paragraph-body-font-size, 1rem);
2877
- font-weight: var(--typography-paragraph-body-font-weight, 400);
2878
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
2879
- position: static;
2880
- line-height: 2.9rem;
2881
- color: rgba(var(--color-purple-800-rgb, 47, 36, 56), 0.3);
2882
- }
2883
2810
 
2884
2811
  .Input-module_input__d-Moh:focus + .Input-module_focusRing__E68jh {
2885
2812
  position: absolute;
@@ -3000,7 +2927,7 @@
3000
2927
  display: flex;
3001
2928
  align-items: center;
3002
2929
  }
3003
- .Input-module_input__d-Moh.Input-module_default__zata3::-webkit-input-placeholder {
2930
+ .Input-module_input__d-Moh.Input-module_default__zata3::placeholder {
3004
2931
  font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
3005
2932
  font-size: var(--typography-paragraph-body-font-size, 1rem);
3006
2933
  font-weight: var(--typography-paragraph-body-font-weight, 400);
@@ -3010,36 +2937,6 @@
3010
2937
  color: var(--color-purple-800, #2f2438);
3011
2938
  opacity: 0.5;
3012
2939
  }
3013
- .Input-module_input__d-Moh.Input-module_default__zata3:-moz-placeholder {
3014
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
3015
- font-size: var(--typography-paragraph-body-font-size, 1rem);
3016
- font-weight: var(--typography-paragraph-body-font-weight, 400);
3017
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
3018
- position: static;
3019
- line-height: 2.9rem;
3020
- color: var(--color-purple-800, #2f2438);
3021
- opacity: 0.5;
3022
- }
3023
- .Input-module_input__d-Moh.Input-module_default__zata3::-moz-placeholder {
3024
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
3025
- font-size: var(--typography-paragraph-body-font-size, 1rem);
3026
- font-weight: var(--typography-paragraph-body-font-weight, 400);
3027
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
3028
- position: static;
3029
- line-height: 2.9rem;
3030
- color: var(--color-purple-800, #2f2438);
3031
- opacity: 0.5;
3032
- }
3033
- .Input-module_input__d-Moh.Input-module_default__zata3:-ms-input-placeholder {
3034
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
3035
- font-size: var(--typography-paragraph-body-font-size, 1rem);
3036
- font-weight: var(--typography-paragraph-body-font-weight, 400);
3037
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
3038
- position: static;
3039
- line-height: 2.9rem;
3040
- color: var(--color-purple-800, #2f2438);
3041
- opacity: 0.5;
3042
- }
3043
2940
  .Input-module_input__d-Moh.Input-module_default__zata3:focus:not([disabled]), .Input-module_input__d-Moh.Input-module_default__zata3:hover:not([disabled]), .Input-module_input__d-Moh.Input-module_default__zata3:hover:focus:not([disabled]) {
3044
2941
  background-color: var(--color-gray-200, #f4f4f5);
3045
2942
  }
@@ -3051,7 +2948,7 @@
3051
2948
  border-color: rgba(var(--color-gray-500-rgb, 135, 135, 146), 0.3);
3052
2949
  color: rgba(var(--color-purple-800-rgb, 47, 36, 56), 0.3);
3053
2950
  }
3054
- .Input-module_input__d-Moh.Input-module_default__zata3.Input-module_disabled__CJeOi::-webkit-input-placeholder {
2951
+ .Input-module_input__d-Moh.Input-module_default__zata3.Input-module_disabled__CJeOi::placeholder {
3055
2952
  font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
3056
2953
  font-size: var(--typography-paragraph-body-font-size, 1rem);
3057
2954
  font-weight: var(--typography-paragraph-body-font-weight, 400);
@@ -3060,33 +2957,6 @@
3060
2957
  position: static;
3061
2958
  opacity: 0.3;
3062
2959
  }
3063
- .Input-module_input__d-Moh.Input-module_default__zata3.Input-module_disabled__CJeOi:-moz-placeholder {
3064
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
3065
- font-size: var(--typography-paragraph-body-font-size, 1rem);
3066
- font-weight: var(--typography-paragraph-body-font-weight, 400);
3067
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
3068
- position: static;
3069
- line-height: 2.9rem;
3070
- opacity: 0.3;
3071
- }
3072
- .Input-module_input__d-Moh.Input-module_default__zata3.Input-module_disabled__CJeOi::-moz-placeholder {
3073
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
3074
- font-size: var(--typography-paragraph-body-font-size, 1rem);
3075
- font-weight: var(--typography-paragraph-body-font-weight, 400);
3076
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
3077
- position: static;
3078
- line-height: 2.9rem;
3079
- opacity: 0.3;
3080
- }
3081
- .Input-module_input__d-Moh.Input-module_default__zata3.Input-module_disabled__CJeOi:-ms-input-placeholder {
3082
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
3083
- font-size: var(--typography-paragraph-body-font-size, 1rem);
3084
- font-weight: var(--typography-paragraph-body-font-weight, 400);
3085
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
3086
- position: static;
3087
- line-height: 2.9rem;
3088
- opacity: 0.3;
3089
- }
3090
2960
  .Input-module_input__d-Moh.Input-module_default__zata3:not(.Input-module_error__a-BFh, .Input-module_caution__rC0sY) {
3091
2961
  border-color: var(--color-gray-500, #878792);
3092
2962
  }
@@ -3113,7 +2983,7 @@
3113
2983
  background: transparent;
3114
2984
  color: var(--color-white, #ffffff);
3115
2985
  }
3116
- .Input-module_input__d-Moh.Input-module_reversed__Kh7dc::-webkit-input-placeholder {
2986
+ .Input-module_input__d-Moh.Input-module_reversed__Kh7dc::placeholder {
3117
2987
  font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
3118
2988
  font-size: var(--typography-paragraph-body-font-size, 1rem);
3119
2989
  font-weight: var(--typography-paragraph-body-font-weight, 400);
@@ -3123,36 +2993,6 @@
3123
2993
  color: var(--color-white, #ffffff);
3124
2994
  opacity: 0.5;
3125
2995
  }
3126
- .Input-module_input__d-Moh.Input-module_reversed__Kh7dc:-moz-placeholder {
3127
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
3128
- font-size: var(--typography-paragraph-body-font-size, 1rem);
3129
- font-weight: var(--typography-paragraph-body-font-weight, 400);
3130
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
3131
- position: static;
3132
- line-height: 2.9rem;
3133
- color: var(--color-white, #ffffff);
3134
- opacity: 0.5;
3135
- }
3136
- .Input-module_input__d-Moh.Input-module_reversed__Kh7dc::-moz-placeholder {
3137
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
3138
- font-size: var(--typography-paragraph-body-font-size, 1rem);
3139
- font-weight: var(--typography-paragraph-body-font-weight, 400);
3140
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
3141
- position: static;
3142
- line-height: 2.9rem;
3143
- color: var(--color-white, #ffffff);
3144
- opacity: 0.5;
3145
- }
3146
- .Input-module_input__d-Moh.Input-module_reversed__Kh7dc:-ms-input-placeholder {
3147
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
3148
- font-size: var(--typography-paragraph-body-font-size, 1rem);
3149
- font-weight: var(--typography-paragraph-body-font-weight, 400);
3150
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
3151
- position: static;
3152
- line-height: 2.9rem;
3153
- color: var(--color-white, #ffffff);
3154
- opacity: 0.5;
3155
- }
3156
2996
  .Input-module_input__d-Moh.Input-module_reversed__Kh7dc:focus:not([disabled]), .Input-module_input__d-Moh.Input-module_reversed__Kh7dc:hover:not([disabled]), .Input-module_input__d-Moh.Input-module_reversed__Kh7dc:hover:focus:not([disabled]) {
3157
2997
  background: rgba(var(--color-white-rgb, 255, 255, 255), 0.1);
3158
2998
  }
@@ -3172,7 +3012,7 @@
3172
3012
  background: transparent;
3173
3013
  color: rgba(var(--color-white-rgb, 255, 255, 255), 0.3);
3174
3014
  }
3175
- .Input-module_input__d-Moh.Input-module_reversed__Kh7dc.Input-module_disabled__CJeOi::-webkit-input-placeholder {
3015
+ .Input-module_input__d-Moh.Input-module_reversed__Kh7dc.Input-module_disabled__CJeOi::placeholder {
3176
3016
  font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
3177
3017
  font-size: var(--typography-paragraph-body-font-size, 1rem);
3178
3018
  font-weight: var(--typography-paragraph-body-font-weight, 400);
@@ -3181,33 +3021,6 @@
3181
3021
  position: static;
3182
3022
  opacity: 0.3;
3183
3023
  }
3184
- .Input-module_input__d-Moh.Input-module_reversed__Kh7dc.Input-module_disabled__CJeOi:-moz-placeholder {
3185
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
3186
- font-size: var(--typography-paragraph-body-font-size, 1rem);
3187
- font-weight: var(--typography-paragraph-body-font-weight, 400);
3188
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
3189
- position: static;
3190
- line-height: 2.9rem;
3191
- opacity: 0.3;
3192
- }
3193
- .Input-module_input__d-Moh.Input-module_reversed__Kh7dc.Input-module_disabled__CJeOi::-moz-placeholder {
3194
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
3195
- font-size: var(--typography-paragraph-body-font-size, 1rem);
3196
- font-weight: var(--typography-paragraph-body-font-weight, 400);
3197
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
3198
- position: static;
3199
- line-height: 2.9rem;
3200
- opacity: 0.3;
3201
- }
3202
- .Input-module_input__d-Moh.Input-module_reversed__Kh7dc.Input-module_disabled__CJeOi:-ms-input-placeholder {
3203
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
3204
- font-size: var(--typography-paragraph-body-font-size, 1rem);
3205
- font-weight: var(--typography-paragraph-body-font-weight, 400);
3206
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
3207
- position: static;
3208
- line-height: 2.9rem;
3209
- opacity: 0.3;
3210
- }
3211
3024
  .Input-module_input__d-Moh.Input-module_reversed__Kh7dc.Input-module_error__a-BFh {
3212
3025
  border-color: var(--color-red-300, #f597a8);
3213
3026
  }
@@ -3243,13 +3056,13 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs:focus-visible {
3243
3056
  outline: 2px solid var(--color-blue-500, #0168b3);
3244
3057
  }
3245
3058
  input[type=range].InputRange-module_ratingScaleRange__gI-rs::-webkit-slider-runnable-track {
3059
+ margin: var(--spacing-sm, 0.75rem) 0;
3246
3060
  width: auto;
3247
3061
  height: 0;
3248
3062
  box-sizing: border-box;
3249
3063
  border-top: 1px solid var(--color-gray-500, #878792);
3250
3064
  border-bottom: 2px solid var(--color-gray-500, #878792);
3251
3065
  border-radius: 4px;
3252
- margin: var(--spacing-sm, 0.75rem) 0;
3253
3066
  }
3254
3067
  input[type=range].InputRange-module_ratingScaleRange__gI-rs::-moz-range-track {
3255
3068
  width: auto;
@@ -3260,14 +3073,14 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-moz-range-track {
3260
3073
  border-radius: 4px;
3261
3074
  }
3262
3075
  input[type=range].InputRange-module_ratingScaleRange__gI-rs::-webkit-slider-thumb {
3076
+ -webkit-appearance: none;
3077
+ margin-top: calc(34px / 2 * -1);
3263
3078
  box-sizing: content-box;
3264
3079
  width: 26px;
3265
3080
  height: 26px;
3266
3081
  border: 4px solid var(--color-white, #ffffff);
3267
3082
  border-radius: 100%;
3268
3083
  background: var(--color-blue-500, #0168b3);
3269
- -webkit-appearance: none;
3270
- margin-top: calc(34px / 2 * -1);
3271
3084
  }
3272
3085
  input[type=range].InputRange-module_ratingScaleRange__gI-rs::-webkit-slider-thumb:not(:disabled) {
3273
3086
  transition: all 0.2s;
@@ -3416,7 +3229,7 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
3416
3229
  font-size: 1rem;
3417
3230
  line-height: 1.5;
3418
3231
  }
3419
- .InputSearch-module_input__hCit3[type=search]::-webkit-input-placeholder {
3232
+ .InputSearch-module_input__hCit3[type=search]::placeholder {
3420
3233
  font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
3421
3234
  font-size: var(--typography-paragraph-body-font-size, 1rem);
3422
3235
  font-weight: var(--typography-paragraph-body-font-weight, 400);
@@ -3425,40 +3238,13 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
3425
3238
  position: static;
3426
3239
  opacity: 100%;
3427
3240
  }
3428
- .InputSearch-module_input__hCit3[type=search]:-moz-placeholder {
3429
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
3430
- font-size: var(--typography-paragraph-body-font-size, 1rem);
3431
- font-weight: var(--typography-paragraph-body-font-weight, 400);
3432
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
3433
- position: static;
3434
- line-height: 2.9rem;
3435
- opacity: 100%;
3436
- }
3437
- .InputSearch-module_input__hCit3[type=search]::-moz-placeholder {
3438
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
3439
- font-size: var(--typography-paragraph-body-font-size, 1rem);
3440
- font-weight: var(--typography-paragraph-body-font-weight, 400);
3441
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
3442
- position: static;
3443
- line-height: 2.9rem;
3444
- opacity: 100%;
3445
- }
3446
- .InputSearch-module_input__hCit3[type=search]:-ms-input-placeholder {
3447
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
3448
- font-size: var(--typography-paragraph-body-font-size, 1rem);
3449
- font-weight: var(--typography-paragraph-body-font-weight, 400);
3450
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
3451
- position: static;
3452
- line-height: 2.9rem;
3453
- opacity: 100%;
3454
- }
3455
3241
  .InputSearch-module_input__hCit3[type=search]::-webkit-search-cancel-button {
3456
3242
  -webkit-appearance: none;
3457
3243
  }
3458
3244
  .InputSearch-module_hasEndIconAdornment__ZtGcu .InputSearch-module_input__hCit3[type=search] {
3459
3245
  padding-inline-end: calc(var(--spacing-sm, 0.75rem) + 1.25rem + var(--spacing-sm, 0.75rem));
3460
3246
  }
3461
- .InputSearch-module_input__hCit3[type=search]:focus::-webkit-input-placeholder, .InputSearch-module_input__hCit3[type=search]:hover::-webkit-input-placeholder {
3247
+ .InputSearch-module_input__hCit3[type=search]:focus::placeholder, .InputSearch-module_input__hCit3[type=search]:hover::placeholder {
3462
3248
  font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
3463
3249
  font-size: var(--typography-paragraph-body-font-size, 1rem);
3464
3250
  font-weight: var(--typography-paragraph-body-font-weight, 400);
@@ -3467,33 +3253,6 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
3467
3253
  position: static;
3468
3254
  opacity: 0%;
3469
3255
  }
3470
- .InputSearch-module_input__hCit3[type=search]:focus:-moz-placeholder, .InputSearch-module_input__hCit3[type=search]:hover:-moz-placeholder {
3471
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
3472
- font-size: var(--typography-paragraph-body-font-size, 1rem);
3473
- font-weight: var(--typography-paragraph-body-font-weight, 400);
3474
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
3475
- position: static;
3476
- line-height: 2.9rem;
3477
- opacity: 0%;
3478
- }
3479
- .InputSearch-module_input__hCit3[type=search]:focus::-moz-placeholder, .InputSearch-module_input__hCit3[type=search]:hover::-moz-placeholder {
3480
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
3481
- font-size: var(--typography-paragraph-body-font-size, 1rem);
3482
- font-weight: var(--typography-paragraph-body-font-weight, 400);
3483
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
3484
- position: static;
3485
- line-height: 2.9rem;
3486
- opacity: 0%;
3487
- }
3488
- .InputSearch-module_input__hCit3[type=search]:focus:-ms-input-placeholder, .InputSearch-module_input__hCit3[type=search]:hover:-ms-input-placeholder {
3489
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
3490
- font-size: var(--typography-paragraph-body-font-size, 1rem);
3491
- font-weight: var(--typography-paragraph-body-font-weight, 400);
3492
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
3493
- position: static;
3494
- line-height: 2.9rem;
3495
- opacity: 0%;
3496
- }
3497
3256
 
3498
3257
  .InputSearch-module_input__hCit3[type=search]:focus + .InputSearch-module_focusRing__kDUuP {
3499
3258
  position: absolute;
@@ -3538,7 +3297,7 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
3538
3297
  background-color: var(--color-white, #ffffff);
3539
3298
  color: var(--color-purple-800, #2f2438);
3540
3299
  }
3541
- .InputSearch-module_default__4d3Ek .InputSearch-module_input__hCit3[type=search]::-webkit-input-placeholder {
3300
+ .InputSearch-module_default__4d3Ek .InputSearch-module_input__hCit3[type=search]::placeholder {
3542
3301
  font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
3543
3302
  font-size: var(--typography-paragraph-body-font-size, 1rem);
3544
3303
  font-weight: var(--typography-paragraph-body-font-weight, 400);
@@ -3548,36 +3307,6 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
3548
3307
  color: var(--color-purple-800, #2f2438);
3549
3308
  opacity: 0.7;
3550
3309
  }
3551
- .InputSearch-module_default__4d3Ek .InputSearch-module_input__hCit3[type=search]:-moz-placeholder {
3552
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
3553
- font-size: var(--typography-paragraph-body-font-size, 1rem);
3554
- font-weight: var(--typography-paragraph-body-font-weight, 400);
3555
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
3556
- position: static;
3557
- line-height: 2.9rem;
3558
- color: var(--color-purple-800, #2f2438);
3559
- opacity: 0.7;
3560
- }
3561
- .InputSearch-module_default__4d3Ek .InputSearch-module_input__hCit3[type=search]::-moz-placeholder {
3562
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
3563
- font-size: var(--typography-paragraph-body-font-size, 1rem);
3564
- font-weight: var(--typography-paragraph-body-font-weight, 400);
3565
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
3566
- position: static;
3567
- line-height: 2.9rem;
3568
- color: var(--color-purple-800, #2f2438);
3569
- opacity: 0.7;
3570
- }
3571
- .InputSearch-module_default__4d3Ek .InputSearch-module_input__hCit3[type=search]:-ms-input-placeholder {
3572
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
3573
- font-size: var(--typography-paragraph-body-font-size, 1rem);
3574
- font-weight: var(--typography-paragraph-body-font-weight, 400);
3575
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
3576
- position: static;
3577
- line-height: 2.9rem;
3578
- color: var(--color-purple-800, #2f2438);
3579
- opacity: 0.7;
3580
- }
3581
3310
  .InputSearch-module_default__4d3Ek .InputSearch-module_focusRing__kDUuP {
3582
3311
  border-color: var(--color-blue-500, #0168b3);
3583
3312
  }
@@ -3589,7 +3318,7 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
3589
3318
  border-color: var(--color-gray-600, #524e56);
3590
3319
  background-color: var(--color-gray-200, #f4f4f5);
3591
3320
  }
3592
- .InputSearch-module_default__4d3Ek:hover .InputSearch-module_input__hCit3[type=search]::-webkit-input-placeholder, .InputSearch-module_default__4d3Ek:focus-within .InputSearch-module_input__hCit3[type=search]::-webkit-input-placeholder {
3321
+ .InputSearch-module_default__4d3Ek:hover .InputSearch-module_input__hCit3[type=search]::placeholder, .InputSearch-module_default__4d3Ek:focus-within .InputSearch-module_input__hCit3[type=search]::placeholder {
3593
3322
  font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
3594
3323
  font-size: var(--typography-paragraph-body-font-size, 1rem);
3595
3324
  font-weight: var(--typography-paragraph-body-font-weight, 400);
@@ -3598,33 +3327,6 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
3598
3327
  position: static;
3599
3328
  opacity: 100%;
3600
3329
  }
3601
- .InputSearch-module_default__4d3Ek:hover .InputSearch-module_input__hCit3[type=search]:-moz-placeholder, .InputSearch-module_default__4d3Ek:focus-within .InputSearch-module_input__hCit3[type=search]:-moz-placeholder {
3602
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
3603
- font-size: var(--typography-paragraph-body-font-size, 1rem);
3604
- font-weight: var(--typography-paragraph-body-font-weight, 400);
3605
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
3606
- position: static;
3607
- line-height: 2.9rem;
3608
- opacity: 100%;
3609
- }
3610
- .InputSearch-module_default__4d3Ek:hover .InputSearch-module_input__hCit3[type=search]::-moz-placeholder, .InputSearch-module_default__4d3Ek:focus-within .InputSearch-module_input__hCit3[type=search]::-moz-placeholder {
3611
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
3612
- font-size: var(--typography-paragraph-body-font-size, 1rem);
3613
- font-weight: var(--typography-paragraph-body-font-weight, 400);
3614
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
3615
- position: static;
3616
- line-height: 2.9rem;
3617
- opacity: 100%;
3618
- }
3619
- .InputSearch-module_default__4d3Ek:hover .InputSearch-module_input__hCit3[type=search]:-ms-input-placeholder, .InputSearch-module_default__4d3Ek:focus-within .InputSearch-module_input__hCit3[type=search]:-ms-input-placeholder {
3620
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
3621
- font-size: var(--typography-paragraph-body-font-size, 1rem);
3622
- font-weight: var(--typography-paragraph-body-font-weight, 400);
3623
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
3624
- position: static;
3625
- line-height: 2.9rem;
3626
- opacity: 100%;
3627
- }
3628
3330
  .InputSearch-module_default__4d3Ek:hover .InputSearch-module_startIconAdornment__Tc7Yx, .InputSearch-module_default__4d3Ek:focus-within .InputSearch-module_startIconAdornment__Tc7Yx {
3629
3331
  opacity: 100%;
3630
3332
  }
@@ -3634,7 +3336,7 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
3634
3336
  background-color: var(--color-gray-200, #f4f4f5);
3635
3337
  color: var(--color-purple-800, #2f2438);
3636
3338
  }
3637
- .InputSearch-module_secondary__l68uD .InputSearch-module_input__hCit3[type=search]::-webkit-input-placeholder {
3339
+ .InputSearch-module_secondary__l68uD .InputSearch-module_input__hCit3[type=search]::placeholder {
3638
3340
  font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
3639
3341
  font-size: var(--typography-paragraph-body-font-size, 1rem);
3640
3342
  font-weight: var(--typography-paragraph-body-font-weight, 400);
@@ -3644,36 +3346,6 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
3644
3346
  color: var(--color-purple-800, #2f2438);
3645
3347
  opacity: 0.7;
3646
3348
  }
3647
- .InputSearch-module_secondary__l68uD .InputSearch-module_input__hCit3[type=search]:-moz-placeholder {
3648
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
3649
- font-size: var(--typography-paragraph-body-font-size, 1rem);
3650
- font-weight: var(--typography-paragraph-body-font-weight, 400);
3651
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
3652
- position: static;
3653
- line-height: 2.9rem;
3654
- color: var(--color-purple-800, #2f2438);
3655
- opacity: 0.7;
3656
- }
3657
- .InputSearch-module_secondary__l68uD .InputSearch-module_input__hCit3[type=search]::-moz-placeholder {
3658
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
3659
- font-size: var(--typography-paragraph-body-font-size, 1rem);
3660
- font-weight: var(--typography-paragraph-body-font-weight, 400);
3661
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
3662
- position: static;
3663
- line-height: 2.9rem;
3664
- color: var(--color-purple-800, #2f2438);
3665
- opacity: 0.7;
3666
- }
3667
- .InputSearch-module_secondary__l68uD .InputSearch-module_input__hCit3[type=search]:-ms-input-placeholder {
3668
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
3669
- font-size: var(--typography-paragraph-body-font-size, 1rem);
3670
- font-weight: var(--typography-paragraph-body-font-weight, 400);
3671
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
3672
- position: static;
3673
- line-height: 2.9rem;
3674
- color: var(--color-purple-800, #2f2438);
3675
- opacity: 0.7;
3676
- }
3677
3349
  .InputSearch-module_secondary__l68uD .InputSearch-module_focusRing__kDUuP {
3678
3350
  border-color: var(--color-blue-500, #0168b3);
3679
3351
  }
@@ -3685,7 +3357,7 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
3685
3357
  border-color: transparent;
3686
3358
  background-color: var(--color-gray-300, #eaeaec);
3687
3359
  }
3688
- .InputSearch-module_secondary__l68uD:hover .InputSearch-module_input__hCit3[type=search]::-webkit-input-placeholder, .InputSearch-module_secondary__l68uD:focus-within .InputSearch-module_input__hCit3[type=search]::-webkit-input-placeholder {
3360
+ .InputSearch-module_secondary__l68uD:hover .InputSearch-module_input__hCit3[type=search]::placeholder, .InputSearch-module_secondary__l68uD:focus-within .InputSearch-module_input__hCit3[type=search]::placeholder {
3689
3361
  font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
3690
3362
  font-size: var(--typography-paragraph-body-font-size, 1rem);
3691
3363
  font-weight: var(--typography-paragraph-body-font-weight, 400);
@@ -3694,33 +3366,6 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
3694
3366
  position: static;
3695
3367
  opacity: 100%;
3696
3368
  }
3697
- .InputSearch-module_secondary__l68uD:hover .InputSearch-module_input__hCit3[type=search]:-moz-placeholder, .InputSearch-module_secondary__l68uD:focus-within .InputSearch-module_input__hCit3[type=search]:-moz-placeholder {
3698
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
3699
- font-size: var(--typography-paragraph-body-font-size, 1rem);
3700
- font-weight: var(--typography-paragraph-body-font-weight, 400);
3701
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
3702
- position: static;
3703
- line-height: 2.9rem;
3704
- opacity: 100%;
3705
- }
3706
- .InputSearch-module_secondary__l68uD:hover .InputSearch-module_input__hCit3[type=search]::-moz-placeholder, .InputSearch-module_secondary__l68uD:focus-within .InputSearch-module_input__hCit3[type=search]::-moz-placeholder {
3707
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
3708
- font-size: var(--typography-paragraph-body-font-size, 1rem);
3709
- font-weight: var(--typography-paragraph-body-font-weight, 400);
3710
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
3711
- position: static;
3712
- line-height: 2.9rem;
3713
- opacity: 100%;
3714
- }
3715
- .InputSearch-module_secondary__l68uD:hover .InputSearch-module_input__hCit3[type=search]:-ms-input-placeholder, .InputSearch-module_secondary__l68uD:focus-within .InputSearch-module_input__hCit3[type=search]:-ms-input-placeholder {
3716
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
3717
- font-size: var(--typography-paragraph-body-font-size, 1rem);
3718
- font-weight: var(--typography-paragraph-body-font-weight, 400);
3719
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
3720
- position: static;
3721
- line-height: 2.9rem;
3722
- opacity: 100%;
3723
- }
3724
3369
  .InputSearch-module_secondary__l68uD:hover .InputSearch-module_startIconAdornment__Tc7Yx, .InputSearch-module_secondary__l68uD:focus-within .InputSearch-module_startIconAdornment__Tc7Yx {
3725
3370
  opacity: 100%;
3726
3371
  }
@@ -3729,7 +3374,7 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
3729
3374
  background: rgba(var(--color-white-rgb, 255, 255, 255), 0.1);
3730
3375
  color: var(--color-white, #ffffff);
3731
3376
  }
3732
- .InputSearch-module_reversed__eS7Nr .InputSearch-module_input__hCit3[type=search]::-webkit-input-placeholder {
3377
+ .InputSearch-module_reversed__eS7Nr .InputSearch-module_input__hCit3[type=search]::placeholder {
3733
3378
  font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
3734
3379
  font-size: var(--typography-paragraph-body-font-size, 1rem);
3735
3380
  font-weight: var(--typography-paragraph-body-font-weight, 400);
@@ -3739,36 +3384,6 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
3739
3384
  color: var(--color-white, #ffffff);
3740
3385
  opacity: 0.8;
3741
3386
  }
3742
- .InputSearch-module_reversed__eS7Nr .InputSearch-module_input__hCit3[type=search]:-moz-placeholder {
3743
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
3744
- font-size: var(--typography-paragraph-body-font-size, 1rem);
3745
- font-weight: var(--typography-paragraph-body-font-weight, 400);
3746
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
3747
- position: static;
3748
- line-height: 2.9rem;
3749
- color: var(--color-white, #ffffff);
3750
- opacity: 0.8;
3751
- }
3752
- .InputSearch-module_reversed__eS7Nr .InputSearch-module_input__hCit3[type=search]::-moz-placeholder {
3753
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
3754
- font-size: var(--typography-paragraph-body-font-size, 1rem);
3755
- font-weight: var(--typography-paragraph-body-font-weight, 400);
3756
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
3757
- position: static;
3758
- line-height: 2.9rem;
3759
- color: var(--color-white, #ffffff);
3760
- opacity: 0.8;
3761
- }
3762
- .InputSearch-module_reversed__eS7Nr .InputSearch-module_input__hCit3[type=search]:-ms-input-placeholder {
3763
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
3764
- font-size: var(--typography-paragraph-body-font-size, 1rem);
3765
- font-weight: var(--typography-paragraph-body-font-weight, 400);
3766
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
3767
- position: static;
3768
- line-height: 2.9rem;
3769
- color: var(--color-white, #ffffff);
3770
- opacity: 0.8;
3771
- }
3772
3387
  .InputSearch-module_reversed__eS7Nr .InputSearch-module_focusRing__kDUuP {
3773
3388
  border-color: var(--color-blue-300, #73c0e8);
3774
3389
  }
@@ -3868,8 +3483,8 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
3868
3483
  margin: 0;
3869
3484
  padding: 0;
3870
3485
  border: none;
3871
- display: inherit;
3872
- padding: 0.25rem var(--spacing-xs, 0.375rem);
3486
+ display: flex;
3487
+ padding: var(--spacing-6);
3873
3488
  border: var(--border-solid-border-width, 2px) var(--border-solid-border-style, solid) transparent;
3874
3489
  border-radius: var(--border-solid-border-radius, 7px);
3875
3490
  position: relative;
@@ -3890,10 +3505,6 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
3890
3505
  background-color: var(--color-blue-100, #e6f6ff);
3891
3506
  color: var(--color-blue-500, #0168b3);
3892
3507
  }
3893
- .DateInputWithIconButton-module_iconButton__W7YMX svg {
3894
- position: relative;
3895
- top: 2px;
3896
- }
3897
3508
 
3898
3509
  .DateInputWithIconButton-module_calendarActive__b2Vze {
3899
3510
  color: var(--color-blue-500, #0168b3);
@@ -4465,7 +4076,7 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
4465
4076
  }
4466
4077
 
4467
4078
  .FilterButton-module_hasSelectedValues__tc-XE {
4468
- font-weight: var(--typography-button-primary-font-weight, 700);
4079
+ font-weight: bold;
4469
4080
  }
4470
4081
 
4471
4082
  .FilterButton-module_labelSeparator__CmSqS {
@@ -4561,7 +4172,7 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
4561
4172
  .ListBoxSection-module_listBoxSectionHeader__N-2Fi {
4562
4173
  font-family: var(--typography-heading-6-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
4563
4174
  font-size: var(--typography-heading-6-font-size, 0.875rem);
4564
- font-weight: var(--typography-heading-6-font-weight, 700);
4175
+ font-weight: var(--typography-heading-6-font-weight, 600);
4565
4176
  line-height: var(--typography-heading-6-line-height, 1.5rem);
4566
4177
  color: rgba(var(--color-purple-800-rgb, 47, 36, 56), 0.7);
4567
4178
  margin: var(--spacing-6, 0.375rem) 0;
@@ -4720,20 +4331,20 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
4720
4331
  border: none;
4721
4332
  -webkit-font-smoothing: antialiased;
4722
4333
  -moz-osx-font-smoothing: grayscale;
4723
- font-family: var(--typography-button-secondary-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
4724
- font-weight: var(--typography-button-secondary-font-weight, 500);
4725
- font-size: var(--typography-button-secondary-font-size, 1rem);
4726
- line-height: var(--typography-button-secondary-line-height, 1.5rem);
4727
- letter-spacing: var(--typography-button-secondary-letter-spacing, normal);
4728
4334
  position: relative;
4729
- color: var(--color-blue-500, #0168b3);
4335
+ display: inline-flex;
4336
+ align-items: center;
4337
+ gap: var(--spacing-xs, 0.375rem);
4730
4338
  border: var(--border-solid-border-width, 2px) var(--border-solid-border-style, solid);
4731
4339
  border-color: var(--border-borderless-border-color, transparent);
4732
4340
  border-radius: var(--border-solid-border-radius, 7px);
4733
4341
  padding: var(--spacing-4, 0.25rem) var(--spacing-8, 0.5rem);
4734
- display: inline-flex;
4735
- gap: var(--spacing-xs, 0.375rem);
4736
- align-items: center;
4342
+ font-weight: var(--typography-button-secondary-font-weight, 500);
4343
+ font-family: var(--typography-button-secondary-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
4344
+ font-size: var(--typography-button-secondary-font-size, 1rem);
4345
+ line-height: var(--typography-button-secondary-line-height, 1.5rem);
4346
+ letter-spacing: var(--typography-button-secondary-letter-spacing, normal);
4347
+ color: var(--color-blue-500, #0168b3);
4737
4348
  }
4738
4349
  .SelectionControlButton-module_button__u-ysH:focus {
4739
4350
  outline: none;
@@ -4761,7 +4372,6 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
4761
4372
  border: 2px solid transparent;
4762
4373
  }
4763
4374
  .SelectionControlButton-module_button__u-ysH.SelectionControlButton-module_isDisabled__0axMR:focus-visible::after {
4764
- border-style: var(--border-dashed-border-style, dashed);
4765
4375
  border-color: var(--color-gray-400, #cdcdd0);
4766
4376
  }
4767
4377
  .ListBox-module_listBox__Uf6Mc {
@@ -4884,7 +4494,6 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
4884
4494
  }
4885
4495
 
4886
4496
  .SelectToggle-module_icon__BqMEK {
4887
- margin-inline-start: var(--spacing-12, 0.75rem);
4888
4497
  color: var(--color-gray-500, #878792);
4889
4498
  }
4890
4499
 
@@ -5001,6 +4610,7 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
5001
4610
  white-space: nowrap;
5002
4611
  overflow: hidden;
5003
4612
  text-overflow: ellipsis;
4613
+ padding-inline-end: var(--spacing-12);
5004
4614
  }
5005
4615
  /** THIS IS AN AUTOGENERATED FILE **/
5006
4616
  .FilterSelect-module_filterContents__p7Kgc {
@@ -5393,6 +5003,35 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
5393
5003
  }
5394
5004
 
5395
5005
  /* stylelint-enable no-descending-specificity */
5006
+ .SVG-module_icon__8J5Ev {
5007
+ width: 20px;
5008
+ height: 20px;
5009
+ display: inline-block;
5010
+ }
5011
+ .SVG-module_icon__8J5Ev > use {
5012
+ pointer-events: none;
5013
+ }
5014
+ @media screen and (-ms-high-contrast: active) {
5015
+ .SVG-module_icon__8J5Ev {
5016
+ color: black;
5017
+ }
5018
+ }
5019
+ @media screen and (-ms-high-contrast: white-on-black) {
5020
+ .SVG-module_icon__8J5Ev {
5021
+ color: white;
5022
+ }
5023
+ }
5024
+ @media screen and (-ms-high-contrast: black-on-white) {
5025
+ .SVG-module_icon__8J5Ev {
5026
+ color: black;
5027
+ }
5028
+ }
5029
+
5030
+ .SVG-module_inheritSize__Q8iam {
5031
+ width: inherit;
5032
+ height: inherit;
5033
+ display: block;
5034
+ }
5396
5035
  /** THIS IS AN AUTOGENERATED FILE **/
5397
5036
  /** THIS IS AN AUTOGENERATED FILE **/
5398
5037
  /** THIS IS AN AUTOGENERATED FILE **/
@@ -5508,11 +5147,13 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
5508
5147
  .GenericNotification-module_inline__OciO5 .GenericNotification-module_icon__SDb8v, .GenericNotification-module_toast__GOVfC .GenericNotification-module_icon__SDb8v {
5509
5148
  width: 22px;
5510
5149
  height: 22px;
5150
+ font-size: 22px;
5511
5151
  margin-top: var(--spacing-6, 0.375rem);
5512
5152
  }
5513
5153
  .GenericNotification-module_global__Weka- .GenericNotification-module_icon__SDb8v {
5514
5154
  width: 24px;
5515
5155
  height: 24px;
5156
+ font-size: 24px;
5516
5157
  }
5517
5158
 
5518
5159
  .GenericNotification-module_textContainer__Avpbk {
@@ -5543,7 +5184,7 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
5543
5184
  .GenericNotification-module_title__dvQOr {
5544
5185
  position: relative;
5545
5186
  font-family: var(--typography-heading-6-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
5546
- font-weight: var(--typography-heading-6-font-weight, 700);
5187
+ font-weight: var(--typography-heading-6-font-weight, 600);
5547
5188
  font-size: var(--typography-heading-6-font-size, 0.875rem);
5548
5189
  line-height: var(--typography-heading-6-line-height, 1.5rem);
5549
5190
  letter-spacing: var(--typography-heading-6-letter-spacing, normal);
@@ -5602,16 +5243,16 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
5602
5243
  }
5603
5244
 
5604
5245
  .GenericNotification-module_cancel__c6wky {
5246
+ cursor: pointer;
5605
5247
  appearance: none;
5606
- background: transparent;
5607
- border: none;
5608
- font: inherit;
5248
+ transition: none;
5249
+ transform: none;
5609
5250
  margin: 0;
5610
5251
  padding: 0;
5611
- transition: none;
5612
- cursor: pointer;
5252
+ border: none;
5253
+ background: transparent;
5254
+ font: inherit;
5613
5255
  color: var(--color-purple-800, #2f2438);
5614
- transform: none;
5615
5256
  }
5616
5257
  .GenericNotification-module_cancel__c6wky .GenericNotification-module_icon__SDb8v {
5617
5258
  opacity: 70%;
@@ -5723,6 +5364,275 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
5723
5364
  color: var(--color-purple-800, #2f2438);
5724
5365
  --icon-color: var(--color-red-500);
5725
5366
  }
5367
+ /** THIS IS AN AUTOGENERATED FILE **/
5368
+ /** THIS IS AN AUTOGENERATED FILE **/
5369
+ /** THIS IS AN AUTOGENERATED FILE **/
5370
+ .Popover-module_popover__B7k5I {
5371
+ box-sizing: border-box;
5372
+ box-shadow: var(--shadow-large-box-shadow, 0 3px 9px 0 rgba(0, 0, 0, 0.1), 0 8px 40px 0 rgba(0, 0, 0, 0.08));
5373
+ border: var(--border-focus-ring-border-width, 2px) var(--border-focus-ring-border-style, solid) transparent;
5374
+ border-radius: var(--border-solid-border-radius, 7px);
5375
+ background: var(--color-white, #ffffff);
5376
+ overflow: auto;
5377
+ z-index: 100000;
5378
+ }
5379
+ .Popover-module_popover__B7k5I:focus {
5380
+ outline: none;
5381
+ }
5382
+ .Popover-module_popover__B7k5I:focus-visible {
5383
+ border-color: var(--color-blue-500, #0168b3);
5384
+ }
5385
+ /** THIS IS AN AUTOGENERATED FILE **/
5386
+ /** THIS IS AN AUTOGENERATED FILE **/
5387
+ /** THIS IS AN AUTOGENERATED FILE **/
5388
+ /** THIS IS AN AUTOGENERATED FILE **/
5389
+ .Select-module_container__TaMKg {
5390
+ position: relative;
5391
+ width: 100%;
5392
+ }
5393
+
5394
+ .Select-module_notFullWidth__Mr-3G {
5395
+ width: 180px;
5396
+ }
5397
+ /** THIS IS AN AUTOGENERATED FILE **/
5398
+ /** THIS IS AN AUTOGENERATED FILE **/
5399
+ /** THIS IS AN AUTOGENERATED FILE **/
5400
+ .Tag-module_tag__Ef8Iu {
5401
+ display: inline-flex;
5402
+ align-items: center;
5403
+ padding: var(--spacing-4, 0.25rem) var(--spacing-8, 0.5rem);
5404
+ gap: var(--spacing-4, 0.25rem);
5405
+ border-radius: 28px;
5406
+ font-family: var(--typography-paragraph-intro-lede-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
5407
+ font-size: var(--typography-paragraph-small-font-size, 0.875rem);
5408
+ font-weight: var(--typography-paragraph-small-font-weight, 400);
5409
+ line-height: var(--typography-paragraph-small-line-height, 1.125rem);
5410
+ white-space: nowrap;
5411
+ }
5412
+
5413
+ .Tag-module_iconContainer__tEPTW {
5414
+ display: inline-flex;
5415
+ }
5416
+
5417
+ .Tag-module_gray__4YmDZ {
5418
+ background-color: var(--color-gray-300, #eaeaec);
5419
+ color: var(--color-purple-800, #2f2438);
5420
+ }
5421
+
5422
+ .Tag-module_blue__CjyTI {
5423
+ background-color: var(--color-blue-100, #e6f6ff);
5424
+ color: var(--color-blue-700, #003157);
5425
+ }
5426
+ .Tag-module_blue__CjyTI .Tag-module_iconContainer__tEPTW {
5427
+ color: var(--color-blue-500, #0168b3);
5428
+ }
5429
+
5430
+ .Tag-module_green__uC0TU {
5431
+ background-color: var(--color-green-100, #e8f8f4);
5432
+ color: var(--color-green-700, #22594a);
5433
+ }
5434
+ .Tag-module_green__uC0TU .Tag-module_iconContainer__tEPTW {
5435
+ color: var(--color-green-500, #3f9a86);
5436
+ }
5437
+
5438
+ .Tag-module_yellow__wEk5Z {
5439
+ background-color: var(--color-yellow-100, #fff9e4);
5440
+ color: var(--color-yellow-700, #876400);
5441
+ }
5442
+ .Tag-module_yellow__wEk5Z .Tag-module_iconContainer__tEPTW {
5443
+ color: var(--color-yellow-700, #876400);
5444
+ }
5445
+
5446
+ .Tag-module_orange__V-KdG {
5447
+ background-color: var(--color-orange-100, #fff0e8);
5448
+ color: var(--color-orange-700, #903c00);
5449
+ }
5450
+ .Tag-module_orange__V-KdG .Tag-module_iconContainer__tEPTW {
5451
+ color: var(--color-orange-500, #e96c2f);
5452
+ }
5453
+
5454
+ .Tag-module_red__cg1Rf {
5455
+ background-color: var(--color-red-100, #fdeaee);
5456
+ color: var(--color-red-700, #6c1e20);
5457
+ }
5458
+ .Tag-module_red__cg1Rf .Tag-module_iconContainer__tEPTW {
5459
+ color: var(--color-red-500, #c93b55);
5460
+ }
5461
+
5462
+ .Tag-module_purple__OR2Jt {
5463
+ background-color: var(--color-purple-100, #f4edf8);
5464
+ color: var(--color-purple-700, #4a234d);
5465
+ }
5466
+ .Tag-module_purple__OR2Jt .Tag-module_iconContainer__tEPTW {
5467
+ color: var(--color-purple-500, #844587);
5468
+ }
5469
+ /** THIS IS AN AUTOGENERATED FILE **/
5470
+ /** THIS IS AN AUTOGENERATED FILE **/
5471
+ .RemoveButton-module_removeButton__9yzxJ {
5472
+ appearance: none;
5473
+ display: inline;
5474
+ background: transparent;
5475
+ color: inherit;
5476
+ font: inherit;
5477
+ margin: 0;
5478
+ padding: 0;
5479
+ border: none;
5480
+ position: relative;
5481
+ display: inline-flex;
5482
+ border-radius: 50%;
5483
+ color: rgba(var(--color-purple-800-rgb, 47, 36, 56), 0.7);
5484
+ }
5485
+ .RemoveButton-module_removeButton__9yzxJ:focus, .RemoveButton-module_removeButton__9yzxJ:focus-visible {
5486
+ outline: none;
5487
+ }
5488
+ .RemoveButton-module_removeButton__9yzxJ:focus::after, .RemoveButton-module_removeButton__9yzxJ:focus-visible::after {
5489
+ border-color: var(--color-blue-500, #0168b3);
5490
+ content: "";
5491
+ position: absolute;
5492
+ background: transparent;
5493
+ border-width: var(--border-focus-ring-border-width, 2px);
5494
+ border-style: var(--border-focus-ring-border-style, solid);
5495
+ border-radius: 50%;
5496
+ inset: -3px;
5497
+ }
5498
+ .RemoveButton-module_removeButton__9yzxJ::before {
5499
+ position: absolute;
5500
+ content: "";
5501
+ inset: -5px;
5502
+ border-radius: 50%;
5503
+ }
5504
+ .RemoveButton-module_removeButton__9yzxJ:hover, .RemoveButton-module_removeButton__9yzxJ:focus, .RemoveButton-module_removeButton__9yzxJ:focus-visible {
5505
+ background-color: rgba(var(--color-gray-600-rgb, 82, 78, 86), 0.2);
5506
+ cursor: pointer;
5507
+ color: var(--color-purple-800, #2f2438);
5508
+ }
5509
+ /** THIS IS AN AUTOGENERATED FILE **/
5510
+ .RemovableTag-module_removableTag__IwJHj {
5511
+ padding: var(--spacing-4, 0.25rem) var(--spacing-4, 0.25rem) var(--spacing-4, 0.25rem) var(--spacing-8, 0.5rem);
5512
+ padding-block: var(--spacing-4, 0.25rem);
5513
+ padding-inline: var(--spacing-8, 0.5rem) var(--spacing-4, 0.25rem);
5514
+ }
5515
+ .Tab-module_tab__-XtyL {
5516
+ display: inline-flex;
5517
+ align-items: center;
5518
+ border: 2px solid transparent;
5519
+ border-bottom: 0;
5520
+ border-top-left-radius: var(--border-borderless-border-radius);
5521
+ border-top-right-radius: var(--border-borderless-border-radius);
5522
+ background: var(--color-white);
5523
+ white-space: nowrap;
5524
+ text-decoration: none;
5525
+ padding: var(--spacing-md) var(--spacing-md);
5526
+ margin: 0;
5527
+ font-family: var(--typography-heading-4-font-family);
5528
+ font-size: var(--typography-heading-4-font-size);
5529
+ font-weight: var(--typography-heading-4-font-weight);
5530
+ line-height: var(--typography-heading-4-line-height);
5531
+ letter-spacing: var(--typography-heading-4-letter-spacing);
5532
+ color: var(--color-purple-800);
5533
+
5534
+ &:focus {
5535
+ outline: none;
5536
+ }
5537
+
5538
+ &:focus-visible {
5539
+ background: var(--color-blue-100);
5540
+ color: var(--color-blue-500);
5541
+ border-color: var(--color-blue-500);
5542
+ }
5543
+
5544
+ &[data-disabled] {
5545
+ opacity: 0.3;
5546
+ }
5547
+
5548
+ &:not(:first-child) {
5549
+ margin-inline-start: var(--spacing-xs);
5550
+ }
5551
+
5552
+ &:not([data-disabled]):hover {
5553
+ background: var(--color-blue-100);
5554
+ color: var(--color-blue-500);
5555
+ }
5556
+ }
5557
+
5558
+ .Tab-module_tab__-XtyL[data-selected] {
5559
+ position: relative;
5560
+ color: var(--color-blue-500);
5561
+
5562
+ &::before {
5563
+ content: "";
5564
+ display: block;
5565
+ border-top-left-radius: 5px;
5566
+ border-top-right-radius: 5px;
5567
+ background-color: currentcolor;
5568
+ height: 5px;
5569
+ width: 100%;
5570
+ position: absolute;
5571
+ left: 0;
5572
+ right: 0;
5573
+ bottom: 0;
5574
+ }
5575
+ }
5576
+
5577
+ .Tab-module_badge__Zfili {
5578
+ margin-inline-start: var(--spacing-sm);
5579
+ display: inline-flex;
5580
+ align-items: center;
5581
+ }
5582
+
5583
+ @media (forced-colors: active) {
5584
+ .Tab-module_tab__-XtyL {
5585
+ border: 2px solid transparent;
5586
+
5587
+ &:focus-visible::after {
5588
+ content: "";
5589
+ position: absolute;
5590
+ background: transparent;
5591
+ border-radius: var(--border-focus-ring-border-radius);
5592
+ border-width: var(--border-focus-ring-border-width);
5593
+ border-style: var(--border-focus-ring-border-style);
5594
+ border-color: transparent;
5595
+ inset: -2px;
5596
+ }
5597
+ }
5598
+
5599
+ .Tab-module_tab__-XtyL[data-selected]::before {
5600
+ /* High contrast also doesn't see the pseudo element created to show the active tab. */
5601
+ content: "";
5602
+ position: absolute;
5603
+ left: 0;
5604
+ right: 0;
5605
+ bottom: 0;
5606
+ border-bottom: 2px solid transparent;
5607
+ }
5608
+ }
5609
+
5610
+ .TabList-module_tabList__e1qAi {
5611
+ border-bottom: 1px solid rgba(var(--color-gray-600-rgb), 0.1);
5612
+ padding: var(--spacing-xs) var(--spacing-md) 0;
5613
+ }
5614
+
5615
+ .TabList-module_noPadding__YM23K {
5616
+ padding: 0;
5617
+ }
5618
+
5619
+ .TabPanel-module_tabPanel__ae5Rx {
5620
+ border: 2px solid transparent;
5621
+
5622
+ &:focus {
5623
+ outline: none;
5624
+ }
5625
+
5626
+ &:focus-visible {
5627
+ border-color: var(--color-blue-500);
5628
+ border-radius: var(--border-focus-ring-border-radius);
5629
+ }
5630
+ }
5631
+
5632
+ .NotificationIcon-module_notificationIcon__4xH0m {
5633
+ font-size: inherit;
5634
+ }
5635
+
5726
5636
  /** THIS IS AN AUTOGENERATED FILE **/
5727
5637
  /** THIS IS AN AUTOGENERATED FILE **/
5728
5638
  .ToastNotificationsList-module_toastNotificationsList__APiSP {
@@ -6140,34 +6050,26 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
6140
6050
  }
6141
6051
 
6142
6052
  .GenericModal-module_backdropLayer__RNQ-U {
6143
- top: 0;
6144
- bottom: 0;
6145
- right: 0;
6146
- left: 0;
6147
6053
  position: fixed;
6148
6054
  background-color: #000;
6149
6055
  opacity: 50%;
6150
6056
  z-index: 1040;
6151
- }
6152
- .GenericModal-module_backdropLayer__RNQ-U[dir=rtl], [dir=rtl] .GenericModal-module_backdropLayer__RNQ-U {
6153
- right: 0;
6154
- left: 0;
6057
+ top: 0;
6058
+ bottom: 0;
6059
+ inset-inline-end: 0;
6060
+ inset-inline-start: 0;
6155
6061
  }
6156
6062
 
6157
6063
  .GenericModal-module_scrollLayer__A5VdY {
6158
- top: 0;
6159
- bottom: 0;
6160
- right: 0;
6161
- left: 0;
6162
6064
  position: fixed;
6163
6065
  display: flex;
6164
6066
  align-items: center;
6165
6067
  z-index: 1050;
6166
6068
  overflow-y: auto;
6167
- }
6168
- .GenericModal-module_scrollLayer__A5VdY[dir=rtl], [dir=rtl] .GenericModal-module_scrollLayer__A5VdY {
6169
- right: 0;
6170
- left: 0;
6069
+ top: 0;
6070
+ bottom: 0;
6071
+ inset-inline-end: 0;
6072
+ inset-inline-start: 0;
6171
6073
  }
6172
6074
 
6173
6075
  .GenericModal-module_modalLayer__WfD1U {
@@ -6185,10 +6087,10 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
6185
6087
  all the way to 1 with 200ms ("rapid" token), but is fine with
6186
6088
  201ms, see Jira [KDS-523]
6187
6089
  */
6188
- /* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
6189
- animation-name: GenericModal-module_fade-0-to-0-5__-4t3h;
6190
6090
  animation-duration: 201ms;
6191
6091
  animation-fill-mode: forwards;
6092
+ /* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
6093
+ animation-name: GenericModal-module_fade-0-to-0-5__-4t3h;
6192
6094
  }
6193
6095
  @keyframes GenericModal-module_fade-0-to-0-5__-4t3h {
6194
6096
  0% {
@@ -6199,11 +6101,11 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
6199
6101
  }
6200
6102
  }
6201
6103
  .GenericModal-module_animatingEnter__P3wuk [data-modal] {
6202
- /* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
6203
- animation-name: GenericModal-module_custom-1__G0JT4;
6204
6104
  animation-duration: var(--animation-duration-fast, 300ms);
6205
6105
  animation-fill-mode: forwards;
6206
6106
  animation-timing-function: var(--animation-easing-function-bounce-in, cubic-bezier(0.485, 0.155, 0.24, 1.245));
6107
+ /* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
6108
+ animation-name: GenericModal-module_custom-1__G0JT4;
6207
6109
  }
6208
6110
  @keyframes GenericModal-module_custom-1__G0JT4 {
6209
6111
  0% {
@@ -6220,10 +6122,10 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
6220
6122
  transition-duration: var(--animation-duration-rapid, 200ms);
6221
6123
  }
6222
6124
  .GenericModal-module_animatingLeave__rNkKX .GenericModal-module_backdropLayer__RNQ-U {
6223
- /* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
6224
- animation-name: GenericModal-module_fade-0-5-to-0__JkaSn;
6225
6125
  animation-duration: var(--animation-duration-rapid, 200ms);
6226
6126
  animation-fill-mode: forwards;
6127
+ /* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
6128
+ animation-name: GenericModal-module_fade-0-5-to-0__JkaSn;
6227
6129
  }
6228
6130
  @keyframes GenericModal-module_fade-0-5-to-0__JkaSn {
6229
6131
  0% {
@@ -6234,11 +6136,11 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
6234
6136
  }
6235
6137
  }
6236
6138
  .GenericModal-module_animatingLeave__rNkKX [data-modal] {
6237
- /* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
6238
- animation-name: GenericModal-module_custom-3__oWflS;
6239
6139
  animation-duration: var(--animation-duration-rapid, 200ms);
6240
6140
  animation-fill-mode: forwards;
6241
6141
  animation-timing-function: var(--animation-easing-function-bounce-out, cubic-bezier(0.485, 0.155, 0.515, 0.845));
6142
+ /* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
6143
+ animation-name: GenericModal-module_custom-3__oWflS;
6242
6144
  }
6243
6145
  @keyframes GenericModal-module_custom-3__oWflS {
6244
6146
  0% {
@@ -6367,15 +6269,11 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
6367
6269
  */
6368
6270
  /* stylelint-enable scss/at-if-no-null, declaration-block-no-redundant-longhand-properties */
6369
6271
  .ModalHeader-module_dismissButton__YhHZl {
6370
- top: 0;
6371
- right: 0;
6372
- left: auto;
6373
6272
  position: absolute;
6374
6273
  z-index: 1060;
6375
- }
6376
- .ModalHeader-module_dismissButton__YhHZl[dir=rtl], [dir=rtl] .ModalHeader-module_dismissButton__YhHZl {
6377
- right: auto;
6378
- left: 0;
6274
+ top: 0;
6275
+ inset-inline-end: 0;
6276
+ inset-inline-start: auto;
6379
6277
  }
6380
6278
 
6381
6279
  .ModalHeader-module_layout__K8x4O {
@@ -6515,34 +6413,26 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
6515
6413
  }
6516
6414
 
6517
6415
  .ConfirmationModal-module_backdropLayer__wvXnl {
6518
- top: 0;
6519
- bottom: 0;
6520
- right: 0;
6521
- left: 0;
6522
6416
  position: fixed;
6523
6417
  background-color: #000;
6524
6418
  opacity: 50%;
6525
6419
  z-index: 1040;
6526
- }
6527
- .ConfirmationModal-module_backdropLayer__wvXnl[dir=rtl], [dir=rtl] .ConfirmationModal-module_backdropLayer__wvXnl {
6528
- right: 0;
6529
- left: 0;
6420
+ top: 0;
6421
+ bottom: 0;
6422
+ inset-inline-end: 0;
6423
+ inset-inline-start: 0;
6530
6424
  }
6531
6425
 
6532
6426
  .ConfirmationModal-module_scrollLayer__x-yP4 {
6533
- top: 0;
6534
- bottom: 0;
6535
- right: 0;
6536
- left: 0;
6537
6427
  position: fixed;
6538
6428
  display: flex;
6539
6429
  align-items: center;
6540
6430
  z-index: 1050;
6541
6431
  overflow-y: auto;
6542
- }
6543
- .ConfirmationModal-module_scrollLayer__x-yP4[dir=rtl], [dir=rtl] .ConfirmationModal-module_scrollLayer__x-yP4 {
6544
- right: 0;
6545
- left: 0;
6432
+ top: 0;
6433
+ bottom: 0;
6434
+ inset-inline-end: 0;
6435
+ inset-inline-start: 0;
6546
6436
  }
6547
6437
 
6548
6438
  .ConfirmationModal-module_modalLayer__MucTZ {
@@ -6586,10 +6476,10 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
6586
6476
  all the way to 1 with 200ms ("rapid" token), but is fine with
6587
6477
  201ms, see Jira [KDS-523]
6588
6478
  */
6589
- /* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
6590
- animation-name: ConfirmationModal-module_fade-0-to-0-5__353tZ;
6591
6479
  animation-duration: 201ms;
6592
6480
  animation-fill-mode: forwards;
6481
+ /* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
6482
+ animation-name: ConfirmationModal-module_fade-0-to-0-5__353tZ;
6593
6483
  }
6594
6484
  @keyframes ConfirmationModal-module_fade-0-to-0-5__353tZ {
6595
6485
  0% {
@@ -6600,11 +6490,11 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
6600
6490
  }
6601
6491
  }
6602
6492
  .ConfirmationModal-module_animatingEnter__4W4xh [data-modal] {
6603
- /* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
6604
- animation-name: ConfirmationModal-module_custom-1__Ibcy-;
6605
6493
  animation-duration: var(--animation-duration-fast, 300ms);
6606
6494
  animation-fill-mode: forwards;
6607
6495
  animation-timing-function: var(--animation-easing-function-bounce-in, cubic-bezier(0.485, 0.155, 0.24, 1.245));
6496
+ /* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
6497
+ animation-name: ConfirmationModal-module_custom-1__Ibcy-;
6608
6498
  }
6609
6499
  @keyframes ConfirmationModal-module_custom-1__Ibcy- {
6610
6500
  0% {
@@ -6621,10 +6511,10 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
6621
6511
  transition-duration: var(--animation-duration-rapid, 200ms);
6622
6512
  }
6623
6513
  .ConfirmationModal-module_animatingLeave__n-S4X .ConfirmationModal-module_backdropLayer__wvXnl {
6624
- /* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
6625
- animation-name: ConfirmationModal-module_fade-0-5-to-0__pfhV-;
6626
6514
  animation-duration: var(--animation-duration-rapid, 200ms);
6627
6515
  animation-fill-mode: forwards;
6516
+ /* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
6517
+ animation-name: ConfirmationModal-module_fade-0-5-to-0__pfhV-;
6628
6518
  }
6629
6519
  @keyframes ConfirmationModal-module_fade-0-5-to-0__pfhV- {
6630
6520
  0% {
@@ -6635,11 +6525,11 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
6635
6525
  }
6636
6526
  }
6637
6527
  .ConfirmationModal-module_animatingLeave__n-S4X [data-modal] {
6638
- /* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
6639
- animation-name: ConfirmationModal-module_custom-3__MEO7v;
6640
6528
  animation-duration: var(--animation-duration-rapid, 200ms);
6641
6529
  animation-fill-mode: forwards;
6642
6530
  animation-timing-function: var(--animation-easing-function-bounce-out, cubic-bezier(0.485, 0.155, 0.515, 0.845));
6531
+ /* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
6532
+ animation-name: ConfirmationModal-module_custom-3__MEO7v;
6643
6533
  }
6644
6534
  @keyframes ConfirmationModal-module_custom-3__MEO7v {
6645
6535
  0% {
@@ -6705,6 +6595,7 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
6705
6595
  }
6706
6596
  }
6707
6597
  .ConfirmationModal-module_iconContainer__QjdGa .ConfirmationModal-module_spotIcon__rFSHQ {
6598
+ --icon-size: 30;
6708
6599
  width: 30px;
6709
6600
  height: 30px;
6710
6601
  }
@@ -6877,34 +6768,26 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
6877
6768
  }
6878
6769
 
6879
6770
  .ContextModal-module_backdropLayer__wuj3B {
6880
- top: 0;
6881
- bottom: 0;
6882
- right: 0;
6883
- left: 0;
6884
6771
  position: fixed;
6885
6772
  background-color: #000;
6886
6773
  opacity: 50%;
6887
6774
  z-index: 1040;
6888
- }
6889
- .ContextModal-module_backdropLayer__wuj3B[dir=rtl], [dir=rtl] .ContextModal-module_backdropLayer__wuj3B {
6890
- right: 0;
6891
- left: 0;
6775
+ top: 0;
6776
+ bottom: 0;
6777
+ inset-inline-end: 0;
6778
+ inset-inline-start: 0;
6892
6779
  }
6893
6780
 
6894
6781
  .ContextModal-module_scrollLayer__JANXA {
6895
- top: 0;
6896
- bottom: 0;
6897
- right: 0;
6898
- left: 0;
6899
6782
  position: fixed;
6900
6783
  display: flex;
6901
6784
  align-items: center;
6902
6785
  z-index: 1050;
6903
6786
  overflow-y: auto;
6904
- }
6905
- .ContextModal-module_scrollLayer__JANXA[dir=rtl], [dir=rtl] .ContextModal-module_scrollLayer__JANXA {
6906
- right: 0;
6907
- left: 0;
6787
+ top: 0;
6788
+ bottom: 0;
6789
+ inset-inline-end: 0;
6790
+ inset-inline-start: 0;
6908
6791
  }
6909
6792
 
6910
6793
  .ContextModal-module_modalLayer__Cx6aX {
@@ -6948,10 +6831,10 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
6948
6831
  all the way to 1 with 200ms ("rapid" token), but is fine with
6949
6832
  201ms, see Jira [KDS-523]
6950
6833
  */
6951
- /* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
6952
- animation-name: ContextModal-module_fade-0-to-0-5__vZx9M;
6953
6834
  animation-duration: 201ms;
6954
6835
  animation-fill-mode: forwards;
6836
+ /* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
6837
+ animation-name: ContextModal-module_fade-0-to-0-5__vZx9M;
6955
6838
  }
6956
6839
  @keyframes ContextModal-module_fade-0-to-0-5__vZx9M {
6957
6840
  0% {
@@ -6962,11 +6845,11 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
6962
6845
  }
6963
6846
  }
6964
6847
  .ContextModal-module_animatingEnter__53BlF [data-modal] {
6965
- /* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
6966
- animation-name: ContextModal-module_custom-1__be8sO;
6967
6848
  animation-duration: var(--animation-duration-fast, 300ms);
6968
6849
  animation-fill-mode: forwards;
6969
6850
  animation-timing-function: var(--animation-easing-function-bounce-in, cubic-bezier(0.485, 0.155, 0.24, 1.245));
6851
+ /* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
6852
+ animation-name: ContextModal-module_custom-1__be8sO;
6970
6853
  }
6971
6854
  @keyframes ContextModal-module_custom-1__be8sO {
6972
6855
  0% {
@@ -6983,10 +6866,10 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
6983
6866
  transition-duration: var(--animation-duration-rapid, 200ms);
6984
6867
  }
6985
6868
  .ContextModal-module_animatingLeave__-JR11 .ContextModal-module_backdropLayer__wuj3B {
6986
- /* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
6987
- animation-name: ContextModal-module_fade-0-5-to-0__R4eO-;
6988
6869
  animation-duration: var(--animation-duration-rapid, 200ms);
6989
6870
  animation-fill-mode: forwards;
6871
+ /* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
6872
+ animation-name: ContextModal-module_fade-0-5-to-0__R4eO-;
6990
6873
  }
6991
6874
  @keyframes ContextModal-module_fade-0-5-to-0__R4eO- {
6992
6875
  0% {
@@ -6997,11 +6880,11 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
6997
6880
  }
6998
6881
  }
6999
6882
  .ContextModal-module_animatingLeave__-JR11 [data-modal] {
7000
- /* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
7001
- animation-name: ContextModal-module_custom-3__klp3m;
7002
6883
  animation-duration: var(--animation-duration-rapid, 200ms);
7003
6884
  animation-fill-mode: forwards;
7004
6885
  animation-timing-function: var(--animation-easing-function-bounce-out, cubic-bezier(0.485, 0.155, 0.515, 0.845));
6886
+ /* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
6887
+ animation-name: ContextModal-module_custom-3__klp3m;
7005
6888
  }
7006
6889
  @keyframes ContextModal-module_custom-3__klp3m {
7007
6890
  0% {
@@ -7039,11 +6922,11 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
7039
6922
  }
7040
6923
  }
7041
6924
  .ContextModal-module_animatingEnter__53BlF .ContextModal-module_modal__wriV7 {
7042
- /* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
7043
- animation-name: ContextModal-module_custom-5__deZpl;
7044
6925
  animation-duration: var(--animation-duration-fast, 300ms);
7045
6926
  animation-fill-mode: forwards;
7046
6927
  animation-timing-function: var(--animation-easing-function-bounce-in, cubic-bezier(0.485, 0.155, 0.24, 1.245));
6928
+ /* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
6929
+ animation-name: ContextModal-module_custom-5__deZpl;
7047
6930
  }
7048
6931
  @keyframes ContextModal-module_custom-5__deZpl {
7049
6932
  0% {
@@ -7056,11 +6939,11 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
7056
6939
  }
7057
6940
  }
7058
6941
  .ContextModal-module_animatingLeave__-JR11 .ContextModal-module_modal__wriV7 {
7059
- /* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
7060
- animation-name: ContextModal-module_custom-7__rPmP4;
7061
6942
  animation-duration: var(--animation-duration-rapid, 200ms);
7062
6943
  animation-fill-mode: forwards;
7063
6944
  animation-timing-function: var(--animation-easing-function-bounce-out, cubic-bezier(0.485, 0.155, 0.515, 0.845));
6945
+ /* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
6946
+ animation-name: ContextModal-module_custom-7__rPmP4;
7064
6947
  }
7065
6948
  @keyframes ContextModal-module_custom-7__rPmP4 {
7066
6949
  0% {
@@ -7208,34 +7091,26 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
7208
7091
  }
7209
7092
 
7210
7093
  .InputEditModal-module_backdropLayer__aVLSb {
7211
- top: 0;
7212
- bottom: 0;
7213
- right: 0;
7214
- left: 0;
7215
7094
  position: fixed;
7216
7095
  background-color: #000;
7217
7096
  opacity: 50%;
7218
7097
  z-index: 1040;
7219
- }
7220
- .InputEditModal-module_backdropLayer__aVLSb[dir=rtl], [dir=rtl] .InputEditModal-module_backdropLayer__aVLSb {
7221
- right: 0;
7222
- left: 0;
7098
+ top: 0;
7099
+ bottom: 0;
7100
+ inset-inline-end: 0;
7101
+ inset-inline-start: 0;
7223
7102
  }
7224
7103
 
7225
7104
  .InputEditModal-module_scrollLayer__isygg {
7226
- top: 0;
7227
- bottom: 0;
7228
- right: 0;
7229
- left: 0;
7230
7105
  position: fixed;
7231
7106
  display: flex;
7232
7107
  align-items: center;
7233
7108
  z-index: 1050;
7234
7109
  overflow-y: auto;
7235
- }
7236
- .InputEditModal-module_scrollLayer__isygg[dir=rtl], [dir=rtl] .InputEditModal-module_scrollLayer__isygg {
7237
- right: 0;
7238
- left: 0;
7110
+ top: 0;
7111
+ bottom: 0;
7112
+ inset-inline-end: 0;
7113
+ inset-inline-start: 0;
7239
7114
  }
7240
7115
 
7241
7116
  .InputEditModal-module_modalLayer__r5vqj {
@@ -7279,10 +7154,10 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
7279
7154
  all the way to 1 with 200ms ("rapid" token), but is fine with
7280
7155
  201ms, see Jira [KDS-523]
7281
7156
  */
7282
- /* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
7283
- animation-name: InputEditModal-module_fade-0-to-0-5__ywvjR;
7284
7157
  animation-duration: 201ms;
7285
7158
  animation-fill-mode: forwards;
7159
+ /* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
7160
+ animation-name: InputEditModal-module_fade-0-to-0-5__ywvjR;
7286
7161
  }
7287
7162
  @keyframes InputEditModal-module_fade-0-to-0-5__ywvjR {
7288
7163
  0% {
@@ -7293,11 +7168,11 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
7293
7168
  }
7294
7169
  }
7295
7170
  .InputEditModal-module_animatingEnter__qZgX2 [data-modal] {
7296
- /* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
7297
- animation-name: InputEditModal-module_custom-1__wSZX6;
7298
7171
  animation-duration: var(--animation-duration-fast, 300ms);
7299
7172
  animation-fill-mode: forwards;
7300
7173
  animation-timing-function: var(--animation-easing-function-bounce-in, cubic-bezier(0.485, 0.155, 0.24, 1.245));
7174
+ /* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
7175
+ animation-name: InputEditModal-module_custom-1__wSZX6;
7301
7176
  }
7302
7177
  @keyframes InputEditModal-module_custom-1__wSZX6 {
7303
7178
  0% {
@@ -7314,10 +7189,10 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
7314
7189
  transition-duration: var(--animation-duration-rapid, 200ms);
7315
7190
  }
7316
7191
  .InputEditModal-module_animatingLeave__S2HGz .InputEditModal-module_backdropLayer__aVLSb {
7317
- /* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
7318
- animation-name: InputEditModal-module_fade-0-5-to-0__s2WmG;
7319
7192
  animation-duration: var(--animation-duration-rapid, 200ms);
7320
7193
  animation-fill-mode: forwards;
7194
+ /* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
7195
+ animation-name: InputEditModal-module_fade-0-5-to-0__s2WmG;
7321
7196
  }
7322
7197
  @keyframes InputEditModal-module_fade-0-5-to-0__s2WmG {
7323
7198
  0% {
@@ -7328,11 +7203,11 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
7328
7203
  }
7329
7204
  }
7330
7205
  .InputEditModal-module_animatingLeave__S2HGz [data-modal] {
7331
- /* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
7332
- animation-name: InputEditModal-module_custom-3__T3riv;
7333
7206
  animation-duration: var(--animation-duration-rapid, 200ms);
7334
7207
  animation-fill-mode: forwards;
7335
7208
  animation-timing-function: var(--animation-easing-function-bounce-out, cubic-bezier(0.485, 0.155, 0.515, 0.845));
7209
+ /* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
7210
+ animation-name: InputEditModal-module_custom-3__T3riv;
7336
7211
  }
7337
7212
  @keyframes InputEditModal-module_custom-3__T3riv {
7338
7213
  0% {
@@ -7365,11 +7240,11 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
7365
7240
  max-width: 600px;
7366
7241
  }
7367
7242
  .InputEditModal-module_animatingEnter__qZgX2 .InputEditModal-module_modal__SbQqp {
7368
- /* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
7369
- animation-name: InputEditModal-module_custom-5__trORr;
7370
7243
  animation-duration: var(--animation-duration-fast, 300ms);
7371
7244
  animation-fill-mode: forwards;
7372
7245
  animation-timing-function: var(--animation-easing-function-bounce-in, cubic-bezier(0.485, 0.155, 0.24, 1.245));
7246
+ /* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
7247
+ animation-name: InputEditModal-module_custom-5__trORr;
7373
7248
  }
7374
7249
  @keyframes InputEditModal-module_custom-5__trORr {
7375
7250
  0% {
@@ -7382,11 +7257,11 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
7382
7257
  }
7383
7258
  }
7384
7259
  .InputEditModal-module_animatingLeave__S2HGz .InputEditModal-module_modal__SbQqp {
7385
- /* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
7386
- animation-name: InputEditModal-module_custom-7__-98CZ;
7387
7260
  animation-duration: var(--animation-duration-rapid, 200ms);
7388
7261
  animation-fill-mode: forwards;
7389
7262
  animation-timing-function: var(--animation-easing-function-bounce-out, cubic-bezier(0.485, 0.155, 0.515, 0.845));
7263
+ /* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
7264
+ animation-name: InputEditModal-module_custom-7__-98CZ;
7390
7265
  }
7391
7266
  @keyframes InputEditModal-module_custom-7__-98CZ {
7392
7267
  0% {
@@ -7483,12 +7358,6 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
7483
7358
  }
7484
7359
 
7485
7360
  .Checkbox-module_icon__2b48e {
7486
- height: 24px;
7487
- width: 24px;
7488
- position: absolute;
7489
- top: 50%;
7490
- left: 50%;
7491
- transform: translate(-50%, -50%);
7492
7361
  color: var(--color-white, #ffffff);
7493
7362
  }
7494
7363
  /** THIS IS AN AUTOGENERATED FILE **/
@@ -7560,154 +7429,6 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
7560
7429
  /** THIS IS AN AUTOGENERATED FILE **/
7561
7430
  /** THIS IS AN AUTOGENERATED FILE **/
7562
7431
  /** THIS IS AN AUTOGENERATED FILE **/
7563
- .Popover-module_popover__B7k5I {
7564
- box-sizing: border-box;
7565
- box-shadow: var(--shadow-large-box-shadow, 0 3px 9px 0 rgba(0, 0, 0, 0.1), 0 8px 40px 0 rgba(0, 0, 0, 0.08));
7566
- border: var(--border-focus-ring-border-width, 2px) var(--border-focus-ring-border-style, solid) transparent;
7567
- border-radius: var(--border-solid-border-radius, 7px);
7568
- background: var(--color-white, #ffffff);
7569
- overflow: auto;
7570
- z-index: 100000;
7571
- }
7572
- .Popover-module_popover__B7k5I:focus {
7573
- outline: none;
7574
- }
7575
- .Popover-module_popover__B7k5I:focus-visible {
7576
- border-color: var(--color-blue-500, #0168b3);
7577
- }
7578
- /** THIS IS AN AUTOGENERATED FILE **/
7579
- /** THIS IS AN AUTOGENERATED FILE **/
7580
- /** THIS IS AN AUTOGENERATED FILE **/
7581
- /** THIS IS AN AUTOGENERATED FILE **/
7582
- .Select-module_container__TaMKg {
7583
- position: relative;
7584
- width: 100%;
7585
- }
7586
-
7587
- .Select-module_notFullWidth__Mr-3G {
7588
- width: 180px;
7589
- }
7590
- /** THIS IS AN AUTOGENERATED FILE **/
7591
- /** THIS IS AN AUTOGENERATED FILE **/
7592
- /** THIS IS AN AUTOGENERATED FILE **/
7593
- .Tag-module_tag__Ef8Iu {
7594
- display: inline-flex;
7595
- align-items: center;
7596
- padding: var(--spacing-4, 0.25rem) var(--spacing-8, 0.5rem);
7597
- gap: var(--spacing-4, 0.25rem);
7598
- border-radius: 28px;
7599
- font-family: var(--typography-paragraph-intro-lede-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
7600
- font-size: var(--typography-paragraph-small-font-size, 0.875rem);
7601
- font-weight: var(--typography-paragraph-small-font-weight, 400);
7602
- line-height: var(--typography-paragraph-small-line-height, 1.125rem);
7603
- white-space: nowrap;
7604
- }
7605
-
7606
- .Tag-module_iconContainer__tEPTW {
7607
- display: inline-flex;
7608
- }
7609
-
7610
- .Tag-module_gray__4YmDZ {
7611
- background-color: var(--color-gray-300, #eaeaec);
7612
- color: var(--color-purple-800, #2f2438);
7613
- }
7614
-
7615
- .Tag-module_blue__CjyTI {
7616
- background-color: var(--color-blue-100, #e6f6ff);
7617
- color: var(--color-blue-700, #003157);
7618
- }
7619
- .Tag-module_blue__CjyTI .Tag-module_iconContainer__tEPTW {
7620
- color: var(--color-blue-500, #0168b3);
7621
- }
7622
-
7623
- .Tag-module_green__uC0TU {
7624
- background-color: var(--color-green-100, #e8f8f4);
7625
- color: var(--color-green-700, #22594a);
7626
- }
7627
- .Tag-module_green__uC0TU .Tag-module_iconContainer__tEPTW {
7628
- color: var(--color-green-500, #3f9a86);
7629
- }
7630
-
7631
- .Tag-module_yellow__wEk5Z {
7632
- background-color: var(--color-yellow-100, #fff9e4);
7633
- color: var(--color-yellow-700, #876400);
7634
- }
7635
- .Tag-module_yellow__wEk5Z .Tag-module_iconContainer__tEPTW {
7636
- color: var(--color-yellow-500, #ffb600);
7637
- }
7638
-
7639
- .Tag-module_orange__V-KdG {
7640
- background-color: var(--color-orange-100, #fff0e8);
7641
- color: var(--color-orange-700, #903c00);
7642
- }
7643
- .Tag-module_orange__V-KdG .Tag-module_iconContainer__tEPTW {
7644
- color: var(--color-orange-500, #e96c2f);
7645
- }
7646
-
7647
- .Tag-module_red__cg1Rf {
7648
- background-color: var(--color-red-100, #fdeaee);
7649
- color: var(--color-red-700, #6c1e20);
7650
- }
7651
- .Tag-module_red__cg1Rf .Tag-module_iconContainer__tEPTW {
7652
- color: var(--color-red-500, #c93b55);
7653
- }
7654
-
7655
- .Tag-module_purple__OR2Jt {
7656
- background-color: var(--color-purple-100, #f4edf8);
7657
- color: var(--color-purple-700, #4a234d);
7658
- }
7659
- .Tag-module_purple__OR2Jt .Tag-module_iconContainer__tEPTW {
7660
- color: var(--color-purple-500, #844587);
7661
- }
7662
- /** THIS IS AN AUTOGENERATED FILE **/
7663
- /** THIS IS AN AUTOGENERATED FILE **/
7664
- .RemoveButton-module_removeButton__9yzxJ {
7665
- appearance: none;
7666
- display: inline;
7667
- background: transparent;
7668
- color: inherit;
7669
- font: inherit;
7670
- margin: 0;
7671
- padding: 0;
7672
- border: none;
7673
- position: relative;
7674
- display: inline-flex;
7675
- border-radius: 50%;
7676
- color: rgba(var(--color-purple-800-rgb, 47, 36, 56), 0.7);
7677
- }
7678
- .RemoveButton-module_removeButton__9yzxJ:focus, .RemoveButton-module_removeButton__9yzxJ:focus-visible {
7679
- outline: none;
7680
- }
7681
- .RemoveButton-module_removeButton__9yzxJ:focus::after, .RemoveButton-module_removeButton__9yzxJ:focus-visible::after {
7682
- border-color: var(--color-blue-500, #0168b3);
7683
- content: "";
7684
- position: absolute;
7685
- background: transparent;
7686
- border-width: var(--border-focus-ring-border-width, 2px);
7687
- border-style: var(--border-focus-ring-border-style, solid);
7688
- border-radius: 50%;
7689
- inset: -3px;
7690
- }
7691
- .RemoveButton-module_removeButton__9yzxJ::before {
7692
- position: absolute;
7693
- content: "";
7694
- inset: -5px;
7695
- border-radius: 50%;
7696
- }
7697
- .RemoveButton-module_removeButton__9yzxJ:hover, .RemoveButton-module_removeButton__9yzxJ:focus, .RemoveButton-module_removeButton__9yzxJ:focus-visible {
7698
- background-color: rgba(var(--color-gray-600-rgb, 82, 78, 86), 0.2);
7699
- cursor: pointer;
7700
- color: var(--color-purple-800, #2f2438);
7701
- }
7702
- /** THIS IS AN AUTOGENERATED FILE **/
7703
- .RemovableTag-module_removableTag__IwJHj {
7704
- padding: var(--spacing-4, 0.25rem) var(--spacing-4, 0.25rem) var(--spacing-4, 0.25rem) var(--spacing-8, 0.5rem);
7705
- padding-block: var(--spacing-4, 0.25rem);
7706
- padding-inline: var(--spacing-8, 0.5rem) var(--spacing-4, 0.25rem);
7707
- }
7708
- /** THIS IS AN AUTOGENERATED FILE **/
7709
- /** THIS IS AN AUTOGENERATED FILE **/
7710
- /** THIS IS AN AUTOGENERATED FILE **/
7711
7432
  .MultiSelectToggle-module_multiSelectToggle__CeR4G {
7712
7433
  position: relative;
7713
7434
  display: inline-flex;
@@ -7798,7 +7519,6 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
7798
7519
  display: flex;
7799
7520
  align-items: center;
7800
7521
  justify-content: center;
7801
- height: 36px;
7802
7522
  width: 36px;
7803
7523
  background-color: transparent;
7804
7524
  color: rgba(var(--color-purple-800-rgb, 47, 36, 56), 0.7);
@@ -8023,15 +7743,15 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
8023
7743
  }
8024
7744
 
8025
7745
  .Popover-module_informativeIcon__WqmCv {
8026
- color: var(--color-blue-500, #0168b3);
7746
+ color: var(--color-blue-500);
8027
7747
  }
8028
7748
 
8029
7749
  .Popover-module_positiveIcon__wyqmw {
8030
- color: var(--color-green-400, #5dcaad);
7750
+ color: var(--color-green-500);
8031
7751
  }
8032
7752
 
8033
7753
  .Popover-module_negativeIcon__Bb7-e {
8034
- color: var(--color-red-500, #c93b55);
7754
+ color: var(--color-red-500);
8035
7755
  }
8036
7756
 
8037
7757
  .Popover-module_cautionaryIcon__rptji {
@@ -8488,7 +8208,6 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
8488
8208
  inset: calc(-1 * calc(var(--border-focus-ring-border-width, 2px) * 2 + 1px));
8489
8209
  z-index: 1;
8490
8210
  }
8491
- /** THIS IS AN AUTOGENERATED FILE **/
8492
8211
  /* stylelint-disable */
8493
8212
  /* stylelint-enable */
8494
8213
  /* prettier-ignore */
@@ -8517,78 +8236,24 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
8517
8236
  /* prettier-ignore */
8518
8237
  /** THIS IS AN AUTOGENERATED FILE **/
8519
8238
  /** THIS IS AN AUTOGENERATED FILE **/
8520
- /* stylelint-disable function-name-case, scss/at-function-pattern */
8521
- /* stylelint-enable function-name-case, scss/at-function-pattern */
8522
- /* prettier-ignore */
8523
- /* prettier-ignore */
8524
- /* prettier-ignore */
8525
- /* prettier-ignore */
8526
- /* prettier-ignore */
8527
- /* prettier-ignore */
8528
- /* stylelint-disable scss/at-if-no-null, declaration-block-no-redundant-longhand-properties */
8529
- /** THIS IS AN AUTOGENERATED FILE **/
8530
- /** THIS IS AN AUTOGENERATED FILE **/
8531
- /** THIS IS AN AUTOGENERATED FILE **/
8532
- /** THIS IS AN AUTOGENERATED FILE **/
8533
- /** THIS IS AN AUTOGENERATED FILE **/
8534
- /* 16px */
8535
- /* 16px */
8536
- /* 16px */
8537
- /*
8538
- Because these components are deprecated, we've kept any inline/non-token values as values from the Zen theme to prevent any style regressions,
8539
- as this is what consumers would have expected when pulling them in a the time.
8540
- */
8541
- /* stylelint-enable scss/at-if-no-null, declaration-block-no-redundant-longhand-properties */
8542
- /** THIS IS AN AUTOGENERATED FILE **/
8543
- /** THIS IS AN AUTOGENERATED FILE **/
8544
- /** THIS IS AN AUTOGENERATED FILE **/
8545
- /** THIS IS AN AUTOGENERATED FILE **/
8546
- /** THIS IS AN AUTOGENERATED FILE **/
8547
- /* 16px */
8548
- /* 16px */
8549
- /* 16px */
8550
- /*
8551
- Because these components are deprecated, we've kept any inline/non-token values as values from the Zen theme to prevent any style regressions,
8552
- as this is what consumers would have expected when pulling them in a the time.
8553
- */
8239
+ /* stylelint-disable function-name-case, scss/at-function-pattern */
8240
+ /* stylelint-enable function-name-case, scss/at-function-pattern */
8241
+ /* prettier-ignore */
8242
+ /* prettier-ignore */
8243
+ /* prettier-ignore */
8244
+ /* prettier-ignore */
8245
+ /* prettier-ignore */
8246
+ /* prettier-ignore */
8554
8247
  .TextField-module_input__CEokl {
8555
- margin-top: var(--spacing-6, 0.375rem);
8248
+ margin-top: var(--spacing-6);
8556
8249
  }
8557
8250
 
8558
- .TextField-module_success__pMLcV {
8559
- color: var(--color-green-500, #3f9a86);
8560
- /* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
8561
- animation-name: TextField-module_fade-0-to-1__Ac-99;
8251
+ .TextField-module_icon__wFK4Q {
8252
+ color: var(--textfield-icon-color);
8562
8253
  animation-duration: var(--animation-duration-slow, 400ms);
8563
8254
  animation-fill-mode: forwards;
8564
- }
8565
- .TextField-module_withReversed__agi-Q .TextField-module_success__pMLcV {
8566
- color: var(--color-green-400, #5dcaad);
8567
- }
8568
- @keyframes TextField-module_fade-0-to-1__Ac-99 {
8569
- 0% {
8570
- opacity: 0;
8571
- }
8572
- 100% {
8573
- opacity: 1;
8574
- }
8575
- }
8576
- .TextField-module_success__pMLcV.TextField-module_disabled__gS8tk {
8577
- color: rgba(var(--color-green-500-rgb, 63, 154, 134), 0.3);
8578
- }
8579
- .TextField-module_withReversed__agi-Q .TextField-module_success__pMLcV.TextField-module_disabled__gS8tk {
8580
- color: rgba(var(--color-green-400-rgb, 93, 202, 173), 0.3);
8581
- }
8582
-
8583
- .TextField-module_error__7S-f2 {
8584
- color: var(--color-red-100, #fdeaee);
8585
8255
  /* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
8586
8256
  animation-name: TextField-module_fade-0-to-1__Ac-99;
8587
- animation-duration: var(--animation-duration-slow, 400ms);
8588
- animation-fill-mode: forwards;
8589
- }
8590
- .TextField-module_withReversed__agi-Q .TextField-module_error__7S-f2 {
8591
- color: var(--color-purple-700, #4a234d);
8592
8257
  }
8593
8258
  @keyframes TextField-module_fade-0-to-1__Ac-99 {
8594
8259
  0% {
@@ -8599,26 +8264,14 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
8599
8264
  }
8600
8265
  }
8601
8266
 
8602
- .TextField-module_caution__3gzHk {
8603
- color: var(--color-yellow-200, #ffeeb3);
8604
- /* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
8605
- animation-name: TextField-module_fade-0-to-1__Ac-99;
8606
- animation-duration: var(--animation-duration-slow, 400ms);
8607
- animation-fill-mode: forwards;
8608
- }
8609
- .TextField-module_withReversed__agi-Q .TextField-module_caution__3gzHk {
8610
- color: var(--color-purple-700, #4a234d);
8267
+ .TextField-module_success__pMLcV {
8268
+ --textfield-icon-color: var(--color-green-500);
8611
8269
  }
8612
- @keyframes TextField-module_fade-0-to-1__Ac-99 {
8613
- 0% {
8614
- opacity: 0;
8615
- }
8616
- 100% {
8617
- opacity: 1;
8618
- }
8270
+ .TextField-module_reversed__qW9r1 .TextField-module_success__pMLcV {
8271
+ --textfield-icon-color: var(--color-green-400);
8619
8272
  }
8620
8273
 
8621
- .TextField-module_message__bQOgK.TextField-module_disabled__gS8tk {
8274
+ .TextField-module_disabled__gS8tk {
8622
8275
  opacity: 0.3;
8623
8276
  }
8624
8277
  .LinkModal-module_validationErrorMessage__APw4U ul {
@@ -8746,7 +8399,7 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
8746
8399
  background-color: transparent;
8747
8400
  border-color: transparent;
8748
8401
  opacity: 100%;
8749
- outline: var(--color-purple-800, #2f2438) var(--border-dashed-border-style, dashed) var(--border-focus-ring-border-width, 2px);
8402
+ outline: var(--color-purple-800, #2f2438) var(--border-solid-border-style, solid) var(--border-focus-ring-border-width, 2px);
8750
8403
  }
8751
8404
  /** THIS IS AN AUTOGENERATED FILE **/
8752
8405
  .Toolbar-module_toolbar__ooRzV {
@@ -8776,6 +8429,10 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
8776
8429
  /** THIS IS AN AUTOGENERATED FILE **/
8777
8430
  /** THIS IS AN AUTOGENERATED FILE **/
8778
8431
  .RichTextEditor-module_editor__pVKqW > .ProseMirror {
8432
+ border-radius: var(--border-solid-border-radius, 7px);
8433
+ padding: var(--spacing-sm, 0.75rem) calc(var(--spacing-xs, 0.375rem) * 3);
8434
+ position: relative;
8435
+ transition: background-color var(--animation-duration-immediate, 100ms), border-color var(--animation-duration-immediate, 100ms);
8779
8436
  font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
8780
8437
  font-weight: var(--typography-paragraph-body-font-weight, 400);
8781
8438
  font-size: var(--typography-paragraph-body-font-size, 1rem);
@@ -8785,10 +8442,6 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
8785
8442
  white-space: pre-wrap;
8786
8443
  box-sizing: content-box;
8787
8444
  color: var(--color-purple-800, #2f2438);
8788
- border-radius: var(--border-solid-border-radius, 7px);
8789
- padding: var(--spacing-sm, 0.75rem) calc(var(--spacing-xs, 0.375rem) * 3);
8790
- position: relative;
8791
- transition: background-color var(--animation-duration-immediate, 100ms), border-color var(--animation-duration-immediate, 100ms);
8792
8445
  }
8793
8446
  .RichTextEditor-module_editor__pVKqW > .ProseMirror > p {
8794
8447
  margin: 0 0 var(--spacing-16, 1rem);
@@ -9072,6 +8725,7 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
9072
8725
  }
9073
8726
 
9074
8727
  .Tag-module_iconWrapper__aPrKH {
8728
+ --icon-size: 16;
9075
8729
  position: relative;
9076
8730
  height: 16px;
9077
8731
  width: 16px;
@@ -9380,7 +9034,7 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
9380
9034
  }
9381
9035
  .Select-module_specificityIncreaser__cZtQV .Select-module_groupHeading__eNw6U {
9382
9036
  font-family: var(--typography-heading-6-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
9383
- font-weight: var(--typography-heading-6-font-weight, 700);
9037
+ font-weight: var(--typography-heading-6-font-weight, 600);
9384
9038
  font-size: var(--typography-heading-6-font-size, 0.875rem);
9385
9039
  line-height: var(--typography-heading-6-line-height, 1.5rem);
9386
9040
  letter-spacing: var(--typography-heading-6-letter-spacing, normal);
@@ -9407,8 +9061,6 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
9407
9061
  }
9408
9062
  .Select-module_specificityIncreaser__cZtQV .Select-module_focusedOption__uwQwp.Select-module_disabledOption__TWVun {
9409
9063
  color: var(--color-purple-800, #2f2438);
9410
- border-style: var(--border-dashed-border-style, dashed);
9411
- border-width: var(--border-focus-ring-border-width, 2px);
9412
9064
  border-color: var(--color-gray-500, #878792);
9413
9065
  background: transparent;
9414
9066
  }
@@ -9554,6 +9206,7 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
9554
9206
  z-index: 1;
9555
9207
  }
9556
9208
  .Select-module_specificityIncreaser__cZtQV.Select-module_secondarySmall__6yNEL.Select-module_secondarySmall__6yNEL .Select-module_dropdownIndicator__NUopQ {
9209
+ --icon-size: 14;
9557
9210
  padding-top: 0;
9558
9211
  padding-bottom: 0;
9559
9212
  transform: translateY(1px);
@@ -9676,7 +9329,7 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
9676
9329
  border-style: var(--border-solid-border-style, solid);
9677
9330
  padding: calc(var(--spacing-sm, 0.75rem) - var(--border-borderless-border-width, 2px)) calc(var(--spacing-md, 1.5rem) - var(--border-borderless-border-width, 2px));
9678
9331
  font-family: var(--typography-button-primary-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
9679
- font-weight: var(--typography-button-primary-font-weight, 700);
9332
+ font-weight: var(--typography-button-primary-font-weight, 500);
9680
9333
  letter-spacing: var(--typography-button-primary-letter-spacing, normal);
9681
9334
  font-size: var(--typography-button-primary-font-size, 1.125rem);
9682
9335
  line-height: var(--typography-button-primary-line-height, 1.5rem);
@@ -9896,13 +9549,13 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
9896
9549
  padding: 0;
9897
9550
  transition: none;
9898
9551
  outline: none;
9899
- background: var(--color-white, #ffffff);
9900
- border: solid 1px rgba(var(--color-purple-700-rgb, 74, 35, 77), 0.1);
9901
- transition: box-shadow var(--animation-duration-rapid, 200ms), border-color var(--animation-duration-rapid, 200ms), margin var(--animation-duration-rapid, 200ms), padding var(--animation-duration-rapid, 200ms), width var(--animation-duration-rapid, 200ms);
9902
- box-shadow: 0 4px 6px rgba(53, 55, 74, 0.04);
9903
9552
  text-decoration: none;
9904
9553
  color: var(--color-purple-800, #2f2438);
9905
9554
  display: block;
9555
+ box-shadow: 0 4px 6px rgba(53, 55, 74, 0.04);
9556
+ border: solid 1px rgba(var(--color-purple-700-rgb, 74, 35, 77), 0.1);
9557
+ transition: box-shadow var(--animation-duration-rapid, 200ms), border-color var(--animation-duration-rapid, 200ms), margin var(--animation-duration-rapid, 200ms), padding var(--animation-duration-rapid, 200ms), width var(--animation-duration-rapid, 200ms);
9558
+ background: var(--color-white, #ffffff);
9906
9559
  }
9907
9560
  .Table-module_card__RGyjC:hover, .Table-module_card__RGyjC:active, .Table-module_card__RGyjC:focus {
9908
9561
  text-decoration: none;
@@ -9997,9 +9650,6 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
9997
9650
  display: flex;
9998
9651
  align-items: center;
9999
9652
  }
10000
- .Table-module_rowCell__A5-2R:hover, .Table-module_rowCell__A5-2R:active, .Table-module_rowCell__A5-2R:focus {
10001
- text-decoration: none;
10002
- }
10003
9653
  .Table-module_defaultSpacing__zq1Ci .Table-module_rowCell__A5-2R {
10004
9654
  padding: var(--spacing-sm, 0.75rem) var(--spacing-md, 1.5rem);
10005
9655
  }
@@ -10065,327 +9715,217 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
10065
9715
  }
10066
9716
 
10067
9717
  .Tab-module_tab__Rar3J[data-selected] {
10068
- position: relative;
10069
- color: var(--color-blue-500, #0168b3);
10070
- }
10071
- .Tab-module_tab__Rar3J[data-selected]::before {
10072
- content: "";
10073
- display: block;
10074
- border-top-left-radius: 5px;
10075
- border-top-right-radius: 5px;
10076
- background-color: currentcolor;
10077
- height: 5px;
10078
- width: 100%;
10079
- position: absolute;
10080
- left: 0;
10081
- right: 0;
10082
- bottom: 0;
10083
- }
10084
-
10085
- .Tab-module_badge__4p2nd {
10086
- margin-inline-start: var(--spacing-sm, 0.75rem);
10087
- display: inline-flex;
10088
- align-items: center;
10089
- }
10090
-
10091
- @media (forced-colors: active) {
10092
- .Tab-module_tab__Rar3J {
10093
- border: 2px solid transparent;
10094
- }
10095
- .Tab-module_tab__Rar3J:focus-visible::after {
10096
- content: "";
10097
- position: absolute;
10098
- background: transparent;
10099
- border-radius: var(--border-focus-ring-border-radius, 10px);
10100
- border-width: var(--border-focus-ring-border-width, 2px);
10101
- border-style: var(--border-focus-ring-border-style, solid);
10102
- border-color: transparent;
10103
- inset: calc(-1 * calc(var(--border-focus-ring-border-width, 2px) * 2 + 1px));
10104
- }
10105
- .Tab-module_tab__Rar3J.Tab-module_selected__MApD6::before {
10106
- content: "";
10107
- position: absolute;
10108
- left: 0;
10109
- right: 0;
10110
- bottom: 0;
10111
- border-bottom: 2px solid transparent;
10112
- }
10113
- }
10114
- /** THIS IS AN AUTOGENERATED FILE **/
10115
- /** THIS IS AN AUTOGENERATED FILE **/
10116
- .TabList-module_tabList__A8Y9H {
10117
- border-bottom: 1px solid rgba(var(--color-gray-600-rgb, 82, 78, 86), 0.1);
10118
- padding: var(--spacing-xs, 0.375rem) var(--spacing-md, 1.5rem) 0;
10119
- }
10120
-
10121
- .TabList-module_tabList__A8Y9H.TabList-module_noPadding__v073J {
10122
- padding: 0;
10123
- }
10124
- /** THIS IS AN AUTOGENERATED FILE **/
10125
- /** THIS IS AN AUTOGENERATED FILE **/
10126
- .TabPanel-module_tabPanel__I7hEK {
10127
- border: 2px solid transparent;
10128
- }
10129
- .TabPanel-module_tabPanel__I7hEK:focus {
10130
- outline: none;
10131
- }
10132
- .TabPanel-module_tabPanel__I7hEK:focus-visible {
10133
- border-color: var(--color-blue-500, #0168b3);
10134
- border-radius: var(--border-focus-ring-border-radius, 10px);
10135
- }
10136
- /** THIS IS AN AUTOGENERATED FILE **/
10137
- /** THIS IS AN AUTOGENERATED FILE **/
10138
- /** THIS IS AN AUTOGENERATED FILE **/
10139
- /** THIS IS AN AUTOGENERATED FILE **/
10140
- /** THIS IS AN AUTOGENERATED FILE **/
10141
- /** THIS IS AN AUTOGENERATED FILE **/
10142
- /* stylelint-disable selector-no-vendor-prefix */
10143
- /** THIS IS AN AUTOGENERATED FILE **/
10144
- .TextArea-module_wrapper__ytS6M {
10145
- position: relative;
10146
- }
10147
-
10148
- .TextArea-module_textarea__GeHn4 {
10149
- outline: 0;
10150
- box-sizing: border-box;
10151
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
10152
- font-size: var(--typography-paragraph-body-font-size, 1rem);
10153
- font-weight: var(--typography-paragraph-body-font-weight, 400);
10154
- line-height: var(--typography-paragraph-body-line-height, 1.5rem);
10155
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
10156
- position: static;
10157
- border-radius: var(--border-solid-border-radius, 7px);
10158
- width: 100%;
10159
- border: var(--border-solid-border-width, 2px) var(--border-solid-border-style, solid) var(--color-gray-500, #878792);
10160
- padding: var(--spacing-sm, 0.75rem);
10161
- color: var(--color-purple-800-rgb, 47, 36, 56);
10162
- display: block;
10163
- resize: vertical;
10164
- }
10165
- .TextArea-module_textarea__GeHn4::-webkit-input-placeholder {
10166
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
10167
- font-size: var(--typography-paragraph-body-font-size, 1rem);
10168
- font-weight: var(--typography-paragraph-body-font-weight, 400);
10169
- line-height: var(--typography-paragraph-body-line-height, 1.5rem);
10170
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
10171
- position: static;
10172
- line-height: 1.5;
10173
- color: rgba(var(--color-purple-800-rgb, 47, 36, 56), 0.7);
10174
- }
10175
- .TextArea-module_textarea__GeHn4:-moz-placeholder {
10176
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
10177
- font-size: var(--typography-paragraph-body-font-size, 1rem);
10178
- font-weight: var(--typography-paragraph-body-font-weight, 400);
10179
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
10180
- position: static;
10181
- line-height: 2.9rem;
10182
- line-height: 1.5;
10183
- color: rgba(var(--color-purple-800-rgb, 47, 36, 56), 0.7);
10184
- }
10185
- .TextArea-module_textarea__GeHn4::-moz-placeholder {
10186
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
10187
- font-size: var(--typography-paragraph-body-font-size, 1rem);
10188
- font-weight: var(--typography-paragraph-body-font-weight, 400);
10189
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
10190
- position: static;
10191
- line-height: 2.9rem;
10192
- line-height: 1.5;
10193
- color: rgba(var(--color-purple-800-rgb, 47, 36, 56), 0.7);
10194
- }
10195
- .TextArea-module_textarea__GeHn4:-ms-input-placeholder {
10196
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
10197
- font-size: var(--typography-paragraph-body-font-size, 1rem);
10198
- font-weight: var(--typography-paragraph-body-font-weight, 400);
10199
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
10200
- position: static;
10201
- line-height: 2.9rem;
10202
- line-height: 1.5;
10203
- color: rgba(var(--color-purple-800-rgb, 47, 36, 56), 0.7);
10204
- }
10205
- .TextArea-module_textarea__GeHn4:disabled {
10206
- resize: none;
10207
- }
10208
-
10209
- .TextArea-module_textarea__GeHn4:focus + .TextArea-module_focusRing__kECqH {
10210
- position: absolute;
10211
- background: transparent;
10212
- border-radius: var(--border-focus-ring-border-radius, 10px);
10213
- border-width: var(--border-focus-ring-border-width, 2px);
10214
- border-style: var(--border-focus-ring-border-style, solid);
10215
- border-color: transparent;
10216
- inset: -3px;
10217
- pointer-events: none;
10218
- }
10219
-
10220
- .TextArea-module_textarea__GeHn4.TextArea-module_default__Z8jvR:focus:not([disabled]), .TextArea-module_textarea__GeHn4.TextArea-module_default__Z8jvR:hover:not([disabled]), .TextArea-module_textarea__GeHn4.TextArea-module_default__Z8jvR:hover:focus:not([disabled]) {
10221
- background-color: var(--color-gray-200, #f4f4f5);
10222
- border-color: var(--color-gray-600, #524e56);
10223
- }
10224
- .TextArea-module_textarea__GeHn4.TextArea-module_default__Z8jvR:focus + .TextArea-module_focusRing__kECqH {
10225
- border-color: var(--color-blue-500, #0168b3);
10226
- }
10227
- .TextArea-module_textarea__GeHn4.TextArea-module_default__Z8jvR:not(.TextArea-module_error__XOQRm, .TextArea-module_caution__9BGd0):disabled {
10228
- border-color: rgba(var(--color-gray-500-rgb, 135, 135, 146), 0.3);
10229
- }
10230
- .TextArea-module_textarea__GeHn4.TextArea-module_default__Z8jvR.TextArea-module_error__XOQRm {
10231
- border-color: var(--color-red-500, #c93b55);
10232
- }
10233
- .TextArea-module_textarea__GeHn4.TextArea-module_default__Z8jvR.TextArea-module_error__XOQRm:focus:not([disabled]), .TextArea-module_textarea__GeHn4.TextArea-module_default__Z8jvR.TextArea-module_error__XOQRm:hover:not([disabled]), .TextArea-module_textarea__GeHn4.TextArea-module_default__Z8jvR.TextArea-module_error__XOQRm:hover:focus:not([disabled]) {
10234
- border-color: var(--color-red-500, #c93b55);
10235
- }
10236
- .TextArea-module_textarea__GeHn4.TextArea-module_default__Z8jvR.TextArea-module_caution__9BGd0 {
10237
- border-color: var(--color-yellow-600, #c68600);
10238
- }
10239
- .TextArea-module_textarea__GeHn4.TextArea-module_default__Z8jvR.TextArea-module_caution__9BGd0:focus:not([disabled]), .TextArea-module_textarea__GeHn4.TextArea-module_default__Z8jvR.TextArea-module_caution__9BGd0:hover:not([disabled]), .TextArea-module_textarea__GeHn4.TextArea-module_default__Z8jvR.TextArea-module_caution__9BGd0:hover:focus:not([disabled]) {
10240
- border-color: var(--color-yellow-600, #c68600);
10241
- }
10242
- .TextArea-module_textarea__GeHn4.TextArea-module_default__Z8jvR.TextArea-module_disabled__N09tP {
10243
- background-color: var(--color-white, #ffffff);
10244
- border-color: rgba(var(--color-gray-500-rgb, 135, 135, 146), 0.3);
10245
- color: rgba(var(--color-purple-800-rgb, 47, 36, 56), 0.3);
10246
- }
10247
- .TextArea-module_textarea__GeHn4.TextArea-module_default__Z8jvR.TextArea-module_disabled__N09tP::-webkit-input-placeholder {
10248
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
10249
- font-size: var(--typography-paragraph-body-font-size, 1rem);
10250
- font-weight: var(--typography-paragraph-body-font-weight, 400);
10251
- line-height: var(--typography-paragraph-body-line-height, 1.5rem);
10252
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
10253
- position: static;
10254
- opacity: 0.3;
10255
- }
10256
- .TextArea-module_textarea__GeHn4.TextArea-module_default__Z8jvR.TextArea-module_disabled__N09tP:-moz-placeholder {
10257
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
10258
- font-size: var(--typography-paragraph-body-font-size, 1rem);
10259
- font-weight: var(--typography-paragraph-body-font-weight, 400);
10260
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
10261
- position: static;
10262
- line-height: 2.9rem;
10263
- opacity: 0.3;
10264
- }
10265
- .TextArea-module_textarea__GeHn4.TextArea-module_default__Z8jvR.TextArea-module_disabled__N09tP::-moz-placeholder {
10266
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
10267
- font-size: var(--typography-paragraph-body-font-size, 1rem);
10268
- font-weight: var(--typography-paragraph-body-font-weight, 400);
10269
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
10270
- position: static;
10271
- line-height: 2.9rem;
10272
- opacity: 0.3;
10273
- }
10274
- .TextArea-module_textarea__GeHn4.TextArea-module_default__Z8jvR.TextArea-module_disabled__N09tP:-ms-input-placeholder {
10275
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
10276
- font-size: var(--typography-paragraph-body-font-size, 1rem);
10277
- font-weight: var(--typography-paragraph-body-font-weight, 400);
10278
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
10279
- position: static;
10280
- line-height: 2.9rem;
10281
- opacity: 0.3;
9718
+ position: relative;
9719
+ color: var(--color-blue-500, #0168b3);
9720
+ }
9721
+ .Tab-module_tab__Rar3J[data-selected]::before {
9722
+ content: "";
9723
+ display: block;
9724
+ border-top-left-radius: 5px;
9725
+ border-top-right-radius: 5px;
9726
+ background-color: currentcolor;
9727
+ height: 5px;
9728
+ width: 100%;
9729
+ position: absolute;
9730
+ left: 0;
9731
+ right: 0;
9732
+ bottom: 0;
10282
9733
  }
10283
9734
 
10284
- .TextArea-module_textarea__GeHn4.TextArea-module_reversed__-SoNq {
10285
- border-color: rgba(var(--color-white-rgb, 255, 255, 255), 0.65);
10286
- background: transparent;
10287
- color: var(--color-white, #ffffff);
9735
+ .Tab-module_badge__4p2nd {
9736
+ margin-inline-start: var(--spacing-sm, 0.75rem);
9737
+ display: inline-flex;
9738
+ align-items: center;
10288
9739
  }
10289
- .TextArea-module_textarea__GeHn4.TextArea-module_reversed__-SoNq:focus:not([disabled]), .TextArea-module_textarea__GeHn4.TextArea-module_reversed__-SoNq:hover:not([disabled]), .TextArea-module_textarea__GeHn4.TextArea-module_reversed__-SoNq:hover:focus:not([disabled]) {
10290
- background: rgba(var(--color-white-rgb, 255, 255, 255), 0.1);
10291
- border-color: var(--color-white, #ffffff);
9740
+
9741
+ @media (forced-colors: active) {
9742
+ .Tab-module_tab__Rar3J {
9743
+ border: 2px solid transparent;
9744
+ }
9745
+ .Tab-module_tab__Rar3J:focus-visible::after {
9746
+ content: "";
9747
+ position: absolute;
9748
+ background: transparent;
9749
+ border-radius: var(--border-focus-ring-border-radius, 10px);
9750
+ border-width: var(--border-focus-ring-border-width, 2px);
9751
+ border-style: var(--border-focus-ring-border-style, solid);
9752
+ border-color: transparent;
9753
+ inset: calc(-1 * calc(var(--border-focus-ring-border-width, 2px) * 2 + 1px));
9754
+ }
9755
+ .Tab-module_tab__Rar3J.Tab-module_selected__MApD6::before {
9756
+ content: "";
9757
+ position: absolute;
9758
+ left: 0;
9759
+ right: 0;
9760
+ bottom: 0;
9761
+ border-bottom: 2px solid transparent;
9762
+ }
10292
9763
  }
10293
- .TextArea-module_textarea__GeHn4.TextArea-module_reversed__-SoNq::-webkit-input-placeholder {
10294
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
10295
- font-size: var(--typography-paragraph-body-font-size, 1rem);
10296
- font-weight: var(--typography-paragraph-body-font-weight, 400);
10297
- line-height: var(--typography-paragraph-body-line-height, 1.5rem);
10298
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
10299
- position: static;
10300
- line-height: 1.5;
10301
- color: var(--color-white, #ffffff);
9764
+ /** THIS IS AN AUTOGENERATED FILE **/
9765
+ /** THIS IS AN AUTOGENERATED FILE **/
9766
+ .TabList-module_tabList__A8Y9H {
9767
+ border-bottom: 1px solid rgba(var(--color-gray-600-rgb, 82, 78, 86), 0.1);
9768
+ padding: var(--spacing-xs, 0.375rem) var(--spacing-md, 1.5rem) 0;
10302
9769
  }
10303
- .TextArea-module_textarea__GeHn4.TextArea-module_reversed__-SoNq:-moz-placeholder {
10304
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
10305
- font-size: var(--typography-paragraph-body-font-size, 1rem);
10306
- font-weight: var(--typography-paragraph-body-font-weight, 400);
10307
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
10308
- position: static;
10309
- line-height: 2.9rem;
10310
- line-height: 1.5;
10311
- color: var(--color-white, #ffffff);
9770
+
9771
+ .TabList-module_tabList__A8Y9H.TabList-module_noPadding__v073J {
9772
+ padding: 0;
10312
9773
  }
10313
- .TextArea-module_textarea__GeHn4.TextArea-module_reversed__-SoNq::-moz-placeholder {
10314
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
10315
- font-size: var(--typography-paragraph-body-font-size, 1rem);
10316
- font-weight: var(--typography-paragraph-body-font-weight, 400);
10317
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
10318
- position: static;
10319
- line-height: 2.9rem;
10320
- line-height: 1.5;
10321
- color: var(--color-white, #ffffff);
9774
+ /** THIS IS AN AUTOGENERATED FILE **/
9775
+ /** THIS IS AN AUTOGENERATED FILE **/
9776
+ .TabPanel-module_tabPanel__I7hEK {
9777
+ border: 2px solid transparent;
10322
9778
  }
10323
- .TextArea-module_textarea__GeHn4.TextArea-module_reversed__-SoNq:-ms-input-placeholder {
10324
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
10325
- font-size: var(--typography-paragraph-body-font-size, 1rem);
10326
- font-weight: var(--typography-paragraph-body-font-weight, 400);
10327
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
10328
- position: static;
10329
- line-height: 2.9rem;
10330
- line-height: 1.5;
10331
- color: var(--color-white, #ffffff);
9779
+ .TabPanel-module_tabPanel__I7hEK:focus {
9780
+ outline: none;
10332
9781
  }
10333
- .TextArea-module_textarea__GeHn4.TextArea-module_reversed__-SoNq:focus + .TextArea-module_focusRing__kECqH {
10334
- border-color: var(--color-blue-300, #73c0e8);
9782
+ .TabPanel-module_tabPanel__I7hEK:focus-visible {
9783
+ border-color: var(--color-blue-500, #0168b3);
9784
+ border-radius: var(--border-focus-ring-border-radius, 10px);
10335
9785
  }
10336
- .TextArea-module_textarea__GeHn4.TextArea-module_reversed__-SoNq.TextArea-module_error__XOQRm {
10337
- border-color: var(--color-red-300, #f597a8);
9786
+ .TextArea-module_wrapper__FHfMG {
9787
+ font-family: var(--typography-paragraph-body-font-family);
9788
+ font-size: var(--typography-paragraph-body-font-size);
9789
+ font-weight: var(--typography-paragraph-body-font-weight);
9790
+ line-height: var(--typography-paragraph-body-line-height);
9791
+ letter-spacing: var(--typography-paragraph-body-letter-spacing);
9792
+ color: var(--color-purple-800-rgb);
10338
9793
  }
10339
- .TextArea-module_textarea__GeHn4.TextArea-module_reversed__-SoNq.TextArea-module_error__XOQRm:focus:not([disabled]), .TextArea-module_textarea__GeHn4.TextArea-module_reversed__-SoNq.TextArea-module_error__XOQRm:hover:not([disabled]), .TextArea-module_textarea__GeHn4.TextArea-module_reversed__-SoNq.TextArea-module_error__XOQRm:hover:focus:not([disabled]) {
10340
- border-color: var(--color-red-300, #f597a8);
9794
+
9795
+ .TextArea-module_wrapperAutogrow__f46bL {
9796
+ display: grid;
10341
9797
  }
10342
- .TextArea-module_textarea__GeHn4.TextArea-module_reversed__-SoNq.TextArea-module_caution__9BGd0 {
10343
- border-color: var(--color-yellow-400, #ffca4d);
9798
+
9799
+ .TextArea-module_wrapperAutogrow__f46bL::after {
9800
+ content: attr(data-value) " ";
9801
+ white-space: pre-wrap;
9802
+ visibility: hidden;
10344
9803
  }
10345
- .TextArea-module_textarea__GeHn4.TextArea-module_reversed__-SoNq.TextArea-module_caution__9BGd0:focus:not([disabled]), .TextArea-module_textarea__GeHn4.TextArea-module_reversed__-SoNq.TextArea-module_caution__9BGd0:hover:not([disabled]), .TextArea-module_textarea__GeHn4.TextArea-module_reversed__-SoNq.TextArea-module_caution__9BGd0:hover:focus:not([disabled]) {
10346
- border-color: var(--color-yellow-400, #ffca4d);
9804
+
9805
+ /* these properties need to be set on both for autogrow to work properly */
9806
+ .TextArea-module_textarea__Ht-1a,
9807
+ .TextArea-module_wrapperAutogrow__f46bL::after {
9808
+ border: var(--border-solid-border-width) var(--border-solid-border-style)
9809
+ var(--color-gray-500);
9810
+ border-radius: var(--border-solid-border-radius);
9811
+ padding: var(--spacing-sm);
9812
+ box-sizing: border-box;
9813
+ width: 100%;
9814
+ font: inherit;
10347
9815
  }
10348
- .TextArea-module_textarea__GeHn4.TextArea-module_reversed__-SoNq.TextArea-module_disabled__N09tP {
10349
- background: transparent;
10350
- border-color: rgba(var(--color-white-rgb, 255, 255, 255), 0.3);
10351
- color: rgba(var(--color-white-rgb, 255, 255, 255), 0.3);
9816
+
9817
+ .TextArea-module_textareaAutogrow__ReEar,
9818
+ .TextArea-module_wrapperAutogrow__f46bL::after {
9819
+ grid-area: 2 / 1;
10352
9820
  }
10353
- .TextArea-module_textarea__GeHn4.TextArea-module_reversed__-SoNq.TextArea-module_disabled__N09tP::-webkit-input-placeholder {
10354
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
10355
- font-size: var(--typography-paragraph-body-font-size, 1rem);
10356
- font-weight: var(--typography-paragraph-body-font-weight, 400);
10357
- line-height: var(--typography-paragraph-body-line-height, 1.5rem);
10358
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
10359
- position: static;
10360
- opacity: 0.3;
9821
+
9822
+ .TextArea-module_textarea__Ht-1a {
9823
+ display: block;
9824
+ border: var(--border-solid-border-width) var(--border-solid-border-style)
9825
+ var(--color-gray-500);
9826
+ border-radius: var(--border-solid-border-radius);
9827
+ padding: var(--spacing-sm);
9828
+ resize: vertical;
9829
+
9830
+ &:focus {
9831
+ outline: var(--border-focus-ring-border-width)
9832
+ var(--border-focus-ring-border-style) var(--color-blue-500);
9833
+ outline-offset: 1px;
9834
+ }
9835
+
9836
+ &:disabled {
9837
+ resize: none;
9838
+ }
10361
9839
  }
10362
- .TextArea-module_textarea__GeHn4.TextArea-module_reversed__-SoNq.TextArea-module_disabled__N09tP:-moz-placeholder {
10363
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
10364
- font-size: var(--typography-paragraph-body-font-size, 1rem);
10365
- font-weight: var(--typography-paragraph-body-font-weight, 400);
10366
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
10367
- position: static;
10368
- line-height: 2.9rem;
10369
- opacity: 0.3;
9840
+
9841
+ .TextArea-module_textareaAutogrow__ReEar {
9842
+ overflow: hidden;
10370
9843
  }
10371
- .TextArea-module_textarea__GeHn4.TextArea-module_reversed__-SoNq.TextArea-module_disabled__N09tP::-moz-placeholder {
10372
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
10373
- font-size: var(--typography-paragraph-body-font-size, 1rem);
10374
- font-weight: var(--typography-paragraph-body-font-weight, 400);
10375
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
10376
- position: static;
10377
- line-height: 2.9rem;
10378
- opacity: 0.3;
9844
+
9845
+ .TextArea-module_default__e1cis {
9846
+ &:not(.TextArea-module_error__bBmvS, .TextArea-module_caution__aj4nR) {
9847
+ &:disabled {
9848
+ border-color: rgba(var(--color-gray-500-rgb), 0.3);
9849
+ }
9850
+ }
9851
+
9852
+ &:focus:not([disabled]),
9853
+ &:hover:not([disabled]),
9854
+ &:hover:focus:not([disabled]) {
9855
+ background-color: var(--color-gray-200);
9856
+ border-color: var(--color-gray-600);
9857
+ }
9858
+
9859
+ &.TextArea-module_error__bBmvS {
9860
+ border-color: var(--color-red-500);
9861
+
9862
+ &:focus:not([disabled]),
9863
+ &:hover:not([disabled]),
9864
+ &:hover:focus:not([disabled]) {
9865
+ border-color: var(--color-red-500);
9866
+ }
9867
+ }
9868
+
9869
+ &.TextArea-module_caution__aj4nR {
9870
+ border-color: var(--color-yellow-600);
9871
+
9872
+ &:focus:not([disabled]),
9873
+ &:hover:not([disabled]),
9874
+ &:hover:focus:not([disabled]) {
9875
+ border-color: var(--color-yellow-600);
9876
+ }
9877
+ }
9878
+
9879
+ &.TextArea-module_disabled__XY39a {
9880
+ background-color: var(--color-white);
9881
+ border-color: rgba(var(--color-gray-500-rgb), 0.3);
9882
+ color: rgba(var(--color-purple-800-rgb), 0.3);
9883
+ }
10379
9884
  }
10380
- .TextArea-module_textarea__GeHn4.TextArea-module_reversed__-SoNq.TextArea-module_disabled__N09tP:-ms-input-placeholder {
10381
- font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
10382
- font-size: var(--typography-paragraph-body-font-size, 1rem);
10383
- font-weight: var(--typography-paragraph-body-font-weight, 400);
10384
- letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
10385
- position: static;
10386
- line-height: 2.9rem;
10387
- opacity: 0.3;
9885
+
9886
+ .TextArea-module_reversed__r-W3e {
9887
+ border-color: rgba(var(--color-white-rgb), 0.65);
9888
+ background: transparent;
9889
+ color: var(--color-white);
9890
+
9891
+ &:focus {
9892
+ outline-color: var(--color-blue-300);
9893
+ }
9894
+
9895
+ &:focus:not([disabled]),
9896
+ &:hover:not([disabled]),
9897
+ &:hover:focus:not([disabled]) {
9898
+ background: rgba(var(--color-white-rgb), 0.1);
9899
+ border-color: var(--color-white);
9900
+ }
9901
+
9902
+ &.TextArea-module_error__bBmvS {
9903
+ border-color: var(--color-red-300);
9904
+
9905
+ &:focus:not([disabled]),
9906
+ &:hover:not([disabled]),
9907
+ &:hover:focus:not([disabled]) {
9908
+ border-color: var(--color-red-300);
9909
+ }
9910
+ }
9911
+
9912
+ &.TextArea-module_caution__aj4nR {
9913
+ border-color: var(--color-yellow-400);
9914
+
9915
+ &:focus:not([disabled]),
9916
+ &:hover:not([disabled]),
9917
+ &:hover:focus:not([disabled]) {
9918
+ border-color: var(--color-yellow-400);
9919
+ }
9920
+ }
9921
+
9922
+ &.TextArea-module_disabled__XY39a {
9923
+ background: transparent;
9924
+ border-color: rgba(var(--color-white-rgb), 0.3);
9925
+ color: rgba(var(--color-white-rgb), 0.3);
9926
+ }
10388
9927
  }
9928
+
10389
9929
  /** THIS IS AN AUTOGENERATED FILE **/
10390
9930
  /** THIS IS AN AUTOGENERATED FILE **/
10391
9931
  .TextAreaField-module_message__hlao7.TextAreaField-module_disabled__twCef {
@@ -10444,14 +9984,14 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
10444
9984
  }
10445
9985
 
10446
9986
  .GenericTile-module_tile__mgFhk {
9987
+ position: relative;
10447
9988
  width: 330px;
10448
9989
  height: 370px;
10449
- position: relative;
10450
- box-shadow: var(--shadow-small-box-shadow, 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 3px 16px 0 rgba(0, 0, 0, 0.06));
10451
- background-color: var(--color-white, #ffffff);
10452
9990
  transition: transform var(--animation-duration-slow, 400ms) var(--animation-easing-function-ease-in-out, cubic-bezier(0.455, 0.03, 0.515, 0.955));
10453
9991
  transform-style: preserve-3d;
9992
+ box-shadow: var(--shadow-small-box-shadow, 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 3px 16px 0 rgba(0, 0, 0, 0.06));
10454
9993
  border-radius: 7px;
9994
+ background-color: var(--color-white, #ffffff);
10455
9995
  }
10456
9996
  [data-tile-grid] .GenericTile-module_tile__mgFhk {
10457
9997
  width: auto;
@@ -10833,42 +10373,26 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
10833
10373
  margin: 0;
10834
10374
  }
10835
10375
  .Toolbar-module_toolbar__yhogJ .Toolbar-module_toolbarItem__eekUL:first-of-type {
10836
- margin-right: calc(1.5rem / 4);
10837
- margin-left: 0;
10838
- }
10839
- .Toolbar-module_toolbar__yhogJ .Toolbar-module_toolbarItem__eekUL:first-of-type[dir=rtl], [dir=rtl] .Toolbar-module_toolbar__yhogJ .Toolbar-module_toolbarItem__eekUL:first-of-type {
10840
- margin-right: 0;
10841
- margin-left: calc(1.5rem / 4);
10376
+ margin-inline-end: calc(1.5rem / 4);
10377
+ margin-inline-start: 0;
10842
10378
  }
10843
10379
  @media (max-width: 1023px) {
10844
10380
  .Toolbar-module_toolbar__yhogJ .Toolbar-module_toolbarItem__eekUL:first-of-type {
10845
- margin-right: calc(1.5rem / 8);
10846
- margin-left: 0;
10847
- }
10848
- .Toolbar-module_toolbar__yhogJ .Toolbar-module_toolbarItem__eekUL:first-of-type[dir=rtl], [dir=rtl] .Toolbar-module_toolbar__yhogJ .Toolbar-module_toolbarItem__eekUL:first-of-type {
10849
- margin-right: 0;
10850
- margin-left: calc(1.5rem / 8);
10381
+ margin-inline-end: calc(1.5rem / 8);
10382
+ margin-inline-start: 0;
10851
10383
  }
10852
10384
  }
10853
10385
  .Toolbar-module_toolbar__yhogJ .Toolbar-module_toolbarItem__eekUL:first-of-type.Toolbar-module_noGap__4mNlF {
10854
10386
  margin: 0;
10855
10387
  }
10856
10388
  .Toolbar-module_toolbar__yhogJ .Toolbar-module_toolbarItem__eekUL:last-of-type {
10857
- margin-right: 0;
10858
- margin-left: calc(1.5rem / 4);
10859
- }
10860
- .Toolbar-module_toolbar__yhogJ .Toolbar-module_toolbarItem__eekUL:last-of-type[dir=rtl], [dir=rtl] .Toolbar-module_toolbar__yhogJ .Toolbar-module_toolbarItem__eekUL:last-of-type {
10861
- margin-right: calc(1.5rem / 4);
10862
- margin-left: 0;
10389
+ margin-inline-end: 0;
10390
+ margin-inline-start: calc(1.5rem / 4);
10863
10391
  }
10864
10392
  @media (max-width: 1023px) {
10865
10393
  .Toolbar-module_toolbar__yhogJ .Toolbar-module_toolbarItem__eekUL:last-of-type {
10866
- margin-right: 0;
10867
- margin-left: calc(1.5rem / 8);
10868
- }
10869
- .Toolbar-module_toolbar__yhogJ .Toolbar-module_toolbarItem__eekUL:last-of-type[dir=rtl], [dir=rtl] .Toolbar-module_toolbar__yhogJ .Toolbar-module_toolbarItem__eekUL:last-of-type {
10870
- margin-right: calc(1.5rem / 8);
10871
- margin-left: 0;
10394
+ margin-inline-end: 0;
10395
+ margin-inline-start: calc(1.5rem / 8);
10872
10396
  }
10873
10397
  }
10874
10398
  .Toolbar-module_toolbar__yhogJ .Toolbar-module_toolbarItem__eekUL:last-of-type.Toolbar-module_noGap__4mNlF {
@@ -10895,12 +10419,8 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
10895
10419
  justify-content: flex-end;
10896
10420
  flex-grow: 1;
10897
10421
  flex-shrink: 0;
10898
- margin-right: 0;
10899
- margin-left: calc(1.5rem / 2);
10900
- }
10901
- .MainActions-module_mainActionsContainer__wN117[dir=rtl], [dir=rtl] .MainActions-module_mainActionsContainer__wN117 {
10902
- margin-right: calc(1.5rem / 2);
10903
- margin-left: 0;
10422
+ margin-inline-end: 0;
10423
+ margin-inline-start: calc(1.5rem / 2);
10904
10424
  }
10905
10425
  @media (max-width: 767px) {
10906
10426
  .MainActions-module_mainActionsContainer__wN117 {
@@ -10980,37 +10500,25 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
10980
10500
  display: flex;
10981
10501
  justify-content: center;
10982
10502
  align-items: center;
10983
- margin-right: calc(1.5rem / 2);
10984
- margin-left: 0;
10985
- }
10986
- .MobileActions-module_drawerHandleIcon__z-Hp-[dir=rtl], [dir=rtl] .MobileActions-module_drawerHandleIcon__z-Hp- {
10987
- margin-right: 0;
10988
- margin-left: calc(1.5rem / 2);
10503
+ margin-inline-end: calc(1.5rem / 2);
10504
+ margin-inline-start: 0;
10989
10505
  }
10990
10506
  .MobileActions-module_drawerHandleLabelText__UDIFl + .MobileActions-module_drawerHandleIcon__z-Hp- {
10991
- margin-right: 0;
10992
- margin-left: calc(1.5rem / 2);
10993
- }
10994
- .MobileActions-module_drawerHandleLabelText__UDIFl + .MobileActions-module_drawerHandleIcon__z-Hp-[dir=rtl], [dir=rtl] .MobileActions-module_drawerHandleLabelText__UDIFl + .MobileActions-module_drawerHandleIcon__z-Hp- {
10995
- margin-right: calc(1.5rem / 2);
10996
- margin-left: 0;
10507
+ margin-inline-end: 0;
10508
+ margin-inline-start: calc(1.5rem / 2);
10997
10509
  }
10998
10510
 
10999
10511
  .MobileActions-module_mobileActionsPrimaryLabel__y-kgB {
11000
- padding-right: 0;
11001
- padding-left: 1.125rem;
11002
10512
  text-align: left;
11003
10513
  text-decoration: none;
11004
10514
  color: var(--color-white, #ffffff);
11005
10515
  font-family: var(--typography-button-primary-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
11006
- font-weight: var(--typography-button-primary-font-weight, 700);
10516
+ font-weight: var(--typography-button-primary-font-weight, 500);
11007
10517
  font-size: var(--typography-button-primary-font-size, 1.125rem);
11008
10518
  line-height: var(--typography-button-primary-line-height, 1.5rem);
11009
10519
  letter-spacing: var(--typography-button-primary-letter-spacing, normal);
11010
- }
11011
- .MobileActions-module_mobileActionsPrimaryLabel__y-kgB[dir=rtl], [dir=rtl] .MobileActions-module_mobileActionsPrimaryLabel__y-kgB {
11012
- padding-right: 1.125rem;
11013
- padding-left: 0;
10520
+ padding-inline-end: 0;
10521
+ padding-inline-start: 1.125rem;
11014
10522
  }
11015
10523
 
11016
10524
  .MobileActions-module_mobileActionsPrimaryButton__5Ggbi,
@@ -11101,12 +10609,8 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
11101
10609
  align-items: center;
11102
10610
  height: 100%;
11103
10611
  position: absolute;
11104
- right: 20px;
11105
- left: auto;
11106
- }
11107
- .MobileActions-module_mobileActionsChevronSquare__u4OYT[dir=rtl], [dir=rtl] .MobileActions-module_mobileActionsChevronSquare__u4OYT {
11108
- right: auto;
11109
- left: 20px;
10612
+ inset-inline-end: 20px;
10613
+ inset-inline-start: auto;
11110
10614
  }
11111
10615
 
11112
10616
  @keyframes MobileActions-module_slide-up__vX8Ad {
@@ -11309,12 +10813,8 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
11309
10813
  overflow: hidden;
11310
10814
  height: 3rem;
11311
10815
  width: 3rem;
11312
- margin-right: calc(1.5rem / 2);
11313
- margin-left: 0;
11314
- }
11315
- .TitleBlockZen-module_avatar__CHWTd[dir=rtl], [dir=rtl] .TitleBlockZen-module_avatar__CHWTd {
11316
- margin-right: 0;
11317
- margin-left: calc(1.5rem / 2);
10816
+ margin-inline-end: calc(1.5rem / 2);
10817
+ margin-inline-start: 0;
11318
10818
  }
11319
10819
  .TitleBlockZen-module_avatar__CHWTd > * {
11320
10820
  max-width: 100%;
@@ -11334,12 +10834,8 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
11334
10834
 
11335
10835
  .TitleBlockZen-module_hamburger__VFufP {
11336
10836
  display: none;
11337
- margin-right: var(--spacing-xs, 0.375rem);
11338
- margin-left: 0;
11339
- }
11340
- .TitleBlockZen-module_hamburger__VFufP[dir=rtl], [dir=rtl] .TitleBlockZen-module_hamburger__VFufP {
11341
- margin-right: 0;
11342
- margin-left: var(--spacing-xs, 0.375rem);
10837
+ margin-inline-end: var(--spacing-xs, 0.375rem);
10838
+ margin-inline-start: 0;
11343
10839
  }
11344
10840
  @media (max-width: calc(1080px - 1px)) {
11345
10841
  .TitleBlockZen-module_hamburger__VFufP {
@@ -11358,16 +10854,11 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
11358
10854
  line-height: var(--typography-paragraph-small-line-height, 1.125rem);
11359
10855
  letter-spacing: var(--typography-paragraph-small-letter-spacing, normal);
11360
10856
  max-width: 230px;
11361
- margin-right: 0;
11362
- margin-left: calc(1.5rem / 2);
10857
+ margin-inline: var(--spacing-12) 0;
11363
10858
  }
11364
10859
  .TitleBlockZen-module_adminVariant__vvIrj .TitleBlockZen-module_subtitle__OD-d5 {
11365
10860
  color: var(--color-purple-800, #2f2438);
11366
10861
  }
11367
- .TitleBlockZen-module_subtitle__OD-d5[dir=rtl], [dir=rtl] .TitleBlockZen-module_subtitle__OD-d5 {
11368
- margin-right: calc(1.5rem / 2);
11369
- margin-left: 0;
11370
- }
11371
10862
  @media (max-width: 1365px) {
11372
10863
  .TitleBlockZen-module_subtitle__OD-d5 {
11373
10864
  white-space: nowrap;
@@ -11405,22 +10896,17 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
11405
10896
 
11406
10897
  .TitleBlockZen-module_sectionTitleOverride__GDHqp.TitleBlockZen-module_sectionTitleOverride__GDHqp {
11407
10898
  white-space: nowrap;
11408
- margin-right: 1.5rem;
11409
- margin-left: 0;
10899
+ margin-inline: 0 var(--spacing-24);
11410
10900
  font-family: var(--typography-heading-2-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
11411
- font-weight: var(--typography-heading-2-font-weight, 700);
10901
+ font-weight: var(--typography-heading-2-font-weight, 600);
11412
10902
  font-size: var(--typography-heading-2-font-size, 1.75rem);
11413
10903
  line-height: var(--typography-heading-2-line-height, 2.25rem);
11414
10904
  letter-spacing: var(--typography-heading-2-letter-spacing, normal);
11415
10905
  }
11416
- .TitleBlockZen-module_sectionTitleOverride__GDHqp.TitleBlockZen-module_sectionTitleOverride__GDHqp[dir=rtl], [dir=rtl] .TitleBlockZen-module_sectionTitleOverride__GDHqp.TitleBlockZen-module_sectionTitleOverride__GDHqp {
11417
- margin-right: 0;
11418
- margin-left: 1.5rem;
11419
- }
11420
10906
  @media (max-width: 1644px) {
11421
10907
  .TitleBlockZen-module_sectionTitleOverride__GDHqp.TitleBlockZen-module_sectionTitleOverride__GDHqp {
11422
10908
  font-family: var(--typography-heading-3-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
11423
- font-weight: var(--typography-heading-3-font-weight, 700);
10909
+ font-weight: var(--typography-heading-3-font-weight, 600);
11424
10910
  font-size: var(--typography-heading-3-font-size, 1.375rem);
11425
10911
  line-height: var(--typography-heading-3-line-height, 1.875rem);
11426
10912
  letter-spacing: var(--typography-heading-3-letter-spacing, normal);
@@ -11450,7 +10936,7 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
11450
10936
  letter-spacing: var(--typography-paragraph-small-letter-spacing, normal);
11451
10937
  }
11452
10938
  .TitleBlockZen-module_sectionTitle__Le5YQ + .TitleBlockZen-module_sectionTitleDescription__mIl-A {
11453
- margin-top: calc(1.5rem / 4);
10939
+ margin-top: var(--spacing-6);
11454
10940
  }
11455
10941
  .TitleBlockZen-module_sectionTitleDescription__mIl-A.TitleBlockZen-module_dark__Y-v1Z {
11456
10942
  color: rgba(var(--color-purple-800-rgb, 47, 36, 56), 0.7);
@@ -11479,14 +10965,9 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
11479
10965
  }
11480
10966
 
11481
10967
  .TitleBlockZen-module_tag__mWbbU {
11482
- margin-right: 0;
11483
- margin-left: calc(1.5rem / 2);
11484
10968
  display: flex;
11485
10969
  align-items: center;
11486
- }
11487
- .TitleBlockZen-module_tag__mWbbU[dir=rtl], [dir=rtl] .TitleBlockZen-module_tag__mWbbU {
11488
- margin-right: calc(1.5rem / 2);
11489
- margin-left: 0;
10970
+ margin-inline: var(--spacing-12) 0;
11490
10971
  }
11491
10972
  @media (max-width: calc(1080px - 1px)) {
11492
10973
  .TitleBlockZen-module_tag__mWbbU {
@@ -11494,28 +10975,18 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
11494
10975
  }
11495
10976
  }
11496
10977
  .TitleBlockZen-module_tag__mWbbU + .TitleBlockZen-module_pageSwitcherSelectNextToTitle__CPnE3 {
11497
- margin-right: 0;
11498
- margin-left: 0;
11499
- }
11500
- .TitleBlockZen-module_tag__mWbbU + .TitleBlockZen-module_pageSwitcherSelectNextToTitle__CPnE3[dir=rtl], [dir=rtl] .TitleBlockZen-module_tag__mWbbU + .TitleBlockZen-module_pageSwitcherSelectNextToTitle__CPnE3 {
11501
- margin-right: 0;
11502
- margin-left: 0;
10978
+ margin-inline-start: 0;
11503
10979
  }
11504
10980
 
11505
10981
  .TitleBlockZen-module_pageSwitcherSelectNextToTitle__CPnE3 {
11506
- margin-right: 0;
11507
- margin-left: calc(1.5rem / 2);
11508
10982
  flex-shrink: 0;
11509
- width: 15rem;
11510
- }
11511
- .TitleBlockZen-module_pageSwitcherSelectNextToTitle__CPnE3[dir=rtl], [dir=rtl] .TitleBlockZen-module_pageSwitcherSelectNextToTitle__CPnE3 {
11512
- margin-right: calc(1.5rem / 2);
11513
- margin-left: 0;
10983
+ width: var(--spacing-240);
10984
+ margin-inline: var(--spacing-12) 0;
11514
10985
  }
11515
10986
 
11516
10987
  .TitleBlockZen-module_pageSwitcherSelectUnderneathTitle__MRZI2 {
11517
10988
  flex-shrink: 0;
11518
- max-width: 15rem;
10989
+ max-width: var(--spacing-240);
11519
10990
  }
11520
10991
 
11521
10992
  .TitleBlockZen-module_navigationTabsContainer__lto6e {
@@ -11613,12 +11084,8 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
11613
11084
  align-items: flex-start;
11614
11085
  justify-content: flex-end;
11615
11086
  padding: calc(1.5rem / 2) 0;
11616
- margin-right: 0;
11617
- margin-left: 2.25rem;
11618
- }
11619
- .TitleBlockZen-module_secondaryActionsContainer__Is7rl[dir=rtl], [dir=rtl] .TitleBlockZen-module_secondaryActionsContainer__Is7rl {
11620
- margin-right: 2.25rem;
11621
- margin-left: 0;
11087
+ margin-inline-end: 0;
11088
+ margin-inline-start: 2.25rem;
11622
11089
  }
11623
11090
  .TitleBlockZen-module_educationVariant__B3I7P .TitleBlockZen-module_secondaryActionsContainer__Is7rl, .TitleBlockZen-module_adminVariant__vvIrj .TitleBlockZen-module_secondaryActionsContainer__Is7rl {
11624
11091
  color: var(--color-blue-500, #0168b3);
@@ -11645,14 +11112,11 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
11645
11112
  align-items: center;
11646
11113
  top: 50%;
11647
11114
  transform: translateY(-50%);
11648
- right: auto;
11649
- left: calc(-48px - 1.5rem);
11115
+ text-decoration: none;
11116
+ inset-inline-end: auto;
11117
+ inset-inline-start: calc(-48px - 1.5rem);
11650
11118
  align-self: normal;
11651
11119
  }
11652
- .TitleBlockZen-module_breadcrumb__o2c8A[dir=rtl], [dir=rtl] .TitleBlockZen-module_breadcrumb__o2c8A {
11653
- right: calc(-48px - 1.5rem);
11654
- left: auto;
11655
- }
11656
11120
  .TitleBlockZen-module_breadcrumb__o2c8A:hover .TitleBlockZen-module_breadcrumbTextLink__1HhXQ {
11657
11121
  text-decoration: underline;
11658
11122
  }
@@ -11672,19 +11136,10 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
11672
11136
  @media only screen and (max-width: 1644px) {
11673
11137
  .TitleBlockZen-module_breadcrumb__o2c8A {
11674
11138
  position: relative;
11675
- margin-right: calc(1.5rem / 2);
11676
- margin-left: 0;
11677
- right: auto;
11678
- left: 0;
11679
11139
  transform: translateY(0);
11680
- }
11681
- .TitleBlockZen-module_breadcrumb__o2c8A[dir=rtl], [dir=rtl] .TitleBlockZen-module_breadcrumb__o2c8A {
11682
- margin-right: 0;
11683
- margin-left: calc(1.5rem / 2);
11684
- }
11685
- .TitleBlockZen-module_breadcrumb__o2c8A[dir=rtl], [dir=rtl] .TitleBlockZen-module_breadcrumb__o2c8A {
11686
- right: 0;
11687
- left: auto;
11140
+ margin-inline: 0 var(--spacing-12);
11141
+ inset-inline-end: auto;
11142
+ inset-inline-start: 0;
11688
11143
  }
11689
11144
  }
11690
11145
  @media (max-width: calc(1080px - 1px)) {
@@ -11702,32 +11157,20 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
11702
11157
  white-space: nowrap;
11703
11158
  width: 1px;
11704
11159
  z-index: 1019;
11705
- right: auto;
11706
- left: -3rem;
11160
+ inset-inline-end: auto;
11161
+ inset-inline-start: -3rem;
11707
11162
  position: absolute;
11708
11163
  }
11709
- .TitleBlockZen-module_breadcrumbTextLink__1HhXQ[dir=rtl], [dir=rtl] .TitleBlockZen-module_breadcrumbTextLink__1HhXQ {
11710
- right: -3rem;
11711
- left: auto;
11712
- }
11713
11164
  @media (max-width: 1644px) {
11714
11165
  .TitleBlockZen-module_breadcrumbTextLink__1HhXQ {
11715
- right: auto;
11716
- left: 1.5rem;
11717
- }
11718
- .TitleBlockZen-module_breadcrumbTextLink__1HhXQ[dir=rtl], [dir=rtl] .TitleBlockZen-module_breadcrumbTextLink__1HhXQ {
11719
- right: 1.5rem;
11720
- left: auto;
11166
+ inset-inline-end: auto;
11167
+ inset-inline-start: 1.5rem;
11721
11168
  }
11722
11169
  }
11723
11170
  @media only screen and (min-width: 1644px) {
11724
11171
  .TitleBlockZen-module_breadcrumbTextLink__1HhXQ {
11725
- right: auto;
11726
- left: calc(48px - 1.5rem);
11727
- }
11728
- .TitleBlockZen-module_breadcrumbTextLink__1HhXQ[dir=rtl], [dir=rtl] .TitleBlockZen-module_breadcrumbTextLink__1HhXQ {
11729
- right: calc(48px - 1.5rem);
11730
- left: auto;
11172
+ inset-inline-end: auto;
11173
+ inset-inline-start: calc(48px - 1.5rem);
11731
11174
  }
11732
11175
  }
11733
11176
  .TitleBlockZen-module_breadcrumbTextLink__1HhXQ:hover, .TitleBlockZen-module_breadcrumbTextLink__1HhXQ:focus, .TitleBlockZen-module_breadcrumb__o2c8A:hover .TitleBlockZen-module_breadcrumbTextLink__1HhXQ, .TitleBlockZen-module_breadcrumb__o2c8A:focus .TitleBlockZen-module_breadcrumbTextLink__1HhXQ {
@@ -12011,9 +11454,6 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
12011
11454
  justify-content: center;
12012
11455
  background-color: var(--color-white, #ffffff);
12013
11456
  border: var(--border-borderless-border-width, 2px) var(--border-borderless-border-style, solid) var(--border-borderless-border-color, transparent);
12014
- box-sizing: content-box;
12015
- width: calc(var(--spacing-md, 1.5rem) * 0.9);
12016
- height: calc(var(--spacing-md, 1.5rem) * 0.9);
12017
11457
  border-radius: var(--spacing-md, 1.5rem);
12018
11458
  transition: left var(--animation-duration-immediate, 100ms) var(--animation-easing-function-linear, linear), right var(--animation-duration-immediate, 100ms) var(--animation-easing-function-linear, linear);
12019
11459
  }