@saleor/macaw-ui 0.7.2 → 0.8.0-dev.104

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 (1127) hide show
  1. package/README.md +97 -22
  2. package/dist/.DS_Store +0 -0
  3. package/dist/Inter-Black.woff2 +0 -0
  4. package/dist/Inter-BlackItalic.woff2 +0 -0
  5. package/dist/Inter-Bold.woff2 +0 -0
  6. package/dist/Inter-BoldItalic.woff2 +0 -0
  7. package/dist/Inter-ExtraBold.woff2 +0 -0
  8. package/dist/Inter-ExtraBoldItalic.woff2 +0 -0
  9. package/dist/Inter-ExtraLight.woff2 +0 -0
  10. package/dist/Inter-ExtraLightItalic.woff2 +0 -0
  11. package/dist/Inter-Italic.woff2 +0 -0
  12. package/dist/Inter-Light.woff2 +0 -0
  13. package/dist/Inter-LightItalic.woff2 +0 -0
  14. package/dist/Inter-Medium.woff2 +0 -0
  15. package/dist/Inter-MediumItalic.woff2 +0 -0
  16. package/dist/Inter-Regular.woff2 +0 -0
  17. package/dist/Inter-SemiBold.woff2 +0 -0
  18. package/dist/Inter-SemiBoldItalic.woff2 +0 -0
  19. package/dist/Inter-Thin.woff2 +0 -0
  20. package/dist/Inter-ThinItalic.woff2 +0 -0
  21. package/dist/Inter-italic.var.woff2 +0 -0
  22. package/dist/Inter-roman.var.woff2 +0 -0
  23. package/dist/Inter.var.woff2 +0 -0
  24. package/dist/components/Accordion/Item/Content.d.ts +9 -0
  25. package/dist/components/Accordion/Item/Item.d.ts +10 -0
  26. package/dist/components/Accordion/Item/Trigger.d.ts +10 -0
  27. package/dist/components/Accordion/Item/TriggerButton.d.ts +8 -0
  28. package/dist/components/Accordion/Item/index.d.ts +4 -0
  29. package/dist/components/Accordion/Root.d.ts +1010 -0
  30. package/dist/components/Accordion/common.css.d.ts +3 -0
  31. package/dist/components/Accordion/index.d.ts +1019 -0
  32. package/dist/components/Avatar/Store/Store.css.d.ts +14 -0
  33. package/dist/components/Avatar/Store/Store.d.ts +12 -0
  34. package/dist/components/Avatar/Store/index.d.ts +1 -0
  35. package/dist/components/Avatar/User/User.css.d.ts +14 -0
  36. package/dist/components/Avatar/User/User.d.ts +12 -0
  37. package/dist/components/Avatar/User/index.d.ts +1 -0
  38. package/dist/components/Avatar/common.css.d.ts +6 -0
  39. package/dist/components/Avatar/index.d.ts +2018 -0
  40. package/dist/components/BaseInput/BaseInput.css.d.ts +57 -0
  41. package/dist/components/BaseInput/HelperText.d.ts +8 -0
  42. package/dist/components/BaseInput/index.d.ts +2 -0
  43. package/dist/components/BaseSelect/BaseSelect.css.d.ts +22 -0
  44. package/dist/components/BaseSelect/LoadingListItem/LoadingListItem.d.ts +7 -0
  45. package/dist/components/BaseSelect/LoadingListItem/Spinner.css.d.ts +1 -0
  46. package/dist/components/BaseSelect/LoadingListItem/Spinner.d.ts +1 -0
  47. package/dist/components/BaseSelect/LoadingListItem/index.d.ts +1 -0
  48. package/dist/components/BaseSelect/helpers.d.ts +5 -0
  49. package/dist/components/BaseSelect/index.d.ts +4 -0
  50. package/dist/components/BaseSelect/types.d.ts +6 -0
  51. package/dist/components/Box/Box.d.ts +1000 -0
  52. package/dist/components/Box/index.d.ts +1 -0
  53. package/dist/components/Button/Button.css.d.ts +18 -0
  54. package/dist/components/Button/Button.d.ts +1015 -0
  55. package/dist/components/Button/utils.d.ts +2 -0
  56. package/dist/components/Checkbox/Checkbox.css.d.ts +4 -0
  57. package/dist/components/Checkbox/Checkbox.d.ts +1021 -0
  58. package/dist/components/Checkbox/CheckedIcon.d.ts +6 -0
  59. package/dist/components/Checkbox/IndeterminateIcon.d.ts +6 -0
  60. package/dist/components/Checkbox/index.d.ts +1 -0
  61. package/dist/components/Chip/Chip.css.d.ts +9 -0
  62. package/dist/components/Chip/Chip.d.ts +1009 -0
  63. package/dist/components/Chip/index.d.ts +1 -0
  64. package/dist/components/Combobox/Common/ComboboxWrapper.d.ts +18 -0
  65. package/dist/components/Combobox/Common/index.d.ts +2 -0
  66. package/dist/components/Combobox/Common/useCombobox.d.ts +23 -0
  67. package/dist/components/Combobox/Dynamic/DynamicCombobox.d.ts +2044 -0
  68. package/dist/components/Combobox/Dynamic/index.d.ts +1 -0
  69. package/dist/components/Combobox/Static/Combobox.d.ts +2029 -0
  70. package/dist/components/Combobox/Static/index.d.ts +1 -0
  71. package/dist/components/Combobox/index.d.ts +2 -0
  72. package/dist/components/Divider/Divider.d.ts +1003 -0
  73. package/dist/components/Divider/index.d.ts +1 -0
  74. package/dist/components/Drawer/Content.css.d.ts +1 -0
  75. package/dist/components/Drawer/Content.d.ts +9 -0
  76. package/dist/components/Drawer/Root.d.ts +7 -0
  77. package/dist/components/Drawer/Trigger.d.ts +7 -0
  78. package/dist/components/Drawer/index.d.ts +16 -0
  79. package/dist/components/Dropdown/Content.d.ts +11 -0
  80. package/dist/components/Dropdown/Item.d.ts +9 -0
  81. package/dist/components/Dropdown/Root.d.ts +10 -0
  82. package/dist/components/Dropdown/Trigger.d.ts +8 -0
  83. package/dist/components/Dropdown/common.css.d.ts +2 -0
  84. package/dist/components/Dropdown/index.d.ts +22 -0
  85. package/dist/components/DropdownButton/DropdownButton.css.d.ts +13 -0
  86. package/dist/components/DropdownButton/DropdownButton.d.ts +1012 -0
  87. package/dist/components/DropdownButton/index.d.ts +1 -0
  88. package/dist/components/ExperimentalFilters/EventEmitter.d.ts +96 -0
  89. package/dist/components/ExperimentalFilters/Footer.d.ts +11 -0
  90. package/dist/components/ExperimentalFilters/RightOperator.d.ts +41 -0
  91. package/dist/components/ExperimentalFilters/Root.d.ts +11 -0
  92. package/dist/components/ExperimentalFilters/Row.d.ts +24 -0
  93. package/dist/components/ExperimentalFilters/context.d.ts +7 -0
  94. package/dist/components/ExperimentalFilters/index.d.ts +17 -0
  95. package/dist/components/ExperimentalFilters/useEvents.d.ts +11 -0
  96. package/dist/components/Expression/AutosizeInput/index.d.ts +23 -0
  97. package/dist/components/Expression/AutosizeInput/useTextMetrics.d.ts +5 -0
  98. package/dist/components/Expression/Condition.d.ts +13 -0
  99. package/dist/components/Expression/Dropdown.d.ts +23 -0
  100. package/dist/components/Expression/Expression.css.d.ts +37 -0
  101. package/dist/components/Expression/OperandAutocomplete.d.ts +1009 -0
  102. package/dist/components/Expression/OperandDropdown.d.ts +8 -0
  103. package/dist/components/Expression/OperandNumber.d.ts +17 -0
  104. package/dist/components/Expression/OperandRange.d.ts +15 -0
  105. package/dist/components/Expression/OperandText.d.ts +9 -0
  106. package/dist/components/Expression/Root.d.ts +8 -0
  107. package/dist/components/Expression/index.d.ts +1049 -0
  108. package/dist/components/Icons/ArrowDownIcon.d.ts +17 -0
  109. package/dist/components/Icons/ArrowLeftIcon.d.ts +17 -0
  110. package/dist/components/Icons/ArrowRightIcon.d.ts +17 -0
  111. package/dist/components/Icons/ArrowUpIcon.d.ts +17 -0
  112. package/dist/components/Icons/CatalogIcon.d.ts +17 -0
  113. package/dist/components/Icons/CheckboxIcon.d.ts +17 -0
  114. package/dist/components/Icons/ChervonDoubleIcon.d.ts +17 -0
  115. package/dist/components/Icons/ChervonDownIcon.d.ts +17 -0
  116. package/dist/components/Icons/ChervonUpIcon.d.ts +17 -0
  117. package/dist/components/Icons/ChevronLeftIcon.d.ts +17 -0
  118. package/dist/components/Icons/ChevronRightIcon.d.ts +17 -0
  119. package/dist/components/Icons/CloseIcon.d.ts +17 -0
  120. package/dist/components/Icons/ConfigurationIcon.d.ts +17 -0
  121. package/dist/components/Icons/CopyIcon.d.ts +17 -0
  122. package/dist/components/Icons/CustomersIcon.d.ts +17 -0
  123. package/dist/components/Icons/DarkModeIcon.d.ts +17 -0
  124. package/dist/components/Icons/EditIcon.d.ts +17 -0
  125. package/dist/components/Icons/ExportIcon.d.ts +17 -0
  126. package/dist/components/Icons/ExternalLinkIcon.d.ts +17 -0
  127. package/dist/components/Icons/FileExportIcon.d.ts +17 -0
  128. package/dist/components/Icons/FloppyDiscIcon.d.ts +17 -0
  129. package/dist/components/Icons/FullscreenOffIcon.d.ts +17 -0
  130. package/dist/components/Icons/FullscreenOnIcon.d.ts +17 -0
  131. package/dist/components/Icons/GenericAppIcon.d.ts +17 -0
  132. package/dist/components/Icons/GripIcon.d.ts +17 -0
  133. package/dist/components/Icons/HomeIcon.d.ts +17 -0
  134. package/dist/components/Icons/InfoIcon.d.ts +17 -0
  135. package/dist/components/Icons/LightModeIcon.d.ts +17 -0
  136. package/dist/components/Icons/MailIcon.d.ts +17 -0
  137. package/dist/components/Icons/MarketplaceIcon.d.ts +17 -0
  138. package/dist/components/Icons/MenuIcon.d.ts +17 -0
  139. package/dist/components/Icons/MoreOptionsIcon.d.ts +17 -0
  140. package/dist/components/Icons/OrdersIcon.d.ts +17 -0
  141. package/dist/components/Icons/PlusIcon.d.ts +17 -0
  142. package/dist/components/Icons/ProductsIcons.d.ts +17 -0
  143. package/dist/components/Icons/RemoveIcon.d.ts +17 -0
  144. package/dist/components/Icons/SVGWrapper/SVGWrapper.css.d.ts +36 -0
  145. package/dist/components/Icons/SVGWrapper/SVGWrapper.d.ts +17 -0
  146. package/dist/components/Icons/SVGWrapper/createSVGWrapper.d.ts +18 -0
  147. package/dist/components/Icons/SVGWrapper/index.d.ts +2 -0
  148. package/dist/components/Icons/SearchIcon.d.ts +17 -0
  149. package/dist/components/Icons/SellsIcon.d.ts +17 -0
  150. package/dist/components/Icons/StorefrontIcon.d.ts +17 -0
  151. package/dist/components/Icons/TableEditIcon.d.ts +17 -0
  152. package/dist/components/Icons/TranslationsIcon.d.ts +17 -0
  153. package/dist/components/Icons/TrashBinIcon.d.ts +17 -0
  154. package/dist/components/Icons/ViewListIcon.d.ts +17 -0
  155. package/dist/components/Icons/ViewTableIcon.d.ts +17 -0
  156. package/dist/components/Icons/ViewTilesIcon.d.ts +17 -0
  157. package/dist/components/Icons/ViewWideTilesIcon.d.ts +17 -0
  158. package/dist/components/Icons/VouchersIcon.d.ts +17 -0
  159. package/dist/components/Icons/WarningIcon.d.ts +17 -0
  160. package/dist/components/Icons/index.d.ts +48 -0
  161. package/dist/components/Input/Input.d.ts +1016 -0
  162. package/dist/components/Input/InputWrapper.d.ts +28 -0
  163. package/dist/components/Input/helpers.d.ts +4 -0
  164. package/dist/components/Input/index.d.ts +1 -0
  165. package/dist/components/List/Divider.d.ts +10 -0
  166. package/dist/components/List/Item.d.ts +1012 -0
  167. package/dist/components/List/ItemGroup/Content.d.ts +7 -0
  168. package/dist/components/List/ItemGroup/Root.d.ts +11 -0
  169. package/dist/components/List/ItemGroup/Trigger.d.ts +13 -0
  170. package/dist/components/List/ItemGroup/common.css.d.ts +3 -0
  171. package/dist/components/List/ItemGroup/context.d.ts +6 -0
  172. package/dist/components/List/ItemGroup/index.d.ts +17 -0
  173. package/dist/components/List/List.d.ts +1008 -0
  174. package/dist/components/List/index.d.ts +2028 -0
  175. package/dist/components/Multiselect/Common/Adornment.d.ts +10 -0
  176. package/dist/components/Multiselect/Common/Multiselect.css.d.ts +10 -0
  177. package/dist/components/Multiselect/Common/MultiselectWrapper.d.ts +21 -0
  178. package/dist/components/Multiselect/Common/index.d.ts +3 -0
  179. package/dist/components/Multiselect/Common/useMultiselect.d.ts +29 -0
  180. package/dist/components/Multiselect/Dynamic/DynamicMultiselect.d.ts +2051 -0
  181. package/dist/components/Multiselect/Dynamic/index.d.ts +1 -0
  182. package/dist/components/Multiselect/Static/Multiselect.d.ts +2042 -0
  183. package/dist/components/Multiselect/Static/index.d.ts +1 -0
  184. package/dist/components/Multiselect/index.d.ts +2 -0
  185. package/dist/components/Popover/Anchor.d.ts +7 -0
  186. package/dist/components/Popover/Arrow.d.ts +9 -0
  187. package/dist/components/Popover/Content.d.ts +13 -0
  188. package/dist/components/Popover/Popover.css.d.ts +2 -0
  189. package/dist/components/Popover/Root.d.ts +12 -0
  190. package/dist/components/Popover/Trigger.d.ts +7 -0
  191. package/dist/components/Popover/index.d.ts +26 -0
  192. package/dist/components/RadioGroup/Group.css.d.ts +16 -0
  193. package/dist/components/RadioGroup/Group.d.ts +1018 -0
  194. package/dist/components/RadioGroup/Item.css.d.ts +72 -0
  195. package/dist/components/RadioGroup/Item.d.ts +1015 -0
  196. package/dist/components/RadioGroup/index.d.ts +2014 -0
  197. package/dist/components/SearchInput/SearchInput.css.d.ts +19 -0
  198. package/dist/components/SearchInput/SearchInput.d.ts +1003 -0
  199. package/dist/components/SearchInput/index.d.ts +1 -0
  200. package/dist/components/Select/Select.d.ts +2038 -0
  201. package/dist/components/Select/SelectWrapper.d.ts +15 -0
  202. package/dist/components/Select/index.d.ts +1 -0
  203. package/dist/components/Select/useSelect.d.ts +21 -0
  204. package/dist/components/Switch/Item.d.ts +12 -0
  205. package/dist/components/Switch/Switch.css.d.ts +12 -0
  206. package/dist/components/Switch/Switch.d.ts +1011 -0
  207. package/dist/components/Switch/index.d.ts +1009 -0
  208. package/dist/components/Text/Text.css.d.ts +24 -0
  209. package/dist/components/Text/Text.d.ts +1013 -0
  210. package/dist/components/Text/index.d.ts +1 -0
  211. package/dist/components/Toggle/Toggle.css.d.ts +5 -0
  212. package/dist/components/Toggle/Toggle.d.ts +2 -0
  213. package/dist/components/Toggle/index.d.ts +1 -0
  214. package/dist/components/Tooltip/Arrow.d.ts +9 -0
  215. package/dist/components/Tooltip/Content.d.ts +14 -0
  216. package/dist/components/Tooltip/ContentHeading.d.ts +8 -0
  217. package/dist/components/Tooltip/Root.d.ts +13 -0
  218. package/dist/components/Tooltip/Tooltip.css.d.ts +2 -0
  219. package/dist/components/Tooltip/Trigger.d.ts +5 -0
  220. package/dist/components/Tooltip/index.d.ts +23 -0
  221. package/dist/components/index.d.ts +26 -0
  222. package/dist/components/types.d.ts +3 -0
  223. package/dist/index.d.ts +2 -0
  224. package/dist/macaw-ui.js +98 -0
  225. package/dist/macaw-ui.mjs +12487 -0
  226. package/dist/style.css +1 -0
  227. package/dist/theme/context.d.ts +12 -0
  228. package/dist/theme/contract.css.d.ts +272 -0
  229. package/dist/theme/helpers.d.ts +4 -0
  230. package/dist/theme/index.d.ts +7 -0
  231. package/dist/theme/media-queries.d.ts +2 -0
  232. package/dist/theme/provider.d.ts +7 -0
  233. package/dist/theme/sprinkles.css.d.ts +537 -0
  234. package/dist/theme/themes/common.d.ts +151 -0
  235. package/dist/theme/themes/defaultDark.d.ts +272 -0
  236. package/dist/theme/themes/defaultLight.d.ts +272 -0
  237. package/dist/theme/themes/index.d.ts +548 -0
  238. package/dist/utils/css.d.ts +1 -0
  239. package/dist/utils/index.d.ts +2 -0
  240. package/dist/utils/useClickOutside.d.ts +1 -0
  241. package/legacy/dist/cjs/index.js +5 -0
  242. package/legacy/dist/cjs/index.js.map +7 -0
  243. package/legacy/dist/esm/index.js +5 -0
  244. package/legacy/dist/esm/index.js.map +7 -0
  245. package/legacy/dist/types/Accordion/Accordion.d.ts +7 -0
  246. package/legacy/dist/types/Chip/Chip.d.ts +8 -0
  247. package/legacy/dist/types/Chip/ChipMovable.d.ts +5 -0
  248. package/legacy/dist/types/Chip/ChipRemovable.d.ts +6 -0
  249. package/legacy/dist/types/Chip/ChipSwatch.d.ts +7 -0
  250. package/legacy/dist/types/DialogTable/DialogTable.d.ts +6 -0
  251. package/legacy/dist/types/icons/indicator/regular/ErrorIndicatorIcon.d.ts +2 -0
  252. package/legacy/dist/types/icons/indicator/regular/FailIndicatorIcon.d.ts +2 -0
  253. package/legacy/dist/types/icons/indicator/regular/FailOutlineIndicatorIcon.d.ts +2 -0
  254. package/legacy/dist/types/icons/indicator/regular/HelpIndicatorIcon.d.ts +2 -0
  255. package/legacy/dist/types/icons/indicator/regular/SuccessIndicatorIcon.d.ts +2 -0
  256. package/legacy/dist/types/icons/indicator/regular/WarningIndicatorIcon.d.ts +2 -0
  257. package/legacy/dist/types/icons/indicator/small/ErrorSmallIndicatorIcon.d.ts +2 -0
  258. package/legacy/dist/types/icons/indicator/small/SuccessSmallIndicatorIcon.d.ts +2 -0
  259. package/legacy/dist/types/icons/indicator/small/WarningSmallIndicatorIcon.d.ts +2 -0
  260. package/package.json +124 -127
  261. package/dist/cjs/index.js +0 -5
  262. package/dist/cjs/index.js.map +0 -7
  263. package/dist/esm/index.js +0 -5
  264. package/dist/esm/index.js.map +0 -7
  265. package/dist/types/Accordion/Accordion.d.ts +0 -7
  266. package/dist/types/Chip/Chip.d.ts +0 -8
  267. package/dist/types/Chip/ChipMovable.d.ts +0 -5
  268. package/dist/types/Chip/ChipRemovable.d.ts +0 -6
  269. package/dist/types/Chip/ChipSwatch.d.ts +0 -7
  270. package/dist/types/DialogTable/DialogTable.d.ts +0 -6
  271. package/dist/types/icons/indicator/regular/ErrorIndicatorIcon.d.ts +0 -2
  272. package/dist/types/icons/indicator/regular/FailIndicatorIcon.d.ts +0 -2
  273. package/dist/types/icons/indicator/regular/FailOutlineIndicatorIcon.d.ts +0 -2
  274. package/dist/types/icons/indicator/regular/HelpIndicatorIcon.d.ts +0 -2
  275. package/dist/types/icons/indicator/regular/SuccessIndicatorIcon.d.ts +0 -2
  276. package/dist/types/icons/indicator/regular/WarningIndicatorIcon.d.ts +0 -2
  277. package/dist/types/icons/indicator/small/ErrorSmallIndicatorIcon.d.ts +0 -2
  278. package/dist/types/icons/indicator/small/SuccessSmallIndicatorIcon.d.ts +0 -2
  279. package/dist/types/icons/indicator/small/WarningSmallIndicatorIcon.d.ts +0 -2
  280. package/src/Accordion/Accordion.stories.tsx +0 -17
  281. package/src/Accordion/Accordion.tsx +0 -30
  282. package/src/Accordion/index.ts +0 -1
  283. package/src/Accordion/styles.ts +0 -29
  284. package/src/ActionBar/ActionBar.stories.tsx +0 -34
  285. package/src/ActionBar/ActionBar.tsx +0 -57
  286. package/src/ActionBar/context.tsx +0 -41
  287. package/src/ActionBar/index.ts +0 -2
  288. package/src/ActionBar/styles.ts +0 -31
  289. package/src/Alert/Alert.stories.tsx +0 -48
  290. package/src/Alert/Alert.tsx +0 -86
  291. package/src/Alert/AlertBase.tsx +0 -38
  292. package/src/Alert/index.ts +0 -2
  293. package/src/Alert/styles.ts +0 -59
  294. package/src/Autocomplete/Autocomplete.stories.tsx +0 -43
  295. package/src/Autocomplete/Autocomplete.tsx +0 -188
  296. package/src/Autocomplete/fixtures.ts +0 -122
  297. package/src/Autocomplete/index.ts +0 -1
  298. package/src/Autocomplete/styles.ts +0 -22
  299. package/src/Avatar/Avatar.stories.tsx +0 -22
  300. package/src/Avatar/Avatar.tsx +0 -26
  301. package/src/Avatar/index.ts +0 -1
  302. package/src/Avatar/styles.ts +0 -26
  303. package/src/Backlink/Backlink.stories.tsx +0 -53
  304. package/src/Backlink/Backlink.tsx +0 -50
  305. package/src/Backlink/context.tsx +0 -27
  306. package/src/Backlink/index.ts +0 -2
  307. package/src/Backlink/styles.ts +0 -36
  308. package/src/BaseList/BaseList.tsx +0 -154
  309. package/src/BaseList/context.ts +0 -16
  310. package/src/BaseList/index.ts +0 -1
  311. package/src/BaseList/styles.ts +0 -48
  312. package/src/Button/Button.tsx +0 -82
  313. package/src/Button/styles.ts +0 -104
  314. package/src/Chip/Chip.tsx +0 -52
  315. package/src/Chip/ChipAdornment.tsx +0 -53
  316. package/src/Chip/ChipMovable.tsx +0 -40
  317. package/src/Chip/ChipRemovable.tsx +0 -29
  318. package/src/Chip/ChipSwatch.tsx +0 -42
  319. package/src/Chip/index.ts +0 -5
  320. package/src/Chip/private/ColorSwatch.tsx +0 -21
  321. package/src/Chip/styles.ts +0 -46
  322. package/src/CircleIndicator/CircleIndicator.stories.tsx +0 -48
  323. package/src/CircleIndicator/CircleIndicator.tsx +0 -36
  324. package/src/CircleIndicator/index.ts +0 -1
  325. package/src/CircleIndicator/styles.ts +0 -31
  326. package/src/ConfirmButton/ConfirmButton.stories.tsx +0 -125
  327. package/src/ConfirmButton/ConfirmButton.tsx +0 -113
  328. package/src/ConfirmButton/index.ts +0 -1
  329. package/src/ConfirmButton/styles.ts +0 -43
  330. package/src/DialogHeader/DialogHeader.tsx +0 -41
  331. package/src/DialogHeader/index.ts +0 -1
  332. package/src/DialogHeader/styles.ts +0 -24
  333. package/src/DialogTable/DialogTable.tsx +0 -23
  334. package/src/DialogTable/index.ts +0 -1
  335. package/src/DialogTable/styles.ts +0 -11
  336. package/src/Filter/Filter.tsx +0 -160
  337. package/src/Filter/FilterBar.tsx +0 -135
  338. package/src/Filter/FilterContent.tsx +0 -40
  339. package/src/Filter/FilterField/AutocompleteFilterField.tsx +0 -61
  340. package/src/Filter/FilterField/MultipleSelectFilterField.tsx +0 -78
  341. package/src/Filter/FilterField/MultipleValueAutocompleteFilterField.tsx +0 -61
  342. package/src/Filter/FilterField/RangeFilterField.tsx +0 -51
  343. package/src/Filter/FilterField/SelectFilterField.tsx +0 -41
  344. package/src/Filter/FilterField/TextFilterField.tsx +0 -36
  345. package/src/Filter/FilterMenu.tsx +0 -66
  346. package/src/Filter/context.tsx +0 -13
  347. package/src/Filter/index.ts +0 -4
  348. package/src/Filter/stories/Filter.stories.tsx +0 -143
  349. package/src/Filter/stories/FilterInteractive.stories.tsx +0 -97
  350. package/src/Filter/stories/labels.ts +0 -8
  351. package/src/Filter/styles.ts +0 -111
  352. package/src/Filter/types.ts +0 -74
  353. package/src/Filter/utils.ts +0 -216
  354. package/src/IconButton/IconButton.stories.tsx +0 -48
  355. package/src/IconButton/IconButton.tsx +0 -106
  356. package/src/IconButton/index.ts +0 -1
  357. package/src/IconButton/partials.ts +0 -66
  358. package/src/IconButton/styles.ts +0 -116
  359. package/src/Indicator/Circle.tsx +0 -17
  360. package/src/Indicator/CircleFilled.tsx +0 -16
  361. package/src/Indicator/CircleOutline.tsx +0 -34
  362. package/src/Indicator/Indicator.stories.tsx +0 -49
  363. package/src/Indicator/Indicator.tsx +0 -65
  364. package/src/Indicator/IndicatorCircle.stories.tsx +0 -28
  365. package/src/Indicator/IndicatorCircle.tsx +0 -45
  366. package/src/Indicator/IndicatorOutlined.stories.tsx +0 -86
  367. package/src/Indicator/IndicatorOutlined.tsx +0 -63
  368. package/src/Indicator/index.ts +0 -3
  369. package/src/Indicator/styles.ts +0 -61
  370. package/src/LayoutButton/LayoutButton.tsx +0 -49
  371. package/src/LayoutButton/index.ts +0 -1
  372. package/src/LayoutButton/styles.ts +0 -33
  373. package/src/List/List.stories.tsx +0 -137
  374. package/src/List/List.tsx +0 -67
  375. package/src/List/context.ts +0 -22
  376. package/src/List/index.ts +0 -1
  377. package/src/List/styles.ts +0 -86
  378. package/src/MultipleValueAutocomplete/MultipleValueAutocomplete.stories.tsx +0 -76
  379. package/src/MultipleValueAutocomplete/MultipleValueAutocomplete.tsx +0 -186
  380. package/src/MultipleValueAutocomplete/fixtures.ts +0 -122
  381. package/src/MultipleValueAutocomplete/index.ts +0 -1
  382. package/src/MultipleValueAutocomplete/styles.ts +0 -41
  383. package/src/MultipleValueAutocomplete/useMultipleValueAutocomplete.ts +0 -172
  384. package/src/NavigationCard/NavigationCard.stories.tsx +0 -33
  385. package/src/NavigationCard/NavigationCard.tsx +0 -43
  386. package/src/NavigationCard/NavigationCardBase.tsx +0 -27
  387. package/src/NavigationCard/index.ts +0 -2
  388. package/src/NavigationCard/styles.ts +0 -45
  389. package/src/Notification/Notification.stories.tsx +0 -104
  390. package/src/Notification/Notification.tsx +0 -147
  391. package/src/Notification/index.ts +0 -2
  392. package/src/Notification/styles.ts +0 -104
  393. package/src/Notification/types.ts +0 -26
  394. package/src/OffsettedList/OffsettedList.stories.tsx +0 -140
  395. package/src/OffsettedList/OffsettedList.tsx +0 -54
  396. package/src/OffsettedList/index.ts +0 -1
  397. package/src/OffsettedList/styles.ts +0 -92
  398. package/src/PageTabs/PageTab.stories.tsx +0 -59
  399. package/src/PageTabs/PageTab.tsx +0 -19
  400. package/src/PageTabs/PageTabPanel.tsx +0 -15
  401. package/src/PageTabs/PageTabs.tsx +0 -27
  402. package/src/PageTabs/index.ts +0 -3
  403. package/src/PageTabs/styles.ts +0 -35
  404. package/src/Pagination/Pagination.tsx +0 -65
  405. package/src/Pagination/PaginationActions.tsx +0 -79
  406. package/src/Pagination/PaginationRowNumberSelect.tsx +0 -54
  407. package/src/Pagination/TablePagination.tsx +0 -21
  408. package/src/Pagination/index.ts +0 -4
  409. package/src/Pagination/styles.ts +0 -67
  410. package/src/Pill/Pill.stories.tsx +0 -110
  411. package/src/Pill/Pill.tsx +0 -64
  412. package/src/Pill/index.ts +0 -1
  413. package/src/Pill/styles.ts +0 -95
  414. package/src/PillLink/PillLink.tsx +0 -53
  415. package/src/PillLink/index.ts +0 -1
  416. package/src/PillLink/styles.ts +0 -38
  417. package/src/ResponsiveTable/ResponsiveTable.tsx +0 -34
  418. package/src/ResponsiveTable/index.ts +0 -1
  419. package/src/ResponsiveTable/styles.ts +0 -24
  420. package/src/Savebar/ButtonTooltipDecorator.tsx +0 -22
  421. package/src/Savebar/Savebar.stories.tsx +0 -57
  422. package/src/Savebar/Savebar.tsx +0 -78
  423. package/src/Savebar/index.ts +0 -1
  424. package/src/Savebar/styles.ts +0 -12
  425. package/src/ScrollShadow/ScrollShadow.tsx +0 -49
  426. package/src/ScrollShadow/index.ts +0 -1
  427. package/src/ScrollShadow/styles.ts +0 -18
  428. package/src/Sidebar/ExpandButton.tsx +0 -45
  429. package/src/Sidebar/MenuItem.tsx +0 -266
  430. package/src/Sidebar/Sidebar.stories.tsx +0 -24
  431. package/src/Sidebar/Sidebar.tsx +0 -109
  432. package/src/Sidebar/fixtures.ts +0 -77
  433. package/src/Sidebar/index.ts +0 -4
  434. package/src/Sidebar/types.ts +0 -27
  435. package/src/Sidebar/utils.ts +0 -23
  436. package/src/SidebarDrawer/MenuItemBtn.tsx +0 -45
  437. package/src/SidebarDrawer/SidebarDrawer.stories.tsx +0 -13
  438. package/src/SidebarDrawer/SidebarDrawer.tsx +0 -135
  439. package/src/SidebarDrawer/index.ts +0 -2
  440. package/src/SidebarDrawer/styles.ts +0 -75
  441. package/src/SquareButton/SquareButton.stories.tsx +0 -20
  442. package/src/SquareButton/SquareButton.tsx +0 -51
  443. package/src/SquareButton/index.ts +0 -1
  444. package/src/StatusChip/StatusChip.stories.tsx +0 -20
  445. package/src/StatusChip/StatusChip.tsx +0 -27
  446. package/src/StatusChip/index.ts +0 -2
  447. package/src/StatusChip/types.ts +0 -8
  448. package/src/SwitchSelector/SwitchSelector.stories.tsx +0 -63
  449. package/src/SwitchSelector/SwitchSelector.tsx +0 -20
  450. package/src/SwitchSelector/SwitchSelectorButton.tsx +0 -60
  451. package/src/SwitchSelector/index.ts +0 -2
  452. package/src/Tooltip/Arrow.tsx +0 -54
  453. package/src/Tooltip/Tooltip.stories.tsx +0 -82
  454. package/src/Tooltip/Tooltip.tsx +0 -170
  455. package/src/Tooltip/TooltipMountWrapper.tsx +0 -25
  456. package/src/Tooltip/index.ts +0 -2
  457. package/src/Tooltip/styles.ts +0 -152
  458. package/src/UserChipMenu/UserChipMenu.stories.tsx +0 -46
  459. package/src/UserChipMenu/UserChipMenu.tsx +0 -98
  460. package/src/UserChipMenu/UserChipMenuItem.tsx +0 -33
  461. package/src/UserChipMenu/context.ts +0 -19
  462. package/src/UserChipMenu/index.ts +0 -2
  463. package/src/UserChipMenu/styles.ts +0 -66
  464. package/src/assets/icons/20x20/back_small_icon.svg +0 -1
  465. package/src/assets/icons/20x20/bookmarks_small_icon.svg +0 -1
  466. package/src/assets/icons/20x20/checkbox_small_icon.svg +0 -1
  467. package/src/assets/icons/20x20/chevron_small_icon.svg +0 -1
  468. package/src/assets/icons/20x20/close_small_icon.svg +0 -1
  469. package/src/assets/icons/20x20/drag_small_icon.svg +0 -1
  470. package/src/assets/icons/20x20/filter_small_icon.svg +0 -1
  471. package/src/assets/icons/20x20/minus_small_icon.svg +0 -1
  472. package/src/assets/icons/20x20/more_small_icon.svg +0 -1
  473. package/src/assets/icons/20x20/next_small_icon.svg +0 -1
  474. package/src/assets/icons/20x20/plus_small_icon.svg +0 -1
  475. package/src/assets/icons/20x20/search_small_icon.svg +0 -1
  476. package/src/assets/icons/20x20/sort_big_small_icon.svg +0 -1
  477. package/src/assets/icons/20x20/sort_small_small_icon.svg +0 -1
  478. package/src/assets/icons/24x24/add_environment_icon.svg +0 -1
  479. package/src/assets/icons/24x24/apps_icon.svg +0 -1
  480. package/src/assets/icons/24x24/arrow_right_icon.svg +0 -1
  481. package/src/assets/icons/24x24/backspace_icon.svg +0 -1
  482. package/src/assets/icons/24x24/bag_icon.svg +0 -1
  483. package/src/assets/icons/24x24/billing_icon.svg +0 -1
  484. package/src/assets/icons/24x24/bookmark_icon.svg +0 -1
  485. package/src/assets/icons/24x24/calendar_icon.svg +0 -1
  486. package/src/assets/icons/24x24/check_icon.svg +0 -1
  487. package/src/assets/icons/24x24/chevron_icon.svg +0 -1
  488. package/src/assets/icons/24x24/close_2_icon.svg +0 -1
  489. package/src/assets/icons/24x24/close_icon.svg +0 -1
  490. package/src/assets/icons/24x24/code_icon.svg +0 -1
  491. package/src/assets/icons/24x24/columns_icon.svg +0 -1
  492. package/src/assets/icons/24x24/copy_icon.svg +0 -1
  493. package/src/assets/icons/24x24/customers_icon.svg +0 -1
  494. package/src/assets/icons/24x24/dashboard_icon.svg +0 -1
  495. package/src/assets/icons/24x24/delete_icon.svg +0 -1
  496. package/src/assets/icons/24x24/developer_icon.svg +0 -1
  497. package/src/assets/icons/24x24/discounts_icon.svg +0 -1
  498. package/src/assets/icons/24x24/download_icon.svg +0 -1
  499. package/src/assets/icons/24x24/drag_icon.svg +0 -1
  500. package/src/assets/icons/24x24/edit_icon.svg +0 -1
  501. package/src/assets/icons/24x24/environment_icon.svg +0 -1
  502. package/src/assets/icons/24x24/expand_icon.svg +0 -1
  503. package/src/assets/icons/24x24/expendable_icon.svg +0 -1
  504. package/src/assets/icons/24x24/eye_closed_icon.svg +0 -1
  505. package/src/assets/icons/24x24/eye_icon.svg +0 -1
  506. package/src/assets/icons/24x24/filtering_icon.svg +0 -1
  507. package/src/assets/icons/24x24/generate_icon.svg +0 -1
  508. package/src/assets/icons/24x24/github_icon.svg +0 -1
  509. package/src/assets/icons/24x24/grid_icon.svg +0 -1
  510. package/src/assets/icons/24x24/help_icon.svg +0 -1
  511. package/src/assets/icons/24x24/how to_icon.svg +0 -1
  512. package/src/assets/icons/24x24/link_icon.svg +0 -1
  513. package/src/assets/icons/24x24/list_icon.svg +0 -1
  514. package/src/assets/icons/24x24/mail_icon.svg +0 -1
  515. package/src/assets/icons/24x24/migrate_icon.svg +0 -1
  516. package/src/assets/icons/24x24/minus_icon.svg +0 -1
  517. package/src/assets/icons/24x24/models_icon.svg +0 -1
  518. package/src/assets/icons/24x24/more_horizontal_icon.svg +0 -1
  519. package/src/assets/icons/24x24/navigation_icon.svg +0 -1
  520. package/src/assets/icons/24x24/navigator_icon.svg +0 -1
  521. package/src/assets/icons/24x24/next_icon.svg +0 -1
  522. package/src/assets/icons/24x24/no_connection_icon.svg +0 -1
  523. package/src/assets/icons/24x24/notifications_icon.svg +0 -1
  524. package/src/assets/icons/24x24/orders_icon.svg +0 -1
  525. package/src/assets/icons/24x24/pages_icon.svg +0 -1
  526. package/src/assets/icons/24x24/permissions_icon.svg +0 -1
  527. package/src/assets/icons/24x24/photo_icon.svg +0 -1
  528. package/src/assets/icons/24x24/play_icon.svg +0 -1
  529. package/src/assets/icons/24x24/plus_icon.svg +0 -1
  530. package/src/assets/icons/24x24/preset_icon.svg +0 -1
  531. package/src/assets/icons/24x24/previous_icon.svg +0 -1
  532. package/src/assets/icons/24x24/printer_icon.svg +0 -1
  533. package/src/assets/icons/24x24/privacy_icon.svg +0 -1
  534. package/src/assets/icons/24x24/process_icon.svg +0 -1
  535. package/src/assets/icons/24x24/product_icon.svg +0 -1
  536. package/src/assets/icons/24x24/refresh_icon.svg +0 -1
  537. package/src/assets/icons/24x24/remove_member_icon.svg +0 -1
  538. package/src/assets/icons/24x24/reply_icon.svg +0 -1
  539. package/src/assets/icons/24x24/search_icon.svg +0 -1
  540. package/src/assets/icons/24x24/settings_icon.svg +0 -1
  541. package/src/assets/icons/24x24/snapshots_icon.svg +0 -1
  542. package/src/assets/icons/24x24/sort_down_icon.svg +0 -1
  543. package/src/assets/icons/24x24/sort_up_icon.svg +0 -1
  544. package/src/assets/icons/24x24/tasks_icon.svg +0 -1
  545. package/src/assets/icons/24x24/time_icon.svg +0 -1
  546. package/src/assets/icons/24x24/to_icon.svg +0 -1
  547. package/src/assets/icons/24x24/transfer_icon.svg +0 -1
  548. package/src/assets/icons/24x24/translate_icon.svg +0 -1
  549. package/src/assets/icons/24x24/translation_icon.svg +0 -1
  550. package/src/assets/icons/24x24/website_icon.svg +0 -1
  551. package/src/assets/icons/24x24/wifi_icon.svg +0 -1
  552. package/src/assets/icons/32x32/attributes_large_icon.svg +0 -1
  553. package/src/assets/icons/32x32/customer_large_icon.svg +0 -1
  554. package/src/assets/icons/32x32/digital_large_icon.svg +0 -1
  555. package/src/assets/icons/32x32/discount_large_icon.svg +0 -1
  556. package/src/assets/icons/32x32/filtering_large_icon.svg +0 -1
  557. package/src/assets/icons/32x32/gift card_large_icon.svg +0 -1
  558. package/src/assets/icons/32x32/navigation_large_icon.svg +0 -1
  559. package/src/assets/icons/32x32/notes_large_icon.svg +0 -1
  560. package/src/assets/icons/32x32/omnichannel_large_icon.svg +0 -1
  561. package/src/assets/icons/32x32/permission_large_icon.svg +0 -1
  562. package/src/assets/icons/32x32/product_large_icon.svg +0 -1
  563. package/src/assets/icons/32x32/search_large_icon.svg +0 -1
  564. package/src/assets/icons/32x32/shipping_large_icon.svg +0 -1
  565. package/src/assets/icons/32x32/site settings_large_icon.svg +0 -1
  566. package/src/assets/icons/32x32/staff members_large_icon.svg +0 -1
  567. package/src/assets/icons/32x32/taxes_large_icon.svg +0 -1
  568. package/src/assets/icons/32x32/token_large_icon.svg +0 -1
  569. package/src/assets/icons/32x32/warehouse_large_icon.svg +0 -1
  570. package/src/assets/icons/32x32/wifi_large_icon.svg +0 -1
  571. package/src/assets/icons/indicator/regular/error_indicator_icon.svg +0 -1
  572. package/src/assets/icons/indicator/regular/fail_indicator_icon.svg +0 -1
  573. package/src/assets/icons/indicator/regular/fail_outline_indicator_icon.svg +0 -1
  574. package/src/assets/icons/indicator/regular/help_indicator_icon.svg +0 -1
  575. package/src/assets/icons/indicator/regular/success_indicator_icon.svg +0 -1
  576. package/src/assets/icons/indicator/regular/warning_indicator_icon.svg +0 -1
  577. package/src/assets/icons/indicator/small/error_small_indicator_icon.svg +0 -1
  578. package/src/assets/icons/indicator/small/success_small_indicator_icon.svg +0 -1
  579. package/src/assets/icons/indicator/small/warning_small_indicator_icon.svg +0 -1
  580. package/src/assets/placeholder_64x64.png +0 -0
  581. package/src/consts.ts +0 -5
  582. package/src/extensions/index.ts +0 -3
  583. package/src/extensions/sendMessage.ts +0 -22
  584. package/src/extensions/types.ts +0 -26
  585. package/src/extensions/useExtensionMessage.ts +0 -13
  586. package/src/icons/20x20/BackSmallIcon.tsx +0 -32
  587. package/src/icons/20x20/BookmarksSmallIcon.tsx +0 -29
  588. package/src/icons/20x20/CheckboxSmallIcon.tsx +0 -32
  589. package/src/icons/20x20/ChevronSmallIcon.tsx +0 -32
  590. package/src/icons/20x20/CloseSmallIcon.tsx +0 -31
  591. package/src/icons/20x20/DragSmallIcon.tsx +0 -31
  592. package/src/icons/20x20/FilterSmallIcon.tsx +0 -31
  593. package/src/icons/20x20/MinusSmallIcon.tsx +0 -32
  594. package/src/icons/20x20/MoreSmallIcon.tsx +0 -31
  595. package/src/icons/20x20/NextSmallIcon.tsx +0 -32
  596. package/src/icons/20x20/PlusSmallIcon.tsx +0 -32
  597. package/src/icons/20x20/SearchSmallIcon.tsx +0 -31
  598. package/src/icons/20x20/SortBigSmallIcon.tsx +0 -31
  599. package/src/icons/20x20/SortSmallSmallIcon.tsx +0 -31
  600. package/src/icons/20x20/index.ts +0 -14
  601. package/src/icons/24x24/AddEnvironmentIcon.tsx +0 -32
  602. package/src/icons/24x24/AppsIcon.tsx +0 -31
  603. package/src/icons/24x24/ArrowRightIcon.tsx +0 -32
  604. package/src/icons/24x24/BackspaceIcon.tsx +0 -32
  605. package/src/icons/24x24/BagIcon.tsx +0 -29
  606. package/src/icons/24x24/BillingIcon.tsx +0 -32
  607. package/src/icons/24x24/BookmarkIcon.tsx +0 -29
  608. package/src/icons/24x24/CalendarIcon.tsx +0 -32
  609. package/src/icons/24x24/CheckIcon.tsx +0 -32
  610. package/src/icons/24x24/ChevronIcon.tsx +0 -32
  611. package/src/icons/24x24/Close2Icon.tsx +0 -39
  612. package/src/icons/24x24/CloseIcon.tsx +0 -31
  613. package/src/icons/24x24/CodeIcon.tsx +0 -38
  614. package/src/icons/24x24/ColumnsIcon.tsx +0 -30
  615. package/src/icons/24x24/CopyIcon.tsx +0 -39
  616. package/src/icons/24x24/CustomersIcon.tsx +0 -33
  617. package/src/icons/24x24/DashboardIcon.tsx +0 -30
  618. package/src/icons/24x24/DeleteIcon.tsx +0 -32
  619. package/src/icons/24x24/DeveloperIcon.tsx +0 -44
  620. package/src/icons/24x24/DiscountsIcon.tsx +0 -31
  621. package/src/icons/24x24/DownloadIcon.tsx +0 -32
  622. package/src/icons/24x24/DragIcon.tsx +0 -31
  623. package/src/icons/24x24/EditIcon.tsx +0 -36
  624. package/src/icons/24x24/EnvironmentIcon.tsx +0 -36
  625. package/src/icons/24x24/ExpandIcon.tsx +0 -39
  626. package/src/icons/24x24/ExpendableIcon.tsx +0 -34
  627. package/src/icons/24x24/EyeClosedIcon.tsx +0 -30
  628. package/src/icons/24x24/EyeIcon.tsx +0 -31
  629. package/src/icons/24x24/FilteringIcon.tsx +0 -32
  630. package/src/icons/24x24/GenerateIcon.tsx +0 -32
  631. package/src/icons/24x24/GithubIcon.tsx +0 -40
  632. package/src/icons/24x24/GridIcon.tsx +0 -61
  633. package/src/icons/24x24/HelpIcon.tsx +0 -35
  634. package/src/icons/24x24/HowToIcon.tsx +0 -39
  635. package/src/icons/24x24/LinkIcon.tsx +0 -32
  636. package/src/icons/24x24/ListIcon.tsx +0 -34
  637. package/src/icons/24x24/MailIcon.tsx +0 -31
  638. package/src/icons/24x24/MigrateIcon.tsx +0 -36
  639. package/src/icons/24x24/MinusIcon.tsx +0 -32
  640. package/src/icons/24x24/ModelsIcon.tsx +0 -38
  641. package/src/icons/24x24/MoreHorizontalIcon.tsx +0 -31
  642. package/src/icons/24x24/NavigationIcon.tsx +0 -31
  643. package/src/icons/24x24/NavigatorIcon.tsx +0 -32
  644. package/src/icons/24x24/NextIcon.tsx +0 -32
  645. package/src/icons/24x24/NoConnectionIcon.tsx +0 -36
  646. package/src/icons/24x24/NotificationsIcon.tsx +0 -32
  647. package/src/icons/24x24/OrdersIcon.tsx +0 -36
  648. package/src/icons/24x24/PagesIcon.tsx +0 -32
  649. package/src/icons/24x24/PermissionsIcon.tsx +0 -32
  650. package/src/icons/24x24/PhotoIcon.tsx +0 -32
  651. package/src/icons/24x24/PlayIcon.tsx +0 -31
  652. package/src/icons/24x24/PlusIcon.tsx +0 -32
  653. package/src/icons/24x24/PresetIcon.tsx +0 -35
  654. package/src/icons/24x24/PreviousIcon.tsx +0 -32
  655. package/src/icons/24x24/PrinterIcon.tsx +0 -32
  656. package/src/icons/24x24/PrivacyIcon.tsx +0 -39
  657. package/src/icons/24x24/ProcessIcon.tsx +0 -73
  658. package/src/icons/24x24/ProductIcon.tsx +0 -32
  659. package/src/icons/24x24/RefreshIcon.tsx +0 -32
  660. package/src/icons/24x24/RemoveMemberIcon.tsx +0 -34
  661. package/src/icons/24x24/ReplyIcon.tsx +0 -32
  662. package/src/icons/24x24/SearchIcon.tsx +0 -39
  663. package/src/icons/24x24/SettingsIcon.tsx +0 -34
  664. package/src/icons/24x24/SnapshotsIcon.tsx +0 -39
  665. package/src/icons/24x24/SortDownIcon.tsx +0 -31
  666. package/src/icons/24x24/SortUpIcon.tsx +0 -31
  667. package/src/icons/24x24/TasksIcon.tsx +0 -32
  668. package/src/icons/24x24/TimeIcon.tsx +0 -39
  669. package/src/icons/24x24/ToIcon.tsx +0 -32
  670. package/src/icons/24x24/TransferIcon.tsx +0 -32
  671. package/src/icons/24x24/TranslateIcon.tsx +0 -32
  672. package/src/icons/24x24/TranslationIcon.tsx +0 -33
  673. package/src/icons/24x24/WebsiteIcon.tsx +0 -53
  674. package/src/icons/24x24/WifiIcon.tsx +0 -32
  675. package/src/icons/24x24/index.ts +0 -74
  676. package/src/icons/32x32/AttributesLargeIcon.tsx +0 -36
  677. package/src/icons/32x32/CustomerLargeIcon.tsx +0 -38
  678. package/src/icons/32x32/DigitalLargeIcon.tsx +0 -31
  679. package/src/icons/32x32/DiscountLargeIcon.tsx +0 -35
  680. package/src/icons/32x32/FilteringLargeIcon.tsx +0 -32
  681. package/src/icons/32x32/GiftCardLargeIcon.tsx +0 -44
  682. package/src/icons/32x32/NavigationLargeIcon.tsx +0 -39
  683. package/src/icons/32x32/NotesLargeIcon.tsx +0 -53
  684. package/src/icons/32x32/OmnichannelLargeIcon.tsx +0 -64
  685. package/src/icons/32x32/PermissionLargeIcon.tsx +0 -39
  686. package/src/icons/32x32/ProductLargeIcon.tsx +0 -31
  687. package/src/icons/32x32/SearchLargeIcon.tsx +0 -39
  688. package/src/icons/32x32/ShippingLargeIcon.tsx +0 -32
  689. package/src/icons/32x32/SiteSettingsLargeIcon.tsx +0 -32
  690. package/src/icons/32x32/StaffMembersLargeIcon.tsx +0 -40
  691. package/src/icons/32x32/TaxesLargeIcon.tsx +0 -55
  692. package/src/icons/32x32/TokenLargeIcon.tsx +0 -38
  693. package/src/icons/32x32/WarehouseLargeIcon.tsx +0 -32
  694. package/src/icons/32x32/WifiLargeIcon.tsx +0 -32
  695. package/src/icons/32x32/index.ts +0 -19
  696. package/src/icons/ArrowDropdownIcon.tsx +0 -11
  697. package/src/icons/CheckboxCheckedIcon.tsx +0 -30
  698. package/src/icons/CheckboxIcon.tsx +0 -20
  699. package/src/icons/CheckboxIndeterminateIcon.tsx +0 -17
  700. package/src/icons/CircleIndicatorIcon.tsx +0 -10
  701. package/src/icons/CommentSmallIcon.tsx +0 -15
  702. package/src/icons/CompleteIcon.tsx +0 -25
  703. package/src/icons/CustomersLargeIcon.tsx +0 -26
  704. package/src/icons/DeleteUserIcon.tsx +0 -26
  705. package/src/icons/DigitalSmallIcon.tsx +0 -15
  706. package/src/icons/EditSmallIcon.tsx +0 -15
  707. package/src/icons/GiftCardLargeIcon.tsx +0 -15
  708. package/src/icons/ImageIcon.tsx +0 -12
  709. package/src/icons/InfoIcon.tsx +0 -23
  710. package/src/icons/Logo.tsx +0 -33
  711. package/src/icons/LogoDark.tsx +0 -26
  712. package/src/icons/LogoLight.tsx +0 -27
  713. package/src/icons/MoreIcon.tsx +0 -12
  714. package/src/icons/NotAllowedIcon.tsx +0 -25
  715. package/src/icons/NotAllowedInvertedIcon.tsx +0 -25
  716. package/src/icons/RadioCheckedIcon.tsx +0 -10
  717. package/src/icons/RadioIcon.tsx +0 -16
  718. package/src/icons/SearchLargeIcon.tsx +0 -18
  719. package/src/icons/SettingsLargeIcon.tsx +0 -23
  720. package/src/icons/StaffMembersLargeIcon.tsx +0 -15
  721. package/src/icons/SuccessCircleIndicatorIcon.tsx +0 -16
  722. package/src/icons/WarningIcon.tsx +0 -23
  723. package/src/icons/index.ts +0 -33
  724. package/src/icons/indicator/index.ts +0 -2
  725. package/src/icons/indicator/regular/ErrorIndicatorIcon.tsx +0 -24
  726. package/src/icons/indicator/regular/FailIndicatorIcon.tsx +0 -31
  727. package/src/icons/indicator/regular/FailOutlineIndicatorIcon.tsx +0 -31
  728. package/src/icons/indicator/regular/HelpIndicatorIcon.tsx +0 -30
  729. package/src/icons/indicator/regular/SuccessIndicatorIcon.tsx +0 -24
  730. package/src/icons/indicator/regular/WarningIndicatorIcon.tsx +0 -23
  731. package/src/icons/indicator/regular/index.ts +0 -6
  732. package/src/icons/indicator/small/ErrorSmallIndicatorIcon.tsx +0 -24
  733. package/src/icons/indicator/small/SuccessSmallIndicatorIcon.tsx +0 -24
  734. package/src/icons/indicator/small/WarningSmallIndicatorIcon.tsx +0 -23
  735. package/src/icons/indicator/small/index.ts +0 -3
  736. package/src/icons/styles.ts +0 -10
  737. package/src/icons/types.ts +0 -4
  738. package/src/index.tsx +0 -41
  739. package/src/localStorageKeys.ts +0 -4
  740. package/src/theme/Baseline.tsx +0 -75
  741. package/src/theme/ThemeProvider.tsx +0 -89
  742. package/src/theme/context.ts +0 -8
  743. package/src/theme/createSaleorTheme/createSaleorTheme.tsx +0 -364
  744. package/src/theme/createSaleorTheme/index.ts +0 -2
  745. package/src/theme/createSaleorTheme/overrides/buttons.ts +0 -228
  746. package/src/theme/createSaleorTheme/overrides/controls.ts +0 -193
  747. package/src/theme/createSaleorTheme/overrides/index.ts +0 -18
  748. package/src/theme/createSaleorTheme/overrides/inputs.ts +0 -164
  749. package/src/theme/createSaleorTheme/overrides/tables.ts +0 -78
  750. package/src/theme/createSaleorTheme/palette.ts +0 -39
  751. package/src/theme/createSaleorTheme/shadows.ts +0 -33
  752. package/src/theme/createSaleorTheme/types.ts +0 -76
  753. package/src/theme/index.ts +0 -4
  754. package/src/theme/styles.ts +0 -40
  755. package/src/theme/themes.ts +0 -184
  756. package/src/theme/types.ts +0 -8
  757. package/src/theme/utils.test.ts +0 -43
  758. package/src/theme/utils.ts +0 -13
  759. package/src/tools/index.ts +0 -2
  760. package/src/tools/useElementScroll.ts +0 -83
  761. package/src/tools/useLocalStorage.ts +0 -63
  762. package/src/tools/useTextWidth.ts +0 -20
  763. package/src/tools/useWindowScroll.ts +0 -25
  764. package/src/utils/Decorator.tsx +0 -25
  765. package/src/utils/guideStyles.ts +0 -49
  766. package/src/utils/mergeRefs.ts +0 -14
  767. package/src/utils/useListStory.ts +0 -79
  768. package/src/utils/useMockAutocomplete.ts +0 -37
  769. /package/dist/{types → components}/Button/index.d.ts +0 -0
  770. /package/{dist → legacy/dist}/types/Accordion/Accordion.stories.d.ts +0 -0
  771. /package/{dist → legacy/dist}/types/Accordion/index.d.ts +0 -0
  772. /package/{dist → legacy/dist}/types/Accordion/styles.d.ts +0 -0
  773. /package/{dist → legacy/dist}/types/ActionBar/ActionBar.d.ts +0 -0
  774. /package/{dist → legacy/dist}/types/ActionBar/ActionBar.stories.d.ts +0 -0
  775. /package/{dist → legacy/dist}/types/ActionBar/context.d.ts +0 -0
  776. /package/{dist → legacy/dist}/types/ActionBar/index.d.ts +0 -0
  777. /package/{dist → legacy/dist}/types/ActionBar/styles.d.ts +0 -0
  778. /package/{dist → legacy/dist}/types/Alert/Alert.d.ts +0 -0
  779. /package/{dist → legacy/dist}/types/Alert/Alert.stories.d.ts +0 -0
  780. /package/{dist → legacy/dist}/types/Alert/AlertBase.d.ts +0 -0
  781. /package/{dist → legacy/dist}/types/Alert/index.d.ts +0 -0
  782. /package/{dist → legacy/dist}/types/Alert/styles.d.ts +0 -0
  783. /package/{dist → legacy/dist}/types/Autocomplete/Autocomplete.d.ts +0 -0
  784. /package/{dist → legacy/dist}/types/Autocomplete/Autocomplete.stories.d.ts +0 -0
  785. /package/{dist → legacy/dist}/types/Autocomplete/fixtures.d.ts +0 -0
  786. /package/{dist → legacy/dist}/types/Autocomplete/index.d.ts +0 -0
  787. /package/{dist → legacy/dist}/types/Autocomplete/styles.d.ts +0 -0
  788. /package/{dist → legacy/dist}/types/Avatar/Avatar.d.ts +0 -0
  789. /package/{dist → legacy/dist}/types/Avatar/Avatar.stories.d.ts +0 -0
  790. /package/{dist → legacy/dist}/types/Avatar/index.d.ts +0 -0
  791. /package/{dist → legacy/dist}/types/Avatar/styles.d.ts +0 -0
  792. /package/{dist → legacy/dist}/types/Backlink/Backlink.d.ts +0 -0
  793. /package/{dist → legacy/dist}/types/Backlink/Backlink.stories.d.ts +0 -0
  794. /package/{dist → legacy/dist}/types/Backlink/context.d.ts +0 -0
  795. /package/{dist → legacy/dist}/types/Backlink/index.d.ts +0 -0
  796. /package/{dist → legacy/dist}/types/Backlink/styles.d.ts +0 -0
  797. /package/{dist → legacy/dist}/types/BaseList/BaseList.d.ts +0 -0
  798. /package/{dist → legacy/dist}/types/BaseList/context.d.ts +0 -0
  799. /package/{dist → legacy/dist}/types/BaseList/index.d.ts +0 -0
  800. /package/{dist → legacy/dist}/types/BaseList/styles.d.ts +0 -0
  801. /package/{dist → legacy/dist}/types/Button/Button.d.ts +0 -0
  802. /package/{src/Button/index.ts → legacy/dist/types/Button/index.d.ts} +0 -0
  803. /package/{dist → legacy/dist}/types/Button/styles.d.ts +0 -0
  804. /package/{dist → legacy/dist}/types/Chip/ChipAdornment.d.ts +0 -0
  805. /package/{dist → legacy/dist}/types/Chip/index.d.ts +0 -0
  806. /package/{dist → legacy/dist}/types/Chip/private/ColorSwatch.d.ts +0 -0
  807. /package/{dist → legacy/dist}/types/Chip/styles.d.ts +0 -0
  808. /package/{dist → legacy/dist}/types/CircleIndicator/CircleIndicator.d.ts +0 -0
  809. /package/{dist → legacy/dist}/types/CircleIndicator/CircleIndicator.stories.d.ts +0 -0
  810. /package/{dist → legacy/dist}/types/CircleIndicator/index.d.ts +0 -0
  811. /package/{dist → legacy/dist}/types/CircleIndicator/styles.d.ts +0 -0
  812. /package/{dist → legacy/dist}/types/ConfirmButton/ConfirmButton.d.ts +0 -0
  813. /package/{dist → legacy/dist}/types/ConfirmButton/ConfirmButton.stories.d.ts +0 -0
  814. /package/{dist → legacy/dist}/types/ConfirmButton/index.d.ts +0 -0
  815. /package/{dist → legacy/dist}/types/ConfirmButton/styles.d.ts +0 -0
  816. /package/{dist → legacy/dist}/types/DialogHeader/DialogHeader.d.ts +0 -0
  817. /package/{dist → legacy/dist}/types/DialogHeader/index.d.ts +0 -0
  818. /package/{dist → legacy/dist}/types/DialogHeader/styles.d.ts +0 -0
  819. /package/{dist → legacy/dist}/types/DialogTable/index.d.ts +0 -0
  820. /package/{dist → legacy/dist}/types/DialogTable/styles.d.ts +0 -0
  821. /package/{dist → legacy/dist}/types/Filter/Filter.d.ts +0 -0
  822. /package/{dist → legacy/dist}/types/Filter/FilterBar.d.ts +0 -0
  823. /package/{dist → legacy/dist}/types/Filter/FilterContent.d.ts +0 -0
  824. /package/{dist → legacy/dist}/types/Filter/FilterField/AutocompleteFilterField.d.ts +0 -0
  825. /package/{dist → legacy/dist}/types/Filter/FilterField/MultipleSelectFilterField.d.ts +0 -0
  826. /package/{dist → legacy/dist}/types/Filter/FilterField/MultipleValueAutocompleteFilterField.d.ts +0 -0
  827. /package/{dist → legacy/dist}/types/Filter/FilterField/RangeFilterField.d.ts +0 -0
  828. /package/{dist → legacy/dist}/types/Filter/FilterField/SelectFilterField.d.ts +0 -0
  829. /package/{dist → legacy/dist}/types/Filter/FilterField/TextFilterField.d.ts +0 -0
  830. /package/{dist → legacy/dist}/types/Filter/FilterMenu.d.ts +0 -0
  831. /package/{dist → legacy/dist}/types/Filter/context.d.ts +0 -0
  832. /package/{dist → legacy/dist}/types/Filter/index.d.ts +0 -0
  833. /package/{dist → legacy/dist}/types/Filter/stories/Filter.stories.d.ts +0 -0
  834. /package/{dist → legacy/dist}/types/Filter/stories/FilterInteractive.stories.d.ts +0 -0
  835. /package/{dist → legacy/dist}/types/Filter/stories/labels.d.ts +0 -0
  836. /package/{dist → legacy/dist}/types/Filter/styles.d.ts +0 -0
  837. /package/{dist → legacy/dist}/types/Filter/types.d.ts +0 -0
  838. /package/{dist → legacy/dist}/types/Filter/utils.d.ts +0 -0
  839. /package/{dist → legacy/dist}/types/IconButton/IconButton.d.ts +0 -0
  840. /package/{dist → legacy/dist}/types/IconButton/IconButton.stories.d.ts +0 -0
  841. /package/{dist → legacy/dist}/types/IconButton/index.d.ts +0 -0
  842. /package/{dist → legacy/dist}/types/IconButton/partials.d.ts +0 -0
  843. /package/{dist → legacy/dist}/types/IconButton/styles.d.ts +0 -0
  844. /package/{dist → legacy/dist}/types/Indicator/Circle.d.ts +0 -0
  845. /package/{dist → legacy/dist}/types/Indicator/CircleFilled.d.ts +0 -0
  846. /package/{dist → legacy/dist}/types/Indicator/CircleOutline.d.ts +0 -0
  847. /package/{dist → legacy/dist}/types/Indicator/Indicator.d.ts +0 -0
  848. /package/{dist → legacy/dist}/types/Indicator/Indicator.stories.d.ts +0 -0
  849. /package/{dist → legacy/dist}/types/Indicator/IndicatorCircle.d.ts +0 -0
  850. /package/{dist → legacy/dist}/types/Indicator/IndicatorCircle.stories.d.ts +0 -0
  851. /package/{dist → legacy/dist}/types/Indicator/IndicatorOutlined.d.ts +0 -0
  852. /package/{dist → legacy/dist}/types/Indicator/IndicatorOutlined.stories.d.ts +0 -0
  853. /package/{dist → legacy/dist}/types/Indicator/index.d.ts +0 -0
  854. /package/{dist → legacy/dist}/types/Indicator/styles.d.ts +0 -0
  855. /package/{dist → legacy/dist}/types/LayoutButton/LayoutButton.d.ts +0 -0
  856. /package/{dist → legacy/dist}/types/LayoutButton/index.d.ts +0 -0
  857. /package/{dist → legacy/dist}/types/LayoutButton/styles.d.ts +0 -0
  858. /package/{dist → legacy/dist}/types/List/List.d.ts +0 -0
  859. /package/{dist → legacy/dist}/types/List/List.stories.d.ts +0 -0
  860. /package/{dist → legacy/dist}/types/List/context.d.ts +0 -0
  861. /package/{dist → legacy/dist}/types/List/index.d.ts +0 -0
  862. /package/{dist → legacy/dist}/types/List/styles.d.ts +0 -0
  863. /package/{dist → legacy/dist}/types/MultipleValueAutocomplete/MultipleValueAutocomplete.d.ts +0 -0
  864. /package/{dist → legacy/dist}/types/MultipleValueAutocomplete/MultipleValueAutocomplete.stories.d.ts +0 -0
  865. /package/{dist → legacy/dist}/types/MultipleValueAutocomplete/fixtures.d.ts +0 -0
  866. /package/{dist → legacy/dist}/types/MultipleValueAutocomplete/index.d.ts +0 -0
  867. /package/{dist → legacy/dist}/types/MultipleValueAutocomplete/styles.d.ts +0 -0
  868. /package/{dist → legacy/dist}/types/MultipleValueAutocomplete/useMultipleValueAutocomplete.d.ts +0 -0
  869. /package/{dist → legacy/dist}/types/NavigationCard/NavigationCard.d.ts +0 -0
  870. /package/{dist → legacy/dist}/types/NavigationCard/NavigationCard.stories.d.ts +0 -0
  871. /package/{dist → legacy/dist}/types/NavigationCard/NavigationCardBase.d.ts +0 -0
  872. /package/{dist → legacy/dist}/types/NavigationCard/index.d.ts +0 -0
  873. /package/{dist → legacy/dist}/types/NavigationCard/styles.d.ts +0 -0
  874. /package/{dist → legacy/dist}/types/Notification/Notification.d.ts +0 -0
  875. /package/{dist → legacy/dist}/types/Notification/Notification.stories.d.ts +0 -0
  876. /package/{dist → legacy/dist}/types/Notification/index.d.ts +0 -0
  877. /package/{dist → legacy/dist}/types/Notification/styles.d.ts +0 -0
  878. /package/{dist → legacy/dist}/types/Notification/types.d.ts +0 -0
  879. /package/{dist → legacy/dist}/types/OffsettedList/OffsettedList.d.ts +0 -0
  880. /package/{dist → legacy/dist}/types/OffsettedList/OffsettedList.stories.d.ts +0 -0
  881. /package/{dist → legacy/dist}/types/OffsettedList/index.d.ts +0 -0
  882. /package/{dist → legacy/dist}/types/OffsettedList/styles.d.ts +0 -0
  883. /package/{dist → legacy/dist}/types/PageTabs/PageTab.d.ts +0 -0
  884. /package/{dist → legacy/dist}/types/PageTabs/PageTab.stories.d.ts +0 -0
  885. /package/{dist → legacy/dist}/types/PageTabs/PageTabPanel.d.ts +0 -0
  886. /package/{dist → legacy/dist}/types/PageTabs/PageTabs.d.ts +0 -0
  887. /package/{dist → legacy/dist}/types/PageTabs/index.d.ts +0 -0
  888. /package/{dist → legacy/dist}/types/PageTabs/styles.d.ts +0 -0
  889. /package/{dist → legacy/dist}/types/Pagination/Pagination.d.ts +0 -0
  890. /package/{dist → legacy/dist}/types/Pagination/PaginationActions.d.ts +0 -0
  891. /package/{dist → legacy/dist}/types/Pagination/PaginationRowNumberSelect.d.ts +0 -0
  892. /package/{dist → legacy/dist}/types/Pagination/TablePagination.d.ts +0 -0
  893. /package/{dist → legacy/dist}/types/Pagination/index.d.ts +0 -0
  894. /package/{dist → legacy/dist}/types/Pagination/styles.d.ts +0 -0
  895. /package/{dist → legacy/dist}/types/Pill/Pill.d.ts +0 -0
  896. /package/{dist → legacy/dist}/types/Pill/Pill.stories.d.ts +0 -0
  897. /package/{dist → legacy/dist}/types/Pill/index.d.ts +0 -0
  898. /package/{dist → legacy/dist}/types/Pill/styles.d.ts +0 -0
  899. /package/{dist → legacy/dist}/types/PillLink/PillLink.d.ts +0 -0
  900. /package/{dist → legacy/dist}/types/PillLink/index.d.ts +0 -0
  901. /package/{dist → legacy/dist}/types/PillLink/styles.d.ts +0 -0
  902. /package/{dist → legacy/dist}/types/ResponsiveTable/ResponsiveTable.d.ts +0 -0
  903. /package/{dist → legacy/dist}/types/ResponsiveTable/index.d.ts +0 -0
  904. /package/{dist → legacy/dist}/types/ResponsiveTable/styles.d.ts +0 -0
  905. /package/{dist → legacy/dist}/types/Savebar/ButtonTooltipDecorator.d.ts +0 -0
  906. /package/{dist → legacy/dist}/types/Savebar/Savebar.d.ts +0 -0
  907. /package/{dist → legacy/dist}/types/Savebar/Savebar.stories.d.ts +0 -0
  908. /package/{dist → legacy/dist}/types/Savebar/index.d.ts +0 -0
  909. /package/{dist → legacy/dist}/types/Savebar/styles.d.ts +0 -0
  910. /package/{dist → legacy/dist}/types/ScrollShadow/ScrollShadow.d.ts +0 -0
  911. /package/{dist → legacy/dist}/types/ScrollShadow/index.d.ts +0 -0
  912. /package/{dist → legacy/dist}/types/ScrollShadow/styles.d.ts +0 -0
  913. /package/{dist → legacy/dist}/types/Sidebar/ExpandButton.d.ts +0 -0
  914. /package/{dist → legacy/dist}/types/Sidebar/MenuItem.d.ts +0 -0
  915. /package/{dist → legacy/dist}/types/Sidebar/Sidebar.d.ts +0 -0
  916. /package/{dist → legacy/dist}/types/Sidebar/Sidebar.stories.d.ts +0 -0
  917. /package/{dist → legacy/dist}/types/Sidebar/fixtures.d.ts +0 -0
  918. /package/{dist → legacy/dist}/types/Sidebar/index.d.ts +0 -0
  919. /package/{dist → legacy/dist}/types/Sidebar/types.d.ts +0 -0
  920. /package/{dist → legacy/dist}/types/Sidebar/utils.d.ts +0 -0
  921. /package/{dist → legacy/dist}/types/SidebarDrawer/MenuItemBtn.d.ts +0 -0
  922. /package/{dist → legacy/dist}/types/SidebarDrawer/SidebarDrawer.d.ts +0 -0
  923. /package/{dist → legacy/dist}/types/SidebarDrawer/SidebarDrawer.stories.d.ts +0 -0
  924. /package/{dist → legacy/dist}/types/SidebarDrawer/index.d.ts +0 -0
  925. /package/{dist → legacy/dist}/types/SidebarDrawer/styles.d.ts +0 -0
  926. /package/{dist → legacy/dist}/types/SquareButton/SquareButton.d.ts +0 -0
  927. /package/{dist → legacy/dist}/types/SquareButton/SquareButton.stories.d.ts +0 -0
  928. /package/{dist → legacy/dist}/types/SquareButton/index.d.ts +0 -0
  929. /package/{dist → legacy/dist}/types/StatusChip/StatusChip.d.ts +0 -0
  930. /package/{dist → legacy/dist}/types/StatusChip/StatusChip.stories.d.ts +0 -0
  931. /package/{dist → legacy/dist}/types/StatusChip/index.d.ts +0 -0
  932. /package/{dist → legacy/dist}/types/StatusChip/types.d.ts +0 -0
  933. /package/{dist → legacy/dist}/types/SwitchSelector/SwitchSelector.d.ts +0 -0
  934. /package/{dist → legacy/dist}/types/SwitchSelector/SwitchSelector.stories.d.ts +0 -0
  935. /package/{dist → legacy/dist}/types/SwitchSelector/SwitchSelectorButton.d.ts +0 -0
  936. /package/{dist → legacy/dist}/types/SwitchSelector/index.d.ts +0 -0
  937. /package/{dist → legacy/dist}/types/Tooltip/Arrow.d.ts +0 -0
  938. /package/{dist → legacy/dist}/types/Tooltip/Tooltip.d.ts +0 -0
  939. /package/{dist → legacy/dist}/types/Tooltip/Tooltip.stories.d.ts +0 -0
  940. /package/{dist → legacy/dist}/types/Tooltip/TooltipMountWrapper.d.ts +0 -0
  941. /package/{dist → legacy/dist}/types/Tooltip/index.d.ts +0 -0
  942. /package/{dist → legacy/dist}/types/Tooltip/styles.d.ts +0 -0
  943. /package/{dist → legacy/dist}/types/UserChipMenu/UserChipMenu.d.ts +0 -0
  944. /package/{dist → legacy/dist}/types/UserChipMenu/UserChipMenu.stories.d.ts +0 -0
  945. /package/{dist → legacy/dist}/types/UserChipMenu/UserChipMenuItem.d.ts +0 -0
  946. /package/{dist → legacy/dist}/types/UserChipMenu/context.d.ts +0 -0
  947. /package/{dist → legacy/dist}/types/UserChipMenu/index.d.ts +0 -0
  948. /package/{dist → legacy/dist}/types/UserChipMenu/styles.d.ts +0 -0
  949. /package/{dist → legacy/dist}/types/consts.d.ts +0 -0
  950. /package/{dist → legacy/dist}/types/extensions/index.d.ts +0 -0
  951. /package/{dist → legacy/dist}/types/extensions/sendMessage.d.ts +0 -0
  952. /package/{dist → legacy/dist}/types/extensions/types.d.ts +0 -0
  953. /package/{dist → legacy/dist}/types/extensions/useExtensionMessage.d.ts +0 -0
  954. /package/{dist → legacy/dist}/types/icons/20x20/BackSmallIcon.d.ts +0 -0
  955. /package/{dist → legacy/dist}/types/icons/20x20/BookmarksSmallIcon.d.ts +0 -0
  956. /package/{dist → legacy/dist}/types/icons/20x20/CheckboxSmallIcon.d.ts +0 -0
  957. /package/{dist → legacy/dist}/types/icons/20x20/ChevronSmallIcon.d.ts +0 -0
  958. /package/{dist → legacy/dist}/types/icons/20x20/CloseSmallIcon.d.ts +0 -0
  959. /package/{dist → legacy/dist}/types/icons/20x20/DragSmallIcon.d.ts +0 -0
  960. /package/{dist → legacy/dist}/types/icons/20x20/FilterSmallIcon.d.ts +0 -0
  961. /package/{dist → legacy/dist}/types/icons/20x20/MinusSmallIcon.d.ts +0 -0
  962. /package/{dist → legacy/dist}/types/icons/20x20/MoreSmallIcon.d.ts +0 -0
  963. /package/{dist → legacy/dist}/types/icons/20x20/NextSmallIcon.d.ts +0 -0
  964. /package/{dist → legacy/dist}/types/icons/20x20/PlusSmallIcon.d.ts +0 -0
  965. /package/{dist → legacy/dist}/types/icons/20x20/SearchSmallIcon.d.ts +0 -0
  966. /package/{dist → legacy/dist}/types/icons/20x20/SortBigSmallIcon.d.ts +0 -0
  967. /package/{dist → legacy/dist}/types/icons/20x20/SortSmallSmallIcon.d.ts +0 -0
  968. /package/{dist → legacy/dist}/types/icons/20x20/index.d.ts +0 -0
  969. /package/{dist → legacy/dist}/types/icons/24x24/AddEnvironmentIcon.d.ts +0 -0
  970. /package/{dist → legacy/dist}/types/icons/24x24/AppsIcon.d.ts +0 -0
  971. /package/{dist → legacy/dist}/types/icons/24x24/ArrowRightIcon.d.ts +0 -0
  972. /package/{dist → legacy/dist}/types/icons/24x24/BackspaceIcon.d.ts +0 -0
  973. /package/{dist → legacy/dist}/types/icons/24x24/BagIcon.d.ts +0 -0
  974. /package/{dist → legacy/dist}/types/icons/24x24/BillingIcon.d.ts +0 -0
  975. /package/{dist → legacy/dist}/types/icons/24x24/BookmarkIcon.d.ts +0 -0
  976. /package/{dist → legacy/dist}/types/icons/24x24/CalendarIcon.d.ts +0 -0
  977. /package/{dist → legacy/dist}/types/icons/24x24/CheckIcon.d.ts +0 -0
  978. /package/{dist → legacy/dist}/types/icons/24x24/ChevronIcon.d.ts +0 -0
  979. /package/{dist → legacy/dist}/types/icons/24x24/Close2Icon.d.ts +0 -0
  980. /package/{dist → legacy/dist}/types/icons/24x24/CloseIcon.d.ts +0 -0
  981. /package/{dist → legacy/dist}/types/icons/24x24/CodeIcon.d.ts +0 -0
  982. /package/{dist → legacy/dist}/types/icons/24x24/ColumnsIcon.d.ts +0 -0
  983. /package/{dist → legacy/dist}/types/icons/24x24/CopyIcon.d.ts +0 -0
  984. /package/{dist → legacy/dist}/types/icons/24x24/CustomersIcon.d.ts +0 -0
  985. /package/{dist → legacy/dist}/types/icons/24x24/DashboardIcon.d.ts +0 -0
  986. /package/{dist → legacy/dist}/types/icons/24x24/DeleteIcon.d.ts +0 -0
  987. /package/{dist → legacy/dist}/types/icons/24x24/DeveloperIcon.d.ts +0 -0
  988. /package/{dist → legacy/dist}/types/icons/24x24/DiscountsIcon.d.ts +0 -0
  989. /package/{dist → legacy/dist}/types/icons/24x24/DownloadIcon.d.ts +0 -0
  990. /package/{dist → legacy/dist}/types/icons/24x24/DragIcon.d.ts +0 -0
  991. /package/{dist → legacy/dist}/types/icons/24x24/EditIcon.d.ts +0 -0
  992. /package/{dist → legacy/dist}/types/icons/24x24/EnvironmentIcon.d.ts +0 -0
  993. /package/{dist → legacy/dist}/types/icons/24x24/ExpandIcon.d.ts +0 -0
  994. /package/{dist → legacy/dist}/types/icons/24x24/ExpendableIcon.d.ts +0 -0
  995. /package/{dist → legacy/dist}/types/icons/24x24/EyeClosedIcon.d.ts +0 -0
  996. /package/{dist → legacy/dist}/types/icons/24x24/EyeIcon.d.ts +0 -0
  997. /package/{dist → legacy/dist}/types/icons/24x24/FilteringIcon.d.ts +0 -0
  998. /package/{dist → legacy/dist}/types/icons/24x24/GenerateIcon.d.ts +0 -0
  999. /package/{dist → legacy/dist}/types/icons/24x24/GithubIcon.d.ts +0 -0
  1000. /package/{dist → legacy/dist}/types/icons/24x24/GridIcon.d.ts +0 -0
  1001. /package/{dist → legacy/dist}/types/icons/24x24/HelpIcon.d.ts +0 -0
  1002. /package/{dist → legacy/dist}/types/icons/24x24/HowToIcon.d.ts +0 -0
  1003. /package/{dist → legacy/dist}/types/icons/24x24/LinkIcon.d.ts +0 -0
  1004. /package/{dist → legacy/dist}/types/icons/24x24/ListIcon.d.ts +0 -0
  1005. /package/{dist → legacy/dist}/types/icons/24x24/MailIcon.d.ts +0 -0
  1006. /package/{dist → legacy/dist}/types/icons/24x24/MigrateIcon.d.ts +0 -0
  1007. /package/{dist → legacy/dist}/types/icons/24x24/MinusIcon.d.ts +0 -0
  1008. /package/{dist → legacy/dist}/types/icons/24x24/ModelsIcon.d.ts +0 -0
  1009. /package/{dist → legacy/dist}/types/icons/24x24/MoreHorizontalIcon.d.ts +0 -0
  1010. /package/{dist → legacy/dist}/types/icons/24x24/NavigationIcon.d.ts +0 -0
  1011. /package/{dist → legacy/dist}/types/icons/24x24/NavigatorIcon.d.ts +0 -0
  1012. /package/{dist → legacy/dist}/types/icons/24x24/NextIcon.d.ts +0 -0
  1013. /package/{dist → legacy/dist}/types/icons/24x24/NoConnectionIcon.d.ts +0 -0
  1014. /package/{dist → legacy/dist}/types/icons/24x24/NotificationsIcon.d.ts +0 -0
  1015. /package/{dist → legacy/dist}/types/icons/24x24/OrdersIcon.d.ts +0 -0
  1016. /package/{dist → legacy/dist}/types/icons/24x24/PagesIcon.d.ts +0 -0
  1017. /package/{dist → legacy/dist}/types/icons/24x24/PermissionsIcon.d.ts +0 -0
  1018. /package/{dist → legacy/dist}/types/icons/24x24/PhotoIcon.d.ts +0 -0
  1019. /package/{dist → legacy/dist}/types/icons/24x24/PlayIcon.d.ts +0 -0
  1020. /package/{dist → legacy/dist}/types/icons/24x24/PlusIcon.d.ts +0 -0
  1021. /package/{dist → legacy/dist}/types/icons/24x24/PresetIcon.d.ts +0 -0
  1022. /package/{dist → legacy/dist}/types/icons/24x24/PreviousIcon.d.ts +0 -0
  1023. /package/{dist → legacy/dist}/types/icons/24x24/PrinterIcon.d.ts +0 -0
  1024. /package/{dist → legacy/dist}/types/icons/24x24/PrivacyIcon.d.ts +0 -0
  1025. /package/{dist → legacy/dist}/types/icons/24x24/ProcessIcon.d.ts +0 -0
  1026. /package/{dist → legacy/dist}/types/icons/24x24/ProductIcon.d.ts +0 -0
  1027. /package/{dist → legacy/dist}/types/icons/24x24/RefreshIcon.d.ts +0 -0
  1028. /package/{dist → legacy/dist}/types/icons/24x24/RemoveMemberIcon.d.ts +0 -0
  1029. /package/{dist → legacy/dist}/types/icons/24x24/ReplyIcon.d.ts +0 -0
  1030. /package/{dist → legacy/dist}/types/icons/24x24/SearchIcon.d.ts +0 -0
  1031. /package/{dist → legacy/dist}/types/icons/24x24/SettingsIcon.d.ts +0 -0
  1032. /package/{dist → legacy/dist}/types/icons/24x24/SnapshotsIcon.d.ts +0 -0
  1033. /package/{dist → legacy/dist}/types/icons/24x24/SortDownIcon.d.ts +0 -0
  1034. /package/{dist → legacy/dist}/types/icons/24x24/SortUpIcon.d.ts +0 -0
  1035. /package/{dist → legacy/dist}/types/icons/24x24/TasksIcon.d.ts +0 -0
  1036. /package/{dist → legacy/dist}/types/icons/24x24/TimeIcon.d.ts +0 -0
  1037. /package/{dist → legacy/dist}/types/icons/24x24/ToIcon.d.ts +0 -0
  1038. /package/{dist → legacy/dist}/types/icons/24x24/TransferIcon.d.ts +0 -0
  1039. /package/{dist → legacy/dist}/types/icons/24x24/TranslateIcon.d.ts +0 -0
  1040. /package/{dist → legacy/dist}/types/icons/24x24/TranslationIcon.d.ts +0 -0
  1041. /package/{dist → legacy/dist}/types/icons/24x24/WebsiteIcon.d.ts +0 -0
  1042. /package/{dist → legacy/dist}/types/icons/24x24/WifiIcon.d.ts +0 -0
  1043. /package/{dist → legacy/dist}/types/icons/24x24/index.d.ts +0 -0
  1044. /package/{dist → legacy/dist}/types/icons/32x32/AttributesLargeIcon.d.ts +0 -0
  1045. /package/{dist → legacy/dist}/types/icons/32x32/CustomerLargeIcon.d.ts +0 -0
  1046. /package/{dist → legacy/dist}/types/icons/32x32/DigitalLargeIcon.d.ts +0 -0
  1047. /package/{dist → legacy/dist}/types/icons/32x32/DiscountLargeIcon.d.ts +0 -0
  1048. /package/{dist → legacy/dist}/types/icons/32x32/FilteringLargeIcon.d.ts +0 -0
  1049. /package/{dist → legacy/dist}/types/icons/32x32/GiftCardLargeIcon.d.ts +0 -0
  1050. /package/{dist → legacy/dist}/types/icons/32x32/NavigationLargeIcon.d.ts +0 -0
  1051. /package/{dist → legacy/dist}/types/icons/32x32/NotesLargeIcon.d.ts +0 -0
  1052. /package/{dist → legacy/dist}/types/icons/32x32/OmnichannelLargeIcon.d.ts +0 -0
  1053. /package/{dist → legacy/dist}/types/icons/32x32/PermissionLargeIcon.d.ts +0 -0
  1054. /package/{dist → legacy/dist}/types/icons/32x32/ProductLargeIcon.d.ts +0 -0
  1055. /package/{dist → legacy/dist}/types/icons/32x32/SearchLargeIcon.d.ts +0 -0
  1056. /package/{dist → legacy/dist}/types/icons/32x32/ShippingLargeIcon.d.ts +0 -0
  1057. /package/{dist → legacy/dist}/types/icons/32x32/SiteSettingsLargeIcon.d.ts +0 -0
  1058. /package/{dist → legacy/dist}/types/icons/32x32/StaffMembersLargeIcon.d.ts +0 -0
  1059. /package/{dist → legacy/dist}/types/icons/32x32/TaxesLargeIcon.d.ts +0 -0
  1060. /package/{dist → legacy/dist}/types/icons/32x32/TokenLargeIcon.d.ts +0 -0
  1061. /package/{dist → legacy/dist}/types/icons/32x32/WarehouseLargeIcon.d.ts +0 -0
  1062. /package/{dist → legacy/dist}/types/icons/32x32/WifiLargeIcon.d.ts +0 -0
  1063. /package/{dist → legacy/dist}/types/icons/32x32/index.d.ts +0 -0
  1064. /package/{dist → legacy/dist}/types/icons/ArrowDropdownIcon.d.ts +0 -0
  1065. /package/{dist → legacy/dist}/types/icons/CheckboxCheckedIcon.d.ts +0 -0
  1066. /package/{dist → legacy/dist}/types/icons/CheckboxIcon.d.ts +0 -0
  1067. /package/{dist → legacy/dist}/types/icons/CheckboxIndeterminateIcon.d.ts +0 -0
  1068. /package/{dist → legacy/dist}/types/icons/CircleIndicatorIcon.d.ts +0 -0
  1069. /package/{dist → legacy/dist}/types/icons/CommentSmallIcon.d.ts +0 -0
  1070. /package/{dist → legacy/dist}/types/icons/CompleteIcon.d.ts +0 -0
  1071. /package/{dist → legacy/dist}/types/icons/CustomersLargeIcon.d.ts +0 -0
  1072. /package/{dist → legacy/dist}/types/icons/DeleteUserIcon.d.ts +0 -0
  1073. /package/{dist → legacy/dist}/types/icons/DigitalSmallIcon.d.ts +0 -0
  1074. /package/{dist → legacy/dist}/types/icons/EditSmallIcon.d.ts +0 -0
  1075. /package/{dist → legacy/dist}/types/icons/GiftCardLargeIcon.d.ts +0 -0
  1076. /package/{dist → legacy/dist}/types/icons/ImageIcon.d.ts +0 -0
  1077. /package/{dist → legacy/dist}/types/icons/InfoIcon.d.ts +0 -0
  1078. /package/{dist → legacy/dist}/types/icons/Logo.d.ts +0 -0
  1079. /package/{dist → legacy/dist}/types/icons/LogoDark.d.ts +0 -0
  1080. /package/{dist → legacy/dist}/types/icons/LogoLight.d.ts +0 -0
  1081. /package/{dist → legacy/dist}/types/icons/MoreIcon.d.ts +0 -0
  1082. /package/{dist → legacy/dist}/types/icons/NotAllowedIcon.d.ts +0 -0
  1083. /package/{dist → legacy/dist}/types/icons/NotAllowedInvertedIcon.d.ts +0 -0
  1084. /package/{dist → legacy/dist}/types/icons/RadioCheckedIcon.d.ts +0 -0
  1085. /package/{dist → legacy/dist}/types/icons/RadioIcon.d.ts +0 -0
  1086. /package/{dist → legacy/dist}/types/icons/SearchLargeIcon.d.ts +0 -0
  1087. /package/{dist → legacy/dist}/types/icons/SettingsLargeIcon.d.ts +0 -0
  1088. /package/{dist → legacy/dist}/types/icons/StaffMembersLargeIcon.d.ts +0 -0
  1089. /package/{dist → legacy/dist}/types/icons/SuccessCircleIndicatorIcon.d.ts +0 -0
  1090. /package/{dist → legacy/dist}/types/icons/WarningIcon.d.ts +0 -0
  1091. /package/{dist → legacy/dist}/types/icons/index.d.ts +0 -0
  1092. /package/{dist → legacy/dist}/types/icons/indicator/index.d.ts +0 -0
  1093. /package/{dist → legacy/dist}/types/icons/indicator/regular/index.d.ts +0 -0
  1094. /package/{dist → legacy/dist}/types/icons/indicator/small/index.d.ts +0 -0
  1095. /package/{dist → legacy/dist}/types/icons/styles.d.ts +0 -0
  1096. /package/{dist → legacy/dist}/types/icons/types.d.ts +0 -0
  1097. /package/{dist → legacy/dist}/types/index.d.ts +0 -0
  1098. /package/{dist → legacy/dist}/types/localStorageKeys.d.ts +0 -0
  1099. /package/{dist → legacy/dist}/types/theme/Baseline.d.ts +0 -0
  1100. /package/{dist → legacy/dist}/types/theme/ThemeProvider.d.ts +0 -0
  1101. /package/{dist → legacy/dist}/types/theme/context.d.ts +0 -0
  1102. /package/{dist → legacy/dist}/types/theme/createSaleorTheme/createSaleorTheme.d.ts +0 -0
  1103. /package/{dist → legacy/dist}/types/theme/createSaleorTheme/index.d.ts +0 -0
  1104. /package/{dist → legacy/dist}/types/theme/createSaleorTheme/overrides/buttons.d.ts +0 -0
  1105. /package/{dist → legacy/dist}/types/theme/createSaleorTheme/overrides/controls.d.ts +0 -0
  1106. /package/{dist → legacy/dist}/types/theme/createSaleorTheme/overrides/index.d.ts +0 -0
  1107. /package/{dist → legacy/dist}/types/theme/createSaleorTheme/overrides/inputs.d.ts +0 -0
  1108. /package/{dist → legacy/dist}/types/theme/createSaleorTheme/overrides/tables.d.ts +0 -0
  1109. /package/{dist → legacy/dist}/types/theme/createSaleorTheme/palette.d.ts +0 -0
  1110. /package/{dist → legacy/dist}/types/theme/createSaleorTheme/shadows.d.ts +0 -0
  1111. /package/{dist → legacy/dist}/types/theme/createSaleorTheme/types.d.ts +0 -0
  1112. /package/{dist → legacy/dist}/types/theme/index.d.ts +0 -0
  1113. /package/{dist → legacy/dist}/types/theme/styles.d.ts +0 -0
  1114. /package/{dist → legacy/dist}/types/theme/themes.d.ts +0 -0
  1115. /package/{dist → legacy/dist}/types/theme/types.d.ts +0 -0
  1116. /package/{dist → legacy/dist}/types/theme/utils.d.ts +0 -0
  1117. /package/{dist → legacy/dist}/types/theme/utils.test.d.ts +0 -0
  1118. /package/{dist → legacy/dist}/types/tools/index.d.ts +0 -0
  1119. /package/{dist → legacy/dist}/types/tools/useElementScroll.d.ts +0 -0
  1120. /package/{dist → legacy/dist}/types/tools/useLocalStorage.d.ts +0 -0
  1121. /package/{dist → legacy/dist}/types/tools/useTextWidth.d.ts +0 -0
  1122. /package/{dist → legacy/dist}/types/tools/useWindowScroll.d.ts +0 -0
  1123. /package/{dist → legacy/dist}/types/utils/Decorator.d.ts +0 -0
  1124. /package/{dist → legacy/dist}/types/utils/guideStyles.d.ts +0 -0
  1125. /package/{dist → legacy/dist}/types/utils/mergeRefs.d.ts +0 -0
  1126. /package/{dist → legacy/dist}/types/utils/useListStory.d.ts +0 -0
  1127. /package/{dist → legacy/dist}/types/utils/useMockAutocomplete.d.ts +0 -0
@@ -0,0 +1,98 @@
1
+ "use strict";var e1=Object.defineProperty;var s1=(e,s,t)=>s in e?e1(e,s,{enumerable:!0,configurable:!0,writable:!0,value:t}):e[s]=t;var $a=(e,s,t)=>(s1(e,typeof s!="symbol"?s+"":s,t),t);Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const r=require("react"),et=require("react-dom"),Oi=e=>e&&typeof e=="object"&&"default"in e?e:{default:e};function Ti(e){if(e&&e.__esModule)return e;const s=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(e){for(const t in e)if(t!=="default"){const o=Object.getOwnPropertyDescriptor(e,t);Object.defineProperty(s,t,o.get?o:{enumerable:!0,get:()=>e[t]})}}return s.default=e,Object.freeze(s)}const re=Oi(r),fe=Ti(r),t1=Ti(et),Ni=Oi(et);function o1(...e){const s=e.filter(t=>Boolean(t)&&t!==" ").map(t=>t==null?void 0:t.toString().trim());return s.length===0?void 0:s.join(" ")}function n1(e,s){let t=!1,o={},a={},n={};for(const i in e)if(i[0]==="_"&&i[1]==="_"){const l=i.substring(2);n[l]=e[i]}else s.properties.has(i)?(t=!0,o[i]=e[i]):a[i]=e[i];return{hasAtomProps:t,atomProps:o,otherProps:a,customProps:n}}function a1({atoms:e,defaultClassName:s}){const t=r.forwardRef(({as:o="div",className:a,style:n,...i},l)=>{const{atomProps:f,customProps:p,otherProps:d}=n1(i,e);return r.createElement(o,{ref:l,style:{...n,...p},...d,className:o1(a,e(f),s)})});return t.displayName="DessertBox",t}var Es={spacing:{0:"var(--mu-spacing-0)",1:"var(--mu-spacing-1)",2:"var(--mu-spacing-2)",3:"var(--mu-spacing-3)",4:"var(--mu-spacing-4)",5:"var(--mu-spacing-5)",6:"var(--mu-spacing-6)",7:"var(--mu-spacing-7)",8:"var(--mu-spacing-8)",9:"var(--mu-spacing-9)",10:"var(--mu-spacing-10)",11:"var(--mu-spacing-11)",12:"var(--mu-spacing-12)",14:"var(--mu-spacing-14)",16:"var(--mu-spacing-16)",20:"var(--mu-spacing-20)",24:"var(--mu-spacing-24)",28:"var(--mu-spacing-28)",32:"var(--mu-spacing-32)",36:"var(--mu-spacing-36)",40:"var(--mu-spacing-40)",44:"var(--mu-spacing-44)",48:"var(--mu-spacing-48)",52:"var(--mu-spacing-52)",px:"var(--mu-spacing-px)","0.5":"var(--mu-spacing-0-5)","1.5":"var(--mu-spacing-1-5)","2.5":"var(--mu-spacing-2-5)","3.5":"var(--mu-spacing-3-5)"},colors:{foreground:{textNeutralPlain:"var(--mu-colors-foreground-text-neutral-plain)",textNeutralDefault:"var(--mu-colors-foreground-text-neutral-default)",textNeutralSubdued:"var(--mu-colors-foreground-text-neutral-subdued)",textNeutralDisabled:"var(--mu-colors-foreground-text-neutral-disabled)",textNeutralContrasted:"var(--mu-colors-foreground-text-neutral-contrasted)",textBrandDefault:"var(--mu-colors-foreground-text-brand-default)",textBrandSubdued:"var(--mu-colors-foreground-text-brand-subdued)",textBrandDisabled:"var(--mu-colors-foreground-text-brand-disabled)",textCriticalDefault:"var(--mu-colors-foreground-text-critical-default)",textCriticalSubdued:"var(--mu-colors-foreground-text-critical-subdued)",textCriticalDisabled:"var(--mu-colors-foreground-text-critical-disabled)",iconNeutralPlain:"var(--mu-colors-foreground-icon-neutral-plain)",iconNeutralDefault:"var(--mu-colors-foreground-icon-neutral-default)",iconNeutralSubdued:"var(--mu-colors-foreground-icon-neutral-subdued)",iconNeutralDisabled:"var(--mu-colors-foreground-icon-neutral-disabled)",iconNeutralContrasted:"var(--mu-colors-foreground-icon-neutral-contrasted)",iconBrandDefault:"var(--mu-colors-foreground-icon-brand-default)",iconBrandSubdued:"var(--mu-colors-foreground-icon-brand-subdued)",iconBrandDisabled:"var(--mu-colors-foreground-icon-brand-disabled)",iconCriticalDefault:"var(--mu-colors-foreground-icon-critical-default)",iconCriticalSubdued:"var(--mu-colors-foreground-icon-critical-subdued)",iconCriticalDisabled:"var(--mu-colors-foreground-icon-critical-disabled)",text1Decorative:"var(--mu-colors-foreground-text1-decorative)",text2Decorative:"var(--mu-colors-foreground-text2-decorative)",text3Decorative:"var(--mu-colors-foreground-text3-decorative)",icon1Decorative:"var(--mu-colors-foreground-icon1-decorative)",icon2Decorative:"var(--mu-colors-foreground-icon2-decorative)",icon3Decorative:"var(--mu-colors-foreground-icon3-decorative)"},background:{plain:"var(--mu-colors-background-plain)",subdued:"var(--mu-colors-background-subdued)",highlightDim:"var(--mu-colors-background-highlight-dim)",highlightPale:"var(--mu-colors-background-highlight-pale)",surfaceNeutralPlain:"var(--mu-colors-background-surface-neutral-plain)",surfaceNeutralSubdued:"var(--mu-colors-background-surface-neutral-subdued)",surfaceNeutralDepressed:"var(--mu-colors-background-surface-neutral-depressed)",surfaceNeutralHighlight:"var(--mu-colors-background-surface-neutral-highlight)",surfaceBrandSubdued:"var(--mu-colors-background-surface-brand-subdued)",surfaceBrandDepressed:"var(--mu-colors-background-surface-brand-depressed)",surfaceBrandHighlight:"var(--mu-colors-background-surface-brand-highlight)",surfaceCriticalSubdued:"var(--mu-colors-background-surface-critical-subdued)",surfaceCriticalDepressed:"var(--mu-colors-background-surface-critical-depressed)",surfaceCriticalHighlight:"var(--mu-colors-background-surface-critical-highlight)",interactiveNeutralDefault:"var(--mu-colors-background-interactive-neutral-default)",interactiveNeutralHovering:"var(--mu-colors-background-interactive-neutral-hovering)",interactiveNeutralPressing:"var(--mu-colors-background-interactive-neutral-pressing)",interactiveNeutralFocused:"var(--mu-colors-background-interactive-neutral-focused)",interactiveNeutralDisabled:"var(--mu-colors-background-interactive-neutral-disabled)",interactiveBrandDefault:"var(--mu-colors-background-interactive-brand-default)",interactiveBrandHovering:"var(--mu-colors-background-interactive-brand-hovering)",interactiveBrandPressing:"var(--mu-colors-background-interactive-brand-pressing)",interactiveBrandFocused:"var(--mu-colors-background-interactive-brand-focused)",interactiveBrandDisabled:"var(--mu-colors-background-interactive-brand-disabled)",interactiveCriticalDefault:"var(--mu-colors-background-interactive-critical-default)",interactiveCriticalHovering:"var(--mu-colors-background-interactive-critical-hovering)",interactiveCriticalPressing:"var(--mu-colors-background-interactive-critical-pressing)",interactiveCriticalFocused:"var(--mu-colors-background-interactive-critical-focused)",interactiveCriticalDisabled:"var(--mu-colors-background-interactive-critical-disabled)",interactiveNeutralSecondaryDefault:"var(--mu-colors-background-interactive-neutral-secondary-default)",interactiveNeutralSecondaryHovering:"var(--mu-colors-background-interactive-neutral-secondary-hovering)",interactiveNeutralSecondaryPressing:"var(--mu-colors-background-interactive-neutral-secondary-pressing)",interactiveNeutralSecondaryFocused:"var(--mu-colors-background-interactive-neutral-secondary-focused)",interactiveNeutralSecondaryDisabled:"var(--mu-colors-background-interactive-neutral-secondary-disabled)",interactiveBrandSecondaryDefault:"var(--mu-colors-background-interactive-brand-secondary-default)",interactiveBrandSecondaryHovering:"var(--mu-colors-background-interactive-brand-secondary-hovering)",interactiveBrandSecondaryPressing:"var(--mu-colors-background-interactive-brand-secondary-pressing)",interactiveBrandSecondaryFocused:"var(--mu-colors-background-interactive-brand-secondary-focused)",interactiveBrandSecondaryDisabled:"var(--mu-colors-background-interactive-brand-secondary-disabled)",interactiveCriticalSecondaryDefault:"var(--mu-colors-background-interactive-critical-secondary-default)",interactiveCriticalSecondaryHovering:"var(--mu-colors-background-interactive-critical-secondary-hovering)",interactiveCriticalSecondaryPressing:"var(--mu-colors-background-interactive-critical-secondary-pressing)",interactiveCriticalSecondaryFocused:"var(--mu-colors-background-interactive-critical-secondary-focused)",interactiveCriticalSecondaryDisabled:"var(--mu-colors-background-interactive-critical-secondary-disabled)",interactiveNeutralHighlightDefault:"var(--mu-colors-background-interactive-neutral-highlight-default)",interactiveNeutralHighlightHovering:"var(--mu-colors-background-interactive-neutral-highlight-hovering)",interactiveNeutralHighlightPressing:"var(--mu-colors-background-interactive-neutral-highlight-pressing)",interactiveNeutralHighlightFocused:"var(--mu-colors-background-interactive-neutral-highlight-focused)",interactiveNeutralHighlightDisabled:"var(--mu-colors-background-interactive-neutral-highlight-disabled)",interactiveBrandHighlightDefault:"var(--mu-colors-background-interactive-brand-highlight-default)",interactiveBrandHighlightHovering:"var(--mu-colors-background-interactive-brand-highlight-hovering)",interactiveBrandHighlightPressing:"var(--mu-colors-background-interactive-brand-highlight-pressing)",interactiveBrandHighlightFocused:"var(--mu-colors-background-interactive-brand-highlight-focused)",interactiveBrandHighlightDisabled:"var(--mu-colors-background-interactive-brand-highlight-disabled)",interactiveCriticalHighlightDefault:"var(--mu-colors-background-interactive-critical-highlight-default)",interactiveCriticalHighlightHovering:"var(--mu-colors-background-interactive-critical-highlight-hovering)",interactiveCriticalHighlightPressing:"var(--mu-colors-background-interactive-critical-highlight-pressing)",interactiveCriticalHighlightFocused:"var(--mu-colors-background-interactive-critical-highlight-focused)",interactiveCriticalHighlightDisabled:"var(--mu-colors-background-interactive-critical-highlight-disabled)",decorativeSurfacePlain1:"var(--mu-colors-background-decorative-surface-plain1)",decorativeSurfacePlain2:"var(--mu-colors-background-decorative-surface-plain2)",decorativeSurfacePlain3:"var(--mu-colors-background-decorative-surface-plain3)",decorativeSurfaceSubdued1:"var(--mu-colors-background-decorative-surface-subdued1)",decorativeSurfaceSubdued2:"var(--mu-colors-background-decorative-surface-subdued2)",decorativeSurfaceSubdued3:"var(--mu-colors-background-decorative-surface-subdued3)"},border:{neutralDefault:"var(--mu-colors-border-neutral-default)",neutralSubdued:"var(--mu-colors-border-neutral-subdued)",neutralHighlight:"var(--mu-colors-border-neutral-highlight)",neutralPlain:"var(--mu-colors-border-neutral-plain)",brandPlain:"var(--mu-colors-border-brand-plain)",brandDefault:"var(--mu-colors-border-brand-default)",brandSubdued:"var(--mu-colors-border-brand-subdued)",brandHighlight:"var(--mu-colors-border-brand-highlight)",criticalPlain:"var(--mu-colors-border-critical-plain)",criticalDefault:"var(--mu-colors-border-critical-default)",criticalSubdued:"var(--mu-colors-border-critical-subdued)",criticalHighlight:"var(--mu-colors-border-critical-highlight)"}},fontSize:{heroLarge:"var(--mu-font-size-hero-large)",heroMedium:"var(--mu-font-size-hero-medium)",heroSmall:"var(--mu-font-size-hero-small)",titleLarge:"var(--mu-font-size-title-large)",titleMedium:"var(--mu-font-size-title-medium)",titleSmall:"var(--mu-font-size-title-small)",headingLarge:"var(--mu-font-size-heading-large)",headingMedium:"var(--mu-font-size-heading-medium)",headingSmall:"var(--mu-font-size-heading-small)",bodyStrongLarge:"var(--mu-font-size-body-strong-large)",bodyStrongMedium:"var(--mu-font-size-body-strong-medium)",bodyStrongSmall:"var(--mu-font-size-body-strong-small)",bodyEmpLarge:"var(--mu-font-size-body-emp-large)",bodyEmpMedium:"var(--mu-font-size-body-emp-medium)",bodyEmpSmall:"var(--mu-font-size-body-emp-small)",bodyLarge:"var(--mu-font-size-body-large)",bodyMedium:"var(--mu-font-size-body-medium)",bodySmall:"var(--mu-font-size-body-small)",buttonLarge:"var(--mu-font-size-button-large)",buttonMedium:"var(--mu-font-size-button-medium)",buttonSmall:"var(--mu-font-size-button-small)",captionLarge:"var(--mu-font-size-caption-large)",captionMedium:"var(--mu-font-size-caption-medium)",captionSmall:"var(--mu-font-size-caption-small)"},borderRadius:{1:"var(--mu-border-radius-1)",2:"var(--mu-border-radius-2)",3:"var(--mu-border-radius-3)",4:"var(--mu-border-radius-4)",5:"var(--mu-border-radius-5)",6:"var(--mu-border-radius-6)",7:"var(--mu-border-radius-7)",8:"var(--mu-border-radius-8)",9:"var(--mu-border-radius-9)"},lineHeight:{1:"var(--mu-line-height-1)",heroLarge:"var(--mu-line-height-hero-large)",heroMedium:"var(--mu-line-height-hero-medium)",heroSmall:"var(--mu-line-height-hero-small)",titleLarge:"var(--mu-line-height-title-large)",titleMedium:"var(--mu-line-height-title-medium)",titleSmall:"var(--mu-line-height-title-small)",headingLarge:"var(--mu-line-height-heading-large)",headingMedium:"var(--mu-line-height-heading-medium)",headingSmall:"var(--mu-line-height-heading-small)",bodyStrongLarge:"var(--mu-line-height-body-strong-large)",bodyStrongMedium:"var(--mu-line-height-body-strong-medium)",bodyStrongSmall:"var(--mu-line-height-body-strong-small)",bodyEmpLarge:"var(--mu-line-height-body-emp-large)",bodyEmpMedium:"var(--mu-line-height-body-emp-medium)",bodyEmpSmall:"var(--mu-line-height-body-emp-small)",bodyLarge:"var(--mu-line-height-body-large)",bodyMedium:"var(--mu-line-height-body-medium)",bodySmall:"var(--mu-line-height-body-small)",buttonLarge:"var(--mu-line-height-button-large)",buttonMedium:"var(--mu-line-height-button-medium)",buttonSmall:"var(--mu-line-height-button-small)",captionLarge:"var(--mu-line-height-caption-large)",captionMedium:"var(--mu-line-height-caption-medium)",captionSmall:"var(--mu-line-height-caption-small)"},fontWeight:{heroLarge:"var(--mu-font-weight-hero-large)",heroMedium:"var(--mu-font-weight-hero-medium)",heroSmall:"var(--mu-font-weight-hero-small)",titleLarge:"var(--mu-font-weight-title-large)",titleMedium:"var(--mu-font-weight-title-medium)",titleSmall:"var(--mu-font-weight-title-small)",headingLarge:"var(--mu-font-weight-heading-large)",headingMedium:"var(--mu-font-weight-heading-medium)",headingSmall:"var(--mu-font-weight-heading-small)",bodyStrongLarge:"var(--mu-font-weight-body-strong-large)",bodyStrongMedium:"var(--mu-font-weight-body-strong-medium)",bodyStrongSmall:"var(--mu-font-weight-body-strong-small)",bodyEmpLarge:"var(--mu-font-weight-body-emp-large)",bodyEmpMedium:"var(--mu-font-weight-body-emp-medium)",bodyEmpSmall:"var(--mu-font-weight-body-emp-small)",bodyLarge:"var(--mu-font-weight-body-large)",bodyMedium:"var(--mu-font-weight-body-medium)",bodySmall:"var(--mu-font-weight-body-small)",buttonLarge:"var(--mu-font-weight-button-large)",buttonMedium:"var(--mu-font-weight-button-medium)",buttonSmall:"var(--mu-font-weight-button-small)",captionLarge:"var(--mu-font-weight-caption-large)",captionMedium:"var(--mu-font-weight-caption-medium)",captionSmall:"var(--mu-font-weight-caption-small)"},letterSpacing:{heroLarge:"var(--mu-letter-spacing-hero-large)",heroMedium:"var(--mu-letter-spacing-hero-medium)",heroSmall:"var(--mu-letter-spacing-hero-small)",titleLarge:"var(--mu-letter-spacing-title-large)",titleMedium:"var(--mu-letter-spacing-title-medium)",titleSmall:"var(--mu-letter-spacing-title-small)",headingLarge:"var(--mu-letter-spacing-heading-large)",headingMedium:"var(--mu-letter-spacing-heading-medium)",headingSmall:"var(--mu-letter-spacing-heading-small)",bodyStrongLarge:"var(--mu-letter-spacing-body-strong-large)",bodyStrongMedium:"var(--mu-letter-spacing-body-strong-medium)",bodyStrongSmall:"var(--mu-letter-spacing-body-strong-small)",bodyEmpLarge:"var(--mu-letter-spacing-body-emp-large)",bodyEmpMedium:"var(--mu-letter-spacing-body-emp-medium)",bodyEmpSmall:"var(--mu-letter-spacing-body-emp-small)",bodyLarge:"var(--mu-letter-spacing-body-large)",bodyMedium:"var(--mu-letter-spacing-body-medium)",bodySmall:"var(--mu-letter-spacing-body-small)",buttonLarge:"var(--mu-letter-spacing-button-large)",buttonMedium:"var(--mu-letter-spacing-button-medium)",buttonSmall:"var(--mu-letter-spacing-button-small)",captionLarge:"var(--mu-letter-spacing-caption-large)",captionMedium:"var(--mu-letter-spacing-caption-medium)",captionSmall:"var(--mu-letter-spacing-caption-small)"},boxShadow:{interactiveDefaultFocused:"var(--mu-box-shadow-interactive-default-focused)",interactiveDefaultHovering:"var(--mu-box-shadow-interactive-default-hovering)",overlay:"var(--mu-box-shadow-overlay)",modal:"var(--mu-box-shadow-modal)"},borderWidth:{0:"var(--mu-border-width-0)",1:"var(--mu-border-width-1)"}};function Eo(e){var s=e.match(/^var\((.*)\)$/);return s?s[1]:e}function Mi(e,s){var t=e;for(var o of s){if(!(o in t))throw new Error("Path ".concat(s.join(" -> ")," does not exist in object"));t=t[o]}return t}function Ko(e,s){var t=arguments.length>2&&arguments[2]!==void 0?arguments[2]:[],o=e.constructor();for(var a in e){var n=e[a],i=[...t,a];typeof n=="string"||typeof n=="number"||n==null?o[a]=s(n,i):typeof n=="object"&&!Array.isArray(n)?o[a]=Ko(n,s,i):console.warn('Skipping invalid key "'.concat(i.join("."),'". Should be a string, number, null or object. Received: "').concat(Array.isArray(n)?"Array":typeof n,'"'))}return o}function i1(e,s){var t={};if(typeof s=="object"){var o=e;Ko(s,(i,l)=>{var f=Mi(o,l);t[Eo(f)]=String(i)})}else{var a=e;for(var n in a)t[Eo(n)]=a[n]}return Object.defineProperty(t,"toString",{value:function(){return Object.keys(this).map(l=>"".concat(l,":").concat(this[l])).join(";")},writable:!1}),t}function Ea(e,s,t){e.style.setProperty(Eo(s),t)}function r1(e,s,t){if(typeof t=="object"){var o=s;Ko(t,(i,l)=>{Ea(e,Mi(o,l),String(i))})}else{var a=s;for(var n in a)Ea(e,n,a[n])}}const Ai={0:"0px",px:"1px",.5:"2px",1:"4px",1.5:"6px",2:"8px",2.5:"10px",3:"12px",3.5:"14px",4:"16px",5:"20px",6:"24px",7:"28px",8:"32px",9:"36px",10:"40px",11:"44px",12:"48px",14:"56px",16:"64px",20:"80px",24:"96px",28:"112px",32:"128px",36:"144px",40:"160px",44:"176px",48:"192px",52:"208px"},Li={heroLarge:"34px",heroMedium:"28px",heroSmall:"24px",titleLarge:"22px",titleMedium:"20px",titleSmall:"18px",headingLarge:"18px",headingMedium:"16px",headingSmall:"14px",bodyStrongLarge:"16px",bodyStrongMedium:"14px",bodyStrongSmall:"13px",bodyEmpLarge:"16px",bodyEmpMedium:"14px",bodyEmpSmall:"13px",bodyLarge:"16px",bodyMedium:"14px",bodySmall:"13px",buttonLarge:"16px",buttonMedium:"14px",buttonSmall:"13px",captionLarge:"13px",captionMedium:"12px",captionSmall:"11px"},Vi={1:"2px",2:"4px",3:"6px",4:"8px",5:"12px",6:"14px",7:"16px",8:"18px",9:"20px"},Hi={1:"1",heroLarge:"40px",heroMedium:"36px",heroSmall:"30px",titleLarge:"28px",titleMedium:"26px",titleSmall:"24px",headingLarge:"24px",headingMedium:"22px",headingSmall:"18px",bodyStrongLarge:"24px",bodyStrongMedium:"22px",bodyStrongSmall:"20px",bodyEmpLarge:"24px",bodyEmpMedium:"22px",bodyEmpSmall:"20px",bodyLarge:"24px",bodyMedium:"22px",bodySmall:"20px",buttonLarge:"24px",buttonMedium:"22px",buttonSmall:"20px",captionLarge:"20px",captionMedium:"18px",captionSmall:"16px"},ji={heroLarge:"580",heroMedium:"580",heroSmall:"500",titleLarge:"380",titleMedium:"380",titleSmall:"380",headingLarge:"600",headingMedium:"600",headingSmall:"600",bodyStrongLarge:"600",bodyStrongMedium:"600",bodyStrongSmall:"600",bodyEmpLarge:"500",bodyEmpMedium:"500",bodyEmpSmall:"500",bodyLarge:"440",bodyMedium:"440",bodySmall:"440",buttonLarge:"580",buttonMedium:"580",buttonSmall:"580",captionLarge:"380",captionMedium:"440",captionSmall:"480"},Fi={heroLarge:"-0.01em",heroMedium:"-0.01em",heroSmall:"-0.01em",titleLarge:"normal",titleMedium:"normal",titleSmall:"normal",headingLarge:"normal",headingMedium:"normal",headingSmall:"0.01em",bodyStrongLarge:"0.01em",bodyStrongMedium:"0.01em",bodyStrongSmall:"0.015em",bodyEmpLarge:"0.01em",bodyEmpMedium:"0.01em",bodyEmpSmall:"0.015em",bodyLarge:"0.01em",bodyMedium:"0.01em",bodySmall:"0.015em",buttonLarge:"0.02em",buttonMedium:"0.02em",buttonSmall:"0.025em",captionLarge:"0.01em",captionMedium:"0.015em",captionSmall:"0.025em"},Bi={0:"0px",1:"1px"},l1={spacing:Ai,colors:{foreground:{textNeutralPlain:"hsla(210, 25%, 84%, 1)",textNeutralDefault:"hsla(0, 0%, 100%, 1)",textNeutralSubdued:"hsla(230, 10%, 53%, 1)",textNeutralDisabled:"hsla(212, 19%, 39%, 1)",textNeutralContrasted:"hsla(212, 44%, 13%, 1)",textBrandDefault:"hsla(215, 100%, 83%, 1)",textBrandSubdued:"hsla(215, 70%, 51%, 1)",textBrandDisabled:"hsla(215, 87%, 42%, 1)",textCriticalDefault:"hsla(11, 100%, 82%, 1)",textCriticalSubdued:"hsla(11, 100%, 58%, 1)",textCriticalDisabled:"hsla(11, 100%, 37%, 1)",iconNeutralPlain:"hsla(211, 18%, 70%, 1)",iconNeutralDefault:"hsla(0, 0%, 100%, 1)",iconNeutralSubdued:"hsla(231, 10%, 41%, 1)",iconNeutralDisabled:"hsla(212, 25%, 34%, 1)",iconNeutralContrasted:"hsla(211, 44%, 13%, 1)",iconBrandDefault:"hsla(215, 100%, 73%, 1)",iconBrandSubdued:"hsla(215, 83%, 52%, 1)",iconBrandDisabled:"hsla(215, 100%, 41%, 1)",iconCriticalDefault:"hsla(11, 100%, 72%, 1)",iconCriticalSubdued:"hsla(11, 100%, 45%, 1)",iconCriticalDisabled:"hsla(11, 100%, 37%, 1)",text1Decorative:"hsla(281, 99%, 89%, 1)",text2Decorative:"hsla(173, 79%, 62%, 1)",text3Decorative:"hsla(234, 100%, 90%, 1)",icon1Decorative:"hsla(281, 99%, 79%, 1)",icon2Decorative:"hsla(173, 100%, 39%, 1)",icon3Decorative:"hsla(234, 91%, 81%, 1)"},background:{plain:"hsla(232, 17%, 18%, 1)",subdued:"hsla(231, 17%, 16%, 1)",highlightDim:"hsla(0, 0%, 0%, 0.6)",highlightPale:"hsla(211, 42%, 16%, 0.6)",surfaceNeutralPlain:"hsla(232, 17%, 18%, 1)",surfaceNeutralSubdued:"hsla(211, 42%, 14%, 1)",surfaceNeutralDepressed:"hsla(211, 42%, 12%, 1)",surfaceNeutralHighlight:"hsla(0, 0%, 100%, 0.04)",surfaceBrandSubdued:"hsla(215, 100%, 21%, 1)",surfaceBrandDepressed:"hsla(215, 100%, 27%, 1)",surfaceBrandHighlight:"hsla(215, 100%, 51%, 0.12)",surfaceCriticalSubdued:"hsla(11, 81%, 19%, 1)",surfaceCriticalDepressed:"hsla(11, 100%, 25%, 1)",surfaceCriticalHighlight:"hsla(11, 100%, 46%, 0.18)",interactiveNeutralDefault:"hsla(0, 0%, 100%, 1)",interactiveNeutralHovering:"hsla(211, 24%, 86%, 1)",interactiveNeutralPressing:"hsla(211, 16%, 68%, 1)",interactiveNeutralFocused:"hsla(210, 24%, 86%, 1)",interactiveNeutralDisabled:"hsla(211, 32%, 21%, 1)",interactiveBrandDefault:"hsla(215, 100%, 62%, 1)",interactiveBrandHovering:"hsla(215, 100%, 50%, 1)",interactiveBrandPressing:"hsla(215, 100%, 31%, 1)",interactiveBrandFocused:"hsla(215, 100%, 62%, 1)",interactiveBrandDisabled:"hsla(211, 33%, 21%, 1)",interactiveCriticalDefault:"hsla(11, 100%, 56%, 1)",interactiveCriticalHovering:"hsla(11, 100%, 42%, 1)",interactiveCriticalPressing:"hsla(11, 100%, 29%, 1)",interactiveCriticalFocused:"hsla(11, 100%, 42%, 1)",interactiveCriticalDisabled:"hsla(211, 33%, 21%, 1)",interactiveNeutralSecondaryDefault:"hsla(211, 42%, 16%, 1)",interactiveNeutralSecondaryHovering:"hsla(211, 32%, 19%, 1)",interactiveNeutralSecondaryPressing:"hsla(211, 24%, 26%, 1)",interactiveNeutralSecondaryFocused:"hsla(211, 32%, 19%, 1)",interactiveNeutralSecondaryDisabled:"hsla(211, 42%, 16%, 1)",interactiveBrandSecondaryDefault:"hsla(211, 42%, 16%, 1)",interactiveBrandSecondaryHovering:"hsla(215, 100%, 18%, 1)",interactiveBrandSecondaryPressing:"hsla(215, 100%, 27%, 1)",interactiveBrandSecondaryFocused:"hsla(215, 100%, 18%, 1)",interactiveBrandSecondaryDisabled:"hsla(211, 42%, 16%, 1)",interactiveCriticalSecondaryDefault:"hsla(211, 42%, 16%, 1)",interactiveCriticalSecondaryHovering:"hsla(11, 100%, 16%, 1)",interactiveCriticalSecondaryPressing:"hsla(11, 100%, 24%, 1)",interactiveCriticalSecondaryFocused:"hsla(11, 100%, 16%, 1)",interactiveCriticalSecondaryDisabled:"hsla(211, 42%, 16%, 1)",interactiveNeutralHighlightDefault:"hsla(180, 4%, 15%, 0)",interactiveNeutralHighlightHovering:"hsla(0, 0%, 100%, 0.06)",interactiveNeutralHighlightPressing:"hsla(0, 0%, 100%, 0.12)",interactiveNeutralHighlightFocused:"hsla(0, 0%, 100%, 0.06)",interactiveNeutralHighlightDisabled:"hsla(0, 0%, 100%, 0)",interactiveBrandHighlightDefault:"hsla(215, 100%, 51%, 0)",interactiveBrandHighlightHovering:"hsla(215, 100%, 51%, 0.16)",interactiveBrandHighlightPressing:"hsla(215, 100%, 51%, 0.32)",interactiveBrandHighlightFocused:"hsla(215, 100%, 51%, 0.16)",interactiveBrandHighlightDisabled:"hsla(215, 100%, 51%, 0)",interactiveCriticalHighlightDefault:"hsla(212, 44%, 13%, 0)",interactiveCriticalHighlightHovering:"hsla(11, 100%, 46%, 0.2)",interactiveCriticalHighlightPressing:"hsla(11, 100%, 46%, 0.32)",interactiveCriticalHighlightFocused:"hsla(11, 100%, 46%, 0.2)",interactiveCriticalHighlightDisabled:"hsla(11, 100%, 46%, 0)",decorativeSurfacePlain1:"hsla(281, 99%, 68%, 1)",decorativeSurfacePlain2:"hsla(173, 100%, 32%, 1)",decorativeSurfacePlain3:"hsla(234, 100%, 73%, 1)",decorativeSurfaceSubdued1:"hsla(281, 88%, 30%, 1)",decorativeSurfaceSubdued2:"hsla(173, 43%, 19%, 1)",decorativeSurfaceSubdued3:"hsla(234, 67%, 39%, 1)"},border:{neutralPlain:"hsla(231, 18%, 23%, 1)",neutralDefault:"hsla(212, 24%, 32%, 1)",neutralSubdued:"hsla(211, 21%, 39%, 1)",neutralHighlight:"hsla(0, 0%, 100%, 0.04)",brandPlain:"hsla(215, 100%, 28%, 1)",brandDefault:"hsla(215, 100%, 39%, 1)",brandSubdued:"hsla(215, 94%, 51%, 1)",brandHighlight:"hsla(215, 100%, 51%, 0.12)",criticalPlain:"hsla(11, 100%, 25%, 1)",criticalDefault:"hsla(11, 100%, 35%, 1)",criticalSubdued:"hsla(11, 100%, 45%, 1)",criticalHighlight:"hsla(11, 100%, 46%, 0.18)"}},fontSize:Li,borderRadius:Vi,lineHeight:Hi,fontWeight:ji,letterSpacing:Fi,boxShadow:{interactiveDefaultFocused:"0px 1px 1px 0px hsla(0, 0%, 0%, 0.32)",interactiveDefaultHovering:"0px 2px 3px 0px hsla(0, 0%, 0%, 0.28)",overlay:"0px 3px 8px 0px hsla(0, 0%, 0%, 0.24)",modal:"0px 8px 16px 0px hsla(0, 0%, 0%, 0.2)"},borderWidth:Bi},f1={spacing:Ai,colors:{foreground:{textNeutralPlain:"hsla(210, 25%, 26%, 1)",textNeutralDefault:"hsla(180, 4%, 15%, 1)",textNeutralSubdued:"hsla(180, 1%, 49%, 1)",textNeutralDisabled:"hsla(212, 14%, 67%, 1)",textNeutralContrasted:"hsla(0, 0%, 100%, 1)",textBrandDefault:"hsla(215, 100%, 32%, 1)",textBrandSubdued:"hsla(215, 58%, 51%, 1)",textBrandDisabled:"hsla(215, 100%, 72%, 1)",textCriticalDefault:"hsla(11, 100%, 29%, 1)",textCriticalSubdued:"hsla(11, 100%, 45%, 1)",textCriticalDisabled:"hsla(11, 100%, 71%, 1)",iconNeutralPlain:"hsla(211, 18%, 36%, 1)",iconNeutralDefault:"hsla(180, 4%, 15%, 1)",iconNeutralSubdued:"hsla(180, 1%, 49%, 1)",iconNeutralDisabled:"hsla(212, 14%, 75%, 1)",iconNeutralContrasted:"hsla(0, 0%, 100%, 1)",iconBrandDefault:"hsla(215, 100%, 40%, 1)",iconBrandSubdued:"hsla(215, 83%, 61%, 1)",iconBrandDisabled:"hsla(215, 100%, 72%, 1)",iconCriticalDefault:"hsla(11, 100%, 36%, 1)",iconCriticalSubdued:"hsla(11, 100%, 57%, 1)",iconCriticalDisabled:"hsla(11, 100%, 72%, 1)",text1Decorative:"hsla(281, 99%, 31%, 1)",text2Decorative:"hsla(173, 97%, 15%, 1)",text3Decorative:"hsla(234, 100%, 42%, 1)",icon1Decorative:"hsla(281, 99%, 41%, 1)",icon2Decorative:"hsla(173, 100%, 20%, 1)",icon3Decorative:"hsla(234, 96%, 56%, 1)"},background:{plain:"hsla(0, 0%, 100%, 1)",subdued:"hsla(120, 11%, 98%, 1)",highlightDim:"hsla(0, 0%, 0%, 0.6)",highlightPale:"hsla(0, 0%, 100%, 0.6)",surfaceNeutralPlain:"hsla(0, 0%, 100%, 1)",surfaceNeutralSubdued:"hsla(120, 11%, 98%, 1)",surfaceNeutralDepressed:"hsla(180, 1%, 85%, 1)",surfaceNeutralHighlight:"hsla(212, 44%, 13%, 0.06)",surfaceBrandSubdued:"hsla(215, 100%, 96%, 1)",surfaceBrandDepressed:"hsla(215, 100%, 88%, 1)",surfaceBrandHighlight:"hsla(215, 100%, 51%, 0.08)",surfaceCriticalSubdued:"hsla(11, 100%, 96%, 1)",surfaceCriticalDepressed:"hsla(11, 100%, 88%, 1)",surfaceCriticalHighlight:"hsla(11, 100%, 46%, 0.08)",interactiveNeutralDefault:"hsla(211, 45%, 13%, 1)",interactiveNeutralHovering:"hsla(211, 22%, 26%, 1)",interactiveNeutralPressing:"hsla(211, 45%, 3%, 1)",interactiveNeutralFocused:"hsla(211, 22%, 26%, 1)",interactiveNeutralDisabled:"hsla(211, 16%, 94%, 1)",interactiveBrandDefault:"hsla(215, 100%, 51%, 1)",interactiveBrandHovering:"hsla(215, 100%, 62%, 1)",interactiveBrandPressing:"hsla(215, 100%, 31%, 1)",interactiveBrandFocused:"hsla(215, 100%, 62%, 1)",interactiveBrandDisabled:"hsla(211, 16%, 94%, 1)",interactiveCriticalDefault:"hsla(11, 100%, 46%, 1)",interactiveCriticalHovering:"hsla(11, 100%, 63%, 1)",interactiveCriticalPressing:"hsla(11, 100%, 29%, 1)",interactiveCriticalFocused:"hsla(11, 100%, 63%, 1)",interactiveCriticalDisabled:"hsla(204, 16%, 94%, 1)",interactiveNeutralSecondaryDefault:"hsla(0, 0%, 100%, 1)",interactiveNeutralSecondaryHovering:"hsla(220, 18%, 97%, 1)",interactiveNeutralSecondaryPressing:"hsla(210, 15%, 87%, 1)",interactiveNeutralSecondaryFocused:"hsla(220, 18%, 97%, 1)",interactiveNeutralSecondaryDisabled:"hsla(0, 0%, 100%, 1)",interactiveBrandSecondaryDefault:"hsla(0, 0%, 100%, 1)",interactiveBrandSecondaryHovering:"hsla(215, 100%, 96%, 1)",interactiveBrandSecondaryPressing:"hsla(215, 100%, 89%, 1)",interactiveBrandSecondaryFocused:"hsla(215, 100%, 96%, 1)",interactiveBrandSecondaryDisabled:"hsla(0, 0%, 100%, 1)",interactiveCriticalSecondaryDefault:"hsla(0, 0%, 100%, 1)",interactiveCriticalSecondaryHovering:"hsla(11, 100%, 97%, 1)",interactiveCriticalSecondaryPressing:"hsla(11, 100%, 90%, 1)",interactiveCriticalSecondaryFocused:"hsla(11, 100%, 97%, 1)",interactiveCriticalSecondaryDisabled:"hsla(0, 0%, 100%, 1)",interactiveNeutralHighlightDefault:"hsla(180, 4%, 15%, 0)",interactiveNeutralHighlightHovering:"hsla(180, 4%, 15%, 0.06)",interactiveNeutralHighlightPressing:"hsla(180, 4%, 15%, 0.12)",interactiveNeutralHighlightFocused:"hsla(180, 4%, 15%, 0.08)",interactiveNeutralHighlightDisabled:"hsla(212, 44%, 13%, 0)",interactiveBrandHighlightDefault:"hsla(212, 44%, 13%, 0.08)",interactiveBrandHighlightHovering:"hsla(215, 100%, 51%, 0.12)",interactiveBrandHighlightPressing:"hsla(215, 100%, 51%, 0.24)",interactiveBrandHighlightFocused:"hsla(215, 100%, 51%, 0.12)",interactiveBrandHighlightDisabled:"hsla(212, 44%, 13%, 0)",interactiveCriticalHighlightDefault:"hsla(11, 100%, 46%, 0)",interactiveCriticalHighlightHovering:"hsla(11, 100%, 46%, 0.12)",interactiveCriticalHighlightPressing:"hsla(11, 100%, 46%, 0.2)",interactiveCriticalHighlightFocused:"hsla(11, 100%, 46%, 0.12)",interactiveCriticalHighlightDisabled:"hsla(11, 100%, 46%, 0)",decorativeSurfacePlain1:"hsla(281, 99%, 56%, 1)",decorativeSurfacePlain2:"hsla(173, 100%, 26%, 1)",decorativeSurfacePlain3:"hsla(234, 100%, 66%, 1)",decorativeSurfaceSubdued1:"hsla(281, 88%, 90%, 1)",decorativeSurfaceSubdued2:"hsla(173, 43%, 80%, 1)",decorativeSurfaceSubdued3:"hsla(234, 100%, 91%, 1)"},border:{neutralDefault:"hsla(212, 14%, 77%, 1)",neutralSubdued:"hsla(211, 13%, 66%, 1)",neutralHighlight:"hsla(212, 44%, 13%, 0.08)",neutralPlain:"hsla(330, 5%, 91%, 1)",brandPlain:"hsla(215, 100%, 88%, 1)",brandDefault:"hsla(215, 100%, 74%, 1)",brandSubdued:"hsla(215, 100%, 61%, 1)",brandHighlight:"hsla(215, 100%, 51%, 0.1)",criticalPlain:"hsla(11, 100%, 88%, 1)",criticalDefault:"hsla(11, 100%, 74%, 1)",criticalSubdued:"hsla(11, 100%, 57%, 1)",criticalHighlight:"hsla(11, 100%, 46%, 0.08)"}},fontSize:Li,borderRadius:Vi,lineHeight:Hi,fontWeight:ji,letterSpacing:Fi,boxShadow:{interactiveDefaultFocused:"0px 1px 1px 0px hsla(212, 44%, 13%, 0.16)",interactiveDefaultHovering:"0px 2px 3px 0px hsla(211, 42%, 16%, 0.1)",overlay:"0px 3px 8px 0px hsla(211, 42%, 16%, 0.08)",modal:"0px 8px 16px 0px hsla(211, 42%, 16%, 0.08)"},borderWidth:Bi},$t={defaultLight:f1,defaultDark:l1};var jt={exports:{}},Ts={};/*
2
+ object-assign
3
+ (c) Sindre Sorhus
4
+ @license MIT
5
+ */var ao,Ia;function Uo(){if(Ia)return ao;Ia=1;var e=Object.getOwnPropertySymbols,s=Object.prototype.hasOwnProperty,t=Object.prototype.propertyIsEnumerable;function o(n){if(n==null)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(n)}function a(){try{if(!Object.assign)return!1;var n=new String("abc");if(n[5]="de",Object.getOwnPropertyNames(n)[0]==="5")return!1;for(var i={},l=0;l<10;l++)i["_"+String.fromCharCode(l)]=l;var f=Object.getOwnPropertyNames(i).map(function(d){return i[d]});if(f.join("")!=="0123456789")return!1;var p={};return"abcdefghijklmnopqrst".split("").forEach(function(d){p[d]=d}),Object.keys(Object.assign({},p)).join("")==="abcdefghijklmnopqrst"}catch{return!1}}return ao=a()?Object.assign:function(n,i){for(var l,f=o(n),p,d=1;d<arguments.length;d++){l=Object(arguments[d]);for(var c in l)s.call(l,c)&&(f[c]=l[c]);if(e){p=e(l);for(var b=0;b<p.length;b++)t.call(l,p[b])&&(f[p[b]]=l[p[b]])}}return f},ao}/** @license React v17.0.2
6
+ * react-jsx-runtime.production.min.js
7
+ *
8
+ * Copyright (c) Facebook, Inc. and its affiliates.
9
+ *
10
+ * This source code is licensed under the MIT license found in the
11
+ * LICENSE file in the root directory of this source tree.
12
+ */var Sa;function c1(){if(Sa)return Ts;Sa=1,Uo();var e=re.default,s=60103;if(Ts.Fragment=60107,typeof Symbol=="function"&&Symbol.for){var t=Symbol.for;s=t("react.element"),Ts.Fragment=t("react.fragment")}var o=e.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,a=Object.prototype.hasOwnProperty,n={key:!0,ref:!0,__self:!0,__source:!0};function i(l,f,p){var d,c={},b=null,u=null;p!==void 0&&(b=""+p),f.key!==void 0&&(b=""+f.key),f.ref!==void 0&&(u=f.ref);for(d in f)a.call(f,d)&&!n.hasOwnProperty(d)&&(c[d]=f[d]);if(l&&l.defaultProps)for(d in f=l.defaultProps,f)c[d]===void 0&&(c[d]=f[d]);return{$$typeof:s,type:l,key:b,ref:u,props:c,_owner:o.current}}return Ts.jsx=i,Ts.jsxs=i,Ts}var io={};/** @license React v17.0.2
13
+ * react-jsx-runtime.development.js
14
+ *
15
+ * Copyright (c) Facebook, Inc. and its affiliates.
16
+ *
17
+ * This source code is licensed under the MIT license found in the
18
+ * LICENSE file in the root directory of this source tree.
19
+ */var Ra;function p1(){return Ra||(Ra=1,function(e){process.env.NODE_ENV!=="production"&&function(){var s=re.default,t=Uo(),o=60103,a=60106;e.Fragment=60107;var n=60108,i=60114,l=60109,f=60110,p=60112,d=60113,c=60120,b=60115,u=60116,C=60121,_=60122,x=60117,y=60129,h=60131;if(typeof Symbol=="function"&&Symbol.for){var m=Symbol.for;o=m("react.element"),a=m("react.portal"),e.Fragment=m("react.fragment"),n=m("react.strict_mode"),i=m("react.profiler"),l=m("react.provider"),f=m("react.context"),p=m("react.forward_ref"),d=m("react.suspense"),c=m("react.suspense_list"),b=m("react.memo"),u=m("react.lazy"),C=m("react.block"),_=m("react.server.block"),x=m("react.fundamental"),m("react.scope"),m("react.opaque.id"),y=m("react.debug_trace_mode"),m("react.offscreen"),h=m("react.legacy_hidden")}var g=typeof Symbol=="function"&&Symbol.iterator,w="@@iterator";function D(k){if(k===null||typeof k!="object")return null;var z=g&&k[g]||k[w];return typeof z=="function"?z:null}var E=s.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;function $(k){{for(var z=arguments.length,X=new Array(z>1?z-1:0),ie=1;ie<z;ie++)X[ie-1]=arguments[ie];R("error",k,X)}}function R(k,z,X){{var ie=E.ReactDebugCurrentFrame,xe=ie.getStackAddendum();xe!==""&&(z+="%s",X=X.concat([xe]));var ke=X.map(function(de){return""+de});ke.unshift("Warning: "+z),Function.prototype.apply.call(console[k],console,ke)}}var H=!1;function O(k){return!!(typeof k=="string"||typeof k=="function"||k===e.Fragment||k===i||k===y||k===n||k===d||k===c||k===h||H||typeof k=="object"&&k!==null&&(k.$$typeof===u||k.$$typeof===b||k.$$typeof===l||k.$$typeof===f||k.$$typeof===p||k.$$typeof===x||k.$$typeof===C||k[0]===_))}function W(k,z,X){var ie=z.displayName||z.name||"";return k.displayName||(ie!==""?X+"("+ie+")":X)}function P(k){return k.displayName||"Context"}function K(k){if(k==null)return null;if(typeof k.tag=="number"&&$("Received an unexpected object in getComponentName(). This is likely a bug in React. Please file an issue."),typeof k=="function")return k.displayName||k.name||null;if(typeof k=="string")return k;switch(k){case e.Fragment:return"Fragment";case a:return"Portal";case i:return"Profiler";case n:return"StrictMode";case d:return"Suspense";case c:return"SuspenseList"}if(typeof k=="object")switch(k.$$typeof){case f:var z=k;return P(z)+".Consumer";case l:var X=k;return P(X._context)+".Provider";case p:return W(k,k.render,"ForwardRef");case b:return K(k.type);case C:return K(k._render);case u:{var ie=k,xe=ie._payload,ke=ie._init;try{return K(ke(xe))}catch{return null}}}return null}var G=0,ne,oe,se,Y,I,V,J;function Q(){}Q.__reactDisabledLog=!0;function j(){{if(G===0){ne=console.log,oe=console.info,se=console.warn,Y=console.error,I=console.group,V=console.groupCollapsed,J=console.groupEnd;var k={configurable:!0,enumerable:!0,value:Q,writable:!0};Object.defineProperties(console,{info:k,log:k,warn:k,error:k,group:k,groupCollapsed:k,groupEnd:k})}G++}}function U(){{if(G--,G===0){var k={configurable:!0,enumerable:!0,writable:!0};Object.defineProperties(console,{log:t({},k,{value:ne}),info:t({},k,{value:oe}),warn:t({},k,{value:se}),error:t({},k,{value:Y}),group:t({},k,{value:I}),groupCollapsed:t({},k,{value:V}),groupEnd:t({},k,{value:J})})}G<0&&$("disabledDepth fell below zero. This is a bug in React. Please file an issue.")}}var F=E.ReactCurrentDispatcher,T;function M(k,z,X){{if(T===void 0)try{throw Error()}catch(xe){var ie=xe.stack.trim().match(/\n( *(at )?)/);T=ie&&ie[1]||""}return`
20
+ `+T+k}}var A=!1,B;{var q=typeof WeakMap=="function"?WeakMap:Map;B=new q}function L(k,z){if(!k||A)return"";{var X=B.get(k);if(X!==void 0)return X}var ie;A=!0;var xe=Error.prepareStackTrace;Error.prepareStackTrace=void 0;var ke;ke=F.current,F.current=null,j();try{if(z){var de=function(){throw Error()};if(Object.defineProperty(de.prototype,"props",{set:function(){throw Error()}}),typeof Reflect=="object"&&Reflect.construct){try{Reflect.construct(de,[])}catch(rs){ie=rs}Reflect.construct(k,[],de)}else{try{de.call()}catch(rs){ie=rs}k.call(de.prototype)}}else{try{throw Error()}catch(rs){ie=rs}k()}}catch(rs){if(rs&&ie&&typeof rs.stack=="string"){for(var pe=rs.stack.split(`
21
+ `),He=ie.stack.split(`
22
+ `),Ne=pe.length-1,Me=He.length-1;Ne>=1&&Me>=0&&pe[Ne]!==He[Me];)Me--;for(;Ne>=1&&Me>=0;Ne--,Me--)if(pe[Ne]!==He[Me]){if(Ne!==1||Me!==1)do if(Ne--,Me--,Me<0||pe[Ne]!==He[Me]){var is=`
23
+ `+pe[Ne].replace(" at new "," at ");return typeof k=="function"&&B.set(k,is),is}while(Ne>=1&&Me>=0);break}}}finally{A=!1,F.current=ke,U(),Error.prepareStackTrace=xe}var Os=k?k.displayName||k.name:"",wa=Os?M(Os):"";return typeof k=="function"&&B.set(k,wa),wa}function le(k,z,X){return L(k,!1)}function ce(k){var z=k.prototype;return!!(z&&z.isReactComponent)}function ye(k,z,X){if(k==null)return"";if(typeof k=="function")return L(k,ce(k));if(typeof k=="string")return M(k);switch(k){case d:return M("Suspense");case c:return M("SuspenseList")}if(typeof k=="object")switch(k.$$typeof){case p:return le(k.render);case b:return ye(k.type,z,X);case C:return le(k._render);case u:{var ie=k,xe=ie._payload,ke=ie._init;try{return ye(ke(xe),z,X)}catch{}}}return""}var Re={},Ie=E.ReactDebugCurrentFrame;function Te(k){if(k){var z=k._owner,X=ye(k.type,k._source,z?z.type:null);Ie.setExtraStackFrame(X)}else Ie.setExtraStackFrame(null)}function _e(k,z,X,ie,xe){{var ke=Function.call.bind(Object.prototype.hasOwnProperty);for(var de in k)if(ke(k,de)){var pe=void 0;try{if(typeof k[de]!="function"){var He=Error((ie||"React class")+": "+X+" type `"+de+"` is invalid; it must be a function, usually from the `prop-types` package, but received `"+typeof k[de]+"`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.");throw He.name="Invariant Violation",He}pe=k[de](z,de,ie,X,null,"SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED")}catch(Ne){pe=Ne}pe&&!(pe instanceof Error)&&(Te(xe),$("%s: type specification of %s `%s` is invalid; the type checker function must return `null` or an `Error` but returned a %s. You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument).",ie||"React class",X,de,typeof pe),Te(null)),pe instanceof Error&&!(pe.message in Re)&&(Re[pe.message]=!0,Te(xe),$("Failed %s type: %s",X,pe.message),Te(null))}}}var $e=E.ReactCurrentOwner,Pe=Object.prototype.hasOwnProperty,Ee={key:!0,ref:!0,__self:!0,__source:!0},Se,Le,De;De={};function Bs(k){if(Pe.call(k,"ref")){var z=Object.getOwnPropertyDescriptor(k,"ref").get;if(z&&z.isReactWarning)return!1}return k.ref!==void 0}function zs(k){if(Pe.call(k,"key")){var z=Object.getOwnPropertyDescriptor(k,"key").get;if(z&&z.isReactWarning)return!1}return k.key!==void 0}function qs(k,z){if(typeof k.ref=="string"&&$e.current&&z&&$e.current.stateNode!==z){var X=K($e.current.type);De[X]||($('Component "%s" contains the string ref "%s". Support for string refs will be removed in a future major release. This case cannot be automatically converted to an arrow function. We ask you to manually fix this case by using useRef() or createRef() instead. Learn more about using refs safely here: https://reactjs.org/link/strict-mode-string-ref',K($e.current.type),k.ref),De[X]=!0)}}function Ps(k,z){{var X=function(){Se||(Se=!0,$("%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)",z))};X.isReactWarning=!0,Object.defineProperty(k,"key",{get:X,configurable:!0})}}function ss(k,z){{var X=function(){Le||(Le=!0,$("%s: `ref` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)",z))};X.isReactWarning=!0,Object.defineProperty(k,"ref",{get:X,configurable:!0})}}var qe=function(k,z,X,ie,xe,ke,de){var pe={$$typeof:o,type:k,key:z,ref:X,props:de,_owner:ke};return pe._store={},Object.defineProperty(pe._store,"validated",{configurable:!1,enumerable:!1,writable:!0,value:!1}),Object.defineProperty(pe,"_self",{configurable:!1,enumerable:!1,writable:!1,value:ie}),Object.defineProperty(pe,"_source",{configurable:!1,enumerable:!1,writable:!1,value:xe}),Object.freeze&&(Object.freeze(pe.props),Object.freeze(pe)),pe};function ts(k,z,X,ie,xe){{var ke,de={},pe=null,He=null;X!==void 0&&(pe=""+X),zs(z)&&(pe=""+z.key),Bs(z)&&(He=z.ref,qs(z,xe));for(ke in z)Pe.call(z,ke)&&!Ee.hasOwnProperty(ke)&&(de[ke]=z[ke]);if(k&&k.defaultProps){var Ne=k.defaultProps;for(ke in Ne)de[ke]===void 0&&(de[ke]=Ne[ke])}if(pe||He){var Me=typeof k=="function"?k.displayName||k.name||"Unknown":k;pe&&Ps(de,Me),He&&ss(de,Me)}return qe(k,pe,He,xe,ie,$e.current,de)}}var vs=E.ReactCurrentOwner,va=E.ReactDebugCurrentFrame;function Ds(k){if(k){var z=k._owner,X=ye(k.type,k._source,z?z.type:null);va.setExtraStackFrame(X)}else va.setExtraStackFrame(null)}var oo;oo=!1;function no(k){return typeof k=="object"&&k!==null&&k.$$typeof===o}function ga(){{if(vs.current){var k=K(vs.current.type);if(k)return`
24
+
25
+ Check the render method of \``+k+"`."}return""}}function K8(k){{if(k!==void 0){var z=k.fileName.replace(/^.*[\\\/]/,""),X=k.lineNumber;return`
26
+
27
+ Check your code at `+z+":"+X+"."}return""}}var Ca={};function U8(k){{var z=ga();if(!z){var X=typeof k=="string"?k:k.displayName||k.name;X&&(z=`
28
+
29
+ Check the top-level render call using <`+X+">.")}return z}}function ya(k,z){{if(!k._store||k._store.validated||k.key!=null)return;k._store.validated=!0;var X=U8(z);if(Ca[X])return;Ca[X]=!0;var ie="";k&&k._owner&&k._owner!==vs.current&&(ie=" It was passed a child from "+K(k._owner.type)+"."),Ds(k),$('Each child in a list should have a unique "key" prop.%s%s See https://reactjs.org/link/warning-keys for more information.',X,ie),Ds(null)}}function xa(k,z){{if(typeof k!="object")return;if(Array.isArray(k))for(var X=0;X<k.length;X++){var ie=k[X];no(ie)&&ya(ie,z)}else if(no(k))k._store&&(k._store.validated=!0);else if(k){var xe=D(k);if(typeof xe=="function"&&xe!==k.entries)for(var ke=xe.call(k),de;!(de=ke.next()).done;)no(de.value)&&ya(de.value,z)}}}function Z8(k){{var z=k.type;if(z==null||typeof z=="string")return;var X;if(typeof z=="function")X=z.propTypes;else if(typeof z=="object"&&(z.$$typeof===p||z.$$typeof===b))X=z.propTypes;else return;if(X){var ie=K(z);_e(X,k.props,"prop",ie,k)}else if(z.PropTypes!==void 0&&!oo){oo=!0;var xe=K(z);$("Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?",xe||"Unknown")}typeof z.getDefaultProps=="function"&&!z.getDefaultProps.isReactClassApproved&&$("getDefaultProps is only used on classic React.createClass definitions. Use a static property named `defaultProps` instead.")}}function Y8(k){{for(var z=Object.keys(k.props),X=0;X<z.length;X++){var ie=z[X];if(ie!=="children"&&ie!=="key"){Ds(k),$("Invalid prop `%s` supplied to `React.Fragment`. React.Fragment can only have `key` and `children` props.",ie),Ds(null);break}}k.ref!==null&&(Ds(k),$("Invalid attribute `ref` supplied to `React.Fragment`."),Ds(null))}}function ka(k,z,X,ie,xe,ke){{var de=O(k);if(!de){var pe="";(k===void 0||typeof k=="object"&&k!==null&&Object.keys(k).length===0)&&(pe+=" You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.");var He=K8(xe);He?pe+=He:pe+=ga();var Ne;k===null?Ne="null":Array.isArray(k)?Ne="array":k!==void 0&&k.$$typeof===o?(Ne="<"+(K(k.type)||"Unknown")+" />",pe=" Did you accidentally export a JSX literal instead of a component?"):Ne=typeof k,$("React.jsx: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s",Ne,pe)}var Me=ts(k,z,X,xe,ke);if(Me==null)return Me;if(de){var is=z.children;if(is!==void 0)if(ie)if(Array.isArray(is)){for(var Os=0;Os<is.length;Os++)xa(is[Os],k);Object.freeze&&Object.freeze(is)}else $("React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.");else xa(is,k)}return k===e.Fragment?Y8(Me):Z8(Me),Me}}function G8(k,z,X){return ka(k,z,X,!0)}function X8(k,z,X){return ka(k,z,X,!1)}var J8=X8,Q8=G8;e.jsx=J8,e.jsxs=Q8}()}(io)),io}(function(e){process.env.NODE_ENV==="production"?e.exports=c1():e.exports=p1()})(jt);const Ve=jt.exports.Fragment,v=jt.exports.jsx,ee=jt.exports.jsxs,zi=r.createContext(null),d1=({children:e,defaultTheme:s})=>{const[t,o]=r.useState(s);return typeof document<"u"&&r1(document.documentElement,Es,$t[t]),v(zi.Provider,{value:{theme:t,setTheme:o,themeValues:$t[t]},children:e})},u1=()=>{const e=r.useContext(zi);if(e===null)throw new Error("useTheme must be used within a MacawUI ThemeContext");return e},_1=({children:e,defaultTheme:s="defaultLight"})=>v(d1,{defaultTheme:s,children:v("main",{id:"macaw-ui-root",children:e})});function m1(e,s,t){return s in e?Object.defineProperty(e,s,{value:t,enumerable:!0,configurable:!0,writable:!0}):e[s]=t,e}function Pa(e,s){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);s&&(o=o.filter(function(a){return Object.getOwnPropertyDescriptor(e,a).enumerable})),t.push.apply(t,o)}return t}function ro(e){for(var s=1;s<arguments.length;s++){var t=arguments[s]!=null?arguments[s]:{};s%2?Pa(Object(t),!0).forEach(function(o){m1(e,o,t[o])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):Pa(Object(t)).forEach(function(o){Object.defineProperty(e,o,Object.getOwnPropertyDescriptor(t,o))})}return e}var b1=e=>function(){for(var s=arguments.length,t=new Array(s),o=0;o<s;o++)t[o]=arguments[o];var a=Object.assign({},...t.map(f=>f.styles)),n=Object.keys(a),i=n.filter(f=>"mappings"in a[f]),l=f=>{var p=[],d={},c=ro({},f),b=!1;for(var u of i){var C=f[u];if(C!=null){var _=a[u];b=!0;for(var x of _.mappings)d[x]=C,c[x]==null&&delete c[x]}}var y=b?ro(ro({},d),c):f;for(var h in y){var m=y[h],g=a[h];try{if(g.mappings)continue;if(typeof m=="string"||typeof m=="number"){if(process.env.NODE_ENV!=="production"&&!g.values[m].defaultClass)throw new Error;p.push(g.values[m].defaultClass)}else if(Array.isArray(m))for(var w=0;w<m.length;w++){var D=m[w];if(D!=null){var E=g.responsiveArray[w];if(process.env.NODE_ENV!=="production"&&!g.values[D].conditions[E])throw new Error;p.push(g.values[D].conditions[E])}}else for(var $ in m){var R=m[$];if(R!=null){if(process.env.NODE_ENV!=="production"&&!g.values[R].conditions[$])throw new Error;p.push(g.values[R].conditions[$])}}}catch(H){throw process.env.NODE_ENV!=="production"&&function(){class O extends Error{constructor(Y){super(Y),this.name="SprinklesError"}}var W=se=>typeof se=="string"?'"'.concat(se,'"'):se,P=(se,Y,I)=>{throw new O('"'.concat(se,'" has no value ').concat(W(Y),". Possible values are ").concat(Object.keys(I).map(W).join(", ")))};if(!g)throw new O('"'.concat(h,'" is not a valid sprinkle'));if((typeof m=="string"||typeof m=="number")&&(m in g.values||P(h,m,g.values),!g.values[m].defaultClass))throw new O('"'.concat(h,'" has no default condition. You must specify which conditions to target explicitly. Possible options are ').concat(Object.keys(g.values[m].conditions).map(W).join(", ")));if(typeof m=="object"){if(!("conditions"in g.values[Object.keys(g.values)[0]]))throw new O('"'.concat(h,'" is not a conditional property'));if(Array.isArray(m)){if(!("responsiveArray"in g))throw new O('"'.concat(h,'" does not support responsive arrays'));var K=g.responsiveArray.length;if(K<m.length)throw new O('"'.concat(h,'" only supports up to ').concat(K," breakpoints. You passed ").concat(m.length));for(var G of m)g.values[G]||P(h,G,g.values)}else for(var ne in m){var oe=m[ne];if(oe!=null&&(g.values[oe]||P(h,oe,g.values),!g.values[oe].conditions[ne]))throw new O('"'.concat(h,'" has no condition named ').concat(W(ne),". Possible values are ").concat(Object.keys(g.values[oe].conditions).map(W).join(", ")))}}}(),H}}return e(p.join(" "))};return Object.assign(l,{properties:new Set(n)})},h1=e=>e,v1=function(){return b1(h1)(...arguments)},as=v1({conditions:{defaultCondition:"mobile",conditionNames:["mobile","tablet","desktop"],responsiveArray:void 0},styles:{padding:{mappings:["paddingTop","paddingBottom","paddingLeft","paddingRight"]},paddingX:{mappings:["paddingLeft","paddingRight"]},paddingY:{mappings:["paddingTop","paddingBottom"]},margin:{mappings:["marginTop","marginBottom","marginLeft","marginRight"]},marginX:{mappings:["marginLeft","marginRight"]},marginY:{mappings:["marginTop","marginBottom"]},placeItems:{mappings:["alignItems","justifyContent"]},typeSize:{mappings:["fontSize","lineHeight","fontWeight","letterSpacing"]},borderWidth:{mappings:["borderTopWidth","borderBottomWidth","borderLeftWidth","borderRightWidth"]},borderXWidth:{mappings:["borderLeftWidth","borderRightWidth"]},borderYWidth:{mappings:["borderTopWidth","borderBottomWidth"]},borderStyle:{mappings:["borderTopStyle","borderBottomStyle","borderLeftStyle","borderRightStyle"]},borderXStyle:{mappings:["borderLeftStyle","borderRightStyle"]},borderYStyle:{mappings:["borderTopStyle","borderBottomStyle"]},inset:{mappings:["top","bottom","left","right"]},borderRadius:{mappings:["borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius"]},overflow:{mappings:["overflowX","overflowY"]},flex:{mappings:["flexGrow","flexShrink","flexBasis"]},display:{values:{none:{conditions:{mobile:"_18fs8ps0",tablet:"_18fs8ps1",desktop:"_18fs8ps2"},defaultClass:"_18fs8ps0"},flex:{conditions:{mobile:"_18fs8ps3",tablet:"_18fs8ps4",desktop:"_18fs8ps5"},defaultClass:"_18fs8ps3"},"inline-flex":{conditions:{mobile:"_18fs8ps6",tablet:"_18fs8ps7",desktop:"_18fs8ps8"},defaultClass:"_18fs8ps6"},grid:{conditions:{mobile:"_18fs8ps9",tablet:"_18fs8psa",desktop:"_18fs8psb"},defaultClass:"_18fs8ps9"},"inline-grid":{conditions:{mobile:"_18fs8psc",tablet:"_18fs8psd",desktop:"_18fs8pse"},defaultClass:"_18fs8psc"},block:{conditions:{mobile:"_18fs8psf",tablet:"_18fs8psg",desktop:"_18fs8psh"},defaultClass:"_18fs8psf"},"inline-block":{conditions:{mobile:"_18fs8psi",tablet:"_18fs8psj",desktop:"_18fs8psk"},defaultClass:"_18fs8psi"},contents:{conditions:{mobile:"_18fs8psl",tablet:"_18fs8psm",desktop:"_18fs8psn"},defaultClass:"_18fs8psl"}}},flexDirection:{values:{row:{conditions:{mobile:"_18fs8pso",tablet:"_18fs8psp",desktop:"_18fs8psq"},defaultClass:"_18fs8pso"},column:{conditions:{mobile:"_18fs8psr",tablet:"_18fs8pss",desktop:"_18fs8pst"},defaultClass:"_18fs8psr"}}},alignItems:{values:{stretch:{conditions:{mobile:"_18fs8psu",tablet:"_18fs8psv",desktop:"_18fs8psw"},defaultClass:"_18fs8psu"},"flex-start":{conditions:{mobile:"_18fs8psx",tablet:"_18fs8psy",desktop:"_18fs8psz"},defaultClass:"_18fs8psx"},center:{conditions:{mobile:"_18fs8ps10",tablet:"_18fs8ps11",desktop:"_18fs8ps12"},defaultClass:"_18fs8ps10"},"flex-end":{conditions:{mobile:"_18fs8ps13",tablet:"_18fs8ps14",desktop:"_18fs8ps15"},defaultClass:"_18fs8ps13"},start:{conditions:{mobile:"_18fs8ps16",tablet:"_18fs8ps17",desktop:"_18fs8ps18"},defaultClass:"_18fs8ps16"},end:{conditions:{mobile:"_18fs8ps19",tablet:"_18fs8ps1a",desktop:"_18fs8ps1b"},defaultClass:"_18fs8ps19"},baseline:{conditions:{mobile:"_18fs8ps1c",tablet:"_18fs8ps1d",desktop:"_18fs8ps1e"},defaultClass:"_18fs8ps1c"}}},justifyContent:{values:{stretch:{conditions:{mobile:"_18fs8ps1f",tablet:"_18fs8ps1g",desktop:"_18fs8ps1h"},defaultClass:"_18fs8ps1f"},"flex-start":{conditions:{mobile:"_18fs8ps1i",tablet:"_18fs8ps1j",desktop:"_18fs8ps1k"},defaultClass:"_18fs8ps1i"},center:{conditions:{mobile:"_18fs8ps1l",tablet:"_18fs8ps1m",desktop:"_18fs8ps1n"},defaultClass:"_18fs8ps1l"},"flex-end":{conditions:{mobile:"_18fs8ps1o",tablet:"_18fs8ps1p",desktop:"_18fs8ps1q"},defaultClass:"_18fs8ps1o"},"space-between":{conditions:{mobile:"_18fs8ps1r",tablet:"_18fs8ps1s",desktop:"_18fs8ps1t"},defaultClass:"_18fs8ps1r"},"space-around":{conditions:{mobile:"_18fs8ps1u",tablet:"_18fs8ps1v",desktop:"_18fs8ps1w"},defaultClass:"_18fs8ps1u"},"space-evenly":{conditions:{mobile:"_18fs8ps1x",tablet:"_18fs8ps1y",desktop:"_18fs8ps1z"},defaultClass:"_18fs8ps1x"}}},flexGrow:{values:{0:{conditions:{mobile:"_18fs8ps20",tablet:"_18fs8ps21",desktop:"_18fs8ps22"},defaultClass:"_18fs8ps20"},1:{conditions:{mobile:"_18fs8ps23",tablet:"_18fs8ps24",desktop:"_18fs8ps25"},defaultClass:"_18fs8ps23"}}},flexShrink:{values:{0:{conditions:{mobile:"_18fs8ps26",tablet:"_18fs8ps27",desktop:"_18fs8ps28"},defaultClass:"_18fs8ps26"},1:{conditions:{mobile:"_18fs8ps29",tablet:"_18fs8ps2a",desktop:"_18fs8ps2b"},defaultClass:"_18fs8ps29"}}},flexBasis:{values:{0:{conditions:{mobile:"_18fs8ps2f",tablet:"_18fs8ps2g",desktop:"_18fs8ps2h"},defaultClass:"_18fs8ps2f"},auto:{conditions:{mobile:"_18fs8ps2c",tablet:"_18fs8ps2d",desktop:"_18fs8ps2e"},defaultClass:"_18fs8ps2c"}}},position:{values:{static:{conditions:{mobile:"_18fs8ps2i",tablet:"_18fs8ps2j",desktop:"_18fs8ps2k"},defaultClass:"_18fs8ps2i"},relative:{conditions:{mobile:"_18fs8ps2l",tablet:"_18fs8ps2m",desktop:"_18fs8ps2n"},defaultClass:"_18fs8ps2l"},absolute:{conditions:{mobile:"_18fs8ps2o",tablet:"_18fs8ps2p",desktop:"_18fs8ps2q"},defaultClass:"_18fs8ps2o"},fixed:{conditions:{mobile:"_18fs8ps2r",tablet:"_18fs8ps2s",desktop:"_18fs8ps2t"},defaultClass:"_18fs8ps2r"},sticky:{conditions:{mobile:"_18fs8ps2u",tablet:"_18fs8ps2v",desktop:"_18fs8ps2w"},defaultClass:"_18fs8ps2u"}}},gridArea:{values:{auto:{conditions:{mobile:"_18fs8ps2x",tablet:"_18fs8ps2y",desktop:"_18fs8ps2z"},defaultClass:"_18fs8ps2x"}}},gridTemplateAreas:{values:{none:{conditions:{mobile:"_18fs8ps30",tablet:"_18fs8ps31",desktop:"_18fs8ps32"},defaultClass:"_18fs8ps30"}}},gridTemplateRows:{values:{1:{conditions:{mobile:"_18fs8ps33",tablet:"_18fs8ps34",desktop:"_18fs8ps35"},defaultClass:"_18fs8ps33"},2:{conditions:{mobile:"_18fs8ps36",tablet:"_18fs8ps37",desktop:"_18fs8ps38"},defaultClass:"_18fs8ps36"},3:{conditions:{mobile:"_18fs8ps39",tablet:"_18fs8ps3a",desktop:"_18fs8ps3b"},defaultClass:"_18fs8ps39"},4:{conditions:{mobile:"_18fs8ps3c",tablet:"_18fs8ps3d",desktop:"_18fs8ps3e"},defaultClass:"_18fs8ps3c"},5:{conditions:{mobile:"_18fs8ps3f",tablet:"_18fs8ps3g",desktop:"_18fs8ps3h"},defaultClass:"_18fs8ps3f"},6:{conditions:{mobile:"_18fs8ps3i",tablet:"_18fs8ps3j",desktop:"_18fs8ps3k"},defaultClass:"_18fs8ps3i"},7:{conditions:{mobile:"_18fs8ps3l",tablet:"_18fs8ps3m",desktop:"_18fs8ps3n"},defaultClass:"_18fs8ps3l"},8:{conditions:{mobile:"_18fs8ps3o",tablet:"_18fs8ps3p",desktop:"_18fs8ps3q"},defaultClass:"_18fs8ps3o"},9:{conditions:{mobile:"_18fs8ps3r",tablet:"_18fs8ps3s",desktop:"_18fs8ps3t"},defaultClass:"_18fs8ps3r"},10:{conditions:{mobile:"_18fs8ps3u",tablet:"_18fs8ps3v",desktop:"_18fs8ps3w"},defaultClass:"_18fs8ps3u"},11:{conditions:{mobile:"_18fs8ps3x",tablet:"_18fs8ps3y",desktop:"_18fs8ps3z"},defaultClass:"_18fs8ps3x"},12:{conditions:{mobile:"_18fs8ps40",tablet:"_18fs8ps41",desktop:"_18fs8ps42"},defaultClass:"_18fs8ps40"},none:{conditions:{mobile:"_18fs8ps43",tablet:"_18fs8ps44",desktop:"_18fs8ps45"},defaultClass:"_18fs8ps43"}}},gridRow:{values:{1:{conditions:{mobile:"_18fs8ps46",tablet:"_18fs8ps47",desktop:"_18fs8ps48"},defaultClass:"_18fs8ps46"},2:{conditions:{mobile:"_18fs8ps49",tablet:"_18fs8ps4a",desktop:"_18fs8ps4b"},defaultClass:"_18fs8ps49"},3:{conditions:{mobile:"_18fs8ps4c",tablet:"_18fs8ps4d",desktop:"_18fs8ps4e"},defaultClass:"_18fs8ps4c"},4:{conditions:{mobile:"_18fs8ps4f",tablet:"_18fs8ps4g",desktop:"_18fs8ps4h"},defaultClass:"_18fs8ps4f"},5:{conditions:{mobile:"_18fs8ps4i",tablet:"_18fs8ps4j",desktop:"_18fs8ps4k"},defaultClass:"_18fs8ps4i"},6:{conditions:{mobile:"_18fs8ps4l",tablet:"_18fs8ps4m",desktop:"_18fs8ps4n"},defaultClass:"_18fs8ps4l"},7:{conditions:{mobile:"_18fs8ps4o",tablet:"_18fs8ps4p",desktop:"_18fs8ps4q"},defaultClass:"_18fs8ps4o"},8:{conditions:{mobile:"_18fs8ps4r",tablet:"_18fs8ps4s",desktop:"_18fs8ps4t"},defaultClass:"_18fs8ps4r"},9:{conditions:{mobile:"_18fs8ps4u",tablet:"_18fs8ps4v",desktop:"_18fs8ps4w"},defaultClass:"_18fs8ps4u"},10:{conditions:{mobile:"_18fs8ps4x",tablet:"_18fs8ps4y",desktop:"_18fs8ps4z"},defaultClass:"_18fs8ps4x"},11:{conditions:{mobile:"_18fs8ps50",tablet:"_18fs8ps51",desktop:"_18fs8ps52"},defaultClass:"_18fs8ps50"},12:{conditions:{mobile:"_18fs8ps53",tablet:"_18fs8ps54",desktop:"_18fs8ps55"},defaultClass:"_18fs8ps53"},auto:{conditions:{mobile:"_18fs8ps56",tablet:"_18fs8ps57",desktop:"_18fs8ps58"},defaultClass:"_18fs8ps56"},full:{conditions:{mobile:"_18fs8ps59",tablet:"_18fs8ps5a",desktop:"_18fs8ps5b"},defaultClass:"_18fs8ps59"}}},gridRowStart:{values:{1:{conditions:{mobile:"_18fs8ps5c",tablet:"_18fs8ps5d",desktop:"_18fs8ps5e"},defaultClass:"_18fs8ps5c"},2:{conditions:{mobile:"_18fs8ps5f",tablet:"_18fs8ps5g",desktop:"_18fs8ps5h"},defaultClass:"_18fs8ps5f"},3:{conditions:{mobile:"_18fs8ps5i",tablet:"_18fs8ps5j",desktop:"_18fs8ps5k"},defaultClass:"_18fs8ps5i"},4:{conditions:{mobile:"_18fs8ps5l",tablet:"_18fs8ps5m",desktop:"_18fs8ps5n"},defaultClass:"_18fs8ps5l"},5:{conditions:{mobile:"_18fs8ps5o",tablet:"_18fs8ps5p",desktop:"_18fs8ps5q"},defaultClass:"_18fs8ps5o"},6:{conditions:{mobile:"_18fs8ps5r",tablet:"_18fs8ps5s",desktop:"_18fs8ps5t"},defaultClass:"_18fs8ps5r"},7:{conditions:{mobile:"_18fs8ps5u",tablet:"_18fs8ps5v",desktop:"_18fs8ps5w"},defaultClass:"_18fs8ps5u"},8:{conditions:{mobile:"_18fs8ps5x",tablet:"_18fs8ps5y",desktop:"_18fs8ps5z"},defaultClass:"_18fs8ps5x"},9:{conditions:{mobile:"_18fs8ps60",tablet:"_18fs8ps61",desktop:"_18fs8ps62"},defaultClass:"_18fs8ps60"},10:{conditions:{mobile:"_18fs8ps63",tablet:"_18fs8ps64",desktop:"_18fs8ps65"},defaultClass:"_18fs8ps63"},11:{conditions:{mobile:"_18fs8ps66",tablet:"_18fs8ps67",desktop:"_18fs8ps68"},defaultClass:"_18fs8ps66"},12:{conditions:{mobile:"_18fs8ps69",tablet:"_18fs8ps6a",desktop:"_18fs8ps6b"},defaultClass:"_18fs8ps69"},auto:{conditions:{mobile:"_18fs8ps6c",tablet:"_18fs8ps6d",desktop:"_18fs8ps6e"},defaultClass:"_18fs8ps6c"}}},gridRowEnd:{values:{1:{conditions:{mobile:"_18fs8ps6f",tablet:"_18fs8ps6g",desktop:"_18fs8ps6h"},defaultClass:"_18fs8ps6f"},2:{conditions:{mobile:"_18fs8ps6i",tablet:"_18fs8ps6j",desktop:"_18fs8ps6k"},defaultClass:"_18fs8ps6i"},3:{conditions:{mobile:"_18fs8ps6l",tablet:"_18fs8ps6m",desktop:"_18fs8ps6n"},defaultClass:"_18fs8ps6l"},4:{conditions:{mobile:"_18fs8ps6o",tablet:"_18fs8ps6p",desktop:"_18fs8ps6q"},defaultClass:"_18fs8ps6o"},5:{conditions:{mobile:"_18fs8ps6r",tablet:"_18fs8ps6s",desktop:"_18fs8ps6t"},defaultClass:"_18fs8ps6r"},6:{conditions:{mobile:"_18fs8ps6u",tablet:"_18fs8ps6v",desktop:"_18fs8ps6w"},defaultClass:"_18fs8ps6u"},7:{conditions:{mobile:"_18fs8ps6x",tablet:"_18fs8ps6y",desktop:"_18fs8ps6z"},defaultClass:"_18fs8ps6x"},8:{conditions:{mobile:"_18fs8ps70",tablet:"_18fs8ps71",desktop:"_18fs8ps72"},defaultClass:"_18fs8ps70"},9:{conditions:{mobile:"_18fs8ps73",tablet:"_18fs8ps74",desktop:"_18fs8ps75"},defaultClass:"_18fs8ps73"},10:{conditions:{mobile:"_18fs8ps76",tablet:"_18fs8ps77",desktop:"_18fs8ps78"},defaultClass:"_18fs8ps76"},11:{conditions:{mobile:"_18fs8ps79",tablet:"_18fs8ps7a",desktop:"_18fs8ps7b"},defaultClass:"_18fs8ps79"},12:{conditions:{mobile:"_18fs8ps7c",tablet:"_18fs8ps7d",desktop:"_18fs8ps7e"},defaultClass:"_18fs8ps7c"},auto:{conditions:{mobile:"_18fs8ps7f",tablet:"_18fs8ps7g",desktop:"_18fs8ps7h"},defaultClass:"_18fs8ps7f"}}},gridTemplateColumns:{values:{1:{conditions:{mobile:"_18fs8ps7i",tablet:"_18fs8ps7j",desktop:"_18fs8ps7k"},defaultClass:"_18fs8ps7i"},2:{conditions:{mobile:"_18fs8ps7l",tablet:"_18fs8ps7m",desktop:"_18fs8ps7n"},defaultClass:"_18fs8ps7l"},3:{conditions:{mobile:"_18fs8ps7o",tablet:"_18fs8ps7p",desktop:"_18fs8ps7q"},defaultClass:"_18fs8ps7o"},4:{conditions:{mobile:"_18fs8ps7r",tablet:"_18fs8ps7s",desktop:"_18fs8ps7t"},defaultClass:"_18fs8ps7r"},5:{conditions:{mobile:"_18fs8ps7u",tablet:"_18fs8ps7v",desktop:"_18fs8ps7w"},defaultClass:"_18fs8ps7u"},6:{conditions:{mobile:"_18fs8ps7x",tablet:"_18fs8ps7y",desktop:"_18fs8ps7z"},defaultClass:"_18fs8ps7x"},7:{conditions:{mobile:"_18fs8ps80",tablet:"_18fs8ps81",desktop:"_18fs8ps82"},defaultClass:"_18fs8ps80"},8:{conditions:{mobile:"_18fs8ps83",tablet:"_18fs8ps84",desktop:"_18fs8ps85"},defaultClass:"_18fs8ps83"},9:{conditions:{mobile:"_18fs8ps86",tablet:"_18fs8ps87",desktop:"_18fs8ps88"},defaultClass:"_18fs8ps86"},10:{conditions:{mobile:"_18fs8ps89",tablet:"_18fs8ps8a",desktop:"_18fs8ps8b"},defaultClass:"_18fs8ps89"},11:{conditions:{mobile:"_18fs8ps8c",tablet:"_18fs8ps8d",desktop:"_18fs8ps8e"},defaultClass:"_18fs8ps8c"},12:{conditions:{mobile:"_18fs8ps8f",tablet:"_18fs8ps8g",desktop:"_18fs8ps8h"},defaultClass:"_18fs8ps8f"},none:{conditions:{mobile:"_18fs8ps8i",tablet:"_18fs8ps8j",desktop:"_18fs8ps8k"},defaultClass:"_18fs8ps8i"}}},gridColumn:{values:{1:{conditions:{mobile:"_18fs8ps8l",tablet:"_18fs8ps8m",desktop:"_18fs8ps8n"},defaultClass:"_18fs8ps8l"},2:{conditions:{mobile:"_18fs8ps8o",tablet:"_18fs8ps8p",desktop:"_18fs8ps8q"},defaultClass:"_18fs8ps8o"},3:{conditions:{mobile:"_18fs8ps8r",tablet:"_18fs8ps8s",desktop:"_18fs8ps8t"},defaultClass:"_18fs8ps8r"},4:{conditions:{mobile:"_18fs8ps8u",tablet:"_18fs8ps8v",desktop:"_18fs8ps8w"},defaultClass:"_18fs8ps8u"},5:{conditions:{mobile:"_18fs8ps8x",tablet:"_18fs8ps8y",desktop:"_18fs8ps8z"},defaultClass:"_18fs8ps8x"},6:{conditions:{mobile:"_18fs8ps90",tablet:"_18fs8ps91",desktop:"_18fs8ps92"},defaultClass:"_18fs8ps90"},7:{conditions:{mobile:"_18fs8ps93",tablet:"_18fs8ps94",desktop:"_18fs8ps95"},defaultClass:"_18fs8ps93"},8:{conditions:{mobile:"_18fs8ps96",tablet:"_18fs8ps97",desktop:"_18fs8ps98"},defaultClass:"_18fs8ps96"},9:{conditions:{mobile:"_18fs8ps99",tablet:"_18fs8ps9a",desktop:"_18fs8ps9b"},defaultClass:"_18fs8ps99"},10:{conditions:{mobile:"_18fs8ps9c",tablet:"_18fs8ps9d",desktop:"_18fs8ps9e"},defaultClass:"_18fs8ps9c"},11:{conditions:{mobile:"_18fs8ps9f",tablet:"_18fs8ps9g",desktop:"_18fs8ps9h"},defaultClass:"_18fs8ps9f"},12:{conditions:{mobile:"_18fs8ps9i",tablet:"_18fs8ps9j",desktop:"_18fs8ps9k"},defaultClass:"_18fs8ps9i"},auto:{conditions:{mobile:"_18fs8ps9l",tablet:"_18fs8ps9m",desktop:"_18fs8ps9n"},defaultClass:"_18fs8ps9l"},full:{conditions:{mobile:"_18fs8ps9o",tablet:"_18fs8ps9p",desktop:"_18fs8ps9q"},defaultClass:"_18fs8ps9o"}}},gridColumnStart:{values:{1:{conditions:{mobile:"_18fs8ps9r",tablet:"_18fs8ps9s",desktop:"_18fs8ps9t"},defaultClass:"_18fs8ps9r"},2:{conditions:{mobile:"_18fs8ps9u",tablet:"_18fs8ps9v",desktop:"_18fs8ps9w"},defaultClass:"_18fs8ps9u"},3:{conditions:{mobile:"_18fs8ps9x",tablet:"_18fs8ps9y",desktop:"_18fs8ps9z"},defaultClass:"_18fs8ps9x"},4:{conditions:{mobile:"_18fs8psa0",tablet:"_18fs8psa1",desktop:"_18fs8psa2"},defaultClass:"_18fs8psa0"},5:{conditions:{mobile:"_18fs8psa3",tablet:"_18fs8psa4",desktop:"_18fs8psa5"},defaultClass:"_18fs8psa3"},6:{conditions:{mobile:"_18fs8psa6",tablet:"_18fs8psa7",desktop:"_18fs8psa8"},defaultClass:"_18fs8psa6"},7:{conditions:{mobile:"_18fs8psa9",tablet:"_18fs8psaa",desktop:"_18fs8psab"},defaultClass:"_18fs8psa9"},8:{conditions:{mobile:"_18fs8psac",tablet:"_18fs8psad",desktop:"_18fs8psae"},defaultClass:"_18fs8psac"},9:{conditions:{mobile:"_18fs8psaf",tablet:"_18fs8psag",desktop:"_18fs8psah"},defaultClass:"_18fs8psaf"},10:{conditions:{mobile:"_18fs8psai",tablet:"_18fs8psaj",desktop:"_18fs8psak"},defaultClass:"_18fs8psai"},11:{conditions:{mobile:"_18fs8psal",tablet:"_18fs8psam",desktop:"_18fs8psan"},defaultClass:"_18fs8psal"},12:{conditions:{mobile:"_18fs8psao",tablet:"_18fs8psap",desktop:"_18fs8psaq"},defaultClass:"_18fs8psao"},auto:{conditions:{mobile:"_18fs8psar",tablet:"_18fs8psas",desktop:"_18fs8psat"},defaultClass:"_18fs8psar"}}},gridColumnEnd:{values:{1:{conditions:{mobile:"_18fs8psau",tablet:"_18fs8psav",desktop:"_18fs8psaw"},defaultClass:"_18fs8psau"},2:{conditions:{mobile:"_18fs8psax",tablet:"_18fs8psay",desktop:"_18fs8psaz"},defaultClass:"_18fs8psax"},3:{conditions:{mobile:"_18fs8psb0",tablet:"_18fs8psb1",desktop:"_18fs8psb2"},defaultClass:"_18fs8psb0"},4:{conditions:{mobile:"_18fs8psb3",tablet:"_18fs8psb4",desktop:"_18fs8psb5"},defaultClass:"_18fs8psb3"},5:{conditions:{mobile:"_18fs8psb6",tablet:"_18fs8psb7",desktop:"_18fs8psb8"},defaultClass:"_18fs8psb6"},6:{conditions:{mobile:"_18fs8psb9",tablet:"_18fs8psba",desktop:"_18fs8psbb"},defaultClass:"_18fs8psb9"},7:{conditions:{mobile:"_18fs8psbc",tablet:"_18fs8psbd",desktop:"_18fs8psbe"},defaultClass:"_18fs8psbc"},8:{conditions:{mobile:"_18fs8psbf",tablet:"_18fs8psbg",desktop:"_18fs8psbh"},defaultClass:"_18fs8psbf"},9:{conditions:{mobile:"_18fs8psbi",tablet:"_18fs8psbj",desktop:"_18fs8psbk"},defaultClass:"_18fs8psbi"},10:{conditions:{mobile:"_18fs8psbl",tablet:"_18fs8psbm",desktop:"_18fs8psbn"},defaultClass:"_18fs8psbl"},11:{conditions:{mobile:"_18fs8psbo",tablet:"_18fs8psbp",desktop:"_18fs8psbq"},defaultClass:"_18fs8psbo"},12:{conditions:{mobile:"_18fs8psbr",tablet:"_18fs8psbs",desktop:"_18fs8psbt"},defaultClass:"_18fs8psbr"},auto:{conditions:{mobile:"_18fs8psbu",tablet:"_18fs8psbv",desktop:"_18fs8psbw"},defaultClass:"_18fs8psbu"}}},gridAutoFlow:{values:{row:{conditions:{mobile:"_18fs8psbx",tablet:"_18fs8psby",desktop:"_18fs8psbz"},defaultClass:"_18fs8psbx"},column:{conditions:{mobile:"_18fs8psc0",tablet:"_18fs8psc1",desktop:"_18fs8psc2"},defaultClass:"_18fs8psc0"},dense:{conditions:{mobile:"_18fs8psc3",tablet:"_18fs8psc4",desktop:"_18fs8psc5"},defaultClass:"_18fs8psc3"},"row dense":{conditions:{mobile:"_18fs8psc6",tablet:"_18fs8psc7",desktop:"_18fs8psc8"},defaultClass:"_18fs8psc6"},"column dense":{conditions:{mobile:"_18fs8psc9",tablet:"_18fs8psca",desktop:"_18fs8pscb"},defaultClass:"_18fs8psc9"}}},order:{values:{1:{conditions:{mobile:"_18fs8pscc",tablet:"_18fs8pscd",desktop:"_18fs8psce"},defaultClass:"_18fs8pscc"},2:{conditions:{mobile:"_18fs8pscf",tablet:"_18fs8pscg",desktop:"_18fs8psch"},defaultClass:"_18fs8pscf"},3:{conditions:{mobile:"_18fs8psci",tablet:"_18fs8pscj",desktop:"_18fs8psck"},defaultClass:"_18fs8psci"},4:{conditions:{mobile:"_18fs8pscl",tablet:"_18fs8pscm",desktop:"_18fs8pscn"},defaultClass:"_18fs8pscl"},5:{conditions:{mobile:"_18fs8psco",tablet:"_18fs8pscp",desktop:"_18fs8pscq"},defaultClass:"_18fs8psco"},6:{conditions:{mobile:"_18fs8pscr",tablet:"_18fs8pscs",desktop:"_18fs8psct"},defaultClass:"_18fs8pscr"},7:{conditions:{mobile:"_18fs8pscu",tablet:"_18fs8pscv",desktop:"_18fs8pscw"},defaultClass:"_18fs8pscu"},8:{conditions:{mobile:"_18fs8pscx",tablet:"_18fs8pscy",desktop:"_18fs8pscz"},defaultClass:"_18fs8pscx"},9:{conditions:{mobile:"_18fs8psd0",tablet:"_18fs8psd1",desktop:"_18fs8psd2"},defaultClass:"_18fs8psd0"},10:{conditions:{mobile:"_18fs8psd3",tablet:"_18fs8psd4",desktop:"_18fs8psd5"},defaultClass:"_18fs8psd3"},11:{conditions:{mobile:"_18fs8psd6",tablet:"_18fs8psd7",desktop:"_18fs8psd8"},defaultClass:"_18fs8psd6"},12:{conditions:{mobile:"_18fs8psd9",tablet:"_18fs8psda",desktop:"_18fs8psdb"},defaultClass:"_18fs8psd9"}}},flexWrap:{values:{nowrap:{conditions:{mobile:"_18fs8psdc",tablet:"_18fs8psdd",desktop:"_18fs8psde"},defaultClass:"_18fs8psdc"},wrap:{conditions:{mobile:"_18fs8psdf",tablet:"_18fs8psdg",desktop:"_18fs8psdh"},defaultClass:"_18fs8psdf"}}},gap:{values:{0:{conditions:{mobile:"_18fs8psdi",tablet:"_18fs8psdj",desktop:"_18fs8psdk"},defaultClass:"_18fs8psdi"},1:{conditions:{mobile:"_18fs8psdl",tablet:"_18fs8psdm",desktop:"_18fs8psdn"},defaultClass:"_18fs8psdl"},2:{conditions:{mobile:"_18fs8psdo",tablet:"_18fs8psdp",desktop:"_18fs8psdq"},defaultClass:"_18fs8psdo"},3:{conditions:{mobile:"_18fs8psdr",tablet:"_18fs8psds",desktop:"_18fs8psdt"},defaultClass:"_18fs8psdr"},4:{conditions:{mobile:"_18fs8psdu",tablet:"_18fs8psdv",desktop:"_18fs8psdw"},defaultClass:"_18fs8psdu"},5:{conditions:{mobile:"_18fs8psdx",tablet:"_18fs8psdy",desktop:"_18fs8psdz"},defaultClass:"_18fs8psdx"},6:{conditions:{mobile:"_18fs8pse0",tablet:"_18fs8pse1",desktop:"_18fs8pse2"},defaultClass:"_18fs8pse0"},7:{conditions:{mobile:"_18fs8pse3",tablet:"_18fs8pse4",desktop:"_18fs8pse5"},defaultClass:"_18fs8pse3"},8:{conditions:{mobile:"_18fs8pse6",tablet:"_18fs8pse7",desktop:"_18fs8pse8"},defaultClass:"_18fs8pse6"},9:{conditions:{mobile:"_18fs8pse9",tablet:"_18fs8psea",desktop:"_18fs8pseb"},defaultClass:"_18fs8pse9"},10:{conditions:{mobile:"_18fs8psec",tablet:"_18fs8psed",desktop:"_18fs8psee"},defaultClass:"_18fs8psec"},11:{conditions:{mobile:"_18fs8psef",tablet:"_18fs8pseg",desktop:"_18fs8pseh"},defaultClass:"_18fs8psef"},12:{conditions:{mobile:"_18fs8psei",tablet:"_18fs8psej",desktop:"_18fs8psek"},defaultClass:"_18fs8psei"},14:{conditions:{mobile:"_18fs8psel",tablet:"_18fs8psem",desktop:"_18fs8psen"},defaultClass:"_18fs8psel"},16:{conditions:{mobile:"_18fs8pseo",tablet:"_18fs8psep",desktop:"_18fs8pseq"},defaultClass:"_18fs8pseo"},20:{conditions:{mobile:"_18fs8pser",tablet:"_18fs8pses",desktop:"_18fs8pset"},defaultClass:"_18fs8pser"},24:{conditions:{mobile:"_18fs8pseu",tablet:"_18fs8psev",desktop:"_18fs8psew"},defaultClass:"_18fs8pseu"},28:{conditions:{mobile:"_18fs8psex",tablet:"_18fs8psey",desktop:"_18fs8psez"},defaultClass:"_18fs8psex"},32:{conditions:{mobile:"_18fs8psf0",tablet:"_18fs8psf1",desktop:"_18fs8psf2"},defaultClass:"_18fs8psf0"},36:{conditions:{mobile:"_18fs8psf3",tablet:"_18fs8psf4",desktop:"_18fs8psf5"},defaultClass:"_18fs8psf3"},40:{conditions:{mobile:"_18fs8psf6",tablet:"_18fs8psf7",desktop:"_18fs8psf8"},defaultClass:"_18fs8psf6"},44:{conditions:{mobile:"_18fs8psf9",tablet:"_18fs8psfa",desktop:"_18fs8psfb"},defaultClass:"_18fs8psf9"},48:{conditions:{mobile:"_18fs8psfc",tablet:"_18fs8psfd",desktop:"_18fs8psfe"},defaultClass:"_18fs8psfc"},52:{conditions:{mobile:"_18fs8psff",tablet:"_18fs8psfg",desktop:"_18fs8psfh"},defaultClass:"_18fs8psff"},px:{conditions:{mobile:"_18fs8psfi",tablet:"_18fs8psfj",desktop:"_18fs8psfk"},defaultClass:"_18fs8psfi"},"0.5":{conditions:{mobile:"_18fs8psfl",tablet:"_18fs8psfm",desktop:"_18fs8psfn"},defaultClass:"_18fs8psfl"},"1.5":{conditions:{mobile:"_18fs8psfo",tablet:"_18fs8psfp",desktop:"_18fs8psfq"},defaultClass:"_18fs8psfo"},"2.5":{conditions:{mobile:"_18fs8psfr",tablet:"_18fs8psfs",desktop:"_18fs8psft"},defaultClass:"_18fs8psfr"},"3.5":{conditions:{mobile:"_18fs8psfu",tablet:"_18fs8psfv",desktop:"_18fs8psfw"},defaultClass:"_18fs8psfu"}}},rowGap:{values:{0:{conditions:{mobile:"_18fs8psfx",tablet:"_18fs8psfy",desktop:"_18fs8psfz"},defaultClass:"_18fs8psfx"},1:{conditions:{mobile:"_18fs8psg0",tablet:"_18fs8psg1",desktop:"_18fs8psg2"},defaultClass:"_18fs8psg0"},2:{conditions:{mobile:"_18fs8psg3",tablet:"_18fs8psg4",desktop:"_18fs8psg5"},defaultClass:"_18fs8psg3"},3:{conditions:{mobile:"_18fs8psg6",tablet:"_18fs8psg7",desktop:"_18fs8psg8"},defaultClass:"_18fs8psg6"},4:{conditions:{mobile:"_18fs8psg9",tablet:"_18fs8psga",desktop:"_18fs8psgb"},defaultClass:"_18fs8psg9"},5:{conditions:{mobile:"_18fs8psgc",tablet:"_18fs8psgd",desktop:"_18fs8psge"},defaultClass:"_18fs8psgc"},6:{conditions:{mobile:"_18fs8psgf",tablet:"_18fs8psgg",desktop:"_18fs8psgh"},defaultClass:"_18fs8psgf"},7:{conditions:{mobile:"_18fs8psgi",tablet:"_18fs8psgj",desktop:"_18fs8psgk"},defaultClass:"_18fs8psgi"},8:{conditions:{mobile:"_18fs8psgl",tablet:"_18fs8psgm",desktop:"_18fs8psgn"},defaultClass:"_18fs8psgl"},9:{conditions:{mobile:"_18fs8psgo",tablet:"_18fs8psgp",desktop:"_18fs8psgq"},defaultClass:"_18fs8psgo"},10:{conditions:{mobile:"_18fs8psgr",tablet:"_18fs8psgs",desktop:"_18fs8psgt"},defaultClass:"_18fs8psgr"},11:{conditions:{mobile:"_18fs8psgu",tablet:"_18fs8psgv",desktop:"_18fs8psgw"},defaultClass:"_18fs8psgu"},12:{conditions:{mobile:"_18fs8psgx",tablet:"_18fs8psgy",desktop:"_18fs8psgz"},defaultClass:"_18fs8psgx"},14:{conditions:{mobile:"_18fs8psh0",tablet:"_18fs8psh1",desktop:"_18fs8psh2"},defaultClass:"_18fs8psh0"},16:{conditions:{mobile:"_18fs8psh3",tablet:"_18fs8psh4",desktop:"_18fs8psh5"},defaultClass:"_18fs8psh3"},20:{conditions:{mobile:"_18fs8psh6",tablet:"_18fs8psh7",desktop:"_18fs8psh8"},defaultClass:"_18fs8psh6"},24:{conditions:{mobile:"_18fs8psh9",tablet:"_18fs8psha",desktop:"_18fs8pshb"},defaultClass:"_18fs8psh9"},28:{conditions:{mobile:"_18fs8pshc",tablet:"_18fs8pshd",desktop:"_18fs8pshe"},defaultClass:"_18fs8pshc"},32:{conditions:{mobile:"_18fs8pshf",tablet:"_18fs8pshg",desktop:"_18fs8pshh"},defaultClass:"_18fs8pshf"},36:{conditions:{mobile:"_18fs8pshi",tablet:"_18fs8pshj",desktop:"_18fs8pshk"},defaultClass:"_18fs8pshi"},40:{conditions:{mobile:"_18fs8pshl",tablet:"_18fs8pshm",desktop:"_18fs8pshn"},defaultClass:"_18fs8pshl"},44:{conditions:{mobile:"_18fs8psho",tablet:"_18fs8pshp",desktop:"_18fs8pshq"},defaultClass:"_18fs8psho"},48:{conditions:{mobile:"_18fs8pshr",tablet:"_18fs8pshs",desktop:"_18fs8psht"},defaultClass:"_18fs8pshr"},52:{conditions:{mobile:"_18fs8pshu",tablet:"_18fs8pshv",desktop:"_18fs8pshw"},defaultClass:"_18fs8pshu"},px:{conditions:{mobile:"_18fs8pshx",tablet:"_18fs8pshy",desktop:"_18fs8pshz"},defaultClass:"_18fs8pshx"},"0.5":{conditions:{mobile:"_18fs8psi0",tablet:"_18fs8psi1",desktop:"_18fs8psi2"},defaultClass:"_18fs8psi0"},"1.5":{conditions:{mobile:"_18fs8psi3",tablet:"_18fs8psi4",desktop:"_18fs8psi5"},defaultClass:"_18fs8psi3"},"2.5":{conditions:{mobile:"_18fs8psi6",tablet:"_18fs8psi7",desktop:"_18fs8psi8"},defaultClass:"_18fs8psi6"},"3.5":{conditions:{mobile:"_18fs8psi9",tablet:"_18fs8psia",desktop:"_18fs8psib"},defaultClass:"_18fs8psi9"}}},columnGap:{values:{0:{conditions:{mobile:"_18fs8psic",tablet:"_18fs8psid",desktop:"_18fs8psie"},defaultClass:"_18fs8psic"},1:{conditions:{mobile:"_18fs8psif",tablet:"_18fs8psig",desktop:"_18fs8psih"},defaultClass:"_18fs8psif"},2:{conditions:{mobile:"_18fs8psii",tablet:"_18fs8psij",desktop:"_18fs8psik"},defaultClass:"_18fs8psii"},3:{conditions:{mobile:"_18fs8psil",tablet:"_18fs8psim",desktop:"_18fs8psin"},defaultClass:"_18fs8psil"},4:{conditions:{mobile:"_18fs8psio",tablet:"_18fs8psip",desktop:"_18fs8psiq"},defaultClass:"_18fs8psio"},5:{conditions:{mobile:"_18fs8psir",tablet:"_18fs8psis",desktop:"_18fs8psit"},defaultClass:"_18fs8psir"},6:{conditions:{mobile:"_18fs8psiu",tablet:"_18fs8psiv",desktop:"_18fs8psiw"},defaultClass:"_18fs8psiu"},7:{conditions:{mobile:"_18fs8psix",tablet:"_18fs8psiy",desktop:"_18fs8psiz"},defaultClass:"_18fs8psix"},8:{conditions:{mobile:"_18fs8psj0",tablet:"_18fs8psj1",desktop:"_18fs8psj2"},defaultClass:"_18fs8psj0"},9:{conditions:{mobile:"_18fs8psj3",tablet:"_18fs8psj4",desktop:"_18fs8psj5"},defaultClass:"_18fs8psj3"},10:{conditions:{mobile:"_18fs8psj6",tablet:"_18fs8psj7",desktop:"_18fs8psj8"},defaultClass:"_18fs8psj6"},11:{conditions:{mobile:"_18fs8psj9",tablet:"_18fs8psja",desktop:"_18fs8psjb"},defaultClass:"_18fs8psj9"},12:{conditions:{mobile:"_18fs8psjc",tablet:"_18fs8psjd",desktop:"_18fs8psje"},defaultClass:"_18fs8psjc"},14:{conditions:{mobile:"_18fs8psjf",tablet:"_18fs8psjg",desktop:"_18fs8psjh"},defaultClass:"_18fs8psjf"},16:{conditions:{mobile:"_18fs8psji",tablet:"_18fs8psjj",desktop:"_18fs8psjk"},defaultClass:"_18fs8psji"},20:{conditions:{mobile:"_18fs8psjl",tablet:"_18fs8psjm",desktop:"_18fs8psjn"},defaultClass:"_18fs8psjl"},24:{conditions:{mobile:"_18fs8psjo",tablet:"_18fs8psjp",desktop:"_18fs8psjq"},defaultClass:"_18fs8psjo"},28:{conditions:{mobile:"_18fs8psjr",tablet:"_18fs8psjs",desktop:"_18fs8psjt"},defaultClass:"_18fs8psjr"},32:{conditions:{mobile:"_18fs8psju",tablet:"_18fs8psjv",desktop:"_18fs8psjw"},defaultClass:"_18fs8psju"},36:{conditions:{mobile:"_18fs8psjx",tablet:"_18fs8psjy",desktop:"_18fs8psjz"},defaultClass:"_18fs8psjx"},40:{conditions:{mobile:"_18fs8psk0",tablet:"_18fs8psk1",desktop:"_18fs8psk2"},defaultClass:"_18fs8psk0"},44:{conditions:{mobile:"_18fs8psk3",tablet:"_18fs8psk4",desktop:"_18fs8psk5"},defaultClass:"_18fs8psk3"},48:{conditions:{mobile:"_18fs8psk6",tablet:"_18fs8psk7",desktop:"_18fs8psk8"},defaultClass:"_18fs8psk6"},52:{conditions:{mobile:"_18fs8psk9",tablet:"_18fs8pska",desktop:"_18fs8pskb"},defaultClass:"_18fs8psk9"},px:{conditions:{mobile:"_18fs8pskc",tablet:"_18fs8pskd",desktop:"_18fs8pske"},defaultClass:"_18fs8pskc"},"0.5":{conditions:{mobile:"_18fs8pskf",tablet:"_18fs8pskg",desktop:"_18fs8pskh"},defaultClass:"_18fs8pskf"},"1.5":{conditions:{mobile:"_18fs8pski",tablet:"_18fs8pskj",desktop:"_18fs8pskk"},defaultClass:"_18fs8pski"},"2.5":{conditions:{mobile:"_18fs8pskl",tablet:"_18fs8pskm",desktop:"_18fs8pskn"},defaultClass:"_18fs8pskl"},"3.5":{conditions:{mobile:"_18fs8psko",tablet:"_18fs8pskp",desktop:"_18fs8pskq"},defaultClass:"_18fs8psko"}}},paddingTop:{values:{0:{conditions:{mobile:"_18fs8pskr",tablet:"_18fs8psks",desktop:"_18fs8pskt"},defaultClass:"_18fs8pskr"},1:{conditions:{mobile:"_18fs8psku",tablet:"_18fs8pskv",desktop:"_18fs8pskw"},defaultClass:"_18fs8psku"},2:{conditions:{mobile:"_18fs8pskx",tablet:"_18fs8psky",desktop:"_18fs8pskz"},defaultClass:"_18fs8pskx"},3:{conditions:{mobile:"_18fs8psl0",tablet:"_18fs8psl1",desktop:"_18fs8psl2"},defaultClass:"_18fs8psl0"},4:{conditions:{mobile:"_18fs8psl3",tablet:"_18fs8psl4",desktop:"_18fs8psl5"},defaultClass:"_18fs8psl3"},5:{conditions:{mobile:"_18fs8psl6",tablet:"_18fs8psl7",desktop:"_18fs8psl8"},defaultClass:"_18fs8psl6"},6:{conditions:{mobile:"_18fs8psl9",tablet:"_18fs8psla",desktop:"_18fs8pslb"},defaultClass:"_18fs8psl9"},7:{conditions:{mobile:"_18fs8pslc",tablet:"_18fs8psld",desktop:"_18fs8psle"},defaultClass:"_18fs8pslc"},8:{conditions:{mobile:"_18fs8pslf",tablet:"_18fs8pslg",desktop:"_18fs8pslh"},defaultClass:"_18fs8pslf"},9:{conditions:{mobile:"_18fs8psli",tablet:"_18fs8pslj",desktop:"_18fs8pslk"},defaultClass:"_18fs8psli"},10:{conditions:{mobile:"_18fs8psll",tablet:"_18fs8pslm",desktop:"_18fs8psln"},defaultClass:"_18fs8psll"},11:{conditions:{mobile:"_18fs8pslo",tablet:"_18fs8pslp",desktop:"_18fs8pslq"},defaultClass:"_18fs8pslo"},12:{conditions:{mobile:"_18fs8pslr",tablet:"_18fs8psls",desktop:"_18fs8pslt"},defaultClass:"_18fs8pslr"},14:{conditions:{mobile:"_18fs8pslu",tablet:"_18fs8pslv",desktop:"_18fs8pslw"},defaultClass:"_18fs8pslu"},16:{conditions:{mobile:"_18fs8pslx",tablet:"_18fs8psly",desktop:"_18fs8pslz"},defaultClass:"_18fs8pslx"},20:{conditions:{mobile:"_18fs8psm0",tablet:"_18fs8psm1",desktop:"_18fs8psm2"},defaultClass:"_18fs8psm0"},24:{conditions:{mobile:"_18fs8psm3",tablet:"_18fs8psm4",desktop:"_18fs8psm5"},defaultClass:"_18fs8psm3"},28:{conditions:{mobile:"_18fs8psm6",tablet:"_18fs8psm7",desktop:"_18fs8psm8"},defaultClass:"_18fs8psm6"},32:{conditions:{mobile:"_18fs8psm9",tablet:"_18fs8psma",desktop:"_18fs8psmb"},defaultClass:"_18fs8psm9"},36:{conditions:{mobile:"_18fs8psmc",tablet:"_18fs8psmd",desktop:"_18fs8psme"},defaultClass:"_18fs8psmc"},40:{conditions:{mobile:"_18fs8psmf",tablet:"_18fs8psmg",desktop:"_18fs8psmh"},defaultClass:"_18fs8psmf"},44:{conditions:{mobile:"_18fs8psmi",tablet:"_18fs8psmj",desktop:"_18fs8psmk"},defaultClass:"_18fs8psmi"},48:{conditions:{mobile:"_18fs8psml",tablet:"_18fs8psmm",desktop:"_18fs8psmn"},defaultClass:"_18fs8psml"},52:{conditions:{mobile:"_18fs8psmo",tablet:"_18fs8psmp",desktop:"_18fs8psmq"},defaultClass:"_18fs8psmo"},px:{conditions:{mobile:"_18fs8psmr",tablet:"_18fs8psms",desktop:"_18fs8psmt"},defaultClass:"_18fs8psmr"},"0.5":{conditions:{mobile:"_18fs8psmu",tablet:"_18fs8psmv",desktop:"_18fs8psmw"},defaultClass:"_18fs8psmu"},"1.5":{conditions:{mobile:"_18fs8psmx",tablet:"_18fs8psmy",desktop:"_18fs8psmz"},defaultClass:"_18fs8psmx"},"2.5":{conditions:{mobile:"_18fs8psn0",tablet:"_18fs8psn1",desktop:"_18fs8psn2"},defaultClass:"_18fs8psn0"},"3.5":{conditions:{mobile:"_18fs8psn3",tablet:"_18fs8psn4",desktop:"_18fs8psn5"},defaultClass:"_18fs8psn3"}}},paddingBottom:{values:{0:{conditions:{mobile:"_18fs8psn6",tablet:"_18fs8psn7",desktop:"_18fs8psn8"},defaultClass:"_18fs8psn6"},1:{conditions:{mobile:"_18fs8psn9",tablet:"_18fs8psna",desktop:"_18fs8psnb"},defaultClass:"_18fs8psn9"},2:{conditions:{mobile:"_18fs8psnc",tablet:"_18fs8psnd",desktop:"_18fs8psne"},defaultClass:"_18fs8psnc"},3:{conditions:{mobile:"_18fs8psnf",tablet:"_18fs8psng",desktop:"_18fs8psnh"},defaultClass:"_18fs8psnf"},4:{conditions:{mobile:"_18fs8psni",tablet:"_18fs8psnj",desktop:"_18fs8psnk"},defaultClass:"_18fs8psni"},5:{conditions:{mobile:"_18fs8psnl",tablet:"_18fs8psnm",desktop:"_18fs8psnn"},defaultClass:"_18fs8psnl"},6:{conditions:{mobile:"_18fs8psno",tablet:"_18fs8psnp",desktop:"_18fs8psnq"},defaultClass:"_18fs8psno"},7:{conditions:{mobile:"_18fs8psnr",tablet:"_18fs8psns",desktop:"_18fs8psnt"},defaultClass:"_18fs8psnr"},8:{conditions:{mobile:"_18fs8psnu",tablet:"_18fs8psnv",desktop:"_18fs8psnw"},defaultClass:"_18fs8psnu"},9:{conditions:{mobile:"_18fs8psnx",tablet:"_18fs8psny",desktop:"_18fs8psnz"},defaultClass:"_18fs8psnx"},10:{conditions:{mobile:"_18fs8pso0",tablet:"_18fs8pso1",desktop:"_18fs8pso2"},defaultClass:"_18fs8pso0"},11:{conditions:{mobile:"_18fs8pso3",tablet:"_18fs8pso4",desktop:"_18fs8pso5"},defaultClass:"_18fs8pso3"},12:{conditions:{mobile:"_18fs8pso6",tablet:"_18fs8pso7",desktop:"_18fs8pso8"},defaultClass:"_18fs8pso6"},14:{conditions:{mobile:"_18fs8pso9",tablet:"_18fs8psoa",desktop:"_18fs8psob"},defaultClass:"_18fs8pso9"},16:{conditions:{mobile:"_18fs8psoc",tablet:"_18fs8psod",desktop:"_18fs8psoe"},defaultClass:"_18fs8psoc"},20:{conditions:{mobile:"_18fs8psof",tablet:"_18fs8psog",desktop:"_18fs8psoh"},defaultClass:"_18fs8psof"},24:{conditions:{mobile:"_18fs8psoi",tablet:"_18fs8psoj",desktop:"_18fs8psok"},defaultClass:"_18fs8psoi"},28:{conditions:{mobile:"_18fs8psol",tablet:"_18fs8psom",desktop:"_18fs8pson"},defaultClass:"_18fs8psol"},32:{conditions:{mobile:"_18fs8psoo",tablet:"_18fs8psop",desktop:"_18fs8psoq"},defaultClass:"_18fs8psoo"},36:{conditions:{mobile:"_18fs8psor",tablet:"_18fs8psos",desktop:"_18fs8psot"},defaultClass:"_18fs8psor"},40:{conditions:{mobile:"_18fs8psou",tablet:"_18fs8psov",desktop:"_18fs8psow"},defaultClass:"_18fs8psou"},44:{conditions:{mobile:"_18fs8psox",tablet:"_18fs8psoy",desktop:"_18fs8psoz"},defaultClass:"_18fs8psox"},48:{conditions:{mobile:"_18fs8psp0",tablet:"_18fs8psp1",desktop:"_18fs8psp2"},defaultClass:"_18fs8psp0"},52:{conditions:{mobile:"_18fs8psp3",tablet:"_18fs8psp4",desktop:"_18fs8psp5"},defaultClass:"_18fs8psp3"},px:{conditions:{mobile:"_18fs8psp6",tablet:"_18fs8psp7",desktop:"_18fs8psp8"},defaultClass:"_18fs8psp6"},"0.5":{conditions:{mobile:"_18fs8psp9",tablet:"_18fs8pspa",desktop:"_18fs8pspb"},defaultClass:"_18fs8psp9"},"1.5":{conditions:{mobile:"_18fs8pspc",tablet:"_18fs8pspd",desktop:"_18fs8pspe"},defaultClass:"_18fs8pspc"},"2.5":{conditions:{mobile:"_18fs8pspf",tablet:"_18fs8pspg",desktop:"_18fs8psph"},defaultClass:"_18fs8pspf"},"3.5":{conditions:{mobile:"_18fs8pspi",tablet:"_18fs8pspj",desktop:"_18fs8pspk"},defaultClass:"_18fs8pspi"}}},paddingLeft:{values:{0:{conditions:{mobile:"_18fs8pspl",tablet:"_18fs8pspm",desktop:"_18fs8pspn"},defaultClass:"_18fs8pspl"},1:{conditions:{mobile:"_18fs8pspo",tablet:"_18fs8pspp",desktop:"_18fs8pspq"},defaultClass:"_18fs8pspo"},2:{conditions:{mobile:"_18fs8pspr",tablet:"_18fs8psps",desktop:"_18fs8pspt"},defaultClass:"_18fs8pspr"},3:{conditions:{mobile:"_18fs8pspu",tablet:"_18fs8pspv",desktop:"_18fs8pspw"},defaultClass:"_18fs8pspu"},4:{conditions:{mobile:"_18fs8pspx",tablet:"_18fs8pspy",desktop:"_18fs8pspz"},defaultClass:"_18fs8pspx"},5:{conditions:{mobile:"_18fs8psq0",tablet:"_18fs8psq1",desktop:"_18fs8psq2"},defaultClass:"_18fs8psq0"},6:{conditions:{mobile:"_18fs8psq3",tablet:"_18fs8psq4",desktop:"_18fs8psq5"},defaultClass:"_18fs8psq3"},7:{conditions:{mobile:"_18fs8psq6",tablet:"_18fs8psq7",desktop:"_18fs8psq8"},defaultClass:"_18fs8psq6"},8:{conditions:{mobile:"_18fs8psq9",tablet:"_18fs8psqa",desktop:"_18fs8psqb"},defaultClass:"_18fs8psq9"},9:{conditions:{mobile:"_18fs8psqc",tablet:"_18fs8psqd",desktop:"_18fs8psqe"},defaultClass:"_18fs8psqc"},10:{conditions:{mobile:"_18fs8psqf",tablet:"_18fs8psqg",desktop:"_18fs8psqh"},defaultClass:"_18fs8psqf"},11:{conditions:{mobile:"_18fs8psqi",tablet:"_18fs8psqj",desktop:"_18fs8psqk"},defaultClass:"_18fs8psqi"},12:{conditions:{mobile:"_18fs8psql",tablet:"_18fs8psqm",desktop:"_18fs8psqn"},defaultClass:"_18fs8psql"},14:{conditions:{mobile:"_18fs8psqo",tablet:"_18fs8psqp",desktop:"_18fs8psqq"},defaultClass:"_18fs8psqo"},16:{conditions:{mobile:"_18fs8psqr",tablet:"_18fs8psqs",desktop:"_18fs8psqt"},defaultClass:"_18fs8psqr"},20:{conditions:{mobile:"_18fs8psqu",tablet:"_18fs8psqv",desktop:"_18fs8psqw"},defaultClass:"_18fs8psqu"},24:{conditions:{mobile:"_18fs8psqx",tablet:"_18fs8psqy",desktop:"_18fs8psqz"},defaultClass:"_18fs8psqx"},28:{conditions:{mobile:"_18fs8psr0",tablet:"_18fs8psr1",desktop:"_18fs8psr2"},defaultClass:"_18fs8psr0"},32:{conditions:{mobile:"_18fs8psr3",tablet:"_18fs8psr4",desktop:"_18fs8psr5"},defaultClass:"_18fs8psr3"},36:{conditions:{mobile:"_18fs8psr6",tablet:"_18fs8psr7",desktop:"_18fs8psr8"},defaultClass:"_18fs8psr6"},40:{conditions:{mobile:"_18fs8psr9",tablet:"_18fs8psra",desktop:"_18fs8psrb"},defaultClass:"_18fs8psr9"},44:{conditions:{mobile:"_18fs8psrc",tablet:"_18fs8psrd",desktop:"_18fs8psre"},defaultClass:"_18fs8psrc"},48:{conditions:{mobile:"_18fs8psrf",tablet:"_18fs8psrg",desktop:"_18fs8psrh"},defaultClass:"_18fs8psrf"},52:{conditions:{mobile:"_18fs8psri",tablet:"_18fs8psrj",desktop:"_18fs8psrk"},defaultClass:"_18fs8psri"},px:{conditions:{mobile:"_18fs8psrl",tablet:"_18fs8psrm",desktop:"_18fs8psrn"},defaultClass:"_18fs8psrl"},"0.5":{conditions:{mobile:"_18fs8psro",tablet:"_18fs8psrp",desktop:"_18fs8psrq"},defaultClass:"_18fs8psro"},"1.5":{conditions:{mobile:"_18fs8psrr",tablet:"_18fs8psrs",desktop:"_18fs8psrt"},defaultClass:"_18fs8psrr"},"2.5":{conditions:{mobile:"_18fs8psru",tablet:"_18fs8psrv",desktop:"_18fs8psrw"},defaultClass:"_18fs8psru"},"3.5":{conditions:{mobile:"_18fs8psrx",tablet:"_18fs8psry",desktop:"_18fs8psrz"},defaultClass:"_18fs8psrx"}}},paddingRight:{values:{0:{conditions:{mobile:"_18fs8pss0",tablet:"_18fs8pss1",desktop:"_18fs8pss2"},defaultClass:"_18fs8pss0"},1:{conditions:{mobile:"_18fs8pss3",tablet:"_18fs8pss4",desktop:"_18fs8pss5"},defaultClass:"_18fs8pss3"},2:{conditions:{mobile:"_18fs8pss6",tablet:"_18fs8pss7",desktop:"_18fs8pss8"},defaultClass:"_18fs8pss6"},3:{conditions:{mobile:"_18fs8pss9",tablet:"_18fs8pssa",desktop:"_18fs8pssb"},defaultClass:"_18fs8pss9"},4:{conditions:{mobile:"_18fs8pssc",tablet:"_18fs8pssd",desktop:"_18fs8psse"},defaultClass:"_18fs8pssc"},5:{conditions:{mobile:"_18fs8pssf",tablet:"_18fs8pssg",desktop:"_18fs8pssh"},defaultClass:"_18fs8pssf"},6:{conditions:{mobile:"_18fs8pssi",tablet:"_18fs8pssj",desktop:"_18fs8pssk"},defaultClass:"_18fs8pssi"},7:{conditions:{mobile:"_18fs8pssl",tablet:"_18fs8pssm",desktop:"_18fs8pssn"},defaultClass:"_18fs8pssl"},8:{conditions:{mobile:"_18fs8psso",tablet:"_18fs8pssp",desktop:"_18fs8pssq"},defaultClass:"_18fs8psso"},9:{conditions:{mobile:"_18fs8pssr",tablet:"_18fs8psss",desktop:"_18fs8psst"},defaultClass:"_18fs8pssr"},10:{conditions:{mobile:"_18fs8pssu",tablet:"_18fs8pssv",desktop:"_18fs8pssw"},defaultClass:"_18fs8pssu"},11:{conditions:{mobile:"_18fs8pssx",tablet:"_18fs8pssy",desktop:"_18fs8pssz"},defaultClass:"_18fs8pssx"},12:{conditions:{mobile:"_18fs8pst0",tablet:"_18fs8pst1",desktop:"_18fs8pst2"},defaultClass:"_18fs8pst0"},14:{conditions:{mobile:"_18fs8pst3",tablet:"_18fs8pst4",desktop:"_18fs8pst5"},defaultClass:"_18fs8pst3"},16:{conditions:{mobile:"_18fs8pst6",tablet:"_18fs8pst7",desktop:"_18fs8pst8"},defaultClass:"_18fs8pst6"},20:{conditions:{mobile:"_18fs8pst9",tablet:"_18fs8psta",desktop:"_18fs8pstb"},defaultClass:"_18fs8pst9"},24:{conditions:{mobile:"_18fs8pstc",tablet:"_18fs8pstd",desktop:"_18fs8pste"},defaultClass:"_18fs8pstc"},28:{conditions:{mobile:"_18fs8pstf",tablet:"_18fs8pstg",desktop:"_18fs8psth"},defaultClass:"_18fs8pstf"},32:{conditions:{mobile:"_18fs8psti",tablet:"_18fs8pstj",desktop:"_18fs8pstk"},defaultClass:"_18fs8psti"},36:{conditions:{mobile:"_18fs8pstl",tablet:"_18fs8pstm",desktop:"_18fs8pstn"},defaultClass:"_18fs8pstl"},40:{conditions:{mobile:"_18fs8psto",tablet:"_18fs8pstp",desktop:"_18fs8pstq"},defaultClass:"_18fs8psto"},44:{conditions:{mobile:"_18fs8pstr",tablet:"_18fs8psts",desktop:"_18fs8pstt"},defaultClass:"_18fs8pstr"},48:{conditions:{mobile:"_18fs8pstu",tablet:"_18fs8pstv",desktop:"_18fs8pstw"},defaultClass:"_18fs8pstu"},52:{conditions:{mobile:"_18fs8pstx",tablet:"_18fs8psty",desktop:"_18fs8pstz"},defaultClass:"_18fs8pstx"},px:{conditions:{mobile:"_18fs8psu0",tablet:"_18fs8psu1",desktop:"_18fs8psu2"},defaultClass:"_18fs8psu0"},"0.5":{conditions:{mobile:"_18fs8psu3",tablet:"_18fs8psu4",desktop:"_18fs8psu5"},defaultClass:"_18fs8psu3"},"1.5":{conditions:{mobile:"_18fs8psu6",tablet:"_18fs8psu7",desktop:"_18fs8psu8"},defaultClass:"_18fs8psu6"},"2.5":{conditions:{mobile:"_18fs8psu9",tablet:"_18fs8psua",desktop:"_18fs8psub"},defaultClass:"_18fs8psu9"},"3.5":{conditions:{mobile:"_18fs8psuc",tablet:"_18fs8psud",desktop:"_18fs8psue"},defaultClass:"_18fs8psuc"}}},marginTop:{values:{0:{conditions:{mobile:"_18fs8psuf",tablet:"_18fs8psug",desktop:"_18fs8psuh"},defaultClass:"_18fs8psuf"},1:{conditions:{mobile:"_18fs8psui",tablet:"_18fs8psuj",desktop:"_18fs8psuk"},defaultClass:"_18fs8psui"},2:{conditions:{mobile:"_18fs8psul",tablet:"_18fs8psum",desktop:"_18fs8psun"},defaultClass:"_18fs8psul"},3:{conditions:{mobile:"_18fs8psuo",tablet:"_18fs8psup",desktop:"_18fs8psuq"},defaultClass:"_18fs8psuo"},4:{conditions:{mobile:"_18fs8psur",tablet:"_18fs8psus",desktop:"_18fs8psut"},defaultClass:"_18fs8psur"},5:{conditions:{mobile:"_18fs8psuu",tablet:"_18fs8psuv",desktop:"_18fs8psuw"},defaultClass:"_18fs8psuu"},6:{conditions:{mobile:"_18fs8psux",tablet:"_18fs8psuy",desktop:"_18fs8psuz"},defaultClass:"_18fs8psux"},7:{conditions:{mobile:"_18fs8psv0",tablet:"_18fs8psv1",desktop:"_18fs8psv2"},defaultClass:"_18fs8psv0"},8:{conditions:{mobile:"_18fs8psv3",tablet:"_18fs8psv4",desktop:"_18fs8psv5"},defaultClass:"_18fs8psv3"},9:{conditions:{mobile:"_18fs8psv6",tablet:"_18fs8psv7",desktop:"_18fs8psv8"},defaultClass:"_18fs8psv6"},10:{conditions:{mobile:"_18fs8psv9",tablet:"_18fs8psva",desktop:"_18fs8psvb"},defaultClass:"_18fs8psv9"},11:{conditions:{mobile:"_18fs8psvc",tablet:"_18fs8psvd",desktop:"_18fs8psve"},defaultClass:"_18fs8psvc"},12:{conditions:{mobile:"_18fs8psvf",tablet:"_18fs8psvg",desktop:"_18fs8psvh"},defaultClass:"_18fs8psvf"},14:{conditions:{mobile:"_18fs8psvi",tablet:"_18fs8psvj",desktop:"_18fs8psvk"},defaultClass:"_18fs8psvi"},16:{conditions:{mobile:"_18fs8psvl",tablet:"_18fs8psvm",desktop:"_18fs8psvn"},defaultClass:"_18fs8psvl"},20:{conditions:{mobile:"_18fs8psvo",tablet:"_18fs8psvp",desktop:"_18fs8psvq"},defaultClass:"_18fs8psvo"},24:{conditions:{mobile:"_18fs8psvr",tablet:"_18fs8psvs",desktop:"_18fs8psvt"},defaultClass:"_18fs8psvr"},28:{conditions:{mobile:"_18fs8psvu",tablet:"_18fs8psvv",desktop:"_18fs8psvw"},defaultClass:"_18fs8psvu"},32:{conditions:{mobile:"_18fs8psvx",tablet:"_18fs8psvy",desktop:"_18fs8psvz"},defaultClass:"_18fs8psvx"},36:{conditions:{mobile:"_18fs8psw0",tablet:"_18fs8psw1",desktop:"_18fs8psw2"},defaultClass:"_18fs8psw0"},40:{conditions:{mobile:"_18fs8psw3",tablet:"_18fs8psw4",desktop:"_18fs8psw5"},defaultClass:"_18fs8psw3"},44:{conditions:{mobile:"_18fs8psw6",tablet:"_18fs8psw7",desktop:"_18fs8psw8"},defaultClass:"_18fs8psw6"},48:{conditions:{mobile:"_18fs8psw9",tablet:"_18fs8pswa",desktop:"_18fs8pswb"},defaultClass:"_18fs8psw9"},52:{conditions:{mobile:"_18fs8pswc",tablet:"_18fs8pswd",desktop:"_18fs8pswe"},defaultClass:"_18fs8pswc"},px:{conditions:{mobile:"_18fs8pswf",tablet:"_18fs8pswg",desktop:"_18fs8pswh"},defaultClass:"_18fs8pswf"},"0.5":{conditions:{mobile:"_18fs8pswi",tablet:"_18fs8pswj",desktop:"_18fs8pswk"},defaultClass:"_18fs8pswi"},"1.5":{conditions:{mobile:"_18fs8pswl",tablet:"_18fs8pswm",desktop:"_18fs8pswn"},defaultClass:"_18fs8pswl"},"2.5":{conditions:{mobile:"_18fs8pswo",tablet:"_18fs8pswp",desktop:"_18fs8pswq"},defaultClass:"_18fs8pswo"},"3.5":{conditions:{mobile:"_18fs8pswr",tablet:"_18fs8psws",desktop:"_18fs8pswt"},defaultClass:"_18fs8pswr"},auto:{conditions:{mobile:"_18fs8pswu",tablet:"_18fs8pswv",desktop:"_18fs8psww"},defaultClass:"_18fs8pswu"}}},marginBottom:{values:{0:{conditions:{mobile:"_18fs8pswx",tablet:"_18fs8pswy",desktop:"_18fs8pswz"},defaultClass:"_18fs8pswx"},1:{conditions:{mobile:"_18fs8psx0",tablet:"_18fs8psx1",desktop:"_18fs8psx2"},defaultClass:"_18fs8psx0"},2:{conditions:{mobile:"_18fs8psx3",tablet:"_18fs8psx4",desktop:"_18fs8psx5"},defaultClass:"_18fs8psx3"},3:{conditions:{mobile:"_18fs8psx6",tablet:"_18fs8psx7",desktop:"_18fs8psx8"},defaultClass:"_18fs8psx6"},4:{conditions:{mobile:"_18fs8psx9",tablet:"_18fs8psxa",desktop:"_18fs8psxb"},defaultClass:"_18fs8psx9"},5:{conditions:{mobile:"_18fs8psxc",tablet:"_18fs8psxd",desktop:"_18fs8psxe"},defaultClass:"_18fs8psxc"},6:{conditions:{mobile:"_18fs8psxf",tablet:"_18fs8psxg",desktop:"_18fs8psxh"},defaultClass:"_18fs8psxf"},7:{conditions:{mobile:"_18fs8psxi",tablet:"_18fs8psxj",desktop:"_18fs8psxk"},defaultClass:"_18fs8psxi"},8:{conditions:{mobile:"_18fs8psxl",tablet:"_18fs8psxm",desktop:"_18fs8psxn"},defaultClass:"_18fs8psxl"},9:{conditions:{mobile:"_18fs8psxo",tablet:"_18fs8psxp",desktop:"_18fs8psxq"},defaultClass:"_18fs8psxo"},10:{conditions:{mobile:"_18fs8psxr",tablet:"_18fs8psxs",desktop:"_18fs8psxt"},defaultClass:"_18fs8psxr"},11:{conditions:{mobile:"_18fs8psxu",tablet:"_18fs8psxv",desktop:"_18fs8psxw"},defaultClass:"_18fs8psxu"},12:{conditions:{mobile:"_18fs8psxx",tablet:"_18fs8psxy",desktop:"_18fs8psxz"},defaultClass:"_18fs8psxx"},14:{conditions:{mobile:"_18fs8psy0",tablet:"_18fs8psy1",desktop:"_18fs8psy2"},defaultClass:"_18fs8psy0"},16:{conditions:{mobile:"_18fs8psy3",tablet:"_18fs8psy4",desktop:"_18fs8psy5"},defaultClass:"_18fs8psy3"},20:{conditions:{mobile:"_18fs8psy6",tablet:"_18fs8psy7",desktop:"_18fs8psy8"},defaultClass:"_18fs8psy6"},24:{conditions:{mobile:"_18fs8psy9",tablet:"_18fs8psya",desktop:"_18fs8psyb"},defaultClass:"_18fs8psy9"},28:{conditions:{mobile:"_18fs8psyc",tablet:"_18fs8psyd",desktop:"_18fs8psye"},defaultClass:"_18fs8psyc"},32:{conditions:{mobile:"_18fs8psyf",tablet:"_18fs8psyg",desktop:"_18fs8psyh"},defaultClass:"_18fs8psyf"},36:{conditions:{mobile:"_18fs8psyi",tablet:"_18fs8psyj",desktop:"_18fs8psyk"},defaultClass:"_18fs8psyi"},40:{conditions:{mobile:"_18fs8psyl",tablet:"_18fs8psym",desktop:"_18fs8psyn"},defaultClass:"_18fs8psyl"},44:{conditions:{mobile:"_18fs8psyo",tablet:"_18fs8psyp",desktop:"_18fs8psyq"},defaultClass:"_18fs8psyo"},48:{conditions:{mobile:"_18fs8psyr",tablet:"_18fs8psys",desktop:"_18fs8psyt"},defaultClass:"_18fs8psyr"},52:{conditions:{mobile:"_18fs8psyu",tablet:"_18fs8psyv",desktop:"_18fs8psyw"},defaultClass:"_18fs8psyu"},px:{conditions:{mobile:"_18fs8psyx",tablet:"_18fs8psyy",desktop:"_18fs8psyz"},defaultClass:"_18fs8psyx"},"0.5":{conditions:{mobile:"_18fs8psz0",tablet:"_18fs8psz1",desktop:"_18fs8psz2"},defaultClass:"_18fs8psz0"},"1.5":{conditions:{mobile:"_18fs8psz3",tablet:"_18fs8psz4",desktop:"_18fs8psz5"},defaultClass:"_18fs8psz3"},"2.5":{conditions:{mobile:"_18fs8psz6",tablet:"_18fs8psz7",desktop:"_18fs8psz8"},defaultClass:"_18fs8psz6"},"3.5":{conditions:{mobile:"_18fs8psz9",tablet:"_18fs8psza",desktop:"_18fs8pszb"},defaultClass:"_18fs8psz9"},auto:{conditions:{mobile:"_18fs8pszc",tablet:"_18fs8pszd",desktop:"_18fs8psze"},defaultClass:"_18fs8pszc"}}},marginLeft:{values:{0:{conditions:{mobile:"_18fs8pszf",tablet:"_18fs8pszg",desktop:"_18fs8pszh"},defaultClass:"_18fs8pszf"},1:{conditions:{mobile:"_18fs8pszi",tablet:"_18fs8pszj",desktop:"_18fs8pszk"},defaultClass:"_18fs8pszi"},2:{conditions:{mobile:"_18fs8pszl",tablet:"_18fs8pszm",desktop:"_18fs8pszn"},defaultClass:"_18fs8pszl"},3:{conditions:{mobile:"_18fs8pszo",tablet:"_18fs8pszp",desktop:"_18fs8pszq"},defaultClass:"_18fs8pszo"},4:{conditions:{mobile:"_18fs8pszr",tablet:"_18fs8pszs",desktop:"_18fs8pszt"},defaultClass:"_18fs8pszr"},5:{conditions:{mobile:"_18fs8pszu",tablet:"_18fs8pszv",desktop:"_18fs8pszw"},defaultClass:"_18fs8pszu"},6:{conditions:{mobile:"_18fs8pszx",tablet:"_18fs8pszy",desktop:"_18fs8pszz"},defaultClass:"_18fs8pszx"},7:{conditions:{mobile:"_18fs8ps100",tablet:"_18fs8ps101",desktop:"_18fs8ps102"},defaultClass:"_18fs8ps100"},8:{conditions:{mobile:"_18fs8ps103",tablet:"_18fs8ps104",desktop:"_18fs8ps105"},defaultClass:"_18fs8ps103"},9:{conditions:{mobile:"_18fs8ps106",tablet:"_18fs8ps107",desktop:"_18fs8ps108"},defaultClass:"_18fs8ps106"},10:{conditions:{mobile:"_18fs8ps109",tablet:"_18fs8ps10a",desktop:"_18fs8ps10b"},defaultClass:"_18fs8ps109"},11:{conditions:{mobile:"_18fs8ps10c",tablet:"_18fs8ps10d",desktop:"_18fs8ps10e"},defaultClass:"_18fs8ps10c"},12:{conditions:{mobile:"_18fs8ps10f",tablet:"_18fs8ps10g",desktop:"_18fs8ps10h"},defaultClass:"_18fs8ps10f"},14:{conditions:{mobile:"_18fs8ps10i",tablet:"_18fs8ps10j",desktop:"_18fs8ps10k"},defaultClass:"_18fs8ps10i"},16:{conditions:{mobile:"_18fs8ps10l",tablet:"_18fs8ps10m",desktop:"_18fs8ps10n"},defaultClass:"_18fs8ps10l"},20:{conditions:{mobile:"_18fs8ps10o",tablet:"_18fs8ps10p",desktop:"_18fs8ps10q"},defaultClass:"_18fs8ps10o"},24:{conditions:{mobile:"_18fs8ps10r",tablet:"_18fs8ps10s",desktop:"_18fs8ps10t"},defaultClass:"_18fs8ps10r"},28:{conditions:{mobile:"_18fs8ps10u",tablet:"_18fs8ps10v",desktop:"_18fs8ps10w"},defaultClass:"_18fs8ps10u"},32:{conditions:{mobile:"_18fs8ps10x",tablet:"_18fs8ps10y",desktop:"_18fs8ps10z"},defaultClass:"_18fs8ps10x"},36:{conditions:{mobile:"_18fs8ps110",tablet:"_18fs8ps111",desktop:"_18fs8ps112"},defaultClass:"_18fs8ps110"},40:{conditions:{mobile:"_18fs8ps113",tablet:"_18fs8ps114",desktop:"_18fs8ps115"},defaultClass:"_18fs8ps113"},44:{conditions:{mobile:"_18fs8ps116",tablet:"_18fs8ps117",desktop:"_18fs8ps118"},defaultClass:"_18fs8ps116"},48:{conditions:{mobile:"_18fs8ps119",tablet:"_18fs8ps11a",desktop:"_18fs8ps11b"},defaultClass:"_18fs8ps119"},52:{conditions:{mobile:"_18fs8ps11c",tablet:"_18fs8ps11d",desktop:"_18fs8ps11e"},defaultClass:"_18fs8ps11c"},px:{conditions:{mobile:"_18fs8ps11f",tablet:"_18fs8ps11g",desktop:"_18fs8ps11h"},defaultClass:"_18fs8ps11f"},"0.5":{conditions:{mobile:"_18fs8ps11i",tablet:"_18fs8ps11j",desktop:"_18fs8ps11k"},defaultClass:"_18fs8ps11i"},"1.5":{conditions:{mobile:"_18fs8ps11l",tablet:"_18fs8ps11m",desktop:"_18fs8ps11n"},defaultClass:"_18fs8ps11l"},"2.5":{conditions:{mobile:"_18fs8ps11o",tablet:"_18fs8ps11p",desktop:"_18fs8ps11q"},defaultClass:"_18fs8ps11o"},"3.5":{conditions:{mobile:"_18fs8ps11r",tablet:"_18fs8ps11s",desktop:"_18fs8ps11t"},defaultClass:"_18fs8ps11r"},auto:{conditions:{mobile:"_18fs8ps11u",tablet:"_18fs8ps11v",desktop:"_18fs8ps11w"},defaultClass:"_18fs8ps11u"}}},marginRight:{values:{0:{conditions:{mobile:"_18fs8ps11x",tablet:"_18fs8ps11y",desktop:"_18fs8ps11z"},defaultClass:"_18fs8ps11x"},1:{conditions:{mobile:"_18fs8ps120",tablet:"_18fs8ps121",desktop:"_18fs8ps122"},defaultClass:"_18fs8ps120"},2:{conditions:{mobile:"_18fs8ps123",tablet:"_18fs8ps124",desktop:"_18fs8ps125"},defaultClass:"_18fs8ps123"},3:{conditions:{mobile:"_18fs8ps126",tablet:"_18fs8ps127",desktop:"_18fs8ps128"},defaultClass:"_18fs8ps126"},4:{conditions:{mobile:"_18fs8ps129",tablet:"_18fs8ps12a",desktop:"_18fs8ps12b"},defaultClass:"_18fs8ps129"},5:{conditions:{mobile:"_18fs8ps12c",tablet:"_18fs8ps12d",desktop:"_18fs8ps12e"},defaultClass:"_18fs8ps12c"},6:{conditions:{mobile:"_18fs8ps12f",tablet:"_18fs8ps12g",desktop:"_18fs8ps12h"},defaultClass:"_18fs8ps12f"},7:{conditions:{mobile:"_18fs8ps12i",tablet:"_18fs8ps12j",desktop:"_18fs8ps12k"},defaultClass:"_18fs8ps12i"},8:{conditions:{mobile:"_18fs8ps12l",tablet:"_18fs8ps12m",desktop:"_18fs8ps12n"},defaultClass:"_18fs8ps12l"},9:{conditions:{mobile:"_18fs8ps12o",tablet:"_18fs8ps12p",desktop:"_18fs8ps12q"},defaultClass:"_18fs8ps12o"},10:{conditions:{mobile:"_18fs8ps12r",tablet:"_18fs8ps12s",desktop:"_18fs8ps12t"},defaultClass:"_18fs8ps12r"},11:{conditions:{mobile:"_18fs8ps12u",tablet:"_18fs8ps12v",desktop:"_18fs8ps12w"},defaultClass:"_18fs8ps12u"},12:{conditions:{mobile:"_18fs8ps12x",tablet:"_18fs8ps12y",desktop:"_18fs8ps12z"},defaultClass:"_18fs8ps12x"},14:{conditions:{mobile:"_18fs8ps130",tablet:"_18fs8ps131",desktop:"_18fs8ps132"},defaultClass:"_18fs8ps130"},16:{conditions:{mobile:"_18fs8ps133",tablet:"_18fs8ps134",desktop:"_18fs8ps135"},defaultClass:"_18fs8ps133"},20:{conditions:{mobile:"_18fs8ps136",tablet:"_18fs8ps137",desktop:"_18fs8ps138"},defaultClass:"_18fs8ps136"},24:{conditions:{mobile:"_18fs8ps139",tablet:"_18fs8ps13a",desktop:"_18fs8ps13b"},defaultClass:"_18fs8ps139"},28:{conditions:{mobile:"_18fs8ps13c",tablet:"_18fs8ps13d",desktop:"_18fs8ps13e"},defaultClass:"_18fs8ps13c"},32:{conditions:{mobile:"_18fs8ps13f",tablet:"_18fs8ps13g",desktop:"_18fs8ps13h"},defaultClass:"_18fs8ps13f"},36:{conditions:{mobile:"_18fs8ps13i",tablet:"_18fs8ps13j",desktop:"_18fs8ps13k"},defaultClass:"_18fs8ps13i"},40:{conditions:{mobile:"_18fs8ps13l",tablet:"_18fs8ps13m",desktop:"_18fs8ps13n"},defaultClass:"_18fs8ps13l"},44:{conditions:{mobile:"_18fs8ps13o",tablet:"_18fs8ps13p",desktop:"_18fs8ps13q"},defaultClass:"_18fs8ps13o"},48:{conditions:{mobile:"_18fs8ps13r",tablet:"_18fs8ps13s",desktop:"_18fs8ps13t"},defaultClass:"_18fs8ps13r"},52:{conditions:{mobile:"_18fs8ps13u",tablet:"_18fs8ps13v",desktop:"_18fs8ps13w"},defaultClass:"_18fs8ps13u"},px:{conditions:{mobile:"_18fs8ps13x",tablet:"_18fs8ps13y",desktop:"_18fs8ps13z"},defaultClass:"_18fs8ps13x"},"0.5":{conditions:{mobile:"_18fs8ps140",tablet:"_18fs8ps141",desktop:"_18fs8ps142"},defaultClass:"_18fs8ps140"},"1.5":{conditions:{mobile:"_18fs8ps143",tablet:"_18fs8ps144",desktop:"_18fs8ps145"},defaultClass:"_18fs8ps143"},"2.5":{conditions:{mobile:"_18fs8ps146",tablet:"_18fs8ps147",desktop:"_18fs8ps148"},defaultClass:"_18fs8ps146"},"3.5":{conditions:{mobile:"_18fs8ps149",tablet:"_18fs8ps14a",desktop:"_18fs8ps14b"},defaultClass:"_18fs8ps149"},auto:{conditions:{mobile:"_18fs8ps14c",tablet:"_18fs8ps14d",desktop:"_18fs8ps14e"},defaultClass:"_18fs8ps14c"}}},width:{values:{0:{conditions:{mobile:"_18fs8ps14f",tablet:"_18fs8ps14g",desktop:"_18fs8ps14h"},defaultClass:"_18fs8ps14f"},1:{conditions:{mobile:"_18fs8ps14i",tablet:"_18fs8ps14j",desktop:"_18fs8ps14k"},defaultClass:"_18fs8ps14i"},2:{conditions:{mobile:"_18fs8ps14l",tablet:"_18fs8ps14m",desktop:"_18fs8ps14n"},defaultClass:"_18fs8ps14l"},3:{conditions:{mobile:"_18fs8ps14o",tablet:"_18fs8ps14p",desktop:"_18fs8ps14q"},defaultClass:"_18fs8ps14o"},4:{conditions:{mobile:"_18fs8ps14r",tablet:"_18fs8ps14s",desktop:"_18fs8ps14t"},defaultClass:"_18fs8ps14r"},5:{conditions:{mobile:"_18fs8ps14u",tablet:"_18fs8ps14v",desktop:"_18fs8ps14w"},defaultClass:"_18fs8ps14u"},6:{conditions:{mobile:"_18fs8ps14x",tablet:"_18fs8ps14y",desktop:"_18fs8ps14z"},defaultClass:"_18fs8ps14x"},7:{conditions:{mobile:"_18fs8ps150",tablet:"_18fs8ps151",desktop:"_18fs8ps152"},defaultClass:"_18fs8ps150"},8:{conditions:{mobile:"_18fs8ps153",tablet:"_18fs8ps154",desktop:"_18fs8ps155"},defaultClass:"_18fs8ps153"},9:{conditions:{mobile:"_18fs8ps156",tablet:"_18fs8ps157",desktop:"_18fs8ps158"},defaultClass:"_18fs8ps156"},10:{conditions:{mobile:"_18fs8ps159",tablet:"_18fs8ps15a",desktop:"_18fs8ps15b"},defaultClass:"_18fs8ps159"},11:{conditions:{mobile:"_18fs8ps15c",tablet:"_18fs8ps15d",desktop:"_18fs8ps15e"},defaultClass:"_18fs8ps15c"},12:{conditions:{mobile:"_18fs8ps15f",tablet:"_18fs8ps15g",desktop:"_18fs8ps15h"},defaultClass:"_18fs8ps15f"},14:{conditions:{mobile:"_18fs8ps15i",tablet:"_18fs8ps15j",desktop:"_18fs8ps15k"},defaultClass:"_18fs8ps15i"},16:{conditions:{mobile:"_18fs8ps15l",tablet:"_18fs8ps15m",desktop:"_18fs8ps15n"},defaultClass:"_18fs8ps15l"},20:{conditions:{mobile:"_18fs8ps15o",tablet:"_18fs8ps15p",desktop:"_18fs8ps15q"},defaultClass:"_18fs8ps15o"},24:{conditions:{mobile:"_18fs8ps15r",tablet:"_18fs8ps15s",desktop:"_18fs8ps15t"},defaultClass:"_18fs8ps15r"},28:{conditions:{mobile:"_18fs8ps15u",tablet:"_18fs8ps15v",desktop:"_18fs8ps15w"},defaultClass:"_18fs8ps15u"},32:{conditions:{mobile:"_18fs8ps15x",tablet:"_18fs8ps15y",desktop:"_18fs8ps15z"},defaultClass:"_18fs8ps15x"},36:{conditions:{mobile:"_18fs8ps160",tablet:"_18fs8ps161",desktop:"_18fs8ps162"},defaultClass:"_18fs8ps160"},40:{conditions:{mobile:"_18fs8ps163",tablet:"_18fs8ps164",desktop:"_18fs8ps165"},defaultClass:"_18fs8ps163"},44:{conditions:{mobile:"_18fs8ps166",tablet:"_18fs8ps167",desktop:"_18fs8ps168"},defaultClass:"_18fs8ps166"},48:{conditions:{mobile:"_18fs8ps169",tablet:"_18fs8ps16a",desktop:"_18fs8ps16b"},defaultClass:"_18fs8ps169"},52:{conditions:{mobile:"_18fs8ps16c",tablet:"_18fs8ps16d",desktop:"_18fs8ps16e"},defaultClass:"_18fs8ps16c"},px:{conditions:{mobile:"_18fs8ps16f",tablet:"_18fs8ps16g",desktop:"_18fs8ps16h"},defaultClass:"_18fs8ps16f"},"0.5":{conditions:{mobile:"_18fs8ps16i",tablet:"_18fs8ps16j",desktop:"_18fs8ps16k"},defaultClass:"_18fs8ps16i"},"1.5":{conditions:{mobile:"_18fs8ps16l",tablet:"_18fs8ps16m",desktop:"_18fs8ps16n"},defaultClass:"_18fs8ps16l"},"2.5":{conditions:{mobile:"_18fs8ps16o",tablet:"_18fs8ps16p",desktop:"_18fs8ps16q"},defaultClass:"_18fs8ps16o"},"3.5":{conditions:{mobile:"_18fs8ps16r",tablet:"_18fs8ps16s",desktop:"_18fs8ps16t"},defaultClass:"_18fs8ps16r"},"100%":{conditions:{mobile:"_18fs8ps16u",tablet:"_18fs8ps16v",desktop:"_18fs8ps16w"},defaultClass:"_18fs8ps16u"},"100vw":{conditions:{mobile:"_18fs8ps16x",tablet:"_18fs8ps16y",desktop:"_18fs8ps16z"},defaultClass:"_18fs8ps16x"}}},height:{values:{0:{conditions:{mobile:"_18fs8ps170",tablet:"_18fs8ps171",desktop:"_18fs8ps172"},defaultClass:"_18fs8ps170"},1:{conditions:{mobile:"_18fs8ps173",tablet:"_18fs8ps174",desktop:"_18fs8ps175"},defaultClass:"_18fs8ps173"},2:{conditions:{mobile:"_18fs8ps176",tablet:"_18fs8ps177",desktop:"_18fs8ps178"},defaultClass:"_18fs8ps176"},3:{conditions:{mobile:"_18fs8ps179",tablet:"_18fs8ps17a",desktop:"_18fs8ps17b"},defaultClass:"_18fs8ps179"},4:{conditions:{mobile:"_18fs8ps17c",tablet:"_18fs8ps17d",desktop:"_18fs8ps17e"},defaultClass:"_18fs8ps17c"},5:{conditions:{mobile:"_18fs8ps17f",tablet:"_18fs8ps17g",desktop:"_18fs8ps17h"},defaultClass:"_18fs8ps17f"},6:{conditions:{mobile:"_18fs8ps17i",tablet:"_18fs8ps17j",desktop:"_18fs8ps17k"},defaultClass:"_18fs8ps17i"},7:{conditions:{mobile:"_18fs8ps17l",tablet:"_18fs8ps17m",desktop:"_18fs8ps17n"},defaultClass:"_18fs8ps17l"},8:{conditions:{mobile:"_18fs8ps17o",tablet:"_18fs8ps17p",desktop:"_18fs8ps17q"},defaultClass:"_18fs8ps17o"},9:{conditions:{mobile:"_18fs8ps17r",tablet:"_18fs8ps17s",desktop:"_18fs8ps17t"},defaultClass:"_18fs8ps17r"},10:{conditions:{mobile:"_18fs8ps17u",tablet:"_18fs8ps17v",desktop:"_18fs8ps17w"},defaultClass:"_18fs8ps17u"},11:{conditions:{mobile:"_18fs8ps17x",tablet:"_18fs8ps17y",desktop:"_18fs8ps17z"},defaultClass:"_18fs8ps17x"},12:{conditions:{mobile:"_18fs8ps180",tablet:"_18fs8ps181",desktop:"_18fs8ps182"},defaultClass:"_18fs8ps180"},14:{conditions:{mobile:"_18fs8ps183",tablet:"_18fs8ps184",desktop:"_18fs8ps185"},defaultClass:"_18fs8ps183"},16:{conditions:{mobile:"_18fs8ps186",tablet:"_18fs8ps187",desktop:"_18fs8ps188"},defaultClass:"_18fs8ps186"},20:{conditions:{mobile:"_18fs8ps189",tablet:"_18fs8ps18a",desktop:"_18fs8ps18b"},defaultClass:"_18fs8ps189"},24:{conditions:{mobile:"_18fs8ps18c",tablet:"_18fs8ps18d",desktop:"_18fs8ps18e"},defaultClass:"_18fs8ps18c"},28:{conditions:{mobile:"_18fs8ps18f",tablet:"_18fs8ps18g",desktop:"_18fs8ps18h"},defaultClass:"_18fs8ps18f"},32:{conditions:{mobile:"_18fs8ps18i",tablet:"_18fs8ps18j",desktop:"_18fs8ps18k"},defaultClass:"_18fs8ps18i"},36:{conditions:{mobile:"_18fs8ps18l",tablet:"_18fs8ps18m",desktop:"_18fs8ps18n"},defaultClass:"_18fs8ps18l"},40:{conditions:{mobile:"_18fs8ps18o",tablet:"_18fs8ps18p",desktop:"_18fs8ps18q"},defaultClass:"_18fs8ps18o"},44:{conditions:{mobile:"_18fs8ps18r",tablet:"_18fs8ps18s",desktop:"_18fs8ps18t"},defaultClass:"_18fs8ps18r"},48:{conditions:{mobile:"_18fs8ps18u",tablet:"_18fs8ps18v",desktop:"_18fs8ps18w"},defaultClass:"_18fs8ps18u"},52:{conditions:{mobile:"_18fs8ps18x",tablet:"_18fs8ps18y",desktop:"_18fs8ps18z"},defaultClass:"_18fs8ps18x"},px:{conditions:{mobile:"_18fs8ps190",tablet:"_18fs8ps191",desktop:"_18fs8ps192"},defaultClass:"_18fs8ps190"},"0.5":{conditions:{mobile:"_18fs8ps193",tablet:"_18fs8ps194",desktop:"_18fs8ps195"},defaultClass:"_18fs8ps193"},"1.5":{conditions:{mobile:"_18fs8ps196",tablet:"_18fs8ps197",desktop:"_18fs8ps198"},defaultClass:"_18fs8ps196"},"2.5":{conditions:{mobile:"_18fs8ps199",tablet:"_18fs8ps19a",desktop:"_18fs8ps19b"},defaultClass:"_18fs8ps199"},"3.5":{conditions:{mobile:"_18fs8ps19c",tablet:"_18fs8ps19d",desktop:"_18fs8ps19e"},defaultClass:"_18fs8ps19c"},"100%":{conditions:{mobile:"_18fs8ps19f",tablet:"_18fs8ps19g",desktop:"_18fs8ps19h"},defaultClass:"_18fs8ps19f"},"100vh":{conditions:{mobile:"_18fs8ps19i",tablet:"_18fs8ps19j",desktop:"_18fs8ps19k"},defaultClass:"_18fs8ps19i"}}},minHeight:{values:{auto:{conditions:{mobile:"_18fs8ps19l",tablet:"_18fs8ps19m",desktop:"_18fs8ps19n"},defaultClass:"_18fs8ps19l"},"100%":{conditions:{mobile:"_18fs8ps19o",tablet:"_18fs8ps19p",desktop:"_18fs8ps19q"},defaultClass:"_18fs8ps19o"},"0px":{conditions:{mobile:"_18fs8ps19r",tablet:"_18fs8ps19s",desktop:"_18fs8ps19t"},defaultClass:"_18fs8ps19r"}}},minWidth:{values:{0:{conditions:{mobile:"_18fs8ps19u",tablet:"_18fs8ps19v",desktop:"_18fs8ps19w"},defaultClass:"_18fs8ps19u"},1:{conditions:{mobile:"_18fs8ps19x",tablet:"_18fs8ps19y",desktop:"_18fs8ps19z"},defaultClass:"_18fs8ps19x"},2:{conditions:{mobile:"_18fs8ps1a0",tablet:"_18fs8ps1a1",desktop:"_18fs8ps1a2"},defaultClass:"_18fs8ps1a0"},3:{conditions:{mobile:"_18fs8ps1a3",tablet:"_18fs8ps1a4",desktop:"_18fs8ps1a5"},defaultClass:"_18fs8ps1a3"},4:{conditions:{mobile:"_18fs8ps1a6",tablet:"_18fs8ps1a7",desktop:"_18fs8ps1a8"},defaultClass:"_18fs8ps1a6"},5:{conditions:{mobile:"_18fs8ps1a9",tablet:"_18fs8ps1aa",desktop:"_18fs8ps1ab"},defaultClass:"_18fs8ps1a9"},6:{conditions:{mobile:"_18fs8ps1ac",tablet:"_18fs8ps1ad",desktop:"_18fs8ps1ae"},defaultClass:"_18fs8ps1ac"},7:{conditions:{mobile:"_18fs8ps1af",tablet:"_18fs8ps1ag",desktop:"_18fs8ps1ah"},defaultClass:"_18fs8ps1af"},8:{conditions:{mobile:"_18fs8ps1ai",tablet:"_18fs8ps1aj",desktop:"_18fs8ps1ak"},defaultClass:"_18fs8ps1ai"},9:{conditions:{mobile:"_18fs8ps1al",tablet:"_18fs8ps1am",desktop:"_18fs8ps1an"},defaultClass:"_18fs8ps1al"},10:{conditions:{mobile:"_18fs8ps1ao",tablet:"_18fs8ps1ap",desktop:"_18fs8ps1aq"},defaultClass:"_18fs8ps1ao"},11:{conditions:{mobile:"_18fs8ps1ar",tablet:"_18fs8ps1as",desktop:"_18fs8ps1at"},defaultClass:"_18fs8ps1ar"},12:{conditions:{mobile:"_18fs8ps1au",tablet:"_18fs8ps1av",desktop:"_18fs8ps1aw"},defaultClass:"_18fs8ps1au"},14:{conditions:{mobile:"_18fs8ps1ax",tablet:"_18fs8ps1ay",desktop:"_18fs8ps1az"},defaultClass:"_18fs8ps1ax"},16:{conditions:{mobile:"_18fs8ps1b0",tablet:"_18fs8ps1b1",desktop:"_18fs8ps1b2"},defaultClass:"_18fs8ps1b0"},20:{conditions:{mobile:"_18fs8ps1b3",tablet:"_18fs8ps1b4",desktop:"_18fs8ps1b5"},defaultClass:"_18fs8ps1b3"},24:{conditions:{mobile:"_18fs8ps1b6",tablet:"_18fs8ps1b7",desktop:"_18fs8ps1b8"},defaultClass:"_18fs8ps1b6"},28:{conditions:{mobile:"_18fs8ps1b9",tablet:"_18fs8ps1ba",desktop:"_18fs8ps1bb"},defaultClass:"_18fs8ps1b9"},32:{conditions:{mobile:"_18fs8ps1bc",tablet:"_18fs8ps1bd",desktop:"_18fs8ps1be"},defaultClass:"_18fs8ps1bc"},36:{conditions:{mobile:"_18fs8ps1bf",tablet:"_18fs8ps1bg",desktop:"_18fs8ps1bh"},defaultClass:"_18fs8ps1bf"},40:{conditions:{mobile:"_18fs8ps1bi",tablet:"_18fs8ps1bj",desktop:"_18fs8ps1bk"},defaultClass:"_18fs8ps1bi"},44:{conditions:{mobile:"_18fs8ps1bl",tablet:"_18fs8ps1bm",desktop:"_18fs8ps1bn"},defaultClass:"_18fs8ps1bl"},48:{conditions:{mobile:"_18fs8ps1bo",tablet:"_18fs8ps1bp",desktop:"_18fs8ps1bq"},defaultClass:"_18fs8ps1bo"},52:{conditions:{mobile:"_18fs8ps1br",tablet:"_18fs8ps1bs",desktop:"_18fs8ps1bt"},defaultClass:"_18fs8ps1br"},px:{conditions:{mobile:"_18fs8ps1bu",tablet:"_18fs8ps1bv",desktop:"_18fs8ps1bw"},defaultClass:"_18fs8ps1bu"},"0.5":{conditions:{mobile:"_18fs8ps1bx",tablet:"_18fs8ps1by",desktop:"_18fs8ps1bz"},defaultClass:"_18fs8ps1bx"},"1.5":{conditions:{mobile:"_18fs8ps1c0",tablet:"_18fs8ps1c1",desktop:"_18fs8ps1c2"},defaultClass:"_18fs8ps1c0"},"2.5":{conditions:{mobile:"_18fs8ps1c3",tablet:"_18fs8ps1c4",desktop:"_18fs8ps1c5"},defaultClass:"_18fs8ps1c3"},"3.5":{conditions:{mobile:"_18fs8ps1c6",tablet:"_18fs8ps1c7",desktop:"_18fs8ps1c8"},defaultClass:"_18fs8ps1c6"},auto:{conditions:{mobile:"_18fs8ps1c9",tablet:"_18fs8ps1ca",desktop:"_18fs8ps1cb"},defaultClass:"_18fs8ps1c9"},"100%":{conditions:{mobile:"_18fs8ps1cc",tablet:"_18fs8ps1cd",desktop:"_18fs8ps1ce"},defaultClass:"_18fs8ps1cc"}}},maxWidth:{values:{auto:{conditions:{mobile:"_18fs8ps1cf",tablet:"_18fs8ps1cg",desktop:"_18fs8ps1ch"},defaultClass:"_18fs8ps1cf"},"100%":{conditions:{mobile:"_18fs8ps1ci",tablet:"_18fs8ps1cj",desktop:"_18fs8ps1ck"},defaultClass:"_18fs8ps1ci"},"0px":{conditions:{mobile:"_18fs8ps1cl",tablet:"_18fs8ps1cm",desktop:"_18fs8ps1cn"},defaultClass:"_18fs8ps1cl"}}},maxHeight:{values:{0:{conditions:{mobile:"_18fs8ps1co",tablet:"_18fs8ps1cp",desktop:"_18fs8ps1cq"},defaultClass:"_18fs8ps1co"},1:{conditions:{mobile:"_18fs8ps1cr",tablet:"_18fs8ps1cs",desktop:"_18fs8ps1ct"},defaultClass:"_18fs8ps1cr"},2:{conditions:{mobile:"_18fs8ps1cu",tablet:"_18fs8ps1cv",desktop:"_18fs8ps1cw"},defaultClass:"_18fs8ps1cu"},3:{conditions:{mobile:"_18fs8ps1cx",tablet:"_18fs8ps1cy",desktop:"_18fs8ps1cz"},defaultClass:"_18fs8ps1cx"},4:{conditions:{mobile:"_18fs8ps1d0",tablet:"_18fs8ps1d1",desktop:"_18fs8ps1d2"},defaultClass:"_18fs8ps1d0"},5:{conditions:{mobile:"_18fs8ps1d3",tablet:"_18fs8ps1d4",desktop:"_18fs8ps1d5"},defaultClass:"_18fs8ps1d3"},6:{conditions:{mobile:"_18fs8ps1d6",tablet:"_18fs8ps1d7",desktop:"_18fs8ps1d8"},defaultClass:"_18fs8ps1d6"},7:{conditions:{mobile:"_18fs8ps1d9",tablet:"_18fs8ps1da",desktop:"_18fs8ps1db"},defaultClass:"_18fs8ps1d9"},8:{conditions:{mobile:"_18fs8ps1dc",tablet:"_18fs8ps1dd",desktop:"_18fs8ps1de"},defaultClass:"_18fs8ps1dc"},9:{conditions:{mobile:"_18fs8ps1df",tablet:"_18fs8ps1dg",desktop:"_18fs8ps1dh"},defaultClass:"_18fs8ps1df"},10:{conditions:{mobile:"_18fs8ps1di",tablet:"_18fs8ps1dj",desktop:"_18fs8ps1dk"},defaultClass:"_18fs8ps1di"},11:{conditions:{mobile:"_18fs8ps1dl",tablet:"_18fs8ps1dm",desktop:"_18fs8ps1dn"},defaultClass:"_18fs8ps1dl"},12:{conditions:{mobile:"_18fs8ps1do",tablet:"_18fs8ps1dp",desktop:"_18fs8ps1dq"},defaultClass:"_18fs8ps1do"},14:{conditions:{mobile:"_18fs8ps1dr",tablet:"_18fs8ps1ds",desktop:"_18fs8ps1dt"},defaultClass:"_18fs8ps1dr"},16:{conditions:{mobile:"_18fs8ps1du",tablet:"_18fs8ps1dv",desktop:"_18fs8ps1dw"},defaultClass:"_18fs8ps1du"},20:{conditions:{mobile:"_18fs8ps1dx",tablet:"_18fs8ps1dy",desktop:"_18fs8ps1dz"},defaultClass:"_18fs8ps1dx"},24:{conditions:{mobile:"_18fs8ps1e0",tablet:"_18fs8ps1e1",desktop:"_18fs8ps1e2"},defaultClass:"_18fs8ps1e0"},28:{conditions:{mobile:"_18fs8ps1e3",tablet:"_18fs8ps1e4",desktop:"_18fs8ps1e5"},defaultClass:"_18fs8ps1e3"},32:{conditions:{mobile:"_18fs8ps1e6",tablet:"_18fs8ps1e7",desktop:"_18fs8ps1e8"},defaultClass:"_18fs8ps1e6"},36:{conditions:{mobile:"_18fs8ps1e9",tablet:"_18fs8ps1ea",desktop:"_18fs8ps1eb"},defaultClass:"_18fs8ps1e9"},40:{conditions:{mobile:"_18fs8ps1ec",tablet:"_18fs8ps1ed",desktop:"_18fs8ps1ee"},defaultClass:"_18fs8ps1ec"},44:{conditions:{mobile:"_18fs8ps1ef",tablet:"_18fs8ps1eg",desktop:"_18fs8ps1eh"},defaultClass:"_18fs8ps1ef"},48:{conditions:{mobile:"_18fs8ps1ei",tablet:"_18fs8ps1ej",desktop:"_18fs8ps1ek"},defaultClass:"_18fs8ps1ei"},52:{conditions:{mobile:"_18fs8ps1el",tablet:"_18fs8ps1em",desktop:"_18fs8ps1en"},defaultClass:"_18fs8ps1el"},px:{conditions:{mobile:"_18fs8ps1eo",tablet:"_18fs8ps1ep",desktop:"_18fs8ps1eq"},defaultClass:"_18fs8ps1eo"},"0.5":{conditions:{mobile:"_18fs8ps1er",tablet:"_18fs8ps1es",desktop:"_18fs8ps1et"},defaultClass:"_18fs8ps1er"},"1.5":{conditions:{mobile:"_18fs8ps1eu",tablet:"_18fs8ps1ev",desktop:"_18fs8ps1ew"},defaultClass:"_18fs8ps1eu"},"2.5":{conditions:{mobile:"_18fs8ps1ex",tablet:"_18fs8ps1ey",desktop:"_18fs8ps1ez"},defaultClass:"_18fs8ps1ex"},"3.5":{conditions:{mobile:"_18fs8ps1f0",tablet:"_18fs8ps1f1",desktop:"_18fs8ps1f2"},defaultClass:"_18fs8ps1f0"},auto:{conditions:{mobile:"_18fs8ps1f3",tablet:"_18fs8ps1f4",desktop:"_18fs8ps1f5"},defaultClass:"_18fs8ps1f3"},"100%":{conditions:{mobile:"_18fs8ps1f6",tablet:"_18fs8ps1f7",desktop:"_18fs8ps1f8"},defaultClass:"_18fs8ps1f6"},"0px":{conditions:{mobile:"_18fs8ps1f9",tablet:"_18fs8ps1fa",desktop:"_18fs8ps1fb"},defaultClass:"_18fs8ps1f9"}}},borderTopRightRadius:{values:{1:{conditions:{mobile:"_18fs8ps1fc",tablet:"_18fs8ps1fd",desktop:"_18fs8ps1fe"},defaultClass:"_18fs8ps1fc"},2:{conditions:{mobile:"_18fs8ps1ff",tablet:"_18fs8ps1fg",desktop:"_18fs8ps1fh"},defaultClass:"_18fs8ps1ff"},3:{conditions:{mobile:"_18fs8ps1fi",tablet:"_18fs8ps1fj",desktop:"_18fs8ps1fk"},defaultClass:"_18fs8ps1fi"},4:{conditions:{mobile:"_18fs8ps1fl",tablet:"_18fs8ps1fm",desktop:"_18fs8ps1fn"},defaultClass:"_18fs8ps1fl"},5:{conditions:{mobile:"_18fs8ps1fo",tablet:"_18fs8ps1fp",desktop:"_18fs8ps1fq"},defaultClass:"_18fs8ps1fo"},6:{conditions:{mobile:"_18fs8ps1fr",tablet:"_18fs8ps1fs",desktop:"_18fs8ps1ft"},defaultClass:"_18fs8ps1fr"},7:{conditions:{mobile:"_18fs8ps1fu",tablet:"_18fs8ps1fv",desktop:"_18fs8ps1fw"},defaultClass:"_18fs8ps1fu"},8:{conditions:{mobile:"_18fs8ps1fx",tablet:"_18fs8ps1fy",desktop:"_18fs8ps1fz"},defaultClass:"_18fs8ps1fx"},9:{conditions:{mobile:"_18fs8ps1g0",tablet:"_18fs8ps1g1",desktop:"_18fs8ps1g2"},defaultClass:"_18fs8ps1g0"},"50%":{conditions:{mobile:"_18fs8ps1g3",tablet:"_18fs8ps1g4",desktop:"_18fs8ps1g5"},defaultClass:"_18fs8ps1g3"},"100%":{conditions:{mobile:"_18fs8ps1g6",tablet:"_18fs8ps1g7",desktop:"_18fs8ps1g8"},defaultClass:"_18fs8ps1g6"}}},borderTopLeftRadius:{values:{1:{conditions:{mobile:"_18fs8ps1g9",tablet:"_18fs8ps1ga",desktop:"_18fs8ps1gb"},defaultClass:"_18fs8ps1g9"},2:{conditions:{mobile:"_18fs8ps1gc",tablet:"_18fs8ps1gd",desktop:"_18fs8ps1ge"},defaultClass:"_18fs8ps1gc"},3:{conditions:{mobile:"_18fs8ps1gf",tablet:"_18fs8ps1gg",desktop:"_18fs8ps1gh"},defaultClass:"_18fs8ps1gf"},4:{conditions:{mobile:"_18fs8ps1gi",tablet:"_18fs8ps1gj",desktop:"_18fs8ps1gk"},defaultClass:"_18fs8ps1gi"},5:{conditions:{mobile:"_18fs8ps1gl",tablet:"_18fs8ps1gm",desktop:"_18fs8ps1gn"},defaultClass:"_18fs8ps1gl"},6:{conditions:{mobile:"_18fs8ps1go",tablet:"_18fs8ps1gp",desktop:"_18fs8ps1gq"},defaultClass:"_18fs8ps1go"},7:{conditions:{mobile:"_18fs8ps1gr",tablet:"_18fs8ps1gs",desktop:"_18fs8ps1gt"},defaultClass:"_18fs8ps1gr"},8:{conditions:{mobile:"_18fs8ps1gu",tablet:"_18fs8ps1gv",desktop:"_18fs8ps1gw"},defaultClass:"_18fs8ps1gu"},9:{conditions:{mobile:"_18fs8ps1gx",tablet:"_18fs8ps1gy",desktop:"_18fs8ps1gz"},defaultClass:"_18fs8ps1gx"},"50%":{conditions:{mobile:"_18fs8ps1h0",tablet:"_18fs8ps1h1",desktop:"_18fs8ps1h2"},defaultClass:"_18fs8ps1h0"},"100%":{conditions:{mobile:"_18fs8ps1h3",tablet:"_18fs8ps1h4",desktop:"_18fs8ps1h5"},defaultClass:"_18fs8ps1h3"}}},borderBottomRightRadius:{values:{1:{conditions:{mobile:"_18fs8ps1h6",tablet:"_18fs8ps1h7",desktop:"_18fs8ps1h8"},defaultClass:"_18fs8ps1h6"},2:{conditions:{mobile:"_18fs8ps1h9",tablet:"_18fs8ps1ha",desktop:"_18fs8ps1hb"},defaultClass:"_18fs8ps1h9"},3:{conditions:{mobile:"_18fs8ps1hc",tablet:"_18fs8ps1hd",desktop:"_18fs8ps1he"},defaultClass:"_18fs8ps1hc"},4:{conditions:{mobile:"_18fs8ps1hf",tablet:"_18fs8ps1hg",desktop:"_18fs8ps1hh"},defaultClass:"_18fs8ps1hf"},5:{conditions:{mobile:"_18fs8ps1hi",tablet:"_18fs8ps1hj",desktop:"_18fs8ps1hk"},defaultClass:"_18fs8ps1hi"},6:{conditions:{mobile:"_18fs8ps1hl",tablet:"_18fs8ps1hm",desktop:"_18fs8ps1hn"},defaultClass:"_18fs8ps1hl"},7:{conditions:{mobile:"_18fs8ps1ho",tablet:"_18fs8ps1hp",desktop:"_18fs8ps1hq"},defaultClass:"_18fs8ps1ho"},8:{conditions:{mobile:"_18fs8ps1hr",tablet:"_18fs8ps1hs",desktop:"_18fs8ps1ht"},defaultClass:"_18fs8ps1hr"},9:{conditions:{mobile:"_18fs8ps1hu",tablet:"_18fs8ps1hv",desktop:"_18fs8ps1hw"},defaultClass:"_18fs8ps1hu"},"50%":{conditions:{mobile:"_18fs8ps1hx",tablet:"_18fs8ps1hy",desktop:"_18fs8ps1hz"},defaultClass:"_18fs8ps1hx"},"100%":{conditions:{mobile:"_18fs8ps1i0",tablet:"_18fs8ps1i1",desktop:"_18fs8ps1i2"},defaultClass:"_18fs8ps1i0"}}},borderBottomLeftRadius:{values:{1:{conditions:{mobile:"_18fs8ps1i3",tablet:"_18fs8ps1i4",desktop:"_18fs8ps1i5"},defaultClass:"_18fs8ps1i3"},2:{conditions:{mobile:"_18fs8ps1i6",tablet:"_18fs8ps1i7",desktop:"_18fs8ps1i8"},defaultClass:"_18fs8ps1i6"},3:{conditions:{mobile:"_18fs8ps1i9",tablet:"_18fs8ps1ia",desktop:"_18fs8ps1ib"},defaultClass:"_18fs8ps1i9"},4:{conditions:{mobile:"_18fs8ps1ic",tablet:"_18fs8ps1id",desktop:"_18fs8ps1ie"},defaultClass:"_18fs8ps1ic"},5:{conditions:{mobile:"_18fs8ps1if",tablet:"_18fs8ps1ig",desktop:"_18fs8ps1ih"},defaultClass:"_18fs8ps1if"},6:{conditions:{mobile:"_18fs8ps1ii",tablet:"_18fs8ps1ij",desktop:"_18fs8ps1ik"},defaultClass:"_18fs8ps1ii"},7:{conditions:{mobile:"_18fs8ps1il",tablet:"_18fs8ps1im",desktop:"_18fs8ps1in"},defaultClass:"_18fs8ps1il"},8:{conditions:{mobile:"_18fs8ps1io",tablet:"_18fs8ps1ip",desktop:"_18fs8ps1iq"},defaultClass:"_18fs8ps1io"},9:{conditions:{mobile:"_18fs8ps1ir",tablet:"_18fs8ps1is",desktop:"_18fs8ps1it"},defaultClass:"_18fs8ps1ir"},"50%":{conditions:{mobile:"_18fs8ps1iu",tablet:"_18fs8ps1iv",desktop:"_18fs8ps1iw"},defaultClass:"_18fs8ps1iu"},"100%":{conditions:{mobile:"_18fs8ps1ix",tablet:"_18fs8ps1iy",desktop:"_18fs8ps1iz"},defaultClass:"_18fs8ps1ix"}}},fontSize:{values:{heroLarge:{conditions:{mobile:"_18fs8ps1j0",tablet:"_18fs8ps1j1",desktop:"_18fs8ps1j2"},defaultClass:"_18fs8ps1j0"},heroMedium:{conditions:{mobile:"_18fs8ps1j3",tablet:"_18fs8ps1j4",desktop:"_18fs8ps1j5"},defaultClass:"_18fs8ps1j3"},heroSmall:{conditions:{mobile:"_18fs8ps1j6",tablet:"_18fs8ps1j7",desktop:"_18fs8ps1j8"},defaultClass:"_18fs8ps1j6"},titleLarge:{conditions:{mobile:"_18fs8ps1j9",tablet:"_18fs8ps1ja",desktop:"_18fs8ps1jb"},defaultClass:"_18fs8ps1j9"},titleMedium:{conditions:{mobile:"_18fs8ps1jc",tablet:"_18fs8ps1jd",desktop:"_18fs8ps1je"},defaultClass:"_18fs8ps1jc"},titleSmall:{conditions:{mobile:"_18fs8ps1jf",tablet:"_18fs8ps1jg",desktop:"_18fs8ps1jh"},defaultClass:"_18fs8ps1jf"},headingLarge:{conditions:{mobile:"_18fs8ps1ji",tablet:"_18fs8ps1jj",desktop:"_18fs8ps1jk"},defaultClass:"_18fs8ps1ji"},headingMedium:{conditions:{mobile:"_18fs8ps1jl",tablet:"_18fs8ps1jm",desktop:"_18fs8ps1jn"},defaultClass:"_18fs8ps1jl"},headingSmall:{conditions:{mobile:"_18fs8ps1jo",tablet:"_18fs8ps1jp",desktop:"_18fs8ps1jq"},defaultClass:"_18fs8ps1jo"},bodyStrongLarge:{conditions:{mobile:"_18fs8ps1jr",tablet:"_18fs8ps1js",desktop:"_18fs8ps1jt"},defaultClass:"_18fs8ps1jr"},bodyStrongMedium:{conditions:{mobile:"_18fs8ps1ju",tablet:"_18fs8ps1jv",desktop:"_18fs8ps1jw"},defaultClass:"_18fs8ps1ju"},bodyStrongSmall:{conditions:{mobile:"_18fs8ps1jx",tablet:"_18fs8ps1jy",desktop:"_18fs8ps1jz"},defaultClass:"_18fs8ps1jx"},bodyEmpLarge:{conditions:{mobile:"_18fs8ps1k0",tablet:"_18fs8ps1k1",desktop:"_18fs8ps1k2"},defaultClass:"_18fs8ps1k0"},bodyEmpMedium:{conditions:{mobile:"_18fs8ps1k3",tablet:"_18fs8ps1k4",desktop:"_18fs8ps1k5"},defaultClass:"_18fs8ps1k3"},bodyEmpSmall:{conditions:{mobile:"_18fs8ps1k6",tablet:"_18fs8ps1k7",desktop:"_18fs8ps1k8"},defaultClass:"_18fs8ps1k6"},bodyLarge:{conditions:{mobile:"_18fs8ps1k9",tablet:"_18fs8ps1ka",desktop:"_18fs8ps1kb"},defaultClass:"_18fs8ps1k9"},bodyMedium:{conditions:{mobile:"_18fs8ps1kc",tablet:"_18fs8ps1kd",desktop:"_18fs8ps1ke"},defaultClass:"_18fs8ps1kc"},bodySmall:{conditions:{mobile:"_18fs8ps1kf",tablet:"_18fs8ps1kg",desktop:"_18fs8ps1kh"},defaultClass:"_18fs8ps1kf"},buttonLarge:{conditions:{mobile:"_18fs8ps1ki",tablet:"_18fs8ps1kj",desktop:"_18fs8ps1kk"},defaultClass:"_18fs8ps1ki"},buttonMedium:{conditions:{mobile:"_18fs8ps1kl",tablet:"_18fs8ps1km",desktop:"_18fs8ps1kn"},defaultClass:"_18fs8ps1kl"},buttonSmall:{conditions:{mobile:"_18fs8ps1ko",tablet:"_18fs8ps1kp",desktop:"_18fs8ps1kq"},defaultClass:"_18fs8ps1ko"},captionLarge:{conditions:{mobile:"_18fs8ps1kr",tablet:"_18fs8ps1ks",desktop:"_18fs8ps1kt"},defaultClass:"_18fs8ps1kr"},captionMedium:{conditions:{mobile:"_18fs8ps1ku",tablet:"_18fs8ps1kv",desktop:"_18fs8ps1kw"},defaultClass:"_18fs8ps1ku"},captionSmall:{conditions:{mobile:"_18fs8ps1kx",tablet:"_18fs8ps1ky",desktop:"_18fs8ps1kz"},defaultClass:"_18fs8ps1kx"}}},lineHeight:{values:{1:{conditions:{mobile:"_18fs8ps1l0",tablet:"_18fs8ps1l1",desktop:"_18fs8ps1l2"},defaultClass:"_18fs8ps1l0"},heroLarge:{conditions:{mobile:"_18fs8ps1l3",tablet:"_18fs8ps1l4",desktop:"_18fs8ps1l5"},defaultClass:"_18fs8ps1l3"},heroMedium:{conditions:{mobile:"_18fs8ps1l6",tablet:"_18fs8ps1l7",desktop:"_18fs8ps1l8"},defaultClass:"_18fs8ps1l6"},heroSmall:{conditions:{mobile:"_18fs8ps1l9",tablet:"_18fs8ps1la",desktop:"_18fs8ps1lb"},defaultClass:"_18fs8ps1l9"},titleLarge:{conditions:{mobile:"_18fs8ps1lc",tablet:"_18fs8ps1ld",desktop:"_18fs8ps1le"},defaultClass:"_18fs8ps1lc"},titleMedium:{conditions:{mobile:"_18fs8ps1lf",tablet:"_18fs8ps1lg",desktop:"_18fs8ps1lh"},defaultClass:"_18fs8ps1lf"},titleSmall:{conditions:{mobile:"_18fs8ps1li",tablet:"_18fs8ps1lj",desktop:"_18fs8ps1lk"},defaultClass:"_18fs8ps1li"},headingLarge:{conditions:{mobile:"_18fs8ps1ll",tablet:"_18fs8ps1lm",desktop:"_18fs8ps1ln"},defaultClass:"_18fs8ps1ll"},headingMedium:{conditions:{mobile:"_18fs8ps1lo",tablet:"_18fs8ps1lp",desktop:"_18fs8ps1lq"},defaultClass:"_18fs8ps1lo"},headingSmall:{conditions:{mobile:"_18fs8ps1lr",tablet:"_18fs8ps1ls",desktop:"_18fs8ps1lt"},defaultClass:"_18fs8ps1lr"},bodyStrongLarge:{conditions:{mobile:"_18fs8ps1lu",tablet:"_18fs8ps1lv",desktop:"_18fs8ps1lw"},defaultClass:"_18fs8ps1lu"},bodyStrongMedium:{conditions:{mobile:"_18fs8ps1lx",tablet:"_18fs8ps1ly",desktop:"_18fs8ps1lz"},defaultClass:"_18fs8ps1lx"},bodyStrongSmall:{conditions:{mobile:"_18fs8ps1m0",tablet:"_18fs8ps1m1",desktop:"_18fs8ps1m2"},defaultClass:"_18fs8ps1m0"},bodyEmpLarge:{conditions:{mobile:"_18fs8ps1m3",tablet:"_18fs8ps1m4",desktop:"_18fs8ps1m5"},defaultClass:"_18fs8ps1m3"},bodyEmpMedium:{conditions:{mobile:"_18fs8ps1m6",tablet:"_18fs8ps1m7",desktop:"_18fs8ps1m8"},defaultClass:"_18fs8ps1m6"},bodyEmpSmall:{conditions:{mobile:"_18fs8ps1m9",tablet:"_18fs8ps1ma",desktop:"_18fs8ps1mb"},defaultClass:"_18fs8ps1m9"},bodyLarge:{conditions:{mobile:"_18fs8ps1mc",tablet:"_18fs8ps1md",desktop:"_18fs8ps1me"},defaultClass:"_18fs8ps1mc"},bodyMedium:{conditions:{mobile:"_18fs8ps1mf",tablet:"_18fs8ps1mg",desktop:"_18fs8ps1mh"},defaultClass:"_18fs8ps1mf"},bodySmall:{conditions:{mobile:"_18fs8ps1mi",tablet:"_18fs8ps1mj",desktop:"_18fs8ps1mk"},defaultClass:"_18fs8ps1mi"},buttonLarge:{conditions:{mobile:"_18fs8ps1ml",tablet:"_18fs8ps1mm",desktop:"_18fs8ps1mn"},defaultClass:"_18fs8ps1ml"},buttonMedium:{conditions:{mobile:"_18fs8ps1mo",tablet:"_18fs8ps1mp",desktop:"_18fs8ps1mq"},defaultClass:"_18fs8ps1mo"},buttonSmall:{conditions:{mobile:"_18fs8ps1mr",tablet:"_18fs8ps1ms",desktop:"_18fs8ps1mt"},defaultClass:"_18fs8ps1mr"},captionLarge:{conditions:{mobile:"_18fs8ps1mu",tablet:"_18fs8ps1mv",desktop:"_18fs8ps1mw"},defaultClass:"_18fs8ps1mu"},captionMedium:{conditions:{mobile:"_18fs8ps1mx",tablet:"_18fs8ps1my",desktop:"_18fs8ps1mz"},defaultClass:"_18fs8ps1mx"},captionSmall:{conditions:{mobile:"_18fs8ps1n0",tablet:"_18fs8ps1n1",desktop:"_18fs8ps1n2"},defaultClass:"_18fs8ps1n0"}}},textAlign:{values:{center:{conditions:{mobile:"_18fs8ps1n3",tablet:"_18fs8ps1n4",desktop:"_18fs8ps1n5"},defaultClass:"_18fs8ps1n3"},left:{conditions:{mobile:"_18fs8ps1n6",tablet:"_18fs8ps1n7",desktop:"_18fs8ps1n8"},defaultClass:"_18fs8ps1n6"},right:{conditions:{mobile:"_18fs8ps1n9",tablet:"_18fs8ps1na",desktop:"_18fs8ps1nb"},defaultClass:"_18fs8ps1n9"}}},borderLeftWidth:{values:{0:{conditions:{mobile:"_18fs8ps1nc",tablet:"_18fs8ps1nd",desktop:"_18fs8ps1ne"},defaultClass:"_18fs8ps1nc"},1:{conditions:{mobile:"_18fs8ps1nf",tablet:"_18fs8ps1ng",desktop:"_18fs8ps1nh"},defaultClass:"_18fs8ps1nf"}}},borderRightWidth:{values:{0:{conditions:{mobile:"_18fs8ps1ni",tablet:"_18fs8ps1nj",desktop:"_18fs8ps1nk"},defaultClass:"_18fs8ps1ni"},1:{conditions:{mobile:"_18fs8ps1nl",tablet:"_18fs8ps1nm",desktop:"_18fs8ps1nn"},defaultClass:"_18fs8ps1nl"}}},borderTopWidth:{values:{0:{conditions:{mobile:"_18fs8ps1no",tablet:"_18fs8ps1np",desktop:"_18fs8ps1nq"},defaultClass:"_18fs8ps1no"},1:{conditions:{mobile:"_18fs8ps1nr",tablet:"_18fs8ps1ns",desktop:"_18fs8ps1nt"},defaultClass:"_18fs8ps1nr"}}},borderBottomWidth:{values:{0:{conditions:{mobile:"_18fs8ps1nu",tablet:"_18fs8ps1nv",desktop:"_18fs8ps1nw"},defaultClass:"_18fs8ps1nu"},1:{conditions:{mobile:"_18fs8ps1nx",tablet:"_18fs8ps1ny",desktop:"_18fs8ps1nz"},defaultClass:"_18fs8ps1nx"}}},borderLeftStyle:{values:{none:{conditions:{mobile:"_18fs8ps1o0",tablet:"_18fs8ps1o1",desktop:"_18fs8ps1o2"},defaultClass:"_18fs8ps1o0"},solid:{conditions:{mobile:"_18fs8ps1o3",tablet:"_18fs8ps1o4",desktop:"_18fs8ps1o5"},defaultClass:"_18fs8ps1o3"}}},borderRightStyle:{values:{none:{conditions:{mobile:"_18fs8ps1o6",tablet:"_18fs8ps1o7",desktop:"_18fs8ps1o8"},defaultClass:"_18fs8ps1o6"},solid:{conditions:{mobile:"_18fs8ps1o9",tablet:"_18fs8ps1oa",desktop:"_18fs8ps1ob"},defaultClass:"_18fs8ps1o9"}}},borderTopStyle:{values:{none:{conditions:{mobile:"_18fs8ps1oc",tablet:"_18fs8ps1od",desktop:"_18fs8ps1oe"},defaultClass:"_18fs8ps1oc"},solid:{conditions:{mobile:"_18fs8ps1of",tablet:"_18fs8ps1og",desktop:"_18fs8ps1oh"},defaultClass:"_18fs8ps1of"}}},borderBottomStyle:{values:{none:{conditions:{mobile:"_18fs8ps1oi",tablet:"_18fs8ps1oj",desktop:"_18fs8ps1ok"},defaultClass:"_18fs8ps1oi"},solid:{conditions:{mobile:"_18fs8ps1ol",tablet:"_18fs8ps1om",desktop:"_18fs8ps1on"},defaultClass:"_18fs8ps1ol"}}},outlineStyle:{values:{none:{conditions:{mobile:"_18fs8ps1oo",tablet:"_18fs8ps1op",desktop:"_18fs8ps1oq"},defaultClass:"_18fs8ps1oo"}}},textTransform:{values:{uppercase:{conditions:{mobile:"_18fs8ps1or",tablet:"_18fs8ps1os",desktop:"_18fs8ps1ot"},defaultClass:"_18fs8ps1or"}}},letterSpacing:{values:{heroLarge:{conditions:{mobile:"_18fs8ps1ou",tablet:"_18fs8ps1ov",desktop:"_18fs8ps1ow"},defaultClass:"_18fs8ps1ou"},heroMedium:{conditions:{mobile:"_18fs8ps1ox",tablet:"_18fs8ps1oy",desktop:"_18fs8ps1oz"},defaultClass:"_18fs8ps1ox"},heroSmall:{conditions:{mobile:"_18fs8ps1p0",tablet:"_18fs8ps1p1",desktop:"_18fs8ps1p2"},defaultClass:"_18fs8ps1p0"},titleLarge:{conditions:{mobile:"_18fs8ps1p3",tablet:"_18fs8ps1p4",desktop:"_18fs8ps1p5"},defaultClass:"_18fs8ps1p3"},titleMedium:{conditions:{mobile:"_18fs8ps1p6",tablet:"_18fs8ps1p7",desktop:"_18fs8ps1p8"},defaultClass:"_18fs8ps1p6"},titleSmall:{conditions:{mobile:"_18fs8ps1p9",tablet:"_18fs8ps1pa",desktop:"_18fs8ps1pb"},defaultClass:"_18fs8ps1p9"},headingLarge:{conditions:{mobile:"_18fs8ps1pc",tablet:"_18fs8ps1pd",desktop:"_18fs8ps1pe"},defaultClass:"_18fs8ps1pc"},headingMedium:{conditions:{mobile:"_18fs8ps1pf",tablet:"_18fs8ps1pg",desktop:"_18fs8ps1ph"},defaultClass:"_18fs8ps1pf"},headingSmall:{conditions:{mobile:"_18fs8ps1pi",tablet:"_18fs8ps1pj",desktop:"_18fs8ps1pk"},defaultClass:"_18fs8ps1pi"},bodyStrongLarge:{conditions:{mobile:"_18fs8ps1pl",tablet:"_18fs8ps1pm",desktop:"_18fs8ps1pn"},defaultClass:"_18fs8ps1pl"},bodyStrongMedium:{conditions:{mobile:"_18fs8ps1po",tablet:"_18fs8ps1pp",desktop:"_18fs8ps1pq"},defaultClass:"_18fs8ps1po"},bodyStrongSmall:{conditions:{mobile:"_18fs8ps1pr",tablet:"_18fs8ps1ps",desktop:"_18fs8ps1pt"},defaultClass:"_18fs8ps1pr"},bodyEmpLarge:{conditions:{mobile:"_18fs8ps1pu",tablet:"_18fs8ps1pv",desktop:"_18fs8ps1pw"},defaultClass:"_18fs8ps1pu"},bodyEmpMedium:{conditions:{mobile:"_18fs8ps1px",tablet:"_18fs8ps1py",desktop:"_18fs8ps1pz"},defaultClass:"_18fs8ps1px"},bodyEmpSmall:{conditions:{mobile:"_18fs8ps1q0",tablet:"_18fs8ps1q1",desktop:"_18fs8ps1q2"},defaultClass:"_18fs8ps1q0"},bodyLarge:{conditions:{mobile:"_18fs8ps1q3",tablet:"_18fs8ps1q4",desktop:"_18fs8ps1q5"},defaultClass:"_18fs8ps1q3"},bodyMedium:{conditions:{mobile:"_18fs8ps1q6",tablet:"_18fs8ps1q7",desktop:"_18fs8ps1q8"},defaultClass:"_18fs8ps1q6"},bodySmall:{conditions:{mobile:"_18fs8ps1q9",tablet:"_18fs8ps1qa",desktop:"_18fs8ps1qb"},defaultClass:"_18fs8ps1q9"},buttonLarge:{conditions:{mobile:"_18fs8ps1qc",tablet:"_18fs8ps1qd",desktop:"_18fs8ps1qe"},defaultClass:"_18fs8ps1qc"},buttonMedium:{conditions:{mobile:"_18fs8ps1qf",tablet:"_18fs8ps1qg",desktop:"_18fs8ps1qh"},defaultClass:"_18fs8ps1qf"},buttonSmall:{conditions:{mobile:"_18fs8ps1qi",tablet:"_18fs8ps1qj",desktop:"_18fs8ps1qk"},defaultClass:"_18fs8ps1qi"},captionLarge:{conditions:{mobile:"_18fs8ps1ql",tablet:"_18fs8ps1qm",desktop:"_18fs8ps1qn"},defaultClass:"_18fs8ps1ql"},captionMedium:{conditions:{mobile:"_18fs8ps1qo",tablet:"_18fs8ps1qp",desktop:"_18fs8ps1qq"},defaultClass:"_18fs8ps1qo"},captionSmall:{conditions:{mobile:"_18fs8ps1qr",tablet:"_18fs8ps1qs",desktop:"_18fs8ps1qt"},defaultClass:"_18fs8ps1qr"}}},top:{values:{0:{conditions:{mobile:"_18fs8ps1qu",tablet:"_18fs8ps1qv",desktop:"_18fs8ps1qw"},defaultClass:"_18fs8ps1qu"},1:{conditions:{mobile:"_18fs8ps1qx",tablet:"_18fs8ps1qy",desktop:"_18fs8ps1qz"},defaultClass:"_18fs8ps1qx"},2:{conditions:{mobile:"_18fs8ps1r0",tablet:"_18fs8ps1r1",desktop:"_18fs8ps1r2"},defaultClass:"_18fs8ps1r0"},3:{conditions:{mobile:"_18fs8ps1r3",tablet:"_18fs8ps1r4",desktop:"_18fs8ps1r5"},defaultClass:"_18fs8ps1r3"},4:{conditions:{mobile:"_18fs8ps1r6",tablet:"_18fs8ps1r7",desktop:"_18fs8ps1r8"},defaultClass:"_18fs8ps1r6"},5:{conditions:{mobile:"_18fs8ps1r9",tablet:"_18fs8ps1ra",desktop:"_18fs8ps1rb"},defaultClass:"_18fs8ps1r9"},6:{conditions:{mobile:"_18fs8ps1rc",tablet:"_18fs8ps1rd",desktop:"_18fs8ps1re"},defaultClass:"_18fs8ps1rc"},7:{conditions:{mobile:"_18fs8ps1rf",tablet:"_18fs8ps1rg",desktop:"_18fs8ps1rh"},defaultClass:"_18fs8ps1rf"},8:{conditions:{mobile:"_18fs8ps1ri",tablet:"_18fs8ps1rj",desktop:"_18fs8ps1rk"},defaultClass:"_18fs8ps1ri"},9:{conditions:{mobile:"_18fs8ps1rl",tablet:"_18fs8ps1rm",desktop:"_18fs8ps1rn"},defaultClass:"_18fs8ps1rl"},10:{conditions:{mobile:"_18fs8ps1ro",tablet:"_18fs8ps1rp",desktop:"_18fs8ps1rq"},defaultClass:"_18fs8ps1ro"},11:{conditions:{mobile:"_18fs8ps1rr",tablet:"_18fs8ps1rs",desktop:"_18fs8ps1rt"},defaultClass:"_18fs8ps1rr"},12:{conditions:{mobile:"_18fs8ps1ru",tablet:"_18fs8ps1rv",desktop:"_18fs8ps1rw"},defaultClass:"_18fs8ps1ru"},14:{conditions:{mobile:"_18fs8ps1rx",tablet:"_18fs8ps1ry",desktop:"_18fs8ps1rz"},defaultClass:"_18fs8ps1rx"},16:{conditions:{mobile:"_18fs8ps1s0",tablet:"_18fs8ps1s1",desktop:"_18fs8ps1s2"},defaultClass:"_18fs8ps1s0"},20:{conditions:{mobile:"_18fs8ps1s3",tablet:"_18fs8ps1s4",desktop:"_18fs8ps1s5"},defaultClass:"_18fs8ps1s3"},24:{conditions:{mobile:"_18fs8ps1s6",tablet:"_18fs8ps1s7",desktop:"_18fs8ps1s8"},defaultClass:"_18fs8ps1s6"},28:{conditions:{mobile:"_18fs8ps1s9",tablet:"_18fs8ps1sa",desktop:"_18fs8ps1sb"},defaultClass:"_18fs8ps1s9"},32:{conditions:{mobile:"_18fs8ps1sc",tablet:"_18fs8ps1sd",desktop:"_18fs8ps1se"},defaultClass:"_18fs8ps1sc"},36:{conditions:{mobile:"_18fs8ps1sf",tablet:"_18fs8ps1sg",desktop:"_18fs8ps1sh"},defaultClass:"_18fs8ps1sf"},40:{conditions:{mobile:"_18fs8ps1si",tablet:"_18fs8ps1sj",desktop:"_18fs8ps1sk"},defaultClass:"_18fs8ps1si"},44:{conditions:{mobile:"_18fs8ps1sl",tablet:"_18fs8ps1sm",desktop:"_18fs8ps1sn"},defaultClass:"_18fs8ps1sl"},48:{conditions:{mobile:"_18fs8ps1so",tablet:"_18fs8ps1sp",desktop:"_18fs8ps1sq"},defaultClass:"_18fs8ps1so"},52:{conditions:{mobile:"_18fs8ps1sr",tablet:"_18fs8ps1ss",desktop:"_18fs8ps1st"},defaultClass:"_18fs8ps1sr"},px:{conditions:{mobile:"_18fs8ps1su",tablet:"_18fs8ps1sv",desktop:"_18fs8ps1sw"},defaultClass:"_18fs8ps1su"},"0.5":{conditions:{mobile:"_18fs8ps1sx",tablet:"_18fs8ps1sy",desktop:"_18fs8ps1sz"},defaultClass:"_18fs8ps1sx"},"1.5":{conditions:{mobile:"_18fs8ps1t0",tablet:"_18fs8ps1t1",desktop:"_18fs8ps1t2"},defaultClass:"_18fs8ps1t0"},"2.5":{conditions:{mobile:"_18fs8ps1t3",tablet:"_18fs8ps1t4",desktop:"_18fs8ps1t5"},defaultClass:"_18fs8ps1t3"},"3.5":{conditions:{mobile:"_18fs8ps1t6",tablet:"_18fs8ps1t7",desktop:"_18fs8ps1t8"},defaultClass:"_18fs8ps1t6"}}},bottom:{values:{0:{conditions:{mobile:"_18fs8ps1t9",tablet:"_18fs8ps1ta",desktop:"_18fs8ps1tb"},defaultClass:"_18fs8ps1t9"},1:{conditions:{mobile:"_18fs8ps1tc",tablet:"_18fs8ps1td",desktop:"_18fs8ps1te"},defaultClass:"_18fs8ps1tc"},2:{conditions:{mobile:"_18fs8ps1tf",tablet:"_18fs8ps1tg",desktop:"_18fs8ps1th"},defaultClass:"_18fs8ps1tf"},3:{conditions:{mobile:"_18fs8ps1ti",tablet:"_18fs8ps1tj",desktop:"_18fs8ps1tk"},defaultClass:"_18fs8ps1ti"},4:{conditions:{mobile:"_18fs8ps1tl",tablet:"_18fs8ps1tm",desktop:"_18fs8ps1tn"},defaultClass:"_18fs8ps1tl"},5:{conditions:{mobile:"_18fs8ps1to",tablet:"_18fs8ps1tp",desktop:"_18fs8ps1tq"},defaultClass:"_18fs8ps1to"},6:{conditions:{mobile:"_18fs8ps1tr",tablet:"_18fs8ps1ts",desktop:"_18fs8ps1tt"},defaultClass:"_18fs8ps1tr"},7:{conditions:{mobile:"_18fs8ps1tu",tablet:"_18fs8ps1tv",desktop:"_18fs8ps1tw"},defaultClass:"_18fs8ps1tu"},8:{conditions:{mobile:"_18fs8ps1tx",tablet:"_18fs8ps1ty",desktop:"_18fs8ps1tz"},defaultClass:"_18fs8ps1tx"},9:{conditions:{mobile:"_18fs8ps1u0",tablet:"_18fs8ps1u1",desktop:"_18fs8ps1u2"},defaultClass:"_18fs8ps1u0"},10:{conditions:{mobile:"_18fs8ps1u3",tablet:"_18fs8ps1u4",desktop:"_18fs8ps1u5"},defaultClass:"_18fs8ps1u3"},11:{conditions:{mobile:"_18fs8ps1u6",tablet:"_18fs8ps1u7",desktop:"_18fs8ps1u8"},defaultClass:"_18fs8ps1u6"},12:{conditions:{mobile:"_18fs8ps1u9",tablet:"_18fs8ps1ua",desktop:"_18fs8ps1ub"},defaultClass:"_18fs8ps1u9"},14:{conditions:{mobile:"_18fs8ps1uc",tablet:"_18fs8ps1ud",desktop:"_18fs8ps1ue"},defaultClass:"_18fs8ps1uc"},16:{conditions:{mobile:"_18fs8ps1uf",tablet:"_18fs8ps1ug",desktop:"_18fs8ps1uh"},defaultClass:"_18fs8ps1uf"},20:{conditions:{mobile:"_18fs8ps1ui",tablet:"_18fs8ps1uj",desktop:"_18fs8ps1uk"},defaultClass:"_18fs8ps1ui"},24:{conditions:{mobile:"_18fs8ps1ul",tablet:"_18fs8ps1um",desktop:"_18fs8ps1un"},defaultClass:"_18fs8ps1ul"},28:{conditions:{mobile:"_18fs8ps1uo",tablet:"_18fs8ps1up",desktop:"_18fs8ps1uq"},defaultClass:"_18fs8ps1uo"},32:{conditions:{mobile:"_18fs8ps1ur",tablet:"_18fs8ps1us",desktop:"_18fs8ps1ut"},defaultClass:"_18fs8ps1ur"},36:{conditions:{mobile:"_18fs8ps1uu",tablet:"_18fs8ps1uv",desktop:"_18fs8ps1uw"},defaultClass:"_18fs8ps1uu"},40:{conditions:{mobile:"_18fs8ps1ux",tablet:"_18fs8ps1uy",desktop:"_18fs8ps1uz"},defaultClass:"_18fs8ps1ux"},44:{conditions:{mobile:"_18fs8ps1v0",tablet:"_18fs8ps1v1",desktop:"_18fs8ps1v2"},defaultClass:"_18fs8ps1v0"},48:{conditions:{mobile:"_18fs8ps1v3",tablet:"_18fs8ps1v4",desktop:"_18fs8ps1v5"},defaultClass:"_18fs8ps1v3"},52:{conditions:{mobile:"_18fs8ps1v6",tablet:"_18fs8ps1v7",desktop:"_18fs8ps1v8"},defaultClass:"_18fs8ps1v6"},px:{conditions:{mobile:"_18fs8ps1v9",tablet:"_18fs8ps1va",desktop:"_18fs8ps1vb"},defaultClass:"_18fs8ps1v9"},"0.5":{conditions:{mobile:"_18fs8ps1vc",tablet:"_18fs8ps1vd",desktop:"_18fs8ps1ve"},defaultClass:"_18fs8ps1vc"},"1.5":{conditions:{mobile:"_18fs8ps1vf",tablet:"_18fs8ps1vg",desktop:"_18fs8ps1vh"},defaultClass:"_18fs8ps1vf"},"2.5":{conditions:{mobile:"_18fs8ps1vi",tablet:"_18fs8ps1vj",desktop:"_18fs8ps1vk"},defaultClass:"_18fs8ps1vi"},"3.5":{conditions:{mobile:"_18fs8ps1vl",tablet:"_18fs8ps1vm",desktop:"_18fs8ps1vn"},defaultClass:"_18fs8ps1vl"}}},left:{values:{0:{conditions:{mobile:"_18fs8ps1vo",tablet:"_18fs8ps1vp",desktop:"_18fs8ps1vq"},defaultClass:"_18fs8ps1vo"},1:{conditions:{mobile:"_18fs8ps1vr",tablet:"_18fs8ps1vs",desktop:"_18fs8ps1vt"},defaultClass:"_18fs8ps1vr"},2:{conditions:{mobile:"_18fs8ps1vu",tablet:"_18fs8ps1vv",desktop:"_18fs8ps1vw"},defaultClass:"_18fs8ps1vu"},3:{conditions:{mobile:"_18fs8ps1vx",tablet:"_18fs8ps1vy",desktop:"_18fs8ps1vz"},defaultClass:"_18fs8ps1vx"},4:{conditions:{mobile:"_18fs8ps1w0",tablet:"_18fs8ps1w1",desktop:"_18fs8ps1w2"},defaultClass:"_18fs8ps1w0"},5:{conditions:{mobile:"_18fs8ps1w3",tablet:"_18fs8ps1w4",desktop:"_18fs8ps1w5"},defaultClass:"_18fs8ps1w3"},6:{conditions:{mobile:"_18fs8ps1w6",tablet:"_18fs8ps1w7",desktop:"_18fs8ps1w8"},defaultClass:"_18fs8ps1w6"},7:{conditions:{mobile:"_18fs8ps1w9",tablet:"_18fs8ps1wa",desktop:"_18fs8ps1wb"},defaultClass:"_18fs8ps1w9"},8:{conditions:{mobile:"_18fs8ps1wc",tablet:"_18fs8ps1wd",desktop:"_18fs8ps1we"},defaultClass:"_18fs8ps1wc"},9:{conditions:{mobile:"_18fs8ps1wf",tablet:"_18fs8ps1wg",desktop:"_18fs8ps1wh"},defaultClass:"_18fs8ps1wf"},10:{conditions:{mobile:"_18fs8ps1wi",tablet:"_18fs8ps1wj",desktop:"_18fs8ps1wk"},defaultClass:"_18fs8ps1wi"},11:{conditions:{mobile:"_18fs8ps1wl",tablet:"_18fs8ps1wm",desktop:"_18fs8ps1wn"},defaultClass:"_18fs8ps1wl"},12:{conditions:{mobile:"_18fs8ps1wo",tablet:"_18fs8ps1wp",desktop:"_18fs8ps1wq"},defaultClass:"_18fs8ps1wo"},14:{conditions:{mobile:"_18fs8ps1wr",tablet:"_18fs8ps1ws",desktop:"_18fs8ps1wt"},defaultClass:"_18fs8ps1wr"},16:{conditions:{mobile:"_18fs8ps1wu",tablet:"_18fs8ps1wv",desktop:"_18fs8ps1ww"},defaultClass:"_18fs8ps1wu"},20:{conditions:{mobile:"_18fs8ps1wx",tablet:"_18fs8ps1wy",desktop:"_18fs8ps1wz"},defaultClass:"_18fs8ps1wx"},24:{conditions:{mobile:"_18fs8ps1x0",tablet:"_18fs8ps1x1",desktop:"_18fs8ps1x2"},defaultClass:"_18fs8ps1x0"},28:{conditions:{mobile:"_18fs8ps1x3",tablet:"_18fs8ps1x4",desktop:"_18fs8ps1x5"},defaultClass:"_18fs8ps1x3"},32:{conditions:{mobile:"_18fs8ps1x6",tablet:"_18fs8ps1x7",desktop:"_18fs8ps1x8"},defaultClass:"_18fs8ps1x6"},36:{conditions:{mobile:"_18fs8ps1x9",tablet:"_18fs8ps1xa",desktop:"_18fs8ps1xb"},defaultClass:"_18fs8ps1x9"},40:{conditions:{mobile:"_18fs8ps1xc",tablet:"_18fs8ps1xd",desktop:"_18fs8ps1xe"},defaultClass:"_18fs8ps1xc"},44:{conditions:{mobile:"_18fs8ps1xf",tablet:"_18fs8ps1xg",desktop:"_18fs8ps1xh"},defaultClass:"_18fs8ps1xf"},48:{conditions:{mobile:"_18fs8ps1xi",tablet:"_18fs8ps1xj",desktop:"_18fs8ps1xk"},defaultClass:"_18fs8ps1xi"},52:{conditions:{mobile:"_18fs8ps1xl",tablet:"_18fs8ps1xm",desktop:"_18fs8ps1xn"},defaultClass:"_18fs8ps1xl"},px:{conditions:{mobile:"_18fs8ps1xo",tablet:"_18fs8ps1xp",desktop:"_18fs8ps1xq"},defaultClass:"_18fs8ps1xo"},"0.5":{conditions:{mobile:"_18fs8ps1xr",tablet:"_18fs8ps1xs",desktop:"_18fs8ps1xt"},defaultClass:"_18fs8ps1xr"},"1.5":{conditions:{mobile:"_18fs8ps1xu",tablet:"_18fs8ps1xv",desktop:"_18fs8ps1xw"},defaultClass:"_18fs8ps1xu"},"2.5":{conditions:{mobile:"_18fs8ps1xx",tablet:"_18fs8ps1xy",desktop:"_18fs8ps1xz"},defaultClass:"_18fs8ps1xx"},"3.5":{conditions:{mobile:"_18fs8ps1y0",tablet:"_18fs8ps1y1",desktop:"_18fs8ps1y2"},defaultClass:"_18fs8ps1y0"}}},right:{values:{0:{conditions:{mobile:"_18fs8ps1y3",tablet:"_18fs8ps1y4",desktop:"_18fs8ps1y5"},defaultClass:"_18fs8ps1y3"},1:{conditions:{mobile:"_18fs8ps1y6",tablet:"_18fs8ps1y7",desktop:"_18fs8ps1y8"},defaultClass:"_18fs8ps1y6"},2:{conditions:{mobile:"_18fs8ps1y9",tablet:"_18fs8ps1ya",desktop:"_18fs8ps1yb"},defaultClass:"_18fs8ps1y9"},3:{conditions:{mobile:"_18fs8ps1yc",tablet:"_18fs8ps1yd",desktop:"_18fs8ps1ye"},defaultClass:"_18fs8ps1yc"},4:{conditions:{mobile:"_18fs8ps1yf",tablet:"_18fs8ps1yg",desktop:"_18fs8ps1yh"},defaultClass:"_18fs8ps1yf"},5:{conditions:{mobile:"_18fs8ps1yi",tablet:"_18fs8ps1yj",desktop:"_18fs8ps1yk"},defaultClass:"_18fs8ps1yi"},6:{conditions:{mobile:"_18fs8ps1yl",tablet:"_18fs8ps1ym",desktop:"_18fs8ps1yn"},defaultClass:"_18fs8ps1yl"},7:{conditions:{mobile:"_18fs8ps1yo",tablet:"_18fs8ps1yp",desktop:"_18fs8ps1yq"},defaultClass:"_18fs8ps1yo"},8:{conditions:{mobile:"_18fs8ps1yr",tablet:"_18fs8ps1ys",desktop:"_18fs8ps1yt"},defaultClass:"_18fs8ps1yr"},9:{conditions:{mobile:"_18fs8ps1yu",tablet:"_18fs8ps1yv",desktop:"_18fs8ps1yw"},defaultClass:"_18fs8ps1yu"},10:{conditions:{mobile:"_18fs8ps1yx",tablet:"_18fs8ps1yy",desktop:"_18fs8ps1yz"},defaultClass:"_18fs8ps1yx"},11:{conditions:{mobile:"_18fs8ps1z0",tablet:"_18fs8ps1z1",desktop:"_18fs8ps1z2"},defaultClass:"_18fs8ps1z0"},12:{conditions:{mobile:"_18fs8ps1z3",tablet:"_18fs8ps1z4",desktop:"_18fs8ps1z5"},defaultClass:"_18fs8ps1z3"},14:{conditions:{mobile:"_18fs8ps1z6",tablet:"_18fs8ps1z7",desktop:"_18fs8ps1z8"},defaultClass:"_18fs8ps1z6"},16:{conditions:{mobile:"_18fs8ps1z9",tablet:"_18fs8ps1za",desktop:"_18fs8ps1zb"},defaultClass:"_18fs8ps1z9"},20:{conditions:{mobile:"_18fs8ps1zc",tablet:"_18fs8ps1zd",desktop:"_18fs8ps1ze"},defaultClass:"_18fs8ps1zc"},24:{conditions:{mobile:"_18fs8ps1zf",tablet:"_18fs8ps1zg",desktop:"_18fs8ps1zh"},defaultClass:"_18fs8ps1zf"},28:{conditions:{mobile:"_18fs8ps1zi",tablet:"_18fs8ps1zj",desktop:"_18fs8ps1zk"},defaultClass:"_18fs8ps1zi"},32:{conditions:{mobile:"_18fs8ps1zl",tablet:"_18fs8ps1zm",desktop:"_18fs8ps1zn"},defaultClass:"_18fs8ps1zl"},36:{conditions:{mobile:"_18fs8ps1zo",tablet:"_18fs8ps1zp",desktop:"_18fs8ps1zq"},defaultClass:"_18fs8ps1zo"},40:{conditions:{mobile:"_18fs8ps1zr",tablet:"_18fs8ps1zs",desktop:"_18fs8ps1zt"},defaultClass:"_18fs8ps1zr"},44:{conditions:{mobile:"_18fs8ps1zu",tablet:"_18fs8ps1zv",desktop:"_18fs8ps1zw"},defaultClass:"_18fs8ps1zu"},48:{conditions:{mobile:"_18fs8ps1zx",tablet:"_18fs8ps1zy",desktop:"_18fs8ps1zz"},defaultClass:"_18fs8ps1zx"},52:{conditions:{mobile:"_18fs8ps200",tablet:"_18fs8ps201",desktop:"_18fs8ps202"},defaultClass:"_18fs8ps200"},px:{conditions:{mobile:"_18fs8ps203",tablet:"_18fs8ps204",desktop:"_18fs8ps205"},defaultClass:"_18fs8ps203"},"0.5":{conditions:{mobile:"_18fs8ps206",tablet:"_18fs8ps207",desktop:"_18fs8ps208"},defaultClass:"_18fs8ps206"},"1.5":{conditions:{mobile:"_18fs8ps209",tablet:"_18fs8ps20a",desktop:"_18fs8ps20b"},defaultClass:"_18fs8ps209"},"2.5":{conditions:{mobile:"_18fs8ps20c",tablet:"_18fs8ps20d",desktop:"_18fs8ps20e"},defaultClass:"_18fs8ps20c"},"3.5":{conditions:{mobile:"_18fs8ps20f",tablet:"_18fs8ps20g",desktop:"_18fs8ps20h"},defaultClass:"_18fs8ps20f"}}},overflowX:{values:{hidden:{conditions:{mobile:"_18fs8ps20i",tablet:"_18fs8ps20j",desktop:"_18fs8ps20k"},defaultClass:"_18fs8ps20i"},visible:{conditions:{mobile:"_18fs8ps20l",tablet:"_18fs8ps20m",desktop:"_18fs8ps20n"},defaultClass:"_18fs8ps20l"},scroll:{conditions:{mobile:"_18fs8ps20o",tablet:"_18fs8ps20p",desktop:"_18fs8ps20q"},defaultClass:"_18fs8ps20o"},auto:{conditions:{mobile:"_18fs8ps20r",tablet:"_18fs8ps20s",desktop:"_18fs8ps20t"},defaultClass:"_18fs8ps20r"}}},overflowY:{values:{hidden:{conditions:{mobile:"_18fs8ps20u",tablet:"_18fs8ps20v",desktop:"_18fs8ps20w"},defaultClass:"_18fs8ps20u"},visible:{conditions:{mobile:"_18fs8ps20x",tablet:"_18fs8ps20y",desktop:"_18fs8ps20z"},defaultClass:"_18fs8ps20x"},scroll:{conditions:{mobile:"_18fs8ps210",tablet:"_18fs8ps211",desktop:"_18fs8ps212"},defaultClass:"_18fs8ps210"},auto:{conditions:{mobile:"_18fs8ps213",tablet:"_18fs8ps214",desktop:"_18fs8ps215"},defaultClass:"_18fs8ps213"}}},textOverflow:{values:{none:{conditions:{mobile:"_18fs8ps216",tablet:"_18fs8ps217",desktop:"_18fs8ps218"},defaultClass:"_18fs8ps216"},ellipsis:{conditions:{mobile:"_18fs8ps219",tablet:"_18fs8ps21a",desktop:"_18fs8ps21b"},defaultClass:"_18fs8ps219"}}},whiteSpace:{values:{normal:{conditions:{mobile:"_18fs8ps21c",tablet:"_18fs8ps21d",desktop:"_18fs8ps21e"},defaultClass:"_18fs8ps21c"},nowrap:{conditions:{mobile:"_18fs8ps21f",tablet:"_18fs8ps21g",desktop:"_18fs8ps21h"},defaultClass:"_18fs8ps21f"}}},wordBreak:{values:{"break-word":{conditions:{mobile:"_18fs8ps21i",tablet:"_18fs8ps21j",desktop:"_18fs8ps21k"},defaultClass:"_18fs8ps21i"},"break-all":{conditions:{mobile:"_18fs8ps21l",tablet:"_18fs8ps21m",desktop:"_18fs8ps21n"},defaultClass:"_18fs8ps21l"},normal:{conditions:{mobile:"_18fs8ps21o",tablet:"_18fs8ps21p",desktop:"_18fs8ps21q"},defaultClass:"_18fs8ps21o"}}},zIndex:{values:{1:{conditions:{mobile:"_18fs8ps21u",tablet:"_18fs8ps21v",desktop:"_18fs8ps21w"},defaultClass:"_18fs8ps21u"},2:{conditions:{mobile:"_18fs8ps21x",tablet:"_18fs8ps21y",desktop:"_18fs8ps21z"},defaultClass:"_18fs8ps21x"},3:{conditions:{mobile:"_18fs8ps220",tablet:"_18fs8ps221",desktop:"_18fs8ps222"},defaultClass:"_18fs8ps220"},auto:{conditions:{mobile:"_18fs8ps21r",tablet:"_18fs8ps21s",desktop:"_18fs8ps21t"},defaultClass:"_18fs8ps21r"}}},aspectRatio:{values:{"1 / 1":{conditions:{mobile:"_18fs8ps223",tablet:"_18fs8ps224",desktop:"_18fs8ps225"},defaultClass:"_18fs8ps223"}}},objectFit:{values:{contain:{conditions:{mobile:"_18fs8ps226",tablet:"_18fs8ps227",desktop:"_18fs8ps228"},defaultClass:"_18fs8ps226"},cover:{conditions:{mobile:"_18fs8ps229",tablet:"_18fs8ps22a",desktop:"_18fs8ps22b"},defaultClass:"_18fs8ps229"},fill:{conditions:{mobile:"_18fs8ps22c",tablet:"_18fs8ps22d",desktop:"_18fs8ps22e"},defaultClass:"_18fs8ps22c"},none:{conditions:{mobile:"_18fs8ps22f",tablet:"_18fs8ps22g",desktop:"_18fs8ps22h"},defaultClass:"_18fs8ps22f"},"scale-down":{conditions:{mobile:"_18fs8ps22i",tablet:"_18fs8ps22j",desktop:"_18fs8ps22k"},defaultClass:"_18fs8ps22i"}}},opacity:{values:{0:{conditions:{mobile:"_18fs8ps22l",tablet:"_18fs8ps22m",desktop:"_18fs8ps22n"},defaultClass:"_18fs8ps22l"},1:{conditions:{mobile:"_18fs8ps230",tablet:"_18fs8ps231",desktop:"_18fs8ps232"},defaultClass:"_18fs8ps230"},"0.2":{conditions:{mobile:"_18fs8ps22o",tablet:"_18fs8ps22p",desktop:"_18fs8ps22q"},defaultClass:"_18fs8ps22o"},"0.4":{conditions:{mobile:"_18fs8ps22r",tablet:"_18fs8ps22s",desktop:"_18fs8ps22t"},defaultClass:"_18fs8ps22r"},"0.6":{conditions:{mobile:"_18fs8ps22u",tablet:"_18fs8ps22v",desktop:"_18fs8ps22w"},defaultClass:"_18fs8ps22u"},"0.8":{conditions:{mobile:"_18fs8ps22x",tablet:"_18fs8ps22y",desktop:"_18fs8ps22z"},defaultClass:"_18fs8ps22x"}}},fontWeight:{values:{heroLarge:{conditions:{mobile:"_18fs8ps233",tablet:"_18fs8ps234",desktop:"_18fs8ps235"},defaultClass:"_18fs8ps233"},heroMedium:{conditions:{mobile:"_18fs8ps236",tablet:"_18fs8ps237",desktop:"_18fs8ps238"},defaultClass:"_18fs8ps236"},heroSmall:{conditions:{mobile:"_18fs8ps239",tablet:"_18fs8ps23a",desktop:"_18fs8ps23b"},defaultClass:"_18fs8ps239"},titleLarge:{conditions:{mobile:"_18fs8ps23c",tablet:"_18fs8ps23d",desktop:"_18fs8ps23e"},defaultClass:"_18fs8ps23c"},titleMedium:{conditions:{mobile:"_18fs8ps23f",tablet:"_18fs8ps23g",desktop:"_18fs8ps23h"},defaultClass:"_18fs8ps23f"},titleSmall:{conditions:{mobile:"_18fs8ps23i",tablet:"_18fs8ps23j",desktop:"_18fs8ps23k"},defaultClass:"_18fs8ps23i"},headingLarge:{conditions:{mobile:"_18fs8ps23l",tablet:"_18fs8ps23m",desktop:"_18fs8ps23n"},defaultClass:"_18fs8ps23l"},headingMedium:{conditions:{mobile:"_18fs8ps23o",tablet:"_18fs8ps23p",desktop:"_18fs8ps23q"},defaultClass:"_18fs8ps23o"},headingSmall:{conditions:{mobile:"_18fs8ps23r",tablet:"_18fs8ps23s",desktop:"_18fs8ps23t"},defaultClass:"_18fs8ps23r"},bodyStrongLarge:{conditions:{mobile:"_18fs8ps23u",tablet:"_18fs8ps23v",desktop:"_18fs8ps23w"},defaultClass:"_18fs8ps23u"},bodyStrongMedium:{conditions:{mobile:"_18fs8ps23x",tablet:"_18fs8ps23y",desktop:"_18fs8ps23z"},defaultClass:"_18fs8ps23x"},bodyStrongSmall:{conditions:{mobile:"_18fs8ps240",tablet:"_18fs8ps241",desktop:"_18fs8ps242"},defaultClass:"_18fs8ps240"},bodyEmpLarge:{conditions:{mobile:"_18fs8ps243",tablet:"_18fs8ps244",desktop:"_18fs8ps245"},defaultClass:"_18fs8ps243"},bodyEmpMedium:{conditions:{mobile:"_18fs8ps246",tablet:"_18fs8ps247",desktop:"_18fs8ps248"},defaultClass:"_18fs8ps246"},bodyEmpSmall:{conditions:{mobile:"_18fs8ps249",tablet:"_18fs8ps24a",desktop:"_18fs8ps24b"},defaultClass:"_18fs8ps249"},bodyLarge:{conditions:{mobile:"_18fs8ps24c",tablet:"_18fs8ps24d",desktop:"_18fs8ps24e"},defaultClass:"_18fs8ps24c"},bodyMedium:{conditions:{mobile:"_18fs8ps24f",tablet:"_18fs8ps24g",desktop:"_18fs8ps24h"},defaultClass:"_18fs8ps24f"},bodySmall:{conditions:{mobile:"_18fs8ps24i",tablet:"_18fs8ps24j",desktop:"_18fs8ps24k"},defaultClass:"_18fs8ps24i"},buttonLarge:{conditions:{mobile:"_18fs8ps24l",tablet:"_18fs8ps24m",desktop:"_18fs8ps24n"},defaultClass:"_18fs8ps24l"},buttonMedium:{conditions:{mobile:"_18fs8ps24o",tablet:"_18fs8ps24p",desktop:"_18fs8ps24q"},defaultClass:"_18fs8ps24o"},buttonSmall:{conditions:{mobile:"_18fs8ps24r",tablet:"_18fs8ps24s",desktop:"_18fs8ps24t"},defaultClass:"_18fs8ps24r"},captionLarge:{conditions:{mobile:"_18fs8ps24u",tablet:"_18fs8ps24v",desktop:"_18fs8ps24w"},defaultClass:"_18fs8ps24u"},captionMedium:{conditions:{mobile:"_18fs8ps24x",tablet:"_18fs8ps24y",desktop:"_18fs8ps24z"},defaultClass:"_18fs8ps24x"},captionSmall:{conditions:{mobile:"_18fs8ps250",tablet:"_18fs8ps251",desktop:"_18fs8ps252"},defaultClass:"_18fs8ps250"}}},alignSelf:{values:{auto:{conditions:{mobile:"_18fs8ps253",tablet:"_18fs8ps254",desktop:"_18fs8ps255"},defaultClass:"_18fs8ps253"},normal:{conditions:{mobile:"_18fs8ps256",tablet:"_18fs8ps257",desktop:"_18fs8ps258"},defaultClass:"_18fs8ps256"},end:{conditions:{mobile:"_18fs8ps259",tablet:"_18fs8ps25a",desktop:"_18fs8ps25b"},defaultClass:"_18fs8ps259"},center:{conditions:{mobile:"_18fs8ps25c",tablet:"_18fs8ps25d",desktop:"_18fs8ps25e"},defaultClass:"_18fs8ps25c"},start:{conditions:{mobile:"_18fs8ps25f",tablet:"_18fs8ps25g",desktop:"_18fs8ps25h"},defaultClass:"_18fs8ps25f"}}},visibility:{values:{visible:{conditions:{mobile:"_18fs8ps25i",tablet:"_18fs8ps25j",desktop:"_18fs8ps25k"},defaultClass:"_18fs8ps25i"},hidden:{conditions:{mobile:"_18fs8ps25l",tablet:"_18fs8ps25m",desktop:"_18fs8ps25n"},defaultClass:"_18fs8ps25l"}}}}},{conditions:{defaultCondition:"default",conditionNames:["default","hover","focus","focusWithin","focusVisible","active","disabled","placeholder"],responsiveArray:void 0},styles:{borderColor:{values:{neutralDefault:{conditions:{default:"_18fs8ps25o",hover:"_18fs8ps25p",focus:"_18fs8ps25q",focusWithin:"_18fs8ps25r",focusVisible:"_18fs8ps25s",active:"_18fs8ps25t",disabled:"_18fs8ps25u",placeholder:"_18fs8ps25v"},defaultClass:"_18fs8ps25o"},neutralSubdued:{conditions:{default:"_18fs8ps25w",hover:"_18fs8ps25x",focus:"_18fs8ps25y",focusWithin:"_18fs8ps25z",focusVisible:"_18fs8ps260",active:"_18fs8ps261",disabled:"_18fs8ps262",placeholder:"_18fs8ps263"},defaultClass:"_18fs8ps25w"},neutralHighlight:{conditions:{default:"_18fs8ps264",hover:"_18fs8ps265",focus:"_18fs8ps266",focusWithin:"_18fs8ps267",focusVisible:"_18fs8ps268",active:"_18fs8ps269",disabled:"_18fs8ps26a",placeholder:"_18fs8ps26b"},defaultClass:"_18fs8ps264"},neutralPlain:{conditions:{default:"_18fs8ps26c",hover:"_18fs8ps26d",focus:"_18fs8ps26e",focusWithin:"_18fs8ps26f",focusVisible:"_18fs8ps26g",active:"_18fs8ps26h",disabled:"_18fs8ps26i",placeholder:"_18fs8ps26j"},defaultClass:"_18fs8ps26c"},brandPlain:{conditions:{default:"_18fs8ps26k",hover:"_18fs8ps26l",focus:"_18fs8ps26m",focusWithin:"_18fs8ps26n",focusVisible:"_18fs8ps26o",active:"_18fs8ps26p",disabled:"_18fs8ps26q",placeholder:"_18fs8ps26r"},defaultClass:"_18fs8ps26k"},brandDefault:{conditions:{default:"_18fs8ps26s",hover:"_18fs8ps26t",focus:"_18fs8ps26u",focusWithin:"_18fs8ps26v",focusVisible:"_18fs8ps26w",active:"_18fs8ps26x",disabled:"_18fs8ps26y",placeholder:"_18fs8ps26z"},defaultClass:"_18fs8ps26s"},brandSubdued:{conditions:{default:"_18fs8ps270",hover:"_18fs8ps271",focus:"_18fs8ps272",focusWithin:"_18fs8ps273",focusVisible:"_18fs8ps274",active:"_18fs8ps275",disabled:"_18fs8ps276",placeholder:"_18fs8ps277"},defaultClass:"_18fs8ps270"},brandHighlight:{conditions:{default:"_18fs8ps278",hover:"_18fs8ps279",focus:"_18fs8ps27a",focusWithin:"_18fs8ps27b",focusVisible:"_18fs8ps27c",active:"_18fs8ps27d",disabled:"_18fs8ps27e",placeholder:"_18fs8ps27f"},defaultClass:"_18fs8ps278"},criticalPlain:{conditions:{default:"_18fs8ps27g",hover:"_18fs8ps27h",focus:"_18fs8ps27i",focusWithin:"_18fs8ps27j",focusVisible:"_18fs8ps27k",active:"_18fs8ps27l",disabled:"_18fs8ps27m",placeholder:"_18fs8ps27n"},defaultClass:"_18fs8ps27g"},criticalDefault:{conditions:{default:"_18fs8ps27o",hover:"_18fs8ps27p",focus:"_18fs8ps27q",focusWithin:"_18fs8ps27r",focusVisible:"_18fs8ps27s",active:"_18fs8ps27t",disabled:"_18fs8ps27u",placeholder:"_18fs8ps27v"},defaultClass:"_18fs8ps27o"},criticalSubdued:{conditions:{default:"_18fs8ps27w",hover:"_18fs8ps27x",focus:"_18fs8ps27y",focusWithin:"_18fs8ps27z",focusVisible:"_18fs8ps280",active:"_18fs8ps281",disabled:"_18fs8ps282",placeholder:"_18fs8ps283"},defaultClass:"_18fs8ps27w"},criticalHighlight:{conditions:{default:"_18fs8ps284",hover:"_18fs8ps285",focus:"_18fs8ps286",focusWithin:"_18fs8ps287",focusVisible:"_18fs8ps288",active:"_18fs8ps289",disabled:"_18fs8ps28a",placeholder:"_18fs8ps28b"},defaultClass:"_18fs8ps284"},transparent:{conditions:{default:"_18fs8ps28c",hover:"_18fs8ps28d",focus:"_18fs8ps28e",focusWithin:"_18fs8ps28f",focusVisible:"_18fs8ps28g",active:"_18fs8ps28h",disabled:"_18fs8ps28i",placeholder:"_18fs8ps28j"},defaultClass:"_18fs8ps28c"}}},color:{values:{textNeutralPlain:{conditions:{default:"_18fs8ps28k",hover:"_18fs8ps28l",focus:"_18fs8ps28m",focusWithin:"_18fs8ps28n",focusVisible:"_18fs8ps28o",active:"_18fs8ps28p",disabled:"_18fs8ps28q",placeholder:"_18fs8ps28r"},defaultClass:"_18fs8ps28k"},textNeutralDefault:{conditions:{default:"_18fs8ps28s",hover:"_18fs8ps28t",focus:"_18fs8ps28u",focusWithin:"_18fs8ps28v",focusVisible:"_18fs8ps28w",active:"_18fs8ps28x",disabled:"_18fs8ps28y",placeholder:"_18fs8ps28z"},defaultClass:"_18fs8ps28s"},textNeutralSubdued:{conditions:{default:"_18fs8ps290",hover:"_18fs8ps291",focus:"_18fs8ps292",focusWithin:"_18fs8ps293",focusVisible:"_18fs8ps294",active:"_18fs8ps295",disabled:"_18fs8ps296",placeholder:"_18fs8ps297"},defaultClass:"_18fs8ps290"},textNeutralDisabled:{conditions:{default:"_18fs8ps298",hover:"_18fs8ps299",focus:"_18fs8ps29a",focusWithin:"_18fs8ps29b",focusVisible:"_18fs8ps29c",active:"_18fs8ps29d",disabled:"_18fs8ps29e",placeholder:"_18fs8ps29f"},defaultClass:"_18fs8ps298"},textNeutralContrasted:{conditions:{default:"_18fs8ps29g",hover:"_18fs8ps29h",focus:"_18fs8ps29i",focusWithin:"_18fs8ps29j",focusVisible:"_18fs8ps29k",active:"_18fs8ps29l",disabled:"_18fs8ps29m",placeholder:"_18fs8ps29n"},defaultClass:"_18fs8ps29g"},textBrandDefault:{conditions:{default:"_18fs8ps29o",hover:"_18fs8ps29p",focus:"_18fs8ps29q",focusWithin:"_18fs8ps29r",focusVisible:"_18fs8ps29s",active:"_18fs8ps29t",disabled:"_18fs8ps29u",placeholder:"_18fs8ps29v"},defaultClass:"_18fs8ps29o"},textBrandSubdued:{conditions:{default:"_18fs8ps29w",hover:"_18fs8ps29x",focus:"_18fs8ps29y",focusWithin:"_18fs8ps29z",focusVisible:"_18fs8ps2a0",active:"_18fs8ps2a1",disabled:"_18fs8ps2a2",placeholder:"_18fs8ps2a3"},defaultClass:"_18fs8ps29w"},textBrandDisabled:{conditions:{default:"_18fs8ps2a4",hover:"_18fs8ps2a5",focus:"_18fs8ps2a6",focusWithin:"_18fs8ps2a7",focusVisible:"_18fs8ps2a8",active:"_18fs8ps2a9",disabled:"_18fs8ps2aa",placeholder:"_18fs8ps2ab"},defaultClass:"_18fs8ps2a4"},textCriticalDefault:{conditions:{default:"_18fs8ps2ac",hover:"_18fs8ps2ad",focus:"_18fs8ps2ae",focusWithin:"_18fs8ps2af",focusVisible:"_18fs8ps2ag",active:"_18fs8ps2ah",disabled:"_18fs8ps2ai",placeholder:"_18fs8ps2aj"},defaultClass:"_18fs8ps2ac"},textCriticalSubdued:{conditions:{default:"_18fs8ps2ak",hover:"_18fs8ps2al",focus:"_18fs8ps2am",focusWithin:"_18fs8ps2an",focusVisible:"_18fs8ps2ao",active:"_18fs8ps2ap",disabled:"_18fs8ps2aq",placeholder:"_18fs8ps2ar"},defaultClass:"_18fs8ps2ak"},textCriticalDisabled:{conditions:{default:"_18fs8ps2as",hover:"_18fs8ps2at",focus:"_18fs8ps2au",focusWithin:"_18fs8ps2av",focusVisible:"_18fs8ps2aw",active:"_18fs8ps2ax",disabled:"_18fs8ps2ay",placeholder:"_18fs8ps2az"},defaultClass:"_18fs8ps2as"},iconNeutralPlain:{conditions:{default:"_18fs8ps2b0",hover:"_18fs8ps2b1",focus:"_18fs8ps2b2",focusWithin:"_18fs8ps2b3",focusVisible:"_18fs8ps2b4",active:"_18fs8ps2b5",disabled:"_18fs8ps2b6",placeholder:"_18fs8ps2b7"},defaultClass:"_18fs8ps2b0"},iconNeutralDefault:{conditions:{default:"_18fs8ps2b8",hover:"_18fs8ps2b9",focus:"_18fs8ps2ba",focusWithin:"_18fs8ps2bb",focusVisible:"_18fs8ps2bc",active:"_18fs8ps2bd",disabled:"_18fs8ps2be",placeholder:"_18fs8ps2bf"},defaultClass:"_18fs8ps2b8"},iconNeutralSubdued:{conditions:{default:"_18fs8ps2bg",hover:"_18fs8ps2bh",focus:"_18fs8ps2bi",focusWithin:"_18fs8ps2bj",focusVisible:"_18fs8ps2bk",active:"_18fs8ps2bl",disabled:"_18fs8ps2bm",placeholder:"_18fs8ps2bn"},defaultClass:"_18fs8ps2bg"},iconNeutralDisabled:{conditions:{default:"_18fs8ps2bo",hover:"_18fs8ps2bp",focus:"_18fs8ps2bq",focusWithin:"_18fs8ps2br",focusVisible:"_18fs8ps2bs",active:"_18fs8ps2bt",disabled:"_18fs8ps2bu",placeholder:"_18fs8ps2bv"},defaultClass:"_18fs8ps2bo"},iconNeutralContrasted:{conditions:{default:"_18fs8ps2bw",hover:"_18fs8ps2bx",focus:"_18fs8ps2by",focusWithin:"_18fs8ps2bz",focusVisible:"_18fs8ps2c0",active:"_18fs8ps2c1",disabled:"_18fs8ps2c2",placeholder:"_18fs8ps2c3"},defaultClass:"_18fs8ps2bw"},iconBrandDefault:{conditions:{default:"_18fs8ps2c4",hover:"_18fs8ps2c5",focus:"_18fs8ps2c6",focusWithin:"_18fs8ps2c7",focusVisible:"_18fs8ps2c8",active:"_18fs8ps2c9",disabled:"_18fs8ps2ca",placeholder:"_18fs8ps2cb"},defaultClass:"_18fs8ps2c4"},iconBrandSubdued:{conditions:{default:"_18fs8ps2cc",hover:"_18fs8ps2cd",focus:"_18fs8ps2ce",focusWithin:"_18fs8ps2cf",focusVisible:"_18fs8ps2cg",active:"_18fs8ps2ch",disabled:"_18fs8ps2ci",placeholder:"_18fs8ps2cj"},defaultClass:"_18fs8ps2cc"},iconBrandDisabled:{conditions:{default:"_18fs8ps2ck",hover:"_18fs8ps2cl",focus:"_18fs8ps2cm",focusWithin:"_18fs8ps2cn",focusVisible:"_18fs8ps2co",active:"_18fs8ps2cp",disabled:"_18fs8ps2cq",placeholder:"_18fs8ps2cr"},defaultClass:"_18fs8ps2ck"},iconCriticalDefault:{conditions:{default:"_18fs8ps2cs",hover:"_18fs8ps2ct",focus:"_18fs8ps2cu",focusWithin:"_18fs8ps2cv",focusVisible:"_18fs8ps2cw",active:"_18fs8ps2cx",disabled:"_18fs8ps2cy",placeholder:"_18fs8ps2cz"},defaultClass:"_18fs8ps2cs"},iconCriticalSubdued:{conditions:{default:"_18fs8ps2d0",hover:"_18fs8ps2d1",focus:"_18fs8ps2d2",focusWithin:"_18fs8ps2d3",focusVisible:"_18fs8ps2d4",active:"_18fs8ps2d5",disabled:"_18fs8ps2d6",placeholder:"_18fs8ps2d7"},defaultClass:"_18fs8ps2d0"},iconCriticalDisabled:{conditions:{default:"_18fs8ps2d8",hover:"_18fs8ps2d9",focus:"_18fs8ps2da",focusWithin:"_18fs8ps2db",focusVisible:"_18fs8ps2dc",active:"_18fs8ps2dd",disabled:"_18fs8ps2de",placeholder:"_18fs8ps2df"},defaultClass:"_18fs8ps2d8"},text1Decorative:{conditions:{default:"_18fs8ps2dg",hover:"_18fs8ps2dh",focus:"_18fs8ps2di",focusWithin:"_18fs8ps2dj",focusVisible:"_18fs8ps2dk",active:"_18fs8ps2dl",disabled:"_18fs8ps2dm",placeholder:"_18fs8ps2dn"},defaultClass:"_18fs8ps2dg"},text2Decorative:{conditions:{default:"_18fs8ps2do",hover:"_18fs8ps2dp",focus:"_18fs8ps2dq",focusWithin:"_18fs8ps2dr",focusVisible:"_18fs8ps2ds",active:"_18fs8ps2dt",disabled:"_18fs8ps2du",placeholder:"_18fs8ps2dv"},defaultClass:"_18fs8ps2do"},text3Decorative:{conditions:{default:"_18fs8ps2dw",hover:"_18fs8ps2dx",focus:"_18fs8ps2dy",focusWithin:"_18fs8ps2dz",focusVisible:"_18fs8ps2e0",active:"_18fs8ps2e1",disabled:"_18fs8ps2e2",placeholder:"_18fs8ps2e3"},defaultClass:"_18fs8ps2dw"},icon1Decorative:{conditions:{default:"_18fs8ps2e4",hover:"_18fs8ps2e5",focus:"_18fs8ps2e6",focusWithin:"_18fs8ps2e7",focusVisible:"_18fs8ps2e8",active:"_18fs8ps2e9",disabled:"_18fs8ps2ea",placeholder:"_18fs8ps2eb"},defaultClass:"_18fs8ps2e4"},icon2Decorative:{conditions:{default:"_18fs8ps2ec",hover:"_18fs8ps2ed",focus:"_18fs8ps2ee",focusWithin:"_18fs8ps2ef",focusVisible:"_18fs8ps2eg",active:"_18fs8ps2eh",disabled:"_18fs8ps2ei",placeholder:"_18fs8ps2ej"},defaultClass:"_18fs8ps2ec"},icon3Decorative:{conditions:{default:"_18fs8ps2ek",hover:"_18fs8ps2el",focus:"_18fs8ps2em",focusWithin:"_18fs8ps2en",focusVisible:"_18fs8ps2eo",active:"_18fs8ps2ep",disabled:"_18fs8ps2eq",placeholder:"_18fs8ps2er"},defaultClass:"_18fs8ps2ek"},inherit:{conditions:{default:"_18fs8ps2es",hover:"_18fs8ps2et",focus:"_18fs8ps2eu",focusWithin:"_18fs8ps2ev",focusVisible:"_18fs8ps2ew",active:"_18fs8ps2ex",disabled:"_18fs8ps2ey",placeholder:"_18fs8ps2ez"},defaultClass:"_18fs8ps2es"}}},backgroundColor:{values:{plain:{conditions:{default:"_18fs8ps2f0",hover:"_18fs8ps2f1",focus:"_18fs8ps2f2",focusWithin:"_18fs8ps2f3",focusVisible:"_18fs8ps2f4",active:"_18fs8ps2f5",disabled:"_18fs8ps2f6",placeholder:"_18fs8ps2f7"},defaultClass:"_18fs8ps2f0"},subdued:{conditions:{default:"_18fs8ps2f8",hover:"_18fs8ps2f9",focus:"_18fs8ps2fa",focusWithin:"_18fs8ps2fb",focusVisible:"_18fs8ps2fc",active:"_18fs8ps2fd",disabled:"_18fs8ps2fe",placeholder:"_18fs8ps2ff"},defaultClass:"_18fs8ps2f8"},highlightDim:{conditions:{default:"_18fs8ps2fg",hover:"_18fs8ps2fh",focus:"_18fs8ps2fi",focusWithin:"_18fs8ps2fj",focusVisible:"_18fs8ps2fk",active:"_18fs8ps2fl",disabled:"_18fs8ps2fm",placeholder:"_18fs8ps2fn"},defaultClass:"_18fs8ps2fg"},highlightPale:{conditions:{default:"_18fs8ps2fo",hover:"_18fs8ps2fp",focus:"_18fs8ps2fq",focusWithin:"_18fs8ps2fr",focusVisible:"_18fs8ps2fs",active:"_18fs8ps2ft",disabled:"_18fs8ps2fu",placeholder:"_18fs8ps2fv"},defaultClass:"_18fs8ps2fo"},surfaceNeutralPlain:{conditions:{default:"_18fs8ps2fw",hover:"_18fs8ps2fx",focus:"_18fs8ps2fy",focusWithin:"_18fs8ps2fz",focusVisible:"_18fs8ps2g0",active:"_18fs8ps2g1",disabled:"_18fs8ps2g2",placeholder:"_18fs8ps2g3"},defaultClass:"_18fs8ps2fw"},surfaceNeutralSubdued:{conditions:{default:"_18fs8ps2g4",hover:"_18fs8ps2g5",focus:"_18fs8ps2g6",focusWithin:"_18fs8ps2g7",focusVisible:"_18fs8ps2g8",active:"_18fs8ps2g9",disabled:"_18fs8ps2ga",placeholder:"_18fs8ps2gb"},defaultClass:"_18fs8ps2g4"},surfaceNeutralDepressed:{conditions:{default:"_18fs8ps2gc",hover:"_18fs8ps2gd",focus:"_18fs8ps2ge",focusWithin:"_18fs8ps2gf",focusVisible:"_18fs8ps2gg",active:"_18fs8ps2gh",disabled:"_18fs8ps2gi",placeholder:"_18fs8ps2gj"},defaultClass:"_18fs8ps2gc"},surfaceNeutralHighlight:{conditions:{default:"_18fs8ps2gk",hover:"_18fs8ps2gl",focus:"_18fs8ps2gm",focusWithin:"_18fs8ps2gn",focusVisible:"_18fs8ps2go",active:"_18fs8ps2gp",disabled:"_18fs8ps2gq",placeholder:"_18fs8ps2gr"},defaultClass:"_18fs8ps2gk"},surfaceBrandSubdued:{conditions:{default:"_18fs8ps2gs",hover:"_18fs8ps2gt",focus:"_18fs8ps2gu",focusWithin:"_18fs8ps2gv",focusVisible:"_18fs8ps2gw",active:"_18fs8ps2gx",disabled:"_18fs8ps2gy",placeholder:"_18fs8ps2gz"},defaultClass:"_18fs8ps2gs"},surfaceBrandDepressed:{conditions:{default:"_18fs8ps2h0",hover:"_18fs8ps2h1",focus:"_18fs8ps2h2",focusWithin:"_18fs8ps2h3",focusVisible:"_18fs8ps2h4",active:"_18fs8ps2h5",disabled:"_18fs8ps2h6",placeholder:"_18fs8ps2h7"},defaultClass:"_18fs8ps2h0"},surfaceBrandHighlight:{conditions:{default:"_18fs8ps2h8",hover:"_18fs8ps2h9",focus:"_18fs8ps2ha",focusWithin:"_18fs8ps2hb",focusVisible:"_18fs8ps2hc",active:"_18fs8ps2hd",disabled:"_18fs8ps2he",placeholder:"_18fs8ps2hf"},defaultClass:"_18fs8ps2h8"},surfaceCriticalSubdued:{conditions:{default:"_18fs8ps2hg",hover:"_18fs8ps2hh",focus:"_18fs8ps2hi",focusWithin:"_18fs8ps2hj",focusVisible:"_18fs8ps2hk",active:"_18fs8ps2hl",disabled:"_18fs8ps2hm",placeholder:"_18fs8ps2hn"},defaultClass:"_18fs8ps2hg"},surfaceCriticalDepressed:{conditions:{default:"_18fs8ps2ho",hover:"_18fs8ps2hp",focus:"_18fs8ps2hq",focusWithin:"_18fs8ps2hr",focusVisible:"_18fs8ps2hs",active:"_18fs8ps2ht",disabled:"_18fs8ps2hu",placeholder:"_18fs8ps2hv"},defaultClass:"_18fs8ps2ho"},surfaceCriticalHighlight:{conditions:{default:"_18fs8ps2hw",hover:"_18fs8ps2hx",focus:"_18fs8ps2hy",focusWithin:"_18fs8ps2hz",focusVisible:"_18fs8ps2i0",active:"_18fs8ps2i1",disabled:"_18fs8ps2i2",placeholder:"_18fs8ps2i3"},defaultClass:"_18fs8ps2hw"},interactiveNeutralDefault:{conditions:{default:"_18fs8ps2i4",hover:"_18fs8ps2i5",focus:"_18fs8ps2i6",focusWithin:"_18fs8ps2i7",focusVisible:"_18fs8ps2i8",active:"_18fs8ps2i9",disabled:"_18fs8ps2ia",placeholder:"_18fs8ps2ib"},defaultClass:"_18fs8ps2i4"},interactiveNeutralHovering:{conditions:{default:"_18fs8ps2ic",hover:"_18fs8ps2id",focus:"_18fs8ps2ie",focusWithin:"_18fs8ps2if",focusVisible:"_18fs8ps2ig",active:"_18fs8ps2ih",disabled:"_18fs8ps2ii",placeholder:"_18fs8ps2ij"},defaultClass:"_18fs8ps2ic"},interactiveNeutralPressing:{conditions:{default:"_18fs8ps2ik",hover:"_18fs8ps2il",focus:"_18fs8ps2im",focusWithin:"_18fs8ps2in",focusVisible:"_18fs8ps2io",active:"_18fs8ps2ip",disabled:"_18fs8ps2iq",placeholder:"_18fs8ps2ir"},defaultClass:"_18fs8ps2ik"},interactiveNeutralFocused:{conditions:{default:"_18fs8ps2is",hover:"_18fs8ps2it",focus:"_18fs8ps2iu",focusWithin:"_18fs8ps2iv",focusVisible:"_18fs8ps2iw",active:"_18fs8ps2ix",disabled:"_18fs8ps2iy",placeholder:"_18fs8ps2iz"},defaultClass:"_18fs8ps2is"},interactiveNeutralDisabled:{conditions:{default:"_18fs8ps2j0",hover:"_18fs8ps2j1",focus:"_18fs8ps2j2",focusWithin:"_18fs8ps2j3",focusVisible:"_18fs8ps2j4",active:"_18fs8ps2j5",disabled:"_18fs8ps2j6",placeholder:"_18fs8ps2j7"},defaultClass:"_18fs8ps2j0"},interactiveBrandDefault:{conditions:{default:"_18fs8ps2j8",hover:"_18fs8ps2j9",focus:"_18fs8ps2ja",focusWithin:"_18fs8ps2jb",focusVisible:"_18fs8ps2jc",active:"_18fs8ps2jd",disabled:"_18fs8ps2je",placeholder:"_18fs8ps2jf"},defaultClass:"_18fs8ps2j8"},interactiveBrandHovering:{conditions:{default:"_18fs8ps2jg",hover:"_18fs8ps2jh",focus:"_18fs8ps2ji",focusWithin:"_18fs8ps2jj",focusVisible:"_18fs8ps2jk",active:"_18fs8ps2jl",disabled:"_18fs8ps2jm",placeholder:"_18fs8ps2jn"},defaultClass:"_18fs8ps2jg"},interactiveBrandPressing:{conditions:{default:"_18fs8ps2jo",hover:"_18fs8ps2jp",focus:"_18fs8ps2jq",focusWithin:"_18fs8ps2jr",focusVisible:"_18fs8ps2js",active:"_18fs8ps2jt",disabled:"_18fs8ps2ju",placeholder:"_18fs8ps2jv"},defaultClass:"_18fs8ps2jo"},interactiveBrandFocused:{conditions:{default:"_18fs8ps2jw",hover:"_18fs8ps2jx",focus:"_18fs8ps2jy",focusWithin:"_18fs8ps2jz",focusVisible:"_18fs8ps2k0",active:"_18fs8ps2k1",disabled:"_18fs8ps2k2",placeholder:"_18fs8ps2k3"},defaultClass:"_18fs8ps2jw"},interactiveBrandDisabled:{conditions:{default:"_18fs8ps2k4",hover:"_18fs8ps2k5",focus:"_18fs8ps2k6",focusWithin:"_18fs8ps2k7",focusVisible:"_18fs8ps2k8",active:"_18fs8ps2k9",disabled:"_18fs8ps2ka",placeholder:"_18fs8ps2kb"},defaultClass:"_18fs8ps2k4"},interactiveCriticalDefault:{conditions:{default:"_18fs8ps2kc",hover:"_18fs8ps2kd",focus:"_18fs8ps2ke",focusWithin:"_18fs8ps2kf",focusVisible:"_18fs8ps2kg",active:"_18fs8ps2kh",disabled:"_18fs8ps2ki",placeholder:"_18fs8ps2kj"},defaultClass:"_18fs8ps2kc"},interactiveCriticalHovering:{conditions:{default:"_18fs8ps2kk",hover:"_18fs8ps2kl",focus:"_18fs8ps2km",focusWithin:"_18fs8ps2kn",focusVisible:"_18fs8ps2ko",active:"_18fs8ps2kp",disabled:"_18fs8ps2kq",placeholder:"_18fs8ps2kr"},defaultClass:"_18fs8ps2kk"},interactiveCriticalPressing:{conditions:{default:"_18fs8ps2ks",hover:"_18fs8ps2kt",focus:"_18fs8ps2ku",focusWithin:"_18fs8ps2kv",focusVisible:"_18fs8ps2kw",active:"_18fs8ps2kx",disabled:"_18fs8ps2ky",placeholder:"_18fs8ps2kz"},defaultClass:"_18fs8ps2ks"},interactiveCriticalFocused:{conditions:{default:"_18fs8ps2l0",hover:"_18fs8ps2l1",focus:"_18fs8ps2l2",focusWithin:"_18fs8ps2l3",focusVisible:"_18fs8ps2l4",active:"_18fs8ps2l5",disabled:"_18fs8ps2l6",placeholder:"_18fs8ps2l7"},defaultClass:"_18fs8ps2l0"},interactiveCriticalDisabled:{conditions:{default:"_18fs8ps2l8",hover:"_18fs8ps2l9",focus:"_18fs8ps2la",focusWithin:"_18fs8ps2lb",focusVisible:"_18fs8ps2lc",active:"_18fs8ps2ld",disabled:"_18fs8ps2le",placeholder:"_18fs8ps2lf"},defaultClass:"_18fs8ps2l8"},interactiveNeutralSecondaryDefault:{conditions:{default:"_18fs8ps2lg",hover:"_18fs8ps2lh",focus:"_18fs8ps2li",focusWithin:"_18fs8ps2lj",focusVisible:"_18fs8ps2lk",active:"_18fs8ps2ll",disabled:"_18fs8ps2lm",placeholder:"_18fs8ps2ln"},defaultClass:"_18fs8ps2lg"},interactiveNeutralSecondaryHovering:{conditions:{default:"_18fs8ps2lo",hover:"_18fs8ps2lp",focus:"_18fs8ps2lq",focusWithin:"_18fs8ps2lr",focusVisible:"_18fs8ps2ls",active:"_18fs8ps2lt",disabled:"_18fs8ps2lu",placeholder:"_18fs8ps2lv"},defaultClass:"_18fs8ps2lo"},interactiveNeutralSecondaryPressing:{conditions:{default:"_18fs8ps2lw",hover:"_18fs8ps2lx",focus:"_18fs8ps2ly",focusWithin:"_18fs8ps2lz",focusVisible:"_18fs8ps2m0",active:"_18fs8ps2m1",disabled:"_18fs8ps2m2",placeholder:"_18fs8ps2m3"},defaultClass:"_18fs8ps2lw"},interactiveNeutralSecondaryFocused:{conditions:{default:"_18fs8ps2m4",hover:"_18fs8ps2m5",focus:"_18fs8ps2m6",focusWithin:"_18fs8ps2m7",focusVisible:"_18fs8ps2m8",active:"_18fs8ps2m9",disabled:"_18fs8ps2ma",placeholder:"_18fs8ps2mb"},defaultClass:"_18fs8ps2m4"},interactiveNeutralSecondaryDisabled:{conditions:{default:"_18fs8ps2mc",hover:"_18fs8ps2md",focus:"_18fs8ps2me",focusWithin:"_18fs8ps2mf",focusVisible:"_18fs8ps2mg",active:"_18fs8ps2mh",disabled:"_18fs8ps2mi",placeholder:"_18fs8ps2mj"},defaultClass:"_18fs8ps2mc"},interactiveBrandSecondaryDefault:{conditions:{default:"_18fs8ps2mk",hover:"_18fs8ps2ml",focus:"_18fs8ps2mm",focusWithin:"_18fs8ps2mn",focusVisible:"_18fs8ps2mo",active:"_18fs8ps2mp",disabled:"_18fs8ps2mq",placeholder:"_18fs8ps2mr"},defaultClass:"_18fs8ps2mk"},interactiveBrandSecondaryHovering:{conditions:{default:"_18fs8ps2ms",hover:"_18fs8ps2mt",focus:"_18fs8ps2mu",focusWithin:"_18fs8ps2mv",focusVisible:"_18fs8ps2mw",active:"_18fs8ps2mx",disabled:"_18fs8ps2my",placeholder:"_18fs8ps2mz"},defaultClass:"_18fs8ps2ms"},interactiveBrandSecondaryPressing:{conditions:{default:"_18fs8ps2n0",hover:"_18fs8ps2n1",focus:"_18fs8ps2n2",focusWithin:"_18fs8ps2n3",focusVisible:"_18fs8ps2n4",active:"_18fs8ps2n5",disabled:"_18fs8ps2n6",placeholder:"_18fs8ps2n7"},defaultClass:"_18fs8ps2n0"},interactiveBrandSecondaryFocused:{conditions:{default:"_18fs8ps2n8",hover:"_18fs8ps2n9",focus:"_18fs8ps2na",focusWithin:"_18fs8ps2nb",focusVisible:"_18fs8ps2nc",active:"_18fs8ps2nd",disabled:"_18fs8ps2ne",placeholder:"_18fs8ps2nf"},defaultClass:"_18fs8ps2n8"},interactiveBrandSecondaryDisabled:{conditions:{default:"_18fs8ps2ng",hover:"_18fs8ps2nh",focus:"_18fs8ps2ni",focusWithin:"_18fs8ps2nj",focusVisible:"_18fs8ps2nk",active:"_18fs8ps2nl",disabled:"_18fs8ps2nm",placeholder:"_18fs8ps2nn"},defaultClass:"_18fs8ps2ng"},interactiveCriticalSecondaryDefault:{conditions:{default:"_18fs8ps2no",hover:"_18fs8ps2np",focus:"_18fs8ps2nq",focusWithin:"_18fs8ps2nr",focusVisible:"_18fs8ps2ns",active:"_18fs8ps2nt",disabled:"_18fs8ps2nu",placeholder:"_18fs8ps2nv"},defaultClass:"_18fs8ps2no"},interactiveCriticalSecondaryHovering:{conditions:{default:"_18fs8ps2nw",hover:"_18fs8ps2nx",focus:"_18fs8ps2ny",focusWithin:"_18fs8ps2nz",focusVisible:"_18fs8ps2o0",active:"_18fs8ps2o1",disabled:"_18fs8ps2o2",placeholder:"_18fs8ps2o3"},defaultClass:"_18fs8ps2nw"},interactiveCriticalSecondaryPressing:{conditions:{default:"_18fs8ps2o4",hover:"_18fs8ps2o5",focus:"_18fs8ps2o6",focusWithin:"_18fs8ps2o7",focusVisible:"_18fs8ps2o8",active:"_18fs8ps2o9",disabled:"_18fs8ps2oa",placeholder:"_18fs8ps2ob"},defaultClass:"_18fs8ps2o4"},interactiveCriticalSecondaryFocused:{conditions:{default:"_18fs8ps2oc",hover:"_18fs8ps2od",focus:"_18fs8ps2oe",focusWithin:"_18fs8ps2of",focusVisible:"_18fs8ps2og",active:"_18fs8ps2oh",disabled:"_18fs8ps2oi",placeholder:"_18fs8ps2oj"},defaultClass:"_18fs8ps2oc"},interactiveCriticalSecondaryDisabled:{conditions:{default:"_18fs8ps2ok",hover:"_18fs8ps2ol",focus:"_18fs8ps2om",focusWithin:"_18fs8ps2on",focusVisible:"_18fs8ps2oo",active:"_18fs8ps2op",disabled:"_18fs8ps2oq",placeholder:"_18fs8ps2or"},defaultClass:"_18fs8ps2ok"},interactiveNeutralHighlightDefault:{conditions:{default:"_18fs8ps2os",hover:"_18fs8ps2ot",focus:"_18fs8ps2ou",focusWithin:"_18fs8ps2ov",focusVisible:"_18fs8ps2ow",active:"_18fs8ps2ox",disabled:"_18fs8ps2oy",placeholder:"_18fs8ps2oz"},defaultClass:"_18fs8ps2os"},interactiveNeutralHighlightHovering:{conditions:{default:"_18fs8ps2p0",hover:"_18fs8ps2p1",focus:"_18fs8ps2p2",focusWithin:"_18fs8ps2p3",focusVisible:"_18fs8ps2p4",active:"_18fs8ps2p5",disabled:"_18fs8ps2p6",placeholder:"_18fs8ps2p7"},defaultClass:"_18fs8ps2p0"},interactiveNeutralHighlightPressing:{conditions:{default:"_18fs8ps2p8",hover:"_18fs8ps2p9",focus:"_18fs8ps2pa",focusWithin:"_18fs8ps2pb",focusVisible:"_18fs8ps2pc",active:"_18fs8ps2pd",disabled:"_18fs8ps2pe",placeholder:"_18fs8ps2pf"},defaultClass:"_18fs8ps2p8"},interactiveNeutralHighlightFocused:{conditions:{default:"_18fs8ps2pg",hover:"_18fs8ps2ph",focus:"_18fs8ps2pi",focusWithin:"_18fs8ps2pj",focusVisible:"_18fs8ps2pk",active:"_18fs8ps2pl",disabled:"_18fs8ps2pm",placeholder:"_18fs8ps2pn"},defaultClass:"_18fs8ps2pg"},interactiveNeutralHighlightDisabled:{conditions:{default:"_18fs8ps2po",hover:"_18fs8ps2pp",focus:"_18fs8ps2pq",focusWithin:"_18fs8ps2pr",focusVisible:"_18fs8ps2ps",active:"_18fs8ps2pt",disabled:"_18fs8ps2pu",placeholder:"_18fs8ps2pv"},defaultClass:"_18fs8ps2po"},interactiveBrandHighlightDefault:{conditions:{default:"_18fs8ps2pw",hover:"_18fs8ps2px",focus:"_18fs8ps2py",focusWithin:"_18fs8ps2pz",focusVisible:"_18fs8ps2q0",active:"_18fs8ps2q1",disabled:"_18fs8ps2q2",placeholder:"_18fs8ps2q3"},defaultClass:"_18fs8ps2pw"},interactiveBrandHighlightHovering:{conditions:{default:"_18fs8ps2q4",hover:"_18fs8ps2q5",focus:"_18fs8ps2q6",focusWithin:"_18fs8ps2q7",focusVisible:"_18fs8ps2q8",active:"_18fs8ps2q9",disabled:"_18fs8ps2qa",placeholder:"_18fs8ps2qb"},defaultClass:"_18fs8ps2q4"},interactiveBrandHighlightPressing:{conditions:{default:"_18fs8ps2qc",hover:"_18fs8ps2qd",focus:"_18fs8ps2qe",focusWithin:"_18fs8ps2qf",focusVisible:"_18fs8ps2qg",active:"_18fs8ps2qh",disabled:"_18fs8ps2qi",placeholder:"_18fs8ps2qj"},defaultClass:"_18fs8ps2qc"},interactiveBrandHighlightFocused:{conditions:{default:"_18fs8ps2qk",hover:"_18fs8ps2ql",focus:"_18fs8ps2qm",focusWithin:"_18fs8ps2qn",focusVisible:"_18fs8ps2qo",active:"_18fs8ps2qp",disabled:"_18fs8ps2qq",placeholder:"_18fs8ps2qr"},defaultClass:"_18fs8ps2qk"},interactiveBrandHighlightDisabled:{conditions:{default:"_18fs8ps2qs",hover:"_18fs8ps2qt",focus:"_18fs8ps2qu",focusWithin:"_18fs8ps2qv",focusVisible:"_18fs8ps2qw",active:"_18fs8ps2qx",disabled:"_18fs8ps2qy",placeholder:"_18fs8ps2qz"},defaultClass:"_18fs8ps2qs"},interactiveCriticalHighlightDefault:{conditions:{default:"_18fs8ps2r0",hover:"_18fs8ps2r1",focus:"_18fs8ps2r2",focusWithin:"_18fs8ps2r3",focusVisible:"_18fs8ps2r4",active:"_18fs8ps2r5",disabled:"_18fs8ps2r6",placeholder:"_18fs8ps2r7"},defaultClass:"_18fs8ps2r0"},interactiveCriticalHighlightHovering:{conditions:{default:"_18fs8ps2r8",hover:"_18fs8ps2r9",focus:"_18fs8ps2ra",focusWithin:"_18fs8ps2rb",focusVisible:"_18fs8ps2rc",active:"_18fs8ps2rd",disabled:"_18fs8ps2re",placeholder:"_18fs8ps2rf"},defaultClass:"_18fs8ps2r8"},interactiveCriticalHighlightPressing:{conditions:{default:"_18fs8ps2rg",hover:"_18fs8ps2rh",focus:"_18fs8ps2ri",focusWithin:"_18fs8ps2rj",focusVisible:"_18fs8ps2rk",active:"_18fs8ps2rl",disabled:"_18fs8ps2rm",placeholder:"_18fs8ps2rn"},defaultClass:"_18fs8ps2rg"},interactiveCriticalHighlightFocused:{conditions:{default:"_18fs8ps2ro",hover:"_18fs8ps2rp",focus:"_18fs8ps2rq",focusWithin:"_18fs8ps2rr",focusVisible:"_18fs8ps2rs",active:"_18fs8ps2rt",disabled:"_18fs8ps2ru",placeholder:"_18fs8ps2rv"},defaultClass:"_18fs8ps2ro"},interactiveCriticalHighlightDisabled:{conditions:{default:"_18fs8ps2rw",hover:"_18fs8ps2rx",focus:"_18fs8ps2ry",focusWithin:"_18fs8ps2rz",focusVisible:"_18fs8ps2s0",active:"_18fs8ps2s1",disabled:"_18fs8ps2s2",placeholder:"_18fs8ps2s3"},defaultClass:"_18fs8ps2rw"},decorativeSurfacePlain1:{conditions:{default:"_18fs8ps2s4",hover:"_18fs8ps2s5",focus:"_18fs8ps2s6",focusWithin:"_18fs8ps2s7",focusVisible:"_18fs8ps2s8",active:"_18fs8ps2s9",disabled:"_18fs8ps2sa",placeholder:"_18fs8ps2sb"},defaultClass:"_18fs8ps2s4"},decorativeSurfacePlain2:{conditions:{default:"_18fs8ps2sc",hover:"_18fs8ps2sd",focus:"_18fs8ps2se",focusWithin:"_18fs8ps2sf",focusVisible:"_18fs8ps2sg",active:"_18fs8ps2sh",disabled:"_18fs8ps2si",placeholder:"_18fs8ps2sj"},defaultClass:"_18fs8ps2sc"},decorativeSurfacePlain3:{conditions:{default:"_18fs8ps2sk",hover:"_18fs8ps2sl",focus:"_18fs8ps2sm",focusWithin:"_18fs8ps2sn",focusVisible:"_18fs8ps2so",active:"_18fs8ps2sp",disabled:"_18fs8ps2sq",placeholder:"_18fs8ps2sr"},defaultClass:"_18fs8ps2sk"},decorativeSurfaceSubdued1:{conditions:{default:"_18fs8ps2ss",hover:"_18fs8ps2st",focus:"_18fs8ps2su",focusWithin:"_18fs8ps2sv",focusVisible:"_18fs8ps2sw",active:"_18fs8ps2sx",disabled:"_18fs8ps2sy",placeholder:"_18fs8ps2sz"},defaultClass:"_18fs8ps2ss"},decorativeSurfaceSubdued2:{conditions:{default:"_18fs8ps2t0",hover:"_18fs8ps2t1",focus:"_18fs8ps2t2",focusWithin:"_18fs8ps2t3",focusVisible:"_18fs8ps2t4",active:"_18fs8ps2t5",disabled:"_18fs8ps2t6",placeholder:"_18fs8ps2t7"},defaultClass:"_18fs8ps2t0"},decorativeSurfaceSubdued3:{conditions:{default:"_18fs8ps2t8",hover:"_18fs8ps2t9",focus:"_18fs8ps2ta",focusWithin:"_18fs8ps2tb",focusVisible:"_18fs8ps2tc",active:"_18fs8ps2td",disabled:"_18fs8ps2te",placeholder:"_18fs8ps2tf"},defaultClass:"_18fs8ps2t8"},transparent:{conditions:{default:"_18fs8ps2tg",hover:"_18fs8ps2th",focus:"_18fs8ps2ti",focusWithin:"_18fs8ps2tj",focusVisible:"_18fs8ps2tk",active:"_18fs8ps2tl",disabled:"_18fs8ps2tm",placeholder:"_18fs8ps2tn"},defaultClass:"_18fs8ps2tg"}}},pointerEvents:{values:{none:{conditions:{default:"_18fs8ps2to",hover:"_18fs8ps2tp",focus:"_18fs8ps2tq",focusWithin:"_18fs8ps2tr",focusVisible:"_18fs8ps2ts",active:"_18fs8ps2tt",disabled:"_18fs8ps2tu",placeholder:"_18fs8ps2tv"},defaultClass:"_18fs8ps2to"},auto:{conditions:{default:"_18fs8ps2tw",hover:"_18fs8ps2tx",focus:"_18fs8ps2ty",focusWithin:"_18fs8ps2tz",focusVisible:"_18fs8ps2u0",active:"_18fs8ps2u1",disabled:"_18fs8ps2u2",placeholder:"_18fs8ps2u3"},defaultClass:"_18fs8ps2tw"}}},cursor:{values:{pointer:{conditions:{default:"_18fs8ps2u4",hover:"_18fs8ps2u5",focus:"_18fs8ps2u6",focusWithin:"_18fs8ps2u7",focusVisible:"_18fs8ps2u8",active:"_18fs8ps2u9",disabled:"_18fs8ps2ua",placeholder:"_18fs8ps2ub"},defaultClass:"_18fs8ps2u4"},"not-allowed":{conditions:{default:"_18fs8ps2uc",hover:"_18fs8ps2ud",focus:"_18fs8ps2ue",focusWithin:"_18fs8ps2uf",focusVisible:"_18fs8ps2ug",active:"_18fs8ps2uh",disabled:"_18fs8ps2ui",placeholder:"_18fs8ps2uj"},defaultClass:"_18fs8ps2uc"},auto:{conditions:{default:"_18fs8ps2uk",hover:"_18fs8ps2ul",focus:"_18fs8ps2um",focusWithin:"_18fs8ps2un",focusVisible:"_18fs8ps2uo",active:"_18fs8ps2up",disabled:"_18fs8ps2uq",placeholder:"_18fs8ps2ur"},defaultClass:"_18fs8ps2uk"},text:{conditions:{default:"_18fs8ps2us",hover:"_18fs8ps2ut",focus:"_18fs8ps2uu",focusWithin:"_18fs8ps2uv",focusVisible:"_18fs8ps2uw",active:"_18fs8ps2ux",disabled:"_18fs8ps2uy",placeholder:"_18fs8ps2uz"},defaultClass:"_18fs8ps2us"}}},boxShadow:{values:{interactiveDefaultFocused:{conditions:{default:"_18fs8ps2v0",hover:"_18fs8ps2v1",focus:"_18fs8ps2v2",focusWithin:"_18fs8ps2v3",focusVisible:"_18fs8ps2v4",active:"_18fs8ps2v5",disabled:"_18fs8ps2v6",placeholder:"_18fs8ps2v7"},defaultClass:"_18fs8ps2v0"},interactiveDefaultHovering:{conditions:{default:"_18fs8ps2v8",hover:"_18fs8ps2v9",focus:"_18fs8ps2va",focusWithin:"_18fs8ps2vb",focusVisible:"_18fs8ps2vc",active:"_18fs8ps2vd",disabled:"_18fs8ps2ve",placeholder:"_18fs8ps2vf"},defaultClass:"_18fs8ps2v8"},overlay:{conditions:{default:"_18fs8ps2vg",hover:"_18fs8ps2vh",focus:"_18fs8ps2vi",focusWithin:"_18fs8ps2vj",focusVisible:"_18fs8ps2vk",active:"_18fs8ps2vl",disabled:"_18fs8ps2vm",placeholder:"_18fs8ps2vn"},defaultClass:"_18fs8ps2vg"},modal:{conditions:{default:"_18fs8ps2vo",hover:"_18fs8ps2vp",focus:"_18fs8ps2vq",focusWithin:"_18fs8ps2vr",focusVisible:"_18fs8ps2vs",active:"_18fs8ps2vt",disabled:"_18fs8ps2vu",placeholder:"_18fs8ps2vv"},defaultClass:"_18fs8ps2vo"},none:{conditions:{default:"_18fs8ps2vw",hover:"_18fs8ps2vx",focus:"_18fs8ps2vy",focusWithin:"_18fs8ps2vz",focusVisible:"_18fs8ps2w0",active:"_18fs8ps2w1",disabled:"_18fs8ps2w2",placeholder:"_18fs8ps2w3"},defaultClass:"_18fs8ps2vw"}}},transition:{values:{ease:{conditions:{default:"_18fs8ps2w4",hover:"_18fs8ps2w5",focus:"_18fs8ps2w6",focusWithin:"_18fs8ps2w7",focusVisible:"_18fs8ps2w8",active:"_18fs8ps2w9",disabled:"_18fs8ps2wa",placeholder:"_18fs8ps2wb"},defaultClass:"_18fs8ps2w4"},all:{conditions:{default:"_18fs8ps2wc",hover:"_18fs8ps2wd",focus:"_18fs8ps2we",focusWithin:"_18fs8ps2wf",focusVisible:"_18fs8ps2wg",active:"_18fs8ps2wh",disabled:"_18fs8ps2wi",placeholder:"_18fs8ps2wj"},defaultClass:"_18fs8ps2wc"}}},textDecoration:{values:{none:{conditions:{default:"_18fs8ps2wk",hover:"_18fs8ps2wl",focus:"_18fs8ps2wm",focusWithin:"_18fs8ps2wn",focusVisible:"_18fs8ps2wo",active:"_18fs8ps2wp",disabled:"_18fs8ps2wq",placeholder:"_18fs8ps2wr"},defaultClass:"_18fs8ps2wk"},underline:{conditions:{default:"_18fs8ps2ws",hover:"_18fs8ps2wt",focus:"_18fs8ps2wu",focusWithin:"_18fs8ps2wv",focusVisible:"_18fs8ps2ww",active:"_18fs8ps2wx",disabled:"_18fs8ps2wy",placeholder:"_18fs8ps2wz"},defaultClass:"_18fs8ps2ws"}}},transform:{values:{}}}});const g1="screen and (min-width: 768px)",C1="screen and (min-width: 1024px)",y1=e=>i1(Es,$t[e]),Z=a1({atoms:as});function ue(...e){return e.filter(Boolean).join(" ")}const x1=e=>{const s=r.useRef();return r.useEffect(()=>{if(!e)return;const t=o=>{s.current&&!s.current.contains(o.target)&&e()};return document.addEventListener("mousedown",t),()=>document.removeEventListener("mousedown",t)},[s,e]),s},k1=({fixedWidth:e,icon:s,children:t})=>e===void 0?!!s&&!t:e;function w1(e,s,t){return s in e?Object.defineProperty(e,s,{value:t,enumerable:!0,configurable:!0,writable:!0}):e[s]=t,e}function Da(e,s){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);s&&(o=o.filter(function(a){return Object.getOwnPropertyDescriptor(e,a).enumerable})),t.push.apply(t,o)}return t}function Oa(e){for(var s=1;s<arguments.length;s++){var t=arguments[s]!=null?arguments[s]:{};s%2?Da(Object(t),!0).forEach(function(o){w1(e,o,t[o])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):Da(Object(t)).forEach(function(o){Object.defineProperty(e,o,Object.getOwnPropertyDescriptor(t,o))})}return e}var $1=(e,s,t)=>{for(var o of Object.keys(e)){var a;if(e[o]!==((a=s[o])!==null&&a!==void 0?a:t[o]))return!1}return!0},we=e=>s=>{var t=e.defaultClassName,o=Oa(Oa({},e.defaultVariants),s);for(var a in o){var n,i=(n=o[a])!==null&&n!==void 0?n:e.defaultVariants[a];if(i!=null){var l=i;typeof l=="boolean"&&(l=l===!0?"true":"false");var f=e.variantClassNames[a][l];f&&(t+=" "+f)}}for(var[p,d]of e.compoundVariants)$1(p,o,e.defaultVariants)&&(t+=" "+d);return t},E1=we({defaultClassName:"_18fs8pskr _18fs8psn6 _18fs8pspl _18fs8pss0 _18fs8ps10 _18fs8ps1l _18fs8ps1oo _18fs8ps3 _18fs8ps2wk _18fs8ps2u4 _18fs8ps2ui",variantClassNames:{variant:{primary:"_18fs8ps1oc _18fs8ps1oi _18fs8ps1o0 _18fs8ps1o6 _18fs8ps2i4 _18fs8ps2id _18fs8ps2iw _18fs8ps2ip _18fs8ps2j6 _18fs8ps29g _18fs8ps29e _18fs8ps2v0 _18fs8ps2v9 _18fs8ps2v4 _18fs8ps2w1 _18fs8ps2w2",secondary:"_18fs8ps1nr _18fs8ps1nx _18fs8ps1nf _18fs8ps1nl _18fs8ps1of _18fs8ps1ol _18fs8ps1o3 _18fs8ps1o9 _18fs8ps2lg _18fs8ps2lp _18fs8ps2m8 _18fs8ps2m1 _18fs8ps2mi _18fs8ps28s _18fs8ps29e _18fs8ps2v0 _18fs8ps2v9 _18fs8ps2v4 _18fs8ps2w1 _18fs8ps2w2 _18fs8ps25o _18fs8ps25x _18fs8ps25s _18fs8ps261 _18fs8ps26i",tertiary:"_18fs8ps1oc _18fs8ps1oi _18fs8ps1o0 _18fs8ps1o6 _18fs8ps2os _18fs8ps2p1 _18fs8ps2pk _18fs8ps2pd _18fs8ps2pu _18fs8ps2b8 _18fs8ps2bu",error:"_18fs8ps1oc _18fs8ps1oi _18fs8ps1o0 _18fs8ps1o6 _18fs8ps2kc _18fs8ps2kl _18fs8ps2l4 _18fs8ps2kx _18fs8ps2le _18fs8ps29g _18fs8ps29e"},size:{small:"_1tm59qwg",medium:"_1tm59qwh",large:"_1tm59qwi"},fixedWidth:{true:"_1tm59qwj"}},defaultVariants:{variant:"primary",size:"medium"},compoundVariants:[[{size:"small",fixedWidth:!0},"_18fs8psmu _18fs8psp9 _18fs8psro _18fs8psu3 _18fs8ps1ko _18fs8ps1mr _18fs8ps24r _18fs8ps1qi _18fs8ps1gc _18fs8ps1ff _18fs8ps1i6 _18fs8ps1h9 _18fs8ps17i _18fs8ps14x _18fs8psdl"],[{size:"medium",fixedWidth:!0},"_18fs8psku _18fs8psn9 _18fs8pspo _18fs8pss3 _18fs8ps1kl _18fs8ps1mo _18fs8ps24o _18fs8ps1qf _18fs8ps1gf _18fs8ps1fi _18fs8ps1i9 _18fs8ps1hc _18fs8ps17o _18fs8ps153 _18fs8psdl"],[{size:"large",fixedWidth:!0},"_18fs8pskx _18fs8psnc _18fs8pspr _18fs8pss6 _18fs8ps1ki _18fs8ps1ml _18fs8ps24l _18fs8ps1qc _18fs8ps1gf _18fs8ps1fi _18fs8ps1i9 _18fs8ps1hc _18fs8ps17u _18fs8ps159 _18fs8psdo"],[{size:"small",fixedWidth:!1},"_18fs8pspr _18fs8pss6 _18fs8pskr _18fs8psn6 _18fs8ps1ko _18fs8ps1mr _18fs8ps24r _18fs8ps1qi _18fs8ps1gc _18fs8ps1ff _18fs8ps1i6 _18fs8ps1h9 _18fs8ps17i _18fs8psdl"],[{size:"medium",fixedWidth:!1},"_18fs8pspu _18fs8pss9 _18fs8psku _18fs8psn9 _18fs8ps1kl _18fs8ps1mo _18fs8ps24o _18fs8ps1qf _18fs8ps1gf _18fs8ps1fi _18fs8ps1i9 _18fs8ps1hc _18fs8ps17o _18fs8psdl"],[{size:"large",fixedWidth:!1},"_18fs8pspx _18fs8pssc _18fs8pskx _18fs8psnc _18fs8ps1ki _18fs8ps1ml _18fs8ps24l _18fs8ps1qc _18fs8ps1gf _18fs8ps1fi _18fs8ps1i9 _18fs8ps1hc _18fs8ps17u _18fs8psdo"]]});const bs=r.forwardRef(({children:e,icon:s,size:t,fixedWidth:o,variant:a,disabled:n,className:i,type:l="button",...f},p)=>ee(Z,{as:"button",className:ue(E1({variant:a,size:t,fixedWidth:k1({icon:s,children:e,fixedWidth:o})}),i),disabled:n,ref:p,type:l,"data-macaw-ui-component":"Button",...f,children:[s,e]}));bs.displayName="Button";var I1=we({defaultClassName:"_18fs8ps1nr _18fs8ps1nx _18fs8ps1nf _18fs8ps1nl _18fs8ps1of _18fs8ps1ol _18fs8ps1o3 _18fs8ps1o9 _18fs8ps1gc _18fs8ps1ff _18fs8ps1i6 _18fs8ps1h9 _18fs8ps2gc _18fs8ps6 _18fs8ps1l _18fs8ps10 _18fs8ps1l0 _18fs8ps264",variantClassNames:{size:{small:"_18fs8pspo _18fs8pss3 _18fs8ps17c",medium:"_18fs8pspo _18fs8pss3 _18fs8ps17f",large:"_18fs8psrr _18fs8psu6 _18fs8ps17i"}},defaultVariants:{size:"medium"},compoundVariants:[]});const qi=r.forwardRef(({children:e,size:s,className:t,...o},a)=>v(Z,{as:"span",className:ue(I1({size:s}),t),ref:a,"data-macaw-ui-component":"Chip",...o,children:e}));qi.displayName="Chip";var S1=we({defaultClassName:"",variantClassNames:{size:{small:"yswmh70",medium:"yswmh71",large:"yswmh72",fill:"yswmh73"}},defaultVariants:{size:"medium"},compoundVariants:[]});const Wi=r.forwardRef(({className:e,size:s,viewBox:t="0 0 24 24",color:o,children:a,...n},i)=>v("svg",{ref:i,className:ue(S1({size:s}),as({color:o}),e),viewBox:t,fill:"none",xmlns:"http://www.w3.org/2000/svg","data-macaw-ui-component":"Icon",...n,children:a}));Wi.displayName="SVGWrapper";const ae=(e,s)=>{const t=r.forwardRef((o,a)=>v(Wi,{viewBox:s,ref:a,...o,children:e}));return t.displayName="withSVGWrapper",t},st=ae(v("path",{fill:"currentColor",d:"M15.932 10H8.067a.5.5 0 0 0-.384.82l3.933 4.72a.5.5 0 0 0 .768 0l3.933-4.72a.5.5 0 0 0-.385-.82Z"})),R1=ae(v("path",{fill:"currentColor",d:"M8.067 14h7.865a.5.5 0 0 0 .385-.82l-3.933-4.72a.5.5 0 0 0-.768 0l-3.933 4.72a.5.5 0 0 0 .384.82Z"})),P1=ae(v("path",{fill:"currentColor",d:"M11.7071 5.70711C12.0976 5.31658 12.0976 4.68342 11.7071 4.29289C11.3166 3.90237 10.6834 3.90237 10.2929 4.29289L3.29289 11.2929C2.90237 11.6834 2.90237 12.3166 3.29289 12.7071L10.2929 19.7071C10.6834 20.0976 11.3166 20.0976 11.7071 19.7071C12.0976 19.3166 12.0976 18.6834 11.7071 18.2929L6.41423 13H19C19.5523 13 20 12.5523 20 12C20 11.4477 19.5523 11 19 11H6.4142L11.7071 5.70711Z"})),D1=ae(v("path",{fill:"currentColor",d:"M12.2929 5.70711C11.9024 5.31658 11.9024 4.68342 12.2929 4.29289C12.6834 3.90237 13.3166 3.90237 13.7071 4.29289L20.7071 11.2929C21.0976 11.6834 21.0976 12.3166 20.7071 12.7071L13.7071 19.7071C13.3166 20.0976 12.6834 20.0976 12.2929 19.7071C11.9024 19.3166 11.9024 18.6834 12.2929 18.2929L17.5858 13H5C4.44771 13 4 12.5523 4 12C4 11.4477 4.44771 11 5 11H17.5858L12.2929 5.70711Z"})),Zo=ae(v("path",{fill:"currentColor",fillRule:"evenodd",d:"M6.293 9.293a1 1 0 0 1 1.414 0L12 13.586l4.293-4.293a1 1 0 1 1 1.414 1.414l-5 5a1 1 0 0 1-1.414 0l-5-5a1 1 0 0 1 0-1.414Z",clipRule:"evenodd"})),O1=ae(v("path",{fill:"currentColor",fillRule:"evenodd",d:"M6.293 14.707a1 1 0 0 0 1.414 0L12 10.414l4.293 4.293a1 1 0 0 0 1.414-1.414l-5-5a1 1 0 0 0-1.414 0l-5 5a1 1 0 0 0 0 1.414Z",clipRule:"evenodd"})),T1=ae(v("path",{fill:"currentColor",fillRule:"evenodd",d:"M10.607 3a.45.45 0 0 0-.447.405l-.108 1.073a.976.976 0 0 1-.637.8 7.154 7.154 0 0 0-.495.212c-.343.163-.753.134-1.045-.11l-.766-.638a.45.45 0 0 0-.606.028L4.77 6.503a.45.45 0 0 0-.028.606l.639.766c.243.292.272.702.109 1.045a7.163 7.163 0 0 0-.212.495.976.976 0 0 1-.8.637l-1.073.107a.45.45 0 0 0-.405.448v2.786a.45.45 0 0 0 .405.447l1.073.108a.976.976 0 0 1 .8.637c.065.168.135.333.212.495.163.343.134.753-.11 1.045l-.638.766a.45.45 0 0 0 .028.607l1.733 1.732a.45.45 0 0 0 .606.028l.766-.639c.292-.243.702-.271 1.045-.109.162.077.327.147.495.212.343.132.6.434.637.8l.107 1.073a.45.45 0 0 0 .448.405h2.786a.45.45 0 0 0 .447-.405l.108-1.073a.976.976 0 0 1 .637-.8c.168-.065.333-.135.495-.212.343-.163.753-.134 1.045.11l.766.638a.45.45 0 0 0 .607-.027l1.732-1.734a.45.45 0 0 0 .028-.606l-.639-.766c-.243-.292-.272-.702-.109-1.045.077-.162.147-.327.212-.495a.976.976 0 0 1 .8-.637l1.073-.107a.45.45 0 0 0 .405-.448v-2.786a.45.45 0 0 0-.405-.447l-1.073-.108a.976.976 0 0 1-.8-.637 7.19 7.19 0 0 0-.212-.495c-.163-.343-.134-.753.11-1.045l.638-.766a.45.45 0 0 0-.027-.606L17.496 4.77a.45.45 0 0 0-.606-.028l-.766.639c-.292.243-.702.272-1.045.109a7.167 7.167 0 0 0-.495-.212.976.976 0 0 1-.637-.8l-.107-1.073A.45.45 0 0 0 13.393 3h-2.786ZM12 14.7a2.7 2.7 0 1 0 0-5.4 2.7 2.7 0 0 0 0 5.4Z",clipRule:"evenodd"})),N1=ae(v("path",{fill:"currentColor",d:"M5 5.5a3.5 3.5 0 0 1 6.826-1.093A5.486 5.486 0 0 0 10 8.5v1c0 .054 0 .108.002.162A3.5 3.5 0 0 1 5 6.5v-1ZM10.437 11.652a10 10 0 0 0-4.878.253l-.104.032a4 4 0 0 0-2.746 4.607l.13.652a1 1 0 0 0 .98.804h3.86a6.004 6.004 0 0 1 3.737-4.816 5.505 5.505 0 0 1-.979-1.532ZM12 8.5a3.5 3.5 0 1 1 7 0v1a3.5 3.5 0 1 1-7 0v-1ZM9.709 19.544a4 4 0 0 1 2.746-4.607l.104-.032a9.999 9.999 0 0 1 5.882 0l.104.032a4 4 0 0 1 2.746 4.607l-.13.652a1 1 0 0 1-.98.804H10.82a1 1 0 0 1-.98-.804l-.131-.652Z"})),M1=ae(v("path",{fill:"currentColor",d:"M14 3a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1h-5ZM14 11a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1v-8a1 1 0 0 0-1-1h-5ZM4 16a1 1 0 0 1 1-1h5a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-4ZM5 3a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H5Z"})),A1=ae(v("path",{d:"m4 5a1 1 0 0 1 1-1h5a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1-1zm0 9a1 1 0 0 1 1-1h5a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1-1zm10-1a1 1 0 0 0 -1 1v5a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1v-5a1 1 0 0 0 -1-1zm1-9h2v3h3v2h-3v3h-2v-3h-3v-2h3z",fill:"currentColor"})),L1=ae(v(Ve,{children:v("path",{fill:"currentColor",d:"M4 7a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H5a1 1 0 0 1-1-1ZM4 12a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H5a1 1 0 0 1-1-1ZM5 16a1 1 0 1 0 0 2h14a1 1 0 1 0 0-2H5Z"})})),V1=ae(v("path",{fill:"currentColor",d:"M12.002 7.75a1.75 1.75 0 1 1 0-3.5 1.75 1.75 0 0 1 0 3.5Zm0 6a1.75 1.75 0 1 1 0-3.5 1.75 1.75 0 0 1 0 3.5ZM10.252 18a1.75 1.75 0 1 0 3.5 0 1.75 1.75 0 0 0-3.5 0Z"})),H1=ae(v("path",{fill:"currentColor",d:"M2 3.5a1 1 0 0 0 0 2h2.702l2.264 8.961.055.253a1 1 0 0 0 .999.786h9.982a1 1 0 0 0 .977-.786l1.755-7a1 1 0 0 0-.977-1.214H6.98l-.682-3H2ZM11 18.5a2 2 0 1 1-4 0 2 2 0 0 1 4 0ZM17 20.5a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z"})),j1=ae(v("path",{fill:"currentColor",fillRule:"evenodd",clipRule:"evenodd",d:"M14.1567 4.52715C13.0959 4.53253 12.0807 4.95909 11.3344 5.713L3.74994 13.3744C2.78204 14.3522 2.78602 15.9282 3.75884 16.901L7.27936 20.4215C8.26496 21.4071 9.86623 21.3964 10.8385 20.3976L18.3662 12.6647C19.0932 11.9179 19.5 10.9168 19.5 9.87459L19.5 6.00766C19.5 5.17626 18.8237 4.50346 17.9923 4.50768L14.1567 4.52715ZM15 10.5C15.8284 10.5 16.5 9.82843 16.5 9C16.5 8.17157 15.8284 7.5 15 7.5C14.1716 7.5 13.5 8.17157 13.5 9C13.5 9.82843 14.1716 10.5 15 10.5Z"})),F1=ae(ee(Ve,{children:[v("path",{fill:"currentColor",d:"M11.365 3.341c0 1.293-2.096 2.342-4.682 2.342C4.096 5.683 2 4.634 2 3.34 2 2.048 4.096 1 6.683 1c2.586 0 4.682 1.048 4.682 2.341Z"}),v("path",{fill:"currentColor",d:"M10.517 6.044c-1.042.52-2.399.81-3.834.81-1.436 0-2.793-.29-3.835-.81A4.939 4.939 0 0 1 2 5.51v1.893c0 .287.124.56.368.713.624.39 2.047 1.078 4.315 1.078 1.271 0 2.277-.216 3.026-.475a8.991 8.991 0 0 1 1.566-.915c.06-.121.09-.26.09-.4V5.51a4.94 4.94 0 0 1-.848.534ZM6.556 12.878a8.984 8.984 0 0 1 1.345-2.411 10.4 10.4 0 0 1-1.218.07c-1.436 0-2.793-.288-3.835-.809A4.939 4.939 0 0 1 2 9.195v1.893c0 .287.124.56.368.712.612.383 1.994 1.053 4.188 1.078Z"}),v("path",{fill:"currentColor",fillRule:"evenodd",d:"M22 16a7 7 0 1 1-14 0 7 7 0 0 1 14 0Zm-7.574-4.547c0-.092.075-.168.168-.168h.812c.093 0 .168.075.168.168v.982a.167.167 0 0 1-.02.08c.194.03.376.074.543.133.34.118.621.271.843.461.229.19.402.392.52.608.117.215.18.424.186.627 0 .052-.02.101-.059.147a.2.2 0 0 1-.147.059h-1.098a.39.39 0 0 1-.176-.04.292.292 0 0 1-.127-.137c-.04-.17-.157-.317-.353-.44-.19-.131-.438-.197-.745-.197-.32 0-.575.059-.764.177-.183.117-.275.297-.275.539 0 .156.046.29.138.401.098.105.258.2.48.285.228.078.529.166.901.264.575.118 1.042.258 1.402.422.36.163.624.375.793.637.17.254.255.578.255.97 0 .438-.124.813-.372 1.127-.242.313-.578.555-1.01.725-.275.106-.58.177-.915.215v.988a.168.168 0 0 1-.168.168h-.812a.168.168 0 0 1-.168-.168V19.5a3.437 3.437 0 0 1-1.004-.246c-.418-.183-.735-.422-.95-.716a1.678 1.678 0 0 1-.343-.94c0-.053.02-.099.058-.138a.186.186 0 0 1 .147-.068h1.049c.085 0 .15.02.196.058a.587.587 0 0 1 .127.128c.046.11.118.219.216.323.104.105.245.193.421.265.177.065.396.098.657.098.425 0 .742-.069.95-.206.216-.137.324-.323.324-.559a.524.524 0 0 0-.177-.411c-.11-.105-.29-.2-.539-.284a10.489 10.489 0 0 0-.97-.275 5.785 5.785 0 0 1-1.254-.402c-.34-.17-.598-.385-.774-.646-.17-.268-.255-.598-.255-.99s.108-.739.323-1.039c.216-.307.52-.546.912-.715.265-.12.565-.199.899-.237a.168.168 0 0 1-.013-.065v-.982Z",clipRule:"evenodd"})]})),B1=ae(v("path",{clipRule:"evenodd",d:"m4 5a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1v-12a1 1 0 0 0 -1-1zm2 4a1 1 0 1 0 0-2 1 1 0 0 0 0 2zm13-2h-10v2h10zm-7 4 4 6h-8z",fill:"currentColor",fillRule:"evenodd"})),z1=ae(ee(Ve,{children:[v("path",{fill:"currentColor",fillRule:"evenodd",d:"M4 3a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h7.037l.125-.62a2 2 0 0 1 .547-1.022l.36-.358H10.33V5h3.33v10.41l2-1.998V5H19v5.096a2.992 2.992 0 0 1 2-.68V4a1 1 0 0 0-1-1H4Zm1 2v12h3.33V5H5Z",clipRule:"evenodd"}),v("path",{fill:"currentColor",d:"M21.612 11.707a1 1 0 0 0-1.414 0l-7.075 7.066-.71 3.536 3.536-.705 7.076-7.067a1 1 0 0 0 0-1.414l-1.413-1.415Z"})]})),q1=ae(ee(Ve,{children:[v("path",{fill:"currentColor",d:"M4 2a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h5v-2H4V4h10v5h2V4a2 2 0 0 0-2-2H4Z"}),v("path",{fill:"currentColor",fillRule:"evenodd",d:"M12 8c0 .348-.048.682-.136 1H11a2 2 0 0 0-2 2v1.118C7.853 12.683 6.468 13 5 13v-2a7.61 7.61 0 0 0 2.1-.287C6.43 9.965 6 9.044 6 8H5V6h3V5h2v1h3v2h-1Zm-2 0c0 .584-.312 1.214-1 1.768C8.312 9.214 8 8.584 8 8h2Z",clipRule:"evenodd"}),v("path",{fill:"currentColor",d:"M14.977 16.913h2.046l-1.034-2.904-1.012 2.904Z"}),v("path",{fill:"currentColor",fillRule:"evenodd",d:"M10 11a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1H11a1 1 0 0 1-1-1V11Zm2.392 8.85a.25.25 0 0 1-.165-.066.25.25 0 0 1-.066-.165c0-.037.004-.07.011-.099l2.585-7.062a.426.426 0 0 1 .132-.209.427.427 0 0 1 .297-.099h1.628c.125 0 .22.033.286.099a.4.4 0 0 1 .143.209l2.574 7.062c.015.03.022.062.022.099a.231.231 0 0 1-.077.165.224.224 0 0 1-.165.066h-1.353c-.11 0-.194-.026-.253-.077a.484.484 0 0 1-.099-.154l-.429-1.122h-2.937l-.418 1.122a.484.484 0 0 1-.099.154c-.051.051-.14.077-.264.077h-1.353Z",clipRule:"evenodd"})]})),W1=ae(v("path",{fill:"currentColor",fillRule:"evenodd",d:"M6 3C6 2.448 6.449 2 7 2h2.17a3.001 3.001 0 0 0 5.658 0H17c.552 0 1 .448 1 1v18c0 .552-.448 1-1 1h-2.17a3.001 3.001 0 0 0-5.658 0H7A1.001 1.001 0 0 1 6 21V3Zm9.814 6.085a.636.636 0 0 0-.9-.899l-6.728 6.729a.636.636 0 0 0 .899.899l6.729-6.729Zm-5.272.186a1.271 1.271 0 1 1-2.542 0 1.271 1.271 0 0 1 2.542 0ZM14.73 16a1.271 1.271 0 1 0 0-2.543 1.271 1.271 0 0 0 0 2.543Z",clipRule:"evenodd"})),K1=ae(v("path",{clipRule:"evenodd",d:"m5 4a1 1 0 0 0 -1 1v14a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-14a1 1 0 0 0 -1-1zm11.728 5.685a1 1 0 0 0 -1.456-1.37l-4.92 5.226-1.624-1.726a1 1 0 0 0 -1.456 1.37l2.353 2.5a1 1 0 0 0 1.456 0z",fill:"currentColor",fillRule:"evenodd"})),U1=ae(v("path",{fill:"currentColor",fillRule:"evenodd",d:"M7.293 9.707a1 1 0 0 0 1.414 0L12 6.414l3.293 3.293a1 1 0 0 0 1.414-1.414l-4-4a1 1 0 0 0-1.414 0l-4 4a1 1 0 0 0 0 1.414ZM7.293 14.293a1 1 0 0 1 1.414 0L12 17.586l3.293-3.293a1 1 0 0 1 1.414 1.414l-4 4a1 1 0 0 1-1.414 0l-4-4a1 1 0 0 1 0-1.414Z",clipRule:"evenodd"})),Ki=ae(v("path",{fill:"currentColor",d:"M18.364 5.636a1 1 0 0 0-1.414 0L12 10.586l-4.95-4.95A1 1 0 0 0 5.636 7.05l4.95 4.95-4.95 4.95a1 1 0 0 0 1.414 1.414l4.95-4.95 4.95 4.95a1 1 0 0 0 1.414-1.414L13.414 12l4.95-4.95a1 1 0 0 0 0-1.414Z"})),Z1=ae(ee(Ve,{children:[v("path",{fill:"currentColor",d:"M4 21h11a1 1 0 0 0 1-1v-2h-4a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h4V7.414a1 1 0 0 0-.293-.707l-3.414-3.414A1 1 0 0 0 11.586 3H4a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1Z"}),v("path",{fill:"currentColor",d:"M18 19v-3h-6v-3h6v-3l5 4.5-5 4.5Z"})]})),Ui=ae(v("path",{fill:"currentColor",fillRule:"evenodd",d:"M12 21a9 9 0 1 0 0-18 9 9 0 0 0 0 18Zm2.95-13.364a1 1 0 0 1 1.414 1.414L13.414 12l2.95 2.95a1 1 0 0 1-1.414 1.414L12 13.414l-2.95 2.95a1 1 0 0 1-1.414-1.414l2.95-2.95-2.95-2.95A1 1 0 0 1 9.05 7.636l2.95 2.95 2.95-2.95Z",clipRule:"evenodd"})),Zi=ae(v("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.708 12.886a6.25 6.25 0 1 1 1.178-1.178l4.084 4.083a.833.833 0 0 1-1.178 1.178l-4.084-4.084Zm.792-4.97a4.583 4.583 0 1 1-9.166 0 4.583 4.583 0 0 1 9.166 0Z",clipRule:"evenodd"}),"0 0 20 20"),Y1=ae(v("path",{fill:"currentColor",d:"M20.193 15.731A9 9 0 0 1 9.808 3.269a9 9 0 1 0 10.385 12.462Z"})),G1=ae(v("path",{fill:"currentColor",d:"M13 1v3.5a1 1 0 1 1-2 0V1h2ZM17 12a5 5 0 1 1-10 0 5 5 0 0 1 10 0ZM4.5 11H1v2h3.5a1 1 0 1 0 0-2ZM3.515 19.071l2.475-2.475a1 1 0 0 1 1.414 1.414l-2.475 2.475-1.414-1.414ZM7.404 5.99 4.929 3.515 3.515 4.929 5.99 7.404A1 1 0 0 0 7.404 5.99ZM13 23v-3.5a1 1 0 1 0-2 0V23h2ZM19.5 11H23v2h-3.5a1 1 0 1 1 0-2ZM19.071 3.515 16.596 5.99a1 1 0 0 0 1.414 1.414l2.475-2.475-1.414-1.414ZM18.01 16.596l2.475 2.475-1.414 1.414-2.475-2.475a1 1 0 0 1 1.414-1.414Z"})),X1=ae(v("path",{fill:"currentColor",d:"M12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21ZM11 9V7H13V9H11ZM11 17V11H13V17H11Z",fillRule:"evenodd",clipRule:"evenodd"})),J1=ae(v("path",{fill:"currentColor",d:"M12.8762 2.59313C12.4963 1.90235 11.5037 1.90235 11.1238 2.59313L1.81504 19.5181C1.44846 20.1845 1.93064 21 2.69126 21H21.3087C22.0693 21 22.5515 20.1845 22.1849 19.5181L12.8762 2.59313ZM11 8H13V14H11V8ZM11 16H13V18H11V16Z",fillRule:"evenodd",clipRule:"evenodd"})),Q1=ae(ee(Ve,{children:[v("path",{d:"M9 3C9 2.44772 9.44772 2 10 2H14C14.5523 2 15 2.44772 15 3V4H18C18.5523 4 19 4.44772 19 5C19 5.55228 18.5523 6 18 6H6C5.44772 6 5 5.55228 5 5C5 4.44772 5.44772 4 6 4H9V3Z",fill:"currentColor"}),v("path",{fill:"currentColor",d:"M18.5 8H5.5L6.84356 19.5399C6.93665 20.4088 7.59175 21.1183 8.44863 21.2897C10.7789 21.7558 13.2211 21.7558 15.5514 21.2897C16.4083 21.1183 17.0633 20.4088 17.1564 19.5399L18.5 8ZM11 11C11 10.4477 10.5523 10 10 10C9.44771 10 9 10.4477 9 11V18C9 18.5523 9.44771 19 10 19C10.5523 19 11 18.5523 11 18V11ZM14 10C14.5523 10 15 10.4477 15 11V18C15 18.5523 14.5523 19 14 19C13.4477 19 13 18.5523 13 18V11C13 10.4477 13.4477 10 14 10Z",fillRule:"evenodd",clipRule:"evenodd"})]})),ec=ae(v("path",{fill:"currentColor",d:"M4 5C3.44772 5 3 5.44772 3 6V18C3 18.5523 3.44772 19 4 19H20C20.5523 19 21 18.5523 21 18V6C21 5.44772 20.5523 5 20 5H4ZM11.4 14.3L5 9.5V7L12 12.25L19 7V9.5L12.6 14.3C12.2444 14.5667 11.7556 14.5667 11.4 14.3Z",fillRule:"evenodd",clipRule:"evenodd"})),sc=ae(v("path",{fill:"currentColor",d:"M8 7c1.10457 0 2-.89543 2-2s-.89543-2-2-2-2 .89543-2 2 .89543 2 2 2ZM8 14c1.10457 0 2-.8954 2-2s-.89543-2-2-2-2 .8954-2 2 .89543 2 2 2ZM10 19c0 1.1046-.89543 2-2 2s-2-.8954-2-2 .89543-2 2-2 2 .8954 2 2ZM16 7c1.1046 0 2-.89543 2-2s-.8954-2-2-2-2 .89543-2 2 .8954 2 2 2ZM18 12c0 1.1046-.8954 2-2 2s-2-.8954-2-2 .8954-2 2-2 2 .8954 2 2ZM16 21c1.1046 0 2-.8954 2-2s-.8954-2-2-2-2 .8954-2 2 .8954 2 2 2Z"})),tc=ae(ee(Ve,{children:[v("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M4 2.375C3.10254 2.375 2.375 3.10254 2.375 4V9C2.375 9.89746 3.10254 10.625 4 10.625H9C9.89746 10.625 10.625 9.89746 10.625 9V4C10.625 3.10254 9.89746 2.375 9 2.375L4 2.375ZM3.625 4C3.625 3.79289 3.79289 3.625 4 3.625L9 3.625C9.20711 3.625 9.375 3.79289 9.375 4V9C9.375 9.20711 9.20711 9.375 9 9.375H4C3.79289 9.375 3.625 9.20711 3.625 9L3.625 4Z",fill:"currentColor"}),v("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M15 2.375C14.1025 2.375 13.375 3.10254 13.375 4V9C13.375 9.89746 14.1025 10.625 15 10.625H20C20.8975 10.625 21.625 9.89746 21.625 9L21.625 4C21.625 3.10254 20.8975 2.375 20 2.375L15 2.375ZM14.625 4C14.625 3.79289 14.7929 3.625 15 3.625L20 3.625C20.2071 3.625 20.375 3.79289 20.375 4L20.375 9C20.375 9.20711 20.2071 9.375 20 9.375H15C14.7929 9.375 14.625 9.20711 14.625 9V4Z",fill:"currentColor"}),v("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.375 15C2.375 14.1025 3.10254 13.375 4 13.375H9C9.89746 13.375 10.625 14.1025 10.625 15V20C10.625 20.8975 9.89746 21.625 9 21.625H4C3.10254 21.625 2.375 20.8975 2.375 20L2.375 15ZM4 14.625C3.79289 14.625 3.625 14.7929 3.625 15L3.625 20C3.625 20.2071 3.79289 20.375 4 20.375H9C9.20711 20.375 9.375 20.2071 9.375 20V15C9.375 14.7929 9.20711 14.625 9 14.625H4Z",fill:"currentColor"}),v("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M15 13.375C14.1025 13.375 13.375 14.1025 13.375 15V20C13.375 20.8975 14.1025 21.625 15 21.625H20C20.8975 21.625 21.625 20.8975 21.625 20L21.625 15C21.625 14.1025 20.8975 13.375 20 13.375H15ZM14.625 15C14.625 14.7929 14.7929 14.625 15 14.625H20C20.2071 14.625 20.375 14.7929 20.375 15L20.375 20C20.375 20.2071 20.2071 20.375 20 20.375H15C14.7929 20.375 14.625 20.2071 14.625 20V15Z",fill:"currentColor"})]})),oc=ae(ee(Ve,{children:[v("path",{fill:"currentColor",d:"M4 6a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2H6v11a2 2 0 0 1-2-2V6Z"}),v("path",{fill:"currentColor",fillRule:"evenodd",d:"M10 8a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2-2v-9a2 2 0 0 0-2-2h-9Zm0 2h9v9h-9v-9Z",clipRule:"evenodd"})]})),nc=ae(v("path",{fill:"currentColor",fillRule:"evenodd",d:"M4 5C3.44772 5 3 5.44772 3 6V18C3 18.5523 3.44772 19 4 19H20C20.5523 19 21 18.5523 21 18V6C21 5.44772 20.5523 5 20 5H4ZM5 7V17H8.33337V7H5ZM13.6666 17H10.3334V7H13.6666V17ZM15.6666 17H19V7H15.6666V17Z",clipRule:"evenodd"})),ac=ae(ee(Ve,{children:[v("path",{fill:"currentColor",fillRule:"evenodd",d:"M3 5C3 4.44772 3.44772 4 4 4H20C20.5523 4 21 4.44772 21 5V10C21 10.5523 20.5523 11 20 11H4C3.44772 11 3 10.5523 3 10V5ZM5 9V6H19V9H5Z",clipRule:"evenodd"}),v("path",{fill:"currentColor",fillRule:"evenodd",d:"M3 14C3 13.4477 3.44772 13 4 13H20C20.5523 13 21 13.4477 21 14V19C21 19.5523 20.5523 20 20 20H4C3.44772 20 3 19.5523 3 19V14ZM5 18V15H19V18H5Z",clipRule:"evenodd"})]})),ic=ae(v("path",{fill:"currentColor",fillRule:"evenodd",d:"M5 3a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5Zm0 2h4v4H5V5ZM5 13a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2H5Zm0 2h4v4H5v-4ZM13 5a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2V5Zm6 0h-4v4h4V5ZM15 13a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2h-4Zm0 2h4v4h-4v-4Z",clipRule:"evenodd"})),rc=ae(v("path",{fill:"currentColor",d:"M8 5a1 1 0 0 0 0 2h12a1 1 0 1 0 0-2H8ZM8 11a1 1 0 1 0 0 2h12a1 1 0 1 0 0-2H8ZM7 18a1 1 0 0 1 1-1h12a1 1 0 1 1 0 2H8a1 1 0 0 1-1-1ZM4 7a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM5 12a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM4 19a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"})),lc=ae(v("path",{fill:"currentColor",d:"M20 12a1 1 0 0 0-1-1h-6V5a1 1 0 1 0-2 0v6H5a1 1 0 1 0 0 2h6v6a1 1 0 1 0 2 0v-6h6a1 1 0 0 0 1-1Z"})),fc=ae(ee(Ve,{children:[v("path",{d:"M2.99921 4.99997C2.99921 4.44768 3.44692 3.99997 3.99921 3.99997H8.49921L10.9992 5.99997H17.9992C18.5515 5.99997 18.9992 6.44768 18.9992 6.99997V8.99997H6.69138C5.44084 8.99997 4.32148 9.77569 3.88239 10.9466L2.99921 13.3017V4.99997Z",fill:"currentColor"}),v("path",{d:"M4.44072 19H18.3047C18.7216 19 19.0947 18.7415 19.2411 18.3512L21.4911 12.3512C21.7362 11.6974 21.2529 11 20.5547 11H6.69073C6.27388 11 5.90076 11.2586 5.7544 11.6489L3.50439 17.6489C3.25924 18.3027 3.74252 19 4.44072 19Z",fill:"currentColor"})]})),cc=ae(v("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14.7071 6.29289C15.0976 6.68342 15.0976 7.31658 14.7071 7.70711L10.4142 12L14.7071 16.2929C15.0976 16.6834 15.0976 17.3166 14.7071 17.7071C14.3166 18.0976 13.6834 18.0976 13.2929 17.7071L8.29289 12.7071C7.90237 12.3166 7.90237 11.6834 8.29289 11.2929L13.2929 6.29289C13.6834 5.90237 14.3166 5.90237 14.7071 6.29289Z",fill:"currentColor"})),pc=ae(v("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.29289 6.29289C8.90237 6.68342 8.90237 7.31658 9.29289 7.70711L13.5858 12L9.29289 16.2929C8.90237 16.6834 8.90237 17.3166 9.29289 17.7071C9.68342 18.0976 10.3166 18.0976 10.7071 17.7071L15.7071 12.7071C16.0976 12.3166 16.0976 11.6834 15.7071 11.2929L10.7071 6.29289C10.3166 5.90237 9.68342 5.90237 9.29289 6.29289Z",fill:"currentColor"})),dc=ae(ee(Ve,{children:[v("path",{d:"M18.4142 5.41422C17.6332 4.63317 16.3669 4.63317 15.5858 5.41422L14.3536 6.64643L17.8891 10.182L19.1213 8.94975C19.9024 8.1687 19.9024 6.90237 19.1213 6.12132L18.4142 5.41422Z",fill:"currentColor"}),v("path",{d:"M16.4749 11.5962L12.9394 8.06064L4.9792 16.0208L4.27209 20.2635L8.51474 19.5564L16.4749 11.5962Z",fill:"currentColor"})]})),uc=ae(ee(Ve,{children:[v("path",{d:"M11 5.17157L8.58578 7.58579L7.17157 6.17157L10.5858 2.75736C11.3668 1.97631 12.6332 1.97631 13.4142 2.75736L16.8284 6.17157L15.4142 7.58579L13 5.17157V15H11L11 5.17157Z",fill:"currentColor"}),v("path",{d:"M8 10H4C3.44772 10 3 10.4477 3 11V20C3 20.5523 3.44772 21 4 21H20C20.5523 21 21 20.5523 21 20V11C21 10.4477 20.5523 10 20 10H16V12H19V19H5V12H8V10Z",fill:"currentColor"})]})),_c=ae(v("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3 6C3 4.34315 4.34315 3 6 3H15.1324C15.928 3 16.6911 3.31607 17.2537 3.87868L20.1213 6.74632C20.6839 7.30893 21 8.07199 21 8.86764V18C21 19.6569 19.6569 21 18 21H6C4.34315 21 3 19.6569 3 18V6ZM15 15C15 16.6569 13.6569 18 12 18C10.3431 18 9 16.6569 9 15C9 13.3431 10.3431 12 12 12C13.6569 12 15 13.3431 15 15ZM7 5C5.89543 5 5 5.89543 5 7C5 8.10457 5.89543 9 7 9H15C16.1046 9 17 8.10457 17 7C17 5.89543 16.1046 5 15 5H7Z",fill:"currentColor"})),mc=ae(ee(Ve,{children:[v("path",{d:"M8 10C9.10457 10 10 9.10457 10 8L10 3H8L8 8L3 8V10L8 10Z",fill:"currentColor"}),v("path",{d:"M8 14C9.10457 14 10 14.8954 10 16L10 21H8L8 16L3 16V14L8 14Z",fill:"currentColor"}),v("path",{d:"M14 8C14 9.10457 14.8954 10 16 10L21 10V8L16 8L16 3H14L14 8Z",fill:"currentColor"}),v("path",{d:"M16 14C14.8954 14 14 14.8954 14 16L14 21H16L16 16L21 16V14L16 14Z",fill:"currentColor"})]})),bc=ae(v("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3 5C3 3.89543 3.89543 3 5 3H10V5H5V10H3V5ZM19 5H14V3H19C20.1046 3 21 3.89543 21 5V10H19V5ZM5 14V19H10V21H5C3.89543 21 3 20.1046 3 19V14H5ZM19 19V14H21V19C21 20.1046 20.1046 21 19 21H14V19H19Z",fill:"currentColor"})),hc=ae(v("path",{d:"M11 5.002H4a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-7m-8 0 10-10m0 0v6m0-6h-6",stroke:"currentColor",strokeWidth:1.5,strokeLinecap:"round",strokeLinejoin:"round"})),Yi=({children:e,...s})=>v(Z,{as:"li",...s,"data-macaw-ui-component":"List.Divider",children:e});Yi.displayName="List.Divider";const Gi=r.forwardRef(({children:e,disabled:s,onClick:t,className:o,active:a,...n},i)=>v(Z,{as:"li",display:"flex",alignItems:"center",cursor:{default:"pointer",disabled:"not-allowed"},disabled:s,backgroundColor:{default:a?"interactiveNeutralHighlightFocused":"interactiveNeutralHighlightDefault",active:"interactiveNeutralHighlightPressing",hover:"interactiveNeutralHighlightHovering",focus:"interactiveNeutralHighlightFocused"},onClick:t,className:o,ref:i,"data-macaw-ui-component":"List.Item",...n,children:e}));Gi.displayName="List.Item";function S(){return S=Object.assign?Object.assign.bind():function(e){for(var s=1;s<arguments.length;s++){var t=arguments[s];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e},S.apply(this,arguments)}function ze(e,s=[]){let t=[];function o(n,i){const l=r.createContext(i),f=t.length;t=[...t,i];function p(c){const{scope:b,children:u,...C}=c,_=(b==null?void 0:b[e][f])||l,x=r.useMemo(()=>C,Object.values(C));return r.createElement(_.Provider,{value:x},u)}function d(c,b){const u=(b==null?void 0:b[e][f])||l,C=r.useContext(u);if(C)return C;if(i!==void 0)return i;throw new Error(`\`${c}\` must be used within \`${n}\``)}return p.displayName=n+"Provider",[p,d]}const a=()=>{const n=t.map(i=>r.createContext(i));return function(l){const f=(l==null?void 0:l[e])||n;return r.useMemo(()=>({[`__scope${e}`]:{...l,[e]:f}}),[l,f])}};return a.scopeName=e,[o,vc(a,...s)]}function vc(...e){const s=e[0];if(e.length===1)return s;const t=()=>{const o=e.map(a=>({useScope:a(),scopeName:a.scopeName}));return function(n){const i=o.reduce((l,{useScope:f,scopeName:p})=>{const c=f(n)[`__scope${p}`];return{...l,...c}},{});return r.useMemo(()=>({[`__scope${s.scopeName}`]:i}),[i])}};return t.scopeName=s.scopeName,t}function gc(e,s){typeof e=="function"?e(s):e!=null&&(e.current=s)}function Yo(...e){return s=>e.forEach(t=>gc(t,s))}function Ce(...e){return r.useCallback(Yo(...e),e)}const _s=r.forwardRef((e,s)=>{const{children:t,...o}=e,a=r.Children.toArray(t),n=a.find(Cc);if(n){const i=n.props.children,l=a.map(f=>f===n?r.Children.count(i)>1?r.Children.only(null):r.isValidElement(i)?i.props.children:null:f);return r.createElement(Io,S({},o,{ref:s}),r.isValidElement(i)?r.cloneElement(i,void 0,l):null)}return r.createElement(Io,S({},o,{ref:s}),t)});_s.displayName="Slot";const Io=r.forwardRef((e,s)=>{const{children:t,...o}=e;return r.isValidElement(t)?r.cloneElement(t,{...yc(o,t.props),ref:Yo(s,t.ref)}):r.Children.count(t)>1?r.Children.only(null):null});Io.displayName="SlotClone";const Xi=({children:e})=>r.createElement(r.Fragment,null,e);function Cc(e){return r.isValidElement(e)&&e.type===Xi}function yc(e,s){const t={...s};for(const o in s){const a=e[o],n=s[o];/^on[A-Z]/.test(o)?a&&n?t[o]=(...l)=>{n(...l),a(...l)}:a&&(t[o]=a):o==="style"?t[o]={...a,...n}:o==="className"&&(t[o]=[a,n].filter(Boolean).join(" "))}return{...e,...t}}function Go(e){const s=e+"CollectionProvider",[t,o]=ze(s),[a,n]=t(s,{collectionRef:{current:null},itemMap:new Map}),i=u=>{const{scope:C,children:_}=u,x=re.default.useRef(null),y=re.default.useRef(new Map).current;return re.default.createElement(a,{scope:C,itemMap:y,collectionRef:x},_)},l=e+"CollectionSlot",f=re.default.forwardRef((u,C)=>{const{scope:_,children:x}=u,y=n(l,_),h=Ce(C,y.collectionRef);return re.default.createElement(_s,{ref:h},x)}),p=e+"CollectionItemSlot",d="data-radix-collection-item",c=re.default.forwardRef((u,C)=>{const{scope:_,children:x,...y}=u,h=re.default.useRef(null),m=Ce(C,h),g=n(p,_);return re.default.useEffect(()=>(g.itemMap.set(h,{ref:h,...y}),()=>void g.itemMap.delete(h))),re.default.createElement(_s,{[d]:"",ref:m},x)});function b(u){const C=n(e+"CollectionConsumer",u);return re.default.useCallback(()=>{const x=C.collectionRef.current;if(!x)return[];const y=Array.from(x.querySelectorAll(`[${d}]`));return Array.from(C.itemMap.values()).sort((g,w)=>y.indexOf(g.ref.current)-y.indexOf(w.ref.current))},[C.collectionRef,C.itemMap])}return[{Provider:i,Slot:f,ItemSlot:c},b,o]}function te(e,s,{checkForDefaultPrevented:t=!0}={}){return function(a){if(e==null||e(a),t===!1||!a.defaultPrevented)return s==null?void 0:s(a)}}function Fe(e){const s=r.useRef(e);return r.useEffect(()=>{s.current=e}),r.useMemo(()=>(...t)=>{var o;return(o=s.current)===null||o===void 0?void 0:o.call(s,...t)},[])}function es({prop:e,defaultProp:s,onChange:t=()=>{}}){const[o,a]=xc({defaultProp:s,onChange:t}),n=e!==void 0,i=n?e:o,l=Fe(t),f=r.useCallback(p=>{if(n){const c=typeof p=="function"?p(e):p;c!==e&&l(c)}else a(p)},[n,e,a,l]);return[i,f]}function xc({defaultProp:e,onChange:s}){const t=r.useState(e),[o]=t,a=r.useRef(o),n=Fe(s);return r.useEffect(()=>{a.current!==o&&(n(o),a.current=o)},[o,a,n]),t}const kc=["a","button","div","h2","h3","img","label","li","nav","ol","p","span","svg","ul"],Oe=kc.reduce((e,s)=>{const t=r.forwardRef((o,a)=>{const{asChild:n,...i}=o,l=n?_s:s;return r.useEffect(()=>{window[Symbol.for("radix-ui")]=!0},[]),r.createElement(l,S({},i,{ref:a}))});return t.displayName=`Primitive.${s}`,{...e,[s]:t}},{});function Ji(e,s){e&&et.flushSync(()=>e.dispatchEvent(s))}const We=Boolean(globalThis==null?void 0:globalThis.document)?r.useLayoutEffect:()=>{};function wc(e,s){return r.useReducer((t,o)=>{const a=s[t][o];return a!=null?a:t},e)}const Ze=e=>{const{present:s,children:t}=e,o=$c(s),a=typeof t=="function"?t({present:o.isPresent}):r.Children.only(t),n=Ce(o.ref,a.ref);return typeof t=="function"||o.isPresent?r.cloneElement(a,{ref:n}):null};Ze.displayName="Presence";function $c(e){const[s,t]=r.useState(),o=r.useRef({}),a=r.useRef(e),n=r.useRef("none"),i=e?"mounted":"unmounted",[l,f]=wc(i,{mounted:{UNMOUNT:"unmounted",ANIMATION_OUT:"unmountSuspended"},unmountSuspended:{MOUNT:"mounted",ANIMATION_END:"unmounted"},unmounted:{MOUNT:"mounted"}});return r.useEffect(()=>{const p=ut(o.current);n.current=l==="mounted"?p:"none"},[l]),We(()=>{const p=o.current,d=a.current;if(d!==e){const b=n.current,u=ut(p);e?f("MOUNT"):u==="none"||(p==null?void 0:p.display)==="none"?f("UNMOUNT"):f(d&&b!==u?"ANIMATION_OUT":"UNMOUNT"),a.current=e}},[e,f]),We(()=>{if(s){const p=c=>{const u=ut(o.current).includes(c.animationName);c.target===s&&u&&et.flushSync(()=>f("ANIMATION_END"))},d=c=>{c.target===s&&(n.current=ut(o.current))};return s.addEventListener("animationstart",d),s.addEventListener("animationcancel",p),s.addEventListener("animationend",p),()=>{s.removeEventListener("animationstart",d),s.removeEventListener("animationcancel",p),s.removeEventListener("animationend",p)}}else f("ANIMATION_END")},[s,f]),{isPresent:["mounted","unmountSuspended"].includes(l),ref:r.useCallback(p=>{p&&(o.current=getComputedStyle(p)),t(p)},[])}}function ut(e){return(e==null?void 0:e.animationName)||"none"}const Ec=fe["useId".toString()]||(()=>{});let Ic=0;function os(e){const[s,t]=fe.useState(Ec());return We(()=>{e||t(o=>o!=null?o:String(Ic++))},[e]),e||(s?`radix-${s}`:"")}const Qi="Collapsible",[Sc,er]=ze(Qi),[Rc,Xo]=Sc(Qi),Pc=r.forwardRef((e,s)=>{const{__scopeCollapsible:t,open:o,defaultOpen:a,disabled:n,onOpenChange:i,...l}=e,[f=!1,p]=es({prop:o,defaultProp:a,onChange:i});return r.createElement(Rc,{scope:t,disabled:n,contentId:os(),open:f,onOpenToggle:r.useCallback(()=>p(d=>!d),[p])},r.createElement(Oe.div,S({"data-state":Jo(f),"data-disabled":n?"":void 0},l,{ref:s})))}),Dc="CollapsibleTrigger",Oc=r.forwardRef((e,s)=>{const{__scopeCollapsible:t,...o}=e,a=Xo(Dc,t);return r.createElement(Oe.button,S({type:"button","aria-controls":a.contentId,"aria-expanded":a.open||!1,"data-state":Jo(a.open),"data-disabled":a.disabled?"":void 0,disabled:a.disabled},o,{ref:s,onClick:te(e.onClick,a.onOpenToggle)}))}),sr="CollapsibleContent",Tc=r.forwardRef((e,s)=>{const{forceMount:t,...o}=e,a=Xo(sr,e.__scopeCollapsible);return r.createElement(Ze,{present:t||a.open},({present:n})=>r.createElement(Nc,S({},o,{ref:s,present:n})))}),Nc=r.forwardRef((e,s)=>{const{__scopeCollapsible:t,present:o,children:a,...n}=e,i=Xo(sr,t),[l,f]=r.useState(o),p=r.useRef(null),d=Ce(s,p),c=r.useRef(0),b=c.current,u=r.useRef(0),C=u.current,_=i.open||l,x=r.useRef(_),y=r.useRef();return r.useEffect(()=>{const h=requestAnimationFrame(()=>x.current=!1);return()=>cancelAnimationFrame(h)},[]),We(()=>{const h=p.current;if(h){y.current=y.current||{transitionDuration:h.style.transitionDuration,animationName:h.style.animationName},h.style.transitionDuration="0s",h.style.animationName="none";const m=h.getBoundingClientRect();c.current=m.height,u.current=m.width,x.current||(h.style.transitionDuration=y.current.transitionDuration,h.style.animationName=y.current.animationName),f(o)}},[i.open,o]),r.createElement(Oe.div,S({"data-state":Jo(i.open),"data-disabled":i.disabled?"":void 0,id:i.contentId,hidden:!_},n,{ref:d,style:{["--radix-collapsible-content-height"]:b?`${b}px`:void 0,["--radix-collapsible-content-width"]:C?`${C}px`:void 0,...e.style}}),_&&a)});function Jo(e){return e?"open":"closed"}const Mc=Pc,Ac=Oc,Lc=Tc,tt="Accordion",Vc=["Home","End","ArrowDown","ArrowUp"],[Qo,Hc,jc]=Go(tt),[Ft,Vv]=ze(tt,[jc,er]),en=er(),tr=re.default.forwardRef((e,s)=>{const{type:t,...o}=e,a=o,n=o;return re.default.createElement(Qo.Provider,{scope:e.__scopeAccordion},t==="multiple"?re.default.createElement(qc,S({},n,{ref:s})):re.default.createElement(zc,S({},a,{ref:s})))});tr.propTypes={type(e){const s=e.value||e.defaultValue;return e.type&&!["single","multiple"].includes(e.type)?new Error("Invalid prop `type` supplied to `Accordion`. Expected one of `single | multiple`."):e.type==="multiple"&&typeof s=="string"?new Error("Invalid prop `type` supplied to `Accordion`. Expected `single` when `defaultValue` or `value` is type `string`."):e.type==="single"&&Array.isArray(s)?new Error("Invalid prop `type` supplied to `Accordion`. Expected `multiple` when `defaultValue` or `value` is type `string[]`."):null}};const[or,Fc]=Ft(tt),[nr,Bc]=Ft(tt,{collapsible:!1}),zc=re.default.forwardRef((e,s)=>{const{value:t,defaultValue:o,onValueChange:a=()=>{},collapsible:n=!1,...i}=e,[l,f]=es({prop:t,defaultProp:o,onChange:a});return re.default.createElement(or,{scope:e.__scopeAccordion,value:l?[l]:[],onItemOpen:f,onItemClose:re.default.useCallback(()=>n&&f(""),[n,f])},re.default.createElement(nr,{scope:e.__scopeAccordion,collapsible:n},re.default.createElement(ar,S({},i,{ref:s}))))}),qc=re.default.forwardRef((e,s)=>{const{value:t,defaultValue:o,onValueChange:a=()=>{},...n}=e,[i=[],l]=es({prop:t,defaultProp:o,onChange:a}),f=re.default.useCallback(d=>l((c=[])=>[...c,d]),[l]),p=re.default.useCallback(d=>l((c=[])=>c.filter(b=>b!==d)),[l]);return re.default.createElement(or,{scope:e.__scopeAccordion,value:i,onItemOpen:f,onItemClose:p},re.default.createElement(nr,{scope:e.__scopeAccordion,collapsible:!0},re.default.createElement(ar,S({},n,{ref:s}))))}),[Wc,Kc]=Ft(tt),ar=re.default.forwardRef((e,s)=>{const{__scopeAccordion:t,disabled:o,...a}=e,n=re.default.useRef(null),i=Ce(n,s),l=Hc(t),f=te(e.onKeyDown,p=>{var d;if(!Vc.includes(p.key))return;const c=p.target,b=l().filter(y=>{var h;return!((h=y.ref.current)!==null&&h!==void 0&&h.disabled)}),u=b.findIndex(y=>y.ref.current===c),C=b.length;if(u===-1)return;p.preventDefault();let _=u;switch(p.key){case"Home":_=0;break;case"End":_=C-1;break;case"ArrowDown":_=u+1;break;case"ArrowUp":_=u-1,_<0&&(_=C-1);break}const x=_%C;(d=b[x].ref.current)===null||d===void 0||d.focus()});return re.default.createElement(Wc,{scope:t,disabled:o},re.default.createElement(Qo.Slot,{scope:t},re.default.createElement(Oe.div,S({},a,{ref:i,onKeyDown:o?void 0:f}))))}),So="AccordionItem",[Uc,sn]=Ft(So),Zc=re.default.forwardRef((e,s)=>{const{__scopeAccordion:t,value:o,...a}=e,n=Kc(So,t),i=Fc(So,t),l=en(t),f=os(),p=o&&i.value.includes(o)||!1,d=n.disabled||e.disabled;return re.default.createElement(Uc,{scope:t,open:p,disabled:d,triggerId:f},re.default.createElement(Mc,S({"data-state":p?"open":"closed"},l,a,{ref:s,disabled:d,open:p,onOpenChange:c=>{c?i.onItemOpen(o):i.onItemClose(o)}})))}),Yc="AccordionHeader",Gc=re.default.forwardRef((e,s)=>{const{__scopeAccordion:t,...o}=e,a=sn(Yc,t);return re.default.createElement(Oe.h3,S({"data-state":Jc(a.open),"data-disabled":a.disabled?"":void 0},o,{ref:s}))}),Ta="AccordionTrigger",ir=re.default.forwardRef((e,s)=>{const{__scopeAccordion:t,...o}=e,a=sn(Ta,t),n=Bc(Ta,t),i=en(t);return re.default.createElement(Qo.ItemSlot,{scope:t},re.default.createElement(Ac,S({"aria-disabled":a.open&&!n.collapsible||void 0,id:a.triggerId},i,o,{ref:s})))}),Xc="AccordionContent",rr=re.default.forwardRef((e,s)=>{const{__scopeAccordion:t,...o}=e,a=sn(Xc,t),n=en(t);return re.default.createElement(Lc,S({role:"region","aria-labelledby":a.triggerId},n,o,{ref:s,style:{["--radix-accordion-content-height"]:"var(--radix-collapsible-content-height)",["--radix-accordion-content-width"]:"var(--radix-collapsible-content-width)",...e.style}}))});function Jc(e){return e?"open":"closed"}const lr=tr,fr=Zc,Qc=Gc,ep=ir,sp=rr,cr=({children:e})=>v(rr,{asChild:!0,"data-macaw-ui-component":"ListItem.Content",children:e});cr.displayName="ListItem.Content";const tn=r.forwardRef(({children:e,as:s="ul",className:t,...o},a)=>v(Z,{as:s,ref:a,className:t,margin:0,"data-macaw-ui-component":"List",...o,children:e}));tn.displayName="List";const pr=r.createContext(null),tp=()=>{const e=r.useContext(pr);if(e===null)throw new Error("You are outside of context");return e},op=pr.Provider;var np="_16tmpu02",ap="_16tmpu01",ip="_16tmpu00";const lo="list-item-group-value",dr=({children:e,defaultExpanded:s=!1,as:t="ul",...o})=>{const[a,n]=r.useState(s?lo:"");return v(lr,{asChild:!0,type:"single",collapsible:!0,value:a,onValueChange:n,children:v(op,{value:{triggerOpen:()=>n(lo)},children:v(tn,{as:t,...o,"data-macaw-ui-component":"ListItem",children:v(fr,{value:lo,className:ip,children:e})})})})};dr.displayName="ListItem";const ur=({children:e,size:s,...t})=>{const{triggerOpen:o}=tp();return ee(Ue.Item,{"data-macaw-ui-component":"ItemGroup.Trigger",...t,children:[v(Z,{width:"100%",height:"100%",onClick:o,children:e}),v(ir,{asChild:!0,children:v(bs,{icon:v(Zo,{className:ap,color:"iconNeutralDefault",size:s}),variant:"tertiary",size:s,className:np})})]})};ur.displayName="ListItem.Trigger";const rp=Object.assign(dr,{Trigger:ur,Content:cr}),Ue=Object.assign(tn,{Item:Gi,ItemGroup:rp,Divider:Yi});var lp=we({defaultClassName:"",variantClassNames:{variant:{hero:"_1ruekcrq",title:"_1ruekcrr",heading:"_1ruekcrs",bodyStrong:"_1ruekcrt",bodyEmp:"_1ruekcru",body:"_1ruekcrv",button:"_1ruekcrw",caption:"_1ruekcrx"},size:{small:"_1ruekcry",medium:"_1ruekcrz",large:"_1ruekcr10"},ellipsis:{multiline:"_18fs8ps20i _18fs8ps20u _18fs8ps219",true:"_18fs8ps20i _18fs8ps20u _18fs8ps219 _18fs8ps21f",false:"_1ruekcr13"}},defaultVariants:{variant:"body",size:"medium",ellipsis:!1},compoundVariants:[[{variant:"hero",size:"large"},"_18fs8ps1j0 _18fs8ps1l3 _18fs8ps233 _18fs8ps1ou"],[{variant:"hero",size:"medium"},"_18fs8ps1j3 _18fs8ps1l6 _18fs8ps236 _18fs8ps1ox"],[{variant:"hero",size:"small"},"_18fs8ps1j6 _18fs8ps1l9 _18fs8ps239 _18fs8ps1p0"],[{variant:"title",size:"large"},"_18fs8ps1j9 _18fs8ps1lc _18fs8ps23c _18fs8ps1p3"],[{variant:"title",size:"medium"},"_18fs8ps1jc _18fs8ps1lf _18fs8ps23f _18fs8ps1p6"],[{variant:"title",size:"small"},"_18fs8ps1jf _18fs8ps1li _18fs8ps23i _18fs8ps1p9"],[{variant:"heading",size:"large"},"_18fs8ps1ji _18fs8ps1ll _18fs8ps23l _18fs8ps1pc"],[{variant:"heading",size:"medium"},"_18fs8ps1jl _18fs8ps1lo _18fs8ps23o _18fs8ps1pf"],[{variant:"heading",size:"small"},"_18fs8ps1jo _18fs8ps1lr _18fs8ps23r _18fs8ps1pi"],[{variant:"bodyStrong",size:"large"},"_18fs8ps1jr _18fs8ps1lu _18fs8ps23u _18fs8ps1pl"],[{variant:"bodyStrong",size:"medium"},"_18fs8ps1ju _18fs8ps1lx _18fs8ps23x _18fs8ps1po"],[{variant:"bodyStrong",size:"small"},"_18fs8ps1jx _18fs8ps1m0 _18fs8ps240 _18fs8ps1pr"],[{variant:"bodyEmp",size:"large"},"_18fs8ps1k0 _18fs8ps1m3 _18fs8ps243 _18fs8ps1pu"],[{variant:"bodyEmp",size:"medium"},"_18fs8ps1k3 _18fs8ps1m6 _18fs8ps246 _18fs8ps1px"],[{variant:"bodyEmp",size:"small"},"_18fs8ps1k6 _18fs8ps1m9 _18fs8ps249 _18fs8ps1q0"],[{variant:"body",size:"large"},"_18fs8ps1k9 _18fs8ps1mc _18fs8ps24c _18fs8ps1q3"],[{variant:"body",size:"medium"},"_18fs8ps1kc _18fs8ps1mf _18fs8ps24f _18fs8ps1q6"],[{variant:"body",size:"small"},"_18fs8ps1kf _18fs8ps1mi _18fs8ps24i _18fs8ps1q9"],[{variant:"button",size:"large"},"_18fs8ps1ki _18fs8ps1ml _18fs8ps24l _18fs8ps1qc"],[{variant:"button",size:"medium"},"_18fs8ps1kl _18fs8ps1mo _18fs8ps24o _18fs8ps1qf"],[{variant:"button",size:"small"},"_18fs8ps1ko _18fs8ps1mr _18fs8ps24r _18fs8ps1qi"],[{variant:"caption",size:"large"},"_18fs8ps1kr _18fs8ps1mu _18fs8ps24u _18fs8ps1ql"],[{variant:"caption",size:"medium"},"_18fs8ps1ku _18fs8ps1mx _18fs8ps24x _18fs8ps1qo"],[{variant:"caption",size:"small"},"_18fs8ps1kx _18fs8ps1n0 _18fs8ps250 _18fs8ps1qr"]]});const Ae=r.forwardRef(({children:e,as:s="span",variant:t,size:o,ellipsis:a,color:n="textNeutralDefault",className:i,...l},f)=>v(Z,{as:s,className:ue(lp({variant:t,size:o,ellipsis:a}),i),color:n,ref:f,margin:0,"data-macaw-ui-component":"Text",...l,children:e}));Ae.displayName="Text";var Na=we({defaultClassName:"_18fs8ps3 _18fs8ps10 _18fs8ps1l _18fs8ps264 _18fs8ps1gf _18fs8ps1fi _18fs8ps1i9 _18fs8ps1hc",variantClassNames:{size:{small:"_18fs8ps14x _18fs8ps17i",medium:"_18fs8ps153 _18fs8ps17o",large:"_18fs8ps156 _18fs8ps17r"},scheme:{decorative1:"_18fs8ps2ss _18fs8ps2dg",decorative2:"_18fs8ps2t0 _18fs8ps2do",decorative3:"_18fs8ps2t8 _18fs8ps2dw"}},defaultVariants:{size:"medium",scheme:"decorative1"},compoundVariants:[]});const _r=e=>{if("src"in e){const{src:i,size:l,scheme:f,className:p,...d}=e;return v(Z,{as:"img",src:i,alt:"Store avatar image",className:ue(Na({size:l,scheme:f}),p),"data-macaw-ui-component":"Avatar.Store",...d})}const{size:s,scheme:t,className:o,initials:a,...n}=e;return v(Z,{className:ue(Na({size:s,scheme:t}),o),"data-macaw-ui-component":"Avatar.Store",...n,children:v(Ae,{variant:"bodyEmp",size:s,color:"inherit",children:a})})};_r.displayName="Avatar.Store";var Ma=we({defaultClassName:"_18fs8ps3 _18fs8ps10 _18fs8ps1l _18fs8ps264 _18fs8ps1h0 _18fs8ps1g3 _18fs8ps1iu _18fs8ps1hx",variantClassNames:{size:{small:"_18fs8ps14x _18fs8ps17i",medium:"_18fs8ps153 _18fs8ps17o",large:"_18fs8ps156 _18fs8ps17r"},scheme:{decorative1:"_18fs8ps2s4",decorative2:"_18fs8ps2sc",decorative3:"_18fs8ps2sk"}},defaultVariants:{size:"medium",scheme:"decorative1"},compoundVariants:[]});const mr=e=>{if("src"in e){const{src:i,size:l,scheme:f,className:p,...d}=e;return v(Z,{as:"img",src:i,alt:"User avatar image",className:ue(Ma({size:l,scheme:f}),p),"data-macaw-ui-component":"Avatar.User",...d})}const{size:s,scheme:t,className:o,initials:a,...n}=e;return v(Z,{className:ue(Ma({size:s,scheme:t}),o),"data-macaw-ui-component":"Avatar.User",...n,children:v(Ae,{variant:"bodyEmp",size:s,color:"textNeutralContrasted",children:a})})};mr.displayName="Avatar.User";const fp=Object.assign({},{User:mr,Store:_r}),cp=r.createContext(void 0);function on(e){const s=r.useContext(cp);return e||s||"ltr"}function br(e,s=globalThis==null?void 0:globalThis.document){const t=Fe(e);r.useEffect(()=>{const o=a=>{a.key==="Escape"&&t(a)};return s.addEventListener("keydown",o),()=>s.removeEventListener("keydown",o)},[t,s])}const Ro="dismissableLayer.update",pp="dismissableLayer.pointerDownOutside",dp="dismissableLayer.focusOutside";let Aa;const up=r.createContext({layers:new Set,layersWithOutsidePointerEventsDisabled:new Set,branches:new Set}),hr=r.forwardRef((e,s)=>{var t;const{disableOutsidePointerEvents:o=!1,onEscapeKeyDown:a,onPointerDownOutside:n,onFocusOutside:i,onInteractOutside:l,onDismiss:f,...p}=e,d=r.useContext(up),[c,b]=r.useState(null),u=(t=c==null?void 0:c.ownerDocument)!==null&&t!==void 0?t:globalThis==null?void 0:globalThis.document,[,C]=r.useState({}),_=Ce(s,$=>b($)),x=Array.from(d.layers),[y]=[...d.layersWithOutsidePointerEventsDisabled].slice(-1),h=x.indexOf(y),m=c?x.indexOf(c):-1,g=d.layersWithOutsidePointerEventsDisabled.size>0,w=m>=h,D=_p($=>{const R=$.target,H=[...d.branches].some(O=>O.contains(R));!w||H||(n==null||n($),l==null||l($),$.defaultPrevented||f==null||f())},u),E=mp($=>{const R=$.target;[...d.branches].some(O=>O.contains(R))||(i==null||i($),l==null||l($),$.defaultPrevented||f==null||f())},u);return br($=>{m===d.layers.size-1&&(a==null||a($),!$.defaultPrevented&&f&&($.preventDefault(),f()))},u),r.useEffect(()=>{if(!!c)return o&&(d.layersWithOutsidePointerEventsDisabled.size===0&&(Aa=u.body.style.pointerEvents,u.body.style.pointerEvents="none"),d.layersWithOutsidePointerEventsDisabled.add(c)),d.layers.add(c),La(),()=>{o&&d.layersWithOutsidePointerEventsDisabled.size===1&&(u.body.style.pointerEvents=Aa)}},[c,u,o,d]),r.useEffect(()=>()=>{!c||(d.layers.delete(c),d.layersWithOutsidePointerEventsDisabled.delete(c),La())},[c,d]),r.useEffect(()=>{const $=()=>C({});return document.addEventListener(Ro,$),()=>document.removeEventListener(Ro,$)},[]),r.createElement(Oe.div,S({},p,{ref:_,style:{pointerEvents:g?w?"auto":"none":void 0,...e.style},onFocusCapture:te(e.onFocusCapture,E.onFocusCapture),onBlurCapture:te(e.onBlurCapture,E.onBlurCapture),onPointerDownCapture:te(e.onPointerDownCapture,D.onPointerDownCapture)}))});function _p(e,s=globalThis==null?void 0:globalThis.document){const t=Fe(e),o=r.useRef(!1),a=r.useRef(()=>{});return r.useEffect(()=>{const n=l=>{if(l.target&&!o.current){let p=function(){vr(pp,t,f,{discrete:!0})};const f={originalEvent:l};l.pointerType==="touch"?(s.removeEventListener("click",a.current),a.current=p,s.addEventListener("click",a.current,{once:!0})):p()}o.current=!1},i=window.setTimeout(()=>{s.addEventListener("pointerdown",n)},0);return()=>{window.clearTimeout(i),s.removeEventListener("pointerdown",n),s.removeEventListener("click",a.current)}},[s,t]),{onPointerDownCapture:()=>o.current=!0}}function mp(e,s=globalThis==null?void 0:globalThis.document){const t=Fe(e),o=r.useRef(!1);return r.useEffect(()=>{const a=n=>{n.target&&!o.current&&vr(dp,t,{originalEvent:n},{discrete:!1})};return s.addEventListener("focusin",a),()=>s.removeEventListener("focusin",a)},[s,t]),{onFocusCapture:()=>o.current=!0,onBlurCapture:()=>o.current=!1}}function La(){const e=new CustomEvent(Ro);document.dispatchEvent(e)}function vr(e,s,t,{discrete:o}){const a=t.originalEvent.target,n=new CustomEvent(e,{bubbles:!1,cancelable:!0,detail:t});s&&a.addEventListener(e,s,{once:!0}),o?Ji(a,n):a.dispatchEvent(n)}let fo=0;function nn(){r.useEffect(()=>{var e,s;const t=document.querySelectorAll("[data-radix-focus-guard]");return document.body.insertAdjacentElement("afterbegin",(e=t[0])!==null&&e!==void 0?e:Va()),document.body.insertAdjacentElement("beforeend",(s=t[1])!==null&&s!==void 0?s:Va()),fo++,()=>{fo===1&&document.querySelectorAll("[data-radix-focus-guard]").forEach(o=>o.remove()),fo--}},[])}function Va(){const e=document.createElement("span");return e.setAttribute("data-radix-focus-guard",""),e.tabIndex=0,e.style.cssText="outline: none; opacity: 0; position: fixed; pointer-events: none",e}const co="focusScope.autoFocusOnMount",po="focusScope.autoFocusOnUnmount",Ha={bubbles:!1,cancelable:!0},gr=r.forwardRef((e,s)=>{const{loop:t=!1,trapped:o=!1,onMountAutoFocus:a,onUnmountAutoFocus:n,...i}=e,[l,f]=r.useState(null),p=Fe(a),d=Fe(n),c=r.useRef(null),b=Ce(s,_=>f(_)),u=r.useRef({paused:!1,pause(){this.paused=!0},resume(){this.paused=!1}}).current;r.useEffect(()=>{if(o){let _=function(y){if(u.paused||!l)return;const h=y.target;l.contains(h)?c.current=h:gs(c.current,{select:!0})},x=function(y){u.paused||!l||l.contains(y.relatedTarget)||gs(c.current,{select:!0})};return document.addEventListener("focusin",_),document.addEventListener("focusout",x),()=>{document.removeEventListener("focusin",_),document.removeEventListener("focusout",x)}}},[o,l,u.paused]),r.useEffect(()=>{if(l){Fa.add(u);const _=document.activeElement;if(!l.contains(_)){const y=new CustomEvent(co,Ha);l.addEventListener(co,p),l.dispatchEvent(y),y.defaultPrevented||(bp(yp(Cr(l)),{select:!0}),document.activeElement===_&&gs(l))}return()=>{l.removeEventListener(co,p),setTimeout(()=>{const y=new CustomEvent(po,Ha);l.addEventListener(po,d),l.dispatchEvent(y),y.defaultPrevented||gs(_!=null?_:document.body,{select:!0}),l.removeEventListener(po,d),Fa.remove(u)},0)}}},[l,p,d,u]);const C=r.useCallback(_=>{if(!t&&!o||u.paused)return;const x=_.key==="Tab"&&!_.altKey&&!_.ctrlKey&&!_.metaKey,y=document.activeElement;if(x&&y){const h=_.currentTarget,[m,g]=hp(h);m&&g?!_.shiftKey&&y===g?(_.preventDefault(),t&&gs(m,{select:!0})):_.shiftKey&&y===m&&(_.preventDefault(),t&&gs(g,{select:!0})):y===h&&_.preventDefault()}},[t,o,u.paused]);return r.createElement(Oe.div,S({tabIndex:-1},i,{ref:b,onKeyDown:C}))});function bp(e,{select:s=!1}={}){const t=document.activeElement;for(const o of e)if(gs(o,{select:s}),document.activeElement!==t)return}function hp(e){const s=Cr(e),t=ja(s,e),o=ja(s.reverse(),e);return[t,o]}function Cr(e){const s=[],t=document.createTreeWalker(e,NodeFilter.SHOW_ELEMENT,{acceptNode:o=>{const a=o.tagName==="INPUT"&&o.type==="hidden";return o.disabled||o.hidden||a?NodeFilter.FILTER_SKIP:o.tabIndex>=0?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP}});for(;t.nextNode();)s.push(t.currentNode);return s}function ja(e,s){for(const t of e)if(!vp(t,{upTo:s}))return t}function vp(e,{upTo:s}){if(getComputedStyle(e).visibility==="hidden")return!0;for(;e;){if(s!==void 0&&e===s)return!1;if(getComputedStyle(e).display==="none")return!0;e=e.parentElement}return!1}function gp(e){return e instanceof HTMLInputElement&&"select"in e}function gs(e,{select:s=!1}={}){if(e&&e.focus){const t=document.activeElement;e.focus({preventScroll:!0}),e!==t&&gp(e)&&s&&e.select()}}const Fa=Cp();function Cp(){let e=[];return{add(s){const t=e[0];s!==t&&(t==null||t.pause()),e=Ba(e,s),e.unshift(s)},remove(s){var t;e=Ba(e,s),(t=e[0])===null||t===void 0||t.resume()}}}function Ba(e,s){const t=[...e],o=t.indexOf(s);return o!==-1&&t.splice(o,1),t}function yp(e){return e.filter(s=>s.tagName!=="A")}function Is(e){return e.split("-")[0]}function ot(e){return e.split("-")[1]}function Hs(e){return["top","bottom"].includes(Is(e))?"x":"y"}function an(e){return e==="y"?"height":"width"}function za(e,s,t){let{reference:o,floating:a}=e;const n=o.x+o.width/2-a.width/2,i=o.y+o.height/2-a.height/2,l=Hs(s),f=an(l),p=o[f]/2-a[f]/2,d=Is(s),c=l==="x";let b;switch(d){case"top":b={x:n,y:o.y-a.height};break;case"bottom":b={x:n,y:o.y+o.height};break;case"right":b={x:o.x+o.width,y:i};break;case"left":b={x:o.x-a.width,y:i};break;default:b={x:o.x,y:o.y}}switch(ot(s)){case"start":b[l]-=p*(t&&c?-1:1);break;case"end":b[l]+=p*(t&&c?-1:1);break}return b}const xp=async(e,s,t)=>{const{placement:o="bottom",strategy:a="absolute",middleware:n=[],platform:i}=t,l=await(i.isRTL==null?void 0:i.isRTL(s));if(process.env.NODE_ENV!=="production"&&(i==null&&console.error(["Floating UI: `platform` property was not passed to config. If you","want to use Floating UI on the web, install @floating-ui/dom","instead of the /core package. Otherwise, you can create your own","`platform`: https://floating-ui.com/docs/platform"].join(" ")),n.filter(C=>{let{name:_}=C;return _==="autoPlacement"||_==="flip"}).length>1))throw new Error(["Floating UI: duplicate `flip` and/or `autoPlacement`","middleware detected. This will lead to an infinite loop. Ensure only","one of either has been passed to the `middleware` array."].join(" "));let f=await i.getElementRects({reference:e,floating:s,strategy:a}),{x:p,y:d}=za(f,o,l),c=o,b={},u=0;for(let C=0;C<n.length;C++){const{name:_,fn:x}=n[C],{x:y,y:h,data:m,reset:g}=await x({x:p,y:d,initialPlacement:o,placement:c,strategy:a,middlewareData:b,rects:f,platform:i,elements:{reference:e,floating:s}});if(p=y!=null?y:p,d=h!=null?h:d,b={...b,[_]:{...b[_],...m}},process.env.NODE_ENV!=="production"&&u>50&&console.warn(["Floating UI: The middleware lifecycle appears to be running in an","infinite loop. This is usually caused by a `reset` continually","being returned without a break condition."].join(" ")),g&&u<=50){u++,typeof g=="object"&&(g.placement&&(c=g.placement),g.rects&&(f=g.rects===!0?await i.getElementRects({reference:e,floating:s,strategy:a}):g.rects),{x:p,y:d}=za(f,c,l)),C=-1;continue}}return{x:p,y:d,placement:c,strategy:a,middlewareData:b}};function kp(e){return{top:0,right:0,bottom:0,left:0,...e}}function yr(e){return typeof e!="number"?kp(e):{top:e,right:e,bottom:e,left:e}}function Et(e){return{...e,top:e.y,left:e.x,right:e.x+e.width,bottom:e.y+e.height}}async function Ys(e,s){var t;s===void 0&&(s={});const{x:o,y:a,platform:n,rects:i,elements:l,strategy:f}=e,{boundary:p="clippingAncestors",rootBoundary:d="viewport",elementContext:c="floating",altBoundary:b=!1,padding:u=0}=s,C=yr(u),x=l[b?c==="floating"?"reference":"floating":c],y=Et(await n.getClippingRect({element:(t=await(n.isElement==null?void 0:n.isElement(x)))==null||t?x:x.contextElement||await(n.getDocumentElement==null?void 0:n.getDocumentElement(l.floating)),boundary:p,rootBoundary:d,strategy:f})),h=Et(n.convertOffsetParentRelativeRectToViewportRelativeRect?await n.convertOffsetParentRelativeRectToViewportRelativeRect({rect:c==="floating"?{...i.floating,x:o,y:a}:i.reference,offsetParent:await(n.getOffsetParent==null?void 0:n.getOffsetParent(l.floating)),strategy:f}):i[c]);return{top:y.top-h.top+C.top,bottom:h.bottom-y.bottom+C.bottom,left:y.left-h.left+C.left,right:h.right-y.right+C.right}}const wp=Math.min,Cs=Math.max;function Po(e,s,t){return Cs(e,wp(s,t))}const qa=e=>({name:"arrow",options:e,async fn(s){const{element:t,padding:o=0}=e!=null?e:{},{x:a,y:n,placement:i,rects:l,platform:f}=s;if(t==null)return process.env.NODE_ENV!=="production"&&console.warn("Floating UI: No `element` was passed to the `arrow` middleware."),{};const p=yr(o),d={x:a,y:n},c=Hs(i),b=ot(i),u=an(c),C=await f.getDimensions(t),_=c==="y"?"top":"left",x=c==="y"?"bottom":"right",y=l.reference[u]+l.reference[c]-d[c]-l.floating[u],h=d[c]-l.reference[c],m=await(f.getOffsetParent==null?void 0:f.getOffsetParent(t));let g=m?c==="y"?m.clientHeight||0:m.clientWidth||0:0;g===0&&(g=l.floating[u]);const w=y/2-h/2,D=p[_],E=g-C[u]-p[x],$=g/2-C[u]/2+w,R=Po(D,$,E),W=(b==="start"?p[_]:p[x])>0&&$!==R&&l.reference[u]<=l.floating[u]?$<D?D-$:E-$:0;return{[c]:d[c]-W,data:{[c]:R,centerOffset:$-R}}}}),$p={left:"right",right:"left",bottom:"top",top:"bottom"};function It(e){return e.replace(/left|right|bottom|top/g,s=>$p[s])}function Ep(e,s,t){t===void 0&&(t=!1);const o=ot(e),a=Hs(e),n=an(a);let i=a==="x"?o===(t?"end":"start")?"right":"left":o==="start"?"bottom":"top";return s.reference[n]>s.floating[n]&&(i=It(i)),{main:i,cross:It(i)}}const Ip={start:"end",end:"start"};function Wa(e){return e.replace(/start|end/g,s=>Ip[s])}const Sp=["top","right","bottom","left"];function Rp(e){const s=It(e);return[Wa(e),s,Wa(s)]}const xr=function(e){return e===void 0&&(e={}),{name:"flip",options:e,async fn(s){var t;const{placement:o,middlewareData:a,rects:n,initialPlacement:i,platform:l,elements:f}=s,{mainAxis:p=!0,crossAxis:d=!0,fallbackPlacements:c,fallbackStrategy:b="bestFit",flipAlignment:u=!0,...C}=e,_=Is(o),y=c||(_===i||!u?[It(i)]:Rp(i)),h=[i,...y],m=await Ys(s,C),g=[];let w=((t=a.flip)==null?void 0:t.overflows)||[];if(p&&g.push(m[_]),d){const{main:R,cross:H}=Ep(o,n,await(l.isRTL==null?void 0:l.isRTL(f.floating)));g.push(m[R],m[H])}if(w=[...w,{placement:o,overflows:g}],!g.every(R=>R<=0)){var D,E;const R=((D=(E=a.flip)==null?void 0:E.index)!=null?D:0)+1,H=h[R];if(H)return{data:{index:R,overflows:w},reset:{placement:H}};let O="bottom";switch(b){case"bestFit":{var $;const W=($=w.map(P=>[P,P.overflows.filter(K=>K>0).reduce((K,G)=>K+G,0)]).sort((P,K)=>P[1]-K[1])[0])==null?void 0:$[0].placement;W&&(O=W);break}case"initialPlacement":O=i;break}if(o!==O)return{reset:{placement:O}}}return{}}}};function Ka(e,s){return{top:e.top-s.height,right:e.right-s.width,bottom:e.bottom-s.height,left:e.left-s.width}}function Ua(e){return Sp.some(s=>e[s]>=0)}const kr=function(e){let{strategy:s="referenceHidden",...t}=e===void 0?{}:e;return{name:"hide",async fn(o){const{rects:a}=o;switch(s){case"referenceHidden":{const n=await Ys(o,{...t,elementContext:"reference"}),i=Ka(n,a.reference);return{data:{referenceHiddenOffsets:i,referenceHidden:Ua(i)}}}case"escaped":{const n=await Ys(o,{...t,altBoundary:!0}),i=Ka(n,a.floating);return{data:{escapedOffsets:i,escaped:Ua(i)}}}default:return{}}}}};async function Pp(e,s){const{placement:t,platform:o,elements:a}=e,n=await(o.isRTL==null?void 0:o.isRTL(a.floating)),i=Is(t),l=ot(t),f=Hs(t)==="x",p=["left","top"].includes(i)?-1:1,d=n&&f?-1:1,c=typeof s=="function"?s(e):s;let{mainAxis:b,crossAxis:u,alignmentAxis:C}=typeof c=="number"?{mainAxis:c,crossAxis:0,alignmentAxis:null}:{mainAxis:0,crossAxis:0,alignmentAxis:null,...c};return l&&typeof C=="number"&&(u=l==="end"?C*-1:C),f?{x:u*d,y:b*p}:{x:b*p,y:u*d}}const wr=function(e){return e===void 0&&(e=0),{name:"offset",options:e,async fn(s){const{x:t,y:o}=s,a=await Pp(s,e);return{x:t+a.x,y:o+a.y,data:a}}}};function $r(e){return e==="x"?"y":"x"}const Er=function(e){return e===void 0&&(e={}),{name:"shift",options:e,async fn(s){const{x:t,y:o,placement:a}=s,{mainAxis:n=!0,crossAxis:i=!1,limiter:l={fn:x=>{let{x:y,y:h}=x;return{x:y,y:h}}},...f}=e,p={x:t,y:o},d=await Ys(s,f),c=Hs(Is(a)),b=$r(c);let u=p[c],C=p[b];if(n){const x=c==="y"?"top":"left",y=c==="y"?"bottom":"right",h=u+d[x],m=u-d[y];u=Po(h,u,m)}if(i){const x=b==="y"?"top":"left",y=b==="y"?"bottom":"right",h=C+d[x],m=C-d[y];C=Po(h,C,m)}const _=l.fn({...s,[c]:u,[b]:C});return{..._,data:{x:_.x-t,y:_.y-o}}}}},Ir=function(e){return e===void 0&&(e={}),{options:e,fn(s){const{x:t,y:o,placement:a,rects:n,middlewareData:i}=s,{offset:l=0,mainAxis:f=!0,crossAxis:p=!0}=e,d={x:t,y:o},c=Hs(a),b=$r(c);let u=d[c],C=d[b];const _=typeof l=="function"?l({...n,placement:a}):l,x=typeof _=="number"?{mainAxis:_,crossAxis:0}:{mainAxis:0,crossAxis:0,..._};if(f){const w=c==="y"?"height":"width",D=n.reference[c]-n.floating[w]+x.mainAxis,E=n.reference[c]+n.reference[w]-x.mainAxis;u<D?u=D:u>E&&(u=E)}if(p){var y,h,m,g;const w=c==="y"?"width":"height",D=["top","left"].includes(Is(a)),E=n.reference[b]-n.floating[w]+(D&&(y=(h=i.offset)==null?void 0:h[b])!=null?y:0)+(D?0:x.crossAxis),$=n.reference[b]+n.reference[w]+(D?0:(m=(g=i.offset)==null?void 0:g[b])!=null?m:0)-(D?x.crossAxis:0);C<E?C=E:C>$&&(C=$)}return{[c]:u,[b]:C}}}},Sr=function(e){return e===void 0&&(e={}),{name:"size",options:e,async fn(s){const{placement:t,rects:o,platform:a,elements:n}=s,{apply:i,...l}=e,f=await Ys(s,l),p=Is(t),d=ot(t);let c,b;p==="top"||p==="bottom"?(c=p,b=d===(await(a.isRTL==null?void 0:a.isRTL(n.floating))?"start":"end")?"left":"right"):(b=p,c=d==="end"?"top":"bottom");const u=Cs(f.left,0),C=Cs(f.right,0),_=Cs(f.top,0),x=Cs(f.bottom,0),y={availableHeight:o.floating.height-(["left","right"].includes(t)?2*(_!==0||x!==0?_+x:Cs(f.top,f.bottom)):f[c]),availableWidth:o.floating.width-(["top","bottom"].includes(t)?2*(u!==0||C!==0?u+C:Cs(f.left,f.right)):f[b])},h=await a.getDimensions(n.floating);i==null||i({...s,...y});const m=await a.getDimensions(n.floating);return h.width!==m.width||h.height!==m.height?{reset:{rects:!0}}:{}}}};function Rr(e){return e&&e.document&&e.location&&e.alert&&e.setInterval}function ps(e){if(e==null)return window;if(!Rr(e)){const s=e.ownerDocument;return s&&s.defaultView||window}return e}function nt(e){return ps(e).getComputedStyle(e)}function ls(e){return Rr(e)?"":e?(e.nodeName||"").toLowerCase():""}function Pr(){const e=navigator.userAgentData;return e!=null&&e.brands?e.brands.map(s=>s.brand+"/"+s.version).join(" "):navigator.userAgent}function ns(e){return e instanceof ps(e).HTMLElement}function ms(e){return e instanceof ps(e).Element}function Dp(e){return e instanceof ps(e).Node}function rn(e){if(typeof ShadowRoot>"u")return!1;const s=ps(e).ShadowRoot;return e instanceof s||e instanceof ShadowRoot}function Bt(e){const{overflow:s,overflowX:t,overflowY:o}=nt(e);return/auto|scroll|overlay|hidden/.test(s+o+t)}function Op(e){return["table","td","th"].includes(ls(e))}function Dr(e){const s=/firefox/i.test(Pr()),t=nt(e);return t.transform!=="none"||t.perspective!=="none"||t.contain==="paint"||["transform","perspective"].includes(t.willChange)||s&&t.willChange==="filter"||s&&(t.filter?t.filter!=="none":!1)}function Or(){return!/^((?!chrome|android).)*safari/i.test(Pr())}const Za=Math.min,Us=Math.max,St=Math.round;function fs(e,s,t){var o,a,n,i;s===void 0&&(s=!1),t===void 0&&(t=!1);const l=e.getBoundingClientRect();let f=1,p=1;s&&ns(e)&&(f=e.offsetWidth>0&&St(l.width)/e.offsetWidth||1,p=e.offsetHeight>0&&St(l.height)/e.offsetHeight||1);const d=ms(e)?ps(e):window,c=!Or()&&t,b=(l.left+(c&&(o=(a=d.visualViewport)==null?void 0:a.offsetLeft)!=null?o:0))/f,u=(l.top+(c&&(n=(i=d.visualViewport)==null?void 0:i.offsetTop)!=null?n:0))/p,C=l.width/f,_=l.height/p;return{width:C,height:_,top:u,right:b+C,bottom:u+_,left:b,x:b,y:u}}function hs(e){return((Dp(e)?e.ownerDocument:e.document)||window.document).documentElement}function zt(e){return ms(e)?{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}:{scrollLeft:e.pageXOffset,scrollTop:e.pageYOffset}}function Tr(e){return fs(hs(e)).left+zt(e).scrollLeft}function Tp(e){const s=fs(e);return St(s.width)!==e.offsetWidth||St(s.height)!==e.offsetHeight}function Np(e,s,t){const o=ns(s),a=hs(s),n=fs(e,o&&Tp(s),t==="fixed");let i={scrollLeft:0,scrollTop:0};const l={x:0,y:0};if(o||!o&&t!=="fixed")if((ls(s)!=="body"||Bt(a))&&(i=zt(s)),ns(s)){const f=fs(s,!0);l.x=f.x+s.clientLeft,l.y=f.y+s.clientTop}else a&&(l.x=Tr(a));return{x:n.left+i.scrollLeft-l.x,y:n.top+i.scrollTop-l.y,width:n.width,height:n.height}}function Nr(e){return ls(e)==="html"?e:e.assignedSlot||e.parentNode||(rn(e)?e.host:null)||hs(e)}function Ya(e){return!ns(e)||getComputedStyle(e).position==="fixed"?null:e.offsetParent}function Mp(e){let s=Nr(e);for(rn(s)&&(s=s.host);ns(s)&&!["html","body"].includes(ls(s));){if(Dr(s))return s;s=s.parentNode}return null}function Do(e){const s=ps(e);let t=Ya(e);for(;t&&Op(t)&&getComputedStyle(t).position==="static";)t=Ya(t);return t&&(ls(t)==="html"||ls(t)==="body"&&getComputedStyle(t).position==="static"&&!Dr(t))?s:t||Mp(e)||s}function Ga(e){if(ns(e))return{width:e.offsetWidth,height:e.offsetHeight};const s=fs(e);return{width:s.width,height:s.height}}function Ap(e){let{rect:s,offsetParent:t,strategy:o}=e;const a=ns(t),n=hs(t);if(t===n)return s;let i={scrollLeft:0,scrollTop:0};const l={x:0,y:0};if((a||!a&&o!=="fixed")&&((ls(t)!=="body"||Bt(n))&&(i=zt(t)),ns(t))){const f=fs(t,!0);l.x=f.x+t.clientLeft,l.y=f.y+t.clientTop}return{...s,x:s.x-i.scrollLeft+l.x,y:s.y-i.scrollTop+l.y}}function Lp(e,s){const t=ps(e),o=hs(e),a=t.visualViewport;let n=o.clientWidth,i=o.clientHeight,l=0,f=0;if(a){n=a.width,i=a.height;const p=Or();(p||!p&&s==="fixed")&&(l=a.offsetLeft,f=a.offsetTop)}return{width:n,height:i,x:l,y:f}}function Vp(e){var s;const t=hs(e),o=zt(e),a=(s=e.ownerDocument)==null?void 0:s.body,n=Us(t.scrollWidth,t.clientWidth,a?a.scrollWidth:0,a?a.clientWidth:0),i=Us(t.scrollHeight,t.clientHeight,a?a.scrollHeight:0,a?a.clientHeight:0);let l=-o.scrollLeft+Tr(e);const f=-o.scrollTop;return nt(a||t).direction==="rtl"&&(l+=Us(t.clientWidth,a?a.clientWidth:0)-n),{width:n,height:i,x:l,y:f}}function Mr(e){const s=Nr(e);return["html","body","#document"].includes(ls(s))?e.ownerDocument.body:ns(s)&&Bt(s)?s:Mr(s)}function Rt(e,s){var t;s===void 0&&(s=[]);const o=Mr(e),a=o===((t=e.ownerDocument)==null?void 0:t.body),n=ps(o),i=a?[n].concat(n.visualViewport||[],Bt(o)?o:[]):o,l=s.concat(i);return a?l:l.concat(Rt(i))}function Hp(e,s){const t=s.getRootNode==null?void 0:s.getRootNode();if(e.contains(s))return!0;if(t&&rn(t)){let o=s;do{if(o&&e===o)return!0;o=o.parentNode||o.host}while(o)}return!1}function jp(e,s){const t=fs(e,!1,s==="fixed"),o=t.top+e.clientTop,a=t.left+e.clientLeft;return{top:o,left:a,x:a,y:o,right:a+e.clientWidth,bottom:o+e.clientHeight,width:e.clientWidth,height:e.clientHeight}}function Xa(e,s,t){return s==="viewport"?Et(Lp(e,t)):ms(s)?jp(s,t):Et(Vp(hs(e)))}function Fp(e){const s=Rt(e),o=["absolute","fixed"].includes(nt(e).position)&&ns(e)?Do(e):e;return ms(o)?s.filter(a=>ms(a)&&Hp(a,o)&&ls(a)!=="body"):[]}function Bp(e){let{element:s,boundary:t,rootBoundary:o,strategy:a}=e;const i=[...t==="clippingAncestors"?Fp(s):[].concat(t),o],l=i[0],f=i.reduce((p,d)=>{const c=Xa(s,d,a);return p.top=Us(c.top,p.top),p.right=Za(c.right,p.right),p.bottom=Za(c.bottom,p.bottom),p.left=Us(c.left,p.left),p},Xa(s,l,a));return{width:f.right-f.left,height:f.bottom-f.top,x:f.left,y:f.top}}const zp={getClippingRect:Bp,convertOffsetParentRelativeRectToViewportRelativeRect:Ap,isElement:ms,getDimensions:Ga,getOffsetParent:Do,getDocumentElement:hs,getElementRects:e=>{let{reference:s,floating:t,strategy:o}=e;return{reference:Np(s,Do(t),o),floating:{...Ga(t),x:0,y:0}}},getClientRects:e=>Array.from(e.getClientRects()),isRTL:e=>nt(e).direction==="rtl"};function Ar(e,s,t,o){o===void 0&&(o={});const{ancestorScroll:a=!0,ancestorResize:n=!0,elementResize:i=!0,animationFrame:l=!1}=o,f=a&&!l,p=n&&!l,d=f||p?[...ms(e)?Rt(e):[],...Rt(s)]:[];d.forEach(_=>{f&&_.addEventListener("scroll",t,{passive:!0}),p&&_.addEventListener("resize",t)});let c=null;if(i){let _=!0;c=new ResizeObserver(()=>{_||t(),_=!1}),ms(e)&&!l&&c.observe(e),c.observe(s)}let b,u=l?fs(e):null;l&&C();function C(){const _=fs(e);u&&(_.x!==u.x||_.y!==u.y||_.width!==u.width||_.height!==u.height)&&t(),u=_,b=requestAnimationFrame(C)}return t(),()=>{var _;d.forEach(x=>{f&&x.removeEventListener("scroll",t),p&&x.removeEventListener("resize",t)}),(_=c)==null||_.disconnect(),c=null,l&&cancelAnimationFrame(b)}}const qp=(e,s,t)=>xp(e,s,{platform:zp,...t});var Oo=typeof document<"u"?r.useLayoutEffect:r.useEffect;function To(e,s){if(e===s)return!0;if(typeof e!=typeof s)return!1;if(typeof e=="function"&&e.toString()===s.toString())return!0;let t,o,a;if(e&&s&&typeof e=="object"){if(Array.isArray(e)){if(t=e.length,t!=s.length)return!1;for(o=t;o--!==0;)if(!To(e[o],s[o]))return!1;return!0}if(a=Object.keys(e),t=a.length,t!==Object.keys(s).length)return!1;for(o=t;o--!==0;)if(!Object.prototype.hasOwnProperty.call(s,a[o]))return!1;for(o=t;o--!==0;){const n=a[o];if(!(n==="_owner"&&e.$$typeof)&&!To(e[n],s[n]))return!1}return!0}return e!==e&&s!==s}function Wp(e){const s=fe.useRef(e);return Oo(()=>{s.current=e}),s}function Lr(e){let{middleware:s,placement:t="bottom",strategy:o="absolute",whileElementsMounted:a}=e===void 0?{}:e;const n=fe.useRef(null),i=fe.useRef(null),l=Wp(a),f=fe.useRef(null),[p,d]=fe.useState({x:null,y:null,strategy:o,placement:t,middlewareData:{}}),[c,b]=fe.useState(s);To(c==null?void 0:c.map(m=>{let{options:g}=m;return g}),s==null?void 0:s.map(m=>{let{options:g}=m;return g}))||b(s);const u=fe.useCallback(()=>{!n.current||!i.current||qp(n.current,i.current,{middleware:c,placement:t,strategy:o}).then(m=>{C.current&&t1.flushSync(()=>{d(m)})})},[c,t,o]);Oo(()=>{C.current&&u()},[u]);const C=fe.useRef(!1);Oo(()=>(C.current=!0,()=>{C.current=!1}),[]);const _=fe.useCallback(()=>{if(typeof f.current=="function"&&(f.current(),f.current=null),n.current&&i.current)if(l.current){const m=l.current(n.current,i.current,u);f.current=m}else u()},[u,l]),x=fe.useCallback(m=>{n.current=m,_()},[_]),y=fe.useCallback(m=>{i.current=m,_()},[_]),h=fe.useMemo(()=>({reference:n,floating:i}),[]);return fe.useMemo(()=>({...p,update:u,refs:h,reference:x,floating:y}),[p,u,h,x,y])}const Vr=e=>{const{element:s,padding:t}=e;function o(a){return Object.prototype.hasOwnProperty.call(a,"current")}return{name:"arrow",options:e,fn(a){return o(s)?s.current!=null?qa({element:s.current,padding:t}).fn(a):{}:s?qa({element:s,padding:t}).fn(a):{}}}};function qt(e){const[s,t]=r.useState(void 0);return We(()=>{if(e){t({width:e.offsetWidth,height:e.offsetHeight});const o=new ResizeObserver(a=>{if(!Array.isArray(a)||!a.length)return;const n=a[0];let i,l;if("borderBoxSize"in n){const f=n.borderBoxSize,p=Array.isArray(f)?f[0]:f;i=p.inlineSize,l=p.blockSize}else i=e.offsetWidth,l=e.offsetHeight;t({width:i,height:l})});return o.observe(e,{box:"border-box"}),()=>o.unobserve(e)}else t(void 0)},[e]),s}const Hr="Popper",[ln,jr]=ze(Hr),[Kp,Fr]=ln(Hr),Up=e=>{const{__scopePopper:s,children:t}=e,[o,a]=r.useState(null);return r.createElement(Kp,{scope:s,anchor:o,onAnchorChange:a},t)},Zp="PopperAnchor",Yp=r.forwardRef((e,s)=>{const{__scopePopper:t,virtualRef:o,...a}=e,n=Fr(Zp,t),i=r.useRef(null),l=Ce(s,i);return r.useEffect(()=>{n.onAnchorChange((o==null?void 0:o.current)||i.current)}),o?null:r.createElement(Oe.div,S({},a,{ref:l}))}),Pt="PopperContent",[Gp,Hv]=ln(Pt),[Xp,Jp]=ln(Pt,{hasParent:!1,positionUpdateFns:new Set}),Qp=r.forwardRef((e,s)=>{var t,o,a,n,i,l,f,p;const{__scopePopper:d,side:c="bottom",sideOffset:b=0,align:u="center",alignOffset:C=0,arrowPadding:_=0,collisionBoundary:x=[],collisionPadding:y=0,sticky:h="partial",hideWhenDetached:m=!1,avoidCollisions:g=!0,onPlaced:w,...D}=e,E=Fr(Pt,d),[$,R]=r.useState(null),H=Ce(s,Ee=>R(Ee)),[O,W]=r.useState(null),P=qt(O),K=(t=P==null?void 0:P.width)!==null&&t!==void 0?t:0,G=(o=P==null?void 0:P.height)!==null&&o!==void 0?o:0,ne=c+(u!=="center"?"-"+u:""),oe=typeof y=="number"?y:{top:0,right:0,bottom:0,left:0,...y},se=Array.isArray(x)?x:[x],Y=se.length>0,I={padding:oe,boundary:se.filter(sd),altBoundary:Y},{reference:V,floating:J,strategy:Q,x:j,y:U,placement:F,middlewareData:T,update:M}=Lr({strategy:"fixed",placement:ne,whileElementsMounted:Ar,middleware:[td(),wr({mainAxis:b+G,alignmentAxis:C}),g?Er({mainAxis:!0,crossAxis:!1,limiter:h==="partial"?Ir():void 0,...I}):void 0,O?Vr({element:O,padding:_}):void 0,g?xr({...I}):void 0,Sr({...I,apply:({elements:Ee,availableWidth:Se,availableHeight:Le})=>{Ee.floating.style.setProperty("--radix-popper-available-width",`${Se}px`),Ee.floating.style.setProperty("--radix-popper-available-height",`${Le}px`)}}),od({arrowWidth:K,arrowHeight:G}),m?kr({strategy:"referenceHidden"}):void 0].filter(ed)});We(()=>{V(E.anchor)},[V,E.anchor]);const A=j!==null&&U!==null,[B,q]=Br(F),L=Fe(w);We(()=>{A&&(L==null||L())},[A,L]);const le=(a=T.arrow)===null||a===void 0?void 0:a.x,ce=(n=T.arrow)===null||n===void 0?void 0:n.y,ye=((i=T.arrow)===null||i===void 0?void 0:i.centerOffset)!==0,[Re,Ie]=r.useState();We(()=>{$&&Ie(window.getComputedStyle($).zIndex)},[$]);const{hasParent:Te,positionUpdateFns:_e}=Jp(Pt,d),$e=!Te;r.useLayoutEffect(()=>{if(!$e)return _e.add(M),()=>{_e.delete(M)}},[$e,_e,M]),We(()=>{$e&&A&&Array.from(_e).reverse().forEach(Ee=>requestAnimationFrame(Ee))},[$e,A,_e]);const Pe={"data-side":B,"data-align":q,...D,ref:H,style:{...D.style,animation:A?void 0:"none",opacity:(l=T.hide)!==null&&l!==void 0&&l.referenceHidden?0:void 0}};return r.createElement("div",{ref:J,"data-radix-popper-content-wrapper":"",style:{position:Q,left:0,top:0,transform:A?`translate3d(${Math.round(j)}px, ${Math.round(U)}px, 0)`:"translate3d(0, -200%, 0)",minWidth:"max-content",zIndex:Re,["--radix-popper-transform-origin"]:[(f=T.transformOrigin)===null||f===void 0?void 0:f.x,(p=T.transformOrigin)===null||p===void 0?void 0:p.y].join(" ")},dir:e.dir},r.createElement(Gp,{scope:d,placedSide:B,onArrowChange:W,arrowX:le,arrowY:ce,shouldHideArrow:ye},$e?r.createElement(Xp,{scope:d,hasParent:!0,positionUpdateFns:_e},r.createElement(Oe.div,Pe)):r.createElement(Oe.div,Pe)))});function ed(e){return e!==void 0}function sd(e){return e!==null}const td=()=>({name:"anchorCssProperties",fn(e){const{rects:s,elements:t}=e,{width:o,height:a}=s.reference;return t.floating.style.setProperty("--radix-popper-anchor-width",`${o}px`),t.floating.style.setProperty("--radix-popper-anchor-height",`${a}px`),{}}}),od=e=>({name:"transformOrigin",options:e,fn(s){var t,o,a,n,i;const{placement:l,rects:f,middlewareData:p}=s,c=((t=p.arrow)===null||t===void 0?void 0:t.centerOffset)!==0,b=c?0:e.arrowWidth,u=c?0:e.arrowHeight,[C,_]=Br(l),x={start:"0%",center:"50%",end:"100%"}[_],y=((o=(a=p.arrow)===null||a===void 0?void 0:a.x)!==null&&o!==void 0?o:0)+b/2,h=((n=(i=p.arrow)===null||i===void 0?void 0:i.y)!==null&&n!==void 0?n:0)+u/2;let m="",g="";return C==="bottom"?(m=c?x:`${y}px`,g=`${-u}px`):C==="top"?(m=c?x:`${y}px`,g=`${f.floating.height+u}px`):C==="right"?(m=`${-u}px`,g=c?x:`${h}px`):C==="left"&&(m=`${f.floating.width+u}px`,g=c?x:`${h}px`),{data:{x:m,y:g}}}});function Br(e){const[s,t="center"]=e.split("-");return[s,t]}const nd=Up,ad=Yp,id=Qp,zr=r.forwardRef((e,s)=>{var t;const{container:o=globalThis==null||(t=globalThis.document)===null||t===void 0?void 0:t.body,...a}=e;return o?Ni.default.createPortal(r.createElement(Oe.div,S({},a,{ref:s})),o):null}),uo="rovingFocusGroup.onEntryFocus",rd={bubbles:!1,cancelable:!0},fn="RovingFocusGroup",[No,qr,ld]=Go(fn),[fd,Wt]=ze(fn,[ld]),[cd,pd]=fd(fn),dd=r.forwardRef((e,s)=>r.createElement(No.Provider,{scope:e.__scopeRovingFocusGroup},r.createElement(No.Slot,{scope:e.__scopeRovingFocusGroup},r.createElement(ud,S({},e,{ref:s}))))),ud=r.forwardRef((e,s)=>{const{__scopeRovingFocusGroup:t,orientation:o,loop:a=!1,dir:n,currentTabStopId:i,defaultCurrentTabStopId:l,onCurrentTabStopIdChange:f,onEntryFocus:p,...d}=e,c=r.useRef(null),b=Ce(s,c),u=on(n),[C=null,_]=es({prop:i,defaultProp:l,onChange:f}),[x,y]=r.useState(!1),h=Fe(p),m=qr(t),g=r.useRef(!1),[w,D]=r.useState(0);return r.useEffect(()=>{const E=c.current;if(E)return E.addEventListener(uo,h),()=>E.removeEventListener(uo,h)},[h]),r.createElement(cd,{scope:t,orientation:o,dir:u,loop:a,currentTabStopId:C,onItemFocus:r.useCallback(E=>_(E),[_]),onItemShiftTab:r.useCallback(()=>y(!0),[]),onFocusableItemAdd:r.useCallback(()=>D(E=>E+1),[]),onFocusableItemRemove:r.useCallback(()=>D(E=>E-1),[])},r.createElement(Oe.div,S({tabIndex:x||w===0?-1:0,"data-orientation":o},d,{ref:b,style:{outline:"none",...e.style},onMouseDown:te(e.onMouseDown,()=>{g.current=!0}),onFocus:te(e.onFocus,E=>{const $=!g.current;if(E.target===E.currentTarget&&$&&!x){const R=new CustomEvent(uo,rd);if(E.currentTarget.dispatchEvent(R),!R.defaultPrevented){const H=m().filter(G=>G.focusable),O=H.find(G=>G.active),W=H.find(G=>G.id===C),K=[O,W,...H].filter(Boolean).map(G=>G.ref.current);Wr(K)}}g.current=!1}),onBlur:te(e.onBlur,()=>y(!1))})))}),_d="RovingFocusGroupItem",md=r.forwardRef((e,s)=>{const{__scopeRovingFocusGroup:t,focusable:o=!0,active:a=!1,tabStopId:n,...i}=e,l=os(),f=n||l,p=pd(_d,t),d=p.currentTabStopId===f,c=qr(t),{onFocusableItemAdd:b,onFocusableItemRemove:u}=p;return r.useEffect(()=>{if(o)return b(),()=>u()},[o,b,u]),r.createElement(No.ItemSlot,{scope:t,id:f,focusable:o,active:a},r.createElement(Oe.span,S({tabIndex:d?0:-1,"data-orientation":p.orientation},i,{ref:s,onMouseDown:te(e.onMouseDown,C=>{o?p.onItemFocus(f):C.preventDefault()}),onFocus:te(e.onFocus,()=>p.onItemFocus(f)),onKeyDown:te(e.onKeyDown,C=>{if(C.key==="Tab"&&C.shiftKey){p.onItemShiftTab();return}if(C.target!==C.currentTarget)return;const _=vd(C,p.orientation,p.dir);if(_!==void 0){C.preventDefault();let y=c().filter(h=>h.focusable).map(h=>h.ref.current);if(_==="last")y.reverse();else if(_==="prev"||_==="next"){_==="prev"&&y.reverse();const h=y.indexOf(C.currentTarget);y=p.loop?gd(y,h+1):y.slice(h+1)}setTimeout(()=>Wr(y))}})})))}),bd={ArrowLeft:"prev",ArrowUp:"prev",ArrowRight:"next",ArrowDown:"next",PageUp:"first",Home:"first",PageDown:"last",End:"last"};function hd(e,s){return s!=="rtl"?e:e==="ArrowLeft"?"ArrowRight":e==="ArrowRight"?"ArrowLeft":e}function vd(e,s,t){const o=hd(e.key,t);if(!(s==="vertical"&&["ArrowLeft","ArrowRight"].includes(o))&&!(s==="horizontal"&&["ArrowUp","ArrowDown"].includes(o)))return bd[o]}function Wr(e){const s=document.activeElement;for(const t of e)if(t===s||(t.focus(),document.activeElement!==s))return}function gd(e,s){return e.map((t,o)=>e[(s+o)%e.length])}const Kr=dd,Ur=md;var Cd=function(e){if(typeof document>"u")return null;var s=Array.isArray(e)?e[0]:e;return s.ownerDocument.body},Ns=new WeakMap,_t=new WeakMap,mt={},_o=0,Zr=function(e){return e&&(e.host||Zr(e.parentNode))},yd=function(e,s){return s.map(function(t){if(e.contains(t))return t;var o=Zr(t);return o&&e.contains(o)?o:(console.error("aria-hidden",t,"in not contained inside",e,". Doing nothing"),null)}).filter(function(t){return Boolean(t)})},xd=function(e,s,t,o){var a=yd(s,Array.isArray(e)?e:[e]);mt[t]||(mt[t]=new WeakMap);var n=mt[t],i=[],l=new Set,f=new Set(a),p=function(c){!c||l.has(c)||(l.add(c),p(c.parentNode))};a.forEach(p);var d=function(c){!c||f.has(c)||Array.prototype.forEach.call(c.children,function(b){if(l.has(b))d(b);else{var u=b.getAttribute(o),C=u!==null&&u!=="false",_=(Ns.get(b)||0)+1,x=(n.get(b)||0)+1;Ns.set(b,_),n.set(b,x),i.push(b),_===1&&C&&_t.set(b,!0),x===1&&b.setAttribute(t,"true"),C||b.setAttribute(o,"true")}})};return d(s),l.clear(),_o++,function(){i.forEach(function(c){var b=Ns.get(c)-1,u=n.get(c)-1;Ns.set(c,b),n.set(c,u),b||(_t.has(c)||c.removeAttribute(o),_t.delete(c)),u||c.removeAttribute(t)}),_o--,_o||(Ns=new WeakMap,Ns=new WeakMap,_t=new WeakMap,mt={})}},cn=function(e,s,t){t===void 0&&(t="data-aria-hidden");var o=Array.from(Array.isArray(e)?e:[e]),a=s||Cd(e);return a?(o.push.apply(o,Array.from(a.querySelectorAll("[aria-live]"))),xd(o,a,t,"aria-hidden")):function(){return null}},Ye=function(){return Ye=Object.assign||function(s){for(var t,o=1,a=arguments.length;o<a;o++){t=arguments[o];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(s[n]=t[n])}return s},Ye.apply(this,arguments)};function Yr(e,s){var t={};for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&s.indexOf(o)<0&&(t[o]=e[o]);if(e!=null&&typeof Object.getOwnPropertySymbols=="function")for(var a=0,o=Object.getOwnPropertySymbols(e);a<o.length;a++)s.indexOf(o[a])<0&&Object.prototype.propertyIsEnumerable.call(e,o[a])&&(t[o[a]]=e[o[a]]);return t}function kd(e,s,t){if(t||arguments.length===2)for(var o=0,a=s.length,n;o<a;o++)(n||!(o in s))&&(n||(n=Array.prototype.slice.call(s,0,o)),n[o]=s[o]);return e.concat(n||Array.prototype.slice.call(s))}var Ct="right-scroll-bar-position",yt="width-before-scroll-bar",wd="with-scroll-bars-hidden",$d="--removed-body-scroll-bar-size";function Ed(e,s){return typeof e=="function"?e(s):e&&(e.current=s),e}function Id(e,s){var t=r.useState(function(){return{value:e,callback:s,facade:{get current(){return t.value},set current(o){var a=t.value;a!==o&&(t.value=o,t.callback(o,a))}}}})[0];return t.callback=s,t.facade}function Sd(e,s){return Id(s||null,function(t){return e.forEach(function(o){return Ed(o,t)})})}function Rd(e){return e}function Pd(e,s){s===void 0&&(s=Rd);var t=[],o=!1,a={read:function(){if(o)throw new Error("Sidecar: could not `read` from an `assigned` medium. `read` could be used only with `useMedium`.");return t.length?t[t.length-1]:e},useMedium:function(n){var i=s(n,o);return t.push(i),function(){t=t.filter(function(l){return l!==i})}},assignSyncMedium:function(n){for(o=!0;t.length;){var i=t;t=[],i.forEach(n)}t={push:function(l){return n(l)},filter:function(){return t}}},assignMedium:function(n){o=!0;var i=[];if(t.length){var l=t;t=[],l.forEach(n),i=t}var f=function(){var d=i;i=[],d.forEach(n)},p=function(){return Promise.resolve().then(f)};p(),t={push:function(d){i.push(d),p()},filter:function(d){return i=i.filter(d),t}}}};return a}function Dd(e){e===void 0&&(e={});var s=Pd(null);return s.options=Ye({async:!0,ssr:!1},e),s}var Gr=function(e){var s=e.sideCar,t=Yr(e,["sideCar"]);if(!s)throw new Error("Sidecar: please provide `sideCar` property to import the right car");var o=s.read();if(!o)throw new Error("Sidecar medium not found");return v(o,{...Ye({},t)})};Gr.isSideCarExport=!0;function Od(e,s){return e.useMedium(s),Gr}var Xr=Dd(),mo=function(){},Kt=fe.forwardRef(function(e,s){var t=fe.useRef(null),o=fe.useState({onScrollCapture:mo,onWheelCapture:mo,onTouchMoveCapture:mo}),a=o[0],n=o[1],i=e.forwardProps,l=e.children,f=e.className,p=e.removeScrollBar,d=e.enabled,c=e.shards,b=e.sideCar,u=e.noIsolation,C=e.inert,_=e.allowPinchZoom,x=e.as,y=x===void 0?"div":x,h=Yr(e,["forwardProps","children","className","removeScrollBar","enabled","shards","sideCar","noIsolation","inert","allowPinchZoom","as"]),m=b,g=Sd([t,s]),w=Ye(Ye({},h),a);return ee(Ve,{children:[d&&v(m,{sideCar:Xr,removeScrollBar:p,shards:c,noIsolation:u,inert:C,setCallbacks:n,allowPinchZoom:!!_,lockRef:t}),i?fe.cloneElement(fe.Children.only(l),Ye(Ye({},w),{ref:g})):v(y,{...Ye({},w,{className:f,ref:g}),children:l})]})});Kt.defaultProps={enabled:!0,removeScrollBar:!0,inert:!1};Kt.classNames={fullWidth:yt,zeroRight:Ct};var Td=function(){if(typeof __webpack_nonce__<"u")return __webpack_nonce__};function Nd(){if(!document)return null;var e=document.createElement("style");e.type="text/css";var s=Td();return s&&e.setAttribute("nonce",s),e}function Md(e,s){e.styleSheet?e.styleSheet.cssText=s:e.appendChild(document.createTextNode(s))}function Ad(e){var s=document.head||document.getElementsByTagName("head")[0];s.appendChild(e)}var Ld=function(){var e=0,s=null;return{add:function(t){e==0&&(s=Nd())&&(Md(s,t),Ad(s)),e++},remove:function(){e--,!e&&s&&(s.parentNode&&s.parentNode.removeChild(s),s=null)}}},Vd=function(){var e=Ld();return function(s,t){fe.useEffect(function(){return e.add(s),function(){e.remove()}},[s&&t])}},Jr=function(){var e=Vd(),s=function(t){var o=t.styles,a=t.dynamic;return e(o,a),null};return s},Hd={left:0,top:0,right:0,gap:0},bo=function(e){return parseInt(e||"",10)||0},jd=function(e){var s=window.getComputedStyle(document.body),t=s[e==="padding"?"paddingLeft":"marginLeft"],o=s[e==="padding"?"paddingTop":"marginTop"],a=s[e==="padding"?"paddingRight":"marginRight"];return[bo(t),bo(o),bo(a)]},Fd=function(e){if(e===void 0&&(e="margin"),typeof window>"u")return Hd;var s=jd(e),t=document.documentElement.clientWidth,o=window.innerWidth;return{left:s[0],top:s[1],right:s[2],gap:Math.max(0,o-t+s[2]-s[0])}},Bd=Jr(),zd=function(e,s,t,o){var a=e.left,n=e.top,i=e.right,l=e.gap;return t===void 0&&(t="margin"),`
30
+ .`.concat(wd,` {
31
+ overflow: hidden `).concat(o,`;
32
+ padding-right: `).concat(l,"px ").concat(o,`;
33
+ }
34
+ body {
35
+ overflow: hidden `).concat(o,`;
36
+ overscroll-behavior: contain;
37
+ `).concat([s&&"position: relative ".concat(o,";"),t==="margin"&&`
38
+ padding-left: `.concat(a,`px;
39
+ padding-top: `).concat(n,`px;
40
+ padding-right: `).concat(i,`px;
41
+ margin-left:0;
42
+ margin-top:0;
43
+ margin-right: `).concat(l,"px ").concat(o,`;
44
+ `),t==="padding"&&"padding-right: ".concat(l,"px ").concat(o,";")].filter(Boolean).join(""),`
45
+ }
46
+
47
+ .`).concat(Ct,` {
48
+ right: `).concat(l,"px ").concat(o,`;
49
+ }
50
+
51
+ .`).concat(yt,` {
52
+ margin-right: `).concat(l,"px ").concat(o,`;
53
+ }
54
+
55
+ .`).concat(Ct," .").concat(Ct,` {
56
+ right: 0 `).concat(o,`;
57
+ }
58
+
59
+ .`).concat(yt," .").concat(yt,` {
60
+ margin-right: 0 `).concat(o,`;
61
+ }
62
+
63
+ body {
64
+ `).concat($d,": ").concat(l,`px;
65
+ }
66
+ `)},qd=function(e){var s=e.noRelative,t=e.noImportant,o=e.gapMode,a=o===void 0?"margin":o,n=fe.useMemo(function(){return Fd(a)},[a]);return v(Bd,{styles:zd(n,!s,a,t?"":"!important")})},Mo=!1;if(typeof window<"u")try{var bt=Object.defineProperty({},"passive",{get:function(){return Mo=!0,!0}});window.addEventListener("test",bt,bt),window.removeEventListener("test",bt,bt)}catch{Mo=!1}var Ms=Mo?{passive:!1}:!1,Wd=function(e){return e.tagName==="TEXTAREA"},Qr=function(e,s){var t=window.getComputedStyle(e);return t[s]!=="hidden"&&!(t.overflowY===t.overflowX&&!Wd(e)&&t[s]==="visible")},Kd=function(e){return Qr(e,"overflowY")},Ud=function(e){return Qr(e,"overflowX")},Ja=function(e,s){var t=s;do{typeof ShadowRoot<"u"&&t instanceof ShadowRoot&&(t=t.host);var o=el(e,t);if(o){var a=sl(e,t),n=a[1],i=a[2];if(n>i)return!0}t=t.parentNode}while(t&&t!==document.body);return!1},Zd=function(e){var s=e.scrollTop,t=e.scrollHeight,o=e.clientHeight;return[s,t,o]},Yd=function(e){var s=e.scrollLeft,t=e.scrollWidth,o=e.clientWidth;return[s,t,o]},el=function(e,s){return e==="v"?Kd(s):Ud(s)},sl=function(e,s){return e==="v"?Zd(s):Yd(s)},Gd=function(e,s){return e==="h"&&s==="rtl"?-1:1},Xd=function(e,s,t,o,a){var n=Gd(e,window.getComputedStyle(s).direction),i=n*o,l=t.target,f=s.contains(l),p=!1,d=i>0,c=0,b=0;do{var u=sl(e,l),C=u[0],_=u[1],x=u[2],y=_-x-n*C;(C||y)&&el(e,l)&&(c+=y,b+=C),l=l.parentNode}while(!f&&l!==document.body||f&&(s.contains(l)||s===l));return(d&&(a&&c===0||!a&&i>c)||!d&&(a&&b===0||!a&&-i>b))&&(p=!0),p},ht=function(e){return"changedTouches"in e?[e.changedTouches[0].clientX,e.changedTouches[0].clientY]:[0,0]},Qa=function(e){return[e.deltaX,e.deltaY]},ei=function(e){return e&&"current"in e?e.current:e},Jd=function(e,s){return e[0]===s[0]&&e[1]===s[1]},Qd=function(e){return`
67
+ .block-interactivity-`.concat(e,` {pointer-events: none;}
68
+ .allow-interactivity-`).concat(e,` {pointer-events: all;}
69
+ `)},eu=0,As=[];function su(e){var s=fe.useRef([]),t=fe.useRef([0,0]),o=fe.useRef(),a=fe.useState(eu++)[0],n=fe.useState(function(){return Jr()})[0],i=fe.useRef(e);fe.useEffect(function(){i.current=e},[e]),fe.useEffect(function(){if(e.inert){document.body.classList.add("block-interactivity-".concat(a));var _=kd([e.lockRef.current],(e.shards||[]).map(ei),!0).filter(Boolean);return _.forEach(function(x){return x.classList.add("allow-interactivity-".concat(a))}),function(){document.body.classList.remove("block-interactivity-".concat(a)),_.forEach(function(x){return x.classList.remove("allow-interactivity-".concat(a))})}}},[e.inert,e.lockRef.current,e.shards]);var l=fe.useCallback(function(_,x){if("touches"in _&&_.touches.length===2)return!i.current.allowPinchZoom;var y=ht(_),h=t.current,m="deltaX"in _?_.deltaX:h[0]-y[0],g="deltaY"in _?_.deltaY:h[1]-y[1],w,D=_.target,E=Math.abs(m)>Math.abs(g)?"h":"v";if("touches"in _&&E==="h"&&D.type==="range")return!1;var $=Ja(E,D);if(!$)return!0;if($?w=E:(w=E==="v"?"h":"v",$=Ja(E,D)),!$)return!1;if(!o.current&&"changedTouches"in _&&(m||g)&&(o.current=w),!w)return!0;var R=o.current||w;return Xd(R,x,_,R==="h"?m:g,!0)},[]),f=fe.useCallback(function(_){var x=_;if(!(!As.length||As[As.length-1]!==n)){var y="deltaY"in x?Qa(x):ht(x),h=s.current.filter(function(w){return w.name===x.type&&w.target===x.target&&Jd(w.delta,y)})[0];if(h&&h.should){x.cancelable&&x.preventDefault();return}if(!h){var m=(i.current.shards||[]).map(ei).filter(Boolean).filter(function(w){return w.contains(x.target)}),g=m.length>0?l(x,m[0]):!i.current.noIsolation;g&&x.cancelable&&x.preventDefault()}}},[]),p=fe.useCallback(function(_,x,y,h){var m={name:_,delta:x,target:y,should:h};s.current.push(m),setTimeout(function(){s.current=s.current.filter(function(g){return g!==m})},1)},[]),d=fe.useCallback(function(_){t.current=ht(_),o.current=void 0},[]),c=fe.useCallback(function(_){p(_.type,Qa(_),_.target,l(_,e.lockRef.current))},[]),b=fe.useCallback(function(_){p(_.type,ht(_),_.target,l(_,e.lockRef.current))},[]);fe.useEffect(function(){return As.push(n),e.setCallbacks({onScrollCapture:c,onWheelCapture:c,onTouchMoveCapture:b}),document.addEventListener("wheel",f,Ms),document.addEventListener("touchmove",f,Ms),document.addEventListener("touchstart",d,Ms),function(){As=As.filter(function(_){return _!==n}),document.removeEventListener("wheel",f,Ms),document.removeEventListener("touchmove",f,Ms),document.removeEventListener("touchstart",d,Ms)}},[]);var u=e.removeScrollBar,C=e.inert;return ee(Ve,{children:[C?v(n,{styles:Qd(a)}):null,u?v(qd,{gapMode:"margin"}):null]})}const tu=Od(Xr,su);var tl=fe.forwardRef(function(e,s){return v(Kt,{...Ye({},e,{ref:s,sideCar:tu})})});tl.classNames=Kt.classNames;const pn=tl,ou=["Enter"," "],nu=["ArrowDown","PageUp","Home"],ol=["ArrowUp","PageDown","End"],au=[...nu,...ol],Ut="Menu",[Ao,iu,ru]=Go(Ut),[Ss,nl]=ze(Ut,[ru,jr,Wt]),dn=jr(),al=Wt(),[lu,at]=Ss(Ut),[fu,un]=Ss(Ut),cu=e=>{const{__scopeMenu:s,open:t=!1,children:o,dir:a,onOpenChange:n,modal:i=!0}=e,l=dn(s),[f,p]=r.useState(null),d=r.useRef(!1),c=Fe(n),b=on(a);return r.useEffect(()=>{const u=()=>{d.current=!0,document.addEventListener("pointerdown",C,{capture:!0,once:!0}),document.addEventListener("pointermove",C,{capture:!0,once:!0})},C=()=>d.current=!1;return document.addEventListener("keydown",u,{capture:!0}),()=>{document.removeEventListener("keydown",u,{capture:!0}),document.removeEventListener("pointerdown",C,{capture:!0}),document.removeEventListener("pointermove",C,{capture:!0})}},[]),r.createElement(nd,l,r.createElement(lu,{scope:s,open:t,onOpenChange:c,content:f,onContentChange:p},r.createElement(fu,{scope:s,onClose:r.useCallback(()=>c(!1),[c]),isUsingKeyboardRef:d,dir:b,modal:i},o)))},pu=r.forwardRef((e,s)=>{const{__scopeMenu:t,...o}=e,a=dn(t);return r.createElement(ad,S({},a,o,{ref:s}))}),il="MenuPortal",[du,uu]=Ss(il,{forceMount:void 0}),_u=e=>{const{__scopeMenu:s,forceMount:t,children:o,container:a}=e,n=at(il,s);return r.createElement(du,{scope:s,forceMount:t},r.createElement(Ze,{present:t||n.open},r.createElement(zr,{asChild:!0,container:a},o)))},us="MenuContent",[mu,rl]=Ss(us),bu=r.forwardRef((e,s)=>{const t=uu(us,e.__scopeMenu),{forceMount:o=t.forceMount,...a}=e,n=at(us,e.__scopeMenu),i=un(us,e.__scopeMenu);return r.createElement(Ao.Provider,{scope:e.__scopeMenu},r.createElement(Ze,{present:o||n.open},r.createElement(Ao.Slot,{scope:e.__scopeMenu},i.modal?r.createElement(hu,S({},a,{ref:s})):r.createElement(vu,S({},a,{ref:s})))))}),hu=r.forwardRef((e,s)=>{const t=at(us,e.__scopeMenu),o=r.useRef(null),a=Ce(s,o);return r.useEffect(()=>{const n=o.current;if(n)return cn(n)},[]),r.createElement(ll,S({},e,{ref:a,trapFocus:t.open,disableOutsidePointerEvents:t.open,disableOutsideScroll:!0,onFocusOutside:te(e.onFocusOutside,n=>n.preventDefault(),{checkForDefaultPrevented:!1}),onDismiss:()=>t.onOpenChange(!1)}))}),vu=r.forwardRef((e,s)=>{const t=at(us,e.__scopeMenu);return r.createElement(ll,S({},e,{ref:s,trapFocus:!1,disableOutsidePointerEvents:!1,disableOutsideScroll:!1,onDismiss:()=>t.onOpenChange(!1)}))}),ll=r.forwardRef((e,s)=>{const{__scopeMenu:t,loop:o=!1,trapFocus:a,onOpenAutoFocus:n,onCloseAutoFocus:i,disableOutsidePointerEvents:l,onEntryFocus:f,onEscapeKeyDown:p,onPointerDownOutside:d,onFocusOutside:c,onInteractOutside:b,onDismiss:u,disableOutsideScroll:C,..._}=e,x=at(us,t),y=un(us,t),h=dn(t),m=al(t),g=iu(t),[w,D]=r.useState(null),E=r.useRef(null),$=Ce(s,E,x.onContentChange),R=r.useRef(0),H=r.useRef(""),O=r.useRef(0),W=r.useRef(null),P=r.useRef("right"),K=r.useRef(0),G=C?pn:r.Fragment,ne=C?{as:_s,allowPinchZoom:!0}:void 0,oe=Y=>{var I,V;const J=H.current+Y,Q=g().filter(A=>!A.disabled),j=document.activeElement,U=(I=Q.find(A=>A.ref.current===j))===null||I===void 0?void 0:I.textValue,F=Q.map(A=>A.textValue),T=Iu(F,J,U),M=(V=Q.find(A=>A.textValue===T))===null||V===void 0?void 0:V.ref.current;(function A(B){H.current=B,window.clearTimeout(R.current),B!==""&&(R.current=window.setTimeout(()=>A(""),1e3))})(J),M&&setTimeout(()=>M.focus())};r.useEffect(()=>()=>window.clearTimeout(R.current),[]),nn();const se=r.useCallback(Y=>{var I,V;return P.current===((I=W.current)===null||I===void 0?void 0:I.side)&&Ru(Y,(V=W.current)===null||V===void 0?void 0:V.area)},[]);return r.createElement(mu,{scope:t,searchRef:H,onItemEnter:r.useCallback(Y=>{se(Y)&&Y.preventDefault()},[se]),onItemLeave:r.useCallback(Y=>{var I;se(Y)||((I=E.current)===null||I===void 0||I.focus(),D(null))},[se]),onTriggerLeave:r.useCallback(Y=>{se(Y)&&Y.preventDefault()},[se]),pointerGraceTimerRef:O,onPointerGraceIntentChange:r.useCallback(Y=>{W.current=Y},[])},r.createElement(G,ne,r.createElement(gr,{asChild:!0,trapped:a,onMountAutoFocus:te(n,Y=>{var I;Y.preventDefault(),(I=E.current)===null||I===void 0||I.focus()}),onUnmountAutoFocus:i},r.createElement(hr,{asChild:!0,disableOutsidePointerEvents:l,onEscapeKeyDown:p,onPointerDownOutside:d,onFocusOutside:c,onInteractOutside:b,onDismiss:u},r.createElement(Kr,S({asChild:!0},m,{dir:y.dir,orientation:"vertical",loop:o,currentTabStopId:w,onCurrentTabStopIdChange:D,onEntryFocus:te(f,Y=>{y.isUsingKeyboardRef.current||Y.preventDefault()})}),r.createElement(id,S({role:"menu","aria-orientation":"vertical","data-state":wu(x.open),"data-radix-menu-content":"",dir:y.dir},h,_,{ref:$,style:{outline:"none",..._.style},onKeyDown:te(_.onKeyDown,Y=>{const V=Y.target.closest("[data-radix-menu-content]")===Y.currentTarget,J=Y.ctrlKey||Y.altKey||Y.metaKey,Q=Y.key.length===1;V&&(Y.key==="Tab"&&Y.preventDefault(),!J&&Q&&oe(Y.key));const j=E.current;if(Y.target!==j||!au.includes(Y.key))return;Y.preventDefault();const F=g().filter(T=>!T.disabled).map(T=>T.ref.current);ol.includes(Y.key)&&F.reverse(),$u(F)}),onBlur:te(e.onBlur,Y=>{Y.currentTarget.contains(Y.target)||(window.clearTimeout(R.current),H.current="")}),onPointerMove:te(e.onPointerMove,Vo(Y=>{const I=Y.target,V=K.current!==Y.clientX;if(Y.currentTarget.contains(I)&&V){const J=Y.clientX>K.current?"right":"left";P.current=J,K.current=Y.clientX}}))})))))))}),Lo="MenuItem",si="menu.itemSelect",gu=r.forwardRef((e,s)=>{const{disabled:t=!1,onSelect:o,...a}=e,n=r.useRef(null),i=un(Lo,e.__scopeMenu),l=rl(Lo,e.__scopeMenu),f=Ce(s,n),p=r.useRef(!1),d=()=>{const c=n.current;if(!t&&c){const b=new CustomEvent(si,{bubbles:!0,cancelable:!0});c.addEventListener(si,u=>o==null?void 0:o(u),{once:!0}),Ji(c,b),b.defaultPrevented?p.current=!1:i.onClose()}};return r.createElement(Cu,S({},a,{ref:f,disabled:t,onClick:te(e.onClick,d),onPointerDown:c=>{var b;(b=e.onPointerDown)===null||b===void 0||b.call(e,c),p.current=!0},onPointerUp:te(e.onPointerUp,c=>{var b;p.current||(b=c.currentTarget)===null||b===void 0||b.click()}),onKeyDown:te(e.onKeyDown,c=>{const b=l.searchRef.current!=="";t||b&&c.key===" "||ou.includes(c.key)&&(c.currentTarget.click(),c.preventDefault())})}))}),Cu=r.forwardRef((e,s)=>{const{__scopeMenu:t,disabled:o=!1,textValue:a,...n}=e,i=rl(Lo,t),l=al(t),f=r.useRef(null),p=Ce(s,f),[d,c]=r.useState(!1),[b,u]=r.useState("");return r.useEffect(()=>{const C=f.current;if(C){var _;u(((_=C.textContent)!==null&&_!==void 0?_:"").trim())}},[n.children]),r.createElement(Ao.ItemSlot,{scope:t,disabled:o,textValue:a!=null?a:b},r.createElement(Ur,S({asChild:!0},l,{focusable:!o}),r.createElement(Oe.div,S({role:"menuitem","data-highlighted":d?"":void 0,"aria-disabled":o||void 0,"data-disabled":o?"":void 0},n,{ref:p,onPointerMove:te(e.onPointerMove,Vo(C=>{o?i.onItemLeave(C):(i.onItemEnter(C),C.defaultPrevented||C.currentTarget.focus())})),onPointerLeave:te(e.onPointerLeave,Vo(C=>i.onItemLeave(C))),onFocus:te(e.onFocus,()=>c(!0)),onBlur:te(e.onBlur,()=>c(!1))}))))}),yu="MenuRadioGroup";Ss(yu,{value:void 0,onValueChange:()=>{}});const xu="MenuItemIndicator";Ss(xu,{checked:!1});const ku="MenuSub";Ss(ku);function wu(e){return e?"open":"closed"}function $u(e){const s=document.activeElement;for(const t of e)if(t===s||(t.focus(),document.activeElement!==s))return}function Eu(e,s){return e.map((t,o)=>e[(s+o)%e.length])}function Iu(e,s,t){const a=s.length>1&&Array.from(s).every(p=>p===s[0])?s[0]:s,n=t?e.indexOf(t):-1;let i=Eu(e,Math.max(n,0));a.length===1&&(i=i.filter(p=>p!==t));const f=i.find(p=>p.toLowerCase().startsWith(a.toLowerCase()));return f!==t?f:void 0}function Su(e,s){const{x:t,y:o}=e;let a=!1;for(let n=0,i=s.length-1;n<s.length;i=n++){const l=s[n].x,f=s[n].y,p=s[i].x,d=s[i].y;f>o!=d>o&&t<(p-l)*(o-f)/(d-f)+l&&(a=!a)}return a}function Ru(e,s){if(!s)return!1;const t={x:e.clientX,y:e.clientY};return Su(t,s)}function Vo(e){return s=>s.pointerType==="mouse"?e(s):void 0}const Pu=cu,Du=pu,Ou=_u,Tu=bu,Nu=gu,fl="DropdownMenu",[Mu,jv]=ze(fl,[nl]),it=nl(),[Au,cl]=Mu(fl),Lu=e=>{const{__scopeDropdownMenu:s,children:t,dir:o,open:a,defaultOpen:n,onOpenChange:i,modal:l=!0}=e,f=it(s),p=r.useRef(null),[d=!1,c]=es({prop:a,defaultProp:n,onChange:i});return r.createElement(Au,{scope:s,triggerId:os(),triggerRef:p,contentId:os(),open:d,onOpenChange:c,onOpenToggle:r.useCallback(()=>c(b=>!b),[c]),modal:l},r.createElement(Pu,S({},f,{open:d,onOpenChange:c,dir:o,modal:l}),t))},Vu="DropdownMenuTrigger",Hu=r.forwardRef((e,s)=>{const{__scopeDropdownMenu:t,disabled:o=!1,...a}=e,n=cl(Vu,t),i=it(t);return r.createElement(Du,S({asChild:!0},i),r.createElement(Oe.button,S({type:"button",id:n.triggerId,"aria-haspopup":"menu","aria-expanded":n.open,"aria-controls":n.open?n.contentId:void 0,"data-state":n.open?"open":"closed","data-disabled":o?"":void 0,disabled:o},a,{ref:Yo(s,n.triggerRef),onPointerDown:te(e.onPointerDown,l=>{!o&&l.button===0&&l.ctrlKey===!1&&(n.onOpenToggle(),n.open||l.preventDefault())}),onKeyDown:te(e.onKeyDown,l=>{o||(["Enter"," "].includes(l.key)&&n.onOpenToggle(),l.key==="ArrowDown"&&n.onOpenChange(!0),["Enter"," ","ArrowDown"].includes(l.key)&&l.preventDefault())})})))}),ju=e=>{const{__scopeDropdownMenu:s,...t}=e,o=it(s);return r.createElement(Ou,S({},o,t))},Fu="DropdownMenuContent",Bu=r.forwardRef((e,s)=>{const{__scopeDropdownMenu:t,...o}=e,a=cl(Fu,t),n=it(t),i=r.useRef(!1);return r.createElement(Tu,S({id:a.contentId,"aria-labelledby":a.triggerId},n,o,{ref:s,onCloseAutoFocus:te(e.onCloseAutoFocus,l=>{var f;i.current||(f=a.triggerRef.current)===null||f===void 0||f.focus(),i.current=!1,l.preventDefault()}),onInteractOutside:te(e.onInteractOutside,l=>{const f=l.detail.originalEvent,p=f.button===0&&f.ctrlKey===!0,d=f.button===2||p;(!a.modal||d)&&(i.current=!0)}),style:{...e.style,["--radix-dropdown-menu-content-transform-origin"]:"var(--radix-popper-transform-origin)"}}))}),zu=r.forwardRef((e,s)=>{const{__scopeDropdownMenu:t,...o}=e,a=it(t);return r.createElement(Nu,S({},a,o,{ref:s}))}),pl=Lu,dl=Hu,ul=ju,_l=Bu,ml=zu;var qu="_6vehm81",Wu="_6vehm82";const bl=({children:e,...s})=>v(ul,{children:v(_l,{asChild:!0,className:qu,"data-macaw-ui-component":"Dropdown.Content",...s,children:e})});bl.displayName="Dropdown.Content";const hl=({children:e})=>v(ml,{asChild:!0,className:Wu,"data-macaw-ui-component":"Dropdown.Item",children:e});hl.displayName="Dropdown.Item";const vl=({children:e,onOpenChange:s,open:t})=>v(pl,{open:t,onOpenChange:s,"data-macaw-ui-component":"Dropdown",children:e});vl.displayName="Dropdown";const gl=({children:e})=>v(dl,{asChild:!0,"data-macaw-ui-component":"Dropdown.Trigger",children:e});gl.displayName="Dropdown.Trigger";const Ku=Object.assign(vl,{Trigger:gl,Content:bl,Item:hl}),Cl="Dialog",[yl,Fv]=ze(Cl),[Uu,ds]=yl(Cl),Zu=e=>{const{__scopeDialog:s,children:t,open:o,defaultOpen:a,onOpenChange:n,modal:i=!0}=e,l=r.useRef(null),f=r.useRef(null),[p=!1,d]=es({prop:o,defaultProp:a,onChange:n});return r.createElement(Uu,{scope:s,triggerRef:l,contentRef:f,contentId:os(),titleId:os(),descriptionId:os(),open:p,onOpenChange:d,onOpenToggle:r.useCallback(()=>d(c=>!c),[d]),modal:i},t)},Yu="DialogTrigger",Gu=r.forwardRef((e,s)=>{const{__scopeDialog:t,...o}=e,a=ds(Yu,t),n=Ce(s,a.triggerRef);return r.createElement(Oe.button,S({type:"button","aria-haspopup":"dialog","aria-expanded":a.open,"aria-controls":a.contentId,"data-state":_n(a.open)},o,{ref:n,onClick:te(e.onClick,a.onOpenToggle)}))}),xl="DialogPortal",[Xu,kl]=yl(xl,{forceMount:void 0}),Ju=e=>{const{__scopeDialog:s,forceMount:t,children:o,container:a}=e,n=ds(xl,s);return r.createElement(Xu,{scope:s,forceMount:t},r.Children.map(o,i=>r.createElement(Ze,{present:t||n.open},r.createElement(zr,{asChild:!0,container:a},i))))},Ho="DialogOverlay",Qu=r.forwardRef((e,s)=>{const t=kl(Ho,e.__scopeDialog),{forceMount:o=t.forceMount,...a}=e,n=ds(Ho,e.__scopeDialog);return n.modal?r.createElement(Ze,{present:o||n.open},r.createElement(e_,S({},a,{ref:s}))):null}),e_=r.forwardRef((e,s)=>{const{__scopeDialog:t,...o}=e,a=ds(Ho,t);return r.createElement(pn,{as:_s,allowPinchZoom:!0,shards:[a.contentRef]},r.createElement(Oe.div,S({"data-state":_n(a.open)},o,{ref:s,style:{pointerEvents:"auto",...o.style}})))}),Gs="DialogContent",s_=r.forwardRef((e,s)=>{const t=kl(Gs,e.__scopeDialog),{forceMount:o=t.forceMount,...a}=e,n=ds(Gs,e.__scopeDialog);return r.createElement(Ze,{present:o||n.open},n.modal?r.createElement(t_,S({},a,{ref:s})):r.createElement(o_,S({},a,{ref:s})))}),t_=r.forwardRef((e,s)=>{const t=ds(Gs,e.__scopeDialog),o=r.useRef(null),a=Ce(s,t.contentRef,o);return r.useEffect(()=>{const n=o.current;if(n)return cn(n)},[]),r.createElement(wl,S({},e,{ref:a,trapFocus:t.open,disableOutsidePointerEvents:!0,onCloseAutoFocus:te(e.onCloseAutoFocus,n=>{var i;n.preventDefault(),(i=t.triggerRef.current)===null||i===void 0||i.focus()}),onPointerDownOutside:te(e.onPointerDownOutside,n=>{const i=n.detail.originalEvent,l=i.button===0&&i.ctrlKey===!0;(i.button===2||l)&&n.preventDefault()}),onFocusOutside:te(e.onFocusOutside,n=>n.preventDefault())}))}),o_=r.forwardRef((e,s)=>{const t=ds(Gs,e.__scopeDialog),o=r.useRef(!1);return r.createElement(wl,S({},e,{ref:s,trapFocus:!1,disableOutsidePointerEvents:!1,onCloseAutoFocus:a=>{var n;if((n=e.onCloseAutoFocus)===null||n===void 0||n.call(e,a),!a.defaultPrevented){var i;o.current||(i=t.triggerRef.current)===null||i===void 0||i.focus(),a.preventDefault()}o.current=!1},onInteractOutside:a=>{var n,i;(n=e.onInteractOutside)===null||n===void 0||n.call(e,a),a.defaultPrevented||(o.current=!0);const l=a.target;((i=t.triggerRef.current)===null||i===void 0?void 0:i.contains(l))&&a.preventDefault()}}))}),wl=r.forwardRef((e,s)=>{const{__scopeDialog:t,trapFocus:o,onOpenAutoFocus:a,onCloseAutoFocus:n,...i}=e,l=ds(Gs,t),f=r.useRef(null),p=Ce(s,f);return nn(),r.createElement(r.Fragment,null,r.createElement(gr,{asChild:!0,loop:!0,trapped:o,onMountAutoFocus:a,onUnmountAutoFocus:n},r.createElement(hr,S({role:"dialog",id:l.contentId,"aria-describedby":l.descriptionId,"aria-labelledby":l.titleId,"data-state":_n(l.open)},i,{ref:p,onDismiss:()=>l.onOpenChange(!1)}))),!1)}),n_="DialogClose",a_=r.forwardRef((e,s)=>{const{__scopeDialog:t,...o}=e,a=ds(n_,t);return r.createElement(Oe.button,S({type:"button"},o,{ref:s,onClick:te(e.onClick,()=>a.onOpenChange(!1))}))});function _n(e){return e?"open":"closed"}const i_=Zu,r_=Gu,l_=Ju,f_=Qu,c_=s_,p_=a_;var ti="_68ye811";const $l=({children:e,...s})=>ee(l_,{children:[v(f_,{asChild:!0,className:ti,children:v(Z,{backgroundColor:"highlightDim",position:"fixed",inset:0})}),v(c_,{asChild:!0,className:ti,children:ee(Z,{backgroundColor:"surfaceNeutralPlain",boxShadow:"modal",top:0,left:0,height:"100%",borderTopRightRadius:3,borderBottomRightRadius:3,position:"fixed",paddingTop:7,"data-macaw-ui-component":"Drawer.Content",...s,children:[e,v(p_,{asChild:!0,children:v(bs,{variant:"tertiary",icon:v(Ki,{}),size:"small",className:as({position:"absolute",top:1,right:1})})})]})})]});$l.displayName="Drawer.Content";const El=({children:e})=>v(i_,{"data-macaw-ui-component":"Drawer",children:e});El.displayName="Drawer";const Il=({children:e})=>v(r_,{asChild:!0,"data-macaw-ui-component":"Drawer.Trigger",children:e});Il.displayName="Drawer.Trigger";const d_=Object.assign(El,{Content:$l,Trigger:Il});var Sl=we({defaultClassName:"",variantClassNames:{size:{small:"_18fs8pspr _18fs8pss6",medium:"_18fs8pspr _18fs8pss6",large:"_18fs8pspu _18fs8pss9"}},defaultVariants:{},compoundVariants:[]}),mn=we({defaultClassName:"_9mn26x12 _18fs8pskr _18fs8psn6 _18fs8pspl _18fs8pss0 _18fs8ps1no _18fs8ps1nu _18fs8ps1nc _18fs8ps1ni _18fs8ps16u _18fs8ps2tg _18fs8ps1k9 _18fs8ps1mc _18fs8ps1oo _18fs8ps28s _18fs8ps296",variantClassNames:{size:{small:"_18fs8ps1kf _18fs8ps1mx",medium:"_18fs8ps1kc _18fs8ps1mi",large:"_18fs8ps1k9 _18fs8ps1mc"},error:{true:"_18fs8ps2ac"}},defaultVariants:{size:"medium"},compoundVariants:[]}),Zt=we({defaultClassName:"_18fs8psmx _18fs8pspc _18fs8ps1nr _18fs8ps1nx _18fs8ps1nf _18fs8ps1nl _18fs8ps1of _18fs8ps1ol _18fs8ps1o3 _18fs8ps1o9 _18fs8ps1gf _18fs8ps1fi _18fs8ps1i9 _18fs8ps1hc _18fs8ps2l _18fs8ps3 _18fs8ps290 _18fs8ps2us",variantClassNames:{size:{small:"_18fs8pspr _18fs8pss6",medium:"_18fs8pspr _18fs8pss6",large:"_18fs8pspu _18fs8pss9"},active:{true:"_9mn26xf"},typed:{true:"_9mn26xg"},disabled:{true:"_9mn26xh"},error:{true:"_9mn26xi"}},defaultVariants:{size:"medium"},compoundVariants:[[{typed:!0,active:!0,disabled:!1,error:!1},"_18fs8ps1of _18fs8ps1ol _18fs8ps1o3 _18fs8ps1o9 _18fs8ps270 _18fs8ps2os _18fs8ps2pi"],[{typed:!0,active:!1,disabled:!1,error:!1},"_18fs8ps2os _18fs8ps28c _18fs8ps265"],[{typed:!1,active:!0,error:!1},"_18fs8ps2os _18fs8ps28c"],[{typed:!1,active:!1,disabled:!1,error:!1},"_18fs8ps2gk _18fs8ps2ou _18fs8ps2p1 _18fs8ps28c"],[{disabled:!0},"_18fs8ps298 _18fs8ps2os _18fs8ps264"],[{error:!0,typed:!1},"_18fs8ps2hg _18fs8ps2hh _18fs8ps28c"],[{error:!0,typed:!0},"_18fs8ps28c"]]}),Yt=we({defaultClassName:"_9mn26xj _18fs8ps290",variantClassNames:{size:{small:"_18fs8ps1kf _18fs8ps1mi _18fs8ps24i _18fs8ps1q9",medium:"_18fs8ps1kc _18fs8ps1mf _18fs8ps24f _18fs8ps1q6",large:"_18fs8ps1k9 _18fs8ps1mc _18fs8ps24c _18fs8ps1q3"},disabled:{true:"_18fs8ps298"},typed:{true:"_9mn26xv"},error:{true:"_18fs8ps2ak"}},defaultVariants:{size:"medium"},compoundVariants:[]});const rt=({size:e,error:s,children:t})=>v(Z,{marginTop:3,className:Sl({size:e}),children:v(Ae,{variant:"caption",size:e,color:s?"textCriticalDefault":"textNeutralSubdued",children:t})}),u_=e=>{const s=/^[\d.,]*$|(Backspace|Tab|Delete|ArrowLeft|ArrowRight|ArrowDown|ArrowUp)/;return!e.key.match(s)&&e.preventDefault()},__=e=>["date","time"].includes(e!=null?e:""),m_=(e,s,t)=>{const[o,a]=r.useState(!1),n=__(s)?!0:Boolean(e||o);return{handlers:{onFocus:()=>a(!0),onBlur:()=>a(!1),onChange:p=>{t&&t(p)}},value:e,active:o,typed:n}},Rl=({children:e,id:s,typed:t,active:o,disabled:a,size:n,label:i,error:l,className:f,endAdornment:p})=>ee(Z,{as:"label",htmlFor:s,className:ue(Zt({typed:t,active:o,disabled:a,size:n,error:l}),f),alignItems:"center",gap:1,"data-macaw-ui-component":"Input",children:[ee(Z,{display:"flex",flexDirection:"column",width:"100%",children:[v(Z,{as:"span",className:ue(Yt({typed:t,size:n,disabled:a,error:l})),children:i}),e]}),p]});Rl.displayName="InputWrapper";const xs=r.forwardRef(({size:e,disabled:s=!1,className:t,value:o,label:a,id:n,type:i,error:l=!1,onChange:f,helperText:p,onBlur:d,onFocus:c,flex:b,flexBasis:u,flexGrow:C,flexShrink:_,width:x,endAdornment:y,...h},m)=>{const{handlers:g,value:w,active:D,typed:E}=m_(o,i,f);return ee(Z,{display:"flex",flexDirection:"column",flex:b,flexBasis:u,flexGrow:C,flexShrink:_,width:x,children:[v(Rl,{id:n,typed:E,active:D,disabled:s,size:e,label:a,error:l,className:t,endAdornment:y,children:v(Z,{id:n,as:"input",type:i,className:ue(mn({size:e,error:l})),disabled:s,value:w,ref:m,onBlur:$=>{g.onBlur(),d==null||d($)},onFocus:$=>{g.onFocus(),c==null||c($)},onChange:g.onChange,onKeyDown:$=>{i==="number"&&u_($)},role:"input",...h})}),p&&v(Z,{className:Sl({size:e}),children:v(Ae,{variant:"caption",size:e,color:l?"textCriticalDefault":"textNeutralSubdued",children:p})})]})});xs.displayName="Input";var b_="_18fs8ps2l",h_=we({defaultClassName:"_18fs8psmx _18fs8pspc _18fs8psrr _18fs8psu6 _18fs8ps1no _18fs8ps1nx _18fs8ps1nf _18fs8ps1nl _18fs8ps1of _18fs8ps1ol _18fs8ps1o3 _18fs8ps1o9 _18fs8ps1gi _18fs8ps1fl _18fs8ps1ic _18fs8ps1hf _18fs8ps28s _18fs8ps1kf _18fs8ps2fw _18fs8ps264 _18fs8ps2v0 _18fs8ps2tw",variantClassNames:{absolute:{true:"_18fs8ps2o _18fs8ps1qu _18fs8ps1vo",false:"_1mt8p4"}},defaultVariants:{},compoundVariants:[]}),v_="_1mt8p5",Pl=we({defaultClassName:"_18fs8psrr _18fs8psu6 _18fs8psku _18fs8psn9 _18fs8ps1gc _18fs8ps1ff _18fs8ps1i6 _18fs8ps1h9 _18fs8ps1oo _18fs8ps2u4 _18fs8ps1kf _18fs8ps24i _18fs8ps1mx _18fs8ps2fw _18fs8ps2p1",variantClassNames:{condition:{true:"_18fs8ps29w",false:"_18fs8ps28s"}},defaultVariants:{},compoundVariants:[]}),g_=we({defaultClassName:"_18fs8psrr _18fs8psu6 _18fs8psku _18fs8psn9 _18fs8ps1no _18fs8ps1nu _18fs8ps1nc _18fs8ps1ni _18fs8ps2fw _18fs8ps2p1 _18fs8ps1oo _18fs8ps2u4",variantClassNames:{variant:{operand:"_18fs8ps28s _18fs8ps1kf _18fs8ps24i",condition:"_18fs8ps29w _18fs8ps1jx _18fs8ps240"},opened:{true:"_18fs8ps2qk"}},defaultVariants:{},compoundVariants:[]}),C_="_18fs8ps1nr _18fs8ps1nx _18fs8ps1nf _18fs8ps1nl _18fs8ps1of _18fs8ps1ol _18fs8ps1o3 _18fs8ps1o9 _18fs8ps1gf _18fs8ps1fi _18fs8ps1i9 _18fs8ps1hc _18fs8ps20i _18fs8ps20u _18fs8ps3 _18fs8ps26c _18fs8ps2v0",y_=we({defaultClassName:"_18fs8psrr _18fs8psu6 _18fs8psku _18fs8psn9 _18fs8ps1no _18fs8ps1nu _18fs8ps1nc _18fs8ps1ni _18fs8ps1oo _18fs8ps1kf _18fs8ps2tg _18fs8ps28s _18fs8ps29q _1mt8pp",variantClassNames:{isNumber:{true:"_1mt8pq"}},defaultVariants:{},compoundVariants:[]}),x_=we({defaultClassName:"_18fs8pskr _18fs8psn6 _18fs8pspl _18fs8pss0 _18fs8ps1no _18fs8ps1nu _18fs8ps1nc _18fs8ps1ni _18fs8ps3 _18fs8ps19f _18fs8ps10 _18fs8ps2fw _18fs8ps2p1 _18fs8ps2qn",variantClassNames:{focused:{true:"_18fs8ps28s _18fs8ps293"}},defaultVariants:{},compoundVariants:[]}),k_="_18fs8ps1kf _18fs8psrr",oi="_18fs8ps3 _18fs8ps10 _18fs8ps28s _18fs8ps293";const Dl=({children:e})=>v(Z,{className:C_,children:e});Dl.displayName="Expression";const bn=r.forwardRef(({children:e,absolute:s=!1,...t},o)=>v(Z,{ref:o,...t,className:h_({absolute:s}),children:v(Z,{className:v_,__minWidth:"128px",__maxHeight:"150px",children:e})}));bn.displayName="DropdownContent";const hn=r.forwardRef(({children:e,onClick:s,condition:t=!1},o)=>v(ml,{className:Pl({condition:t}),onClick:s,ref:o,children:e}));hn.displayName="DropdownItem";const vn=({children:e,triggerText:s,variant:t})=>{const[o,a]=r.useState(!1);return ee(pl,{onOpenChange:i=>{a(i)},children:[s&&v(dl,{className:g_({variant:t,opened:o}),children:s}),v(ul,{children:v(_l,{align:"start",asChild:!0,children:v(bn,{children:e})})})]})};vn.displayName="Dropdown";const Ol=hn;Ol.displayName="OperantDropdownItem";const Tl=e=>v(vn,{...e,variant:"operand"});Tl.displayName="Expression.OperandDropdown";const w_=["a","button","div","form","h2","h3","img","input","label","li","nav","ol","p","span","svg","ul"],Qe=w_.reduce((e,s)=>{const t=r.forwardRef((o,a)=>{const{asChild:n,...i}=o,l=n?_s:s;return r.useEffect(()=>{window[Symbol.for("radix-ui")]=!0},[]),r.createElement(l,S({},i,{ref:a}))});return t.displayName=`Primitive.${s}`,{...e,[s]:t}},{});function $_(e,s){e&&et.flushSync(()=>e.dispatchEvent(s))}const gn=r.forwardRef((e,s)=>{var t;const{container:o=globalThis==null||(t=globalThis.document)===null||t===void 0?void 0:t.body,...a}=e;return o?Ni.default.createPortal(r.createElement(Qe.div,S({},a,{ref:s})),o):null}),js=gn,E_=["font-style","font-variant","font-weight","font-size","font-family"],I_=e=>{if(!e)return 0;const s=parseInt(e.getPropertyValue("padding-left"),10),t=parseInt(e.getPropertyValue("padding-right"),10);return s+t},S_=e=>E_.reduce((s,t)=>`${s} ${e.getPropertyValue(t)}`,""),R_=e=>{const s=r.useRef(void 0),o=document.createElement("canvas").getContext("2d");r.useEffect(()=>{!o||!e||!e.current||(s.current=window.getComputedStyle(e.current,null),o.font=S_(s.current))},[e,o]);const a=i=>o?o.measureText(i).width:0;return{measureText:a,measureTextWithPaddings:i=>a(i)+I_(s.current)}},lt=({children:e,focused:s=!0})=>v(Z,{as:"label",className:x_({focused:s}),children:e});lt.displayName="InputContainer";const Ls=({value:e,placeholder:s,defaultWidth:t=71,onChange:o,onCalculationChange:a,type:n="text",...i})=>{const l=r.useRef(),{measureText:f,measureTextWithPaddings:p}=R_(l);r.useEffect(()=>{if(!l.current)return;const u=p(e||s||""),C=u>t?u:t;l.current.style.width=`${C}px`},[e,s,t,p]);const d=(b,u)=>u?f(b.slice(0,u)):0,c=b=>{if(a){const{value:u,selectionStart:C}=b.target,_=b.target.getBoundingClientRect(),x=d(u,C);a({left:x,rect:_})}o&&o(b)};return v(Z,{as:"input",type:n,className:y_({isNumber:n==="number"}),ref:l,value:e,onChange:c,placeholder:s,...i})};Ls.displayName="AutosizeInput";const Nl=r.forwardRef(({children:e,...s},t)=>v(Z,{className:Pl(),ref:t,...s,children:e}));Nl.displayName="AutocompleteItem";const Ml=({children:e,open:s,value:t,onClickOutside:o,...a})=>{const n=x1(o),[i,l]=r.useState({x:0,y:0});return ee(Z,{className:b_,children:[v(lt,{children:v(Ls,{type:"text",value:t,onCalculationChange:({left:p,rect:d})=>{l({x:d.x+p,y:d.y+d.height+window.scrollY})},...a})}),s&&v(js,{asChild:!0,children:v(bn,{ref:n,__transform:`translate(${i.x}px, ${i.y}px)`,absolute:!0,children:e})})]})};Ml.displayName="Expression.OperandAutocomplete";const Al=r.forwardRef(({children:e,onClick:s},t)=>v(hn,{ref:t,onClick:s,condition:!0,children:e}));Al.displayName="ConditionItem";const Ll=({children:e,currentConditon:s})=>v(vn,{triggerText:s,variant:"condition",children:e});Ll.displayName="Expression.Condition";const Vl=e=>v(lt,{children:v(Ls,{type:"text",...e})});Vl.displayName="Expression.OperandText";const Dt=({children:e})=>v(Z,{className:k_,children:e});Dt.displayName="Sign";const Hl=({sign:e,...s})=>ee(lt,{focused:!0,children:[v(Dt,{children:e}),v(Ls,{type:"number",...s})]});Hl.displayName="Expression.OperandNumber";const jl=({from:e,to:s,onFromChange:t,onToChange:o,placeholderFrom:a,placeholderTo:n,sign:i})=>ee(lt,{focused:!1,children:[ee(Z,{className:oi,children:[v(Dt,{children:i}),v(Ls,{defaultWidth:45,type:"number",value:e,onChange:t,placeholder:a})]}),v(Z,{as:"span",children:"-"}),ee(Z,{className:oi,children:[v(Dt,{children:i}),v(Ls,{defaultWidth:45,type:"number",value:s,onChange:o,placeholder:n})]})]});jl.displayName="Expression.OperandRange";const P_=Object.assign(Dl,{OperandDropdown:Tl,OperantDropdownItem:Ol,OperandAutocomplete:Ml,AutocompleteItem:Nl,Condition:Ll,ConditionItem:Al,OperandText:Vl,OperandNumber:Hl,OperandRange:jl});function Fl(e){const s=r.useRef({value:e,previous:e});return r.useMemo(()=>(s.current.value!==e&&(s.current.previous=s.current.value,s.current.value=e),s.current.previous),[e])}const Bl="Checkbox",[D_,Bv]=ze(Bl),[O_,T_]=D_(Bl),N_=r.forwardRef((e,s)=>{const{__scopeCheckbox:t,name:o,checked:a,defaultChecked:n,required:i,disabled:l,value:f="on",onCheckedChange:p,...d}=e,[c,b]=r.useState(null),u=Ce(s,m=>b(m)),C=r.useRef(!1),_=c?Boolean(c.closest("form")):!0,[x=!1,y]=es({prop:a,defaultProp:n,onChange:p}),h=r.useRef(x);return r.useEffect(()=>{const m=c==null?void 0:c.form;if(m){const g=()=>y(h.current);return m.addEventListener("reset",g),()=>m.removeEventListener("reset",g)}},[c,y]),r.createElement(O_,{scope:t,state:x,disabled:l},r.createElement(Oe.button,S({type:"button",role:"checkbox","aria-checked":ws(x)?"mixed":x,"aria-required":i,"data-state":zl(x),"data-disabled":l?"":void 0,disabled:l,value:f},d,{ref:u,onKeyDown:te(e.onKeyDown,m=>{m.key==="Enter"&&m.preventDefault()}),onClick:te(e.onClick,m=>{y(g=>ws(g)?!0:!g),_&&(C.current=m.isPropagationStopped(),C.current||m.stopPropagation())})})),_&&r.createElement(L_,{control:c,bubbles:!C.current,name:o,value:f,checked:x,required:i,disabled:l,style:{transform:"translateX(-100%)"}}))}),M_="CheckboxIndicator",A_=r.forwardRef((e,s)=>{const{__scopeCheckbox:t,forceMount:o,...a}=e,n=T_(M_,t);return r.createElement(Ze,{present:o||ws(n.state)||n.state===!0},r.createElement(Oe.span,S({"data-state":zl(n.state),"data-disabled":n.disabled?"":void 0},a,{ref:s,style:{pointerEvents:"none",...e.style}})))}),L_=e=>{const{control:s,checked:t,bubbles:o=!0,...a}=e,n=r.useRef(null),i=Fl(t),l=qt(s);return r.useEffect(()=>{const f=n.current,p=window.HTMLInputElement.prototype,c=Object.getOwnPropertyDescriptor(p,"checked").set;if(i!==t&&c){const b=new Event("click",{bubbles:o});f.indeterminate=ws(t),c.call(f,ws(t)?!1:t),f.dispatchEvent(b)}},[i,t,o]),r.createElement("input",S({type:"checkbox","aria-hidden":!0,defaultChecked:ws(t)?!1:t},a,{tabIndex:-1,ref:n,style:{...e.style,...l,position:"absolute",pointerEvents:"none",opacity:0,margin:0}}))};function ws(e){return e==="indeterminate"}function zl(e){return ws(e)?"indeterminate":e?"checked":"unchecked"}const V_=N_,H_=A_,ql=r.forwardRef(({color:e},s)=>v("svg",{ref:s,viewBox:"0 0 8 8",width:"8",height:"8",className:as({color:e}),fill:"none",xmlns:"http://www.w3.org/2000/svg",children:v("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7.70711 1.25C8.09763 1.64052 8.09763 2.27369 7.70711 2.66421L3.20711 7.16421C2.81658 7.55474 2.18342 7.55474 1.79289 7.16421L0.292894 5.66421C-0.0976308 5.27369 -0.0976306 4.64052 0.292894 4.25C0.683418 3.85947 1.31658 3.85948 1.70711 4.25L2.5 5.04289L6.29289 1.25C6.68342 0.859475 7.31658 0.859475 7.70711 1.25Z",fill:"currentColor"})}));ql.displayName="CheckedIcon";const Wl=r.forwardRef(({color:e},s)=>v("svg",{viewBox:"0 0 8 2",width:"8",height:"2",className:as({color:e}),fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:s,children:v("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M0 1C0 0.447715 0.447715 0 1 0H7C7.55228 0 8 0.447715 8 1C8 1.55228 7.55228 2 7 2H1C0.447715 2 0 1.55228 0 1Z",fill:"currentColor"})}));Wl.displayName="IndeterminateIcon";var j_="_18fs8pskr _18fs8psn6 _18fs8pspl _18fs8pss0 _18fs8ps1nr _18fs8ps1nx _18fs8ps1nf _18fs8ps1nl _18fs8ps1of _18fs8ps1ol _18fs8ps1o3 _18fs8ps1o9 _18fs8ps1g9 _18fs8ps1fc _18fs8ps1i3 _18fs8ps1h6 _18fs8ps14o _18fs8ps179 _18fs8ps3 _18fs8ps1l _18fs8ps10 _18fs8ps2bw _18fs8ps2u4 _18fs8ps26",F_="_9gb9up2",B_="_9gb9up3";const Kl=r.forwardRef(({error:e=!1,checked:s,defaultChecked:t,onCheckedChange:o,required:a,name:n,value:i,disabled:l,children:f,...p},d)=>{const c=l?"iconNeutralSubdued":"iconNeutralContrasted";return ee(Z,{as:"label",display:"flex",alignItems:"center",gap:1.5,position:"relative",cursor:l?"not-allowed":"pointer",...p,"data-macaw-ui-component":"Checkbox",children:[v(V_,{ref:d,className:ue(j_,e?B_:F_),checked:s,onCheckedChange:o,disabled:l,defaultChecked:t,required:a,name:n,value:i,children:v(H_,{asChild:!0,children:s==="indeterminate"?v(Wl,{color:c}):v(ql,{color:c})})}),f]})});Kl.displayName="Checkbox";const Ul="Radio",[z_,Zl]=ze(Ul),[q_,W_]=z_(Ul),K_=r.forwardRef((e,s)=>{const{__scopeRadio:t,name:o,checked:a=!1,required:n,disabled:i,value:l="on",onCheck:f,...p}=e,[d,c]=r.useState(null),b=Ce(s,_=>c(_)),u=r.useRef(!1),C=d?Boolean(d.closest("form")):!0;return r.createElement(q_,{scope:t,checked:a,disabled:i},r.createElement(Oe.button,S({type:"button",role:"radio","aria-checked":a,"data-state":Yl(a),"data-disabled":i?"":void 0,disabled:i,value:l},p,{ref:b,onClick:te(e.onClick,_=>{a||f==null||f(),C&&(u.current=_.isPropagationStopped(),u.current||_.stopPropagation())})})),C&&r.createElement(Y_,{control:d,bubbles:!u.current,name:o,value:l,checked:a,required:n,disabled:i,style:{transform:"translateX(-100%)"}}))}),U_="RadioIndicator",Z_=r.forwardRef((e,s)=>{const{__scopeRadio:t,forceMount:o,...a}=e,n=W_(U_,t);return r.createElement(Ze,{present:o||n.checked},r.createElement(Oe.span,S({"data-state":Yl(n.checked),"data-disabled":n.disabled?"":void 0},a,{ref:s})))}),Y_=e=>{const{control:s,checked:t,bubbles:o=!0,...a}=e,n=r.useRef(null),i=Fl(t),l=qt(s);return r.useEffect(()=>{const f=n.current,p=window.HTMLInputElement.prototype,c=Object.getOwnPropertyDescriptor(p,"checked").set;if(i!==t&&c){const b=new Event("click",{bubbles:o});c.call(f,t),f.dispatchEvent(b)}},[i,t,o]),r.createElement("input",S({type:"radio","aria-hidden":!0,defaultChecked:t},a,{tabIndex:-1,ref:n,style:{...e.style,...l,position:"absolute",pointerEvents:"none",opacity:0,margin:0}}))};function Yl(e){return e?"checked":"unchecked"}const G_=["ArrowUp","ArrowDown","ArrowLeft","ArrowRight"],Gl="RadioGroup",[X_,zv]=ze(Gl,[Wt,Zl]),Xl=Wt(),Jl=Zl(),[J_,Q_]=X_(Gl),em=r.forwardRef((e,s)=>{const{__scopeRadioGroup:t,name:o,defaultValue:a,value:n,required:i=!1,disabled:l=!1,orientation:f,dir:p,loop:d=!0,onValueChange:c,...b}=e,u=Xl(t),C=on(p),[_,x]=es({prop:n,defaultProp:a,onChange:c});return r.createElement(J_,{scope:t,name:o,required:i,disabled:l,value:_,onValueChange:x},r.createElement(Kr,S({asChild:!0},u,{orientation:f,dir:C,loop:d}),r.createElement(Oe.div,S({role:"radiogroup","aria-required":i,"aria-orientation":f,"data-disabled":l?"":void 0,dir:C},b,{ref:s}))))}),sm="RadioGroupItem",tm=r.forwardRef((e,s)=>{const{__scopeRadioGroup:t,disabled:o,...a}=e,n=Q_(sm,t),i=n.disabled||o,l=Xl(t),f=Jl(t),p=r.useRef(null),d=Ce(s,p),c=n.value===a.value,b=r.useRef(!1);return r.useEffect(()=>{const u=_=>{G_.includes(_.key)&&(b.current=!0)},C=()=>b.current=!1;return document.addEventListener("keydown",u),document.addEventListener("keyup",C),()=>{document.removeEventListener("keydown",u),document.removeEventListener("keyup",C)}},[]),r.createElement(Ur,S({asChild:!0},l,{focusable:!i,active:c}),r.createElement(K_,S({disabled:i,required:n.required,checked:c},f,a,{name:n.name,ref:d,onCheck:()=>n.onValueChange(a.value),onKeyDown:te(u=>{u.key==="Enter"&&u.preventDefault()}),onFocus:te(a.onFocus,()=>{var u;b.current&&((u=p.current)===null||u===void 0||u.click())})})))}),om=r.forwardRef((e,s)=>{const{__scopeRadioGroup:t,...o}=e,a=Jl(t);return r.createElement(Z_,S({},a,o,{ref:s}))}),Ql=em,ef=tm,nm=om;var am="_18fs8pskr _18fs8psn6 _18fs8pspl _18fs8pss0 _18fs8psuf _18fs8pswx _18fs8pszf _18fs8ps11x _18fs8ps1no _18fs8ps1nu _18fs8ps1nc _18fs8ps1ni",im=we({defaultClassName:"_18fs8pskr _18fs8psn6 _18fs8pspl _18fs8pss0 _18fs8psuf _18fs8pswx _18fs8pszf _18fs8ps11x _18fs8ps290",variantClassNames:{size:{small:"_18fs8ps1kx _18fs8ps1n0 _18fs8ps250 _18fs8ps1qr",medium:"_18fs8ps1ku _18fs8ps1mx _18fs8ps24x _18fs8ps1qo",large:"_18fs8ps1kr _18fs8ps1mu _18fs8ps24u _18fs8ps1ql"},disabled:{true:"_18fs8ps298"},error:{true:"_18fs8ps2ak"}},defaultVariants:{size:"medium"},compoundVariants:[]});const sf=r.forwardRef(({children:e,className:s,value:t,label:o,onValueChange:a,size:n,disabled:i=!1,error:l=!1,...f},p)=>v(Ql,{asChild:!0,value:t,onValueChange:a,children:ee(Z,{...f,className:ue(am,s),ref:p,as:"fieldset","data-macaw-ui-component":"RadioGroup",children:[o&&v("legend",{className:ue(im({disabled:i,error:l,size:n}),s),children:o}),e]})}));sf.displayName="RadioGroup";var rm=we({defaultClassName:"_18fs8ps1sx _18fs8ps1vc _18fs8ps1xr _18fs8ps206 _18fs8ps2o _18fs8psf _18fs8ps21u",variantClassNames:{disabled:{true:"_18fs8ps2bo",false:"_18fs8ps2bw"}},defaultVariants:{disabled:!1},compoundVariants:[]}),lm=we({defaultClassName:"_1ru9wzg7 _18fs8pskr _18fs8psn6 _18fs8pspl _18fs8pss0 _18fs8ps1nr _18fs8ps1nx _18fs8ps1nf _18fs8ps1nl _18fs8ps1of _18fs8ps1ol _18fs8ps1o3 _18fs8ps1o9 _18fs8ps1h3 _18fs8ps1g6 _18fs8ps1ix _18fs8ps1i0 _18fs8ps2l _18fs8ps2v0 _18fs8ps25o _18fs8ps2u4 _18fs8ps14o _18fs8ps179 _18fs8ps2lg",variantClassNames:{error:{true:"_1ru9wzg8"},disabled:{true:"_1ru9wzg9"}},defaultVariants:{error:!1,disabled:!1},compoundVariants:[]});const tf=r.forwardRef(({value:e,id:s,disabled:t,children:o,className:a,error:n,...i},l)=>ee(Z,{display:"flex",alignItems:"center",gap:1.5,position:"relative",...i,className:a,ref:l,"data-macaw-ui-component":"RadioGroup.Item",children:[v(ef,{className:lm({error:n,disabled:t}),value:e,id:s,disabled:t,children:v(nm,{className:rm({disabled:t}),asChild:!0,children:v("svg",{xmlns:"http://www.w3.org/2000/svg",width:"6",height:"6",fill:"currentColor",children:v("circle",{cx:"3",cy:"3",r:"3",fill:"currentColor"})})})}),v(Z,{as:"label",htmlFor:s,cursor:t?"not-allowed":"pointer",children:o})]}));tf.displayName="RadioGroup.Item";const fm=Object.assign(sf,{Item:tf});var cm=we({defaultClassName:"_18fs8pskr _18fs8psn6 _18fs8pspl _18fs8pss0 _18fs8ps1no _18fs8ps1nu _18fs8ps1nc _18fs8ps1ni _18fs8ps16u _18fs8ps2tg _18fs8ps1oo _18fs8ps28s _18fs8ps296 _18fs8ps297",variantClassNames:{},defaultVariants:{},compoundVariants:[]}),pm=we({defaultClassName:"_18fs8ps1gf _18fs8ps1fi _18fs8ps1i9 _18fs8ps1hc _18fs8ps2l _18fs8ps3 _18fs8ps10 _18fs8ps28s _18fs8ps16u _18fs8ps2wc _18fs8ps2os _18fs8ps2ph _18fs8ps2qn",variantClassNames:{size:{small:"_18fs8pspr _18fs8pss6 _18fs8psmx _18fs8pspc",medium:"_18fs8pspr _18fs8pss6 _18fs8pskx _18fs8psnc",large:"_18fs8pspu _18fs8pss9 _18fs8psl0 _18fs8psnf"}},defaultVariants:{},compoundVariants:[]}),dm=we({defaultClassName:"_18fs8ps290 _18fs8ps123",variantClassNames:{},defaultVariants:{},compoundVariants:[]});const of=r.forwardRef(({id:e,className:s,size:t,...o},a)=>ee(Z,{id:e,className:ue(pm({size:t}),s),"data-macaw-ui-component":"SearchInput",children:[v(Zi,{size:"medium",className:dm()}),v(Z,{as:"input",className:cm(),ref:a,type:"text",...o})]}));of.displayName="SearchInput";var um=we({defaultClassName:"_18fs8pskr _18fs8psn6 _18fs8pspl _18fs8pss0 _18fs8ps10 _18fs8ps1r _18fs8ps1nr _18fs8ps1nx _18fs8ps1nf _18fs8ps1nl _18fs8ps1of _18fs8ps1ol _18fs8ps1o3 _18fs8ps1o9 _18fs8ps1oo _18fs8ps3 _18fs8ps2u4 _18fs8ps2ui _18fs8ps28c _18fs8ps26u _18fs8ps26x _18fs8ps2b8 _18fs8ps2bu",variantClassNames:{variant:{contained:"_18fs8ps2gk _18fs8ps2gd _18fs8ps2go _18fs8ps2gp _18fs8ps2pu",text:"_18fs8ps2fw _18fs8ps2px _18fs8ps2g0 _18fs8ps2g1 _18fs8ps2pu"},size:{small:"_18fs8pspr _18fs8pss6 _18fs8psku _18fs8psn9 _18fs8ps1ko _18fs8ps1mx _18fs8ps24f _18fs8ps1qi _18fs8ps1gc _18fs8ps1ff _18fs8ps1i6 _18fs8ps1h9 _18fs8psdr",medium:"_18fs8pspr _18fs8pss6 _18fs8psmx _18fs8pspc _18fs8ps1kl _18fs8ps1mo _18fs8ps24f _18fs8ps1qf _18fs8ps1gf _18fs8ps1fi _18fs8ps1i9 _18fs8ps1hc _18fs8ps17o _18fs8psdl",large:"_18fs8pspu _18fs8pss9 _18fs8pskx _18fs8psnc _18fs8ps1ki _18fs8ps1ml _18fs8ps24f _18fs8ps1qc _18fs8ps1gf _18fs8ps1fi _18fs8ps1i9 _18fs8ps1hc _18fs8ps17u _18fs8psdo"}},defaultVariants:{size:"medium"},compoundVariants:[]});const nf=r.forwardRef(({children:e,size:s,variant:t="contained",disabled:o,className:a,...n},i)=>ee(Z,{as:"button",className:ue(um({size:s,variant:t}),a),disabled:o,ref:i,"data-macaw-ui-component":"DropdownButton",...n,children:[e,v(st,{size:"small",className:as({color:"textNeutralSubdued"})})]}));nf.displayName="DropdownButton";var _m=we({defaultClassName:"edj57v3 _18fs8psku _18fs8psn9 _18fs8pspo _18fs8pss3 _18fs8ps1gc _18fs8ps1ff _18fs8ps1i6 _18fs8ps1h9 _18fs8ps19f _18fs8ps2u4",variantClassNames:{},defaultVariants:{},compoundVariants:[]}),mm=we({defaultClassName:"_18fs8psmu _18fs8psp9 _18fs8psro _18fs8psu3 _18fs8ps1gf _18fs8ps1fi _18fs8ps1i9 _18fs8ps1hc _18fs8ps3 _18fs8psfl _18fs8ps2gc _18fs8ps264 _18fs8ps17o",variantClassNames:{},defaultVariants:{},compoundVariants:[]});const af=r.forwardRef(({children:e,className:s,defaultValue:t,onValueChange:o,...a},n)=>v(Ql,{asChild:!0,defaultValue:t,onValueChange:o,children:v(Z,{className:ue(mm(),s),ref:n,...a,"data-macaw-ui-component":"Switch",children:e})}));af.displayName="Switch";const rf=({value:e,id:s,disabled:t=!1,children:o,...a})=>v(ef,{value:e,id:s,disabled:t,className:_m(),...a,children:o});rf.displayName="Switch.Item";const bm=Object.assign(af,{Item:rf}),lf=r.forwardRef(({className:e,...s},t)=>v(Z,{ref:t,as:"hr",className:e,backgroundColor:"surfaceNeutralDepressed",borderWidth:0,width:"100%",height:"px","data-macaw-ui-component":"Divider",...s}));lf.displayName="Divider";const hm=r.forwardRef((e,s)=>{const{pressed:t,defaultPressed:o=!1,onPressedChange:a,...n}=e,[i=!1,l]=es({prop:t,onChange:a,defaultProp:o});return r.createElement(Qe.button,S({type:"button","aria-pressed":i,"data-state":i?"on":"off","data-disabled":e.disabled?"":void 0},n,{ref:s,onClick:te(e.onClick,()=>{e.disabled||l(!i)})}))}),vm=hm;var gm=we({defaultClassName:"agkfzb1 _18fs8psmr _18fs8psp6 _18fs8psrl _18fs8psu0 _18fs8ps1nr _18fs8ps1nx _18fs8ps1nf _18fs8ps1nl _18fs8ps1gx _18fs8ps1g0 _18fs8ps1ir _18fs8ps1hu _18fs8ps3 _18fs8ps10 _18fs8ps2l _18fs8ps1oo _18fs8ps2u4",variantClassNames:{},defaultVariants:{},compoundVariants:[]});const ff=r.forwardRef(({disabled:e=!1,pressed:s,onPressedChange:t,children:o,...a},n)=>ee(Z,{as:"label",display:"flex",alignItems:"center",gap:1.5,cursor:e?"not-allowed":"pointer","data-macaw-ui-component":"Toggle",children:[v(vm,{ref:n,className:gm(),pressed:s,onPressedChange:t,disabled:e,...a}),o]}));ff.displayName="Toggle";const cf=r.forwardRef(({children:e,defaultValue:s,value:t,onValueChange:o,...a},n)=>v(lr,{type:"single",collapsible:!0,defaultValue:s,value:t,onValueChange:o,asChild:!0,children:v(Z,{...a,ref:n,"data-macaw-ui-component":"Accordion",children:e})}));cf.displayName="Accordion";var Cm="_1ebdcwj4",ym="_1ebdcwj1",xm="_1ebdcwj0";const pf=({children:e,value:s,...t})=>v(fr,{value:s,className:xm,asChild:!0,children:v(Z,{...t,"data-macaw-ui-component":"Accordion.Item",children:e})});pf.displayName="Accordion.Item";const df=({children:e,disabled:s,...t})=>v(Qc,{asChild:!0,children:v(ep,{asChild:!0,onClick:o=>{s&&o.preventDefault()},children:v(Z,{display:"flex",justifyContent:"space-between",gap:2,alignItems:"center",cursor:s?"not-allowed":"pointer",disabled:s,...t,"data-macaw-ui-component":"Accordion.Trigger",children:e})})});df.displayName="Accordion.Trigger";const uf=({children:e,...s})=>v(sp,{asChild:!0,className:Cm,children:v(Z,{...s,"data-macaw-ui-component":"Accordion.Content",children:e})});uf.displayName="Accordion.Content";const _f=({dataTestId:e,disabled:s})=>v(bs,{icon:v(Zo,{className:ym}),variant:"secondary",type:"button","data-test-id":e,disabled:s,"data-macaw-ui-component":"Accordion.TriggerButton"});_f.displayName="Accordion.TriggerButton";const km=Object.assign(cf,{Item:pf,Trigger:df,Content:uf,TriggerButton:_f}),jo="dismissableLayer.update",wm="dismissableLayer.pointerDownOutside",$m="dismissableLayer.focusOutside";let ni;const Em=r.createContext({layers:new Set,layersWithOutsidePointerEventsDisabled:new Set,branches:new Set}),mf=r.forwardRef((e,s)=>{var t;const{disableOutsidePointerEvents:o=!1,onEscapeKeyDown:a,onPointerDownOutside:n,onFocusOutside:i,onInteractOutside:l,onDismiss:f,...p}=e,d=r.useContext(Em),[c,b]=r.useState(null),u=(t=c==null?void 0:c.ownerDocument)!==null&&t!==void 0?t:globalThis==null?void 0:globalThis.document,[,C]=r.useState({}),_=Ce(s,$=>b($)),x=Array.from(d.layers),[y]=[...d.layersWithOutsidePointerEventsDisabled].slice(-1),h=x.indexOf(y),m=c?x.indexOf(c):-1,g=d.layersWithOutsidePointerEventsDisabled.size>0,w=m>=h,D=Im($=>{const R=$.target,H=[...d.branches].some(O=>O.contains(R));!w||H||(n==null||n($),l==null||l($),$.defaultPrevented||f==null||f())},u),E=Sm($=>{const R=$.target;[...d.branches].some(O=>O.contains(R))||(i==null||i($),l==null||l($),$.defaultPrevented||f==null||f())},u);return br($=>{m===d.layers.size-1&&(a==null||a($),!$.defaultPrevented&&f&&($.preventDefault(),f()))},u),r.useEffect(()=>{if(!!c)return o&&(d.layersWithOutsidePointerEventsDisabled.size===0&&(ni=u.body.style.pointerEvents,u.body.style.pointerEvents="none"),d.layersWithOutsidePointerEventsDisabled.add(c)),d.layers.add(c),ai(),()=>{o&&d.layersWithOutsidePointerEventsDisabled.size===1&&(u.body.style.pointerEvents=ni)}},[c,u,o,d]),r.useEffect(()=>()=>{!c||(d.layers.delete(c),d.layersWithOutsidePointerEventsDisabled.delete(c),ai())},[c,d]),r.useEffect(()=>{const $=()=>C({});return document.addEventListener(jo,$),()=>document.removeEventListener(jo,$)},[]),r.createElement(Qe.div,S({},p,{ref:_,style:{pointerEvents:g?w?"auto":"none":void 0,...e.style},onFocusCapture:te(e.onFocusCapture,E.onFocusCapture),onBlurCapture:te(e.onBlurCapture,E.onBlurCapture),onPointerDownCapture:te(e.onPointerDownCapture,D.onPointerDownCapture)}))});function Im(e,s=globalThis==null?void 0:globalThis.document){const t=Fe(e),o=r.useRef(!1),a=r.useRef(()=>{});return r.useEffect(()=>{const n=l=>{if(l.target&&!o.current){let p=function(){bf(wm,t,f,{discrete:!0})};const f={originalEvent:l};l.pointerType==="touch"?(s.removeEventListener("click",a.current),a.current=p,s.addEventListener("click",a.current,{once:!0})):p()}o.current=!1},i=window.setTimeout(()=>{s.addEventListener("pointerdown",n)},0);return()=>{window.clearTimeout(i),s.removeEventListener("pointerdown",n),s.removeEventListener("click",a.current)}},[s,t]),{onPointerDownCapture:()=>o.current=!0}}function Sm(e,s=globalThis==null?void 0:globalThis.document){const t=Fe(e),o=r.useRef(!1);return r.useEffect(()=>{const a=n=>{n.target&&!o.current&&bf($m,t,{originalEvent:n},{discrete:!1})};return s.addEventListener("focusin",a),()=>s.removeEventListener("focusin",a)},[s,t]),{onFocusCapture:()=>o.current=!0,onBlurCapture:()=>o.current=!1}}function ai(){const e=new CustomEvent(jo);document.dispatchEvent(e)}function bf(e,s,t,{discrete:o}){const a=t.originalEvent.target,n=new CustomEvent(e,{bubbles:!1,cancelable:!0,detail:t});s&&a.addEventListener(e,s,{once:!0}),o?$_(a,n):a.dispatchEvent(n)}const ho="focusScope.autoFocusOnMount",vo="focusScope.autoFocusOnUnmount",ii={bubbles:!1,cancelable:!0},Rm=r.forwardRef((e,s)=>{const{loop:t=!1,trapped:o=!1,onMountAutoFocus:a,onUnmountAutoFocus:n,...i}=e,[l,f]=r.useState(null),p=Fe(a),d=Fe(n),c=r.useRef(null),b=Ce(s,_=>f(_)),u=r.useRef({paused:!1,pause(){this.paused=!0},resume(){this.paused=!1}}).current;r.useEffect(()=>{if(o){let _=function(y){if(u.paused||!l)return;const h=y.target;l.contains(h)?c.current=h:ys(c.current,{select:!0})},x=function(y){u.paused||!l||l.contains(y.relatedTarget)||ys(c.current,{select:!0})};return document.addEventListener("focusin",_),document.addEventListener("focusout",x),()=>{document.removeEventListener("focusin",_),document.removeEventListener("focusout",x)}}},[o,l,u.paused]),r.useEffect(()=>{if(l){li.add(u);const _=document.activeElement;if(!l.contains(_)){const y=new CustomEvent(ho,ii);l.addEventListener(ho,p),l.dispatchEvent(y),y.defaultPrevented||(Pm(Mm(hf(l)),{select:!0}),document.activeElement===_&&ys(l))}return()=>{l.removeEventListener(ho,p),setTimeout(()=>{const y=new CustomEvent(vo,ii);l.addEventListener(vo,d),l.dispatchEvent(y),y.defaultPrevented||ys(_!=null?_:document.body,{select:!0}),l.removeEventListener(vo,d),li.remove(u)},0)}}},[l,p,d,u]);const C=r.useCallback(_=>{if(!t&&!o||u.paused)return;const x=_.key==="Tab"&&!_.altKey&&!_.ctrlKey&&!_.metaKey,y=document.activeElement;if(x&&y){const h=_.currentTarget,[m,g]=Dm(h);m&&g?!_.shiftKey&&y===g?(_.preventDefault(),t&&ys(m,{select:!0})):_.shiftKey&&y===m&&(_.preventDefault(),t&&ys(g,{select:!0})):y===h&&_.preventDefault()}},[t,o,u.paused]);return r.createElement(Qe.div,S({tabIndex:-1},i,{ref:b,onKeyDown:C}))});function Pm(e,{select:s=!1}={}){const t=document.activeElement;for(const o of e)if(ys(o,{select:s}),document.activeElement!==t)return}function Dm(e){const s=hf(e),t=ri(s,e),o=ri(s.reverse(),e);return[t,o]}function hf(e){const s=[],t=document.createTreeWalker(e,NodeFilter.SHOW_ELEMENT,{acceptNode:o=>{const a=o.tagName==="INPUT"&&o.type==="hidden";return o.disabled||o.hidden||a?NodeFilter.FILTER_SKIP:o.tabIndex>=0?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP}});for(;t.nextNode();)s.push(t.currentNode);return s}function ri(e,s){for(const t of e)if(!Om(t,{upTo:s}))return t}function Om(e,{upTo:s}){if(getComputedStyle(e).visibility==="hidden")return!0;for(;e;){if(s!==void 0&&e===s)return!1;if(getComputedStyle(e).display==="none")return!0;e=e.parentElement}return!1}function Tm(e){return e instanceof HTMLInputElement&&"select"in e}function ys(e,{select:s=!1}={}){if(e&&e.focus){const t=document.activeElement;e.focus({preventScroll:!0}),e!==t&&Tm(e)&&s&&e.select()}}const li=Nm();function Nm(){let e=[];return{add(s){const t=e[0];s!==t&&(t==null||t.pause()),e=fi(e,s),e.unshift(s)},remove(s){var t;e=fi(e,s),(t=e[0])===null||t===void 0||t.resume()}}}function fi(e,s){const t=[...e],o=t.indexOf(s);return o!==-1&&t.splice(o,1),t}function Mm(e){return e.filter(s=>s.tagName!=="A")}const Am=r.forwardRef((e,s)=>{const{children:t,width:o=10,height:a=5,...n}=e;return r.createElement(Qe.svg,S({},n,{ref:s,width:o,height:a,viewBox:"0 0 30 10",preserveAspectRatio:"none"}),e.asChild?t:r.createElement("polygon",{points:"0,0 30,0 15,10"}))}),Lm=Am,vf="Popper",[Cn,Gt]=ze(vf),[Vm,gf]=Cn(vf),Hm=e=>{const{__scopePopper:s,children:t}=e,[o,a]=r.useState(null);return r.createElement(Vm,{scope:s,anchor:o,onAnchorChange:a},t)},jm="PopperAnchor",Fm=r.forwardRef((e,s)=>{const{__scopePopper:t,virtualRef:o,...a}=e,n=gf(jm,t),i=r.useRef(null),l=Ce(s,i);return r.useEffect(()=>{n.onAnchorChange((o==null?void 0:o.current)||i.current)}),o?null:r.createElement(Qe.div,S({},a,{ref:l}))}),Ot="PopperContent",[Bm,zm]=Cn(Ot),[qm,Wm]=Cn(Ot,{hasParent:!1,positionUpdateFns:new Set}),Km=r.forwardRef((e,s)=>{var t,o,a,n,i,l,f,p;const{__scopePopper:d,side:c="bottom",sideOffset:b=0,align:u="center",alignOffset:C=0,arrowPadding:_=0,collisionBoundary:x=[],collisionPadding:y=0,sticky:h="partial",hideWhenDetached:m=!1,avoidCollisions:g=!0,onPlaced:w,...D}=e,E=gf(Ot,d),[$,R]=r.useState(null),H=Ce(s,Ee=>R(Ee)),[O,W]=r.useState(null),P=qt(O),K=(t=P==null?void 0:P.width)!==null&&t!==void 0?t:0,G=(o=P==null?void 0:P.height)!==null&&o!==void 0?o:0,ne=c+(u!=="center"?"-"+u:""),oe=typeof y=="number"?y:{top:0,right:0,bottom:0,left:0,...y},se=Array.isArray(x)?x:[x],Y=se.length>0,I={padding:oe,boundary:se.filter(Xm),altBoundary:Y},{reference:V,floating:J,strategy:Q,x:j,y:U,placement:F,middlewareData:T,update:M}=Lr({strategy:"fixed",placement:ne,whileElementsMounted:Ar,middleware:[Jm(),wr({mainAxis:b+G,alignmentAxis:C}),g?Er({mainAxis:!0,crossAxis:!1,limiter:h==="partial"?Ir():void 0,...I}):void 0,O?Vr({element:O,padding:_}):void 0,g?xr({...I}):void 0,Sr({...I,apply:({elements:Ee,availableWidth:Se,availableHeight:Le})=>{Ee.floating.style.setProperty("--radix-popper-available-width",`${Se}px`),Ee.floating.style.setProperty("--radix-popper-available-height",`${Le}px`)}}),Qm({arrowWidth:K,arrowHeight:G}),m?kr({strategy:"referenceHidden"}):void 0].filter(Gm)});We(()=>{V(E.anchor)},[V,E.anchor]);const A=j!==null&&U!==null,[B,q]=Cf(F),L=Fe(w);We(()=>{A&&(L==null||L())},[A,L]);const le=(a=T.arrow)===null||a===void 0?void 0:a.x,ce=(n=T.arrow)===null||n===void 0?void 0:n.y,ye=((i=T.arrow)===null||i===void 0?void 0:i.centerOffset)!==0,[Re,Ie]=r.useState();We(()=>{$&&Ie(window.getComputedStyle($).zIndex)},[$]);const{hasParent:Te,positionUpdateFns:_e}=Wm(Ot,d),$e=!Te;r.useLayoutEffect(()=>{if(!$e)return _e.add(M),()=>{_e.delete(M)}},[$e,_e,M]),We(()=>{$e&&A&&Array.from(_e).reverse().forEach(Ee=>requestAnimationFrame(Ee))},[$e,A,_e]);const Pe={"data-side":B,"data-align":q,...D,ref:H,style:{...D.style,animation:A?void 0:"none",opacity:(l=T.hide)!==null&&l!==void 0&&l.referenceHidden?0:void 0}};return r.createElement("div",{ref:J,"data-radix-popper-content-wrapper":"",style:{position:Q,left:0,top:0,transform:A?`translate3d(${Math.round(j)}px, ${Math.round(U)}px, 0)`:"translate3d(0, -200%, 0)",minWidth:"max-content",zIndex:Re,["--radix-popper-transform-origin"]:[(f=T.transformOrigin)===null||f===void 0?void 0:f.x,(p=T.transformOrigin)===null||p===void 0?void 0:p.y].join(" ")},dir:e.dir},r.createElement(Bm,{scope:d,placedSide:B,onArrowChange:W,arrowX:le,arrowY:ce,shouldHideArrow:ye},$e?r.createElement(qm,{scope:d,hasParent:!0,positionUpdateFns:_e},r.createElement(Qe.div,Pe)):r.createElement(Qe.div,Pe)))}),Um="PopperArrow",Zm={top:"bottom",right:"left",bottom:"top",left:"right"},Ym=r.forwardRef(function(s,t){const{__scopePopper:o,...a}=s,n=zm(Um,o),i=Zm[n.placedSide];return r.createElement("span",{ref:n.onArrowChange,style:{position:"absolute",left:n.arrowX,top:n.arrowY,[i]:0,transformOrigin:{top:"",right:"0 0",bottom:"center 0",left:"100% 0"}[n.placedSide],transform:{top:"translateY(100%)",right:"translateY(50%) rotate(90deg) translateX(-50%)",bottom:"rotate(180deg)",left:"translateY(50%) rotate(-90deg) translateX(50%)"}[n.placedSide],visibility:n.shouldHideArrow?"hidden":void 0}},r.createElement(Lm,S({},a,{ref:t,style:{...a.style,display:"block"}})))});function Gm(e){return e!==void 0}function Xm(e){return e!==null}const Jm=()=>({name:"anchorCssProperties",fn(e){const{rects:s,elements:t}=e,{width:o,height:a}=s.reference;return t.floating.style.setProperty("--radix-popper-anchor-width",`${o}px`),t.floating.style.setProperty("--radix-popper-anchor-height",`${a}px`),{}}}),Qm=e=>({name:"transformOrigin",options:e,fn(s){var t,o,a,n,i;const{placement:l,rects:f,middlewareData:p}=s,c=((t=p.arrow)===null||t===void 0?void 0:t.centerOffset)!==0,b=c?0:e.arrowWidth,u=c?0:e.arrowHeight,[C,_]=Cf(l),x={start:"0%",center:"50%",end:"100%"}[_],y=((o=(a=p.arrow)===null||a===void 0?void 0:a.x)!==null&&o!==void 0?o:0)+b/2,h=((n=(i=p.arrow)===null||i===void 0?void 0:i.y)!==null&&n!==void 0?n:0)+u/2;let m="",g="";return C==="bottom"?(m=c?x:`${y}px`,g=`${-u}px`):C==="top"?(m=c?x:`${y}px`,g=`${f.floating.height+u}px`):C==="right"?(m=`${-u}px`,g=c?x:`${h}px`):C==="left"&&(m=`${f.floating.width+u}px`,g=c?x:`${h}px`),{data:{x:m,y:g}}}});function Cf(e){const[s,t="center"]=e.split("-");return[s,t]}const yf=Hm,yn=Fm,xf=Km,kf=Ym,wf="Popover",[$f,qv]=ze(wf,[Gt]),ft=Gt(),[eb,Rs]=$f(wf),sb=e=>{const{__scopePopover:s,children:t,open:o,defaultOpen:a,onOpenChange:n,modal:i=!1}=e,l=ft(s),f=r.useRef(null),[p,d]=r.useState(!1),[c=!1,b]=es({prop:o,defaultProp:a,onChange:n});return r.createElement(yf,l,r.createElement(eb,{scope:s,contentId:os(),triggerRef:f,open:c,onOpenChange:b,onOpenToggle:r.useCallback(()=>b(u=>!u),[b]),hasCustomAnchor:p,onCustomAnchorAdd:r.useCallback(()=>d(!0),[]),onCustomAnchorRemove:r.useCallback(()=>d(!1),[]),modal:i},t))},tb="PopoverAnchor",ob=r.forwardRef((e,s)=>{const{__scopePopover:t,...o}=e,a=Rs(tb,t),n=ft(t),{onCustomAnchorAdd:i,onCustomAnchorRemove:l}=a;return r.useEffect(()=>(i(),()=>l()),[i,l]),r.createElement(yn,S({},n,o,{ref:s}))}),nb="PopoverTrigger",ab=r.forwardRef((e,s)=>{const{__scopePopover:t,...o}=e,a=Rs(nb,t),n=ft(t),i=Ce(s,a.triggerRef),l=r.createElement(Qe.button,S({type:"button","aria-haspopup":"dialog","aria-expanded":a.open,"aria-controls":a.contentId,"data-state":Sf(a.open)},o,{ref:i,onClick:te(e.onClick,a.onOpenToggle)}));return a.hasCustomAnchor?l:r.createElement(yn,S({asChild:!0},n),l)}),Ef="PopoverPortal",[ib,rb]=$f(Ef,{forceMount:void 0}),lb=e=>{const{__scopePopover:s,forceMount:t,children:o,container:a}=e,n=Rs(Ef,s);return r.createElement(ib,{scope:s,forceMount:t},r.createElement(Ze,{present:t||n.open},r.createElement(gn,{asChild:!0,container:a},o)))},Xs="PopoverContent",fb=r.forwardRef((e,s)=>{const t=rb(Xs,e.__scopePopover),{forceMount:o=t.forceMount,...a}=e,n=Rs(Xs,e.__scopePopover);return r.createElement(Ze,{present:o||n.open},n.modal?r.createElement(cb,S({},a,{ref:s})):r.createElement(pb,S({},a,{ref:s})))}),cb=r.forwardRef((e,s)=>{const t=Rs(Xs,e.__scopePopover),o=r.useRef(null),a=Ce(s,o),n=r.useRef(!1);return r.useEffect(()=>{const i=o.current;if(i)return cn(i)},[]),r.createElement(pn,{as:_s,allowPinchZoom:!0},r.createElement(If,S({},e,{ref:a,trapFocus:t.open,disableOutsidePointerEvents:!0,onCloseAutoFocus:te(e.onCloseAutoFocus,i=>{var l;i.preventDefault(),n.current||(l=t.triggerRef.current)===null||l===void 0||l.focus()}),onPointerDownOutside:te(e.onPointerDownOutside,i=>{const l=i.detail.originalEvent,f=l.button===0&&l.ctrlKey===!0,p=l.button===2||f;n.current=p},{checkForDefaultPrevented:!1}),onFocusOutside:te(e.onFocusOutside,i=>i.preventDefault(),{checkForDefaultPrevented:!1})})))}),pb=r.forwardRef((e,s)=>{const t=Rs(Xs,e.__scopePopover),o=r.useRef(!1);return r.createElement(If,S({},e,{ref:s,trapFocus:!1,disableOutsidePointerEvents:!1,onCloseAutoFocus:a=>{var n;if((n=e.onCloseAutoFocus)===null||n===void 0||n.call(e,a),!a.defaultPrevented){var i;o.current||(i=t.triggerRef.current)===null||i===void 0||i.focus(),a.preventDefault()}o.current=!1},onInteractOutside:a=>{var n,i;(n=e.onInteractOutside)===null||n===void 0||n.call(e,a),a.defaultPrevented||(o.current=!0);const l=a.target;((i=t.triggerRef.current)===null||i===void 0?void 0:i.contains(l))&&a.preventDefault()}}))}),If=r.forwardRef((e,s)=>{const{__scopePopover:t,trapFocus:o,onOpenAutoFocus:a,onCloseAutoFocus:n,disableOutsidePointerEvents:i,onEscapeKeyDown:l,onPointerDownOutside:f,onFocusOutside:p,onInteractOutside:d,...c}=e,b=Rs(Xs,t),u=ft(t);return nn(),r.createElement(Rm,{asChild:!0,loop:!0,trapped:o,onMountAutoFocus:a,onUnmountAutoFocus:n},r.createElement(mf,{asChild:!0,disableOutsidePointerEvents:i,onInteractOutside:d,onEscapeKeyDown:l,onPointerDownOutside:f,onFocusOutside:p,onDismiss:()=>b.onOpenChange(!1)},r.createElement(xf,S({"data-state":Sf(b.open),role:"dialog",id:b.contentId},u,c,{ref:s,style:{...c.style,"--radix-popover-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-popover-content-available-width":"var(--radix-popper-available-width)","--radix-popover-content-available-height":"var(--radix-popper-available-height)","--radix-popover-trigger-width":"var(--radix-popper-anchor-width)","--radix-popover-trigger-height":"var(--radix-popper-anchor-height)"}}))))}),db=r.forwardRef((e,s)=>{const{__scopePopover:t,...o}=e,a=ft(t);return r.createElement(kf,S({},a,o,{ref:s}))});function Sf(e){return e?"open":"closed"}const ub=sb,_b=ob,mb=ab,bb=lb,hb=fb,vb=db;var gb="_1t0scx21",Cb="_18fs8ps1nr _18fs8ps1nx _18fs8ps1nf _18fs8ps1nl _18fs8ps1of _18fs8ps1ol _18fs8ps1o3 _18fs8ps1o9 _18fs8ps1gf _18fs8ps1fi _18fs8ps1i9 _18fs8ps1hc _18fs8ps26c _18fs8ps2v8 _18fs8ps2f8";const Rf=({children:e,className:s,...t})=>v(bb,{children:v(hb,{asChild:!0,className:ue(Cb,s),"data-macaw-ui-component":"Popover.Content",...t,children:e})});Rf.displayName="Popover.Content";const Pf=({children:e})=>v(_b,{asChild:!0,"data-macaw-ui-component":"Popover.Anchor",children:e});Pf.displayName="Popover.Anchor";const Df=({children:e})=>v(mb,{asChild:!0,"data-macaw-ui-component":"Popover.Trigger",children:e});Df.displayName="Popover.Trigger";const Of=({className:e,backgroundColor:s=Es.colors.background.subdued,borderColor:t=Es.colors.border.neutralPlain})=>v(vb,{className:ue(gb,e),asChild:!0,children:v("svg",{width:"20",height:"9",viewBox:"0 0 20 9",fill:"none",xmlns:"http://www.w3.org/2000/svg","data-macaw-ui-component":"Popover.Arrow",children:v("path",{d:"M8.08579 7.08579L0.5 -0.5H18.5L10.9142 7.08579C10.1332 7.86683 8.86684 7.86684 8.08579 7.08579Z",strokeLinejoin:"round",fill:s,stroke:t})})});Of.displayName="Popover.Arrow";const Tf=({children:e,...s})=>v(ub,{...s,"data-macaw-ui-component":"Popover",children:e});Tf.displayName="Popover";const yb=Object.assign(Tf,{Trigger:Df,Content:Rf,Anchor:Pf,Arrow:Of}),xb=r.forwardRef((e,s)=>r.createElement(Qe.span,S({},e,{ref:s,style:{position:"absolute",border:0,width:1,height:1,padding:0,margin:-1,overflow:"hidden",clip:"rect(0, 0, 0, 0)",whiteSpace:"nowrap",wordWrap:"normal",...e.style}}))),kb=xb,[Xt,Wv]=ze("Tooltip",[Gt]),Jt=Gt(),wb="TooltipProvider",$b=700,Fo="tooltip.open",[Eb,xn]=Xt(wb),Ib=e=>{const{__scopeTooltip:s,delayDuration:t=$b,skipDelayDuration:o=300,disableHoverableContent:a=!1,children:n}=e,[i,l]=r.useState(!0),f=r.useRef(!1),p=r.useRef(0);return r.useEffect(()=>{const d=p.current;return()=>window.clearTimeout(d)},[]),r.createElement(Eb,{scope:s,isOpenDelayed:i,delayDuration:t,onOpen:r.useCallback(()=>{window.clearTimeout(p.current),l(!1)},[]),onClose:r.useCallback(()=>{window.clearTimeout(p.current),p.current=window.setTimeout(()=>l(!0),o)},[o]),isPointerInTransitRef:f,onPointerInTransitChange:r.useCallback(d=>{f.current=d},[]),disableHoverableContent:a},n)},kn="Tooltip",[Sb,ct]=Xt(kn),Rb=e=>{const{__scopeTooltip:s,children:t,open:o,defaultOpen:a=!1,onOpenChange:n,disableHoverableContent:i,delayDuration:l}=e,f=xn(kn,e.__scopeTooltip),p=Jt(s),[d,c]=r.useState(null),b=os(),u=r.useRef(0),C=i!=null?i:f.disableHoverableContent,_=l!=null?l:f.delayDuration,x=r.useRef(!1),[y=!1,h]=es({prop:o,defaultProp:a,onChange:E=>{E?(f.onOpen(),document.dispatchEvent(new CustomEvent(Fo))):f.onClose(),n==null||n(E)}}),m=r.useMemo(()=>y?x.current?"delayed-open":"instant-open":"closed",[y]),g=r.useCallback(()=>{window.clearTimeout(u.current),x.current=!1,h(!0)},[h]),w=r.useCallback(()=>{window.clearTimeout(u.current),h(!1)},[h]),D=r.useCallback(()=>{window.clearTimeout(u.current),u.current=window.setTimeout(()=>{x.current=!0,h(!0)},_)},[_,h]);return r.useEffect(()=>()=>window.clearTimeout(u.current),[]),r.createElement(yf,p,r.createElement(Sb,{scope:s,contentId:b,open:y,stateAttribute:m,trigger:d,onTriggerChange:c,onTriggerEnter:r.useCallback(()=>{f.isOpenDelayed?D():g()},[f.isOpenDelayed,D,g]),onTriggerLeave:r.useCallback(()=>{C?w():window.clearTimeout(u.current)},[w,C]),onOpen:g,onClose:w,disableHoverableContent:C},t))},ci="TooltipTrigger",Pb=r.forwardRef((e,s)=>{const{__scopeTooltip:t,...o}=e,a=ct(ci,t),n=xn(ci,t),i=Jt(t),l=r.useRef(null),f=Ce(s,l,a.onTriggerChange),p=r.useRef(!1),d=r.useRef(!1),c=r.useCallback(()=>p.current=!1,[]);return r.useEffect(()=>()=>document.removeEventListener("pointerup",c),[c]),r.createElement(yn,S({asChild:!0},i),r.createElement(Qe.button,S({"aria-describedby":a.open?a.contentId:void 0,"data-state":a.stateAttribute},o,{ref:f,onPointerMove:te(e.onPointerMove,b=>{b.pointerType!=="touch"&&!d.current&&!n.isPointerInTransitRef.current&&(a.onTriggerEnter(),d.current=!0)}),onPointerLeave:te(e.onPointerLeave,()=>{a.onTriggerLeave(),d.current=!1}),onPointerDown:te(e.onPointerDown,()=>{p.current=!0,document.addEventListener("pointerup",c,{once:!0})}),onFocus:te(e.onFocus,()=>{p.current||a.onOpen()}),onBlur:te(e.onBlur,a.onClose),onClick:te(e.onClick,a.onClose)})))}),Nf="TooltipPortal",[Db,Ob]=Xt(Nf,{forceMount:void 0}),Tb=e=>{const{__scopeTooltip:s,forceMount:t,children:o,container:a}=e,n=ct(Nf,s);return r.createElement(Db,{scope:s,forceMount:t},r.createElement(Ze,{present:t||n.open},r.createElement(gn,{asChild:!0,container:a},o)))},Js="TooltipContent",Nb=r.forwardRef((e,s)=>{const t=Ob(Js,e.__scopeTooltip),{forceMount:o=t.forceMount,side:a="top",...n}=e,i=ct(Js,e.__scopeTooltip);return r.createElement(Ze,{present:o||i.open},i.disableHoverableContent?r.createElement(Mf,S({side:a},n,{ref:s})):r.createElement(Mb,S({side:a},n,{ref:s})))}),Mb=r.forwardRef((e,s)=>{const t=ct(Js,e.__scopeTooltip),o=xn(Js,e.__scopeTooltip),a=r.useRef(null),n=Ce(s,a),[i,l]=r.useState(null),{trigger:f,onClose:p}=t,d=a.current,{onPointerInTransitChange:c}=o,b=r.useCallback(()=>{l(null),c(!1)},[c]),u=r.useCallback((C,_)=>{const x=C.currentTarget,y={x:C.clientX,y:C.clientY},h=jb(y,x.getBoundingClientRect()),m=h==="right"||h==="bottom"?-5:5,w=h==="right"||h==="left"?{x:C.clientX+m,y:C.clientY}:{x:C.clientX,y:C.clientY+m},D=Fb(_.getBoundingClientRect()),E=zb([w,...D]);l(E),c(!0)},[c]);return r.useEffect(()=>()=>b(),[b]),r.useEffect(()=>{if(f&&d){const C=x=>u(x,d),_=x=>u(x,f);return f.addEventListener("pointerleave",C),d.addEventListener("pointerleave",_),()=>{f.removeEventListener("pointerleave",C),d.removeEventListener("pointerleave",_)}}},[f,d,u,b]),r.useEffect(()=>{if(i){const C=_=>{const x=_.target,y={x:_.clientX,y:_.clientY},h=(f==null?void 0:f.contains(x))||(d==null?void 0:d.contains(x)),m=!Bb(y,i);h?b():m&&(b(),p())};return document.addEventListener("pointermove",C),()=>document.removeEventListener("pointermove",C)}},[f,d,i,p,b]),r.createElement(Mf,S({},e,{ref:n}))}),[Ab,Lb]=Xt(kn,{isInside:!1}),Mf=r.forwardRef((e,s)=>{const{__scopeTooltip:t,children:o,"aria-label":a,onEscapeKeyDown:n,onPointerDownOutside:i,...l}=e,f=ct(Js,t),p=Jt(t),{onClose:d}=f;return r.useEffect(()=>(document.addEventListener(Fo,d),()=>document.removeEventListener(Fo,d)),[d]),r.useEffect(()=>{if(f.trigger){const c=b=>{const u=b.target;u!=null&&u.contains(f.trigger)&&d()};return window.addEventListener("scroll",c,{capture:!0}),()=>window.removeEventListener("scroll",c,{capture:!0})}},[f.trigger,d]),r.createElement(mf,{asChild:!0,disableOutsidePointerEvents:!1,onEscapeKeyDown:n,onPointerDownOutside:i,onFocusOutside:c=>c.preventDefault(),onDismiss:d},r.createElement(xf,S({"data-state":f.stateAttribute},p,l,{ref:s,style:{...l.style,"--radix-tooltip-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-tooltip-content-available-width":"var(--radix-popper-available-width)","--radix-tooltip-content-available-height":"var(--radix-popper-available-height)","--radix-tooltip-trigger-width":"var(--radix-popper-anchor-width)","--radix-tooltip-trigger-height":"var(--radix-popper-anchor-height)"}}),r.createElement(Xi,null,o),r.createElement(Ab,{scope:t,isInside:!0},r.createElement(kb,{id:f.contentId,role:"tooltip"},a||o))))}),Vb="TooltipArrow",Hb=r.forwardRef((e,s)=>{const{__scopeTooltip:t,...o}=e,a=Jt(t);return Lb(Vb,t).isInside?null:r.createElement(kf,S({},a,o,{ref:s}))});function jb(e,s){const t=Math.abs(s.top-e.y),o=Math.abs(s.bottom-e.y),a=Math.abs(s.right-e.x),n=Math.abs(s.left-e.x);switch(Math.min(t,o,a,n)){case n:return"left";case a:return"right";case t:return"top";case o:return"bottom";default:return null}}function Fb(e){const{top:s,right:t,bottom:o,left:a}=e;return[{x:a,y:s},{x:t,y:s},{x:t,y:o},{x:a,y:o}]}function Bb(e,s){const{x:t,y:o}=e;let a=!1;for(let n=0,i=s.length-1;n<s.length;i=n++){const l=s[n].x,f=s[n].y,p=s[i].x,d=s[i].y;f>o!=d>o&&t<(p-l)*(o-f)/(d-f)+l&&(a=!a)}return a}function zb(e){const s=e.slice();return s.sort((t,o)=>t.x<o.x?-1:t.x>o.x?1:t.y<o.y?-1:t.y>o.y?1:0),qb(s)}function qb(e){if(e.length<=1)return e.slice();const s=[];for(let o=0;o<e.length;o++){const a=e[o];for(;s.length>=2;){const n=s[s.length-1],i=s[s.length-2];if((n.x-i.x)*(a.y-i.y)>=(n.y-i.y)*(a.x-i.x))s.pop();else break}s.push(a)}s.pop();const t=[];for(let o=e.length-1;o>=0;o--){const a=e[o];for(;t.length>=2;){const n=t[t.length-1],i=t[t.length-2];if((n.x-i.x)*(a.y-i.y)>=(n.y-i.y)*(a.x-i.x))t.pop();else break}t.push(a)}return t.pop(),s.length===1&&t.length===1&&s[0].x===t[0].x&&s[0].y===t[0].y?s:s.concat(t)}const Wb=Ib,Kb=Rb,Ub=Pb,Zb=Tb,Yb=Nb,Gb=Hb,Af=({children:e,delayDuration:s=250,...t})=>v(Wb,{children:v(Kb,{delayDuration:s,...t,"data-macaw-ui-component":"Tooltip",children:e})});Af.displayName="Tooltip";const Lf=r.forwardRef(({children:e},s)=>v(Ub,{asChild:!0,ref:s,"data-macaw-ui-component":"Tooltip.Trigger",children:e}));Lf.displayName="Tooltip.Trigger";var Xb="_14kl90y1",Jb="_18fs8pskx _18fs8psnc _18fs8pspr _18fs8pss6 _18fs8ps1k6 _18fs8ps1m9 _18fs8ps249 _18fs8ps1q0 _18fs8ps1nr _18fs8ps1nx _18fs8ps1nf _18fs8ps1nl _18fs8ps1of _18fs8ps1ol _18fs8ps1o3 _18fs8ps1o9 _18fs8ps1gf _18fs8ps1fi _18fs8ps1i9 _18fs8ps1hc _18fs8ps26c _18fs8ps2fw _18fs8ps28k _18fs8ps2vg";const Vf=({className:e,backgroundColor:s=Es.colors.background.surfaceNeutralPlain,borderColor:t=Es.colors.border.neutralPlain})=>v(Gb,{asChild:!0,className:ue(Xb,e),children:v("svg",{width:"20",height:"9",viewBox:"0 0 20 9",fill:"none",xmlns:"http://www.w3.org/2000/svg","data-macaw-ui-component":"Tooltip.Arrow",children:v("path",{fill:s,stroke:t,d:"M8.086 7.086.5-.5h18l-7.586 7.586a2 2 0 0 1-2.828 0Z"})})});Vf.displayName="Tooltip.Arrow";const Hf=({children:e,className:s,sideOffset:t=2,avoidCollisions:o=!0,...a})=>v(Zb,{children:v(Yb,{className:ue(Jb,s),sideOffset:t,avoidCollisions:o,"data-macaw-ui-component":"Tooltip.Content",...a,children:e})});Hf.displayName="Tooltip.Content";const jf=({children:e})=>v(Ae,{display:"block",variant:"caption",color:"textNeutralSubdued",marginBottom:.5,"data-macaw-ui-component":"Tooltip.ContentHeading",children:e});jf.displayName="Tooltip.ContentHeading";const Qb=Object.assign(Af,{Trigger:Lf,Arrow:Vf,Content:Hf,ContentHeading:jf});var Fs="_8bnj8qa _18fs8pskx _18fs8psnc _18fs8pspr _18fs8pss6",pt="_8bnj8q8 _18fs8psku _18fs8psn9 _18fs8pspo _18fs8pss3 _18fs8ps2o _18fs8ps2fw _18fs8ps2vg _18fs8ps264 _18fs8ps16u _18fs8ps1vo _18fs8ps1el _18fs8ps213 _18fs8ps220",dt=we({defaultClassName:"_8bnj8q3",variantClassNames:{size:{small:"_8bnj8q4",medium:"_8bnj8q5",large:"_8bnj8q6"}},defaultVariants:{size:"medium"},compoundVariants:[]}),wn="_8bnj8q0";var eh="_1fy53xo1";const sh=()=>v("svg",{xmlns:"http://www.w3.org/2000/svg",width:"16",height:"16",fill:"none",className:eh,children:v("g",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.333",children:v("path",{d:"M8 1.332v2.667M8 12v2.667M3.285 3.285l1.887 1.887M10.826 10.826l1.887 1.887M1.332 8h2.667M12 8h2.667M3.285 12.713l1.887-1.887M10.826 5.172l1.887-1.887"})})}),Ff=({size:e="medium",children:s})=>ee(Ue.Item,{className:Fs,display:"flex",gap:1.5,color:"textNeutralSubdued",children:[v(Ae,{size:e,color:"textNeutralSubdued",children:s}),v(sh,{})]}),Bf=({isOpen:e,hasItemsToSelect:s,loading:t})=>e&&s||t?"block":"none";function je(e,s){if(e==null)return{};var t={},o=Object.keys(e),a,n;for(n=0;n<o.length;n++)a=o[n],!(s.indexOf(a)>=0)&&(t[a]=e[a]);return t}function pi(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Bo(e,s){return Bo=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(o,a){return o.__proto__=a,o},Bo(e,s)}function th(e,s){e.prototype=Object.create(s.prototype),e.prototype.constructor=e,Bo(e,s)}var N={exports:{}},go={exports:{}},me={};/** @license React v16.13.1
70
+ * react-is.production.min.js
71
+ *
72
+ * Copyright (c) Facebook, Inc. and its affiliates.
73
+ *
74
+ * This source code is licensed under the MIT license found in the
75
+ * LICENSE file in the root directory of this source tree.
76
+ */var di;function oh(){if(di)return me;di=1;var e=typeof Symbol=="function"&&Symbol.for,s=e?Symbol.for("react.element"):60103,t=e?Symbol.for("react.portal"):60106,o=e?Symbol.for("react.fragment"):60107,a=e?Symbol.for("react.strict_mode"):60108,n=e?Symbol.for("react.profiler"):60114,i=e?Symbol.for("react.provider"):60109,l=e?Symbol.for("react.context"):60110,f=e?Symbol.for("react.async_mode"):60111,p=e?Symbol.for("react.concurrent_mode"):60111,d=e?Symbol.for("react.forward_ref"):60112,c=e?Symbol.for("react.suspense"):60113,b=e?Symbol.for("react.suspense_list"):60120,u=e?Symbol.for("react.memo"):60115,C=e?Symbol.for("react.lazy"):60116,_=e?Symbol.for("react.block"):60121,x=e?Symbol.for("react.fundamental"):60117,y=e?Symbol.for("react.responder"):60118,h=e?Symbol.for("react.scope"):60119;function m(w){if(typeof w=="object"&&w!==null){var D=w.$$typeof;switch(D){case s:switch(w=w.type,w){case f:case p:case o:case n:case a:case c:return w;default:switch(w=w&&w.$$typeof,w){case l:case d:case C:case u:case i:return w;default:return D}}case t:return D}}}function g(w){return m(w)===p}return me.AsyncMode=f,me.ConcurrentMode=p,me.ContextConsumer=l,me.ContextProvider=i,me.Element=s,me.ForwardRef=d,me.Fragment=o,me.Lazy=C,me.Memo=u,me.Portal=t,me.Profiler=n,me.StrictMode=a,me.Suspense=c,me.isAsyncMode=function(w){return g(w)||m(w)===f},me.isConcurrentMode=g,me.isContextConsumer=function(w){return m(w)===l},me.isContextProvider=function(w){return m(w)===i},me.isElement=function(w){return typeof w=="object"&&w!==null&&w.$$typeof===s},me.isForwardRef=function(w){return m(w)===d},me.isFragment=function(w){return m(w)===o},me.isLazy=function(w){return m(w)===C},me.isMemo=function(w){return m(w)===u},me.isPortal=function(w){return m(w)===t},me.isProfiler=function(w){return m(w)===n},me.isStrictMode=function(w){return m(w)===a},me.isSuspense=function(w){return m(w)===c},me.isValidElementType=function(w){return typeof w=="string"||typeof w=="function"||w===o||w===p||w===n||w===a||w===c||w===b||typeof w=="object"&&w!==null&&(w.$$typeof===C||w.$$typeof===u||w.$$typeof===i||w.$$typeof===l||w.$$typeof===d||w.$$typeof===x||w.$$typeof===y||w.$$typeof===h||w.$$typeof===_)},me.typeOf=m,me}var be={};/** @license React v16.13.1
77
+ * react-is.development.js
78
+ *
79
+ * Copyright (c) Facebook, Inc. and its affiliates.
80
+ *
81
+ * This source code is licensed under the MIT license found in the
82
+ * LICENSE file in the root directory of this source tree.
83
+ */var ui;function nh(){return ui||(ui=1,process.env.NODE_ENV!=="production"&&function(){var e=typeof Symbol=="function"&&Symbol.for,s=e?Symbol.for("react.element"):60103,t=e?Symbol.for("react.portal"):60106,o=e?Symbol.for("react.fragment"):60107,a=e?Symbol.for("react.strict_mode"):60108,n=e?Symbol.for("react.profiler"):60114,i=e?Symbol.for("react.provider"):60109,l=e?Symbol.for("react.context"):60110,f=e?Symbol.for("react.async_mode"):60111,p=e?Symbol.for("react.concurrent_mode"):60111,d=e?Symbol.for("react.forward_ref"):60112,c=e?Symbol.for("react.suspense"):60113,b=e?Symbol.for("react.suspense_list"):60120,u=e?Symbol.for("react.memo"):60115,C=e?Symbol.for("react.lazy"):60116,_=e?Symbol.for("react.block"):60121,x=e?Symbol.for("react.fundamental"):60117,y=e?Symbol.for("react.responder"):60118,h=e?Symbol.for("react.scope"):60119;function m(L){return typeof L=="string"||typeof L=="function"||L===o||L===p||L===n||L===a||L===c||L===b||typeof L=="object"&&L!==null&&(L.$$typeof===C||L.$$typeof===u||L.$$typeof===i||L.$$typeof===l||L.$$typeof===d||L.$$typeof===x||L.$$typeof===y||L.$$typeof===h||L.$$typeof===_)}function g(L){if(typeof L=="object"&&L!==null){var le=L.$$typeof;switch(le){case s:var ce=L.type;switch(ce){case f:case p:case o:case n:case a:case c:return ce;default:var ye=ce&&ce.$$typeof;switch(ye){case l:case d:case C:case u:case i:return ye;default:return le}}case t:return le}}}var w=f,D=p,E=l,$=i,R=s,H=d,O=o,W=C,P=u,K=t,G=n,ne=a,oe=c,se=!1;function Y(L){return se||(se=!0,console.warn("The ReactIs.isAsyncMode() alias has been deprecated, and will be removed in React 17+. Update your code to use ReactIs.isConcurrentMode() instead. It has the exact same API.")),I(L)||g(L)===f}function I(L){return g(L)===p}function V(L){return g(L)===l}function J(L){return g(L)===i}function Q(L){return typeof L=="object"&&L!==null&&L.$$typeof===s}function j(L){return g(L)===d}function U(L){return g(L)===o}function F(L){return g(L)===C}function T(L){return g(L)===u}function M(L){return g(L)===t}function A(L){return g(L)===n}function B(L){return g(L)===a}function q(L){return g(L)===c}be.AsyncMode=w,be.ConcurrentMode=D,be.ContextConsumer=E,be.ContextProvider=$,be.Element=R,be.ForwardRef=H,be.Fragment=O,be.Lazy=W,be.Memo=P,be.Portal=K,be.Profiler=G,be.StrictMode=ne,be.Suspense=oe,be.isAsyncMode=Y,be.isConcurrentMode=I,be.isContextConsumer=V,be.isContextProvider=J,be.isElement=Q,be.isForwardRef=j,be.isFragment=U,be.isLazy=F,be.isMemo=T,be.isPortal=M,be.isProfiler=A,be.isStrictMode=B,be.isSuspense=q,be.isValidElementType=m,be.typeOf=g}()),be}var _i;function zf(){return _i||(_i=1,function(e){process.env.NODE_ENV==="production"?e.exports=oh():e.exports=nh()}(go)),go.exports}var Co,mi;function $n(){if(mi)return Co;mi=1;var e="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED";return Co=e,Co}var yo,bi;function qf(){return bi||(bi=1,yo=Function.call.bind(Object.prototype.hasOwnProperty)),yo}var xo,hi;function ah(){if(hi)return xo;hi=1;var e=function(){};if(process.env.NODE_ENV!=="production"){var s=$n(),t={},o=qf();e=function(n){var i="Warning: "+n;typeof console<"u"&&console.error(i);try{throw new Error(i)}catch{}}}function a(n,i,l,f,p){if(process.env.NODE_ENV!=="production"){for(var d in n)if(o(n,d)){var c;try{if(typeof n[d]!="function"){var b=Error((f||"React class")+": "+l+" type `"+d+"` is invalid; it must be a function, usually from the `prop-types` package, but received `"+typeof n[d]+"`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.");throw b.name="Invariant Violation",b}c=n[d](i,d,f,l,null,s)}catch(C){c=C}if(c&&!(c instanceof Error)&&e((f||"React class")+": type specification of "+l+" `"+d+"` is invalid; the type checker function must return `null` or an `Error` but returned a "+typeof c+". You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument)."),c instanceof Error&&!(c.message in t)){t[c.message]=!0;var u=p?p():"";e("Failed "+l+" type: "+c.message+(u!=null?u:""))}}}}return a.resetWarningCache=function(){process.env.NODE_ENV!=="production"&&(t={})},xo=a,xo}var ko,vi;function ih(){if(vi)return ko;vi=1;var e=zf(),s=Uo(),t=$n(),o=qf(),a=ah(),n=function(){};process.env.NODE_ENV!=="production"&&(n=function(l){var f="Warning: "+l;typeof console<"u"&&console.error(f);try{throw new Error(f)}catch{}});function i(){return null}return ko=function(l,f){var p=typeof Symbol=="function"&&Symbol.iterator,d="@@iterator";function c(I){var V=I&&(p&&I[p]||I[d]);if(typeof V=="function")return V}var b="<<anonymous>>",u={array:y("array"),bigint:y("bigint"),bool:y("boolean"),func:y("function"),number:y("number"),object:y("object"),string:y("string"),symbol:y("symbol"),any:h(),arrayOf:m,element:g(),elementType:w(),instanceOf:D,node:H(),objectOf:$,oneOf:E,oneOfType:R,shape:W,exact:P};function C(I,V){return I===V?I!==0||1/I===1/V:I!==I&&V!==V}function _(I,V){this.message=I,this.data=V&&typeof V=="object"?V:{},this.stack=""}_.prototype=Error.prototype;function x(I){if(process.env.NODE_ENV!=="production")var V={},J=0;function Q(U,F,T,M,A,B,q){if(M=M||b,B=B||T,q!==t){if(f){var L=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use `PropTypes.checkPropTypes()` to call them. Read more at http://fb.me/use-check-prop-types");throw L.name="Invariant Violation",L}else if(process.env.NODE_ENV!=="production"&&typeof console<"u"){var le=M+":"+T;!V[le]&&J<3&&(n("You are manually calling a React.PropTypes validation function for the `"+B+"` prop on `"+M+"`. This is deprecated and will throw in the standalone `prop-types` package. You may be seeing this warning due to a third-party PropTypes library. See https://fb.me/react-warning-dont-call-proptypes for details."),V[le]=!0,J++)}}return F[T]==null?U?F[T]===null?new _("The "+A+" `"+B+"` is marked as required "+("in `"+M+"`, but its value is `null`.")):new _("The "+A+" `"+B+"` is marked as required in "+("`"+M+"`, but its value is `undefined`.")):null:I(F,T,M,A,B)}var j=Q.bind(null,!1);return j.isRequired=Q.bind(null,!0),j}function y(I){function V(J,Q,j,U,F,T){var M=J[Q],A=ne(M);if(A!==I){var B=oe(M);return new _("Invalid "+U+" `"+F+"` of type "+("`"+B+"` supplied to `"+j+"`, expected ")+("`"+I+"`."),{expectedType:I})}return null}return x(V)}function h(){return x(i)}function m(I){function V(J,Q,j,U,F){if(typeof I!="function")return new _("Property `"+F+"` of component `"+j+"` has invalid PropType notation inside arrayOf.");var T=J[Q];if(!Array.isArray(T)){var M=ne(T);return new _("Invalid "+U+" `"+F+"` of type "+("`"+M+"` supplied to `"+j+"`, expected an array."))}for(var A=0;A<T.length;A++){var B=I(T,A,j,U,F+"["+A+"]",t);if(B instanceof Error)return B}return null}return x(V)}function g(){function I(V,J,Q,j,U){var F=V[J];if(!l(F)){var T=ne(F);return new _("Invalid "+j+" `"+U+"` of type "+("`"+T+"` supplied to `"+Q+"`, expected a single ReactElement."))}return null}return x(I)}function w(){function I(V,J,Q,j,U){var F=V[J];if(!e.isValidElementType(F)){var T=ne(F);return new _("Invalid "+j+" `"+U+"` of type "+("`"+T+"` supplied to `"+Q+"`, expected a single ReactElement type."))}return null}return x(I)}function D(I){function V(J,Q,j,U,F){if(!(J[Q]instanceof I)){var T=I.name||b,M=Y(J[Q]);return new _("Invalid "+U+" `"+F+"` of type "+("`"+M+"` supplied to `"+j+"`, expected ")+("instance of `"+T+"`."))}return null}return x(V)}function E(I){if(!Array.isArray(I))return process.env.NODE_ENV!=="production"&&(arguments.length>1?n("Invalid arguments supplied to oneOf, expected an array, got "+arguments.length+" arguments. A common mistake is to write oneOf(x, y, z) instead of oneOf([x, y, z])."):n("Invalid argument supplied to oneOf, expected an array.")),i;function V(J,Q,j,U,F){for(var T=J[Q],M=0;M<I.length;M++)if(C(T,I[M]))return null;var A=JSON.stringify(I,function(q,L){var le=oe(L);return le==="symbol"?String(L):L});return new _("Invalid "+U+" `"+F+"` of value `"+String(T)+"` "+("supplied to `"+j+"`, expected one of "+A+"."))}return x(V)}function $(I){function V(J,Q,j,U,F){if(typeof I!="function")return new _("Property `"+F+"` of component `"+j+"` has invalid PropType notation inside objectOf.");var T=J[Q],M=ne(T);if(M!=="object")return new _("Invalid "+U+" `"+F+"` of type "+("`"+M+"` supplied to `"+j+"`, expected an object."));for(var A in T)if(o(T,A)){var B=I(T,A,j,U,F+"."+A,t);if(B instanceof Error)return B}return null}return x(V)}function R(I){if(!Array.isArray(I))return process.env.NODE_ENV!=="production"&&n("Invalid argument supplied to oneOfType, expected an instance of array."),i;for(var V=0;V<I.length;V++){var J=I[V];if(typeof J!="function")return n("Invalid argument supplied to oneOfType. Expected an array of check functions, but received "+se(J)+" at index "+V+"."),i}function Q(j,U,F,T,M){for(var A=[],B=0;B<I.length;B++){var q=I[B],L=q(j,U,F,T,M,t);if(L==null)return null;L.data&&o(L.data,"expectedType")&&A.push(L.data.expectedType)}var le=A.length>0?", expected one of type ["+A.join(", ")+"]":"";return new _("Invalid "+T+" `"+M+"` supplied to "+("`"+F+"`"+le+"."))}return x(Q)}function H(){function I(V,J,Q,j,U){return K(V[J])?null:new _("Invalid "+j+" `"+U+"` supplied to "+("`"+Q+"`, expected a ReactNode."))}return x(I)}function O(I,V,J,Q,j){return new _((I||"React class")+": "+V+" type `"+J+"."+Q+"` is invalid; it must be a function, usually from the `prop-types` package, but received `"+j+"`.")}function W(I){function V(J,Q,j,U,F){var T=J[Q],M=ne(T);if(M!=="object")return new _("Invalid "+U+" `"+F+"` of type `"+M+"` "+("supplied to `"+j+"`, expected `object`."));for(var A in I){var B=I[A];if(typeof B!="function")return O(j,U,F,A,oe(B));var q=B(T,A,j,U,F+"."+A,t);if(q)return q}return null}return x(V)}function P(I){function V(J,Q,j,U,F){var T=J[Q],M=ne(T);if(M!=="object")return new _("Invalid "+U+" `"+F+"` of type `"+M+"` "+("supplied to `"+j+"`, expected `object`."));var A=s({},J[Q],I);for(var B in A){var q=I[B];if(o(I,B)&&typeof q!="function")return O(j,U,F,B,oe(q));if(!q)return new _("Invalid "+U+" `"+F+"` key `"+B+"` supplied to `"+j+"`.\nBad object: "+JSON.stringify(J[Q],null," ")+`
84
+ Valid keys: `+JSON.stringify(Object.keys(I),null," "));var L=q(T,B,j,U,F+"."+B,t);if(L)return L}return null}return x(V)}function K(I){switch(typeof I){case"number":case"string":case"undefined":return!0;case"boolean":return!I;case"object":if(Array.isArray(I))return I.every(K);if(I===null||l(I))return!0;var V=c(I);if(V){var J=V.call(I),Q;if(V!==I.entries){for(;!(Q=J.next()).done;)if(!K(Q.value))return!1}else for(;!(Q=J.next()).done;){var j=Q.value;if(j&&!K(j[1]))return!1}}else return!1;return!0;default:return!1}}function G(I,V){return I==="symbol"?!0:V?V["@@toStringTag"]==="Symbol"||typeof Symbol=="function"&&V instanceof Symbol:!1}function ne(I){var V=typeof I;return Array.isArray(I)?"array":I instanceof RegExp?"object":G(V,I)?"symbol":V}function oe(I){if(typeof I>"u"||I===null)return""+I;var V=ne(I);if(V==="object"){if(I instanceof Date)return"date";if(I instanceof RegExp)return"regexp"}return V}function se(I){var V=oe(I);switch(V){case"array":case"object":return"an "+V;case"boolean":case"date":case"regexp":return"a "+V;default:return V}}function Y(I){return!I.constructor||!I.constructor.name?b:I.constructor.name}return u.checkPropTypes=a,u.resetWarningCache=a.resetWarningCache,u.PropTypes=u,u},ko}var wo,gi;function rh(){if(gi)return wo;gi=1;var e=$n();function s(){}function t(){}return t.resetWarningCache=s,wo=function(){function o(i,l,f,p,d,c){if(c!==e){var b=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw b.name="Invariant Violation",b}}o.isRequired=o;function a(){return o}var n={array:o,bigint:o,bool:o,func:o,number:o,object:o,string:o,symbol:o,any:o,arrayOf:a,element:o,elementType:o,instanceOf:a,node:o,objectOf:a,oneOf:a,oneOfType:a,shape:a,exact:a,checkPropTypes:t,resetWarningCache:s};return n.PropTypes=n,n},wo}if(process.env.NODE_ENV!=="production"){var lh=zf(),fh=!0;N.exports=ih()(lh.isElement,fh)}else N.exports=rh()();var zo={exports:{}},ve={};/** @license React v17.0.2
85
+ * react-is.production.min.js
86
+ *
87
+ * Copyright (c) Facebook, Inc. and its affiliates.
88
+ *
89
+ * This source code is licensed under the MIT license found in the
90
+ * LICENSE file in the root directory of this source tree.
91
+ */var Ci;function ch(){if(Ci)return ve;Ci=1;var e=60103,s=60106,t=60107,o=60108,a=60114,n=60109,i=60110,l=60112,f=60113,p=60120,d=60115,c=60116,b=60121,u=60122,C=60117,_=60129,x=60131;if(typeof Symbol=="function"&&Symbol.for){var y=Symbol.for;e=y("react.element"),s=y("react.portal"),t=y("react.fragment"),o=y("react.strict_mode"),a=y("react.profiler"),n=y("react.provider"),i=y("react.context"),l=y("react.forward_ref"),f=y("react.suspense"),p=y("react.suspense_list"),d=y("react.memo"),c=y("react.lazy"),b=y("react.block"),u=y("react.server.block"),C=y("react.fundamental"),_=y("react.debug_trace_mode"),x=y("react.legacy_hidden")}function h(P){if(typeof P=="object"&&P!==null){var K=P.$$typeof;switch(K){case e:switch(P=P.type,P){case t:case a:case o:case f:case p:return P;default:switch(P=P&&P.$$typeof,P){case i:case l:case c:case d:case n:return P;default:return K}}case s:return K}}}var m=n,g=e,w=l,D=t,E=c,$=d,R=s,H=a,O=o,W=f;return ve.ContextConsumer=i,ve.ContextProvider=m,ve.Element=g,ve.ForwardRef=w,ve.Fragment=D,ve.Lazy=E,ve.Memo=$,ve.Portal=R,ve.Profiler=H,ve.StrictMode=O,ve.Suspense=W,ve.isAsyncMode=function(){return!1},ve.isConcurrentMode=function(){return!1},ve.isContextConsumer=function(P){return h(P)===i},ve.isContextProvider=function(P){return h(P)===n},ve.isElement=function(P){return typeof P=="object"&&P!==null&&P.$$typeof===e},ve.isForwardRef=function(P){return h(P)===l},ve.isFragment=function(P){return h(P)===t},ve.isLazy=function(P){return h(P)===c},ve.isMemo=function(P){return h(P)===d},ve.isPortal=function(P){return h(P)===s},ve.isProfiler=function(P){return h(P)===a},ve.isStrictMode=function(P){return h(P)===o},ve.isSuspense=function(P){return h(P)===f},ve.isValidElementType=function(P){return typeof P=="string"||typeof P=="function"||P===t||P===a||P===_||P===o||P===f||P===p||P===x||typeof P=="object"&&P!==null&&(P.$$typeof===c||P.$$typeof===d||P.$$typeof===n||P.$$typeof===i||P.$$typeof===l||P.$$typeof===C||P.$$typeof===b||P[0]===u)},ve.typeOf=h,ve}var ge={};/** @license React v17.0.2
92
+ * react-is.development.js
93
+ *
94
+ * Copyright (c) Facebook, Inc. and its affiliates.
95
+ *
96
+ * This source code is licensed under the MIT license found in the
97
+ * LICENSE file in the root directory of this source tree.
98
+ */var yi;function ph(){return yi||(yi=1,process.env.NODE_ENV!=="production"&&function(){var e=60103,s=60106,t=60107,o=60108,a=60114,n=60109,i=60110,l=60112,f=60113,p=60120,d=60115,c=60116,b=60121,u=60122,C=60117,_=60129,x=60131;if(typeof Symbol=="function"&&Symbol.for){var y=Symbol.for;e=y("react.element"),s=y("react.portal"),t=y("react.fragment"),o=y("react.strict_mode"),a=y("react.profiler"),n=y("react.provider"),i=y("react.context"),l=y("react.forward_ref"),f=y("react.suspense"),p=y("react.suspense_list"),d=y("react.memo"),c=y("react.lazy"),b=y("react.block"),u=y("react.server.block"),C=y("react.fundamental"),y("react.scope"),y("react.opaque.id"),_=y("react.debug_trace_mode"),y("react.offscreen"),x=y("react.legacy_hidden")}var h=!1;function m(q){return!!(typeof q=="string"||typeof q=="function"||q===t||q===a||q===_||q===o||q===f||q===p||q===x||h||typeof q=="object"&&q!==null&&(q.$$typeof===c||q.$$typeof===d||q.$$typeof===n||q.$$typeof===i||q.$$typeof===l||q.$$typeof===C||q.$$typeof===b||q[0]===u))}function g(q){if(typeof q=="object"&&q!==null){var L=q.$$typeof;switch(L){case e:var le=q.type;switch(le){case t:case a:case o:case f:case p:return le;default:var ce=le&&le.$$typeof;switch(ce){case i:case l:case c:case d:case n:return ce;default:return L}}case s:return L}}}var w=i,D=n,E=e,$=l,R=t,H=c,O=d,W=s,P=a,K=o,G=f,ne=!1,oe=!1;function se(q){return ne||(ne=!0,console.warn("The ReactIs.isAsyncMode() alias has been deprecated, and will be removed in React 18+.")),!1}function Y(q){return oe||(oe=!0,console.warn("The ReactIs.isConcurrentMode() alias has been deprecated, and will be removed in React 18+.")),!1}function I(q){return g(q)===i}function V(q){return g(q)===n}function J(q){return typeof q=="object"&&q!==null&&q.$$typeof===e}function Q(q){return g(q)===l}function j(q){return g(q)===t}function U(q){return g(q)===c}function F(q){return g(q)===d}function T(q){return g(q)===s}function M(q){return g(q)===a}function A(q){return g(q)===o}function B(q){return g(q)===f}ge.ContextConsumer=w,ge.ContextProvider=D,ge.Element=E,ge.ForwardRef=$,ge.Fragment=R,ge.Lazy=H,ge.Memo=O,ge.Portal=W,ge.Profiler=P,ge.StrictMode=K,ge.Suspense=G,ge.isAsyncMode=se,ge.isConcurrentMode=Y,ge.isContextConsumer=I,ge.isContextProvider=V,ge.isElement=J,ge.isForwardRef=Q,ge.isFragment=j,ge.isLazy=U,ge.isMemo=F,ge.isPortal=T,ge.isProfiler=M,ge.isStrictMode=A,ge.isSuspense=B,ge.isValidElementType=m,ge.typeOf=g}()),ge}(function(e){process.env.NODE_ENV==="production"?e.exports=ch():e.exports=ph()})(zo);let xi=e=>typeof e=="object"&&e!=null&&e.nodeType===1,ki=(e,s)=>(!s||e!=="hidden")&&e!=="visible"&&e!=="clip",$o=(e,s)=>{if(e.clientHeight<e.scrollHeight||e.clientWidth<e.scrollWidth){let t=getComputedStyle(e,null);return ki(t.overflowY,s)||ki(t.overflowX,s)||(o=>{let a=(n=>{if(!n.ownerDocument||!n.ownerDocument.defaultView)return null;try{return n.ownerDocument.defaultView.frameElement}catch{return null}})(o);return!!a&&(a.clientHeight<o.scrollHeight||a.clientWidth<o.scrollWidth)})(e)}return!1},vt=(e,s,t,o,a,n,i,l)=>n<e&&i>s||n>e&&i<s?0:n<=e&&l<=t||i>=s&&l>=t?n-e-o:i>s&&l<t||n<e&&l>t?i-s+a:0,dh=e=>{let s=e.parentElement;return s==null?e.getRootNode().host||null:s};var uh=(e,s)=>{var t,o,a,n,i,l;if(typeof document>"u")return[];let{scrollMode:f,block:p,inline:d,boundary:c,skipOverflowHiddenElements:b}=s,u=typeof c=="function"?c:K=>K!==c;if(!xi(e))throw new TypeError("Invalid target");let C=document.scrollingElement||document.documentElement,_=[],x=e;for(;xi(x)&&u(x);){if(x=dh(x),x===C){_.push(x);break}x!=null&&x===document.body&&$o(x)&&!$o(document.documentElement)||x!=null&&$o(x,b)&&_.push(x)}let y=(o=(t=window.visualViewport)==null?void 0:t.width)!=null?o:innerWidth,h=(n=(a=window.visualViewport)==null?void 0:a.height)!=null?n:innerHeight,m=(i=window.scrollX)!=null?i:pageXOffset,g=(l=window.scrollY)!=null?l:pageYOffset,{height:w,width:D,top:E,right:$,bottom:R,left:H}=e.getBoundingClientRect(),O=p==="start"||p==="nearest"?E:p==="end"?R:E+w/2,W=d==="center"?H+D/2:d==="end"?$:H,P=[];for(let K=0;K<_.length;K++){let G=_[K],{height:ne,width:oe,top:se,right:Y,bottom:I,left:V}=G.getBoundingClientRect();if(f==="if-needed"&&E>=0&&H>=0&&R<=h&&$<=y&&E>=se&&R<=I&&H>=V&&$<=Y)return P;let J=getComputedStyle(G),Q=parseInt(J.borderLeftWidth,10),j=parseInt(J.borderTopWidth,10),U=parseInt(J.borderRightWidth,10),F=parseInt(J.borderBottomWidth,10),T=0,M=0,A="offsetWidth"in G?G.offsetWidth-G.clientWidth-Q-U:0,B="offsetHeight"in G?G.offsetHeight-G.clientHeight-j-F:0,q="offsetWidth"in G?G.offsetWidth===0?0:oe/G.offsetWidth:0,L="offsetHeight"in G?G.offsetHeight===0?0:ne/G.offsetHeight:0;if(C===G)T=p==="start"?O:p==="end"?O-h:p==="nearest"?vt(g,g+h,h,j,F,g+O,g+O+w,w):O-h/2,M=d==="start"?W:d==="center"?W-y/2:d==="end"?W-y:vt(m,m+y,y,Q,U,m+W,m+W+D,D),T=Math.max(0,T+g),M=Math.max(0,M+m);else{T=p==="start"?O-se-j:p==="end"?O-I+F+B:p==="nearest"?vt(se,I,ne,j,F+B,O,O+w,w):O-(se+ne/2)+B/2,M=d==="start"?W-V-Q:d==="center"?W-(V+oe/2)+A/2:d==="end"?W-Y+U+A:vt(V,Y,oe,Q,U+A,W,W+D,D);let{scrollLeft:le,scrollTop:ce}=G;T=Math.max(0,Math.min(ce+T/L,G.scrollHeight-ne/L+B)),M=Math.max(0,Math.min(le+M/q,G.scrollWidth-oe/q+A)),O+=ce-T,W+=le-M}P.push({el:G,top:T,left:M})}return P},_h=0;function wi(e){return typeof e=="function"?e:Be}function Be(){}function Wf(e,s){if(!!e){var t=uh(e,{boundary:s,block:"nearest",scrollMode:"if-needed"});t.forEach(function(o){var a=o.el,n=o.top,i=o.left;a.scrollTop=n,a.scrollLeft=i})}}function $i(e,s,t){var o=e===s||s instanceof t.Node&&e.contains&&e.contains(s);return o}function Qt(e,s){var t;function o(){t&&clearTimeout(t)}function a(){for(var n=arguments.length,i=new Array(n),l=0;l<n;l++)i[l]=arguments[l];o(),t=setTimeout(function(){t=null,e.apply(void 0,i)},s)}return a.cancel=o,a}function he(){for(var e=arguments.length,s=new Array(e),t=0;t<e;t++)s[t]=arguments[t];return function(o){for(var a=arguments.length,n=new Array(a>1?a-1:0),i=1;i<a;i++)n[i-1]=arguments[i];return s.some(function(l){return l&&l.apply(void 0,[o].concat(n)),o.preventDownshiftDefault||o.hasOwnProperty("nativeEvent")&&o.nativeEvent.preventDownshiftDefault})}}function Xe(){for(var e=arguments.length,s=new Array(e),t=0;t<e;t++)s[t]=arguments[t];return function(o){s.forEach(function(a){typeof a=="function"?a(o):a&&(a.current=o)})}}function Kf(){return String(_h++)}function Uf(e){var s=e.isOpen,t=e.resultCount,o=e.previousResultCount;return s?t?t!==o?t+" result"+(t===1?" is":"s are")+" available, use up and down arrow keys to navigate. Press Enter key to select.":"":"No results are available.":""}function Ei(e,s){return e=Array.isArray(e)?e[0]:e,!e&&s?s:e}function Zf(e){return typeof e.type=="string"}function Yf(e){return e.props}function mh(e,s){console.error('The property "'+s+'" is required in "'+e+'"')}var bh=["highlightedIndex","inputValue","isOpen","selectedItem","type"];function gt(e){e===void 0&&(e={});var s={};return bh.forEach(function(t){e.hasOwnProperty(t)&&(s[t]=e[t])}),s}function Qs(e,s){return Object.keys(e).reduce(function(t,o){return t[o]=Tt(s,o)?s[o]:e[o],t},{})}function Tt(e,s){return e[s]!==void 0}function Vs(e){var s=e.key,t=e.keyCode;return t>=37&&t<=40&&s.indexOf("Arrow")!==0?"Arrow"+s:s}function hh(e){return Object.prototype.toString.call(e)==="[object Object]"}function Je(e,s,t,o,a){if(a===void 0&&(a=!0),t===0)return-1;var n=t-1;(typeof s!="number"||s<0||s>=t)&&(s=e>0?-1:n+1);var i=s+e;i<0?i=a?n:0:i>n&&(i=a?0:n);var l=cs(e,i,t,o,a);return l===-1?s>=t?-1:s:l}function cs(e,s,t,o,a){var n=o(s);if(!n||!n.hasAttribute("disabled"))return s;if(e>0){for(var i=s+1;i<t;i++)if(!o(i).hasAttribute("disabled"))return i}else for(var l=s-1;l>=0;l--)if(!o(l).hasAttribute("disabled"))return l;return a?e>0?cs(1,0,t,o,!1):cs(-1,t-1,t,o,!1):-1}function Nt(e,s,t,o){return o===void 0&&(o=!0),s.some(function(a){return a&&($i(a,e,t)||o&&$i(a,t.document.activeElement,t))})}var En=Be;process.env.NODE_ENV!=="production"&&(En=function(s,t,o){var a="This prop should not switch from controlled to uncontrolled (or vice versa). Decide between using a controlled or uncontrolled Downshift element for the lifetime of the component. More info: https://github.com/downshift-js/downshift#control-props";Object.keys(s).forEach(function(n){t[n]!==void 0&&o[n]===void 0?console.error('downshift: A component has changed the controlled prop "'+n+'" to be uncontrolled. '+a):t[n]===void 0&&o[n]!==void 0&&console.error('downshift: A component has changed the uncontrolled prop "'+n+'" to be controlled. '+a)})});var vh=Qt(function(e){Gf(e).textContent=""},500);function In(e,s){var t=Gf(s);!e||(t.textContent=e,vh(s))}function Gf(e){e===void 0&&(e=document);var s=e.getElementById("a11y-status-message");return s||(s=e.createElement("div"),s.setAttribute("id","a11y-status-message"),s.setAttribute("role","status"),s.setAttribute("aria-live","polite"),s.setAttribute("aria-relevant","additions text"),Object.assign(s.style,{border:"0",clip:"rect(0 0 0 0)",height:"1px",margin:"-1px",overflow:"hidden",padding:"0",position:"absolute",width:"1px"}),e.body.appendChild(s),s)}var Xf=process.env.NODE_ENV!=="production"?"__autocomplete_unknown__":0,Jf=process.env.NODE_ENV!=="production"?"__autocomplete_mouseup__":1,Qf=process.env.NODE_ENV!=="production"?"__autocomplete_item_mouseenter__":2,xt=process.env.NODE_ENV!=="production"?"__autocomplete_keydown_arrow_up__":3,kt=process.env.NODE_ENV!=="production"?"__autocomplete_keydown_arrow_down__":4,e8=process.env.NODE_ENV!=="production"?"__autocomplete_keydown_escape__":5,s8=process.env.NODE_ENV!=="production"?"__autocomplete_keydown_enter__":6,t8=process.env.NODE_ENV!=="production"?"__autocomplete_keydown_home__":7,o8=process.env.NODE_ENV!=="production"?"__autocomplete_keydown_end__":8,n8=process.env.NODE_ENV!=="production"?"__autocomplete_click_item__":9,a8=process.env.NODE_ENV!=="production"?"__autocomplete_blur_input__":10,i8=process.env.NODE_ENV!=="production"?"__autocomplete_change_input__":11,r8=process.env.NODE_ENV!=="production"?"__autocomplete_keydown_space_button__":12,qo=process.env.NODE_ENV!=="production"?"__autocomplete_click_button__":13,l8=process.env.NODE_ENV!=="production"?"__autocomplete_blur_button__":14,f8=process.env.NODE_ENV!=="production"?"__autocomplete_controlled_prop_updated_selected_item__":15,c8=process.env.NODE_ENV!=="production"?"__autocomplete_touchend__":16,gh=Object.freeze({__proto__:null,unknown:Xf,mouseUp:Jf,itemMouseEnter:Qf,keyDownArrowUp:xt,keyDownArrowDown:kt,keyDownEscape:e8,keyDownEnter:s8,keyDownHome:t8,keyDownEnd:o8,clickItem:n8,blurInput:a8,changeInput:i8,keyDownSpaceButton:r8,clickButton:qo,blurButton:l8,controlledPropUpdatedSelectedItem:f8,touchEnd:c8}),Ch=["refKey","ref"],yh=["onClick","onPress","onKeyDown","onKeyUp","onBlur"],xh=["onKeyDown","onBlur","onChange","onInput","onChangeText"],kh=["refKey","ref"],wh=["onMouseMove","onMouseDown","onClick","onPress","index","item"],$h=function(){var e=function(s){th(t,s);function t(a){var n;n=s.call(this,a)||this,n.id=n.props.id||"downshift-"+Kf(),n.menuId=n.props.menuId||n.id+"-menu",n.labelId=n.props.labelId||n.id+"-label",n.inputId=n.props.inputId||n.id+"-input",n.getItemId=n.props.getItemId||function(h){return n.id+"-item-"+h},n.input=null,n.items=[],n.itemCount=null,n.previousResultCount=0,n.timeoutIds=[],n.internalSetTimeout=function(h,m){var g=setTimeout(function(){n.timeoutIds=n.timeoutIds.filter(function(w){return w!==g}),h()},m);n.timeoutIds.push(g)},n.setItemCount=function(h){n.itemCount=h},n.unsetItemCount=function(){n.itemCount=null},n.setHighlightedIndex=function(h,m){h===void 0&&(h=n.props.defaultHighlightedIndex),m===void 0&&(m={}),m=gt(m),n.internalSetState(S({highlightedIndex:h},m))},n.clearSelection=function(h){n.internalSetState({selectedItem:null,inputValue:"",highlightedIndex:n.props.defaultHighlightedIndex,isOpen:n.props.defaultIsOpen},h)},n.selectItem=function(h,m,g){m=gt(m),n.internalSetState(S({isOpen:n.props.defaultIsOpen,highlightedIndex:n.props.defaultHighlightedIndex,selectedItem:h,inputValue:n.props.itemToString(h)},m),g)},n.selectItemAtIndex=function(h,m,g){var w=n.items[h];w!=null&&n.selectItem(w,m,g)},n.selectHighlightedItem=function(h,m){return n.selectItemAtIndex(n.getState().highlightedIndex,h,m)},n.internalSetState=function(h,m){var g,w,D={},E=typeof h=="function";return!E&&h.hasOwnProperty("inputValue")&&n.props.onInputValueChange(h.inputValue,S({},n.getStateAndHelpers(),h)),n.setState(function($){$=n.getState($);var R=E?h($):h;R=n.props.stateReducer($,R),g=R.hasOwnProperty("selectedItem");var H={};return g&&R.selectedItem!==$.selectedItem&&(w=R.selectedItem),R.type=R.type||Xf,Object.keys(R).forEach(function(O){$[O]!==R[O]&&(D[O]=R[O]),O!=="type"&&(R[O],Tt(n.props,O)||(H[O]=R[O]))}),E&&R.hasOwnProperty("inputValue")&&n.props.onInputValueChange(R.inputValue,S({},n.getStateAndHelpers(),R)),H},function(){wi(m)();var $=Object.keys(D).length>1;$&&n.props.onStateChange(D,n.getStateAndHelpers()),g&&n.props.onSelect(h.selectedItem,n.getStateAndHelpers()),w!==void 0&&n.props.onChange(w,n.getStateAndHelpers()),n.props.onUserAction(D,n.getStateAndHelpers())})},n.rootRef=function(h){return n._rootNode=h},n.getRootProps=function(h,m){var g,w=h===void 0?{}:h,D=w.refKey,E=D===void 0?"ref":D,$=w.ref,R=je(w,Ch),H=m===void 0?{}:m,O=H.suppressRefError,W=O===void 0?!1:O;n.getRootProps.called=!0,n.getRootProps.refKey=E,n.getRootProps.suppressRefError=W;var P=n.getState(),K=P.isOpen;return S((g={},g[E]=Xe($,n.rootRef),g.role="combobox",g["aria-expanded"]=K,g["aria-haspopup"]="listbox",g["aria-owns"]=K?n.menuId:null,g["aria-labelledby"]=n.labelId,g),R)},n.keyDownHandlers={ArrowDown:function(m){var g=this;if(m.preventDefault(),this.getState().isOpen){var w=m.shiftKey?5:1;this.moveHighlightedIndex(w,{type:kt})}else this.internalSetState({isOpen:!0,type:kt},function(){var D=g.getItemCount();if(D>0){var E=g.getState(),$=E.highlightedIndex,R=Je(1,$,D,function(H){return g.getItemNodeFromIndex(H)});g.setHighlightedIndex(R,{type:kt})}})},ArrowUp:function(m){var g=this;if(m.preventDefault(),this.getState().isOpen){var w=m.shiftKey?-5:-1;this.moveHighlightedIndex(w,{type:xt})}else this.internalSetState({isOpen:!0,type:xt},function(){var D=g.getItemCount();if(D>0){var E=g.getState(),$=E.highlightedIndex,R=Je(-1,$,D,function(H){return g.getItemNodeFromIndex(H)});g.setHighlightedIndex(R,{type:xt})}})},Enter:function(m){if(m.which!==229){var g=this.getState(),w=g.isOpen,D=g.highlightedIndex;if(w&&D!=null){m.preventDefault();var E=this.items[D],$=this.getItemNodeFromIndex(D);if(E==null||$&&$.hasAttribute("disabled"))return;this.selectHighlightedItem({type:s8})}}},Escape:function(m){m.preventDefault(),this.reset(S({type:e8},!this.state.isOpen&&{selectedItem:null,inputValue:""}))}},n.buttonKeyDownHandlers=S({},n.keyDownHandlers,{" ":function(m){m.preventDefault(),this.toggleMenu({type:r8})}}),n.inputKeyDownHandlers=S({},n.keyDownHandlers,{Home:function(m){var g=this,w=this.getState(),D=w.isOpen;if(!!D){m.preventDefault();var E=this.getItemCount();if(!(E<=0||!D)){var $=cs(1,0,E,function(R){return g.getItemNodeFromIndex(R)},!1);this.setHighlightedIndex($,{type:t8})}}},End:function(m){var g=this,w=this.getState(),D=w.isOpen;if(!!D){m.preventDefault();var E=this.getItemCount();if(!(E<=0||!D)){var $=cs(-1,E-1,E,function(R){return g.getItemNodeFromIndex(R)},!1);this.setHighlightedIndex($,{type:o8})}}}}),n.getToggleButtonProps=function(h){var m=h===void 0?{}:h,g=m.onClick;m.onPress;var w=m.onKeyDown,D=m.onKeyUp,E=m.onBlur,$=je(m,yh),R=n.getState(),H=R.isOpen,O={onClick:he(g,n.buttonHandleClick),onKeyDown:he(w,n.buttonHandleKeyDown),onKeyUp:he(D,n.buttonHandleKeyUp),onBlur:he(E,n.buttonHandleBlur)},W=$.disabled?{}:O;return S({type:"button",role:"button","aria-label":H?"close menu":"open menu","aria-haspopup":!0,"data-toggle":!0},W,$)},n.buttonHandleKeyUp=function(h){h.preventDefault()},n.buttonHandleKeyDown=function(h){var m=Vs(h);n.buttonKeyDownHandlers[m]&&n.buttonKeyDownHandlers[m].call(pi(n),h)},n.buttonHandleClick=function(h){h.preventDefault(),n.props.environment.document.activeElement===n.props.environment.document.body&&h.target.focus(),process.env.NODE_ENV==="test"?n.toggleMenu({type:qo}):n.internalSetTimeout(function(){return n.toggleMenu({type:qo})})},n.buttonHandleBlur=function(h){var m=h.target;n.internalSetTimeout(function(){!n.isMouseDown&&(n.props.environment.document.activeElement==null||n.props.environment.document.activeElement.id!==n.inputId)&&n.props.environment.document.activeElement!==m&&n.reset({type:l8})})},n.getLabelProps=function(h){return S({htmlFor:n.inputId,id:n.labelId},h)},n.getInputProps=function(h){var m=h===void 0?{}:h,g=m.onKeyDown,w=m.onBlur,D=m.onChange,E=m.onInput;m.onChangeText;var $=je(m,xh),R,H={};R="onChange";var O=n.getState(),W=O.inputValue,P=O.isOpen,K=O.highlightedIndex;if(!$.disabled){var G;H=(G={},G[R]=he(D,E,n.inputHandleChange),G.onKeyDown=he(g,n.inputHandleKeyDown),G.onBlur=he(w,n.inputHandleBlur),G)}return S({"aria-autocomplete":"list","aria-activedescendant":P&&typeof K=="number"&&K>=0?n.getItemId(K):null,"aria-controls":P?n.menuId:null,"aria-labelledby":$&&$["aria-label"]?void 0:n.labelId,autoComplete:"off",value:W,id:n.inputId},H,$)},n.inputHandleKeyDown=function(h){var m=Vs(h);m&&n.inputKeyDownHandlers[m]&&n.inputKeyDownHandlers[m].call(pi(n),h)},n.inputHandleChange=function(h){n.internalSetState({type:i8,isOpen:!0,inputValue:h.target.value,highlightedIndex:n.props.defaultHighlightedIndex})},n.inputHandleBlur=function(){n.internalSetTimeout(function(){var h=n.props.environment.document&&!!n.props.environment.document.activeElement&&!!n.props.environment.document.activeElement.dataset&&n.props.environment.document.activeElement.dataset.toggle&&n._rootNode&&n._rootNode.contains(n.props.environment.document.activeElement);!n.isMouseDown&&!h&&n.reset({type:a8})})},n.menuRef=function(h){n._menuNode=h},n.getMenuProps=function(h,m){var g,w=h===void 0?{}:h,D=w.refKey,E=D===void 0?"ref":D,$=w.ref,R=je(w,kh),H=m===void 0?{}:m,O=H.suppressRefError,W=O===void 0?!1:O;return n.getMenuProps.called=!0,n.getMenuProps.refKey=E,n.getMenuProps.suppressRefError=W,S((g={},g[E]=Xe($,n.menuRef),g.role="listbox",g["aria-labelledby"]=R&&R["aria-label"]?null:n.labelId,g.id=n.menuId,g),R)},n.getItemProps=function(h){var m,g=h===void 0?{}:h,w=g.onMouseMove,D=g.onMouseDown,E=g.onClick;g.onPress;var $=g.index,R=g.item,H=R===void 0?process.env.NODE_ENV==="production"?void 0:mh("getItemProps","item"):R,O=je(g,wh);$===void 0?(n.items.push(H),$=n.items.indexOf(H)):n.items[$]=H;var W="onClick",P=E,K=(m={onMouseMove:he(w,function(){$!==n.getState().highlightedIndex&&(n.setHighlightedIndex($,{type:Qf}),n.avoidScrolling=!0,n.internalSetTimeout(function(){return n.avoidScrolling=!1},250))}),onMouseDown:he(D,function(ne){ne.preventDefault()})},m[W]=he(P,function(){n.selectItemAtIndex($,{type:n8})}),m),G=O.disabled?{onMouseDown:K.onMouseDown}:K;return S({id:n.getItemId($),role:"option","aria-selected":n.getState().highlightedIndex===$},G,O)},n.clearItems=function(){n.items=[]},n.reset=function(h,m){h===void 0&&(h={}),h=gt(h),n.internalSetState(function(g){var w=g.selectedItem;return S({isOpen:n.props.defaultIsOpen,highlightedIndex:n.props.defaultHighlightedIndex,inputValue:n.props.itemToString(w)},h)},m)},n.toggleMenu=function(h,m){h===void 0&&(h={}),h=gt(h),n.internalSetState(function(g){var w=g.isOpen;return S({isOpen:!w},w&&{highlightedIndex:n.props.defaultHighlightedIndex},h)},function(){var g=n.getState(),w=g.isOpen,D=g.highlightedIndex;w&&n.getItemCount()>0&&typeof D=="number"&&n.setHighlightedIndex(D,h),wi(m)()})},n.openMenu=function(h){n.internalSetState({isOpen:!0},h)},n.closeMenu=function(h){n.internalSetState({isOpen:!1},h)},n.updateStatus=Qt(function(){var h=n.getState(),m=n.items[h.highlightedIndex],g=n.getItemCount(),w=n.props.getA11yStatusMessage(S({itemToString:n.props.itemToString,previousResultCount:n.previousResultCount,resultCount:g,highlightedItem:m},h));n.previousResultCount=g,In(w,n.props.environment.document)},200);var i=n.props,l=i.defaultHighlightedIndex,f=i.initialHighlightedIndex,p=f===void 0?l:f,d=i.defaultIsOpen,c=i.initialIsOpen,b=c===void 0?d:c,u=i.initialInputValue,C=u===void 0?"":u,_=i.initialSelectedItem,x=_===void 0?null:_,y=n.getState({highlightedIndex:p,isOpen:b,inputValue:C,selectedItem:x});return y.selectedItem!=null&&n.props.initialInputValue===void 0&&(y.inputValue=n.props.itemToString(y.selectedItem)),n.state=y,n}var o=t.prototype;return o.internalClearTimeouts=function(){this.timeoutIds.forEach(function(n){clearTimeout(n)}),this.timeoutIds=[]},o.getState=function(n){return n===void 0&&(n=this.state),Qs(n,this.props)},o.getItemCount=function(){var n=this.items.length;return this.itemCount!=null?n=this.itemCount:this.props.itemCount!==void 0&&(n=this.props.itemCount),n},o.getItemNodeFromIndex=function(n){return this.props.environment.document.getElementById(this.getItemId(n))},o.scrollHighlightedItemIntoView=function(){{var n=this.getItemNodeFromIndex(this.getState().highlightedIndex);this.props.scrollIntoView(n,this._menuNode)}},o.moveHighlightedIndex=function(n,i){var l=this,f=this.getItemCount(),p=this.getState(),d=p.highlightedIndex;if(f>0){var c=Je(n,d,f,function(b){return l.getItemNodeFromIndex(b)});this.setHighlightedIndex(c,i)}},o.getStateAndHelpers=function(){var n=this.getState(),i=n.highlightedIndex,l=n.inputValue,f=n.selectedItem,p=n.isOpen,d=this.props.itemToString,c=this.id,b=this.getRootProps,u=this.getToggleButtonProps,C=this.getLabelProps,_=this.getMenuProps,x=this.getInputProps,y=this.getItemProps,h=this.openMenu,m=this.closeMenu,g=this.toggleMenu,w=this.selectItem,D=this.selectItemAtIndex,E=this.selectHighlightedItem,$=this.setHighlightedIndex,R=this.clearSelection,H=this.clearItems,O=this.reset,W=this.setItemCount,P=this.unsetItemCount,K=this.internalSetState;return{getRootProps:b,getToggleButtonProps:u,getLabelProps:C,getMenuProps:_,getInputProps:x,getItemProps:y,reset:O,openMenu:h,closeMenu:m,toggleMenu:g,selectItem:w,selectItemAtIndex:D,selectHighlightedItem:E,setHighlightedIndex:$,clearSelection:R,clearItems:H,setItemCount:W,unsetItemCount:P,setState:K,itemToString:d,id:c,highlightedIndex:i,inputValue:l,isOpen:p,selectedItem:f}},o.componentDidMount=function(){var n=this;process.env.NODE_ENV!=="production"&&!0&&this.getMenuProps.called&&!this.getMenuProps.suppressRefError&&Ii(this._menuNode,this.getMenuProps);{var i=function(){n.isMouseDown=!0},l=function(u){n.isMouseDown=!1;var C=Nt(u.target,[n._rootNode,n._menuNode],n.props.environment);!C&&n.getState().isOpen&&n.reset({type:Jf},function(){return n.props.onOuterClick(n.getStateAndHelpers())})},f=function(){n.isTouchMove=!1},p=function(){n.isTouchMove=!0},d=function(u){var C=Nt(u.target,[n._rootNode,n._menuNode],n.props.environment,!1);!n.isTouchMove&&!C&&n.getState().isOpen&&n.reset({type:c8},function(){return n.props.onOuterClick(n.getStateAndHelpers())})},c=this.props.environment;c.addEventListener("mousedown",i),c.addEventListener("mouseup",l),c.addEventListener("touchstart",f),c.addEventListener("touchmove",p),c.addEventListener("touchend",d),this.cleanup=function(){n.internalClearTimeouts(),n.updateStatus.cancel(),c.removeEventListener("mousedown",i),c.removeEventListener("mouseup",l),c.removeEventListener("touchstart",f),c.removeEventListener("touchmove",p),c.removeEventListener("touchend",d)}}},o.shouldScroll=function(n,i){var l=this.props.highlightedIndex===void 0?this.getState():this.props,f=l.highlightedIndex,p=i.highlightedIndex===void 0?n:i,d=p.highlightedIndex,c=f&&this.getState().isOpen&&!n.isOpen,b=f!==d;return c||b},o.componentDidUpdate=function(n,i){process.env.NODE_ENV!=="production"&&(En(this.state,n,this.props),this.getMenuProps.called&&!this.getMenuProps.suppressRefError&&Ii(this._menuNode,this.getMenuProps)),Tt(this.props,"selectedItem")&&this.props.selectedItemChanged(n.selectedItem,this.props.selectedItem)&&this.internalSetState({type:f8,inputValue:this.props.itemToString(this.props.selectedItem)}),!this.avoidScrolling&&this.shouldScroll(i,n)&&this.scrollHighlightedItemIntoView(),this.updateStatus()},o.componentWillUnmount=function(){this.cleanup()},o.render=function(){var n=Ei(this.props.children,Be);this.clearItems(),this.getRootProps.called=!1,this.getRootProps.refKey=void 0,this.getRootProps.suppressRefError=void 0,this.getMenuProps.called=!1,this.getMenuProps.refKey=void 0,this.getMenuProps.suppressRefError=void 0,this.getLabelProps.called=!1,this.getInputProps.called=!1;var i=Ei(n(this.getStateAndHelpers()));if(!i)return null;if(this.getRootProps.called||this.props.suppressRefError)return process.env.NODE_ENV!=="production"&&!this.getRootProps.suppressRefError&&!this.props.suppressRefError&&Eh(i,this.getRootProps),i;if(Zf(i))return r.cloneElement(i,this.getRootProps(Yf(i)));if(process.env.NODE_ENV!=="production")throw new Error("downshift: If you return a non-DOM element, you must apply the getRootProps function")},t}(r.Component);return e.defaultProps={defaultHighlightedIndex:null,defaultIsOpen:!1,getA11yStatusMessage:Uf,itemToString:function(t){return t==null?"":(process.env.NODE_ENV!=="production"&&hh(t)&&!t.hasOwnProperty("toString")&&console.warn("downshift: An object was passed to the default implementation of `itemToString`. You should probably provide your own `itemToString` implementation. Please refer to the `itemToString` API documentation.","The object that was passed:",t),String(t))},onStateChange:Be,onInputValueChange:Be,onUserAction:Be,onChange:Be,onSelect:Be,onOuterClick:Be,selectedItemChanged:function(t,o){return t!==o},environment:typeof window>"u"?{}:window,stateReducer:function(t,o){return o},suppressRefError:!1,scrollIntoView:Wf},e.stateChangeTypes=gh,e}();process.env.NODE_ENV!=="production"&&($h.propTypes={children:N.exports.func,defaultHighlightedIndex:N.exports.number,defaultIsOpen:N.exports.bool,initialHighlightedIndex:N.exports.number,initialSelectedItem:N.exports.any,initialInputValue:N.exports.string,initialIsOpen:N.exports.bool,getA11yStatusMessage:N.exports.func,itemToString:N.exports.func,onChange:N.exports.func,onSelect:N.exports.func,onStateChange:N.exports.func,onInputValueChange:N.exports.func,onUserAction:N.exports.func,onOuterClick:N.exports.func,selectedItemChanged:N.exports.func,stateReducer:N.exports.func,itemCount:N.exports.number,id:N.exports.string,environment:N.exports.shape({addEventListener:N.exports.func,removeEventListener:N.exports.func,document:N.exports.shape({getElementById:N.exports.func,activeElement:N.exports.any,body:N.exports.any})}),suppressRefError:N.exports.bool,scrollIntoView:N.exports.func,selectedItem:N.exports.any,isOpen:N.exports.bool,inputValue:N.exports.string,highlightedIndex:N.exports.number,labelId:N.exports.string,inputId:N.exports.string,menuId:N.exports.string,getItemId:N.exports.func});function Ii(e,s){var t=s.refKey;e||console.error('downshift: The ref prop "'+t+'" from getMenuProps was not applied correctly on your menu element.')}function Eh(e,s){var t=s.refKey,o=t!=="ref",a=!Zf(e);a&&!o&&!zo.exports.isForwardRef(e)?console.error("downshift: You returned a non-DOM element. You must specify a refKey in getRootProps"):!a&&o&&console.error('downshift: You returned a DOM element. You should not specify a refKey in getRootProps. You specified "'+t+'"'),!zo.exports.isForwardRef(e)&&!Yf(e)[t]&&console.error('downshift: You must apply the ref prop "'+t+'" from getRootProps onto your root element.')}var Ih=["isInitialMount","highlightedIndex","items","environment"],p8={highlightedIndex:-1,isOpen:!1,selectedItem:null,inputValue:""};function Sh(e,s,t){var o=e.props,a=e.type,n={};Object.keys(s).forEach(function(i){Rh(i,e,s,t),t[i]!==s[i]&&(n[i]=t[i])}),o.onStateChange&&Object.keys(n).length&&o.onStateChange(S({type:a},n))}function Rh(e,s,t,o){var a=s.props,n=s.type,i="on"+Rn(e)+"Change";a[i]&&o[e]!==void 0&&o[e]!==t[e]&&a[i](S({type:n},o))}function Ph(e,s){return s.changes}function Dh(e){var s=e.selectedItem,t=e.itemToString;return s?t(s)+" has been selected.":""}var Oh=Qt(function(e,s){In(e(),s)},200),Th=typeof window<"u"&&typeof window.document<"u"&&typeof window.document.createElement<"u"?r.useLayoutEffect:r.useEffect;function d8(e){var s=e.id,t=s===void 0?"downshift-"+Kf():s,o=e.labelId,a=e.menuId,n=e.getItemId,i=e.toggleButtonId,l=e.inputId,f=r.useRef({labelId:o||t+"-label",menuId:a||t+"-menu",getItemId:n||function(p){return t+"-item-"+p},toggleButtonId:i||t+"-toggle-button",inputId:l||t+"-input"});return f.current}function Sn(e,s,t,o){var a,n;if(e===void 0){if(s===void 0)throw new Error(o);a=t[s],n=s}else n=s===void 0?t.indexOf(e):s,a=e;return[a,n]}function Nh(e){return e?String(e):""}function Mh(e){return/^\S{1}$/.test(e)}function Rn(e){return""+e.slice(0,1).toUpperCase()+e.slice(1)}function eo(e){var s=r.useRef(e);return s.current=e,s}function u8(e,s,t){var o=r.useRef(),a=r.useRef(),n=r.useCallback(function(b,u){a.current=u,b=Qs(b,u.props);var C=e(b,u),_=u.props.stateReducer(b,S({},u,{changes:C}));return _},[e]),i=r.useReducer(n,s),l=i[0],f=i[1],p=eo(t),d=r.useCallback(function(b){return f(S({props:p.current},b))},[p]),c=a.current;return r.useEffect(function(){c&&o.current&&o.current!==l&&Sh(c,Qs(o.current,c.props),l),o.current=l},[l,t,c]),[l,d]}function _8(e,s,t){var o=u8(e,s,t),a=o[0],n=o[1];return[Qs(a,t),n]}var Zs={itemToString:Nh,stateReducer:Ph,getA11ySelectionMessage:Dh,scrollIntoView:Wf,environment:typeof window>"u"?{}:window};function Ke(e,s,t){t===void 0&&(t=p8);var o=e["default"+Rn(s)];return o!==void 0?o:t[s]}function Ks(e,s,t){t===void 0&&(t=p8);var o=e[s];if(o!==void 0)return o;var a=e["initial"+Rn(s)];return a!==void 0?a:Ke(e,s,t)}function m8(e){var s=Ks(e,"selectedItem"),t=Ks(e,"isOpen"),o=Ks(e,"highlightedIndex"),a=Ks(e,"inputValue");return{highlightedIndex:o<0&&s&&t?e.items.indexOf(s):o,isOpen:t,selectedItem:s,inputValue:a}}function $s(e,s,t){var o=e.items,a=e.initialHighlightedIndex,n=e.defaultHighlightedIndex,i=s.selectedItem,l=s.highlightedIndex;return o.length===0?-1:a!==void 0&&l===a?a:n!==void 0?n:i?o.indexOf(i):t===0?-1:t<0?o.length-1:0}function b8(e,s,t,o){var a=r.useRef({isMouseDown:!1,isTouchMove:!1});return r.useEffect(function(){if((t==null?void 0:t.addEventListener)!=null){var n=function(){a.current.isMouseDown=!0},i=function(c){a.current.isMouseDown=!1,e&&!Nt(c.target,s.map(function(b){return b.current}),t)&&o()},l=function(){a.current.isTouchMove=!1},f=function(){a.current.isTouchMove=!0},p=function(c){e&&!a.current.isTouchMove&&!Nt(c.target,s.map(function(b){return b.current}),t,!1)&&o()};return t.addEventListener("mousedown",n),t.addEventListener("mouseup",i),t.addEventListener("touchstart",l),t.addEventListener("touchmove",f),t.addEventListener("touchend",p),function(){t.removeEventListener("mousedown",n),t.removeEventListener("mouseup",i),t.removeEventListener("touchstart",l),t.removeEventListener("touchmove",f),t.removeEventListener("touchend",p)}}},[e,t]),a}var so=function(){return Be};process.env.NODE_ENV!=="production"&&(so=function(){for(var s=r.useRef(!0),t=arguments.length,o=new Array(t),a=0;a<t;a++)o[a]=arguments[a];var n=r.useRef(o.reduce(function(l,f){return l[f]={},l},{}));r.useEffect(function(){Object.keys(n.current).forEach(function(l){var f=n.current[l];if(s.current&&!Object.keys(f).length){console.error("downshift: You forgot to call the "+l+" getter function on your component / element.");return}var p=f.suppressRefError,d=f.refKey,c=f.elementRef;(!c||!c.current)&&!p&&console.error('downshift: The ref prop "'+d+'" from '+l+" was not applied correctly on your element.")}),s.current=!1});var i=r.useCallback(function(l,f,p,d){n.current[l]={suppressRefError:f,refKey:p,elementRef:d}},[]);return i});function Mt(e,s,t){var o=t.isInitialMount,a=t.highlightedIndex,n=t.items,i=t.environment,l=je(t,Ih);r.useEffect(function(){o||Oh(function(){return e(S({highlightedIndex:a,highlightedItem:n[a],resultCount:n.length},l))},i.document)},s)}function h8(e){var s=e.highlightedIndex,t=e.isOpen,o=e.itemRefs,a=e.getItemNodeFromIndex,n=e.menuElement,i=e.scrollIntoView,l=r.useRef(!0);return Th(function(){s<0||!t||!Object.keys(o.current).length||(l.current===!1?l.current=!0:i(a(s),n))},[s]),l}var to=Be;process.env.NODE_ENV!=="production"&&(to=function(s){var t=s.isInitialMount,o=s.props,a=s.state,n=r.useRef(o);r.useEffect(function(){t||(En(a,n.current,o),n.current=o)},[a,o,t])});function At(e,s,t){var o;t===void 0&&(t=!0);var a=((o=e.items)==null?void 0:o.length)&&s>=0;return S({isOpen:!1,highlightedIndex:-1},a&&S({selectedItem:e.items[s],isOpen:Ke(e,"isOpen"),highlightedIndex:Ke(e,"highlightedIndex")},t&&{inputValue:e.itemToString(e.items[s])}))}function v8(e,s,t){var o=s.type,a=s.props,n;switch(o){case t.ItemMouseMove:n={highlightedIndex:s.disabled?-1:s.index};break;case t.MenuMouseLeave:n={highlightedIndex:-1};break;case t.ToggleButtonClick:case t.FunctionToggleMenu:n={isOpen:!e.isOpen,highlightedIndex:e.isOpen?-1:$s(a,e,0)};break;case t.FunctionOpenMenu:n={isOpen:!0,highlightedIndex:$s(a,e,0)};break;case t.FunctionCloseMenu:n={isOpen:!1};break;case t.FunctionSetHighlightedIndex:n={highlightedIndex:s.highlightedIndex};break;case t.FunctionSetInputValue:n={inputValue:s.inputValue};break;case t.FunctionReset:n={highlightedIndex:Ke(a,"highlightedIndex"),isOpen:Ke(a,"isOpen"),selectedItem:Ke(a,"selectedItem"),inputValue:Ke(a,"inputValue")};break;default:throw new Error("Reducer called without proper action type.")}return S({},e,n)}function Ah(e){for(var s=e.keysSoFar,t=e.highlightedIndex,o=e.items,a=e.itemToString,n=e.getItemNodeFromIndex,i=s.toLowerCase(),l=0;l<o.length;l++){var f=(l+t+(s.length<2?1:0))%o.length,p=o[f];if(p!==void 0&&a(p).toLowerCase().startsWith(i)){var d=n(f);if(!(d!=null&&d.hasAttribute("disabled")))return f}}return t}var Lh={items:N.exports.array.isRequired,itemToString:N.exports.func,getA11yStatusMessage:N.exports.func,getA11ySelectionMessage:N.exports.func,highlightedIndex:N.exports.number,defaultHighlightedIndex:N.exports.number,initialHighlightedIndex:N.exports.number,isOpen:N.exports.bool,defaultIsOpen:N.exports.bool,initialIsOpen:N.exports.bool,selectedItem:N.exports.any,initialSelectedItem:N.exports.any,defaultSelectedItem:N.exports.any,id:N.exports.string,labelId:N.exports.string,menuId:N.exports.string,getItemId:N.exports.func,toggleButtonId:N.exports.string,stateReducer:N.exports.func,onSelectedItemChange:N.exports.func,onHighlightedIndexChange:N.exports.func,onStateChange:N.exports.func,onIsOpenChange:N.exports.func,environment:N.exports.shape({addEventListener:N.exports.func,removeEventListener:N.exports.func,document:N.exports.shape({getElementById:N.exports.func,activeElement:N.exports.any,body:N.exports.any})})};function Vh(e){var s=e.isOpen,t=e.resultCount,o=e.previousResultCount;return s?t?t!==o?"".concat(t," result").concat(t===1?" is":"s are"," available, use up and down arrow keys to navigate. Press Enter or Space Bar keys to select."):"":"No results are available.":""}var Hh=Ye(Ye({},Zs),{getA11yStatusMessage:Vh}),g8=Be;process.env.NODE_ENV!=="production"&&(g8=function(e,s){N.exports.checkPropTypes(Lh,e,"prop",s.name)});var wt=process.env.NODE_ENV!=="production"?"__togglebutton_click__":0,Pn=process.env.NODE_ENV!=="production"?"__togglebutton_keydown_arrow_down__":1,Dn=process.env.NODE_ENV!=="production"?"__togglebutton_keydown_arrow_up__":2,Lt=process.env.NODE_ENV!=="production"?"__togglebutton_keydown_character__":3,On=process.env.NODE_ENV!=="production"?"__togglebutton_keydown_escape__":4,Tn=process.env.NODE_ENV!=="production"?"__togglebutton_keydown_home__":5,Nn=process.env.NODE_ENV!=="production"?"__togglebutton_keydown_end__":6,Mn=process.env.NODE_ENV!=="production"?"__togglebutton_keydown_enter__":7,An=process.env.NODE_ENV!=="production"?"__togglebutton_keydown_space_button__":8,Ln=process.env.NODE_ENV!=="production"?"__togglebutton_keydown_page_up__":9,Vn=process.env.NODE_ENV!=="production"?"__togglebutton_keydown_page_down__":10,Vt=process.env.NODE_ENV!=="production"?"__togglebutton_blur__":11,C8=process.env.NODE_ENV!=="production"?"__menu_mouse_leave__":12,y8=process.env.NODE_ENV!=="production"?"__item_mouse_move__":13,Hn=process.env.NODE_ENV!=="production"?"__item_click__":14,x8=process.env.NODE_ENV!=="production"?"__function_toggle_menu__":15,k8=process.env.NODE_ENV!=="production"?"__function_open_menu__":16,w8=process.env.NODE_ENV!=="production"?"__function_close_menu__":17,$8=process.env.NODE_ENV!=="production"?"__function_set_highlighted_index__":18,jn=process.env.NODE_ENV!=="production"?"__function_select_item__":19,Wo=process.env.NODE_ENV!=="production"?"__function_set_input_value__":20,E8=process.env.NODE_ENV!=="production"?"__function_reset__":21,I8=Object.freeze({__proto__:null,ToggleButtonClick:wt,ToggleButtonKeyDownArrowDown:Pn,ToggleButtonKeyDownArrowUp:Dn,ToggleButtonKeyDownCharacter:Lt,ToggleButtonKeyDownEscape:On,ToggleButtonKeyDownHome:Tn,ToggleButtonKeyDownEnd:Nn,ToggleButtonKeyDownEnter:Mn,ToggleButtonKeyDownSpaceButton:An,ToggleButtonKeyDownPageUp:Ln,ToggleButtonKeyDownPageDown:Vn,ToggleButtonBlur:Vt,MenuMouseLeave:C8,ItemMouseMove:y8,ItemClick:Hn,FunctionToggleMenu:x8,FunctionOpenMenu:k8,FunctionCloseMenu:w8,FunctionSetHighlightedIndex:$8,FunctionSelectItem:jn,FunctionSetInputValue:Wo,FunctionReset:E8});function jh(e,s){var t,o=s.type,a=s.props,n=s.altKey,i;switch(o){case Hn:i={isOpen:Ke(a,"isOpen"),highlightedIndex:Ke(a,"highlightedIndex"),selectedItem:a.items[s.index]};break;case Lt:{var l=s.key,f=""+e.inputValue+l,p=!e.isOpen&&e.selectedItem?a.items.indexOf(e.selectedItem):e.highlightedIndex,d=Ah({keysSoFar:f,highlightedIndex:p,items:a.items,itemToString:a.itemToString,getItemNodeFromIndex:s.getItemNodeFromIndex});i={inputValue:f,highlightedIndex:d,isOpen:!0}}break;case Pn:{var c=e.isOpen?Je(1,e.highlightedIndex,a.items.length,s.getItemNodeFromIndex,!1):n&&e.selectedItem==null?-1:$s(a,e,1);i={highlightedIndex:c,isOpen:!0}}break;case Dn:if(e.isOpen&&n)i=At(a,e.highlightedIndex,!1);else{var b=e.isOpen?Je(-1,e.highlightedIndex,a.items.length,s.getItemNodeFromIndex,!1):$s(a,e,-1);i={highlightedIndex:b,isOpen:!0}}break;case Mn:case An:i=At(a,e.highlightedIndex,!1);break;case Tn:i={highlightedIndex:cs(1,0,a.items.length,s.getItemNodeFromIndex,!1),isOpen:!0};break;case Nn:i={highlightedIndex:cs(-1,a.items.length-1,a.items.length,s.getItemNodeFromIndex,!1),isOpen:!0};break;case Ln:i={highlightedIndex:Je(-10,e.highlightedIndex,a.items.length,s.getItemNodeFromIndex,!1)};break;case Vn:i={highlightedIndex:Je(10,e.highlightedIndex,a.items.length,s.getItemNodeFromIndex,!1)};break;case On:i={isOpen:!1,highlightedIndex:-1};break;case Vt:i=S({isOpen:!1,highlightedIndex:-1},e.highlightedIndex>=0&&((t=a.items)==null?void 0:t.length)&&{selectedItem:a.items[e.highlightedIndex]});break;case jn:i={selectedItem:s.selectedItem};break;default:return v8(e,s,I8)}return S({},e,i)}var Fh=["onMouseLeave","refKey","onKeyDown","onBlur","ref"],Bh=["onBlur","onClick","onPress","onKeyDown","refKey","ref"],zh=["item","index","onMouseMove","onClick","onPress","refKey","ref","disabled"];Fn.stateChangeTypes=I8;function Fn(e){e===void 0&&(e={}),g8(e,Fn);var s=S({},Hh,e),t=s.items,o=s.scrollIntoView,a=s.environment,n=s.itemToString,i=s.getA11ySelectionMessage,l=s.getA11yStatusMessage,f=m8(s),p=_8(jh,f,s),d=p[0],c=p[1],b=d.isOpen,u=d.highlightedIndex,C=d.selectedItem,_=d.inputValue,x=r.useRef(null),y=r.useRef(null),h=r.useRef({}),m=r.useRef(null),g=d8(s),w=r.useRef(),D=r.useRef(!0),E=eo({state:d,props:s}),$=r.useCallback(function(j){return h.current[g.getItemId(j)]},[g]);Mt(l,[b,u,_,t],S({isInitialMount:D.current,previousResultCount:w.current,items:t,environment:a,itemToString:n},d)),Mt(i,[C],S({isInitialMount:D.current,previousResultCount:w.current,items:t,environment:a,itemToString:n},d));var R=h8({menuElement:y.current,highlightedIndex:u,isOpen:b,itemRefs:h,scrollIntoView:o,getItemNodeFromIndex:$});r.useEffect(function(){return m.current=Qt(function(j){j({type:Wo,inputValue:""})},500),function(){m.current.cancel()}},[]),r.useEffect(function(){!_||m.current(c)},[c,_]),to({isInitialMount:D.current,props:s,state:d}),r.useEffect(function(){D.current||(w.current=t.length)});var H=b8(b,[y,x],a,function(){c({type:Vt})}),O=so("getMenuProps","getToggleButtonProps");r.useEffect(function(){return D.current=!1,function(){D.current=!0}},[]),r.useEffect(function(){b||(h.current={})},[b]);var W=r.useMemo(function(){return{ArrowDown:function(U){U.preventDefault(),c({type:Pn,getItemNodeFromIndex:$,altKey:U.altKey})},ArrowUp:function(U){U.preventDefault(),c({type:Dn,getItemNodeFromIndex:$,altKey:U.altKey})},Home:function(U){U.preventDefault(),c({type:Tn,getItemNodeFromIndex:$})},End:function(U){U.preventDefault(),c({type:Nn,getItemNodeFromIndex:$})},Escape:function(){E.current.state.isOpen&&c({type:On})},Enter:function(U){U.preventDefault(),c({type:E.current.state.isOpen?Mn:wt})},PageUp:function(U){E.current.state.isOpen&&(U.preventDefault(),c({type:Ln,getItemNodeFromIndex:$}))},PageDown:function(U){E.current.state.isOpen&&(U.preventDefault(),c({type:Vn,getItemNodeFromIndex:$}))}," ":function(U){U.preventDefault();var F=E.current.state;if(!F.isOpen){c({type:wt});return}F.inputValue?c({type:Lt,key:" ",getItemNodeFromIndex:$}):c({type:An})}}},[c,$,E]),P=r.useCallback(function(){c({type:x8})},[c]),K=r.useCallback(function(){c({type:w8})},[c]),G=r.useCallback(function(){c({type:k8})},[c]),ne=r.useCallback(function(j){c({type:$8,highlightedIndex:j})},[c]),oe=r.useCallback(function(j){c({type:jn,selectedItem:j})},[c]),se=r.useCallback(function(){c({type:E8})},[c]),Y=r.useCallback(function(j){c({type:Wo,inputValue:j})},[c]),I=r.useCallback(function(j){return S({id:g.labelId,htmlFor:g.toggleButtonId},j)},[g]),V=r.useCallback(function(j,U){var F,T=j===void 0?{}:j,M=T.onMouseLeave,A=T.refKey,B=A===void 0?"ref":A;T.onKeyDown,T.onBlur;var q=T.ref,L=je(T,Fh),le=U===void 0?{}:U,ce=le.suppressRefError,ye=ce===void 0?!1:ce,Re=function(){c({type:C8})};return O("getMenuProps",ye,B,y),S((F={},F[B]=Xe(q,function(Ie){y.current=Ie}),F.id=g.menuId,F.role="listbox",F["aria-labelledby"]=L&&L["aria-label"]?void 0:""+g.labelId,F.onMouseLeave=he(M,Re),F),L)},[c,O,g]),J=r.useCallback(function(j,U){var F,T=j===void 0?{}:j,M=T.onBlur,A=T.onClick;T.onPress;var B=T.onKeyDown,q=T.refKey,L=q===void 0?"ref":q,le=T.ref,ce=je(T,Bh),ye=U===void 0?{}:U,Re=ye.suppressRefError,Ie=Re===void 0?!1:Re,Te=E.current.state,_e=function(){c({type:wt})},$e=function(){Te.isOpen&&!H.current.isMouseDown&&c({type:Vt})},Pe=function(Le){var De=Vs(Le);De&&W[De]?W[De](Le):Mh(De)&&c({type:Lt,key:De,getItemNodeFromIndex:$})},Ee=S((F={},F[L]=Xe(le,function(Se){x.current=Se}),F["aria-activedescendant"]=Te.isOpen&&Te.highlightedIndex>-1?g.getItemId(Te.highlightedIndex):"",F["aria-controls"]=g.menuId,F["aria-expanded"]=E.current.state.isOpen,F["aria-haspopup"]="listbox",F["aria-labelledby"]=ce&&ce["aria-label"]?void 0:""+g.labelId,F.id=g.toggleButtonId,F.role="combobox",F.tabIndex=0,F.onBlur=he(M,$e),F),ce);return ce.disabled||(Ee.onClick=he(A,_e),Ee.onKeyDown=he(B,Pe)),O("getToggleButtonProps",Ie,L,x),Ee},[E,g,O,c,H,W,$]),Q=r.useCallback(function(j){var U,F=j===void 0?{}:j,T=F.item,M=F.index,A=F.onMouseMove,B=F.onClick;F.onPress;var q=F.refKey,L=q===void 0?"ref":q,le=F.ref,ce=F.disabled,ye=je(F,zh),Re=E.current,Ie=Re.state,Te=Re.props,_e=Sn(T,M,Te.items,"Pass either item or index to getItemProps!"),$e=_e[0],Pe=_e[1],Ee=function(){Pe!==Ie.highlightedIndex&&(R.current=!1,c({type:y8,index:Pe,disabled:ce}))},Se=function(){c({type:Hn,index:Pe})},Le=S((U={disabled:ce,role:"option","aria-selected":""+($e===C),id:g.getItemId(Pe)},U[L]=Xe(le,function(De){De&&(h.current[g.getItemId(Pe)]=De)}),U),ye);return ce||(Le.onClick=he(B,Se)),Le.onMouseMove=he(A,Ee),Le},[E,C,g,R,c]);return{getToggleButtonProps:J,getLabelProps:I,getMenuProps:V,getItemProps:Q,toggleMenu:P,openMenu:G,closeMenu:K,setHighlightedIndex:ne,selectItem:oe,reset:se,setInputValue:Y,highlightedIndex:u,isOpen:b,selectedItem:C,inputValue:_}}var Bn=process.env.NODE_ENV!=="production"?"__input_keydown_arrow_down__":0,zn=process.env.NODE_ENV!=="production"?"__input_keydown_arrow_up__":1,qn=process.env.NODE_ENV!=="production"?"__input_keydown_escape__":2,Wn=process.env.NODE_ENV!=="production"?"__input_keydown_home__":3,Kn=process.env.NODE_ENV!=="production"?"__input_keydown_end__":4,Un=process.env.NODE_ENV!=="production"?"__input_keydown_page_up__":5,Zn=process.env.NODE_ENV!=="production"?"__input_keydown_page_down__":6,Yn=process.env.NODE_ENV!=="production"?"__input_keydown_enter__":7,Gn=process.env.NODE_ENV!=="production"?"__input_change__":8,Ht=process.env.NODE_ENV!=="production"?"__input_blur__":9,Xn=process.env.NODE_ENV!=="production"?"__input_focus__":10,S8=process.env.NODE_ENV!=="production"?"__menu_mouse_leave__":11,R8=process.env.NODE_ENV!=="production"?"__item_mouse_move__":12,Jn=process.env.NODE_ENV!=="production"?"__item_click__":13,P8=process.env.NODE_ENV!=="production"?"__togglebutton_click__":14,D8=process.env.NODE_ENV!=="production"?"__function_toggle_menu__":15,O8=process.env.NODE_ENV!=="production"?"__function_open_menu__":16,T8=process.env.NODE_ENV!=="production"?"__function_close_menu__":17,N8=process.env.NODE_ENV!=="production"?"__function_set_highlighted_index__":18,Qn=process.env.NODE_ENV!=="production"?"__function_select_item__":19,M8=process.env.NODE_ENV!=="production"?"__function_set_input_value__":20,A8=process.env.NODE_ENV!=="production"?"__function_reset__":21,ea=process.env.NODE_ENV!=="production"?"__controlled_prop_updated_selected_item__":22,L8=Object.freeze({__proto__:null,InputKeyDownArrowDown:Bn,InputKeyDownArrowUp:zn,InputKeyDownEscape:qn,InputKeyDownHome:Wn,InputKeyDownEnd:Kn,InputKeyDownPageUp:Un,InputKeyDownPageDown:Zn,InputKeyDownEnter:Yn,InputChange:Gn,InputBlur:Ht,InputFocus:Xn,MenuMouseLeave:S8,ItemMouseMove:R8,ItemClick:Jn,ToggleButtonClick:P8,FunctionToggleMenu:D8,FunctionOpenMenu:O8,FunctionCloseMenu:T8,FunctionSetHighlightedIndex:N8,FunctionSelectItem:Qn,FunctionSetInputValue:M8,FunctionReset:A8,ControlledPropUpdatedSelectedItem:ea});function qh(e){var s=m8(e),t=s.selectedItem,o=s.inputValue;return o===""&&t&&e.defaultInputValue===void 0&&e.initialInputValue===void 0&&e.inputValue===void 0&&(o=e.itemToString(t)),S({},s,{inputValue:o})}var Wh={items:N.exports.array.isRequired,itemToString:N.exports.func,selectedItemChanged:N.exports.func,getA11yStatusMessage:N.exports.func,getA11ySelectionMessage:N.exports.func,highlightedIndex:N.exports.number,defaultHighlightedIndex:N.exports.number,initialHighlightedIndex:N.exports.number,isOpen:N.exports.bool,defaultIsOpen:N.exports.bool,initialIsOpen:N.exports.bool,selectedItem:N.exports.any,initialSelectedItem:N.exports.any,defaultSelectedItem:N.exports.any,inputValue:N.exports.string,defaultInputValue:N.exports.string,initialInputValue:N.exports.string,id:N.exports.string,labelId:N.exports.string,menuId:N.exports.string,getItemId:N.exports.func,inputId:N.exports.string,toggleButtonId:N.exports.string,stateReducer:N.exports.func,onSelectedItemChange:N.exports.func,onHighlightedIndexChange:N.exports.func,onStateChange:N.exports.func,onIsOpenChange:N.exports.func,onInputValueChange:N.exports.func,environment:N.exports.shape({addEventListener:N.exports.func,removeEventListener:N.exports.func,document:N.exports.shape({getElementById:N.exports.func,activeElement:N.exports.any,body:N.exports.any})})};function Kh(e,s,t){var o=r.useRef(),a=u8(e,s,t),n=a[0],i=a[1];return r.useEffect(function(){!Tt(t,"selectedItem")||(t.selectedItemChanged(o.current,t.selectedItem)&&i({type:ea,inputValue:t.itemToString(t.selectedItem)}),o.current=n.selectedItem===o.current?t.selectedItem:n.selectedItem)},[n.selectedItem,t.selectedItem]),[Qs(n,t),i]}var V8=Be;process.env.NODE_ENV!=="production"&&(V8=function(s,t){N.exports.checkPropTypes(Wh,s,"prop",t.name)});var Uh=S({},Zs,{selectedItemChanged:function(s,t){return s!==t},getA11yStatusMessage:Uf});function Zh(e,s){var t,o=s.type,a=s.props,n=s.altKey,i;switch(o){case Jn:i={isOpen:Ke(a,"isOpen"),highlightedIndex:Ke(a,"highlightedIndex"),selectedItem:a.items[s.index],inputValue:a.itemToString(a.items[s.index])};break;case Bn:e.isOpen?i={highlightedIndex:Je(1,e.highlightedIndex,a.items.length,s.getItemNodeFromIndex,!0)}:i={highlightedIndex:n&&e.selectedItem==null?-1:$s(a,e,1,s.getItemNodeFromIndex),isOpen:a.items.length>=0};break;case zn:e.isOpen?n?i=At(a,e.highlightedIndex):i={highlightedIndex:Je(-1,e.highlightedIndex,a.items.length,s.getItemNodeFromIndex,!0)}:i={highlightedIndex:$s(a,e,-1,s.getItemNodeFromIndex),isOpen:a.items.length>=0};break;case Yn:i=At(a,e.highlightedIndex);break;case qn:i=S({isOpen:!1,highlightedIndex:-1},!e.isOpen&&{selectedItem:null,inputValue:""});break;case Un:i={highlightedIndex:Je(-10,e.highlightedIndex,a.items.length,s.getItemNodeFromIndex,!1)};break;case Zn:i={highlightedIndex:Je(10,e.highlightedIndex,a.items.length,s.getItemNodeFromIndex,!1)};break;case Wn:i={highlightedIndex:cs(1,0,a.items.length,s.getItemNodeFromIndex,!1)};break;case Kn:i={highlightedIndex:cs(-1,a.items.length-1,a.items.length,s.getItemNodeFromIndex,!1)};break;case Ht:i=S({isOpen:!1,highlightedIndex:-1},e.highlightedIndex>=0&&((t=a.items)==null?void 0:t.length)&&s.selectItem&&{selectedItem:a.items[e.highlightedIndex],inputValue:a.itemToString(a.items[e.highlightedIndex])});break;case Gn:i={isOpen:!0,highlightedIndex:Ke(a,"highlightedIndex"),inputValue:s.inputValue};break;case Xn:i={isOpen:!0,highlightedIndex:$s(a,e,0)};break;case Qn:i={selectedItem:s.selectedItem,inputValue:a.itemToString(s.selectedItem)};break;case ea:i={inputValue:s.inputValue};break;default:return v8(e,s,L8)}return S({},e,i)}var Yh=["onMouseLeave","refKey","ref"],Gh=["item","index","refKey","ref","onMouseMove","onMouseDown","onClick","onPress","disabled"],Xh=["onClick","onPress","refKey","ref"],Jh=["onKeyDown","onChange","onInput","onFocus","onBlur","onChangeText","refKey","ref"];Ge.stateChangeTypes=L8;function Ge(e){e===void 0&&(e={}),V8(e,Ge);var s=S({},Uh,e),t=s.initialIsOpen,o=s.defaultIsOpen,a=s.items,n=s.scrollIntoView,i=s.environment,l=s.getA11yStatusMessage,f=s.getA11ySelectionMessage,p=s.itemToString,d=qh(s),c=Kh(Zh,d,s),b=c[0],u=c[1],C=b.isOpen,_=b.highlightedIndex,x=b.selectedItem,y=b.inputValue,h=r.useRef(null),m=r.useRef({}),g=r.useRef(null),w=r.useRef(null),D=r.useRef(!0),E=d8(s),$=r.useRef(),R=eo({state:b,props:s}),H=r.useCallback(function(T){return m.current[E.getItemId(T)]},[E]);Mt(l,[C,_,y,a],S({isInitialMount:D.current,previousResultCount:$.current,items:a,environment:i,itemToString:p},b)),Mt(f,[x],S({isInitialMount:D.current,previousResultCount:$.current,items:a,environment:i,itemToString:p},b));var O=h8({menuElement:h.current,highlightedIndex:_,isOpen:C,itemRefs:m,scrollIntoView:n,getItemNodeFromIndex:H});to({isInitialMount:D.current,props:s,state:b}),r.useEffect(function(){var T=t||o||C;T&&g.current&&g.current.focus()},[]),r.useEffect(function(){D.current||($.current=a.length)});var W=b8(C,[g,h,w],i,function(){u({type:Ht,selectItem:!1})}),P=so("getInputProps","getMenuProps");r.useEffect(function(){return D.current=!1,function(){D.current=!0}},[]),r.useEffect(function(){var T;if(!C)m.current={};else if(((T=i.document)==null?void 0:T.activeElement)!==g.current){var M;g==null||(M=g.current)==null||M.focus()}},[C,i]);var K=r.useMemo(function(){return{ArrowDown:function(M){M.preventDefault(),u({type:Bn,altKey:M.altKey,getItemNodeFromIndex:H})},ArrowUp:function(M){M.preventDefault(),u({type:zn,altKey:M.altKey,getItemNodeFromIndex:H})},Home:function(M){!R.current.state.isOpen||(M.preventDefault(),u({type:Wn,getItemNodeFromIndex:H}))},End:function(M){!R.current.state.isOpen||(M.preventDefault(),u({type:Kn,getItemNodeFromIndex:H}))},Escape:function(M){var A=R.current.state;(A.isOpen||A.inputValue||A.selectedItem||A.highlightedIndex>-1)&&(M.preventDefault(),u({type:qn}))},Enter:function(M){var A=R.current.state;!A.isOpen||M.which===229||(M.preventDefault(),u({type:Yn,getItemNodeFromIndex:H}))},PageUp:function(M){R.current.state.isOpen&&(M.preventDefault(),u({type:Un,getItemNodeFromIndex:H}))},PageDown:function(M){R.current.state.isOpen&&(M.preventDefault(),u({type:Zn,getItemNodeFromIndex:H}))}}},[u,R,H]),G=r.useCallback(function(T){return S({id:E.labelId,htmlFor:E.inputId},T)},[E]),ne=r.useCallback(function(T,M){var A,B=T===void 0?{}:T,q=B.onMouseLeave,L=B.refKey,le=L===void 0?"ref":L,ce=B.ref,ye=je(B,Yh),Re=M===void 0?{}:M,Ie=Re.suppressRefError,Te=Ie===void 0?!1:Ie;return P("getMenuProps",Te,le,h),S((A={},A[le]=Xe(ce,function(_e){h.current=_e}),A.id=E.menuId,A.role="listbox",A["aria-labelledby"]=ye&&ye["aria-label"]?void 0:""+E.labelId,A.onMouseLeave=he(q,function(){u({type:S8})}),A),ye)},[u,P,E]),oe=r.useCallback(function(T){var M,A,B=T===void 0?{}:T,q=B.item,L=B.index,le=B.refKey,ce=le===void 0?"ref":le,ye=B.ref,Re=B.onMouseMove,Ie=B.onMouseDown,Te=B.onClick;B.onPress;var _e=B.disabled,$e=je(B,Gh),Pe=R.current,Ee=Pe.props,Se=Pe.state,Le=Sn(q,L,Ee.items,"Pass either item or index to getItemProps!"),De=Le[1],Bs="onClick",zs=Te,qs=function(){De!==Se.highlightedIndex&&(O.current=!1,u({type:R8,index:De,disabled:_e}))},Ps=function(){u({type:Jn,index:De})},ss=function(ts){return ts.preventDefault()};return S((M={},M[ce]=Xe(ye,function(qe){qe&&(m.current[E.getItemId(De)]=qe)}),M.disabled=_e,M.role="option",M["aria-selected"]=""+(De===Se.highlightedIndex),M.id=E.getItemId(De),M),!_e&&(A={},A[Bs]=he(zs,Ps),A),{onMouseMove:he(Re,qs),onMouseDown:he(Ie,ss)},$e)},[u,R,O,E]),se=r.useCallback(function(T){var M,A=T===void 0?{}:T,B=A.onClick;A.onPress;var q=A.refKey,L=q===void 0?"ref":q,le=A.ref,ce=je(A,Xh),ye=R.current.state,Re=function(){u({type:P8})};return S((M={},M[L]=Xe(le,function(Ie){w.current=Ie}),M["aria-controls"]=E.menuId,M["aria-expanded"]=ye.isOpen,M.id=E.toggleButtonId,M.tabIndex=-1,M),!ce.disabled&&S({},{onClick:he(B,Re)}),ce)},[u,R,E]),Y=r.useCallback(function(T,M){var A,B=T===void 0?{}:T,q=B.onKeyDown,L=B.onChange,le=B.onInput,ce=B.onFocus,ye=B.onBlur;B.onChangeText;var Re=B.refKey,Ie=Re===void 0?"ref":Re,Te=B.ref,_e=je(B,Jh),$e=M===void 0?{}:M,Pe=$e.suppressRefError,Ee=Pe===void 0?!1:Pe;P("getInputProps",Ee,Ie,g);var Se=R.current.state,Le=function(ts){var vs=Vs(ts);vs&&K[vs]&&K[vs](ts)},De=function(ts){u({type:Gn,inputValue:ts.target.value})},Bs=function(ts){Se.isOpen&&!W.current.isMouseDown&&u({type:Ht,selectItem:ts.relatedTarget!==null})},zs=function(){Se.isOpen||u({type:Xn})},qs="onChange",Ps={};if(!_e.disabled){var ss;Ps=(ss={},ss[qs]=he(L,le,De),ss.onKeyDown=he(q,Le),ss.onBlur=he(ye,Bs),ss.onFocus=he(ce,zs),ss)}return S((A={},A[Ie]=Xe(Te,function(qe){g.current=qe}),A["aria-activedescendant"]=Se.isOpen&&Se.highlightedIndex>-1?E.getItemId(Se.highlightedIndex):"",A["aria-autocomplete"]="list",A["aria-controls"]=E.menuId,A["aria-expanded"]=Se.isOpen,A["aria-labelledby"]=_e&&_e["aria-label"]?void 0:""+E.labelId,A.autoComplete="off",A.id=E.inputId,A.role="combobox",A.value=Se.inputValue,A),Ps,_e)},[u,K,R,W,P,E]),I=r.useCallback(function(){u({type:D8})},[u]),V=r.useCallback(function(){u({type:T8})},[u]),J=r.useCallback(function(){u({type:O8})},[u]),Q=r.useCallback(function(T){u({type:N8,highlightedIndex:T})},[u]),j=r.useCallback(function(T){u({type:Qn,selectedItem:T})},[u]),U=r.useCallback(function(T){u({type:M8,inputValue:T})},[u]),F=r.useCallback(function(){u({type:A8})},[u]);return{getItemProps:oe,getLabelProps:G,getMenuProps:ne,getInputProps:Y,getToggleButtonProps:se,toggleMenu:I,openMenu:J,closeMenu:V,setHighlightedIndex:Q,setInputValue:U,selectItem:j,reset:F,highlightedIndex:_,isOpen:C,selectedItem:x,inputValue:y}}var H8={activeIndex:-1,selectedItems:[]};function Si(e,s){return Ks(e,s,H8)}function Ri(e,s){return Ke(e,s,H8)}function Qh(e){var s=Si(e,"activeIndex"),t=Si(e,"selectedItems");return{activeIndex:s,selectedItems:t}}function Pi(e){if(e.shiftKey||e.metaKey||e.ctrlKey||e.altKey)return!1;var s=e.target;return!(s instanceof HTMLInputElement&&s.value!==""&&(s.selectionStart!==0||s.selectionEnd!==0))}function ev(e){var s=e.removedSelectedItem,t=e.itemToString;return t(s)+" has been removed."}var sv={selectedItems:N.exports.array,initialSelectedItems:N.exports.array,defaultSelectedItems:N.exports.array,itemToString:N.exports.func,getA11yRemovalMessage:N.exports.func,stateReducer:N.exports.func,activeIndex:N.exports.number,initialActiveIndex:N.exports.number,defaultActiveIndex:N.exports.number,onActiveIndexChange:N.exports.func,onSelectedItemsChange:N.exports.func,keyNavigationNext:N.exports.string,keyNavigationPrevious:N.exports.string,environment:N.exports.shape({addEventListener:N.exports.func,removeEventListener:N.exports.func,document:N.exports.shape({getElementById:N.exports.func,activeElement:N.exports.any,body:N.exports.any})})},tv={itemToString:Zs.itemToString,stateReducer:Zs.stateReducer,environment:Zs.environment,getA11yRemovalMessage:ev,keyNavigationNext:"ArrowRight",keyNavigationPrevious:"ArrowLeft"},j8=Be;process.env.NODE_ENV!=="production"&&(j8=function(s,t){N.exports.checkPropTypes(sv,s,"prop",t.name)});var sa=process.env.NODE_ENV!=="production"?"__selected_item_click__":0,ta=process.env.NODE_ENV!=="production"?"__selected_item_keydown_delete__":1,oa=process.env.NODE_ENV!=="production"?"__selected_item_keydown_backspace__":2,na=process.env.NODE_ENV!=="production"?"__selected_item_keydown_navigation_next__":3,aa=process.env.NODE_ENV!=="production"?"__selected_item_keydown_navigation_previous__":4,ia=process.env.NODE_ENV!=="production"?"__dropdown_keydown_navigation_previous__":5,ra=process.env.NODE_ENV!=="production"?"__dropdown_keydown_backspace__":6,la=process.env.NODE_ENV!=="production"?"__dropdown_click__":7,fa=process.env.NODE_ENV!=="production"?"__function_add_selected_item__":8,ca=process.env.NODE_ENV!=="production"?"__function_remove_selected_item__":9,pa=process.env.NODE_ENV!=="production"?"__function_set_selected_items__":10,da=process.env.NODE_ENV!=="production"?"__function_set_active_index__":11,ua=process.env.NODE_ENV!=="production"?"__function_reset__":12,ov=Object.freeze({__proto__:null,SelectedItemClick:sa,SelectedItemKeyDownDelete:ta,SelectedItemKeyDownBackspace:oa,SelectedItemKeyDownNavigationNext:na,SelectedItemKeyDownNavigationPrevious:aa,DropdownKeyDownNavigationPrevious:ia,DropdownKeyDownBackspace:ra,DropdownClick:la,FunctionAddSelectedItem:fa,FunctionRemoveSelectedItem:ca,FunctionSetSelectedItems:pa,FunctionSetActiveIndex:da,FunctionReset:ua});function nv(e,s){var t=s.type,o=s.index,a=s.props,n=s.selectedItem,i=e.activeIndex,l=e.selectedItems,f;switch(t){case sa:f={activeIndex:o};break;case aa:f={activeIndex:i-1<0?0:i-1};break;case na:f={activeIndex:i+1>=l.length?-1:i+1};break;case oa:case ta:{if(i<0)break;var p=i;l.length===1?p=-1:i===l.length-1&&(p=l.length-2),f=S({selectedItems:[].concat(l.slice(0,i),l.slice(i+1))},{activeIndex:p});break}case ia:f={activeIndex:l.length-1};break;case ra:f={selectedItems:l.slice(0,l.length-1)};break;case fa:f={selectedItems:[].concat(l,[n])};break;case la:f={activeIndex:-1};break;case ca:{var d=i,c=l.indexOf(n);if(c<0)break;l.length===1?d=-1:c===l.length-1&&(d=l.length-2),f={selectedItems:[].concat(l.slice(0,c),l.slice(c+1)),activeIndex:d};break}case pa:{var b=s.selectedItems;f={selectedItems:b};break}case da:{var u=s.activeIndex;f={activeIndex:u};break}case ua:f={activeIndex:Ri(a,"activeIndex"),selectedItems:Ri(a,"selectedItems")};break;default:throw new Error("Reducer called without proper action type.")}return S({},e,f)}var av=["refKey","ref","onClick","onKeyDown","selectedItem","index"],iv=["refKey","ref","onKeyDown","onClick","preventKeyAction"];ks.stateChangeTypes=ov;function ks(e){e===void 0&&(e={}),j8(e,ks);var s=S({},tv,e),t=s.getA11yRemovalMessage,o=s.itemToString,a=s.environment,n=s.keyNavigationNext,i=s.keyNavigationPrevious,l=_8(nv,Qh(s),s),f=l[0],p=l[1],d=f.activeIndex,c=f.selectedItems,b=r.useRef(!0),u=r.useRef(null),C=r.useRef(c),_=r.useRef();_.current=[];var x=eo({state:f,props:s});r.useEffect(function(){if(!b.current){if(c.length<C.current.length){var O=C.current.find(function(W){return c.indexOf(W)<0});In(t({itemToString:o,resultCount:c.length,removedSelectedItem:O,activeIndex:d,activeSelectedItem:c[d]}),a.document)}C.current=c}},[c.length]),r.useEffect(function(){b.current||(d===-1&&u.current?u.current.focus():_.current[d]&&_.current[d].focus())},[d]),to({isInitialMount:b.current,props:s,state:f});var y=so("getDropdownProps");r.useEffect(function(){return b.current=!1,function(){b.current=!0}},[]);var h=r.useMemo(function(){var O;return O={},O[i]=function(){p({type:aa})},O[n]=function(){p({type:na})},O.Delete=function(){p({type:ta})},O.Backspace=function(){p({type:oa})},O},[p,n,i]),m=r.useMemo(function(){var O;return O={},O[i]=function(W){Pi(W)&&p({type:ia})},O.Backspace=function(P){Pi(P)&&p({type:ra})},O},[p,i]),g=r.useCallback(function(O){var W,P=O===void 0?{}:O,K=P.refKey,G=K===void 0?"ref":K,ne=P.ref,oe=P.onClick,se=P.onKeyDown,Y=P.selectedItem,I=P.index,V=je(P,av),J=x.current.state,Q=Sn(Y,I,J.selectedItems,"Pass either item or index to getSelectedItemProps!"),j=Q[1],U=j>-1&&j===J.activeIndex,F=function(){p({type:sa,index:j})},T=function(A){var B=Vs(A);B&&h[B]&&h[B](A)};return S((W={},W[G]=Xe(ne,function(M){M&&_.current.push(M)}),W.tabIndex=U?0:-1,W.onClick=he(oe,F),W.onKeyDown=he(se,T),W),V)},[p,x,h]),w=r.useCallback(function(O,W){var P,K=O===void 0?{}:O,G=K.refKey,ne=G===void 0?"ref":G,oe=K.ref,se=K.onKeyDown,Y=K.onClick,I=K.preventKeyAction,V=I===void 0?!1:I,J=je(K,iv),Q=W===void 0?{}:W,j=Q.suppressRefError,U=j===void 0?!1:j;y("getDropdownProps",U,ne,u);var F=function(A){var B=Vs(A);B&&m[B]&&m[B](A)},T=function(){p({type:la})};return S((P={},P[ne]=Xe(oe,function(M){M&&(u.current=M)}),P),!V&&{onKeyDown:he(se,F),onClick:he(Y,T)},J)},[p,m,y]),D=r.useCallback(function(O){p({type:fa,selectedItem:O})},[p]),E=r.useCallback(function(O){p({type:ca,selectedItem:O})},[p]),$=r.useCallback(function(O){p({type:pa,selectedItems:O})},[p]),R=r.useCallback(function(O){p({type:da,activeIndex:O})},[p]),H=r.useCallback(function(){p({type:ua})},[p]);return{getSelectedItemProps:g,getDropdownProps:w,addSelectedItem:D,removeSelectedItem:E,setSelectedItems:$,setActiveIndex:R,reset:H,selectedItems:c,activeIndex:d}}const rv=(e,s)=>{if(!e)return s;const t=e.toString().toLowerCase();return s.filter(o=>o.label.toLowerCase().includes(t))},F8=({selectedItem:e,options:s,onChange:t,onInputValueChange:o,onFocus:a,onBlur:n})=>{const[i,l]=r.useState(""),[f,p]=r.useState(!1),d=Boolean(e||f||i),c=rv(i,s),{isOpen:b,getToggleButtonProps:u,getLabelProps:C,getMenuProps:_,getInputProps:x,highlightedIndex:y,getItemProps:h}=Ge({items:c,itemToString:m=>{var g;return(g=m==null?void 0:m.label)!=null?g:""},selectedItem:e,onSelectedItemChange:({selectedItem:m})=>{m&&(t==null||t(m))},onStateChange:({inputValue:m,type:g})=>{switch(g){case Ge.stateChangeTypes.InputChange:o==null||o(i!=null?i:""),l(m!=null?m:"");break}}});return{active:f,itemsToSelect:c,typed:d,isOpen:b,getToggleButtonProps:u,getLabelProps:C,getMenuProps:_,getInputProps:(m,g)=>x({onFocus:w=>{a==null||a(w),p(!0)},onBlur:w=>{n==null||n(w),p(!1)},...m},g),highlightedIndex:y,getItemProps:h,hasItemsToSelect:c.length>0}},_a=({id:e,label:s,className:t,error:o,children:a,getToggleButtonProps:n,getLabelProps:i,typed:l,active:f,disabled:p,size:d})=>ee(Z,{as:"label",className:ue(Zt({typed:l,active:f,disabled:p,size:d,error:o}),t),alignItems:"center",justifyContent:"space-between",disabled:p,flexWrap:"nowrap",gap:3,"data-macaw-ui-component":"Combobox",...i({htmlFor:e}),children:[ee(Z,{display:"flex",flexDirection:"column",width:"100%",children:[v(Z,{as:"span",className:ue(Yt({typed:l,size:d,disabled:p,error:o})),children:s}),a]}),v(st,{className:ue(wn,as({cursor:"pointer"})),size:d,...n({disabled:p,onClick:c=>{c.preventDefault()}})})]});_a.displayName="ComboboxWrapper";const lv=({size:e,disabled:s=!1,className:t,value:o,label:a,id:n,error:i=!1,helperText:l,options:f,onChange:p,onFocus:d,onBlur:c,...b},u)=>{const{active:C,typed:_,isOpen:x,getToggleButtonProps:y,getLabelProps:h,getMenuProps:m,getInputProps:g,highlightedIndex:w,getItemProps:D,itemsToSelect:E,hasItemsToSelect:$}=F8({selectedItem:o,options:f,onChange:p,onFocus:d,onBlur:c}),R=r.useRef(null);return ee(Z,{display:"flex",flexDirection:"column",children:[v(_a,{id:n,typed:_,active:C,disabled:s,size:e,label:a,error:i,className:t,getLabelProps:h,getToggleButtonProps:y,children:v(Z,{id:n,as:"input",type:"text",className:ue(mn({size:e,error:i})),disabled:s,...b,...g({id:n,ref:u})})}),v(Z,{ref:R}),v(js,{asChild:!0,container:R.current,children:v(Z,{position:"relative",display:x&&$?"block":"none",className:dt({size:e}),children:v(Ue,{as:"ul",className:pt,...m({},{suppressRefError:!0}),children:x&&(E==null?void 0:E.map((H,O)=>v(Ue.Item,{className:Fs,...D({item:H,index:O}),active:w===O,children:v(Ae,{size:e,children:H.label})},`${n}-${H}-${O}`)))})})}),l&&v(rt,{size:e,error:i,children:l})]})},fv=r.forwardRef(lv),cv=({size:e,disabled:s=!1,className:t,value:o,label:a,id:n,error:i=!1,helperText:l,options:f,onChange:p,onInputValueChange:d,onFocus:c,onBlur:b,loading:u,locale:C={loadingText:"Loading"},..._},x)=>{const{active:y,typed:h,isOpen:m,getToggleButtonProps:g,getLabelProps:w,getMenuProps:D,getInputProps:E,highlightedIndex:$,getItemProps:R,itemsToSelect:H,hasItemsToSelect:O}=F8({selectedItem:o,options:f,onChange:p,onInputValueChange:d,onFocus:c,onBlur:b}),W=r.useRef(null);return ee(Z,{display:"flex",flexDirection:"column",children:[v(_a,{id:n,typed:h,active:y,disabled:s,size:e,label:a,error:i,className:t,getLabelProps:w,getToggleButtonProps:g,children:v(Z,{id:n,as:"input",type:"text",className:ue(mn({size:e,error:i})),disabled:s,..._,...E({id:n,ref:x})})}),v(Z,{ref:W}),v(js,{asChild:!0,container:W.current,children:v(Z,{position:"relative",display:Bf({isOpen:m,hasItemsToSelect:O,loading:u}),className:dt({size:e}),children:ee(Ue,{as:"ul",className:pt,...D({},{suppressRefError:!0}),children:[m&&(H==null?void 0:H.map((P,K)=>v(Ue.Item,{className:Fs,...R({item:P,index:K}),active:$===K,children:v(Ae,{size:e,children:P.label})},`${n}-${P}-${K}`))),u&&v(Ff,{size:e,children:C.loadingText})]})})}),l&&v(rt,{size:e,error:i,children:l})]})},ma=r.forwardRef(cv),pv=({id:e,label:s,className:t,error:o,children:a,getToggleButtonProps:n,getLabelProps:i,typed:l,active:f,disabled:p,size:d})=>ee(Z,{as:"label",className:ue(Zt({typed:l,active:f,disabled:p,size:d,error:o}),t),alignItems:"center",justifyContent:"space-between",disabled:p,flexWrap:"nowrap",gap:3,...n(),"data-macaw-ui-component":"Select",children:[ee(Z,{display:"flex",flexDirection:"column",width:"100%",children:[v(Z,{as:"span",className:ue(Yt({typed:l,size:d,disabled:p,error:o})),...i({htmlFor:e}),children:s}),a]}),v(st,{className:ue(wn,as({cursor:"pointer"})),size:d})]}),dv=({value:e,options:s,onChange:t,onFocus:o,onBlur:a})=>{const[n,i]=r.useState(!1),l=Boolean(e||n),{isOpen:f,getToggleButtonProps:p,getLabelProps:d,getMenuProps:c,highlightedIndex:b,getItemProps:u,selectedItem:C}=Fn({items:s,selectedItem:e,itemToString:_=>{var x;return(x=_==null?void 0:_.label)!=null?x:""},onSelectedItemChange:({selectedItem:_})=>{_&&(t==null||t(_))}});return{active:n,typed:l,isOpen:f,getToggleButtonProps:(_,x)=>p({onFocus:y=>{i(!0),o==null||o(y)},onBlur:y=>{i(!1),a==null||a(y)},..._},x),getLabelProps:d,getMenuProps:c,highlightedIndex:b,getItemProps:u,selectedItem:C,hasItemsToSelect:s.length>0}},uv=e=>{switch(e){case"small":return 4;case"medium":return 5;case"large":return 6}},_v=({size:e="medium",disabled:s=!1,className:t,value:o,label:a,id:n,error:i=!1,helperText:l,options:f,onChange:p,onFocus:d,onBlur:c,...b},u)=>{const{active:C,typed:_,isOpen:x,getItemProps:y,getLabelProps:h,getToggleButtonProps:m,selectedItem:g,getMenuProps:w,highlightedIndex:D,hasItemsToSelect:E}=dv({value:o,options:f,onChange:p,onFocus:d,onBlur:c}),$=r.useRef(null);return ee(Z,{display:"flex",flexDirection:"column",children:[v(pv,{id:n,typed:_,active:C,disabled:s,size:e,label:a,error:i,className:t,getLabelProps:h,getToggleButtonProps:m,children:v(Z,{height:uv(e),...b,ref:u,children:v(Ae,{size:e,variant:"body",children:g==null?void 0:g.label})})}),v(Z,{ref:$}),v(js,{asChild:!0,container:$.current,children:v(Z,{position:"relative",display:x&&E?"block":"none",className:dt({size:e}),children:v(Ue,{as:"ul",className:pt,...w({},{suppressRefError:!0}),children:x&&(f==null?void 0:f.map((R,H)=>v(Ue.Item,{className:Fs,...y({item:R,index:H}),active:D===H,children:v(Ae,{size:e,children:R.label})},`${n}-${R}-${H}`)))})})}),l&&v(rt,{size:e,error:i,children:l})]})},ba=r.forwardRef(_v),mv=(e,s,t)=>{const o=s==null?void 0:s.toLowerCase();return t.filter(a=>!e.find(n=>n.value===a.value)&&a.label.toLowerCase().includes(o!=null?o:""))},B8=({selectedItems:e,options:s,onChange:t,onInputValueChange:o,onFocus:a,onBlur:n})=>{const[i,l]=r.useState(""),[f,p]=r.useState(!1),d=mv(e,i,s),c=o?!0:e.length!==s.length,b=Boolean(e.length||f),{getSelectedItemProps:u,getDropdownProps:C,removeSelectedItem:_}=ks({selectedItems:e,onStateChange({selectedItems:E,type:$}){switch($){case ks.stateChangeTypes.SelectedItemKeyDownBackspace:case ks.stateChangeTypes.SelectedItemKeyDownDelete:case ks.stateChangeTypes.DropdownKeyDownBackspace:case ks.stateChangeTypes.FunctionRemoveSelectedItem:t==null||t(E!=null?E:[]);break}}}),{isOpen:x,getLabelProps:y,getMenuProps:h,getInputProps:m,highlightedIndex:g,getItemProps:w,getToggleButtonProps:D}=Ge({items:d,itemToString:E=>{var $;return($=E==null?void 0:E.label)!=null?$:""},defaultHighlightedIndex:0,selectedItem:null,stateReducer(E,$){const{changes:R,type:H}=$;switch(H){case Ge.stateChangeTypes.InputKeyDownEnter:case Ge.stateChangeTypes.ItemClick:return l(""),{...R,...R.selectedItem&&{isOpen:!0,highlightedIndex:0}};default:return R}},onStateChange({inputValue:E,type:$,selectedItem:R}){switch($){case Ge.stateChangeTypes.InputKeyDownEnter:case Ge.stateChangeTypes.ItemClick:case Ge.stateChangeTypes.InputBlur:R?t==null||t([...e,R]):l("");break;case Ge.stateChangeTypes.InputChange:o==null||o(i!=null?i:""),l(E!=null?E:"");break}}});return{active:f,itemsToSelect:d,typed:b,isOpen:x,getLabelProps:y,getMenuProps:h,getInputProps:(E,$)=>m(C({onFocus:R=>{p(!0),a==null||a(R)},onBlur:R=>{p(!1),n==null||n(R)},preventKeyAction:x,...E}),$),highlightedIndex:g,getItemProps:w,getSelectedItemProps:u,removeSelectedItem:_,selectedItems:e,inputValue:i,showInput:c,getToggleButtonProps:E=>D({onClick:$=>{$.preventDefault()},...E}),hasItemsToSelect:d.length>0}},bv=({size:e,getToggleButtonProps:s,renderEndAdornment:t,disabled:o})=>t?v(Ve,{children:t(s({disabled:o}))}):v(st,{className:ue(wn,as({cursor:"pointer"})),size:e,...s({disabled:o})}),ha=({id:e,label:s,className:t,error:o,children:a,getLabelProps:n,typed:i,active:l,disabled:f,size:p,getToggleButtonProps:d,renderEndAdornment:c,hasItemsToSelect:b})=>ee(Z,{as:"label",className:ue(Zt({typed:i,active:l,disabled:f,size:p,error:o}),t),alignItems:"center",justifyContent:"space-between",disabled:f,flexWrap:"nowrap",gap:3,"data-macaw-ui-component":"Multiselect",...n({htmlFor:e}),children:[ee(Z,{display:"flex",flexDirection:"column",width:"100%",children:[v(Z,{as:"span",className:ue(Yt({typed:i,size:p,disabled:f,error:o})),children:s}),v(Z,{display:"flex",flexDirection:"row",gap:1,alignItems:"center",flexWrap:"wrap",children:a})]}),b&&v(bv,{size:p,getToggleButtonProps:d,renderEndAdornment:c,disabled:f})]});ha.displayName="MultiselectWrapper";var z8=we({defaultClassName:"_1g8t8xp5 _18fs8pskr _18fs8psn6 _18fs8pspl _18fs8pss0 _18fs8ps1no _18fs8ps1nu _18fs8ps1nc _18fs8ps1ni _18fs8ps16u _18fs8ps2tg _18fs8ps1k9 _18fs8ps1mc _18fs8ps1oo _18fs8ps28s _18fs8ps296",variantClassNames:{size:{small:"_18fs8ps1kx _18fs8ps1n0 _18fs8ps250 _18fs8ps1qr",medium:"_18fs8ps1ku _18fs8ps1mx _18fs8ps24x _18fs8ps1qo",large:"_18fs8ps1ku _18fs8ps1mx _18fs8ps24x _18fs8ps1qo"},error:{true:"_18fs8ps2ac"}},defaultVariants:{size:"medium"},compoundVariants:[]});const hv=({size:e,disabled:s=!1,className:t,label:o,id:a,error:n=!1,helperText:i,options:l,onChange:f,renderEndAdornment:p,value:d=[],onFocus:c,onBlur:b,locale:u={inputText:"Add item"},...C},_)=>{const{active:x,typed:y,isOpen:h,getLabelProps:m,getMenuProps:g,getInputProps:w,highlightedIndex:D,getItemProps:E,itemsToSelect:$,selectedItems:R,getSelectedItemProps:H,inputValue:O,removeSelectedItem:W,getToggleButtonProps:P,hasItemsToSelect:K,showInput:G}=B8({selectedItems:d,options:l,onChange:f,onFocus:c,onBlur:b}),ne=r.useRef(null);return ee(Z,{display:"flex",flexDirection:"column",children:[ee(ha,{id:a,typed:y,active:x,disabled:s,size:e,label:o,error:n,className:t,getLabelProps:m,getToggleButtonProps:P,renderEndAdornment:p,hasItemsToSelect:K,children:[R.map((oe,se)=>ee(Z,{paddingX:1.5,paddingY:.5,backgroundColor:"surfaceNeutralSubdued",borderColor:"neutralHighlight",borderWidth:1,borderStyle:"solid",borderRadius:3,display:"flex",gap:1,alignItems:"center",...H({selectedItem:oe,index:se}),children:[v(Ae,{variant:"caption",size:e==="small"?"small":"medium",children:oe.label}),!s&&v(Ae,{cursor:"pointer",variant:"caption",size:"small",marginBottom:"px",onClick:Y=>{Y.stopPropagation(),Y.preventDefault(),W(oe)},children:"\u2715"})]},`selected-item-${oe}-${se}`)),v(Z,{id:a,as:"input",className:z8({size:e,error:n}),placeholder:u.inputText,disabled:s,width:0,__flex:1,minWidth:7,visibility:G?"visible":"hidden",...w({id:a,ref:_,value:O}),...C})]}),v(Z,{ref:ne}),v(js,{asChild:!0,container:ne.current,children:v(Z,{position:"relative",display:h&&K?"block":"none",className:dt({size:e}),children:v(Ue,{as:"ul",className:pt,...g({},{suppressRefError:!0}),children:h&&($==null?void 0:$.map((oe,se)=>v(Ue.Item,{className:Fs,active:D===se,...E({item:oe,index:se}),children:v(Ae,{size:e,children:oe.label})},`to-select-${a}-${oe}-${se}`)))})})}),i&&v(rt,{size:e,error:n,children:i})]})},vv=r.forwardRef(hv),gv=({size:e,disabled:s=!1,className:t,label:o,id:a,error:n=!1,helperText:i,options:l,onChange:f,renderEndAdornment:p,value:d=[],onInputValueChange:c,loading:b,onFocus:u,onBlur:C,locale:_={loadingText:"Loading",inputText:"Add item"},...x},y)=>{const{active:h,typed:m,isOpen:g,getLabelProps:w,getMenuProps:D,getInputProps:E,highlightedIndex:$,getItemProps:R,itemsToSelect:H,selectedItems:O,getSelectedItemProps:W,inputValue:P,removeSelectedItem:K,getToggleButtonProps:G,hasItemsToSelect:ne,showInput:oe}=B8({selectedItems:d,onInputValueChange:c,options:l,onChange:f,onFocus:u,onBlur:C}),se=r.useRef(null);return ee(Z,{display:"flex",flexDirection:"column",children:[ee(ha,{id:a,typed:m,active:h,disabled:s,size:e,label:o,error:n,className:t,getLabelProps:w,getToggleButtonProps:G,renderEndAdornment:p,hasItemsToSelect:ne,children:[O.map((Y,I)=>ee(Z,{paddingX:1.5,paddingY:.5,backgroundColor:"surfaceNeutralSubdued",borderColor:"neutralHighlight",borderWidth:1,borderStyle:"solid",borderRadius:3,display:"flex",gap:1,alignItems:"center",...W({selectedItem:Y,index:I}),children:[v(Ae,{variant:"caption",size:e==="small"?"small":"medium",children:Y.label}),!s&&v(Ae,{cursor:"pointer",variant:"caption",size:"small",marginBottom:"px",onClick:V=>{V.stopPropagation(),V.preventDefault(),K(Y)},children:"\u2715"})]},`selected-item-${Y}-${I}`)),v(Z,{id:a,as:"input",className:z8({size:e,error:n}),placeholder:_.inputText,disabled:s,width:0,__flex:1,minWidth:7,visibility:oe?"visible":"hidden",...E({id:a,ref:y,value:P}),...x})]}),v(Z,{ref:se}),v(js,{asChild:!0,container:se.current,children:v(Z,{position:"relative",display:Bf({isOpen:g,hasItemsToSelect:ne,loading:b}),className:dt({size:e}),children:ee(Ue,{as:"ul",className:pt,...D({},{suppressRefError:!0}),children:[g&&(H==null?void 0:H.map((Y,I)=>v(Ue.Item,{className:Fs,active:$===I,...R({item:Y,index:I}),children:v(Ae,{size:e,children:Y.label})},`to-select-${a}-${Y}-${I}`))),b&&v(Ff,{size:e,children:_.loadingText})]})})}),i&&v(rt,{size:e,error:n,children:i})]})},q8=r.forwardRef(gv),W8=r.createContext(void 0),Cv=()=>{const e=r.useContext(W8);if(!e)throw new Error("Filter context must be uset within its provider.");return e};class yv extends EventTarget{constructor(){super(...arguments);$a(this,"type","filterChange")}addRow(){this.dispatchEvent(new CustomEvent(this.type,{detail:{type:"row.add",rowType:"1"}}))}removeRow(t){this.dispatchEvent(new CustomEvent(this.type,{detail:{type:"row.remove",path:`${t}`}}))}changeLeftOperator(t,o,a){this.dispatchEvent(new CustomEvent(this.type,{detail:{type:"leftOperator.onChange",path:`${t}`,value:o,rowType:a}}))}focusLeftOperator(t){this.dispatchEvent(new CustomEvent(this.type,{detail:{type:"leftOperator.onFocus",path:`${t}`}}))}blurLeftOperator(t){this.dispatchEvent(new CustomEvent(this.type,{detail:{type:"leftOperator.onBlur",path:`${t}`}}))}inputChangeLeftOperator(t,o){this.dispatchEvent(new CustomEvent(this.type,{detail:{type:"leftOperator.onInputValueChange",path:`${t}`,value:o}}))}changeCondition(t,o){this.dispatchEvent(new CustomEvent(this.type,{detail:{type:"condition.onChange",path:`${t}.condition.selected`,value:o}}))}focusCondition(t){this.dispatchEvent(new CustomEvent(this.type,{detail:{type:"condition.onFocus",path:`${t}.condition.selected`}}))}blurCondition(t){this.dispatchEvent(new CustomEvent(this.type,{detail:{type:"condition.onBlur",path:`${t}.condition.selected`}}))}changeRightOperator(t,o){this.dispatchEvent(new CustomEvent(this.type,{detail:{type:"rightOperator.onChange",path:`${t}.condition.selected.value`,value:o}}))}focusRightOperator(t){this.dispatchEvent(new CustomEvent(this.type,{detail:{type:"rightOperator.onFocus",path:`${t}.condition.selected.value`}}))}blurRightOperator(t){this.dispatchEvent(new CustomEvent(this.type,{detail:{type:"rightOperator.onBlur",path:`${t}.condition.selected.value`}}))}inputChangeRightOperator(t,o){this.dispatchEvent(new CustomEvent(this.type,{detail:{type:"rightOperator.onInputValueChange",path:`${t}.condition.selected.value`,value:o}}))}changeRightOperatorStart(t,o){this.dispatchEvent(new CustomEvent(this.type,{detail:{type:"rightOperatorStart.onChange",path:`${t}.condition.selected.value.start`,value:o}}))}changeRightOperatorEnd(t,o){this.dispatchEvent(new CustomEvent(this.type,{detail:{type:"rightOperatorEnd.onChange",path:`${t}.condition.selected.value.end`,value:o}}))}}const Ws=new yv,xv=({onChange:e})=>(r.useEffect(()=>{const s=t=>{e(t.detail)};return Ws.addEventListener(Ws.type,s),()=>{Ws.removeEventListener(Ws.type,s)}},[e]),{emitter:Ws}),kv=e=>{var s;return((s=e.conditionValue)==null?void 0:s.type)==="text"},wv=e=>{var s;return((s=e.conditionValue)==null?void 0:s.type)==="number"},$v=e=>{var s;return((s=e.conditionValue)==null?void 0:s.type)==="multiselect"},Ev=e=>{var s;return((s=e.conditionValue)==null?void 0:s.type)==="combobox"},Iv=e=>{var s;return((s=e.conditionValue)==null?void 0:s.type)==="select"},Sv=e=>{var s;return((s=e.conditionValue)==null?void 0:s.type)==="number.range"},Rv=e=>{var s;return((s=e.conditionValue)==null?void 0:s.type)==="date"},Pv=({index:e,selected:s,emitter:t})=>{var o,a,n;return s.conditionValue===null?null:kv(s)?v(xs,{value:s.value,onChange:i=>{t.changeRightOperator(e,i.target.value)},onFocus:()=>{t.focusRightOperator(e)},onBlur:()=>{t.blurRightOperator(e)}}):wv(s)?v(xs,{type:"number",value:s.value,onChange:i=>{t.changeRightOperator(e,i.target.value)},onFocus:()=>{t.focusRightOperator(e)},onBlur:()=>{t.blurRightOperator(e)}}):$v(s)?v(q8,{value:s.value,options:(o=s.options)!=null?o:[],loading:s.loading,onChange:i=>t.changeRightOperator(e,i),onInputValueChange:i=>{t.inputChangeRightOperator(e,i)},onFocus:()=>{t.focusRightOperator(e)},onBlur:()=>{t.blurRightOperator(e)}}):Ev(s)?v(ma,{value:s.value,options:(a=s.options)!=null?a:[],loading:s.loading,onChange:i=>t.changeRightOperator(e,i),onInputValueChange:i=>t.inputChangeRightOperator(e,i),onFocus:()=>{t.focusRightOperator(e)},onBlur:()=>{t.blurRightOperator(e)}}):Iv(s)?v(ba,{value:s.value,options:(n=s.options)!=null?n:[],onChange:i=>t.changeRightOperator(e,i),onFocus:()=>{t.focusRightOperator(e)},onBlur:()=>{t.blurRightOperator(e)}}):Sv(s)?ee(Z,{display:"flex",gap:2,children:[v(xs,{value:s.value.start,type:"number",onChange:i=>{t.changeRightOperatorStart(e,i.target.value)}}),v(xs,{value:s.value.end,type:"number",onChange:i=>{t.changeRightOperatorEnd(e,i.target.value)}})]}):Rv(s)?v(xs,{type:"date",value:s.value,onChange:i=>{t.changeRightOperator(e,i.target.value)}}):null},Dv=({item:e,index:s,leftOptions:t,emitter:o})=>{var a,n;return ee(Z,{display:"grid",gap:1,__gridTemplateColumns:"200px 200px 200px auto",placeItems:"center",children:[v(ma,{value:e.value,options:t,loading:e.loading,onChange:i=>{var l,f;o.changeLeftOperator(s,i,(f=(l=t.find(p=>p.value===i.value))==null?void 0:l.type)!=null?f:"any")},onInputValueChange:i=>{o.inputChangeLeftOperator(s,i)},onFocus:()=>{o.focusLeftOperator(s)},onBlur:()=>{o.blurLeftOperator(s)}}),v(ba,{value:e.condition.selected.conditionValue,options:e.condition.options,disabled:e.condition.loading||!e.condition.options.length,onChange:i=>{o.changeCondition(s,i)},onFocus:()=>{o.focusCondition(s)},onBlur:()=>{o.blurCondition(s)}}),((a=e.condition)==null?void 0:a.selected)&&v(Pv,{selected:(n=e.condition)==null?void 0:n.selected,index:s,emitter:o}),v(bs,{variant:"tertiary",icon:v(Ui,{}),onClick:()=>o.removeRow(s)})]})},Di={WHERE:"Where",AND:"And",OR:"Or"},Ov=({value:e,onChange:s,leftOptions:t,children:o})=>{const{emitter:a}=xv({onChange:s});return v(W8.Provider,{value:{emitter:a},children:ee(Z,{children:[ee(Z,{display:"grid",__gridTemplateColumns:"repeat(2, auto)",__placeItems:"center self-start",gap:1,children:[v(Ae,{children:Di.WHERE}),e.map((n,i)=>typeof n=="string"?v(Ae,{children:Di[n]},i):v(Dv,{item:n,index:i,leftOptions:t,emitter:a},`filterRow-${i}`))]}),o]})})},Tv=({children:e})=>v(Z,{display:"flex",justifyContent:"space-between",paddingY:4,children:e}),Nv=({children:e})=>{const s=Cv();return v(bs,{onClick:()=>s.emitter.addRow(),variant:"secondary",children:e})},Mv=({children:e,onClick:s})=>v(bs,{onClick:s,variant:"primary",children:e}),Av=Object.assign(Ov,{AddRowButton:Nv,ConfirmButton:Mv,Footer:Tv});exports.Accordion=km;exports.ArrowDownIcon=st;exports.ArrowLeftIcon=P1;exports.ArrowRightIcon=D1;exports.ArrowUpIcon=R1;exports.Avatar=fp;exports.Box=Z;exports.Button=bs;exports.CatalogIcon=fc;exports.Checkbox=Kl;exports.CheckboxIcon=K1;exports.ChervonDoubleIcon=U1;exports.ChervonDownIcon=Zo;exports.ChervonUpIcon=O1;exports.ChevronLeftIcon=cc;exports.ChevronRightIcon=pc;exports.Chip=qi;exports.CloseIcon=Ki;exports.Combobox=fv;exports.ConfigurationIcon=T1;exports.CopyIcon=oc;exports.CustomersIcon=N1;exports.DarkModeIcon=Y1;exports.Divider=lf;exports.Drawer=d_;exports.Dropdown=Ku;exports.DropdownButton=nf;exports.DynamicCombobox=ma;exports.DynamicMultiselect=q8;exports.EditIcon=dc;exports.ExportIcon=uc;exports.Expression=P_;exports.ExternalLinkIcon=hc;exports.FileExportIcon=Z1;exports.FloppyDiscIcon=_c;exports.FullscreenOffIcon=mc;exports.FullscreenOnIcon=bc;exports.GenericAppIcon=tc;exports.GripIcon=sc;exports.HomeIcon=M1;exports.InfoIcon=X1;exports.Input=xs;exports.LightModeIcon=G1;exports.List=Ue;exports.MailIcon=ec;exports.MarketplaceIcon=A1;exports.MenuIcon=L1;exports.MoreOptionsIcon=V1;exports.Multiselect=vv;exports.OrdersIcon=H1;exports.PlusIcon=lc;exports.Popover=yb;exports.ProductsIcons=j1;exports.RadioGroup=fm;exports.RemoveIcon=Ui;exports.SearchIcon=Zi;exports.SearchInput=of;exports.Select=ba;exports.SellsIcon=F1;exports.StorefrontIcon=B1;exports.Switch=bm;exports.TableEditIcon=z1;exports.Text=Ae;exports.ThemeProvider=_1;exports.Toggle=ff;exports.Tooltip=Qb;exports.TranslationsIcon=q1;exports.TrashBinIcon=Q1;exports.ViewListIcon=rc;exports.ViewTableIcon=nc;exports.ViewTilesIcon=ic;exports.ViewWideTilesIcon=ac;exports.VouchersIcon=W1;exports.WarningIcon=J1;exports._ExperimentalFilters=Av;exports.desktopMediaQuery=C1;exports.getCSSVariables=y1;exports.sprinkles=as;exports.tabletMediaQuery=g1;exports.themes=$t;exports.useTheme=u1;exports.vars=Es;