@feedmepos/ui-library 0.0.26 → 1.0.0

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 (329) hide show
  1. package/dist/components/avatar/FmAvatar.vue.d.ts +53 -0
  2. package/dist/components/bottom-sheet/FmBottomSheet.vue.d.ts +50 -0
  3. package/dist/components/button/FmButton.vue.d.ts +2 -2
  4. package/dist/components/card/FmCard.vue.d.ts +36 -38
  5. package/dist/components/card/FmCardActions.vue.d.ts +4 -24
  6. package/dist/components/card/FmCardHeader.vue.d.ts +32 -0
  7. package/dist/components/card/FmCardMedia.vue.d.ts +29 -0
  8. package/dist/components/card/FmCardSection.vue.d.ts +1 -13
  9. package/dist/components/card/FmCardSubtitle.vue.d.ts +9 -0
  10. package/dist/components/card/FmCardTitle.vue.d.ts +1 -14
  11. package/dist/components/chart/bar/FmBar.vue.d.ts +87 -0
  12. package/dist/components/chart/line/FmLine.vue.d.ts +25 -2
  13. package/dist/components/chart/pie/FmPie.vue.d.ts +105 -0
  14. package/dist/components/chip/FmChip.vue.d.ts +9 -0
  15. package/dist/components/dialog/FmDialog.vue.d.ts +1 -1
  16. package/dist/components/dynamic-dialog/FmDynamicDialog.vue.d.ts +5 -3
  17. package/dist/components/form/calendar/date-picker/FmDatePicker.vue.d.ts +7 -25
  18. package/dist/components/form/calendar/date-picker/FmDatePickerDesktop.vue.d.ts +68 -0
  19. package/dist/components/form/calendar/date-picker/FmDatePickerMobile.vue.d.ts +68 -0
  20. package/dist/components/form/calendar/date-range-picker/FmDateRangePicker.vue.d.ts +8 -40
  21. package/dist/components/form/calendar/date-range-picker/FmDateRangePickerDesktop.vue.d.ts +90 -0
  22. package/dist/components/form/calendar/date-range-picker/FmDateRangePickerField.vue.d.ts +70 -0
  23. package/dist/components/form/calendar/date-range-picker/FmDateRangePickerMobile.vue.d.ts +88 -0
  24. package/dist/components/form/calendar/date-range-picker/common.d.ts +37 -0
  25. package/dist/components/form/calendar/helper.d.ts +8 -0
  26. package/dist/components/form/checkbox/FmCheckbox.vue.d.ts +4 -1
  27. package/dist/components/form/field/FmField.vue.d.ts +1 -1
  28. package/dist/components/form/form-group/FmFormGroup.vue.d.ts +2 -2
  29. package/dist/components/form/helper-text/FmHelperText.vue.d.ts +1 -1
  30. package/dist/components/form/label/FmLabel.vue.d.ts +1 -1
  31. package/dist/components/form/phone-number/FmPhoneNumber.vue.d.ts +75 -0
  32. package/dist/components/form/pin-field/FmPinField.vue.d.ts +45 -0
  33. package/dist/components/form/radio/FmRadio.vue.d.ts +1 -1
  34. package/dist/components/form/radio-group/FmRadioGroup.vue.d.ts +3 -3
  35. package/dist/components/form/search/FmGlobalSearch.vue.d.ts +121 -0
  36. package/dist/components/form/search/FmSearch.vue.d.ts +98 -0
  37. package/dist/components/form/select/FmSelect.vue.d.ts +5 -2
  38. package/dist/components/form/stepper-field/FmStepperField.vue.d.ts +6 -6
  39. package/dist/components/form/switch/FmSwitch.vue.d.ts +1 -1
  40. package/dist/components/form/text-field/FmTextField.vue.d.ts +6 -15
  41. package/dist/components/form/textarea/FmTextarea.vue.d.ts +4 -4
  42. package/dist/components/form/time-picker/FmTimeInput.vue.d.ts +1 -1
  43. package/dist/components/form/time-picker/FmTimePicker.vue.d.ts +2 -2
  44. package/dist/components/form/time-picker/FmTimeRangePicker.vue.d.ts +66 -0
  45. package/dist/components/form/time-picker/helper.d.ts +13 -0
  46. package/dist/components/icon/FmIcon.vue.d.ts +1 -1
  47. package/dist/components/list/FmListItem.vue.d.ts +10 -4
  48. package/dist/components/menu/menu-component/FmMenu.vue.d.ts +11 -2
  49. package/dist/components/menu/menu-item/FmMenuItem.vue.d.ts +1 -1
  50. package/dist/components/page-head/FmPageHead.vue.d.ts +59 -0
  51. package/dist/components/progress-indicator/FmCircularProgress.vue.d.ts +50 -0
  52. package/dist/components/progress-indicator/{FmProgress.vue.d.ts → FmLinearProgress.vue.d.ts} +3 -7
  53. package/dist/components/side-sheet/FmSideSheet.vue.d.ts +54 -0
  54. package/dist/components/snackbar/FmSnackbar.vue.d.ts +3 -3
  55. package/dist/components/tab/FmCollapsibleTab.vue.d.ts +73 -0
  56. package/dist/components/tab/FmTab.vue.d.ts +5 -5
  57. package/dist/components/tabs/FmCollapsibleTabs.vue.d.ts +35 -0
  58. package/dist/components/tabs/FmTabs.vue.d.ts +4 -4
  59. package/dist/components/thumbnail/FmThumbnail.vue.d.ts +47 -0
  60. package/dist/components/tooltip/FmTooltip.vue.d.ts +15 -31
  61. package/dist/components/tooltip/FmTooltipDirective.vue.d.ts +41 -0
  62. package/dist/components/top-sheet/FmTopSheet.vue.d.ts +54 -0
  63. package/dist/components.d.ts +4010 -1991
  64. package/dist/composables/index.d.ts +8 -0
  65. package/dist/composables/useBreakpoints.d.ts +8 -0
  66. package/dist/composables/useDialogChild.d.ts +7 -0
  67. package/dist/composables/useSnackbar.d.ts +2 -0
  68. package/dist/directives/tooltip.d.ts +8 -0
  69. package/dist/federation/FmBottomSheet-b037cf39.css +1 -0
  70. package/dist/federation/FmButton-e5ddd0ef.css +1 -0
  71. package/dist/federation/FmCard-232430ec.css +1 -0
  72. package/dist/federation/FmCardSection.vue_vue_type_script_setup_true_lang-a6fdefec.js +1 -0
  73. package/dist/federation/FmCardSubtitle.vue_vue_type_script_setup_true_lang-ec743f29.js +1 -0
  74. package/dist/federation/FmCardTitle.vue_vue_type_script_setup_true_lang-de099232.js +1 -0
  75. package/dist/federation/FmCheckbox.vue_vue_type_style_index_0_lang-be46dbff.js +1 -0
  76. package/dist/federation/FmChip.vue_vue_type_script_setup_true_lang-5f49d8ed.js +1 -0
  77. package/dist/federation/{FmChipGroup.vue_vue_type_script_setup_true_lang-871c2a2b.js → FmChipGroup.vue_vue_type_script_setup_true_lang-c0502319.js} +1 -1
  78. package/dist/federation/FmCircularProgress-765a2205.css +1 -0
  79. package/dist/federation/FmDatePicker-38a93ae6.css +1 -0
  80. package/dist/federation/FmDatePickerMobile-3803ddc6.css +1 -0
  81. package/dist/federation/FmDateRangePicker-e1b3748f.css +1 -0
  82. package/dist/federation/FmDateRangePickerMobile-12bff066.css +1 -0
  83. package/dist/federation/FmDateRangeYearMonthPicker.vue_vue_type_script_setup_true_lang-40d277d0.js +1 -0
  84. package/dist/federation/{FmField-bd90633b.css → FmField-996759d0.css} +1 -1
  85. package/dist/federation/FmFormGroup.vue_vue_type_script_setup_true_lang-69ceacdc.js +1 -0
  86. package/dist/federation/{FmHelperText.vue_vue_type_script_setup_true_lang-b9f6c877.js → FmHelperText.vue_vue_type_script_setup_true_lang-f9cc4fda.js} +1 -1
  87. package/dist/federation/{FmLabel.vue_vue_type_script_setup_true_lang-9da27688.js → FmLabel.vue_vue_type_script_setup_true_lang-c090ecda.js} +1 -1
  88. package/dist/federation/FmLinearProgress-d0939dbe.css +1 -0
  89. package/dist/federation/FmListItem-1f25df9c.css +1 -0
  90. package/dist/federation/{FmMenu-3b65256e.css → FmMenu-7a15934c.css} +1 -1
  91. package/dist/federation/{FmMenuDivider.vue_vue_type_script_setup_true_lang-a16c9e66.js → FmMenuDivider.vue_vue_type_script_setup_true_lang-fc05df0d.js} +1 -1
  92. package/dist/federation/FmMenuItem-f376e516.css +1 -0
  93. package/dist/federation/FmPinField-5116c09c.css +1 -0
  94. package/dist/federation/{helper-cda9b8da.css → FmPopover-2805f8b5.css} +1 -1
  95. package/dist/federation/FmPopover-7c5a1f1a.js +1 -0
  96. package/dist/federation/FmSearch.vue_vue_type_script_setup_true_lang-32670481.js +1 -0
  97. package/dist/federation/FmSelect.vue_vue_type_script_setup_true_lang-fdb202ee.js +1 -0
  98. package/dist/federation/FmSideSheet-72dc77de.css +1 -0
  99. package/dist/federation/FmSnackbar-fbf672a5.css +1 -0
  100. package/dist/federation/{FmStepHeader.vue_vue_type_script_setup_true_lang-3e652589.js → FmStepHeader.vue_vue_type_script_setup_true_lang-ab0f0d59.js} +1 -1
  101. package/dist/federation/{FmStepperField-62fdd552.css → FmStepperField-66286c2f.css} +1 -1
  102. package/dist/federation/FmTab-36e86f03.css +1 -0
  103. package/dist/federation/FmTextField.vue_vue_type_style_index_0_lang-6aa68ac5.js +1 -0
  104. package/dist/federation/FmTimeInput.vue_vue_type_style_index_0_lang-cb1bee16.js +1 -0
  105. package/dist/federation/FmTooltip.vue_vue_type_script_setup_true_lang-92157710.js +1 -0
  106. package/dist/federation/FmTopSheet-9835b720.css +1 -0
  107. package/dist/federation/__federation_expose_FmAvatar-a8487776.js +1 -0
  108. package/dist/federation/{__federation_expose_FmBadge-5fece7d5.js → __federation_expose_FmBadge-5fd3cc75.js} +1 -1
  109. package/dist/federation/__federation_expose_FmBarChart-e3cc34d0.js +1 -0
  110. package/dist/federation/__federation_expose_FmBottomSheet-e8855ee4.js +1 -0
  111. package/dist/federation/__federation_expose_FmBreadcrumb-1ef81399.js +1 -0
  112. package/dist/federation/__federation_expose_FmButton-564e4537.js +9 -0
  113. package/dist/federation/__federation_expose_FmButtonGroup-ed1f1c56.js +1 -0
  114. package/dist/federation/__federation_expose_FmCard-b5ba47ac.js +1 -0
  115. package/dist/federation/__federation_expose_FmCardActions-e07f5762.js +1 -0
  116. package/dist/federation/__federation_expose_FmCardHeader-eebcb72e.js +1 -0
  117. package/dist/federation/__federation_expose_FmCardMedia-153e30ab.js +1 -0
  118. package/dist/federation/{__federation_expose_FmCardSection-4d3afd54.js → __federation_expose_FmCardSection-c33d5eb4.js} +1 -1
  119. package/dist/federation/__federation_expose_FmCardSubtitle-85a70525.js +1 -0
  120. package/dist/federation/{__federation_expose_FmCardTitle-c60d87ca.js → __federation_expose_FmCardTitle-100d10dc.js} +1 -1
  121. package/dist/federation/{__federation_expose_FmCheckbox-2ff86aa2.js → __federation_expose_FmCheckbox-ce42713f.js} +1 -1
  122. package/dist/federation/{__federation_expose_FmChip-f9c9853a.js → __federation_expose_FmChip-c129e485.js} +1 -1
  123. package/dist/federation/{__federation_expose_FmChipGroup-19a130b3.js → __federation_expose_FmChipGroup-c830232a.js} +1 -1
  124. package/dist/federation/__federation_expose_FmCircularProgress-d3de780f.js +1 -0
  125. package/dist/federation/__federation_expose_FmCollapsibleTabs-c91186f4.js +1 -0
  126. package/dist/federation/__federation_expose_FmDatePicker-50e5dde2.js +1 -0
  127. package/dist/federation/__federation_expose_FmDatePickerMobile-8a886a49.js +1 -0
  128. package/dist/federation/__federation_expose_FmDateRangePicker-9be0a904.js +1 -0
  129. package/dist/federation/__federation_expose_FmDateRangePickerMobile-6191c5e5.js +1 -0
  130. package/dist/federation/{FmDialog.vue_vue_type_style_index_0_lang-86fa0cf9.js → __federation_expose_FmDialog-6b49642b.js} +1 -1
  131. package/dist/federation/{__federation_expose_FmDropField-d7a84492.js → __federation_expose_FmDropField-94342518.js} +1 -1
  132. package/dist/federation/{__federation_expose_FmDynamicDialog-552e9689.js → __federation_expose_FmDynamicDialog-b5a9e7c8.js} +1 -1
  133. package/dist/federation/__federation_expose_FmField-37042217.js +1 -0
  134. package/dist/federation/{FmForm.vue_vue_type_script_setup_true_lang-68c21486.js → __federation_expose_FmForm-99da58b0.js} +1 -1
  135. package/dist/federation/{__federation_expose_FmFormGroup-b86e693c.js → __federation_expose_FmFormGroup-2e6a6023.js} +1 -1
  136. package/dist/federation/__federation_expose_FmGlobalSearch-8e677bac.js +1 -0
  137. package/dist/federation/{__federation_expose_FmHelperText-c2bfc826.js → __federation_expose_FmHelperText-a7b991f3.js} +1 -1
  138. package/dist/federation/__federation_expose_FmIcon-c21d4c3c.js +1 -0
  139. package/dist/federation/{__federation_expose_FmLabel-3920bc70.js → __federation_expose_FmLabel-dfdee236.js} +1 -1
  140. package/dist/federation/__federation_expose_FmLineChart-d25df528.js +1 -0
  141. package/dist/federation/__federation_expose_FmLinearProgress-a3fa65ed.js +1 -0
  142. package/dist/federation/{__federation_expose_FmList-6740728f.js → __federation_expose_FmList-201ecd29.js} +1 -1
  143. package/dist/federation/__federation_expose_FmListItem-c643d8fc.js +1 -0
  144. package/dist/federation/__federation_expose_FmMenu-16c7062f.js +1 -0
  145. package/dist/federation/__federation_expose_FmMenuDeprecated-be7594e3.js +1 -0
  146. package/dist/federation/{__federation_expose_FmMenuDivider-83ce794e.js → __federation_expose_FmMenuDivider-573f3673.js} +1 -1
  147. package/dist/federation/{FmMenuHeader.vue_vue_type_script_setup_true_lang-7d261f99.js → __federation_expose_FmMenuHeader-1c83a608.js} +1 -1
  148. package/dist/federation/__federation_expose_FmMenuItem-10ad7e23.js +1 -0
  149. package/dist/federation/__federation_expose_FmPageHead-4d770277.js +1 -0
  150. package/dist/federation/__federation_expose_FmPhoneNumber-6771fae0.js +7 -0
  151. package/dist/federation/__federation_expose_FmPieChart-6b248aff.js +2 -0
  152. package/dist/federation/__federation_expose_FmPinField-713bdeb5.js +1 -0
  153. package/dist/federation/{__federation_expose_FmRadio-260108d3.js → __federation_expose_FmRadio-bbc6b501.js} +1 -1
  154. package/dist/federation/{FmRadioGroup.vue_vue_type_script_setup_true_lang-1eea435c.js → __federation_expose_FmRadioGroup-408c72ef.js} +1 -1
  155. package/dist/federation/__federation_expose_FmSearch-f22edecf.js +1 -0
  156. package/dist/federation/{__federation_expose_FmSelect-dae2a9d1.js → __federation_expose_FmSelect-cbbea755.js} +1 -1
  157. package/dist/federation/__federation_expose_FmSideSheet-7c975398.js +1 -0
  158. package/dist/federation/__federation_expose_FmSnackbar-59728279.js +1 -0
  159. package/dist/federation/{__federation_expose_FmSpacer-d3f4d403.js → __federation_expose_FmSpacer-bd9a02ba.js} +1 -1
  160. package/dist/federation/{__federation_expose_FmStep-491ce0aa.js → __federation_expose_FmStep-a5c3bc53.js} +1 -1
  161. package/dist/federation/__federation_expose_FmStepper-07bab4c9.js +1 -0
  162. package/dist/federation/__federation_expose_FmStepperField-1dfccefe.js +1 -0
  163. package/dist/federation/{__federation_expose_FmSwitch-7457e541.js → __federation_expose_FmSwitch-c0ed4d4e.js} +1 -1
  164. package/dist/federation/__federation_expose_FmTab-d4114c82.js +1 -0
  165. package/dist/federation/{FmTable.vue_vue_type_script_setup_true_lang-36679d9d.js → __federation_expose_FmTable-66cb6406.js} +2 -2
  166. package/dist/federation/{FmTabs.vue_vue_type_script_setup_true_lang-2f707ea6.js → __federation_expose_FmTabs-f2e64464.js} +1 -1
  167. package/dist/federation/{__federation_expose_FmTextField-cebd7ff7.js → __federation_expose_FmTextField-3139773b.js} +1 -1
  168. package/dist/federation/{__federation_expose_FmTextarea-9c4303ed.js → __federation_expose_FmTextarea-801379c9.js} +1 -1
  169. package/dist/federation/__federation_expose_FmThumbnail-77aa517a.js +1 -0
  170. package/dist/federation/{__federation_expose_FmTimeInput-c425349d.js → __federation_expose_FmTimeInput-87c277d2.js} +1 -1
  171. package/dist/federation/__federation_expose_FmTimePicker-be987368.js +1 -0
  172. package/dist/federation/__federation_expose_FmTimeRangePicker-bb91e106.js +1 -0
  173. package/dist/federation/{__federation_expose_FmTooltip-1a584510.js → __federation_expose_FmTooltip-9a658343.js} +1 -1
  174. package/dist/federation/__federation_expose_FmTopSheet-cac486b5.js +1 -0
  175. package/dist/federation/_commonjsHelpers-725317a4.js +1 -0
  176. package/dist/federation/auto-f06b4c5b.js +18 -0
  177. package/dist/federation/dialog-plugin-1b39b5e4.js +1 -0
  178. package/dist/federation/feedmepos-ui-components.js +1 -1
  179. package/dist/federation/floating-ui.vue.esm-ccda7678.js +1 -0
  180. package/dist/federation/helper-52b61be9.js +1 -0
  181. package/dist/federation/helpers-75f687ff.js +1 -0
  182. package/dist/federation/index-1e0eb05f.js +2 -0
  183. package/dist/federation/index-b1df4432.css +1 -0
  184. package/dist/federation/provider-keys-d5322eae.js +1 -0
  185. package/dist/federation/useBreakpoints-9de6b2f5.js +1 -0
  186. package/dist/federation/{useProxiedModel-ab6f6ec7.js → useProxiedModel-045a5758.js} +1 -1
  187. package/dist/federation/util-color-a71a272e.js +1 -0
  188. package/dist/federation/vue-router-8d07778e.js +1 -0
  189. package/dist/feedmepos-ui-library.js +15412 -9582
  190. package/dist/feedmepos-ui-library.umd.cjs +22 -14
  191. package/dist/flags/MY.svg +26 -0
  192. package/dist/flags/SG.svg +13 -0
  193. package/dist/global-components.d.ts +21 -1
  194. package/dist/index.d.ts +3 -4
  195. package/dist/plugin/dialog-plugin.d.ts +6 -6
  196. package/dist/plugin/snackbar-plugin.d.ts +65 -0
  197. package/dist/style.css +1 -1
  198. package/dist/tailwind-plugin.js +3 -0
  199. package/dist/utils/fuzzy.d.ts +10 -0
  200. package/dist/utils/number.d.ts +5 -0
  201. package/dist/utils/provider-keys.d.ts +4 -0
  202. package/dist/utils/util-color.d.ts +2 -0
  203. package/package.json +9 -22
  204. package/README.md +0 -35
  205. package/dist/components/badge/FmBadge.stories.d.ts +0 -11
  206. package/dist/components/breadcrumb/FmBreadcrumb.stories.d.ts +0 -6
  207. package/dist/components/button/FmButton.stories.d.ts +0 -200
  208. package/dist/components/button-group/FmButtonGroup.stories.d.ts +0 -7
  209. package/dist/components/card/FmCard.stories.d.ts +0 -6
  210. package/dist/components/chart/line/FmLine.stories.d.ts +0 -6
  211. package/dist/components/chip/FmChip.stories.d.ts +0 -7
  212. package/dist/components/chip-group/FmChipGroup.stories.d.ts +0 -6
  213. package/dist/components/dialog/FmDialog.stories.d.ts +0 -6
  214. package/dist/components/drop-field/FmDropField.stories.d.ts +0 -6
  215. package/dist/components/form/calendar/date-picker/FmDatePicker.stories.d.ts +0 -6
  216. package/dist/components/form/calendar/date-range-picker/FmDateRangePicker.stories.d.ts +0 -6
  217. package/dist/components/form/checkbox/FmCheckbox.stories.d.ts +0 -6
  218. package/dist/components/form/helper-text/FmHelperText.stories.d.ts +0 -129
  219. package/dist/components/form/label/FmLabel.stories.d.ts +0 -6
  220. package/dist/components/form/radio/FmRadio.stories.d.ts +0 -6
  221. package/dist/components/form/radio-group/FmRadioGroup.stories.d.ts +0 -6
  222. package/dist/components/form/select/FmSelect.stories.d.ts +0 -6
  223. package/dist/components/form/stepper-field/FmStepperField.stories.d.ts +0 -6
  224. package/dist/components/form/switch/FmSwitch.stories.d.ts +0 -6
  225. package/dist/components/form/text-field/FmTextField.stories.d.ts +0 -6
  226. package/dist/components/form/textarea/FmTextarea.stories.d.ts +0 -6
  227. package/dist/components/form/time-picker/FmTimePicker.stories.d.ts +0 -6
  228. package/dist/components/form/time-picker/timePicker.d.ts +0 -5
  229. package/dist/components/icon/FmIcon.stories.d.ts +0 -6
  230. package/dist/components/list/FmList.stories.d.ts +0 -6
  231. package/dist/components/menu/menu-container-deprecated/FmMenu.stories.d.ts +0 -6
  232. package/dist/components/progress-indicator/FmProgressIndicator.vue.d.ts +0 -19
  233. package/dist/components/snackbar/FmSnackbar.stories.d.ts +0 -6
  234. package/dist/components/spacer/FmSpacer.stories.d.ts +0 -6
  235. package/dist/components/stepper/FmStepper.stories.d.ts +0 -6
  236. package/dist/components/table/FmTable.stories.d.ts +0 -6
  237. package/dist/components/tabs/FmTabs.stories.d.ts +0 -6
  238. package/dist/components/tooltip/FmTooltip.stories.d.ts +0 -7
  239. package/dist/demo/Breadcrumb.vue.d.ts +0 -2
  240. package/dist/demo/Button.vue.d.ts +0 -2
  241. package/dist/demo/ButtonGroup.vue.d.ts +0 -2
  242. package/dist/demo/Card.vue.d.ts +0 -2
  243. package/dist/demo/Chip.vue.d.ts +0 -2
  244. package/dist/demo/DatePicker.vue.d.ts +0 -2
  245. package/dist/demo/DateRangePicker.vue.d.ts +0 -2
  246. package/dist/demo/DemoSection.vue.d.ts +0 -29
  247. package/dist/demo/Dialog.vue.d.ts +0 -2
  248. package/dist/demo/DropField.vue.d.ts +0 -2
  249. package/dist/demo/Icon.vue.d.ts +0 -2
  250. package/dist/demo/List.vue.d.ts +0 -2
  251. package/dist/demo/Menu.vue.d.ts +0 -2
  252. package/dist/demo/ProgressIndicator.vue.d.ts +0 -2
  253. package/dist/demo/Snackbar.vue.d.ts +0 -2
  254. package/dist/demo/Stepper.vue.d.ts +0 -2
  255. package/dist/demo/Table.vue.d.ts +0 -2
  256. package/dist/demo/Tabs.vue.d.ts +0 -2
  257. package/dist/demo/TimePicker.vue.d.ts +0 -2
  258. package/dist/demo/Tooltip.vue.d.ts +0 -2
  259. package/dist/demo/chart/Line.vue.d.ts +0 -2
  260. package/dist/demo/demo.d.ts +0 -1
  261. package/dist/demo/form/Checkbox.vue.d.ts +0 -2
  262. package/dist/demo/form/Field.vue.d.ts +0 -2
  263. package/dist/demo/form/Form.vue.d.ts +0 -2
  264. package/dist/demo/form/FormGroup.vue.d.ts +0 -2
  265. package/dist/demo/form/Radio.vue.d.ts +0 -2
  266. package/dist/demo/form/Select.vue.d.ts +0 -2
  267. package/dist/demo/form/Stepper.vue.d.ts +0 -2
  268. package/dist/demo/form/Switch.vue.d.ts +0 -2
  269. package/dist/demo/form/TextField.vue.d.ts +0 -2
  270. package/dist/federation/FmBreadcrumb.vue_vue_type_style_index_0_lang-dc9b9631.js +0 -1
  271. package/dist/federation/FmButton-8296a892.css +0 -1
  272. package/dist/federation/FmButtonGroup.vue_vue_type_script_setup_true_lang-de74f366.js +0 -1
  273. package/dist/federation/FmCard-1d456952.css +0 -1
  274. package/dist/federation/FmCard.vue_vue_type_style_index_0_lang-95d94c84.js +0 -1
  275. package/dist/federation/FmCardActions.vue_vue_type_script_setup_true_lang-0037a6a2.js +0 -1
  276. package/dist/federation/FmCardSection.vue_vue_type_script_setup_true_lang-06e2ee1e.js +0 -1
  277. package/dist/federation/FmCardTitle.vue_vue_type_script_setup_true_lang-164b05ca.js +0 -1
  278. package/dist/federation/FmCheckbox.vue_vue_type_style_index_0_lang-b8a5c536.js +0 -1
  279. package/dist/federation/FmChip.vue_vue_type_script_setup_true_lang-8bcb4f4d.js +0 -1
  280. package/dist/federation/FmDatePicker-05290165.css +0 -1
  281. package/dist/federation/FmDateRangePicker-4f8fd43e.css +0 -1
  282. package/dist/federation/FmFormGroup.vue_vue_type_script_setup_true_lang-c64b2755.js +0 -1
  283. package/dist/federation/FmLine.vue_vue_type_script_setup_true_lang-c16f5038.js +0 -3
  284. package/dist/federation/FmListItem-3af8b220.css +0 -1
  285. package/dist/federation/FmMenuItem-3ff57d41.css +0 -1
  286. package/dist/federation/FmProgressIndicator-f275f227.css +0 -1
  287. package/dist/federation/FmProgressIndicator.vue_vue_type_style_index_0_lang-54b663d1.js +0 -1
  288. package/dist/federation/FmSelect.vue_vue_type_script_setup_true_lang-5ed984b3.js +0 -1
  289. package/dist/federation/FmSnackbar-1bbe14e3.css +0 -1
  290. package/dist/federation/FmStepper.vue_vue_type_script_setup_true_lang-7a7fd083.js +0 -1
  291. package/dist/federation/FmTab-547e6312.css +0 -1
  292. package/dist/federation/FmTextField.vue_vue_type_style_index_0_lang-4ee9ac83.js +0 -1
  293. package/dist/federation/FmTimeInput.vue_vue_type_style_index_0_lang-f44318f2.js +0 -1
  294. package/dist/federation/FmTimePicker.vue_vue_type_script_setup_true_lang-f148eabb.js +0 -1
  295. package/dist/federation/FmTooltip.vue_vue_type_script_setup_true_lang-4469b83d.js +0 -1
  296. package/dist/federation/__federation_expose_FmBreadcrumb-633ec8f4.js +0 -1
  297. package/dist/federation/__federation_expose_FmButton-47d8ad97.js +0 -9
  298. package/dist/federation/__federation_expose_FmButtonGroup-2f939b41.js +0 -1
  299. package/dist/federation/__federation_expose_FmCard-1c7738cd.js +0 -1
  300. package/dist/federation/__federation_expose_FmCardActions-05e2e004.js +0 -1
  301. package/dist/federation/__federation_expose_FmDatePicker-36f8e77d.js +0 -1
  302. package/dist/federation/__federation_expose_FmDateRangePicker-c9f29e4c.js +0 -1
  303. package/dist/federation/__federation_expose_FmDialog-b9532ef0.js +0 -1
  304. package/dist/federation/__federation_expose_FmField-abbdd405.js +0 -1
  305. package/dist/federation/__federation_expose_FmForm-d832108c.js +0 -1
  306. package/dist/federation/__federation_expose_FmIcon-5f115b01.js +0 -1
  307. package/dist/federation/__federation_expose_FmLineChart-aeb2b831.js +0 -1
  308. package/dist/federation/__federation_expose_FmListItem-ce3cb629.js +0 -1
  309. package/dist/federation/__federation_expose_FmMenu-83a2f7f9.js +0 -1
  310. package/dist/federation/__federation_expose_FmMenuDeprecated-e00c6927.js +0 -1
  311. package/dist/federation/__federation_expose_FmMenuHeader-2d25e64e.js +0 -1
  312. package/dist/federation/__federation_expose_FmMenuItem-dab7a9bf.js +0 -1
  313. package/dist/federation/__federation_expose_FmProgressIndicator-22e554b8.js +0 -1
  314. package/dist/federation/__federation_expose_FmRadioGroup-63a133e6.js +0 -1
  315. package/dist/federation/__federation_expose_FmSnackbar-abeb97b1.js +0 -1
  316. package/dist/federation/__federation_expose_FmStepper-0d3fdad5.js +0 -1
  317. package/dist/federation/__federation_expose_FmStepperField-29d30922.js +0 -1
  318. package/dist/federation/__federation_expose_FmTab-0dc371f2.js +0 -1
  319. package/dist/federation/__federation_expose_FmTable-817dfa3f.js +0 -1
  320. package/dist/federation/__federation_expose_FmTabs-b7a1a6bb.js +0 -1
  321. package/dist/federation/__federation_expose_FmTimePicker-927c416b.js +0 -1
  322. package/dist/federation/dialog-plugin-fd90bdfd.js +0 -1
  323. package/dist/federation/floating-ui.vue.esm-ba6cbcbc.js +0 -1
  324. package/dist/federation/helper-89a4a8fa.js +0 -1
  325. package/dist/federation/index-29c58620.js +0 -12
  326. package/dist/federation/index-65a07791.css +0 -1
  327. package/dist/federation/provider-keys-f2cfeb97.js +0 -1
  328. /package/dist/{demo/Badge.vue.d.ts → components/snackbar/FmSnackbarToast.vue.d.ts} +0 -0
  329. /package/dist/federation/{__federation_fn_import-f464e9d7.js → __federation_fn_import-68bd0d37.js} +0 -0
@@ -1 +1 @@
1
- import{_ as d}from"./preload-helper-cf010ec4.js";let _,l,y,h=(async()=>{const o=new Set(["Module","__esModule","default","_export_sfc"]);let m={"./FmBadge":()=>(_(["FmBadge-d37c8e51.css"]),t("./__federation_expose_FmBadge-5fece7d5.js").then(e=>Object.keys(e).every(r=>o.has(r))?()=>e.default:()=>e)),"./FmBreadcrumb":()=>(_(["FmBreadcrumb-7a206e9b.css"]),t("./__federation_expose_FmBreadcrumb-633ec8f4.js").then(e=>Object.keys(e).every(r=>o.has(r))?()=>e.default:()=>e)),"./FmButton":()=>(_(["FmButton-8296a892.css","FmIcon-24e2c414.css"]),t("./__federation_expose_FmButton-47d8ad97.js").then(e=>Object.keys(e).every(r=>o.has(r))?()=>e.default:()=>e)),"./FmButtonGroup":()=>(_(["FmIcon-24e2c414.css"]),t("./__federation_expose_FmButtonGroup-2f939b41.js").then(e=>Object.keys(e).every(r=>o.has(r))?()=>e.default:()=>e)),"./FmCard":()=>(_(["FmCard-1d456952.css"]),t("./__federation_expose_FmCard-1c7738cd.js").then(e=>Object.keys(e).every(r=>o.has(r))?()=>e.default:()=>e)),"./FmCardActions":()=>(_([]),t("./__federation_expose_FmCardActions-05e2e004.js").then(e=>Object.keys(e).every(r=>o.has(r))?()=>e.default:()=>e)),"./FmCardSection":()=>(_([]),t("./__federation_expose_FmCardSection-4d3afd54.js").then(e=>Object.keys(e).every(r=>o.has(r))?()=>e.default:()=>e)),"./FmCardTitle":()=>(_([]),t("./__federation_expose_FmCardTitle-c60d87ca.js").then(e=>Object.keys(e).every(r=>o.has(r))?()=>e.default:()=>e)),"./FmChip":()=>(_(["FmIcon-24e2c414.css"]),t("./__federation_expose_FmChip-f9c9853a.js").then(e=>Object.keys(e).every(r=>o.has(r))?()=>e.default:()=>e)),"./FmChipGroup":()=>(_(["FmIcon-24e2c414.css"]),t("./__federation_expose_FmChipGroup-19a130b3.js").then(e=>Object.keys(e).every(r=>o.has(r))?()=>e.default:()=>e)),"./FmDialog":()=>(_(["FmDialog-5cb5a1f8.css","FmIcon-24e2c414.css"]),t("./__federation_expose_FmDialog-b9532ef0.js").then(e=>Object.keys(e).every(r=>o.has(r))?()=>e.default:()=>e)),"./FmDropField":()=>(_(["FmDropField-7af19c42.css","FmButton-8296a892.css","FmIcon-24e2c414.css"]),t("./__federation_expose_FmDropField-d7a84492.js").then(e=>Object.keys(e).every(r=>o.has(r))?()=>e.default:()=>e)),"./FmDynamicDialog":()=>(_(["FmDialog-5cb5a1f8.css","FmIcon-24e2c414.css","FmButton-8296a892.css"]),t("./__federation_expose_FmDynamicDialog-552e9689.js").then(e=>Object.keys(e).every(r=>o.has(r))?()=>e.default:()=>e)),"./FmLineChart":()=>(_([]),t("./__federation_expose_FmLineChart-aeb2b831.js").then(e=>Object.keys(e).every(r=>o.has(r))?()=>e.default:()=>e)),"./FmCheckbox":()=>(_(["FmCheckbox-2240ce5a.css","FmIcon-24e2c414.css"]),t("./__federation_expose_FmCheckbox-2ff86aa2.js").then(e=>Object.keys(e).every(r=>o.has(r))?()=>e.default:()=>e)),"./FmDatePicker":()=>(_(["FmDatePicker-05290165.css","helper-cda9b8da.css","FmMenu-3b65256e.css","FmMenuItem-3ff57d41.css","FmIcon-24e2c414.css","FmCheckbox-2240ce5a.css","FmButton-8296a892.css","FmField-bd90633b.css"]),t("./__federation_expose_FmDatePicker-36f8e77d.js").then(e=>Object.keys(e).every(r=>o.has(r))?()=>e.default:()=>e)),"./FmDateRangePicker":()=>(_(["FmDateRangePicker-4f8fd43e.css","helper-cda9b8da.css","FmMenu-3b65256e.css","FmMenuItem-3ff57d41.css","FmIcon-24e2c414.css","FmCheckbox-2240ce5a.css","FmButton-8296a892.css","FmField-bd90633b.css","FmSwitch-30641580.css"]),t("./__federation_expose_FmDateRangePicker-c9f29e4c.js").then(e=>Object.keys(e).every(r=>o.has(r))?()=>e.default:()=>e)),"./FmField":()=>(_(["FmField-bd90633b.css","FmIcon-24e2c414.css"]),t("./__federation_expose_FmField-abbdd405.js").then(e=>Object.keys(e).every(r=>o.has(r))?()=>e.default:()=>e)),"./FmForm":()=>(_([]),t("./__federation_expose_FmForm-d832108c.js").then(e=>Object.keys(e).every(r=>o.has(r))?()=>e.default:()=>e)),"./FmFormGroup":()=>(_(["FmIcon-24e2c414.css","FmButton-8296a892.css"]),t("./__federation_expose_FmFormGroup-b86e693c.js").then(e=>Object.keys(e).every(r=>o.has(r))?()=>e.default:()=>e)),"./FmHelperText":()=>(_(["FmIcon-24e2c414.css"]),t("./__federation_expose_FmHelperText-c2bfc826.js").then(e=>Object.keys(e).every(r=>o.has(r))?()=>e.default:()=>e)),"./FmLabel":()=>(_(["FmIcon-24e2c414.css","FmButton-8296a892.css"]),t("./__federation_expose_FmLabel-3920bc70.js").then(e=>Object.keys(e).every(r=>o.has(r))?()=>e.default:()=>e)),"./FmRadio":()=>(_(["FmRadio-5d786858.css"]),t("./__federation_expose_FmRadio-260108d3.js").then(e=>Object.keys(e).every(r=>o.has(r))?()=>e.default:()=>e)),"./FmRadioGroup":()=>(_(["FmIcon-24e2c414.css","FmButton-8296a892.css"]),t("./__federation_expose_FmRadioGroup-63a133e6.js").then(e=>Object.keys(e).every(r=>o.has(r))?()=>e.default:()=>e)),"./FmSelect":()=>(_(["FmIcon-24e2c414.css","FmMenuItem-3ff57d41.css","FmCheckbox-2240ce5a.css","FmMenuDeprecated-5fb993ca.css","FmButton-8296a892.css","FmField-bd90633b.css"]),t("./__federation_expose_FmSelect-dae2a9d1.js").then(e=>Object.keys(e).every(r=>o.has(r))?()=>e.default:()=>e)),"./FmStepperField":()=>(_(["FmStepperField-62fdd552.css","FmField-bd90633b.css","FmIcon-24e2c414.css","FmButton-8296a892.css"]),t("./__federation_expose_FmStepperField-29d30922.js").then(e=>Object.keys(e).every(r=>o.has(r))?()=>e.default:()=>e)),"./FmSwitch":()=>(_(["FmSwitch-30641580.css","FmIcon-24e2c414.css"]),t("./__federation_expose_FmSwitch-7457e541.js").then(e=>Object.keys(e).every(r=>o.has(r))?()=>e.default:()=>e)),"./FmTextField":()=>(_(["FmTextField-2ef8a29f.css","FmIcon-24e2c414.css","FmButton-8296a892.css","FmField-bd90633b.css"]),t("./__federation_expose_FmTextField-cebd7ff7.js").then(e=>Object.keys(e).every(r=>o.has(r))?()=>e.default:()=>e)),"./FmTextarea":()=>(_(["FmTextarea-30a10160.css","FmIcon-24e2c414.css","FmButton-8296a892.css"]),t("./__federation_expose_FmTextarea-9c4303ed.js").then(e=>Object.keys(e).every(r=>o.has(r))?()=>e.default:()=>e)),"./FmTimeInput":()=>(_(["FmTimeInput-86f7cb20.css","FmIcon-24e2c414.css"]),t("./__federation_expose_FmTimeInput-c425349d.js").then(e=>Object.keys(e).every(r=>o.has(r))?()=>e.default:()=>e)),"./FmTimePicker":()=>(_(["FmButton-8296a892.css","FmIcon-24e2c414.css","FmField-bd90633b.css","FmTimeInput-86f7cb20.css","FmMenuDeprecated-5fb993ca.css"]),t("./__federation_expose_FmTimePicker-927c416b.js").then(e=>Object.keys(e).every(r=>o.has(r))?()=>e.default:()=>e)),"./FmIcon":()=>(_(["FmIcon-24e2c414.css"]),t("./__federation_expose_FmIcon-5f115b01.js").then(e=>Object.keys(e).every(r=>o.has(r))?()=>e.default:()=>e)),"./FmList":()=>(_(["FmList-0bec0eff.css"]),t("./__federation_expose_FmList-6740728f.js").then(e=>Object.keys(e).every(r=>o.has(r))?()=>e.default:()=>e)),"./FmListItem":()=>(_(["FmListItem-3af8b220.css"]),t("./__federation_expose_FmListItem-ce3cb629.js").then(e=>Object.keys(e).every(r=>o.has(r))?()=>e.default:()=>e)),"./FmMenu":()=>(_(["FmMenu-3b65256e.css"]),t("./__federation_expose_FmMenu-83a2f7f9.js").then(e=>Object.keys(e).every(r=>o.has(r))?()=>e.default:()=>e)),"./FmMenuDeprecated":()=>(_(["FmMenuDeprecated-5fb993ca.css"]),t("./__federation_expose_FmMenuDeprecated-e00c6927.js").then(e=>Object.keys(e).every(r=>o.has(r))?()=>e.default:()=>e)),"./FmMenuDivider":()=>(_([]),t("./__federation_expose_FmMenuDivider-83ce794e.js").then(e=>Object.keys(e).every(r=>o.has(r))?()=>e.default:()=>e)),"./FmMenuHeader":()=>(_([]),t("./__federation_expose_FmMenuHeader-2d25e64e.js").then(e=>Object.keys(e).every(r=>o.has(r))?()=>e.default:()=>e)),"./FmMenuItem":()=>(_(["FmMenuItem-3ff57d41.css","FmIcon-24e2c414.css","FmCheckbox-2240ce5a.css"]),t("./__federation_expose_FmMenuItem-dab7a9bf.js").then(e=>Object.keys(e).every(r=>o.has(r))?()=>e.default:()=>e)),"./FmProgressIndicator":()=>(_(["FmProgressIndicator-f275f227.css"]),t("./__federation_expose_FmProgressIndicator-22e554b8.js").then(e=>Object.keys(e).every(r=>o.has(r))?()=>e.default:()=>e)),"./FmSnackbar":()=>(_(["FmSnackbar-1bbe14e3.css","FmIcon-24e2c414.css"]),t("./__federation_expose_FmSnackbar-abeb97b1.js").then(e=>Object.keys(e).every(r=>o.has(r))?()=>e.default:()=>e)),"./FmSpacer":()=>(_([]),t("./__federation_expose_FmSpacer-d3f4d403.js").then(e=>Object.keys(e).every(r=>o.has(r))?()=>e.default:()=>e)),"./FmStep":()=>(_(["FmStep-5c69e906.css","FmIcon-24e2c414.css"]),t("./__federation_expose_FmStep-491ce0aa.js").then(e=>Object.keys(e).every(r=>o.has(r))?()=>e.default:()=>e)),"./FmStepper":()=>(_(["FmProgressIndicator-f275f227.css"]),t("./__federation_expose_FmStepper-0d3fdad5.js").then(e=>Object.keys(e).every(r=>o.has(r))?()=>e.default:()=>e)),"./FmTab":()=>(_(["FmTab-547e6312.css","FmIcon-24e2c414.css","FmBadge-d37c8e51.css","FmMenuDeprecated-5fb993ca.css","FmMenuItem-3ff57d41.css","FmCheckbox-2240ce5a.css"]),t("./__federation_expose_FmTab-0dc371f2.js").then(e=>Object.keys(e).every(r=>o.has(r))?()=>e.default:()=>e)),"./FmTable":()=>(_(["FmTable-f1b4b021.css","FmIcon-24e2c414.css","FmButton-8296a892.css","FmMenu-3b65256e.css","FmMenuItem-3ff57d41.css","FmCheckbox-2240ce5a.css"]),t("./__federation_expose_FmTable-817dfa3f.js").then(e=>Object.keys(e).every(r=>o.has(r))?()=>e.default:()=>e)),"./FmTabs":()=>(_(["FmTab-547e6312.css","FmIcon-24e2c414.css","FmBadge-d37c8e51.css","FmMenuDeprecated-5fb993ca.css","FmMenuItem-3ff57d41.css","FmCheckbox-2240ce5a.css"]),t("./__federation_expose_FmTabs-b7a1a6bb.js").then(e=>Object.keys(e).every(r=>o.has(r))?()=>e.default:()=>e)),"./FmTooltip":()=>(_(["FmButton-8296a892.css","FmIcon-24e2c414.css"]),t("./__federation_expose_FmTooltip-1a584510.js").then(e=>Object.keys(e).every(r=>o.has(r))?()=>e.default:()=>e))},i;i={},_=e=>{const r=import.meta.url;if(typeof r>"u"){console.warn('The remote style takes effect only when the build.target option in the vite.config.ts file is higher than that of "es2020".');return}const a=r.substring(0,r.lastIndexOf("feedmepos-ui-components.js"));e.forEach(u=>{const s=a+u;if(s in i)return;i[s]=!0;const n=document.head.appendChild(document.createElement("link"));n.href=s,n.rel="stylesheet"})};async function t(e){return d(()=>import(e).then(async r=>(await r.__tla,r)),[])}l=e=>{if(!m[e])throw new Error("Can not find remote module "+e);return m[e]()},y=e=>{globalThis.__federation_shared__=globalThis.__federation_shared__||{},Object.entries(e).forEach(([r,a])=>{const u=Object.keys(a)[0],s=Object.values(a)[0],n=s.scope||"default";globalThis.__federation_shared__[n]=globalThis.__federation_shared__[n]||{};const c=globalThis.__federation_shared__[n];(c[r]=c[r]||{})[u]=s})}})();export{h as __tla,_ as dynamicLoadingCss,l as get,y as init};
1
+ import{_ as h}from"./preload-helper-cf010ec4.js";let a,l,p,y=(async()=>{const _=new Set(["Module","__esModule","default","_export_sfc"]);let c={"./FmBadge":()=>(a(["FmBadge-d37c8e51.css"]),s("./__federation_expose_FmBadge-5fd3cc75.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmBottomSheet":()=>(a(["FmBottomSheet-b037cf39.css"]),s("./__federation_expose_FmBottomSheet-e8855ee4.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmBreadcrumb":()=>(a(["FmBreadcrumb-7a206e9b.css"]),s("./__federation_expose_FmBreadcrumb-1ef81399.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmButton":()=>(a(["FmButton-e5ddd0ef.css","FmIcon-24e2c414.css","FmCircularProgress-765a2205.css"]),s("./__federation_expose_FmButton-564e4537.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmButtonGroup":()=>(a(["FmIcon-24e2c414.css"]),s("./__federation_expose_FmButtonGroup-ed1f1c56.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmCard":()=>(a(["FmCard-232430ec.css"]),s("./__federation_expose_FmCard-b5ba47ac.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmCardActions":()=>(a([]),s("./__federation_expose_FmCardActions-e07f5762.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmCardHeader":()=>(a([]),s("./__federation_expose_FmCardHeader-eebcb72e.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmCardMedia":()=>(a([]),s("./__federation_expose_FmCardMedia-153e30ab.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmCardSection":()=>(a([]),s("./__federation_expose_FmCardSection-c33d5eb4.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmCardSubtitle":()=>(a([]),s("./__federation_expose_FmCardSubtitle-85a70525.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmCardTitle":()=>(a([]),s("./__federation_expose_FmCardTitle-100d10dc.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmChip":()=>(a(["FmIcon-24e2c414.css"]),s("./__federation_expose_FmChip-c129e485.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmChipGroup":()=>(a(["FmIcon-24e2c414.css"]),s("./__federation_expose_FmChipGroup-c830232a.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmDialog":()=>(a(["FmDialog-5cb5a1f8.css","FmIcon-24e2c414.css"]),s("./__federation_expose_FmDialog-6b49642b.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmDropField":()=>(a(["FmDropField-7af19c42.css","FmButton-e5ddd0ef.css","FmIcon-24e2c414.css","FmCircularProgress-765a2205.css"]),s("./__federation_expose_FmDropField-94342518.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmDynamicDialog":()=>(a(["FmDialog-5cb5a1f8.css","FmIcon-24e2c414.css","FmButton-e5ddd0ef.css","FmCircularProgress-765a2205.css"]),s("./__federation_expose_FmDynamicDialog-b5a9e7c8.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmLineChart":()=>(a([]),s("./__federation_expose_FmLineChart-d25df528.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmPieChart":()=>(a([]),s("./__federation_expose_FmPieChart-6b248aff.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmBarChart":()=>(a([]),s("./__federation_expose_FmBarChart-e3cc34d0.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmCheckbox":()=>(a(["FmCheckbox-2240ce5a.css","FmIcon-24e2c414.css"]),s("./__federation_expose_FmCheckbox-ce42713f.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmDatePicker":()=>(a(["FmDatePicker-38a93ae6.css","FmIcon-24e2c414.css","FmButton-e5ddd0ef.css","FmCircularProgress-765a2205.css","FmField-996759d0.css","FmMenu-7a15934c.css","FmMenuItem-f376e516.css","FmCheckbox-2240ce5a.css","FmPopover-2805f8b5.css","FmDatePickerMobile-3803ddc6.css"]),s("./__federation_expose_FmDatePicker-50e5dde2.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmDatePickerMobile":()=>(a(["FmDatePickerMobile-3803ddc6.css","FmButton-e5ddd0ef.css","FmIcon-24e2c414.css","FmCircularProgress-765a2205.css","FmField-996759d0.css"]),s("./__federation_expose_FmDatePickerMobile-8a886a49.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmDateRangePicker":()=>(a(["FmDateRangePicker-e1b3748f.css","FmIcon-24e2c414.css","FmButton-e5ddd0ef.css","FmCircularProgress-765a2205.css","FmField-996759d0.css","FmPopover-2805f8b5.css","FmMenu-7a15934c.css","FmMenuItem-f376e516.css","FmCheckbox-2240ce5a.css","FmSwitch-30641580.css","FmDateRangePickerMobile-12bff066.css"]),s("./__federation_expose_FmDateRangePicker-9be0a904.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmDateRangePickerMobile":()=>(a(["FmDateRangePickerMobile-12bff066.css","FmButton-e5ddd0ef.css","FmIcon-24e2c414.css","FmCircularProgress-765a2205.css","FmSwitch-30641580.css","FmMenuItem-f376e516.css","FmCheckbox-2240ce5a.css","FmMenu-7a15934c.css","FmField-996759d0.css"]),s("./__federation_expose_FmDateRangePickerMobile-6191c5e5.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmField":()=>(a(["FmField-996759d0.css","FmIcon-24e2c414.css"]),s("./__federation_expose_FmField-37042217.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmForm":()=>(a([]),s("./__federation_expose_FmForm-99da58b0.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmFormGroup":()=>(a(["FmIcon-24e2c414.css"]),s("./__federation_expose_FmFormGroup-2e6a6023.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmHelperText":()=>(a(["FmIcon-24e2c414.css"]),s("./__federation_expose_FmHelperText-a7b991f3.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmLabel":()=>(a(["FmIcon-24e2c414.css"]),s("./__federation_expose_FmLabel-dfdee236.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmPhoneNumber":()=>(a(["FmIcon-24e2c414.css","FmMenuItem-f376e516.css","FmCheckbox-2240ce5a.css","FmMenu-7a15934c.css","FmField-996759d0.css","FmTextField-2ef8a29f.css"]),s("./__federation_expose_FmPhoneNumber-6771fae0.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmPinField":()=>(a(["FmPinField-5116c09c.css"]),s("./__federation_expose_FmPinField-713bdeb5.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmRadio":()=>(a(["FmRadio-5d786858.css"]),s("./__federation_expose_FmRadio-bbc6b501.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmRadioGroup":()=>(a(["FmIcon-24e2c414.css"]),s("./__federation_expose_FmRadioGroup-408c72ef.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmSearch":()=>(a(["FmTextField-2ef8a29f.css","FmField-996759d0.css","FmIcon-24e2c414.css","FmButton-e5ddd0ef.css","FmCircularProgress-765a2205.css"]),s("./__federation_expose_FmSearch-f22edecf.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmGlobalSearch":()=>(a(["FmTopSheet-9835b720.css","FmTextField-2ef8a29f.css","FmField-996759d0.css","FmIcon-24e2c414.css","FmButton-e5ddd0ef.css","FmCircularProgress-765a2205.css"]),s("./__federation_expose_FmGlobalSearch-8e677bac.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmSelect":()=>(a(["FmIcon-24e2c414.css","FmMenuItem-f376e516.css","FmCheckbox-2240ce5a.css","FmMenu-7a15934c.css","FmField-996759d0.css"]),s("./__federation_expose_FmSelect-cbbea755.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmStepperField":()=>(a(["FmStepperField-66286c2f.css","FmField-996759d0.css","FmIcon-24e2c414.css"]),s("./__federation_expose_FmStepperField-1dfccefe.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmSwitch":()=>(a(["FmSwitch-30641580.css","FmIcon-24e2c414.css"]),s("./__federation_expose_FmSwitch-c0ed4d4e.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmTextField":()=>(a(["FmTextField-2ef8a29f.css","FmField-996759d0.css","FmIcon-24e2c414.css"]),s("./__federation_expose_FmTextField-3139773b.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmTextarea":()=>(a(["FmTextarea-30a10160.css","FmIcon-24e2c414.css"]),s("./__federation_expose_FmTextarea-801379c9.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmTimeInput":()=>(a(["FmTimeInput-86f7cb20.css","FmIcon-24e2c414.css"]),s("./__federation_expose_FmTimeInput-87c277d2.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmTimePicker":()=>(a(["FmButton-e5ddd0ef.css","FmIcon-24e2c414.css","FmCircularProgress-765a2205.css","FmField-996759d0.css","FmTimeInput-86f7cb20.css","FmMenuDeprecated-5fb993ca.css"]),s("./__federation_expose_FmTimePicker-be987368.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmTimeRangePicker":()=>(a(["FmButton-e5ddd0ef.css","FmIcon-24e2c414.css","FmCircularProgress-765a2205.css","FmField-996759d0.css","FmTimeInput-86f7cb20.css","FmPopover-2805f8b5.css"]),s("./__federation_expose_FmTimeRangePicker-bb91e106.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmIcon":()=>(a(["FmIcon-24e2c414.css"]),s("./__federation_expose_FmIcon-c21d4c3c.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmList":()=>(a(["FmList-0bec0eff.css"]),s("./__federation_expose_FmList-201ecd29.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmListItem":()=>(a(["FmListItem-1f25df9c.css"]),s("./__federation_expose_FmListItem-c643d8fc.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmMenu":()=>(a(["FmMenu-7a15934c.css"]),s("./__federation_expose_FmMenu-16c7062f.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmMenuDeprecated":()=>(a(["FmMenuDeprecated-5fb993ca.css"]),s("./__federation_expose_FmMenuDeprecated-be7594e3.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmMenuDivider":()=>(a([]),s("./__federation_expose_FmMenuDivider-573f3673.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmMenuHeader":()=>(a([]),s("./__federation_expose_FmMenuHeader-1c83a608.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmMenuItem":()=>(a(["FmMenuItem-f376e516.css","FmIcon-24e2c414.css","FmCheckbox-2240ce5a.css"]),s("./__federation_expose_FmMenuItem-10ad7e23.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmCircularProgress":()=>(a(["FmCircularProgress-765a2205.css"]),s("./__federation_expose_FmCircularProgress-d3de780f.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmLinearProgress":()=>(a(["FmLinearProgress-d0939dbe.css"]),s("./__federation_expose_FmLinearProgress-a3fa65ed.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmSideSheet":()=>(a(["FmSideSheet-72dc77de.css","FmIcon-24e2c414.css"]),s("./__federation_expose_FmSideSheet-7c975398.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmSnackbar":()=>(a(["FmSnackbar-fbf672a5.css","FmIcon-24e2c414.css"]),s("./__federation_expose_FmSnackbar-59728279.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmSpacer":()=>(a([]),s("./__federation_expose_FmSpacer-bd9a02ba.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmStep":()=>(a(["FmStep-5c69e906.css","FmIcon-24e2c414.css"]),s("./__federation_expose_FmStep-a5c3bc53.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmStepper":()=>(a(["FmCircularProgress-765a2205.css"]),s("./__federation_expose_FmStepper-07bab4c9.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmTab":()=>(a(["FmTab-36e86f03.css","FmIcon-24e2c414.css","FmBadge-d37c8e51.css","FmMenuDeprecated-5fb993ca.css","FmMenuItem-f376e516.css","FmCheckbox-2240ce5a.css"]),s("./__federation_expose_FmTab-d4114c82.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmTable":()=>(a(["FmTable-f1b4b021.css","FmIcon-24e2c414.css","FmButton-e5ddd0ef.css","FmCircularProgress-765a2205.css","FmMenu-7a15934c.css","FmMenuItem-f376e516.css","FmCheckbox-2240ce5a.css"]),s("./__federation_expose_FmTable-66cb6406.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmTabs":()=>(a(["FmTab-36e86f03.css","FmIcon-24e2c414.css","FmBadge-d37c8e51.css","FmMenuDeprecated-5fb993ca.css","FmMenuItem-f376e516.css","FmCheckbox-2240ce5a.css"]),s("./__federation_expose_FmTabs-f2e64464.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmCollapsibleTabs":()=>(a(["FmIcon-24e2c414.css","FmBadge-d37c8e51.css"]),s("./__federation_expose_FmCollapsibleTabs-c91186f4.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmTooltip":()=>(a([]),s("./__federation_expose_FmTooltip-9a658343.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmAvatar":()=>(a([]),s("./__federation_expose_FmAvatar-a8487776.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmThumbnail":()=>(a(["FmIcon-24e2c414.css"]),s("./__federation_expose_FmThumbnail-77aa517a.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmPageHead":()=>(a(["FmButton-e5ddd0ef.css","FmIcon-24e2c414.css","FmCircularProgress-765a2205.css","FmMenu-7a15934c.css","FmMenuItem-f376e516.css","FmCheckbox-2240ce5a.css","FmBottomSheet-b037cf39.css","FmList-0bec0eff.css","FmListItem-1f25df9c.css"]),s("./__federation_expose_FmPageHead-4d770277.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e)),"./FmTopSheet":()=>(a(["FmTopSheet-9835b720.css"]),s("./__federation_expose_FmTopSheet-cac486b5.js").then(e=>Object.keys(e).every(r=>_.has(r))?()=>e.default:()=>e))},i;i={},a=e=>{const r=import.meta.url;if(typeof r>"u"){console.warn('The remote style takes effect only when the build.target option in the vite.config.ts file is higher than that of "es2020".');return}const n=r.substring(0,r.lastIndexOf("feedmepos-ui-components.js"));e.forEach(u=>{const o=n+u;if(o in i)return;i[o]=!0;const t=document.head.appendChild(document.createElement("link"));t.href=o,t.rel="stylesheet"})};async function s(e){return h(()=>import(e).then(async r=>(await r.__tla,r)),[])}l=e=>{if(!c[e])throw new Error("Can not find remote module "+e);return c[e]()},p=e=>{globalThis.__federation_shared__=globalThis.__federation_shared__||{},Object.entries(e).forEach(([r,n])=>{const u=Object.keys(n)[0],o=Object.values(n)[0],t=o.scope||"default";globalThis.__federation_shared__[t]=globalThis.__federation_shared__[t]||{};const m=globalThis.__federation_shared__[t];(m[r]=m[r]||{})[u]=o})}})();export{y as __tla,a as dynamicLoadingCss,l as get,p as init};
@@ -0,0 +1 @@
1
+ import{importShared as pe,__tla as he}from"./__federation_fn_import-68bd0d37.js";import{bv as Y,_,bm as tt,bp as ge,aX as gt,bb as ye,bi as ve,bo as j}from"./runtime-core.esm-bundler-e5dd79b8.js";let Ht,Wt,Mt,Vt,_t,Bt,xe=Promise.all([(()=>{try{return he}catch{}})()]).then(async()=>{const I=Math.min,B=Math.max,et=Math.round,nt=Math.floor,W=t=>({x:t,y:t}),zt={left:"right",right:"left",bottom:"top",top:"bottom"},Nt={start:"end",end:"start"};function st(t,e,n){return B(t,I(e,n))}function q(t,e){return typeof t=="function"?t(e):t}function z(t){return t.split("-")[0]}function K(t){return t.split("-")[1]}function yt(t){return t==="x"?"y":"x"}function ct(t){return t==="y"?"height":"width"}function ot(t){return["top","bottom"].includes(z(t))?"y":"x"}function ft(t){return yt(ot(t))}function It(t,e,n){n===void 0&&(n=!1);const o=K(t),i=ft(t),r=ct(i);let l=i==="x"?o===(n?"end":"start")?"right":"left":o==="start"?"bottom":"top";return e.reference[r]>e.floating[r]&&(l=it(l)),[l,it(l)]}function Xt(t){const e=it(t);return[ut(t),e,ut(e)]}function ut(t){return t.replace(/start|end/g,e=>Nt[e])}function $t(t,e,n){const o=["left","right"],i=["right","left"],r=["top","bottom"],l=["bottom","top"];switch(t){case"top":case"bottom":return n?e?i:o:e?o:i;case"left":case"right":return e?r:l;default:return[]}}function Yt(t,e,n,o){const i=K(t);let r=$t(z(t),n==="start",o);return i&&(r=r.map(l=>l+"-"+i),e&&(r=r.concat(r.map(ut)))),r}function it(t){return t.replace(/left|right|bottom|top/g,e=>zt[e])}function jt(t){return{top:0,right:0,bottom:0,left:0,...t}}function vt(t){return typeof t!="number"?jt(t):{top:t,right:t,bottom:t,left:t}}function rt(t){return{...t,top:t.y,left:t.x,right:t.x+t.width,bottom:t.y+t.height}}function xt(t,e,n){let{reference:o,floating:i}=t;const r=ot(e),l=ft(e),a=ct(l),s=z(e),f=r==="y",u=o.x+o.width/2-i.width/2,m=o.y+o.height/2-i.height/2,h=o[a]/2-i[a]/2;let c;switch(s){case"top":c={x:u,y:o.y-i.height};break;case"bottom":c={x:u,y:o.y+o.height};break;case"right":c={x:o.x+o.width,y:m};break;case"left":c={x:o.x-i.width,y:m};break;default:c={x:o.x,y:o.y}}switch(K(e)){case"start":c[l]-=h*(n&&f?-1:1);break;case"end":c[l]+=h*(n&&f?-1:1);break}return c}const qt=async(t,e,n)=>{const{placement:o="bottom",strategy:i="absolute",middleware:r=[],platform:l}=n,a=r.filter(Boolean),s=await(l.isRTL==null?void 0:l.isRTL(e));let f=await l.getElementRects({reference:t,floating:e,strategy:i}),{x:u,y:m}=xt(f,o,s),h=o,c={},d=0;for(let p=0;p<a.length;p++){const{name:y,fn:g}=a[p],{x,y:w,data:R,reset:b}=await g({x:u,y:m,initialPlacement:o,placement:h,strategy:i,middlewareData:c,rects:f,platform:l,elements:{reference:t,floating:e}});if(u=x??u,m=w??m,c={...c,[y]:{...c[y],...R}},b&&d<=50){d++,typeof b=="object"&&(b.placement&&(h=b.placement),b.rects&&(f=b.rects===!0?await l.getElementRects({reference:t,floating:e,strategy:i}):b.rects),{x:u,y:m}=xt(f,h,s)),p=-1;continue}}return{x:u,y:m,placement:h,strategy:i,middlewareData:c}};async function wt(t,e){var n;e===void 0&&(e={});const{x:o,y:i,platform:r,rects:l,elements:a,strategy:s}=t,{boundary:f="clippingAncestors",rootBoundary:u="viewport",elementContext:m="floating",altBoundary:h=!1,padding:c=0}=q(e,t),d=vt(c),p=a[h?m==="floating"?"reference":"floating":m],y=rt(await r.getClippingRect({element:(n=await(r.isElement==null?void 0:r.isElement(p)))==null||n?p:p.contextElement||await(r.getDocumentElement==null?void 0:r.getDocumentElement(a.floating)),boundary:f,rootBoundary:u,strategy:s})),g=m==="floating"?{...l.floating,x:o,y:i}:l.reference,x=await(r.getOffsetParent==null?void 0:r.getOffsetParent(a.floating)),w=await(r.isElement==null?void 0:r.isElement(x))?await(r.getScale==null?void 0:r.getScale(x))||{x:1,y:1}:{x:1,y:1},R=rt(r.convertOffsetParentRelativeRectToViewportRelativeRect?await r.convertOffsetParentRelativeRectToViewportRelativeRect({rect:g,offsetParent:x,strategy:s}):g);return{top:(y.top-R.top+d.top)/w.y,bottom:(R.bottom-y.bottom+d.bottom)/w.y,left:(y.left-R.left+d.left)/w.x,right:(R.right-y.right+d.right)/w.x}}let bt;bt=t=>({name:"arrow",options:t,async fn(e){const{x:n,y:o,placement:i,rects:r,platform:l,elements:a,middlewareData:s}=e,{element:f,padding:u=0}=q(t,e)||{};if(f==null)return{};const m=vt(u),h={x:n,y:o},c=ft(i),d=ct(c),p=await l.getDimensions(f),y=c==="y",g=y?"top":"left",x=y?"bottom":"right",w=y?"clientHeight":"clientWidth",R=r.reference[d]+r.reference[c]-h[c]-r.floating[d],b=h[c]-r.reference[c],F=await(l.getOffsetParent==null?void 0:l.getOffsetParent(f));let v=F?F[w]:0;(!v||!await(l.isElement==null?void 0:l.isElement(F)))&&(v=a.floating[w]||r.floating[d]);const O=R/2-b/2,V=v/2-p[d]/2-1,Q=I(m[g],V),Z=I(m[x],V),D=Q,U=v-p[d]-Z,L=v/2-p[d]/2+O,S=st(D,L,U),P=!s.arrow&&K(i)!=null&&L!=S&&r.reference[d]/2-(L<D?Q:Z)-p[d]/2<0,H=P?L<D?L-D:L-U:0;return{[c]:h[c]+H,data:{[c]:S,centerOffset:L-S-H,...P&&{alignmentOffset:H}},reset:P}}}),Mt=function(t){return t===void 0&&(t={}),{name:"flip",options:t,async fn(e){var n,o;const{placement:i,middlewareData:r,rects:l,initialPlacement:a,platform:s,elements:f}=e,{mainAxis:u=!0,crossAxis:m=!0,fallbackPlacements:h,fallbackStrategy:c="bestFit",fallbackAxisSideDirection:d="none",flipAlignment:p=!0,...y}=q(t,e);if((n=r.arrow)!=null&&n.alignmentOffset)return{};const g=z(i),x=z(a)===a,w=await(s.isRTL==null?void 0:s.isRTL(f.floating)),R=h||(x||!p?[it(a)]:Xt(a));!h&&d!=="none"&&R.push(...Yt(a,p,d,w));const b=[a,...R],F=await wt(e,y),v=[];let O=((o=r.flip)==null?void 0:o.overflows)||[];if(u&&v.push(F[g]),m){const D=It(i,l,w);v.push(F[D[0]],F[D[1]])}if(O=[...O,{placement:i,overflows:v}],!v.every(D=>D<=0)){var V,Q;const D=(((V=r.flip)==null?void 0:V.index)||0)+1,U=b[D];if(U)return{data:{index:D,overflows:O},reset:{placement:U}};let L=(Q=O.filter(S=>S.overflows[0]<=0).sort((S,P)=>S.overflows[1]-P.overflows[1])[0])==null?void 0:Q.placement;if(!L)switch(c){case"bestFit":{var Z;const S=(Z=O.map(P=>[P.placement,P.overflows.filter(H=>H>0).reduce((H,me)=>H+me,0)]).sort((P,H)=>P[1]-H[1])[0])==null?void 0:Z[0];S&&(L=S);break}case"initialPlacement":L=a;break}if(i!==L)return{reset:{placement:L}}}return{}}}};async function Kt(t,e){const{placement:n,platform:o,elements:i}=t,r=await(o.isRTL==null?void 0:o.isRTL(i.floating)),l=z(n),a=K(n),s=ot(n)==="y",f=["left","top"].includes(l)?-1:1,u=r&&s?-1:1,m=q(e,t);let{mainAxis:h,crossAxis:c,alignmentAxis:d}=typeof m=="number"?{mainAxis:m,crossAxis:0,alignmentAxis:null}:{mainAxis:0,crossAxis:0,alignmentAxis:null,...m};return a&&typeof d=="number"&&(c=a==="end"?d*-1:d),s?{x:c*u,y:h*f}:{x:h*f,y:c*u}}Vt=function(t){return t===void 0&&(t=0),{name:"offset",options:t,async fn(e){var n,o;const{x:i,y:r,placement:l,middlewareData:a}=e,s=await Kt(e,t);return l===((n=a.offset)==null?void 0:n.placement)&&(o=a.arrow)!=null&&o.alignmentOffset?{}:{x:i+s.x,y:r+s.y,data:{...s,placement:l}}}}},_t=function(t){return t===void 0&&(t={}),{name:"shift",options:t,async fn(e){const{x:n,y:o,placement:i}=e,{mainAxis:r=!0,crossAxis:l=!1,limiter:a={fn:y=>{let{x:g,y:x}=y;return{x:g,y:x}}},...s}=q(t,e),f={x:n,y:o},u=await wt(e,s),m=ot(z(i)),h=yt(m);let c=f[h],d=f[m];if(r){const y=h==="y"?"top":"left",g=h==="y"?"bottom":"right",x=c+u[y],w=c-u[g];c=st(x,c,w)}if(l){const y=m==="y"?"top":"left",g=m==="y"?"bottom":"right",x=d+u[y],w=d-u[g];d=st(x,d,w)}const p=a.fn({...e,[h]:c,[m]:d});return{...p,data:{x:p.x-n,y:p.y-o}}}}};function M(t){return Rt(t)?(t.nodeName||"").toLowerCase():"#document"}function E(t){var e;return(t==null||(e=t.ownerDocument)==null?void 0:e.defaultView)||window}function C(t){var e;return(e=(Rt(t)?t.ownerDocument:t.document)||window.document)==null?void 0:e.documentElement}function Rt(t){return t instanceof Node||t instanceof E(t).Node}function k(t){return t instanceof Element||t instanceof E(t).Element}function A(t){return t instanceof HTMLElement||t instanceof E(t).HTMLElement}function Et(t){return typeof ShadowRoot>"u"?!1:t instanceof ShadowRoot||t instanceof E(t).ShadowRoot}function G(t){const{overflow:e,overflowX:n,overflowY:o,display:i}=T(t);return/auto|scroll|overlay|hidden|clip/.test(e+o+n)&&!["inline","contents"].includes(i)}function Gt(t){return["table","td","th"].includes(M(t))}function dt(t){const e=mt(),n=T(t);return n.transform!=="none"||n.perspective!=="none"||(n.containerType?n.containerType!=="normal":!1)||!e&&(n.backdropFilter?n.backdropFilter!=="none":!1)||!e&&(n.filter?n.filter!=="none":!1)||["transform","perspective","filter"].some(o=>(n.willChange||"").includes(o))||["paint","layout","strict","content"].some(o=>(n.contain||"").includes(o))}function Jt(t){let e=X(t);for(;A(e)&&!lt(e);){if(dt(e))return e;e=X(e)}return null}function mt(){return typeof CSS>"u"||!CSS.supports?!1:CSS.supports("-webkit-backdrop-filter","none")}function lt(t){return["html","body","#document"].includes(M(t))}function T(t){return E(t).getComputedStyle(t)}function at(t){return k(t)?{scrollLeft:t.scrollLeft,scrollTop:t.scrollTop}:{scrollLeft:t.pageXOffset,scrollTop:t.pageYOffset}}function X(t){if(M(t)==="html")return t;const e=t.assignedSlot||t.parentNode||Et(t)&&t.host||C(t);return Et(e)?e.host:e}function Lt(t){const e=X(t);return lt(e)?t.ownerDocument?t.ownerDocument.body:t.body:A(e)&&G(e)?e:Lt(e)}function J(t,e,n){var o;e===void 0&&(e=[]),n===void 0&&(n=!0);const i=Lt(t),r=i===((o=t.ownerDocument)==null?void 0:o.body),l=E(i);return r?e.concat(l,l.visualViewport||[],G(i)?i:[],l.frameElement&&n?J(l.frameElement):[]):e.concat(i,J(i,[],n))}function Tt(t){const e=T(t);let n=parseFloat(e.width)||0,o=parseFloat(e.height)||0;const i=A(t),r=i?t.offsetWidth:n,l=i?t.offsetHeight:o,a=et(n)!==r||et(o)!==l;return a&&(n=r,o=l),{width:n,height:o,$:a}}function pt(t){return k(t)?t:t.contextElement}function $(t){const e=pt(t);if(!A(e))return W(1);const n=e.getBoundingClientRect(),{width:o,height:i,$:r}=Tt(e);let l=(r?et(n.width):n.width)/o,a=(r?et(n.height):n.height)/i;return(!l||!Number.isFinite(l))&&(l=1),(!a||!Number.isFinite(a))&&(a=1),{x:l,y:a}}const Qt=W(0);function Dt(t){const e=E(t);return!mt()||!e.visualViewport?Qt:{x:e.visualViewport.offsetLeft,y:e.visualViewport.offsetTop}}function Zt(t,e,n){return e===void 0&&(e=!1),!n||e&&n!==E(t)?!1:e}function N(t,e,n,o){e===void 0&&(e=!1),n===void 0&&(n=!1);const i=t.getBoundingClientRect(),r=pt(t);let l=W(1);e&&(o?k(o)&&(l=$(o)):l=$(t));const a=Zt(r,n,o)?Dt(r):W(0);let s=(i.left+a.x)/l.x,f=(i.top+a.y)/l.y,u=i.width/l.x,m=i.height/l.y;if(r){const h=E(r),c=o&&k(o)?E(o):o;let d=h.frameElement;for(;d&&o&&c!==h;){const p=$(d),y=d.getBoundingClientRect(),g=T(d),x=y.left+(d.clientLeft+parseFloat(g.paddingLeft))*p.x,w=y.top+(d.clientTop+parseFloat(g.paddingTop))*p.y;s*=p.x,f*=p.y,u*=p.x,m*=p.y,s+=x,f+=w,d=E(d).frameElement}}return rt({width:u,height:m,x:s,y:f})}function Ut(t){let{rect:e,offsetParent:n,strategy:o}=t;const i=A(n),r=C(n);if(n===r)return e;let l={scrollLeft:0,scrollTop:0},a=W(1);const s=W(0);if((i||!i&&o!=="fixed")&&((M(n)!=="body"||G(r))&&(l=at(n)),A(n))){const f=N(n);a=$(n),s.x=f.x+n.clientLeft,s.y=f.y+n.clientTop}return{width:e.width*a.x,height:e.height*a.y,x:e.x*a.x-l.scrollLeft*a.x+s.x,y:e.y*a.y-l.scrollTop*a.y+s.y}}function te(t){return Array.from(t.getClientRects())}function At(t){return N(C(t)).left+at(t).scrollLeft}function ee(t){const e=C(t),n=at(t),o=t.ownerDocument.body,i=B(e.scrollWidth,e.clientWidth,o.scrollWidth,o.clientWidth),r=B(e.scrollHeight,e.clientHeight,o.scrollHeight,o.clientHeight);let l=-n.scrollLeft+At(t);const a=-n.scrollTop;return T(o).direction==="rtl"&&(l+=B(e.clientWidth,o.clientWidth)-i),{width:i,height:r,x:l,y:a}}function ne(t,e){const n=E(t),o=C(t),i=n.visualViewport;let r=o.clientWidth,l=o.clientHeight,a=0,s=0;if(i){r=i.width,l=i.height;const f=mt();(!f||f&&e==="fixed")&&(a=i.offsetLeft,s=i.offsetTop)}return{width:r,height:l,x:a,y:s}}function oe(t,e){const n=N(t,!0,e==="fixed"),o=n.top+t.clientTop,i=n.left+t.clientLeft,r=A(t)?$(t):W(1),l=t.clientWidth*r.x,a=t.clientHeight*r.y,s=i*r.x,f=o*r.y;return{width:l,height:a,x:s,y:f}}function Ot(t,e,n){let o;if(e==="viewport")o=ne(t,n);else if(e==="document")o=ee(C(t));else if(k(e))o=oe(e,n);else{const i=Dt(t);o={...e,x:e.x-i.x,y:e.y-i.y}}return rt(o)}function St(t,e){const n=X(t);return n===e||!k(n)||lt(n)?!1:T(n).position==="fixed"||St(n,e)}function ie(t,e){const n=e.get(t);if(n)return n;let o=J(t,[],!1).filter(a=>k(a)&&M(a)!=="body"),i=null;const r=T(t).position==="fixed";let l=r?X(t):t;for(;k(l)&&!lt(l);){const a=T(l),s=dt(l);!s&&a.position==="fixed"&&(i=null),(r?!s&&!i:!s&&a.position==="static"&&i&&["absolute","fixed"].includes(i.position)||G(l)&&!s&&St(t,l))?o=o.filter(f=>f!==l):i=a,l=X(l)}return e.set(t,o),o}function re(t){let{element:e,boundary:n,rootBoundary:o,strategy:i}=t;const r=[...n==="clippingAncestors"?ie(e,this._c):[].concat(n),o],l=r[0],a=r.reduce((s,f)=>{const u=Ot(e,f,i);return s.top=B(u.top,s.top),s.right=I(u.right,s.right),s.bottom=I(u.bottom,s.bottom),s.left=B(u.left,s.left),s},Ot(e,l,i));return{width:a.right-a.left,height:a.bottom-a.top,x:a.left,y:a.top}}function le(t){return Tt(t)}function ae(t,e,n){const o=A(e),i=C(e),r=n==="fixed",l=N(t,!0,r,e);let a={scrollLeft:0,scrollTop:0};const s=W(0);if(o||!o&&!r)if((M(e)!=="body"||G(i))&&(a=at(e)),o){const f=N(e,!0,r,e);s.x=f.x+e.clientLeft,s.y=f.y+e.clientTop}else i&&(s.x=At(i));return{x:l.left+a.scrollLeft-s.x,y:l.top+a.scrollTop-s.y,width:l.width,height:l.height}}function Pt(t,e){return!A(t)||T(t).position==="fixed"?null:e?e(t):t.offsetParent}function Ct(t,e){const n=E(t);if(!A(t))return n;let o=Pt(t,e);for(;o&&Gt(o)&&T(o).position==="static";)o=Pt(o,e);return o&&(M(o)==="html"||M(o)==="body"&&T(o).position==="static"&&!dt(o))?n:o||Jt(t)||n}const se=async function(t){let{reference:e,floating:n,strategy:o}=t;const i=this.getOffsetParent||Ct,r=this.getDimensions;return{reference:ae(e,await i(n),o),floating:{x:0,y:0,...await r(n)}}};function ce(t){return T(t).direction==="rtl"}const fe={convertOffsetParentRelativeRectToViewportRelativeRect:Ut,getDocumentElement:C,getClippingRect:re,getOffsetParent:Ct,getElementRects:se,getClientRects:te,getDimensions:le,getScale:$,isElement:k,isRTL:ce};function ue(t,e){let n=null,o;const i=C(t);function r(){clearTimeout(o),n&&n.disconnect(),n=null}function l(a,s){a===void 0&&(a=!1),s===void 0&&(s=1),r();const{left:f,top:u,width:m,height:h}=t.getBoundingClientRect();if(a||e(),!m||!h)return;const c=nt(u),d=nt(i.clientWidth-(f+m)),p=nt(i.clientHeight-(u+h)),y=nt(f),g={rootMargin:-c+"px "+-d+"px "+-p+"px "+-y+"px",threshold:B(0,I(1,s))||1};let x=!0;function w(R){const b=R[0].intersectionRatio;if(b!==s){if(!x)return l();b?l(!1,b):o=setTimeout(()=>{l(!1,1e-7)},100)}x=!1}try{n=new IntersectionObserver(w,{...g,root:i.ownerDocument})}catch{n=new IntersectionObserver(w,g)}n.observe(t)}return l(!0),r}Ht=function(t,e,n,o){o===void 0&&(o={});const{ancestorScroll:i=!0,ancestorResize:r=!0,elementResize:l=typeof ResizeObserver=="function",layoutShift:a=typeof IntersectionObserver=="function",animationFrame:s=!1}=o,f=pt(t),u=i||r?[...f?J(f):[],...J(e)]:[];u.forEach(g=>{i&&g.addEventListener("scroll",n,{passive:!0}),r&&g.addEventListener("resize",n)});const m=f&&a?ue(f,n):null;let h=-1,c=null;l&&(c=new ResizeObserver(g=>{let[x]=g;x&&x.target===f&&c&&(c.unobserve(e),cancelAnimationFrame(h),h=requestAnimationFrame(()=>{c&&c.observe(e)})),n()}),f&&!s&&c.observe(f),c.observe(e));let d,p=s?N(t):null;s&&y();function y(){const g=N(t);p&&(g.x!==p.x||g.y!==p.y||g.width!==p.width||g.height!==p.height)&&n(),p=g,d=requestAnimationFrame(y)}return n(),()=>{u.forEach(g=>{i&&g.removeEventListener("scroll",n),r&&g.removeEventListener("resize",n)}),m&&m(),c&&c.disconnect(),c=null,s&&cancelAnimationFrame(d)}};const de=(t,e,n)=>{const o=new Map,i={platform:fe,...n},r={...i.platform,_c:o};return qt(t,e,{...i,platform:r})};await pe("vue");function ht(t){var e;return(e=t==null?void 0:t.$el)!=null?e:t}Wt=function(t){return{name:"arrow",options:t,fn(e){const n=ht(Y(t.element));return n==null?{}:bt({element:n,padding:t.padding}).fn(e)}}};function kt(t){return typeof window>"u"?1:(t.ownerDocument.defaultView||window).devicePixelRatio||1}function Ft(t,e){const n=kt(t);return Math.round(e*n)/n}Bt=function(t,e,n){n===void 0&&(n={});const o=n.whileElementsMounted,i=_(()=>{var v;return(v=Y(n.open))!=null?v:!0}),r=_(()=>Y(n.middleware)),l=_(()=>{var v;return(v=Y(n.placement))!=null?v:"bottom"}),a=_(()=>{var v;return(v=Y(n.strategy))!=null?v:"absolute"}),s=_(()=>{var v;return(v=Y(n.transform))!=null?v:!0}),f=_(()=>ht(t.value)),u=_(()=>ht(e.value)),m=tt(0),h=tt(0),c=tt(a.value),d=tt(l.value),p=ge({}),y=tt(!1),g=_(()=>{const v={position:c.value,left:"0",top:"0"};if(!u.value)return v;const O=Ft(u.value,m.value),V=Ft(u.value,h.value);return s.value?{...v,transform:"translate("+O+"px, "+V+"px)",...kt(u.value)>=1.5&&{willChange:"transform"}}:{position:c.value,left:O+"px",top:V+"px"}});let x;function w(){f.value==null||u.value==null||de(f.value,u.value,{middleware:r.value,placement:l.value,strategy:a.value}).then(v=>{m.value=v.x,h.value=v.y,c.value=v.strategy,d.value=v.placement,p.value=v.middlewareData,y.value=!0})}function R(){typeof x=="function"&&(x(),x=void 0)}function b(){if(R(),o===void 0){w();return}if(f.value!=null&&u.value!=null){x=o(f.value,u.value,w);return}}function F(){i.value||(y.value=!1)}return gt([r,l,a],w,{flush:"sync"}),gt([f,u],b,{flush:"sync"}),gt(i,F,{flush:"sync"}),ye()&&ve(R),{x:j(m),y:j(h),strategy:j(c),placement:j(d),middlewareData:j(p),isPositioned:j(y),floatingStyles:g,update:w}}});export{xe as __tla,Ht as a,Wt as b,Mt as f,Vt as o,_t as s,Bt as u};
@@ -0,0 +1 @@
1
+ import{c as R,g as X}from"./_commonjsHelpers-725317a4.js";var E={exports:{}};(function(S,p){(function(w,D){S.exports=D()})(R,function(){var w=1e3,D=6e4,d=36e5,m="millisecond",O="second",M="minute",y="hour",Y="day",I="week",v="month",z="quarter",k="year",T="date",B="Invalid Date",P=/^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/,Q=/\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g,G={name:"en",weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),ordinal:function(s){var r=["th","st","nd","rd"],t=s%100;return"["+s+(r[(t-20)%10]||r[t]||r[0])+"]"}},F=function(s,r,t){var n=String(s);return!n||n.length>=r?s:""+Array(r+1-n.length).join(t)+s},K={s:F,z:function(s){var r=-s.utcOffset(),t=Math.abs(r),n=Math.floor(t/60),e=t%60;return(r<=0?"+":"-")+F(n,2,"0")+":"+F(e,2,"0")},m:function s(r,t){if(r.date()<t.date())return-s(t,r);var n=12*(t.year()-r.year())+(t.month()-r.month()),e=r.clone().add(n,v),i=t-e<0,a=r.clone().add(n+(i?-1:1),v);return+(-(n+(t-e)/(i?e-a:a-e))||0)},a:function(s){return s<0?Math.ceil(s)||0:Math.floor(s)},p:function(s){return{M:v,y:k,w:I,d:Y,D:T,h:y,m:M,s:O,ms:m,Q:z}[s]||String(s||"").toLowerCase().replace(/s$/,"")},u:function(s){return s===void 0}},A="en",_={};_[A]=G;var V="$isDayjsObject",J=function(s){return s instanceof U||!(!s||!s[V])},N=function s(r,t,n){var e;if(!r)return A;if(typeof r=="string"){var i=r.toLowerCase();_[i]&&(e=i),t&&(_[i]=t,e=i);var a=r.split("-");if(!e&&a.length>1)return s(a[0])}else{var o=r.name;_[o]=r,e=o}return!n&&e&&(A=e),e||!n&&A},f=function(s,r){if(J(s))return s.clone();var t=typeof r=="object"?r:{};return t.date=s,t.args=arguments,new U(t)},u=K;u.l=N,u.i=J,u.w=function(s,r){return f(s,{locale:r.$L,utc:r.$u,x:r.$x,$offset:r.$offset})};var U=function(){function s(t){this.$L=N(t.locale,null,!0),this.parse(t),this.$x=this.$x||t.x||{},this[V]=!0}var r=s.prototype;return r.parse=function(t){this.$d=function(n){var e=n.date,i=n.utc;if(e===null)return new Date(NaN);if(u.u(e))return new Date;if(e instanceof Date)return new Date(e);if(typeof e=="string"&&!/Z$/i.test(e)){var a=e.match(P);if(a){var o=a[2]-1||0,c=(a[7]||"0").substring(0,3);return i?new Date(Date.UTC(a[1],o,a[3]||1,a[4]||0,a[5]||0,a[6]||0,c)):new Date(a[1],o,a[3]||1,a[4]||0,a[5]||0,a[6]||0,c)}}return new Date(e)}(t),this.init()},r.init=function(){var t=this.$d;this.$y=t.getFullYear(),this.$M=t.getMonth(),this.$D=t.getDate(),this.$W=t.getDay(),this.$H=t.getHours(),this.$m=t.getMinutes(),this.$s=t.getSeconds(),this.$ms=t.getMilliseconds()},r.$utils=function(){return u},r.isValid=function(){return this.$d.toString()!==B},r.isSame=function(t,n){var e=f(t);return this.startOf(n)<=e&&e<=this.endOf(n)},r.isAfter=function(t,n){return f(t)<this.startOf(n)},r.isBefore=function(t,n){return this.endOf(n)<f(t)},r.$g=function(t,n,e){return u.u(t)?this[n]:this.set(e,t)},r.unix=function(){return Math.floor(this.valueOf()/1e3)},r.valueOf=function(){return this.$d.getTime()},r.startOf=function(t,n){var e=this,i=!!u.u(n)||n,a=u.p(t),o=function(x,$){var b=u.w(e.$u?Date.UTC(e.$y,$,x):new Date(e.$y,$,x),e);return i?b:b.endOf(Y)},c=function(x,$){return u.w(e.toDate()[x].apply(e.toDate("s"),(i?[0,0,0,0]:[23,59,59,999]).slice($)),e)},h=this.$W,l=this.$M,g=this.$D,C="set"+(this.$u?"UTC":"");switch(a){case k:return i?o(1,0):o(31,11);case v:return i?o(1,l):o(0,l+1);case I:var H=this.$locale().weekStart||0,L=(h<H?h+7:h)-H;return o(i?g-L:g+(6-L),l);case Y:case T:return c(C+"Hours",0);case y:return c(C+"Minutes",1);case M:return c(C+"Seconds",2);case O:return c(C+"Milliseconds",3);default:return this.clone()}},r.endOf=function(t){return this.startOf(t,!1)},r.$set=function(t,n){var e,i=u.p(t),a="set"+(this.$u?"UTC":""),o=(e={},e[Y]=a+"Date",e[T]=a+"Date",e[v]=a+"Month",e[k]=a+"FullYear",e[y]=a+"Hours",e[M]=a+"Minutes",e[O]=a+"Seconds",e[m]=a+"Milliseconds",e)[i],c=i===Y?this.$D+(n-this.$W):n;if(i===v||i===k){var h=this.clone().set(T,1);h.$d[o](c),h.init(),this.$d=h.set(T,Math.min(this.$D,h.daysInMonth())).$d}else o&&this.$d[o](c);return this.init(),this},r.set=function(t,n){return this.clone().$set(t,n)},r.get=function(t){return this[u.p(t)]()},r.add=function(t,n){var e,i=this;t=Number(t);var a=u.p(n),o=function(l){var g=f(i);return u.w(g.date(g.date()+Math.round(l*t)),i)};if(a===v)return this.set(v,this.$M+t);if(a===k)return this.set(k,this.$y+t);if(a===Y)return o(1);if(a===I)return o(7);var c=(e={},e[M]=D,e[y]=d,e[O]=w,e)[a]||1,h=this.$d.getTime()+t*c;return u.w(h,this)},r.subtract=function(t,n){return this.add(-1*t,n)},r.format=function(t){var n=this,e=this.$locale();if(!this.isValid())return e.invalidDate||B;var i=t||"YYYY-MM-DDTHH:mm:ssZ",a=u.z(this),o=this.$H,c=this.$m,h=this.$M,l=e.weekdays,g=e.months,C=e.meridiem,H=function($,b,W,j){return $&&($[b]||$(n,i))||W[b].slice(0,j)},L=function($){return u.s(o%12||12,$,"0")},x=C||function($,b,W){var j=$<12?"AM":"PM";return W?j.toLowerCase():j};return i.replace(Q,function($,b){return b||function(W){switch(W){case"YY":return String(n.$y).slice(-2);case"YYYY":return u.s(n.$y,4,"0");case"M":return h+1;case"MM":return u.s(h+1,2,"0");case"MMM":return H(e.monthsShort,h,g,3);case"MMMM":return H(g,h);case"D":return n.$D;case"DD":return u.s(n.$D,2,"0");case"d":return String(n.$W);case"dd":return H(e.weekdaysMin,n.$W,l,2);case"ddd":return H(e.weekdaysShort,n.$W,l,3);case"dddd":return l[n.$W];case"H":return String(o);case"HH":return u.s(o,2,"0");case"h":return L(1);case"hh":return L(2);case"a":return x(o,c,!0);case"A":return x(o,c,!1);case"m":return String(c);case"mm":return u.s(c,2,"0");case"s":return String(n.$s);case"ss":return u.s(n.$s,2,"0");case"SSS":return u.s(n.$ms,3,"0");case"Z":return a}return null}($)||a.replace(":","")})},r.utcOffset=function(){return 15*-Math.round(this.$d.getTimezoneOffset()/15)},r.diff=function(t,n,e){var i,a=this,o=u.p(n),c=f(t),h=(c.utcOffset()-this.utcOffset())*D,l=this-c,g=function(){return u.m(a,c)};switch(o){case k:i=g()/12;break;case v:i=g();break;case z:i=g()/3;break;case I:i=(l-h)/6048e5;break;case Y:i=(l-h)/864e5;break;case y:i=l/d;break;case M:i=l/D;break;case O:i=l/w;break;default:i=l}return e?i:u.a(i)},r.daysInMonth=function(){return this.endOf(v).$D},r.$locale=function(){return _[this.$L]},r.locale=function(t,n){if(!t)return this.$L;var e=this.clone(),i=N(t,n,!0);return i&&(e.$L=i),e},r.clone=function(){return u.w(this.$d,this)},r.toDate=function(){return new Date(this.valueOf())},r.toJSON=function(){return this.isValid()?this.toISOString():null},r.toISOString=function(){return this.$d.toISOString()},r.toString=function(){return this.$d.toUTCString()},s}(),q=U.prototype;return f.prototype=q,[["$ms",m],["$s",O],["$m",M],["$H",y],["$W",Y],["$M",v],["$y",k],["$D",T]].forEach(function(s){q[s[1]]=function(r){return this.$g(r,s[0],s[1])}}),f.extend=function(s,r){return s.$i||(s(r,U,f),s.$i=!0),f},f.locale=N,f.isDayjs=J,f.unix=function(s){return f(1e3*s)},f.en=_[A],f.Ls=_,f.p={},f})})(E);var tt=E.exports;const Z=X(tt),et="YYYY-MM-DD",rt=S=>{const p=[],w=S.endOf("month"),D=S.month();let d=S.startOf("week"),m=[];for(;d.isBefore(w.endOf("week"));)d.day()===0&&m.length>0&&(p.push(m),m=[]),m.push({date:d,isCurrentMonth:d.month()===D}),d=d.add(1,"day");return m.length>0&&p.push(m),p},nt=()=>{const S=Z().startOf("month"),p=[];for(let w=-1188;w<=312;w++){const D=[],d=S.add(w,"month").startOf("month"),m=d.endOf("month"),O=d.month();let M=d.startOf("week"),y=[];for(;M.isBefore(m.endOf("week"));)M.day()===0&&y.length>0&&(D.push(y),y=[]),y.push({id:d.format("MM-YYYY"),date:M,isCurrentMonth:M.month()===O}),M=M.add(1,"day");y.length>0&&D.push(y),p.push({id:d.format("YYYY-MM-DD"),matrix:D,height:40+24+48*(m.endOf("week").diff(d.startOf("week"),"week")+1)})}return p},st=Array.from(Array(7),(S,p)=>Z().day(p).format("ddd"));export{et as D,nt as a,Z as d,rt as g,st as n};
@@ -0,0 +1 @@
1
+ function l(e,t){return e===null||t===null||typeof e!="object"&&typeof t!="object"?e===t:Object.keys(e).length!==Object.keys(t).length?!1:Object.keys(e).every(c=>l(e[c],t[c]))}export{l as i};
@@ -0,0 +1,2 @@
1
+ import{importShared as _,__tla as xi}from"./__federation_fn_import-68bd0d37.js";import{c as Oi,a as Ii,__tla as Ei}from"./vue-router-8d07778e.js";import{_ as Di}from"./_plugin-vue_export-helper-c27b6911.js";import{D as Ri,__tla as Ai}from"./dialog-plugin-1b39b5e4.js";import{S as Ve}from"./provider-keys-d5322eae.js";import Mi,{__tla as Pi}from"./__federation_expose_FmSnackbar-59728279.js";import{u as Vi,__tla as Li}from"./useBreakpoints-9de6b2f5.js";import{u as Ni,a as Ui,f as Bi,o as Ci,b as Hi,__tla as ji}from"./floating-ui.vue.esm-ccda7678.js";Promise.all([(()=>{try{return xi}catch{}})(),(()=>{try{return Ei}catch{}})(),(()=>{try{return Ai}catch{}})(),(()=>{try{return Pi}catch{}})(),(()=>{try{return Li}catch{}})(),(()=>{try{return ji}catch{}})()]).then(async()=>{(function(){const e=document.createElement("link").relList;if(e&&e.supports&&e.supports("modulepreload"))return;for(const r of document.querySelectorAll('link[rel="modulepreload"]'))i(r);new MutationObserver(r=>{for(const s of r)if(s.type==="childList")for(const o of s.addedNodes)o.tagName==="LINK"&&o.rel==="modulepreload"&&i(o)}).observe(document,{childList:!0,subtree:!0});function t(r){const s={};return r.integrity&&(s.integrity=r.integrity),r.referrerPolicy&&(s.referrerPolicy=r.referrerPolicy),r.crossOrigin==="use-credentials"?s.credentials="include":r.crossOrigin==="anonymous"?s.credentials="omit":s.credentials="same-origin",s}function i(r){if(r.ep)return;r.ep=!0;const s=t(r);fetch(r.href,s)}})();const Le=Oi({history:Ii(),routes:[]}),ae={directive:"wave",color:"currentColor",initialOpacity:.2,finalOpacity:.1,duration:.4,dissolveDuration:.15,easing:"ease-out",cancellationPeriod:75,trigger:"auto",tagName:"div"},Ne=e=>"config"in e&&"globalProperties"in e.config,Ue=e=>{let t;return e==="vue2"?t=!1:e==="vue3"?t=!0:t=Ne(e),t?{mounted:"mounted",updated:"updated"}:{mounted:"inserted",updated:"componentUpdated"}},le=e=>typeof e=="string"&&e!=="auto",ce=(e,t)=>{e.dataset.vWaveBoundary=le(t)?t:"true"},Be=({borderTopLeftRadius:e,borderTopRightRadius:t,borderBottomLeftRadius:i,borderBottomRightRadius:r},s)=>{const o=document.createElement(s);return o.style.top="0",o.style.left="0",o.style.width="100%",o.style.height="100%",o.style.display="block",o.style.position="absolute",o.style.borderRadius=`${e} ${t} ${r} ${i}`,o.style.overflow="hidden",o.style.pointerEvents="none",o.style.webkitMaskImage="-webkit-radial-gradient(white, black)",o},Ce=(e,t,i,r)=>{const s=document.createElement("div");return s.style.position="absolute",s.style.width=`${i}px`,s.style.height=`${i}px`,s.style.top=`${t}px`,s.style.left=`${e}px`,s.style.background=r.color,s.style.borderRadius="50%",s.style.opacity=`${r.initialOpacity}`,s.style.transform="translate(-50%,-50%) scale(0)",s.style.transition=`transform ${r.duration}s ${r.easing}, opacity ${r.duration}s ${r.easing}`,s};function U(e,t,i,r){const s=e-i,o=t-r;return Math.sqrt(s*s+o*o)}function He(e,t,{width:i,height:r}){const s=U(e,t,0,0),o=U(e,t,i,0),l=U(e,t,0,r),n=U(e,t,i,r);return Math.max(s,o,l,n)}const je=({x:e,y:t},{top:i,left:r})=>({x:e-r,y:t-i}),Y="vWaveCountInternal";function We(e){const t=G(e);de(e,t+1)}function Fe(e){const t=G(e);de(e,t-1)}function de(e,t){e.dataset[Y]=t.toString()}function G(e){var t;return parseInt((t=e.dataset[Y])!==null&&t!==void 0?t:"0",10)}function qe(e){delete e.dataset[Y]}const J=(e,t,i)=>{const r=t.getBoundingClientRect(),s=window.getComputedStyle(t),{x:o,y:l}=je(e,r),n=2.05*He(o,l,r),a=Be(s,i.tagName),c=Ce(o,l,n,i);We(t);let h="";s.position==="static"&&(t.style.position&&(h=t.style.position),t.style.position="relative"),a.appendChild(c),t.appendChild(a);let m=!1;const f=v=>{typeof v<"u"&&(document.removeEventListener("pointerup",f),document.removeEventListener("pointercancel",f)),m?y():m=!0},y=()=>{c.style.transition=`opacity ${i.dissolveDuration}s linear`,c.style.opacity="0",setTimeout(()=>{a.remove(),Fe(t),G(t)===0&&(qe(t),t.style.position=h)},i.dissolveDuration*1e3)};document.addEventListener("pointerup",f),document.addEventListener("pointercancel",f);const w=setTimeout(()=>{document.removeEventListener("pointercancel",p),requestAnimationFrame(()=>{c.style.transform="translate(-50%,-50%) scale(1)",c.style.opacity=`${i.finalOpacity}`,setTimeout(()=>f(),i.duration*1e3)})},i.cancellationPeriod),p=()=>{clearTimeout(w),a.remove(),document.removeEventListener("pointerup",f),document.removeEventListener("pointercancel",f),document.removeEventListener("pointercancel",p)};document.addEventListener("pointercancel",p)},V=new WeakMap,ue=(e={},t="vue3")=>{const i=Object.assign(Object.assign({},ae),e),r=Ue(t),s=n=>{const a=n.currentTarget.dataset.vWaveTrigger;document.querySelectorAll(`[data-v-wave-boundary="${a}"]`).forEach(c=>J(n,c,Object.assign(Object.assign({},i),V.get(c))))},o={[r.mounted](n,{value:a={}}){var c;V.set(n,a),ce(n,(c=a&&a.trigger)!==null&&c!==void 0?c:i.trigger),n.addEventListener("pointerdown",h=>{if(V.get(n)===!1)return;const m=Object.assign(Object.assign({},i),V.get(n));if(m.trigger===!1)return J(h,n,m);if(le(m.trigger))return;const f=n.querySelector('[data-v-wave-trigger="true"]');!f&&m.trigger===!0||f&&!h.composedPath().includes(f)||J(h,n,m)})},[r.updated](n,{value:a={}}){var c;V.set(n,a),ce(n,(c=a&&a.trigger)!==null&&c!==void 0?c:i.trigger)}},l={[r.mounted](n,{arg:a="true"}){n.dataset.vWaveTrigger=a,a!=="true"&&n.addEventListener("pointerdown",s)},[r.updated](n,{arg:a="true"}){n.dataset.vWaveTrigger=a,a==="true"?n.removeEventListener("pointerdown",s):n.addEventListener("pointerdown",s)}};return{wave:o,vWave:o,waveTrigger:l,vWaveTrigger:l}},Xe={install(e,t={}){if(this.installed)return;this.installed=!0;const i=Object.assign(Object.assign({},ae),t),{vWave:r,vWaveTrigger:s}=ue(i,e);e.directive(i.directive,r),e.directive(`${i.directive}-trigger`,s)},installed:!1,createLocalWaveDirective:ue},Ke={},{openBlock:Ye,createElementBlock:Ge}=await _("vue");function Je(e,t){return Ye(),Ge("div")}const Qe=Di(Ke,[["render",Je]]),{defineComponent:Ze}=await _("vue"),{renderList:et,Fragment:tt,openBlock:he,createElementBlock:it,unref:D,normalizeStyle:rt,createVNode:st,Teleport:nt,createBlock:ot}=await _("vue"),{computed:pe,inject:at}=await _("vue"),B=16,lt=Ze({__name:"FmSnackbarToast",setup(e){const{breakpoints:t}=Vi(),i=at(Ve),r=pe(()=>{var o;return[...((o=i==null?void 0:i.store)==null?void 0:o.snackbars)??[]].reduce(({currentSum:l,tops:n},a)=>{n.push({id:a.id,accumulatedHeight:l});const c=a.mountStage===k.EXPIRED?0:B+a.renderedHeight;return{currentSum:l+c,tops:n}},{currentSum:B,tops:new Array}).tops}),s=pe(()=>{var o,l;return(l=(o=i==null?void 0:i.store)==null?void 0:o.snackbars)==null?void 0:l.map(n=>{var c,h,m,f,y,w;let a=0;switch(n.mountStage){case k.PREMOUNT:{a=t.value.xs?0:B;break}case k.MOUNTED:{a=((m=(h=(c=r.value)==null?void 0:c.find)==null?void 0:h.call(c,p=>p.id===n.id))==null?void 0:m.accumulatedHeight)||B;break}case k.EXPIRED:{a=((w=(y=(f=r.value)==null?void 0:f.find)==null?void 0:y.call(f,p=>p.id===n.id))==null?void 0:w.accumulatedHeight)||0,a=Math.max(0,a-n.renderedHeight);break}}return{...n,top:a}})});return(o,l)=>(he(!0),it(tt,null,et(s.value,n=>(he(),ot(nt,{key:n.id,to:"body"},[st(Mi,{class:"fixed transition-all",variant:n.type,title:n.title,description:n.message,action:n.action,dismissable:n.dismissable,style:rt(D(t).xs?{bottom:`${n.top}px`,width:"calc(100vw - 32px)",right:"16px",opacity:n.mountStage===D(k).EXPIRED?0:1}:{top:`${n.top}px`,right:n.mountStage===D(k).PREMOUNT?"-20px":"16px",opacity:n.mountStage===D(k).EXPIRED?0:1}),onVnodeMounted:a=>{var c;return(c=D(i))==null?void 0:c.onSnackbarMounted(n.id,a.el.scrollHeight)},onOnAction:()=>{var a,c;(a=n==null?void 0:n.onAction)==null||a.call(n),(c=D(i))==null||c.close(n.id)},onOnDismiss:()=>{var a;return(a=D(i))==null?void 0:a.close(n.id)}},null,8,["variant","title","description","action","dismissable","style","onVnodeMounted","onOnAction","onOnDismiss"])]))),128))}}),{reactive:ct,createVNode:dt,render:ut}=await _("vue");var k=(e=>(e.PREMOUNT="PREMOUNT",e.MOUNTED="MOUNTED",e.EXPIRED="EXPIRED",e))(k||{});class ht{constructor(){this.store=ct({snackbars:new Array})}open(t,i){const r=Math.random().toString(16).slice(2),s=[{...t,id:r,mountStage:"PREMOUNT",duration:i===null?null:i??5e3,renderedHeight:0,type:(t==null?void 0:t.type)??"info",dismissable:typeof(t==null?void 0:t.dismissable)=="boolean"?t.dismissable:!0},...this.store.snackbars];return this.store.snackbars=s,r}onSnackbarMounted(t,i){const r=this.store.snackbars.findIndex(o=>o.id===t);if(r===-1)return;const s=this.store.snackbars[r];this.store.snackbars[r]={...s,renderedHeight:i},setTimeout(()=>{const o=this.store.snackbars[r];this.store.snackbars[r]={...o,mountStage:"MOUNTED"}}),typeof s.duration=="number"&&setTimeout(()=>{this.close(t)},s.duration)}close(t){const i=this.store.snackbars.findIndex(s=>s.id===t);if(i===-1)return;const r=this.store.snackbars[i];this.store.snackbars[i]={...r,mountStage:"EXPIRED"},setTimeout(()=>{this.removeSnackbar(t)},500)}removeSnackbar(t){const i=this.store.snackbars.findIndex(r=>r.id===t);i!==-1&&this.store.snackbars.splice(i,1)}}const pt={install(e){e.provide(Ve,new ht);const t=document.body,i=dt(lt);i.appContext=e._context,ut(i,t)}},{nextTick:mt,pushScopeId:vt,popScopeId:ft,openBlock:yt,createBlock:gt,withScopeId:bt}=await _("vue");function _t(){var e=window.navigator.userAgent,t=e.indexOf("MSIE ");if(t>0)return parseInt(e.substring(t+5,e.indexOf(".",t)),10);var i=e.indexOf("Trident/");if(i>0){var r=e.indexOf("rv:");return parseInt(e.substring(r+3,e.indexOf(".",r)),10)}var s=e.indexOf("Edge/");return s>0?parseInt(e.substring(s+5,e.indexOf(".",s)),10):-1}let C;function Q(){Q.init||(Q.init=!0,C=_t()!==-1)}var H={name:"ResizeObserver",props:{emitOnMount:{type:Boolean,default:!1},ignoreWidth:{type:Boolean,default:!1},ignoreHeight:{type:Boolean,default:!1}},emits:["notify"],mounted(){Q(),mt(()=>{this._w=this.$el.offsetWidth,this._h=this.$el.offsetHeight,this.emitOnMount&&this.emitSize()});const e=document.createElement("object");this._resizeObject=e,e.setAttribute("aria-hidden","true"),e.setAttribute("tabindex",-1),e.onload=this.addResizeHandlers,e.type="text/html",C&&this.$el.appendChild(e),e.data="about:blank",C||this.$el.appendChild(e)},beforeUnmount(){this.removeResizeHandlers()},methods:{compareAndNotify(){(!this.ignoreWidth&&this._w!==this.$el.offsetWidth||!this.ignoreHeight&&this._h!==this.$el.offsetHeight)&&(this._w=this.$el.offsetWidth,this._h=this.$el.offsetHeight,this.emitSize())},emitSize(){this.$emit("notify",{width:this._w,height:this._h})},addResizeHandlers(){this._resizeObject.contentDocument.defaultView.addEventListener("resize",this.compareAndNotify),this.compareAndNotify()},removeResizeHandlers(){this._resizeObject&&this._resizeObject.onload&&(!C&&this._resizeObject.contentDocument&&this._resizeObject.contentDocument.defaultView.removeEventListener("resize",this.compareAndNotify),this.$el.removeChild(this._resizeObject),this._resizeObject.onload=null,this._resizeObject=null)}}};const $t=bt("data-v-b329ee4c");vt("data-v-b329ee4c");const St={class:"resize-observer",tabindex:"-1"};ft();const zt=$t((e,t,i,r,s,o)=>(yt(),gt("div",St)));H.render=zt,H.__scopeId="data-v-b329ee4c",H.__file="src/components/ResizeObserver.vue";const{nextTick:wt}=await _("vue");function j(e){"@babel/helpers - typeof";return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?j=function(t){return typeof t}:j=function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},j(e)}function Tt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function me(e,t){for(var i=0;i<t.length;i++){var r=t[i];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function kt(e,t,i){return t&&me(e.prototype,t),i&&me(e,i),e}function ve(e){return xt(e)||Ot(e)||It(e)||Et()}function xt(e){if(Array.isArray(e))return Z(e)}function Ot(e){if(typeof Symbol<"u"&&Symbol.iterator in Object(e))return Array.from(e)}function It(e,t){if(e){if(typeof e=="string")return Z(e,t);var i=Object.prototype.toString.call(e).slice(8,-1);if(i==="Object"&&e.constructor&&(i=e.constructor.name),i==="Map"||i==="Set")return Array.from(e);if(i==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(i))return Z(e,t)}}function Z(e,t){(t==null||t>e.length)&&(t=e.length);for(var i=0,r=new Array(t);i<t;i++)r[i]=e[i];return r}function Et(){throw new TypeError(`Invalid attempt to spread non-iterable instance.
2
+ In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function Dt(e){var t;return typeof e=="function"?t={callback:e}:t=e,t}function Rt(e,t){var i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},r,s,o,l=function(n){for(var a=arguments.length,c=new Array(a>1?a-1:0),h=1;h<a;h++)c[h-1]=arguments[h];if(o=c,!(r&&n===s)){var m=i.leading;typeof m=="function"&&(m=m(n,s)),(!r||n!==s)&&m&&e.apply(void 0,[n].concat(ve(o))),s=n,clearTimeout(r),r=setTimeout(function(){e.apply(void 0,[n].concat(ve(o))),r=0},t)}};return l._clear=function(){clearTimeout(r),r=null},l}function fe(e,t){if(e===t)return!0;if(j(e)==="object"){for(var i in e)if(!fe(e[i],t[i]))return!1;return!0}return!1}var At=function(){function e(t,i,r){Tt(this,e),this.el=t,this.observer=null,this.frozen=!1,this.createObserver(i,r)}return kt(e,[{key:"createObserver",value:function(t,i){var r=this;if(this.observer&&this.destroyObserver(),!this.frozen){if(this.options=Dt(t),this.callback=function(l,n){r.options.callback(l,n),l&&r.options.once&&(r.frozen=!0,r.destroyObserver())},this.callback&&this.options.throttle){var s=this.options.throttleOptions||{},o=s.leading;this.callback=Rt(this.callback,this.options.throttle,{leading:function(l){return o==="both"||o==="visible"&&l||o==="hidden"&&!l}})}this.oldResult=void 0,this.observer=new IntersectionObserver(function(l){var n=l[0];if(l.length>1){var a=l.find(function(h){return h.isIntersecting});a&&(n=a)}if(r.callback){var c=n.isIntersecting&&n.intersectionRatio>=r.threshold;if(c===r.oldResult)return;r.oldResult=c,r.callback(c,n)}},this.options.intersection),wt(function(){r.observer&&r.observer.observe(r.el)})}}},{key:"destroyObserver",value:function(){this.observer&&(this.observer.disconnect(),this.observer=null),this.callback&&this.callback._clear&&(this.callback._clear(),this.callback=null)}},{key:"threshold",get:function(){return this.options.intersection&&typeof this.options.intersection.threshold=="number"?this.options.intersection.threshold:0}}]),e}();function ye(e,t,i){var r=t.value;if(r)if(typeof IntersectionObserver>"u")console.warn("[vue-observe-visibility] IntersectionObserver API is not available in your browser. Please install this polyfill: https://github.com/w3c/IntersectionObserver/tree/master/polyfill");else{var s=new At(e,r,i);e._vue_visibilityState=s}}function Mt(e,t,i){var r=t.value,s=t.oldValue;if(!fe(r,s)){var o=e._vue_visibilityState;if(!r){ge(e);return}o?o.createObserver(r,i):ye(e,{value:r},i)}}function ge(e){var t=e._vue_visibilityState;t&&(t.destroyObserver(),delete e._vue_visibilityState)}var Pt={beforeMount:ye,updated:Mt,unmounted:ge};function Vt(e){return{all:e=e||new Map,on:function(t,i){var r=e.get(t);r&&r.push(i)||e.set(t,[i])},off:function(t,i){var r=e.get(t);r&&r.splice(r.indexOf(i)>>>0,1)},emit:function(t,i){(e.get(t)||[]).slice().map(function(r){r(i)}),(e.get("*")||[]).slice().map(function(r){r(t,i)})}}}const{markRaw:Lt,shallowReactive:Nt,resolveComponent:be,resolveDirective:Ut,withDirectives:Bt,openBlock:R,createElementBlock:W,normalizeClass:_e,renderSlot:x,createCommentVNode:$e,createBlock:ee,resolveDynamicComponent:Se,normalizeStyle:Ct,withCtx:P,Fragment:Ht,renderList:jt,mergeProps:ze,toHandlers:Wt,createVNode:Ft,normalizeProps:qt,guardReactiveProps:Xt,h:Kt,reactive:Wi}=await _("vue");var we={itemsLimit:1e3},Yt=/(auto|scroll)/;function Te(e,t){return e.parentNode===null?t:Te(e.parentNode,t.concat([e]))}var te=function(e,t){return getComputedStyle(e,null).getPropertyValue(t)},Gt=function(e){return te(e,"overflow")+te(e,"overflow-y")+te(e,"overflow-x")},Jt=function(e){return Yt.test(Gt(e))};function ke(e){if(e instanceof HTMLElement||e instanceof SVGElement){for(var t=Te(e.parentNode,[]),i=0;i<t.length;i+=1)if(Jt(t[i]))return t[i];return document.scrollingElement||document.documentElement}}function ie(e){"@babel/helpers - typeof";return ie=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},ie(e)}var xe={items:{type:Array,required:!0},keyField:{type:String,default:"id"},direction:{type:String,default:"vertical",validator:function(e){return["vertical","horizontal"].includes(e)}},listTag:{type:String,default:"div"},itemTag:{type:String,default:"div"}};function Oe(){return this.items.length&&ie(this.items[0])!=="object"}var re=!1;if(typeof window<"u"){re=!1;try{var Qt=Object.defineProperty({},"passive",{get:function(){re=!0}});window.addEventListener("test",null,Qt)}catch{}}let Zt=0;var L={name:"RecycleScroller",components:{ResizeObserver:H},directives:{ObserveVisibility:Pt},props:{...xe,itemSize:{type:Number,default:null},gridItems:{type:Number,default:void 0},itemSecondarySize:{type:Number,default:void 0},minItemSize:{type:[Number,String],default:null},sizeField:{type:String,default:"size"},typeField:{type:String,default:"type"},buffer:{type:Number,default:200},pageMode:{type:Boolean,default:!1},prerender:{type:Number,default:0},emitUpdate:{type:Boolean,default:!1},updateInterval:{type:Number,default:0},skipHover:{type:Boolean,default:!1},listTag:{type:String,default:"div"},itemTag:{type:String,default:"div"},listClass:{type:[String,Object,Array],default:""},itemClass:{type:[String,Object,Array],default:""}},emits:["resize","visible","hidden","update","scroll-start","scroll-end"],data(){return{pool:[],totalSize:0,ready:!1,hoverKey:null}},computed:{sizes(){if(this.itemSize===null){const e={"-1":{accumulator:0}},t=this.items,i=this.sizeField,r=this.minItemSize;let s=1e4,o=0,l;for(let n=0,a=t.length;n<a;n++)l=t[n][i]||r,l<s&&(s=l),o+=l,e[n]={accumulator:o,size:l};return this.$_computedMinItemSize=s,e}return[]},simpleArray:Oe,itemIndexByKey(){const{keyField:e,items:t}=this,i={};for(let r=0,s=t.length;r<s;r++)i[t[r][e]]=r;return i}},watch:{items(){this.updateVisibleItems(!0)},pageMode(){this.applyPageMode(),this.updateVisibleItems(!1)},sizes:{handler(){this.updateVisibleItems(!1)},deep:!0},gridItems(){this.updateVisibleItems(!0)},itemSecondarySize(){this.updateVisibleItems(!0)}},created(){this.$_startIndex=0,this.$_endIndex=0,this.$_views=new Map,this.$_unusedViews=new Map,this.$_scrollDirty=!1,this.$_lastUpdateScrollPosition=0,this.prerender&&(this.$_prerender=!0,this.updateVisibleItems(!1)),this.gridItems&&!this.itemSize&&console.error("[vue-recycle-scroller] You must provide an itemSize when using gridItems")},mounted(){this.applyPageMode(),this.$nextTick(()=>{this.$_prerender=!1,this.updateVisibleItems(!0),this.ready=!0})},activated(){const e=this.$_lastUpdateScrollPosition;typeof e=="number"&&this.$nextTick(()=>{this.scrollToPosition(e)})},beforeUnmount(){this.removeListeners()},methods:{addView(e,t,i,r,s){const o=Lt({id:Zt++,index:t,used:!0,key:r,type:s}),l=Nt({item:i,position:0,nr:o});return e.push(l),l},unuseView(e,t=!1){const i=this.$_unusedViews,r=e.nr.type;let s=i.get(r);s||(s=[],i.set(r,s)),s.push(e),t||(e.nr.used=!1,e.position=-9999)},handleResize(){this.$emit("resize"),this.ready&&this.updateVisibleItems(!1)},handleScroll(e){if(!this.$_scrollDirty){if(this.$_scrollDirty=!0,this.$_updateTimeout)return;const t=()=>requestAnimationFrame(()=>{this.$_scrollDirty=!1;const{continuous:i}=this.updateVisibleItems(!1,!0);i||(clearTimeout(this.$_refreshTimout),this.$_refreshTimout=setTimeout(this.handleScroll,this.updateInterval+100))});t(),this.updateInterval&&(this.$_updateTimeout=setTimeout(()=>{this.$_updateTimeout=0,this.$_scrollDirty&&t()},this.updateInterval))}},handleVisibilityChange(e,t){this.ready&&(e||t.boundingClientRect.width!==0||t.boundingClientRect.height!==0?(this.$emit("visible"),requestAnimationFrame(()=>{this.updateVisibleItems(!1)})):this.$emit("hidden"))},updateVisibleItems(e,t=!1){const i=this.itemSize,r=this.gridItems||1,s=this.itemSecondarySize||i,o=this.$_computedMinItemSize,l=this.typeField,n=this.simpleArray?null:this.keyField,a=this.items,c=a.length,h=this.sizes,m=this.$_views,f=this.$_unusedViews,y=this.pool,w=this.itemIndexByKey;let p,v,I,z,T;if(!c)p=v=z=T=I=0;else if(this.$_prerender)p=z=0,v=T=Math.min(this.prerender,a.length),I=null;else{const d=this.getScroll();if(t){let b=d.start-this.$_lastUpdateScrollPosition;if(b<0&&(b=-b),i===null&&b<o||b<i)return{continuous:!0}}this.$_lastUpdateScrollPosition=d.start;const $=this.buffer;d.start-=$,d.end+=$;let g=0;if(this.$refs.before&&(g=this.$refs.before.scrollHeight,d.start-=g),this.$refs.after){const b=this.$refs.after.scrollHeight;d.end+=b}if(i===null){let b,N=0,Me=c-1,S=~~(c/2),Pe;do Pe=S,b=h[S].accumulator,b<d.start?N=S:S<c-1&&h[S+1].accumulator>d.start&&(Me=S),S=~~((N+Me)/2);while(S!==Pe);for(S<0&&(S=0),p=S,I=h[c-1].accumulator,v=S;v<c&&h[v].accumulator<d.end;v++);for(v===-1?v=a.length-1:(v++,v>c&&(v=c)),z=p;z<c&&g+h[z].accumulator<d.start;z++);for(T=z;T<c&&g+h[T].accumulator<d.end;T++);}else{p=~~(d.start/i*r);const b=p%r;p-=b,v=Math.ceil(d.end/i*r),z=Math.max(0,Math.floor((d.start-g)/i*r)),T=Math.floor((d.end-g)/i*r),p<0&&(p=0),v>c&&(v=c),z<0&&(z=0),T>c&&(T=c),I=Math.ceil(c/r)*i}}v-p>we.itemsLimit&&this.itemsLimitError(),this.totalSize=I;let u;const X=p<=this.$_endIndex&&v>=this.$_startIndex;if(X)for(let d=0,$=y.length;d<$;d++)u=y[d],u.nr.used&&(e&&(u.nr.index=w[u.item[n]]),(u.nr.index==null||u.nr.index<p||u.nr.index>=v)&&this.unuseView(u));const Ae=X?null:new Map;let M,E,K;for(let d=p;d<v;d++){M=a[d];const $=n?M[n]:M;if($==null)throw new Error(`Key is ${$} on item (keyField is '${n}')`);if(u=m.get($),!i&&!h[d].size){u&&this.unuseView(u);continue}E=M[l];let g=f.get(E),b=!1;if(!u)X?g&&g.length?u=g.pop():u=this.addView(y,d,M,$,E):(K=Ae.get(E)||0,(!g||K>=g.length)&&(u=this.addView(y,d,M,$,E),this.unuseView(u,!0),g=f.get(E)),u=g[K],Ae.set(E,K+1)),m.delete(u.nr.key),u.nr.used=!0,u.nr.index=d,u.nr.key=$,u.nr.type=E,m.set($,u),b=!0;else if(!u.nr.used&&(u.nr.used=!0,b=!0,g)){const N=g.indexOf(u);N!==-1&&g.splice(N,1)}u.item=M,b&&(d===a.length-1&&this.$emit("scroll-end"),d===0&&this.$emit("scroll-start")),i===null?(u.position=h[d-1].accumulator,u.offset=0):(u.position=Math.floor(d/r)*i,u.offset=d%r*s)}return this.$_startIndex=p,this.$_endIndex=v,this.emitUpdate&&this.$emit("update",p,v,z,T),clearTimeout(this.$_sortTimer),this.$_sortTimer=setTimeout(this.sortViews,this.updateInterval+300),{continuous:X}},getListenerTarget(){let e=ke(this.$el);return window.document&&(e===window.document.documentElement||e===window.document.body)&&(e=window),e},getScroll(){const{$el:e,direction:t}=this,i=t==="vertical";let r;if(this.pageMode){const s=e.getBoundingClientRect(),o=i?s.height:s.width;let l=-(i?s.top:s.left),n=i?window.innerHeight:window.innerWidth;l<0&&(n+=l,l=0),l+n>o&&(n=o-l),r={start:l,end:l+n}}else i?r={start:e.scrollTop,end:e.scrollTop+e.clientHeight}:r={start:e.scrollLeft,end:e.scrollLeft+e.clientWidth};return r},applyPageMode(){this.pageMode?this.addListeners():this.removeListeners()},addListeners(){this.listenerTarget=this.getListenerTarget(),this.listenerTarget.addEventListener("scroll",this.handleScroll,re?{passive:!0}:!1),this.listenerTarget.addEventListener("resize",this.handleResize)},removeListeners(){this.listenerTarget&&(this.listenerTarget.removeEventListener("scroll",this.handleScroll),this.listenerTarget.removeEventListener("resize",this.handleResize),this.listenerTarget=null)},scrollToItem(e){let t;const i=this.gridItems||1;this.itemSize===null?t=e>0?this.sizes[e-1].accumulator:0:t=Math.floor(e/i)*this.itemSize,this.scrollToPosition(t)},scrollToPosition(e){const t=this.direction==="vertical"?{scroll:"scrollTop",start:"top"}:{scroll:"scrollLeft",start:"left"};let i,r,s;if(this.pageMode){const o=ke(this.$el),l=o.tagName==="HTML"?0:o[t.scroll],n=o.getBoundingClientRect(),a=this.$el.getBoundingClientRect()[t.start]-n[t.start];i=o,r=t.scroll,s=e+l+a}else i=this.$el,r=t.scroll,s=e;i[r]=s},itemsLimitError(){throw setTimeout(()=>{console.log("It seems the scroller element isn't scrolling, so it tries to render all the items at once.","Scroller:",this.$el),console.log("Make sure the scroller has a fixed height (or width) and 'overflow-y' (or 'overflow-x') set to 'auto' so it can scroll correctly and only render the items visible in the scroll viewport.")}),new Error("Rendered items limit reached")},sortViews(){this.pool.sort((e,t)=>e.nr.index-t.nr.index)}}};const ei={key:0,ref:"before",class:"vue-recycle-scroller__slot"},ti={key:1,ref:"after",class:"vue-recycle-scroller__slot"};function ii(e,t,i,r,s,o){const l=be("ResizeObserver"),n=Ut("observe-visibility");return Bt((R(),W("div",{class:_e(["vue-recycle-scroller",{ready:s.ready,"page-mode":i.pageMode,[`direction-${e.direction}`]:!0}]),onScrollPassive:t[0]||(t[0]=(...a)=>o.handleScroll&&o.handleScroll(...a))},[e.$slots.before?(R(),W("div",ei,[x(e.$slots,"before")],512)):$e("v-if",!0),(R(),ee(Se(i.listTag),{ref:"wrapper",style:Ct({[e.direction==="vertical"?"minHeight":"minWidth"]:s.totalSize+"px"}),class:_e(["vue-recycle-scroller__item-wrapper",i.listClass])},{default:P(()=>[(R(!0),W(Ht,null,jt(s.pool,a=>(R(),ee(Se(i.itemTag),ze({key:a.nr.id,style:s.ready?{transform:`translate${e.direction==="vertical"?"Y":"X"}(${a.position}px) translate${e.direction==="vertical"?"X":"Y"}(${a.offset}px)`,width:i.gridItems?`${e.direction==="vertical"&&i.itemSecondarySize||i.itemSize}px`:void 0,height:i.gridItems?`${e.direction==="horizontal"&&i.itemSecondarySize||i.itemSize}px`:void 0}:null,class:["vue-recycle-scroller__item-view",[i.itemClass,{hover:!i.skipHover&&s.hoverKey===a.nr.key}]]},Wt(i.skipHover?{}:{mouseenter:()=>{s.hoverKey=a.nr.key},mouseleave:()=>{s.hoverKey=null}})),{default:P(()=>[x(e.$slots,"default",{item:a.item,index:a.nr.index,active:a.nr.used})]),_:2},1040,["style","class"]))),128)),x(e.$slots,"empty")]),_:3},8,["style","class"])),e.$slots.after?(R(),W("div",ti,[x(e.$slots,"after")],512)):$e("v-if",!0),Ft(l,{onNotify:o.handleResize},null,8,["onNotify"])],34)),[[n,o.handleVisibilityChange]])}L.render=ii,L.__file="src/components/RecycleScroller.vue";var F={name:"DynamicScroller",components:{RecycleScroller:L},provide(){return typeof ResizeObserver<"u"&&(this.$_resizeObserver=new ResizeObserver(e=>{requestAnimationFrame(()=>{if(Array.isArray(e)){for(const t of e)if(t.target&&t.target.$_vs_onResize){let i,r;if(t.borderBoxSize){const s=t.borderBoxSize[0];i=s.inlineSize,r=s.blockSize}else i=t.contentRect.width,r=t.contentRect.height;t.target.$_vs_onResize(t.target.$_vs_id,i,r)}}})})),{vscrollData:this.vscrollData,vscrollParent:this,vscrollResizeObserver:this.$_resizeObserver}},inheritAttrs:!1,props:{...xe,minItemSize:{type:[Number,String],required:!0}},emits:["resize","visible"],data(){return{vscrollData:{active:!0,sizes:{},keyField:this.keyField,simpleArray:!1}}},computed:{simpleArray:Oe,itemsWithSize(){const e=[],{items:t,keyField:i,simpleArray:r}=this,s=this.vscrollData.sizes,o=t.length;for(let l=0;l<o;l++){const n=t[l],a=r?l:n[i];let c=s[a];typeof c>"u"&&!this.$_undefinedMap[a]&&(c=0),e.push({item:n,id:a,size:c})}return e}},watch:{items(){this.forceUpdate()},simpleArray:{handler(e){this.vscrollData.simpleArray=e},immediate:!0},direction(e){this.forceUpdate(!0)},itemsWithSize(e,t){const i=this.$el.scrollTop;let r=0,s=0;const o=Math.min(e.length,t.length);for(let n=0;n<o&&!(r>=i);n++)r+=t[n].size||this.minItemSize,s+=e[n].size||this.minItemSize;const l=s-r;l!==0&&(this.$el.scrollTop+=l)}},beforeCreate(){this.$_updates=[],this.$_undefinedSizes=0,this.$_undefinedMap={},this.$_events=Vt()},activated(){this.vscrollData.active=!0},deactivated(){this.vscrollData.active=!1},unmounted(){this.$_events.all.clear()},methods:{onScrollerResize(){this.$refs.scroller&&this.forceUpdate(),this.$emit("resize")},onScrollerVisible(){this.$_events.emit("vscroll:update",{force:!1}),this.$emit("visible")},forceUpdate(e=!1){(e||this.simpleArray)&&(this.vscrollData.sizes={}),this.$_events.emit("vscroll:update",{force:!0})},scrollToItem(e){const t=this.$refs.scroller;t&&t.scrollToItem(e)},getItemSize(e,t=void 0){const i=this.simpleArray?t??this.items.indexOf(e):e[this.keyField];return this.vscrollData.sizes[i]||0},scrollToBottom(){if(this.$_scrollingToBottom)return;this.$_scrollingToBottom=!0;const e=this.$el;this.$nextTick(()=>{e.scrollTop=e.scrollHeight+5e3;const t=()=>{e.scrollTop=e.scrollHeight+5e3,requestAnimationFrame(()=>{e.scrollTop=e.scrollHeight+5e3,this.$_undefinedSizes===0?this.$_scrollingToBottom=!1:requestAnimationFrame(t)})};requestAnimationFrame(t)})}}};function ri(e,t,i,r,s,o){const l=be("RecycleScroller");return R(),ee(l,ze({ref:"scroller",items:o.itemsWithSize,"min-item-size":i.minItemSize,direction:e.direction,"key-field":"id","list-tag":e.listTag,"item-tag":e.itemTag},e.$attrs,{onResize:o.onScrollerResize,onVisible:o.onScrollerVisible}),{default:P(({item:n,index:a,active:c})=>[x(e.$slots,"default",qt(Xt({item:n.item,index:a,active:c,itemWithSize:n})))]),before:P(()=>[x(e.$slots,"before")]),after:P(()=>[x(e.$slots,"after")]),empty:P(()=>[x(e.$slots,"empty")]),_:3},16,["items","min-item-size","direction","list-tag","item-tag","onResize","onVisible"])}F.render=ri,F.__file="src/components/DynamicScroller.vue";var se={name:"DynamicScrollerItem",inject:["vscrollData","vscrollParent","vscrollResizeObserver"],props:{item:{required:!0},watchData:{type:Boolean,default:!1},active:{type:Boolean,required:!0},index:{type:Number,default:void 0},sizeDependencies:{type:[Array,Object],default:null},emitResize:{type:Boolean,default:!1},tag:{type:String,default:"div"}},emits:["resize"],computed:{id(){if(this.vscrollData.simpleArray)return this.index;if(this.vscrollData.keyField in this.item)return this.item[this.vscrollData.keyField];throw new Error(`keyField '${this.vscrollData.keyField}' not found in your item. You should set a valid keyField prop on your Scroller`)},size(){return this.vscrollData.sizes[this.id]||0},finalActive(){return this.active&&this.vscrollData.active}},watch:{watchData:"updateWatchData",id(e,t){if(this.$el.$_vs_id=this.id,this.size||this.onDataUpdate(),this.$_sizeObserved){const i=this.vscrollData.sizes[t],r=this.vscrollData.sizes[e];i!=null&&i!==r&&this.applySize(i)}},finalActive(e){this.size||(e?this.vscrollParent.$_undefinedMap[this.id]||(this.vscrollParent.$_undefinedSizes++,this.vscrollParent.$_undefinedMap[this.id]=!0):this.vscrollParent.$_undefinedMap[this.id]&&(this.vscrollParent.$_undefinedSizes--,this.vscrollParent.$_undefinedMap[this.id]=!1)),this.vscrollResizeObserver?e?this.observeSize():this.unobserveSize():e&&this.$_pendingVScrollUpdate===this.id&&this.updateSize()}},created(){if(!this.$isServer&&(this.$_forceNextVScrollUpdate=null,this.updateWatchData(),!this.vscrollResizeObserver)){for(const e in this.sizeDependencies)this.$watch(()=>this.sizeDependencies[e],this.onDataUpdate);this.vscrollParent.$_events.on("vscroll:update",this.onVscrollUpdate)}},mounted(){this.finalActive&&(this.updateSize(),this.observeSize())},beforeUnmount(){this.vscrollParent.$_events.off("vscroll:update",this.onVscrollUpdate),this.unobserveSize()},methods:{updateSize(){this.finalActive?this.$_pendingSizeUpdate!==this.id&&(this.$_pendingSizeUpdate=this.id,this.$_forceNextVScrollUpdate=null,this.$_pendingVScrollUpdate=null,this.computeSize(this.id)):this.$_forceNextVScrollUpdate=this.id},updateWatchData(){this.watchData&&!this.vscrollResizeObserver?this.$_watchData=this.$watch("item",()=>{this.onDataUpdate()},{deep:!0}):this.$_watchData&&(this.$_watchData(),this.$_watchData=null)},onVscrollUpdate({force:e}){!this.finalActive&&e&&(this.$_pendingVScrollUpdate=this.id),(this.$_forceNextVScrollUpdate===this.id||e||!this.size)&&this.updateSize()},onDataUpdate(){this.updateSize()},computeSize(e){this.$nextTick(()=>{if(this.id===e){const t=this.$el.offsetWidth,i=this.$el.offsetHeight;this.applyWidthHeight(t,i)}this.$_pendingSizeUpdate=null})},applyWidthHeight(e,t){const i=~~(this.vscrollParent.direction==="vertical"?t:e);i&&this.size!==i&&this.applySize(i)},applySize(e){this.vscrollParent.$_undefinedMap[this.id]&&(this.vscrollParent.$_undefinedSizes--,this.vscrollParent.$_undefinedMap[this.id]=void 0),this.vscrollData.sizes[this.id]=e,this.emitResize&&this.$emit("resize",this.id)},observeSize(){this.vscrollResizeObserver&&(this.$_sizeObserved||(this.vscrollResizeObserver.observe(this.$el),this.$el.$_vs_id=this.id,this.$el.$_vs_onResize=this.onResize,this.$_sizeObserved=!0))},unobserveSize(){this.vscrollResizeObserver&&this.$_sizeObserved&&(this.vscrollResizeObserver.unobserve(this.$el),this.$el.$_vs_onResize=void 0,this.$_sizeObserved=!1)},onResize(e,t,i){this.id===e&&this.applyWidthHeight(t,i)}},render(){return Kt(this.tag,this.$slots.default())}};se.__file="src/components/DynamicScrollerItem.vue";function si(e,t){e.component("".concat(t,"recycle-scroller"),L),e.component("".concat(t,"RecycleScroller"),L),e.component("".concat(t,"dynamic-scroller"),F),e.component("".concat(t,"DynamicScroller"),F),e.component("".concat(t,"dynamic-scroller-item"),se),e.component("".concat(t,"DynamicScrollerItem"),se)}var ni={version:"2.0.0-beta.8",install:function(e,t){var i=Object.assign({},{installComponents:!0,componentsPrefix:""},t);for(var r in i)typeof i[r]<"u"&&(we[r]=i[r]);i.installComponents&&si(e,i.componentsPrefix)}};const{defineComponent:oi}=await _("vue"),{unref:ai,vShow:li,normalizeStyle:Ie,createElementVNode:ci,withDirectives:di,toDisplayString:ui,createTextVNode:hi,openBlock:pi,createElementBlock:mi,createCommentVNode:vi}=await _("vue"),{computed:Ee,onBeforeUnmount:fi,onMounted:yi,ref:ne}=await _("vue"),gi=oi({__name:"FmTooltipDirective",props:{reference:{},placement:{default:"top"},content:{default:""},disabled:{type:Boolean,default:!1},hideArrow:{type:Boolean,default:!1}},setup(e){const t=e,i=ne(!1),r=ne(null),s=ne(null),o=Ee(()=>t.reference());let l;const{floatingStyles:n,middlewareData:a,placement:c}=Ni(o,r,{whileElementsMounted:Ui,placement:t.placement,middleware:[Bi(),Ci({mainAxis:6}),Hi({element:s})]}),h=Ee(()=>{var w,p,v,I;const y={top:"bottom",right:"left",bottom:"top",left:"right"}[c.value];return{left:((w=a.value.arrow)==null?void 0:w.x)!=null?`${(p=a.value.arrow)==null?void 0:p.x}px`:"",top:((v=a.value.arrow)==null?void 0:v.y)!=null?`${(I=a.value.arrow)==null?void 0:I.y}px`:"",[y]:"-3px"}}),m=()=>{t.disabled||(l&&clearTimeout(l),l=setTimeout(()=>{i.value=!0},250))},f=()=>{t.disabled||(l&&clearTimeout(l),l=setTimeout(()=>{i.value=!1},250))};return yi(()=>{o.value.addEventListener("pointerdown",m),o.value.addEventListener("pointermove",y=>{y.pointerType!=="touch"&&m()}),o.value.addEventListener("pointerleave",f),o.value.addEventListener("pointerup",f)}),fi(()=>{o.value.removeEventListener("pointerdown",m),o.value.removeEventListener("pointermove",y=>{y.pointerType!=="touch"&&m()}),o.value.removeEventListener("pointerleave",f),o.value.removeEventListener("pointerup",f)}),(y,w)=>i.value&&!y.disabled?(pi(),mi("div",{key:0,ref_key:"tooltipContent",ref:r,class:"bg-fm-color-neutral-black fm-shadow-light-300 fm-typo-body-sm-400 max-w-[240px] px-16 py-12 rounded-lg text-fm-color-typo-white",style:Ie(ai(n))},[di(ci("div",{ref_key:"arrowEl",ref:s,class:"absolute bg-fm-color-neutral-black h-8 rotate-45 rounded-[2px] w-8",style:Ie(h.value)},null,4),[[li,!y.hideArrow]]),hi(" "+ui(y.content),1)],4)):vi("",!0)}}),{createApp:bi,h:_i,ref:$i}=await _("vue");let oe;const O=$i([]);let De=0;const Si=()=>{if(oe)return;const e=document.createElement("div");document.body.appendChild(e),oe=bi({render:()=>O.value.map(t=>_i(gi,t))}),oe.mount(e)},q=e=>{if(e){for(const t of["top","right","bottom","left"])if(e[t])return t}return"top"},Re=(e,t)=>{const{value:i,modifiers:r}=t;Si(),e.$_fmTooltipId=De,De+=1,typeof i=="string"?O.value.push({id:e.$_fmTooltipId,reference:()=>e,content:i.toString(),placement:q(r),hideArrow:!1}):i&&typeof i=="object"&&O.value.push({id:e.$_fmTooltipId,reference:()=>e,content:i.content.toString(),placement:q(r),disabled:i.disabled??!1,hideArrow:i.hideArrow??!1})},zi=(e,t)=>{const{value:i,modifiers:r}=t,s=O.value.findIndex(o=>o.id===e.$_fmTooltipId);if(s===-1){Re(e,t);return}typeof i=="string"?O.value[s]={id:e.$_fmTooltipId,reference:()=>e,content:i.toString(),placement:q(r),hideArrow:!1}:i&&typeof i=="object"&&(O.value[s]={id:e.$_fmTooltipId,reference:()=>e,content:i.content.toString(),disabled:i.disabled??!1,placement:q(r),hideArrow:i.hideArrow??!1})},wi=e=>{const t=O.value.findIndex(i=>i.id===e.$_fmTooltipId);t!==-1&&O.value.splice(t,1)},Ti={mounted:Re,updated:zi,beforeUnmount:wi},{createApp:ki}=await _("vue"),A=ki(Qe);A.use(Le),A.use(Xe,{duration:.3,color:"var(--fm-color-opacity-sm)",initialOpacity:1,finalOpacity:.1,dissolveDuration:.6}),A.directive("tooltip",Ti),A.use(Ri),A.use(pt),A.use(ni),A.mount("#app")});
@@ -0,0 +1 @@
1
+ @import"https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Noto+Sans+SC:wght@100;200;300;400;500;600;700;800;900&display=swap";html,body,textarea{font-family:Inter,NotoSansSc,Roboto}*{box-sizing:border-box}*,:before,:after{box-sizing:border-box;border-width:0;border-style:solid;border-color:#e5e7eb}:before,:after{--tw-content: ""}html,:host{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}ol,ul,menu{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}button,[role=button]{cursor:pointer}:disabled{cursor:default}img,svg,video,canvas,audio,iframe,embed,object{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]{display:none}:root{--fm-color-primary: #ff7823;--fm-color-secondary-macaron: #8ce6d7;--fm-color-secondary-blueberry: #007ba7;--fm-color-secondary-salmon: #ff5d53;--fm-color-secondary-tuna: #73c8e6;--fm-color-secondary-citrus: #fca23e;--fm-color-secondary-halite: #f09bbe;--fm-color-secondary-mustard: #ffd232;--fm-color-secondary-mint: #50be9b;--fm-color-secondary-plum: #8358d4;--fm-color-secondary-cocoa: #9b5046;--fm-color-neutral-white: #ffffff;--fm-color-neutral-gray-100: #f2f2f7;--fm-color-neutral-gray-200: #c7c7cc;--fm-color-neutral-gray-300: #aeaeb2;--fm-color-neutral-gray-400: #6b6b6b;--fm-color-neutral-gray-500: #1c1c1e;--fm-color-system-green-100: #ebf9ee;--fm-color-system-green-200: #85dd9b;--fm-color-system-green-300: #34c759;--fm-color-system-green-400: #1f7735;--fm-color-system-orange-100: #fff4e6;--fm-color-system-orange-200: #ffbf66;--fm-color-system-orange-300: #ff9500;--fm-color-system-orange-400: #995900;--fm-color-system-red-100: #ffebea;--fm-color-system-red-200: #ff8983;--fm-color-system-red-300: #ff3b30;--fm-color-system-red-400: #99231d;--fm-color-system-blue-100: #e6f2ff;--fm-color-system-blue-200: #66afff;--fm-color-system-blue-300: #007aff;--fm-color-system-blue-400: #004999;--fm-color-overlay: rgba(102, 102, 102, .76);--fm-color-opacity-sm: rgba(28, 28, 30, .08);--fm-color-opacity-md: rgba(28, 28, 30, .16);--fm-color-opacity-lg: rgba(28, 28, 30, .24)}*,:before,:after{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }::backdrop{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.container{width:100%}@media (min-width: 0px){.container{max-width:0px}}@media (min-width: 648px){.container{max-width:648px}}@media (min-width: 960px){.container{max-width:960px}}@media (min-width: 1248px){.container{max-width:1248px}}.fm-typo-display-sm-700{font-size:2.25rem;font-weight:700;line-height:1.1111;letter-spacing:.025em;text-decoration-line:none}.fm-typo-title-md-700{font-size:1.625rem;font-weight:700;line-height:1.2308;letter-spacing:.015em;text-decoration-line:none}.fm-typo-title-sm-700{font-size:1.375rem;font-weight:700;line-height:1.2727;letter-spacing:.015em;text-decoration-line:none}.fm-typo-body-xl-700{font-size:1.125rem;font-weight:700;line-height:1.3333;letter-spacing:.01em;text-decoration-line:none}.fm-typo-body-lg-700{font-size:1rem;font-weight:700;line-height:1.5;letter-spacing:.005em;text-decoration-line:none}.fm-typo-body-md-700{font-size:.875rem;font-weight:700;line-height:1.5714;letter-spacing:.0125em;text-decoration-line:none}.fm-typo-body-sm-700{font-size:.75rem;font-weight:700;line-height:1.6667;letter-spacing:.02em;text-decoration-line:none}.fm-typo-body-lg-400{font-size:1rem;font-weight:400;line-height:1.5;letter-spacing:-.005em;text-decoration-line:none}.fm-typo-body-md-400{font-size:.875rem;font-weight:400;line-height:1.5714;letter-spacing:.01em;text-decoration-line:none}.fm-typo-body-sm-400{font-size:.75rem;font-weight:400;line-height:1.6667;letter-spacing:.02em;text-decoration-line:none}.fm-shadow-light-100{box-shadow:0 1px 4px #1c1c1e3d}.fm-shadow-light-300{box-shadow:0 8px 16px #c7c7cc3d}.fm-shadow-light-400{box-shadow:0 16px 24px #c7c7cc3d}.fm-corner-radius-md{border-radius:8px}.fm-corner-radius-lg{border-radius:16px}.border-1{border-width:1px}.pointer-events-none{pointer-events:none}.visible{visibility:visible}.invisible{visibility:hidden}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.sticky{position:sticky}.-top-32{top:-32px}.bottom-0{bottom:0}.bottom-16{bottom:16px}.left-0{left:0}.left-1\/2,.left-\[50\%\]{left:50%}.right-0{right:0}.right-16{right:16px}.right-\[-12px\]{right:-12px}.right-\[-20px\]{right:-20px}.right-\[-4px\]{right:-4px}.right-\[12px\]{right:12px}.right-\[6px\]{right:6px}.right-\[7px\]{right:7px}.top-0{top:0}.top-1\/2{top:50%}.top-3\/4{top:75%}.top-\[-2px\]{top:-2px}.top-\[18px\]{top:18px}.top-\[50\%\]{top:50%}.-z-\[1\]{z-index:-1}.z-10{z-index:10}.z-\[-1\]{z-index:-1}.z-\[10\]{z-index:10}.z-\[1\]{z-index:1}.z-\[90\]{z-index:90}.z-\[99\]{z-index:99}.col-start-1{grid-column-start:1}.col-start-2{grid-column-start:2}.row-start-1{grid-row-start:1}.m-24{margin:24px}.-mx-4{margin-left:-4px;margin-right:-4px}.-my-12{margin-top:-12px;margin-bottom:-12px}.-my-4{margin-top:-4px;margin-bottom:-4px}.mx-0{margin-left:0;margin-right:0}.mx-24{margin-left:24px;margin-right:24px}.mx-4{margin-left:4px;margin-right:4px}.mx-8{margin-left:8px;margin-right:8px}.my-0{margin-top:0;margin-bottom:0}.my-4{margin-top:4px;margin-bottom:4px}.my-8{margin-top:8px;margin-bottom:8px}.mb-24{margin-bottom:24px}.mb-8{margin-bottom:8px}.mr-12{margin-right:12px}.mr-32{margin-right:32px}.mt-12{margin-top:12px}.mt-16{margin-top:16px}.mt-4{margin-top:4px}.mt-40{margin-top:40px}.mt-7{margin-top:1.75rem}.mt-8{margin-top:8px}.mt-\[2px\]{margin-top:2px}.line-clamp-1{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:1}.line-clamp-2{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}.block{display:block}.\!inline{display:inline!important}.inline{display:inline}.flex{display:flex}.inline-flex{display:inline-flex}.\!table{display:table!important}.table{display:table}.grid{display:grid}.inline-grid{display:inline-grid}.contents{display:contents}.list-item{display:list-item}.hidden{display:none}.aspect-4\/3{aspect-ratio:4 / 3}.aspect-square{aspect-ratio:1 / 1}.h-10{height:2.5rem}.h-120{height:120px}.h-24{height:24px}.h-32{height:32px}.h-4{height:4px}.h-40{height:40px}.h-48{height:48px}.h-56{height:56px}.h-6{height:1.5rem}.h-72{height:72px}.h-8{height:8px}.h-\[100\%\]{height:100%}.h-\[10px\]{height:10px}.h-\[16px\]{height:16px}.h-\[18px\]{height:18px}.h-\[20px\]{height:20px}.h-\[22px\]{height:22px}.h-\[24px\]{height:24px}.h-\[264px\]{height:264px}.h-\[288px\]{height:288px}.h-\[2px\]{height:2px}.h-\[30px\]{height:30px}.h-\[36px\]{height:36px}.h-\[46px\]{height:46px}.h-\[56px\]{height:56px}.h-\[6px\]{height:6px}.h-\[calc\(100\%-172px\)\]{height:calc(100% - 172px)}.h-\[calc\(100\%-208px\)\]{height:calc(100% - 208px)}.h-auto{height:auto}.h-full{height:100%}.h-screen{height:100vh}.max-h-48{max-height:48px}.max-h-64{max-height:64px}.max-h-\[264px\]{max-height:264px}.max-h-\[408px\]{max-height:408px}.max-h-\[549px\]{max-height:549px}.max-h-\[calc\(100\%-64px\)\]{max-height:calc(100% - 64px)}.max-h-\[unset\]{max-height:unset}.min-h-56{min-height:56px}.min-h-\[24px\]{min-height:24px}.min-h-\[40px\]{min-height:40px}.min-h-\[52px\]{min-height:52px}.w-0{width:0px}.w-1\/2{width:50%}.w-16{width:16px}.w-2\/3{width:66.666667%}.w-24{width:24px}.w-40{width:40px}.w-48{width:48px}.w-56{width:56px}.w-6{width:1.5rem}.w-72{width:72px}.w-8{width:8px}.w-\[100\%\]{width:100%}.w-\[10px\]{width:10px}.w-\[160px\]{width:160px}.w-\[16px\]{width:16px}.w-\[171px\]{width:171px}.w-\[18px\]{width:18px}.w-\[20px\]{width:20px}.w-\[24px\]{width:24px}.w-\[2px\]{width:2px}.w-\[30px\]{width:30px}.w-\[336px\]{width:336px}.w-\[343px\]{width:343px}.w-\[360px\]{width:360px}.w-\[36px\]{width:36px}.w-\[52px\]{width:52px}.w-\[56px\]{width:56px}.w-\[6px\]{width:6px}.w-\[75px\]{width:75px}.w-auto{width:auto}.w-full{width:100%}.w-max{width:-moz-max-content;width:max-content}.w-min{width:-moz-min-content;width:min-content}.w-screen{width:100vw}.min-w-56{min-width:56px}.min-w-\[112px\]{min-width:112px}.min-w-\[186px\]{min-width:186px}.min-w-\[24px\]{min-width:24px}.min-w-\[32px\]{min-width:32px}.min-w-\[360px\]{min-width:360px}.min-w-\[40px\]{min-width:40px}.min-w-\[90px\]{min-width:90px}.max-w-\[200px\]{max-width:200px}.max-w-\[240px\]{max-width:240px}.max-w-\[360px\]{max-width:360px}.max-w-\[400px\]{max-width:400px}.max-w-\[480px\]{max-width:480px}.max-w-\[996px\]{max-width:996px}.max-w-\[unset\]{max-width:unset}.max-w-full{max-width:100%}.flex-1{flex:1 1 0%}.shrink-0{flex-shrink:0}.flex-grow,.grow{flex-grow:1}.-translate-x-1\/2{--tw-translate-x: -50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.-translate-y-1\/2{--tw-translate-y: -50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.rotate-45{--tw-rotate: 45deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.cursor-text{cursor:text}.select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none}.resize{resize:both}.grid-flow-col{grid-auto-flow:column}.flex-row{flex-direction:row}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.content-start{align-content:flex-start}.items-start{align-items:flex-start}.items-center{align-items:center}.justify-start{justify-content:flex-start}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-0{gap:0px}.gap-12{gap:12px}.gap-16{gap:16px}.gap-2{gap:.5rem}.gap-24{gap:24px}.gap-4{gap:4px}.gap-8{gap:8px}.divide-y-\[1px\]>:not([hidden])~:not([hidden]){--tw-divide-y-reverse: 0;border-top-width:calc(1px * calc(1 - var(--tw-divide-y-reverse)));border-bottom-width:calc(1px * var(--tw-divide-y-reverse))}.divide-fm-color-neutral-black>:not([hidden])~:not([hidden]){border-color:var(--fm-color-neutral-gray-500)}.divide-fm-color-neutral-gray-100>:not([hidden])~:not([hidden]){border-color:var(--fm-color-neutral-gray-100)}.divide-fm-color-neutral-gray-200>:not([hidden])~:not([hidden]){border-color:var(--fm-color-neutral-gray-200)}.divide-fm-color-neutral-gray-300>:not([hidden])~:not([hidden]){border-color:var(--fm-color-neutral-gray-300)}.divide-fm-color-neutral-gray-400>:not([hidden])~:not([hidden]){border-color:var(--fm-color-neutral-gray-400)}.divide-fm-color-neutral-white>:not([hidden])~:not([hidden]){border-color:var(--fm-color-neutral-white)}.divide-fm-color-opacity-lg>:not([hidden])~:not([hidden]){border-color:var(--fm-color-opacity-lg)}.divide-fm-color-opacity-md>:not([hidden])~:not([hidden]){border-color:var(--fm-color-opacity-md)}.divide-fm-color-opacity-sm>:not([hidden])~:not([hidden]){border-color:var(--fm-color-opacity-sm)}.divide-fm-color-overlay-background>:not([hidden])~:not([hidden]){border-color:var(--fm-color-overlay)}.divide-fm-color-primary>:not([hidden])~:not([hidden]){border-color:var(--fm-color-primary)}.divide-fm-color-secondary-blueberry>:not([hidden])~:not([hidden]){border-color:var(--fm-color-secondary-blueberry)}.divide-fm-color-secondary-citrus>:not([hidden])~:not([hidden]){border-color:var(--fm-color-secondary-citrus)}.divide-fm-color-secondary-cocoa>:not([hidden])~:not([hidden]){border-color:var(--fm-color-secondary-cocoa)}.divide-fm-color-secondary-halite>:not([hidden])~:not([hidden]){border-color:var(--fm-color-secondary-halite)}.divide-fm-color-secondary-macaron>:not([hidden])~:not([hidden]){border-color:var(--fm-color-secondary-macaron)}.divide-fm-color-secondary-mint>:not([hidden])~:not([hidden]){border-color:var(--fm-color-secondary-mint)}.divide-fm-color-secondary-mustard>:not([hidden])~:not([hidden]){border-color:var(--fm-color-secondary-mustard)}.divide-fm-color-secondary-plum>:not([hidden])~:not([hidden]){border-color:var(--fm-color-secondary-plum)}.divide-fm-color-secondary-salmon>:not([hidden])~:not([hidden]){border-color:var(--fm-color-secondary-salmon)}.divide-fm-color-secondary-tuna>:not([hidden])~:not([hidden]){border-color:var(--fm-color-secondary-tuna)}.divide-fm-color-system-error-100>:not([hidden])~:not([hidden]){border-color:var(--fm-color-system-red-100)}.divide-fm-color-system-error-200>:not([hidden])~:not([hidden]){border-color:var(--fm-color-system-red-200)}.divide-fm-color-system-error-300>:not([hidden])~:not([hidden]){border-color:var(--fm-color-system-red-300)}.divide-fm-color-system-error-400>:not([hidden])~:not([hidden]){border-color:var(--fm-color-system-red-400)}.divide-fm-color-system-info-100>:not([hidden])~:not([hidden]){border-color:var(--fm-color-system-blue-100)}.divide-fm-color-system-info-200>:not([hidden])~:not([hidden]){border-color:var(--fm-color-system-blue-200)}.divide-fm-color-system-info-300>:not([hidden])~:not([hidden]){border-color:var(--fm-color-system-blue-300)}.divide-fm-color-system-info-400>:not([hidden])~:not([hidden]){border-color:var(--fm-color-system-blue-400)}.divide-fm-color-system-success-100>:not([hidden])~:not([hidden]){border-color:var(--fm-color-system-green-100)}.divide-fm-color-system-success-200>:not([hidden])~:not([hidden]){border-color:var(--fm-color-system-green-200)}.divide-fm-color-system-success-300>:not([hidden])~:not([hidden]){border-color:var(--fm-color-system-green-300)}.divide-fm-color-system-success-400>:not([hidden])~:not([hidden]){border-color:var(--fm-color-system-green-400)}.divide-fm-color-system-warning-100>:not([hidden])~:not([hidden]){border-color:var(--fm-color-system-orange-100)}.divide-fm-color-system-warning-200>:not([hidden])~:not([hidden]){border-color:var(--fm-color-system-orange-200)}.divide-fm-color-system-warning-300>:not([hidden])~:not([hidden]){border-color:var(--fm-color-system-orange-300)}.divide-fm-color-system-warning-400>:not([hidden])~:not([hidden]){border-color:var(--fm-color-system-orange-400)}.divide-fm-color-typo-disabled>:not([hidden])~:not([hidden]){border-color:var(--fm-color-neutral-gray-200)}.divide-fm-color-typo-error>:not([hidden])~:not([hidden]){border-color:var(--fm-color-system-red-400)}.divide-fm-color-typo-info>:not([hidden])~:not([hidden]){border-color:var(--fm-color-system-blue-300)}.divide-fm-color-typo-primary>:not([hidden])~:not([hidden]){border-color:var(--fm-color-neutral-gray-500)}.divide-fm-color-typo-secondary>:not([hidden])~:not([hidden]){border-color:var(--fm-color-neutral-gray-400)}.divide-fm-color-typo-success>:not([hidden])~:not([hidden]){border-color:var(--fm-color-system-green-300)}.divide-fm-color-typo-tertiary>:not([hidden])~:not([hidden]){border-color:var(--fm-color-neutral-gray-300)}.divide-fm-color-typo-warning>:not([hidden])~:not([hidden]){border-color:var(--fm-color-system-orange-300)}.divide-fm-color-typo-white>:not([hidden])~:not([hidden]){border-color:var(--fm-color-neutral-white)}.self-stretch{align-self:stretch}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-y-auto{overflow-y:auto}.overflow-y-hidden{overflow-y:hidden}.text-ellipsis{text-overflow:ellipsis}.whitespace-nowrap{white-space:nowrap}.break-all{word-break:break-all}.rounded{border-radius:.25rem}.rounded-\[100px\]{border-radius:100px}.rounded-\[2px\]{border-radius:2px}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:16px}.rounded-md{border-radius:8px}.rounded-sm{border-radius:4px}.rounded-xxxl{border-radius:360px}.rounded-b-\[24px\]{border-bottom-right-radius:24px;border-bottom-left-radius:24px}.border{border-width:1px}.border-0{border-width:0px}.border-2{border-width:2px}.border-b{border-bottom-width:1px}.border-b-2{border-bottom-width:2px}.border-l{border-left-width:1px}.border-r{border-right-width:1px}.border-t{border-top-width:1px}.border-dashed{border-style:dashed}.border-fm-color-neutral-black{border-color:var(--fm-color-neutral-gray-500)}.border-fm-color-neutral-gray-100{border-color:var(--fm-color-neutral-gray-100)}.border-fm-color-neutral-gray-200{border-color:var(--fm-color-neutral-gray-200)}.border-fm-color-neutral-gray-300{border-color:var(--fm-color-neutral-gray-300)}.border-fm-color-neutral-gray-400{border-color:var(--fm-color-neutral-gray-400)}.border-fm-color-neutral-white{border-color:var(--fm-color-neutral-white)}.border-fm-color-opacity-lg{border-color:var(--fm-color-opacity-lg)}.border-fm-color-opacity-md{border-color:var(--fm-color-opacity-md)}.border-fm-color-opacity-sm{border-color:var(--fm-color-opacity-sm)}.border-fm-color-overlay-background{border-color:var(--fm-color-overlay)}.border-fm-color-primary{border-color:var(--fm-color-primary)}.border-fm-color-secondary-blueberry{border-color:var(--fm-color-secondary-blueberry)}.border-fm-color-secondary-citrus{border-color:var(--fm-color-secondary-citrus)}.border-fm-color-secondary-cocoa{border-color:var(--fm-color-secondary-cocoa)}.border-fm-color-secondary-halite{border-color:var(--fm-color-secondary-halite)}.border-fm-color-secondary-macaron{border-color:var(--fm-color-secondary-macaron)}.border-fm-color-secondary-mint{border-color:var(--fm-color-secondary-mint)}.border-fm-color-secondary-mustard{border-color:var(--fm-color-secondary-mustard)}.border-fm-color-secondary-plum{border-color:var(--fm-color-secondary-plum)}.border-fm-color-secondary-salmon{border-color:var(--fm-color-secondary-salmon)}.border-fm-color-secondary-tuna{border-color:var(--fm-color-secondary-tuna)}.border-fm-color-system-error-100{border-color:var(--fm-color-system-red-100)}.border-fm-color-system-error-200{border-color:var(--fm-color-system-red-200)}.border-fm-color-system-error-300{border-color:var(--fm-color-system-red-300)}.border-fm-color-system-error-400{border-color:var(--fm-color-system-red-400)}.border-fm-color-system-info-100{border-color:var(--fm-color-system-blue-100)}.border-fm-color-system-info-200{border-color:var(--fm-color-system-blue-200)}.border-fm-color-system-info-300{border-color:var(--fm-color-system-blue-300)}.border-fm-color-system-info-400{border-color:var(--fm-color-system-blue-400)}.border-fm-color-system-success-100{border-color:var(--fm-color-system-green-100)}.border-fm-color-system-success-200{border-color:var(--fm-color-system-green-200)}.border-fm-color-system-success-300{border-color:var(--fm-color-system-green-300)}.border-fm-color-system-success-400{border-color:var(--fm-color-system-green-400)}.border-fm-color-system-warning-100{border-color:var(--fm-color-system-orange-100)}.border-fm-color-system-warning-200{border-color:var(--fm-color-system-orange-200)}.border-fm-color-system-warning-300{border-color:var(--fm-color-system-orange-300)}.border-fm-color-system-warning-400{border-color:var(--fm-color-system-orange-400)}.border-fm-color-typo-disabled{border-color:var(--fm-color-neutral-gray-200)}.border-fm-color-typo-error{border-color:var(--fm-color-system-red-400)}.border-fm-color-typo-info{border-color:var(--fm-color-system-blue-300)}.border-fm-color-typo-primary{border-color:var(--fm-color-neutral-gray-500)}.border-fm-color-typo-secondary{border-color:var(--fm-color-neutral-gray-400)}.border-fm-color-typo-success{border-color:var(--fm-color-system-green-300)}.border-fm-color-typo-tertiary{border-color:var(--fm-color-neutral-gray-300)}.border-fm-color-typo-warning{border-color:var(--fm-color-system-orange-300)}.border-fm-color-typo-white{border-color:var(--fm-color-neutral-white)}.border-x-fm-color-neutral-black{border-left-color:var(--fm-color-neutral-gray-500);border-right-color:var(--fm-color-neutral-gray-500)}.border-x-fm-color-neutral-gray-100{border-left-color:var(--fm-color-neutral-gray-100);border-right-color:var(--fm-color-neutral-gray-100)}.border-x-fm-color-neutral-gray-200{border-left-color:var(--fm-color-neutral-gray-200);border-right-color:var(--fm-color-neutral-gray-200)}.border-x-fm-color-neutral-gray-300{border-left-color:var(--fm-color-neutral-gray-300);border-right-color:var(--fm-color-neutral-gray-300)}.border-x-fm-color-neutral-gray-400{border-left-color:var(--fm-color-neutral-gray-400);border-right-color:var(--fm-color-neutral-gray-400)}.border-x-fm-color-neutral-white{border-left-color:var(--fm-color-neutral-white);border-right-color:var(--fm-color-neutral-white)}.border-x-fm-color-opacity-lg{border-left-color:var(--fm-color-opacity-lg);border-right-color:var(--fm-color-opacity-lg)}.border-x-fm-color-opacity-md{border-left-color:var(--fm-color-opacity-md);border-right-color:var(--fm-color-opacity-md)}.border-x-fm-color-opacity-sm{border-left-color:var(--fm-color-opacity-sm);border-right-color:var(--fm-color-opacity-sm)}.border-x-fm-color-overlay-background{border-left-color:var(--fm-color-overlay);border-right-color:var(--fm-color-overlay)}.border-x-fm-color-primary{border-left-color:var(--fm-color-primary);border-right-color:var(--fm-color-primary)}.border-x-fm-color-secondary-blueberry{border-left-color:var(--fm-color-secondary-blueberry);border-right-color:var(--fm-color-secondary-blueberry)}.border-x-fm-color-secondary-citrus{border-left-color:var(--fm-color-secondary-citrus);border-right-color:var(--fm-color-secondary-citrus)}.border-x-fm-color-secondary-cocoa{border-left-color:var(--fm-color-secondary-cocoa);border-right-color:var(--fm-color-secondary-cocoa)}.border-x-fm-color-secondary-halite{border-left-color:var(--fm-color-secondary-halite);border-right-color:var(--fm-color-secondary-halite)}.border-x-fm-color-secondary-macaron{border-left-color:var(--fm-color-secondary-macaron);border-right-color:var(--fm-color-secondary-macaron)}.border-x-fm-color-secondary-mint{border-left-color:var(--fm-color-secondary-mint);border-right-color:var(--fm-color-secondary-mint)}.border-x-fm-color-secondary-mustard{border-left-color:var(--fm-color-secondary-mustard);border-right-color:var(--fm-color-secondary-mustard)}.border-x-fm-color-secondary-plum{border-left-color:var(--fm-color-secondary-plum);border-right-color:var(--fm-color-secondary-plum)}.border-x-fm-color-secondary-salmon{border-left-color:var(--fm-color-secondary-salmon);border-right-color:var(--fm-color-secondary-salmon)}.border-x-fm-color-secondary-tuna{border-left-color:var(--fm-color-secondary-tuna);border-right-color:var(--fm-color-secondary-tuna)}.border-x-fm-color-system-error-100{border-left-color:var(--fm-color-system-red-100);border-right-color:var(--fm-color-system-red-100)}.border-x-fm-color-system-error-200{border-left-color:var(--fm-color-system-red-200);border-right-color:var(--fm-color-system-red-200)}.border-x-fm-color-system-error-300{border-left-color:var(--fm-color-system-red-300);border-right-color:var(--fm-color-system-red-300)}.border-x-fm-color-system-error-400{border-left-color:var(--fm-color-system-red-400);border-right-color:var(--fm-color-system-red-400)}.border-x-fm-color-system-info-100{border-left-color:var(--fm-color-system-blue-100);border-right-color:var(--fm-color-system-blue-100)}.border-x-fm-color-system-info-200{border-left-color:var(--fm-color-system-blue-200);border-right-color:var(--fm-color-system-blue-200)}.border-x-fm-color-system-info-300{border-left-color:var(--fm-color-system-blue-300);border-right-color:var(--fm-color-system-blue-300)}.border-x-fm-color-system-info-400{border-left-color:var(--fm-color-system-blue-400);border-right-color:var(--fm-color-system-blue-400)}.border-x-fm-color-system-success-100{border-left-color:var(--fm-color-system-green-100);border-right-color:var(--fm-color-system-green-100)}.border-x-fm-color-system-success-200{border-left-color:var(--fm-color-system-green-200);border-right-color:var(--fm-color-system-green-200)}.border-x-fm-color-system-success-300{border-left-color:var(--fm-color-system-green-300);border-right-color:var(--fm-color-system-green-300)}.border-x-fm-color-system-success-400{border-left-color:var(--fm-color-system-green-400);border-right-color:var(--fm-color-system-green-400)}.border-x-fm-color-system-warning-100{border-left-color:var(--fm-color-system-orange-100);border-right-color:var(--fm-color-system-orange-100)}.border-x-fm-color-system-warning-200{border-left-color:var(--fm-color-system-orange-200);border-right-color:var(--fm-color-system-orange-200)}.border-x-fm-color-system-warning-300{border-left-color:var(--fm-color-system-orange-300);border-right-color:var(--fm-color-system-orange-300)}.border-x-fm-color-system-warning-400{border-left-color:var(--fm-color-system-orange-400);border-right-color:var(--fm-color-system-orange-400)}.border-x-fm-color-typo-disabled{border-left-color:var(--fm-color-neutral-gray-200);border-right-color:var(--fm-color-neutral-gray-200)}.border-x-fm-color-typo-error{border-left-color:var(--fm-color-system-red-400);border-right-color:var(--fm-color-system-red-400)}.border-x-fm-color-typo-info{border-left-color:var(--fm-color-system-blue-300);border-right-color:var(--fm-color-system-blue-300)}.border-x-fm-color-typo-primary{border-left-color:var(--fm-color-neutral-gray-500);border-right-color:var(--fm-color-neutral-gray-500)}.border-x-fm-color-typo-secondary{border-left-color:var(--fm-color-neutral-gray-400);border-right-color:var(--fm-color-neutral-gray-400)}.border-x-fm-color-typo-success{border-left-color:var(--fm-color-system-green-300);border-right-color:var(--fm-color-system-green-300)}.border-x-fm-color-typo-tertiary{border-left-color:var(--fm-color-neutral-gray-300);border-right-color:var(--fm-color-neutral-gray-300)}.border-x-fm-color-typo-warning{border-left-color:var(--fm-color-system-orange-300);border-right-color:var(--fm-color-system-orange-300)}.border-x-fm-color-typo-white{border-left-color:var(--fm-color-neutral-white);border-right-color:var(--fm-color-neutral-white)}.border-y-fm-color-neutral-black{border-top-color:var(--fm-color-neutral-gray-500);border-bottom-color:var(--fm-color-neutral-gray-500)}.border-y-fm-color-neutral-gray-100{border-top-color:var(--fm-color-neutral-gray-100);border-bottom-color:var(--fm-color-neutral-gray-100)}.border-y-fm-color-neutral-gray-200{border-top-color:var(--fm-color-neutral-gray-200);border-bottom-color:var(--fm-color-neutral-gray-200)}.border-y-fm-color-neutral-gray-300{border-top-color:var(--fm-color-neutral-gray-300);border-bottom-color:var(--fm-color-neutral-gray-300)}.border-y-fm-color-neutral-gray-400{border-top-color:var(--fm-color-neutral-gray-400);border-bottom-color:var(--fm-color-neutral-gray-400)}.border-y-fm-color-neutral-white{border-top-color:var(--fm-color-neutral-white);border-bottom-color:var(--fm-color-neutral-white)}.border-y-fm-color-opacity-lg{border-top-color:var(--fm-color-opacity-lg);border-bottom-color:var(--fm-color-opacity-lg)}.border-y-fm-color-opacity-md{border-top-color:var(--fm-color-opacity-md);border-bottom-color:var(--fm-color-opacity-md)}.border-y-fm-color-opacity-sm{border-top-color:var(--fm-color-opacity-sm);border-bottom-color:var(--fm-color-opacity-sm)}.border-y-fm-color-overlay-background{border-top-color:var(--fm-color-overlay);border-bottom-color:var(--fm-color-overlay)}.border-y-fm-color-primary{border-top-color:var(--fm-color-primary);border-bottom-color:var(--fm-color-primary)}.border-y-fm-color-secondary-blueberry{border-top-color:var(--fm-color-secondary-blueberry);border-bottom-color:var(--fm-color-secondary-blueberry)}.border-y-fm-color-secondary-citrus{border-top-color:var(--fm-color-secondary-citrus);border-bottom-color:var(--fm-color-secondary-citrus)}.border-y-fm-color-secondary-cocoa{border-top-color:var(--fm-color-secondary-cocoa);border-bottom-color:var(--fm-color-secondary-cocoa)}.border-y-fm-color-secondary-halite{border-top-color:var(--fm-color-secondary-halite);border-bottom-color:var(--fm-color-secondary-halite)}.border-y-fm-color-secondary-macaron{border-top-color:var(--fm-color-secondary-macaron);border-bottom-color:var(--fm-color-secondary-macaron)}.border-y-fm-color-secondary-mint{border-top-color:var(--fm-color-secondary-mint);border-bottom-color:var(--fm-color-secondary-mint)}.border-y-fm-color-secondary-mustard{border-top-color:var(--fm-color-secondary-mustard);border-bottom-color:var(--fm-color-secondary-mustard)}.border-y-fm-color-secondary-plum{border-top-color:var(--fm-color-secondary-plum);border-bottom-color:var(--fm-color-secondary-plum)}.border-y-fm-color-secondary-salmon{border-top-color:var(--fm-color-secondary-salmon);border-bottom-color:var(--fm-color-secondary-salmon)}.border-y-fm-color-secondary-tuna{border-top-color:var(--fm-color-secondary-tuna);border-bottom-color:var(--fm-color-secondary-tuna)}.border-y-fm-color-system-error-100{border-top-color:var(--fm-color-system-red-100);border-bottom-color:var(--fm-color-system-red-100)}.border-y-fm-color-system-error-200{border-top-color:var(--fm-color-system-red-200);border-bottom-color:var(--fm-color-system-red-200)}.border-y-fm-color-system-error-300{border-top-color:var(--fm-color-system-red-300);border-bottom-color:var(--fm-color-system-red-300)}.border-y-fm-color-system-error-400{border-top-color:var(--fm-color-system-red-400);border-bottom-color:var(--fm-color-system-red-400)}.border-y-fm-color-system-info-100{border-top-color:var(--fm-color-system-blue-100);border-bottom-color:var(--fm-color-system-blue-100)}.border-y-fm-color-system-info-200{border-top-color:var(--fm-color-system-blue-200);border-bottom-color:var(--fm-color-system-blue-200)}.border-y-fm-color-system-info-300{border-top-color:var(--fm-color-system-blue-300);border-bottom-color:var(--fm-color-system-blue-300)}.border-y-fm-color-system-info-400{border-top-color:var(--fm-color-system-blue-400);border-bottom-color:var(--fm-color-system-blue-400)}.border-y-fm-color-system-success-100{border-top-color:var(--fm-color-system-green-100);border-bottom-color:var(--fm-color-system-green-100)}.border-y-fm-color-system-success-200{border-top-color:var(--fm-color-system-green-200);border-bottom-color:var(--fm-color-system-green-200)}.border-y-fm-color-system-success-300{border-top-color:var(--fm-color-system-green-300);border-bottom-color:var(--fm-color-system-green-300)}.border-y-fm-color-system-success-400{border-top-color:var(--fm-color-system-green-400);border-bottom-color:var(--fm-color-system-green-400)}.border-y-fm-color-system-warning-100{border-top-color:var(--fm-color-system-orange-100);border-bottom-color:var(--fm-color-system-orange-100)}.border-y-fm-color-system-warning-200{border-top-color:var(--fm-color-system-orange-200);border-bottom-color:var(--fm-color-system-orange-200)}.border-y-fm-color-system-warning-300{border-top-color:var(--fm-color-system-orange-300);border-bottom-color:var(--fm-color-system-orange-300)}.border-y-fm-color-system-warning-400{border-top-color:var(--fm-color-system-orange-400);border-bottom-color:var(--fm-color-system-orange-400)}.border-y-fm-color-typo-disabled{border-top-color:var(--fm-color-neutral-gray-200);border-bottom-color:var(--fm-color-neutral-gray-200)}.border-y-fm-color-typo-error{border-top-color:var(--fm-color-system-red-400);border-bottom-color:var(--fm-color-system-red-400)}.border-y-fm-color-typo-info{border-top-color:var(--fm-color-system-blue-300);border-bottom-color:var(--fm-color-system-blue-300)}.border-y-fm-color-typo-primary{border-top-color:var(--fm-color-neutral-gray-500);border-bottom-color:var(--fm-color-neutral-gray-500)}.border-y-fm-color-typo-secondary{border-top-color:var(--fm-color-neutral-gray-400);border-bottom-color:var(--fm-color-neutral-gray-400)}.border-y-fm-color-typo-success{border-top-color:var(--fm-color-system-green-300);border-bottom-color:var(--fm-color-system-green-300)}.border-y-fm-color-typo-tertiary{border-top-color:var(--fm-color-neutral-gray-300);border-bottom-color:var(--fm-color-neutral-gray-300)}.border-y-fm-color-typo-warning{border-top-color:var(--fm-color-system-orange-300);border-bottom-color:var(--fm-color-system-orange-300)}.border-y-fm-color-typo-white{border-top-color:var(--fm-color-neutral-white);border-bottom-color:var(--fm-color-neutral-white)}.border-b-fm-color-neutral-black{border-bottom-color:var(--fm-color-neutral-gray-500)}.border-b-fm-color-neutral-gray-100{border-bottom-color:var(--fm-color-neutral-gray-100)}.border-b-fm-color-neutral-gray-200{border-bottom-color:var(--fm-color-neutral-gray-200)}.border-b-fm-color-neutral-gray-300{border-bottom-color:var(--fm-color-neutral-gray-300)}.border-b-fm-color-neutral-gray-400{border-bottom-color:var(--fm-color-neutral-gray-400)}.border-b-fm-color-neutral-white{border-bottom-color:var(--fm-color-neutral-white)}.border-b-fm-color-opacity-lg{border-bottom-color:var(--fm-color-opacity-lg)}.border-b-fm-color-opacity-md{border-bottom-color:var(--fm-color-opacity-md)}.border-b-fm-color-opacity-sm{border-bottom-color:var(--fm-color-opacity-sm)}.border-b-fm-color-overlay-background{border-bottom-color:var(--fm-color-overlay)}.border-b-fm-color-primary{border-bottom-color:var(--fm-color-primary)}.border-b-fm-color-secondary-blueberry{border-bottom-color:var(--fm-color-secondary-blueberry)}.border-b-fm-color-secondary-citrus{border-bottom-color:var(--fm-color-secondary-citrus)}.border-b-fm-color-secondary-cocoa{border-bottom-color:var(--fm-color-secondary-cocoa)}.border-b-fm-color-secondary-halite{border-bottom-color:var(--fm-color-secondary-halite)}.border-b-fm-color-secondary-macaron{border-bottom-color:var(--fm-color-secondary-macaron)}.border-b-fm-color-secondary-mint{border-bottom-color:var(--fm-color-secondary-mint)}.border-b-fm-color-secondary-mustard{border-bottom-color:var(--fm-color-secondary-mustard)}.border-b-fm-color-secondary-plum{border-bottom-color:var(--fm-color-secondary-plum)}.border-b-fm-color-secondary-salmon{border-bottom-color:var(--fm-color-secondary-salmon)}.border-b-fm-color-secondary-tuna{border-bottom-color:var(--fm-color-secondary-tuna)}.border-b-fm-color-system-error-100{border-bottom-color:var(--fm-color-system-red-100)}.border-b-fm-color-system-error-200{border-bottom-color:var(--fm-color-system-red-200)}.border-b-fm-color-system-error-300{border-bottom-color:var(--fm-color-system-red-300)}.border-b-fm-color-system-error-400{border-bottom-color:var(--fm-color-system-red-400)}.border-b-fm-color-system-info-100{border-bottom-color:var(--fm-color-system-blue-100)}.border-b-fm-color-system-info-200{border-bottom-color:var(--fm-color-system-blue-200)}.border-b-fm-color-system-info-300{border-bottom-color:var(--fm-color-system-blue-300)}.border-b-fm-color-system-info-400{border-bottom-color:var(--fm-color-system-blue-400)}.border-b-fm-color-system-success-100{border-bottom-color:var(--fm-color-system-green-100)}.border-b-fm-color-system-success-200{border-bottom-color:var(--fm-color-system-green-200)}.border-b-fm-color-system-success-300{border-bottom-color:var(--fm-color-system-green-300)}.border-b-fm-color-system-success-400{border-bottom-color:var(--fm-color-system-green-400)}.border-b-fm-color-system-warning-100{border-bottom-color:var(--fm-color-system-orange-100)}.border-b-fm-color-system-warning-200{border-bottom-color:var(--fm-color-system-orange-200)}.border-b-fm-color-system-warning-300{border-bottom-color:var(--fm-color-system-orange-300)}.border-b-fm-color-system-warning-400{border-bottom-color:var(--fm-color-system-orange-400)}.border-b-fm-color-typo-disabled{border-bottom-color:var(--fm-color-neutral-gray-200)}.border-b-fm-color-typo-error{border-bottom-color:var(--fm-color-system-red-400)}.border-b-fm-color-typo-info{border-bottom-color:var(--fm-color-system-blue-300)}.border-b-fm-color-typo-primary{border-bottom-color:var(--fm-color-neutral-gray-500)}.border-b-fm-color-typo-secondary{border-bottom-color:var(--fm-color-neutral-gray-400)}.border-b-fm-color-typo-success{border-bottom-color:var(--fm-color-system-green-300)}.border-b-fm-color-typo-tertiary{border-bottom-color:var(--fm-color-neutral-gray-300)}.border-b-fm-color-typo-warning{border-bottom-color:var(--fm-color-system-orange-300)}.border-b-fm-color-typo-white{border-bottom-color:var(--fm-color-neutral-white)}.border-e-fm-color-neutral-black{border-inline-end-color:var(--fm-color-neutral-gray-500)}.border-e-fm-color-neutral-gray-100{border-inline-end-color:var(--fm-color-neutral-gray-100)}.border-e-fm-color-neutral-gray-200{border-inline-end-color:var(--fm-color-neutral-gray-200)}.border-e-fm-color-neutral-gray-300{border-inline-end-color:var(--fm-color-neutral-gray-300)}.border-e-fm-color-neutral-gray-400{border-inline-end-color:var(--fm-color-neutral-gray-400)}.border-e-fm-color-neutral-white{border-inline-end-color:var(--fm-color-neutral-white)}.border-e-fm-color-opacity-lg{border-inline-end-color:var(--fm-color-opacity-lg)}.border-e-fm-color-opacity-md{border-inline-end-color:var(--fm-color-opacity-md)}.border-e-fm-color-opacity-sm{border-inline-end-color:var(--fm-color-opacity-sm)}.border-e-fm-color-overlay-background{border-inline-end-color:var(--fm-color-overlay)}.border-e-fm-color-primary{border-inline-end-color:var(--fm-color-primary)}.border-e-fm-color-secondary-blueberry{border-inline-end-color:var(--fm-color-secondary-blueberry)}.border-e-fm-color-secondary-citrus{border-inline-end-color:var(--fm-color-secondary-citrus)}.border-e-fm-color-secondary-cocoa{border-inline-end-color:var(--fm-color-secondary-cocoa)}.border-e-fm-color-secondary-halite{border-inline-end-color:var(--fm-color-secondary-halite)}.border-e-fm-color-secondary-macaron{border-inline-end-color:var(--fm-color-secondary-macaron)}.border-e-fm-color-secondary-mint{border-inline-end-color:var(--fm-color-secondary-mint)}.border-e-fm-color-secondary-mustard{border-inline-end-color:var(--fm-color-secondary-mustard)}.border-e-fm-color-secondary-plum{border-inline-end-color:var(--fm-color-secondary-plum)}.border-e-fm-color-secondary-salmon{border-inline-end-color:var(--fm-color-secondary-salmon)}.border-e-fm-color-secondary-tuna{border-inline-end-color:var(--fm-color-secondary-tuna)}.border-e-fm-color-system-error-100{border-inline-end-color:var(--fm-color-system-red-100)}.border-e-fm-color-system-error-200{border-inline-end-color:var(--fm-color-system-red-200)}.border-e-fm-color-system-error-300{border-inline-end-color:var(--fm-color-system-red-300)}.border-e-fm-color-system-error-400{border-inline-end-color:var(--fm-color-system-red-400)}.border-e-fm-color-system-info-100{border-inline-end-color:var(--fm-color-system-blue-100)}.border-e-fm-color-system-info-200{border-inline-end-color:var(--fm-color-system-blue-200)}.border-e-fm-color-system-info-300{border-inline-end-color:var(--fm-color-system-blue-300)}.border-e-fm-color-system-info-400{border-inline-end-color:var(--fm-color-system-blue-400)}.border-e-fm-color-system-success-100{border-inline-end-color:var(--fm-color-system-green-100)}.border-e-fm-color-system-success-200{border-inline-end-color:var(--fm-color-system-green-200)}.border-e-fm-color-system-success-300{border-inline-end-color:var(--fm-color-system-green-300)}.border-e-fm-color-system-success-400{border-inline-end-color:var(--fm-color-system-green-400)}.border-e-fm-color-system-warning-100{border-inline-end-color:var(--fm-color-system-orange-100)}.border-e-fm-color-system-warning-200{border-inline-end-color:var(--fm-color-system-orange-200)}.border-e-fm-color-system-warning-300{border-inline-end-color:var(--fm-color-system-orange-300)}.border-e-fm-color-system-warning-400{border-inline-end-color:var(--fm-color-system-orange-400)}.border-e-fm-color-typo-disabled{border-inline-end-color:var(--fm-color-neutral-gray-200)}.border-e-fm-color-typo-error{border-inline-end-color:var(--fm-color-system-red-400)}.border-e-fm-color-typo-info{border-inline-end-color:var(--fm-color-system-blue-300)}.border-e-fm-color-typo-primary{border-inline-end-color:var(--fm-color-neutral-gray-500)}.border-e-fm-color-typo-secondary{border-inline-end-color:var(--fm-color-neutral-gray-400)}.border-e-fm-color-typo-success{border-inline-end-color:var(--fm-color-system-green-300)}.border-e-fm-color-typo-tertiary{border-inline-end-color:var(--fm-color-neutral-gray-300)}.border-e-fm-color-typo-warning{border-inline-end-color:var(--fm-color-system-orange-300)}.border-e-fm-color-typo-white{border-inline-end-color:var(--fm-color-neutral-white)}.border-l-fm-color-neutral-black{border-left-color:var(--fm-color-neutral-gray-500)}.border-l-fm-color-neutral-gray-100{border-left-color:var(--fm-color-neutral-gray-100)}.border-l-fm-color-neutral-gray-200{border-left-color:var(--fm-color-neutral-gray-200)}.border-l-fm-color-neutral-gray-300{border-left-color:var(--fm-color-neutral-gray-300)}.border-l-fm-color-neutral-gray-400{border-left-color:var(--fm-color-neutral-gray-400)}.border-l-fm-color-neutral-white{border-left-color:var(--fm-color-neutral-white)}.border-l-fm-color-opacity-lg{border-left-color:var(--fm-color-opacity-lg)}.border-l-fm-color-opacity-md{border-left-color:var(--fm-color-opacity-md)}.border-l-fm-color-opacity-sm{border-left-color:var(--fm-color-opacity-sm)}.border-l-fm-color-overlay-background{border-left-color:var(--fm-color-overlay)}.border-l-fm-color-primary{border-left-color:var(--fm-color-primary)}.border-l-fm-color-secondary-blueberry{border-left-color:var(--fm-color-secondary-blueberry)}.border-l-fm-color-secondary-citrus{border-left-color:var(--fm-color-secondary-citrus)}.border-l-fm-color-secondary-cocoa{border-left-color:var(--fm-color-secondary-cocoa)}.border-l-fm-color-secondary-halite{border-left-color:var(--fm-color-secondary-halite)}.border-l-fm-color-secondary-macaron{border-left-color:var(--fm-color-secondary-macaron)}.border-l-fm-color-secondary-mint{border-left-color:var(--fm-color-secondary-mint)}.border-l-fm-color-secondary-mustard{border-left-color:var(--fm-color-secondary-mustard)}.border-l-fm-color-secondary-plum{border-left-color:var(--fm-color-secondary-plum)}.border-l-fm-color-secondary-salmon{border-left-color:var(--fm-color-secondary-salmon)}.border-l-fm-color-secondary-tuna{border-left-color:var(--fm-color-secondary-tuna)}.border-l-fm-color-system-error-100{border-left-color:var(--fm-color-system-red-100)}.border-l-fm-color-system-error-200{border-left-color:var(--fm-color-system-red-200)}.border-l-fm-color-system-error-300{border-left-color:var(--fm-color-system-red-300)}.border-l-fm-color-system-error-400{border-left-color:var(--fm-color-system-red-400)}.border-l-fm-color-system-info-100{border-left-color:var(--fm-color-system-blue-100)}.border-l-fm-color-system-info-200{border-left-color:var(--fm-color-system-blue-200)}.border-l-fm-color-system-info-300{border-left-color:var(--fm-color-system-blue-300)}.border-l-fm-color-system-info-400{border-left-color:var(--fm-color-system-blue-400)}.border-l-fm-color-system-success-100{border-left-color:var(--fm-color-system-green-100)}.border-l-fm-color-system-success-200{border-left-color:var(--fm-color-system-green-200)}.border-l-fm-color-system-success-300{border-left-color:var(--fm-color-system-green-300)}.border-l-fm-color-system-success-400{border-left-color:var(--fm-color-system-green-400)}.border-l-fm-color-system-warning-100{border-left-color:var(--fm-color-system-orange-100)}.border-l-fm-color-system-warning-200{border-left-color:var(--fm-color-system-orange-200)}.border-l-fm-color-system-warning-300{border-left-color:var(--fm-color-system-orange-300)}.border-l-fm-color-system-warning-400{border-left-color:var(--fm-color-system-orange-400)}.border-l-fm-color-typo-disabled{border-left-color:var(--fm-color-neutral-gray-200)}.border-l-fm-color-typo-error{border-left-color:var(--fm-color-system-red-400)}.border-l-fm-color-typo-info{border-left-color:var(--fm-color-system-blue-300)}.border-l-fm-color-typo-primary{border-left-color:var(--fm-color-neutral-gray-500)}.border-l-fm-color-typo-secondary{border-left-color:var(--fm-color-neutral-gray-400)}.border-l-fm-color-typo-success{border-left-color:var(--fm-color-system-green-300)}.border-l-fm-color-typo-tertiary{border-left-color:var(--fm-color-neutral-gray-300)}.border-l-fm-color-typo-warning{border-left-color:var(--fm-color-system-orange-300)}.border-l-fm-color-typo-white{border-left-color:var(--fm-color-neutral-white)}.border-r-fm-color-neutral-black{border-right-color:var(--fm-color-neutral-gray-500)}.border-r-fm-color-neutral-gray-100{border-right-color:var(--fm-color-neutral-gray-100)}.border-r-fm-color-neutral-gray-200{border-right-color:var(--fm-color-neutral-gray-200)}.border-r-fm-color-neutral-gray-300{border-right-color:var(--fm-color-neutral-gray-300)}.border-r-fm-color-neutral-gray-400{border-right-color:var(--fm-color-neutral-gray-400)}.border-r-fm-color-neutral-white{border-right-color:var(--fm-color-neutral-white)}.border-r-fm-color-opacity-lg{border-right-color:var(--fm-color-opacity-lg)}.border-r-fm-color-opacity-md{border-right-color:var(--fm-color-opacity-md)}.border-r-fm-color-opacity-sm{border-right-color:var(--fm-color-opacity-sm)}.border-r-fm-color-overlay-background{border-right-color:var(--fm-color-overlay)}.border-r-fm-color-primary{border-right-color:var(--fm-color-primary)}.border-r-fm-color-secondary-blueberry{border-right-color:var(--fm-color-secondary-blueberry)}.border-r-fm-color-secondary-citrus{border-right-color:var(--fm-color-secondary-citrus)}.border-r-fm-color-secondary-cocoa{border-right-color:var(--fm-color-secondary-cocoa)}.border-r-fm-color-secondary-halite{border-right-color:var(--fm-color-secondary-halite)}.border-r-fm-color-secondary-macaron{border-right-color:var(--fm-color-secondary-macaron)}.border-r-fm-color-secondary-mint{border-right-color:var(--fm-color-secondary-mint)}.border-r-fm-color-secondary-mustard{border-right-color:var(--fm-color-secondary-mustard)}.border-r-fm-color-secondary-plum{border-right-color:var(--fm-color-secondary-plum)}.border-r-fm-color-secondary-salmon{border-right-color:var(--fm-color-secondary-salmon)}.border-r-fm-color-secondary-tuna{border-right-color:var(--fm-color-secondary-tuna)}.border-r-fm-color-system-error-100{border-right-color:var(--fm-color-system-red-100)}.border-r-fm-color-system-error-200{border-right-color:var(--fm-color-system-red-200)}.border-r-fm-color-system-error-300{border-right-color:var(--fm-color-system-red-300)}.border-r-fm-color-system-error-400{border-right-color:var(--fm-color-system-red-400)}.border-r-fm-color-system-info-100{border-right-color:var(--fm-color-system-blue-100)}.border-r-fm-color-system-info-200{border-right-color:var(--fm-color-system-blue-200)}.border-r-fm-color-system-info-300{border-right-color:var(--fm-color-system-blue-300)}.border-r-fm-color-system-info-400{border-right-color:var(--fm-color-system-blue-400)}.border-r-fm-color-system-success-100{border-right-color:var(--fm-color-system-green-100)}.border-r-fm-color-system-success-200{border-right-color:var(--fm-color-system-green-200)}.border-r-fm-color-system-success-300{border-right-color:var(--fm-color-system-green-300)}.border-r-fm-color-system-success-400{border-right-color:var(--fm-color-system-green-400)}.border-r-fm-color-system-warning-100{border-right-color:var(--fm-color-system-orange-100)}.border-r-fm-color-system-warning-200{border-right-color:var(--fm-color-system-orange-200)}.border-r-fm-color-system-warning-300{border-right-color:var(--fm-color-system-orange-300)}.border-r-fm-color-system-warning-400{border-right-color:var(--fm-color-system-orange-400)}.border-r-fm-color-typo-disabled{border-right-color:var(--fm-color-neutral-gray-200)}.border-r-fm-color-typo-error{border-right-color:var(--fm-color-system-red-400)}.border-r-fm-color-typo-info{border-right-color:var(--fm-color-system-blue-300)}.border-r-fm-color-typo-primary{border-right-color:var(--fm-color-neutral-gray-500)}.border-r-fm-color-typo-secondary{border-right-color:var(--fm-color-neutral-gray-400)}.border-r-fm-color-typo-success{border-right-color:var(--fm-color-system-green-300)}.border-r-fm-color-typo-tertiary{border-right-color:var(--fm-color-neutral-gray-300)}.border-r-fm-color-typo-warning{border-right-color:var(--fm-color-system-orange-300)}.border-r-fm-color-typo-white{border-right-color:var(--fm-color-neutral-white)}.border-s-fm-color-neutral-black{border-inline-start-color:var(--fm-color-neutral-gray-500)}.border-s-fm-color-neutral-gray-100{border-inline-start-color:var(--fm-color-neutral-gray-100)}.border-s-fm-color-neutral-gray-200{border-inline-start-color:var(--fm-color-neutral-gray-200)}.border-s-fm-color-neutral-gray-300{border-inline-start-color:var(--fm-color-neutral-gray-300)}.border-s-fm-color-neutral-gray-400{border-inline-start-color:var(--fm-color-neutral-gray-400)}.border-s-fm-color-neutral-white{border-inline-start-color:var(--fm-color-neutral-white)}.border-s-fm-color-opacity-lg{border-inline-start-color:var(--fm-color-opacity-lg)}.border-s-fm-color-opacity-md{border-inline-start-color:var(--fm-color-opacity-md)}.border-s-fm-color-opacity-sm{border-inline-start-color:var(--fm-color-opacity-sm)}.border-s-fm-color-overlay-background{border-inline-start-color:var(--fm-color-overlay)}.border-s-fm-color-primary{border-inline-start-color:var(--fm-color-primary)}.border-s-fm-color-secondary-blueberry{border-inline-start-color:var(--fm-color-secondary-blueberry)}.border-s-fm-color-secondary-citrus{border-inline-start-color:var(--fm-color-secondary-citrus)}.border-s-fm-color-secondary-cocoa{border-inline-start-color:var(--fm-color-secondary-cocoa)}.border-s-fm-color-secondary-halite{border-inline-start-color:var(--fm-color-secondary-halite)}.border-s-fm-color-secondary-macaron{border-inline-start-color:var(--fm-color-secondary-macaron)}.border-s-fm-color-secondary-mint{border-inline-start-color:var(--fm-color-secondary-mint)}.border-s-fm-color-secondary-mustard{border-inline-start-color:var(--fm-color-secondary-mustard)}.border-s-fm-color-secondary-plum{border-inline-start-color:var(--fm-color-secondary-plum)}.border-s-fm-color-secondary-salmon{border-inline-start-color:var(--fm-color-secondary-salmon)}.border-s-fm-color-secondary-tuna{border-inline-start-color:var(--fm-color-secondary-tuna)}.border-s-fm-color-system-error-100{border-inline-start-color:var(--fm-color-system-red-100)}.border-s-fm-color-system-error-200{border-inline-start-color:var(--fm-color-system-red-200)}.border-s-fm-color-system-error-300{border-inline-start-color:var(--fm-color-system-red-300)}.border-s-fm-color-system-error-400{border-inline-start-color:var(--fm-color-system-red-400)}.border-s-fm-color-system-info-100{border-inline-start-color:var(--fm-color-system-blue-100)}.border-s-fm-color-system-info-200{border-inline-start-color:var(--fm-color-system-blue-200)}.border-s-fm-color-system-info-300{border-inline-start-color:var(--fm-color-system-blue-300)}.border-s-fm-color-system-info-400{border-inline-start-color:var(--fm-color-system-blue-400)}.border-s-fm-color-system-success-100{border-inline-start-color:var(--fm-color-system-green-100)}.border-s-fm-color-system-success-200{border-inline-start-color:var(--fm-color-system-green-200)}.border-s-fm-color-system-success-300{border-inline-start-color:var(--fm-color-system-green-300)}.border-s-fm-color-system-success-400{border-inline-start-color:var(--fm-color-system-green-400)}.border-s-fm-color-system-warning-100{border-inline-start-color:var(--fm-color-system-orange-100)}.border-s-fm-color-system-warning-200{border-inline-start-color:var(--fm-color-system-orange-200)}.border-s-fm-color-system-warning-300{border-inline-start-color:var(--fm-color-system-orange-300)}.border-s-fm-color-system-warning-400{border-inline-start-color:var(--fm-color-system-orange-400)}.border-s-fm-color-typo-disabled{border-inline-start-color:var(--fm-color-neutral-gray-200)}.border-s-fm-color-typo-error{border-inline-start-color:var(--fm-color-system-red-400)}.border-s-fm-color-typo-info{border-inline-start-color:var(--fm-color-system-blue-300)}.border-s-fm-color-typo-primary{border-inline-start-color:var(--fm-color-neutral-gray-500)}.border-s-fm-color-typo-secondary{border-inline-start-color:var(--fm-color-neutral-gray-400)}.border-s-fm-color-typo-success{border-inline-start-color:var(--fm-color-system-green-300)}.border-s-fm-color-typo-tertiary{border-inline-start-color:var(--fm-color-neutral-gray-300)}.border-s-fm-color-typo-warning{border-inline-start-color:var(--fm-color-system-orange-300)}.border-s-fm-color-typo-white{border-inline-start-color:var(--fm-color-neutral-white)}.border-t-fm-color-neutral-black{border-top-color:var(--fm-color-neutral-gray-500)}.border-t-fm-color-neutral-gray-100{border-top-color:var(--fm-color-neutral-gray-100)}.border-t-fm-color-neutral-gray-200{border-top-color:var(--fm-color-neutral-gray-200)}.border-t-fm-color-neutral-gray-300{border-top-color:var(--fm-color-neutral-gray-300)}.border-t-fm-color-neutral-gray-400{border-top-color:var(--fm-color-neutral-gray-400)}.border-t-fm-color-neutral-white{border-top-color:var(--fm-color-neutral-white)}.border-t-fm-color-opacity-lg{border-top-color:var(--fm-color-opacity-lg)}.border-t-fm-color-opacity-md{border-top-color:var(--fm-color-opacity-md)}.border-t-fm-color-opacity-sm{border-top-color:var(--fm-color-opacity-sm)}.border-t-fm-color-overlay-background{border-top-color:var(--fm-color-overlay)}.border-t-fm-color-primary{border-top-color:var(--fm-color-primary)}.border-t-fm-color-secondary-blueberry{border-top-color:var(--fm-color-secondary-blueberry)}.border-t-fm-color-secondary-citrus{border-top-color:var(--fm-color-secondary-citrus)}.border-t-fm-color-secondary-cocoa{border-top-color:var(--fm-color-secondary-cocoa)}.border-t-fm-color-secondary-halite{border-top-color:var(--fm-color-secondary-halite)}.border-t-fm-color-secondary-macaron{border-top-color:var(--fm-color-secondary-macaron)}.border-t-fm-color-secondary-mint{border-top-color:var(--fm-color-secondary-mint)}.border-t-fm-color-secondary-mustard{border-top-color:var(--fm-color-secondary-mustard)}.border-t-fm-color-secondary-plum{border-top-color:var(--fm-color-secondary-plum)}.border-t-fm-color-secondary-salmon{border-top-color:var(--fm-color-secondary-salmon)}.border-t-fm-color-secondary-tuna{border-top-color:var(--fm-color-secondary-tuna)}.border-t-fm-color-system-error-100{border-top-color:var(--fm-color-system-red-100)}.border-t-fm-color-system-error-200{border-top-color:var(--fm-color-system-red-200)}.border-t-fm-color-system-error-300{border-top-color:var(--fm-color-system-red-300)}.border-t-fm-color-system-error-400{border-top-color:var(--fm-color-system-red-400)}.border-t-fm-color-system-info-100{border-top-color:var(--fm-color-system-blue-100)}.border-t-fm-color-system-info-200{border-top-color:var(--fm-color-system-blue-200)}.border-t-fm-color-system-info-300{border-top-color:var(--fm-color-system-blue-300)}.border-t-fm-color-system-info-400{border-top-color:var(--fm-color-system-blue-400)}.border-t-fm-color-system-success-100{border-top-color:var(--fm-color-system-green-100)}.border-t-fm-color-system-success-200{border-top-color:var(--fm-color-system-green-200)}.border-t-fm-color-system-success-300{border-top-color:var(--fm-color-system-green-300)}.border-t-fm-color-system-success-400{border-top-color:var(--fm-color-system-green-400)}.border-t-fm-color-system-warning-100{border-top-color:var(--fm-color-system-orange-100)}.border-t-fm-color-system-warning-200{border-top-color:var(--fm-color-system-orange-200)}.border-t-fm-color-system-warning-300{border-top-color:var(--fm-color-system-orange-300)}.border-t-fm-color-system-warning-400{border-top-color:var(--fm-color-system-orange-400)}.border-t-fm-color-typo-disabled{border-top-color:var(--fm-color-neutral-gray-200)}.border-t-fm-color-typo-error{border-top-color:var(--fm-color-system-red-400)}.border-t-fm-color-typo-info{border-top-color:var(--fm-color-system-blue-300)}.border-t-fm-color-typo-primary{border-top-color:var(--fm-color-neutral-gray-500)}.border-t-fm-color-typo-secondary{border-top-color:var(--fm-color-neutral-gray-400)}.border-t-fm-color-typo-success{border-top-color:var(--fm-color-system-green-300)}.border-t-fm-color-typo-tertiary{border-top-color:var(--fm-color-neutral-gray-300)}.border-t-fm-color-typo-warning{border-top-color:var(--fm-color-system-orange-300)}.border-t-fm-color-typo-white{border-top-color:var(--fm-color-neutral-white)}.bg-fm-color-neutral-black{background-color:var(--fm-color-neutral-gray-500)}.bg-fm-color-neutral-gray-100{background-color:var(--fm-color-neutral-gray-100)}.bg-fm-color-neutral-gray-200{background-color:var(--fm-color-neutral-gray-200)}.bg-fm-color-neutral-gray-300{background-color:var(--fm-color-neutral-gray-300)}.bg-fm-color-neutral-gray-400{background-color:var(--fm-color-neutral-gray-400)}.bg-fm-color-neutral-white{background-color:var(--fm-color-neutral-white)}.bg-fm-color-opacity-lg{background-color:var(--fm-color-opacity-lg)}.bg-fm-color-opacity-md{background-color:var(--fm-color-opacity-md)}.bg-fm-color-opacity-sm{background-color:var(--fm-color-opacity-sm)}.bg-fm-color-overlay-background{background-color:var(--fm-color-overlay)}.bg-fm-color-primary{background-color:var(--fm-color-primary)}.bg-fm-color-secondary-blueberry{background-color:var(--fm-color-secondary-blueberry)}.bg-fm-color-secondary-citrus{background-color:var(--fm-color-secondary-citrus)}.bg-fm-color-secondary-cocoa{background-color:var(--fm-color-secondary-cocoa)}.bg-fm-color-secondary-halite{background-color:var(--fm-color-secondary-halite)}.bg-fm-color-secondary-macaron{background-color:var(--fm-color-secondary-macaron)}.bg-fm-color-secondary-mint{background-color:var(--fm-color-secondary-mint)}.bg-fm-color-secondary-mustard{background-color:var(--fm-color-secondary-mustard)}.bg-fm-color-secondary-plum{background-color:var(--fm-color-secondary-plum)}.bg-fm-color-secondary-salmon{background-color:var(--fm-color-secondary-salmon)}.bg-fm-color-secondary-tuna{background-color:var(--fm-color-secondary-tuna)}.bg-fm-color-system-error-100{background-color:var(--fm-color-system-red-100)}.bg-fm-color-system-error-200{background-color:var(--fm-color-system-red-200)}.bg-fm-color-system-error-300{background-color:var(--fm-color-system-red-300)}.bg-fm-color-system-error-400{background-color:var(--fm-color-system-red-400)}.bg-fm-color-system-info-100{background-color:var(--fm-color-system-blue-100)}.bg-fm-color-system-info-200{background-color:var(--fm-color-system-blue-200)}.bg-fm-color-system-info-300{background-color:var(--fm-color-system-blue-300)}.bg-fm-color-system-info-400{background-color:var(--fm-color-system-blue-400)}.bg-fm-color-system-success-100{background-color:var(--fm-color-system-green-100)}.bg-fm-color-system-success-200{background-color:var(--fm-color-system-green-200)}.bg-fm-color-system-success-300{background-color:var(--fm-color-system-green-300)}.bg-fm-color-system-success-400{background-color:var(--fm-color-system-green-400)}.bg-fm-color-system-warning-100{background-color:var(--fm-color-system-orange-100)}.bg-fm-color-system-warning-200{background-color:var(--fm-color-system-orange-200)}.bg-fm-color-system-warning-300{background-color:var(--fm-color-system-orange-300)}.bg-fm-color-system-warning-400{background-color:var(--fm-color-system-orange-400)}.bg-fm-color-typo-disabled{background-color:var(--fm-color-neutral-gray-200)}.bg-fm-color-typo-error{background-color:var(--fm-color-system-red-400)}.bg-fm-color-typo-info{background-color:var(--fm-color-system-blue-300)}.bg-fm-color-typo-primary{background-color:var(--fm-color-neutral-gray-500)}.bg-fm-color-typo-secondary{background-color:var(--fm-color-neutral-gray-400)}.bg-fm-color-typo-success{background-color:var(--fm-color-system-green-300)}.bg-fm-color-typo-tertiary{background-color:var(--fm-color-neutral-gray-300)}.bg-fm-color-typo-warning{background-color:var(--fm-color-system-orange-300)}.bg-fm-color-typo-white{background-color:var(--fm-color-neutral-white)}.bg-transparent{background-color:transparent}.bg-white{--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.bg-gradient-to-b{background-image:linear-gradient(to bottom,var(--tw-gradient-stops))}.bg-gradient-to-t{background-image:linear-gradient(to top,var(--tw-gradient-stops))}.from-\[\#1C1C1E14\]{--tw-gradient-from: #1C1C1E14 var(--tw-gradient-from-position);--tw-gradient-to: rgb(28 28 30 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-fm-color-neutral-black{--tw-gradient-from: var(--fm-color-neutral-gray-500) var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-fm-color-neutral-gray-100{--tw-gradient-from: var(--fm-color-neutral-gray-100) var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-fm-color-neutral-gray-200{--tw-gradient-from: var(--fm-color-neutral-gray-200) var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-fm-color-neutral-gray-300{--tw-gradient-from: var(--fm-color-neutral-gray-300) var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-fm-color-neutral-gray-400{--tw-gradient-from: var(--fm-color-neutral-gray-400) var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-fm-color-neutral-white{--tw-gradient-from: var(--fm-color-neutral-white) var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-fm-color-opacity-lg{--tw-gradient-from: var(--fm-color-opacity-lg) var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-fm-color-opacity-md{--tw-gradient-from: var(--fm-color-opacity-md) var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-fm-color-opacity-sm{--tw-gradient-from: var(--fm-color-opacity-sm) var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-fm-color-overlay-background{--tw-gradient-from: var(--fm-color-overlay) var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-fm-color-primary{--tw-gradient-from: var(--fm-color-primary) var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-fm-color-secondary-blueberry{--tw-gradient-from: var(--fm-color-secondary-blueberry) var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-fm-color-secondary-citrus{--tw-gradient-from: var(--fm-color-secondary-citrus) var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-fm-color-secondary-cocoa{--tw-gradient-from: var(--fm-color-secondary-cocoa) var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-fm-color-secondary-halite{--tw-gradient-from: var(--fm-color-secondary-halite) var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-fm-color-secondary-macaron{--tw-gradient-from: var(--fm-color-secondary-macaron) var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-fm-color-secondary-mint{--tw-gradient-from: var(--fm-color-secondary-mint) var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-fm-color-secondary-mustard{--tw-gradient-from: var(--fm-color-secondary-mustard) var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-fm-color-secondary-plum{--tw-gradient-from: var(--fm-color-secondary-plum) var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-fm-color-secondary-salmon{--tw-gradient-from: var(--fm-color-secondary-salmon) var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-fm-color-secondary-tuna{--tw-gradient-from: var(--fm-color-secondary-tuna) var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-fm-color-system-error-100{--tw-gradient-from: var(--fm-color-system-red-100) var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-fm-color-system-error-200{--tw-gradient-from: var(--fm-color-system-red-200) var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-fm-color-system-error-300{--tw-gradient-from: var(--fm-color-system-red-300) var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-fm-color-system-error-400{--tw-gradient-from: var(--fm-color-system-red-400) var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-fm-color-system-info-100{--tw-gradient-from: var(--fm-color-system-blue-100) var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-fm-color-system-info-200{--tw-gradient-from: var(--fm-color-system-blue-200) var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-fm-color-system-info-300{--tw-gradient-from: var(--fm-color-system-blue-300) var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-fm-color-system-info-400{--tw-gradient-from: var(--fm-color-system-blue-400) var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-fm-color-system-success-100{--tw-gradient-from: var(--fm-color-system-green-100) var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-fm-color-system-success-200{--tw-gradient-from: var(--fm-color-system-green-200) var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-fm-color-system-success-300{--tw-gradient-from: var(--fm-color-system-green-300) var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-fm-color-system-success-400{--tw-gradient-from: var(--fm-color-system-green-400) var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-fm-color-system-warning-100{--tw-gradient-from: var(--fm-color-system-orange-100) var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-fm-color-system-warning-200{--tw-gradient-from: var(--fm-color-system-orange-200) var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-fm-color-system-warning-300{--tw-gradient-from: var(--fm-color-system-orange-300) var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-fm-color-system-warning-400{--tw-gradient-from: var(--fm-color-system-orange-400) var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-fm-color-typo-disabled{--tw-gradient-from: var(--fm-color-neutral-gray-200) var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-fm-color-typo-error{--tw-gradient-from: var(--fm-color-system-red-400) var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-fm-color-typo-info{--tw-gradient-from: var(--fm-color-system-blue-300) var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-fm-color-typo-primary{--tw-gradient-from: var(--fm-color-neutral-gray-500) var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-fm-color-typo-secondary{--tw-gradient-from: var(--fm-color-neutral-gray-400) var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-fm-color-typo-success{--tw-gradient-from: var(--fm-color-system-green-300) var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-fm-color-typo-tertiary{--tw-gradient-from: var(--fm-color-neutral-gray-300) var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-fm-color-typo-warning{--tw-gradient-from: var(--fm-color-system-orange-300) var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-fm-color-typo-white{--tw-gradient-from: var(--fm-color-neutral-white) var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.via-fm-color-neutral-black{--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--fm-color-neutral-gray-500) var(--tw-gradient-via-position), var(--tw-gradient-to)}.via-fm-color-neutral-gray-100{--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--fm-color-neutral-gray-100) var(--tw-gradient-via-position), var(--tw-gradient-to)}.via-fm-color-neutral-gray-200{--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--fm-color-neutral-gray-200) var(--tw-gradient-via-position), var(--tw-gradient-to)}.via-fm-color-neutral-gray-300{--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--fm-color-neutral-gray-300) var(--tw-gradient-via-position), var(--tw-gradient-to)}.via-fm-color-neutral-gray-400{--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--fm-color-neutral-gray-400) var(--tw-gradient-via-position), var(--tw-gradient-to)}.via-fm-color-neutral-white{--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--fm-color-neutral-white) var(--tw-gradient-via-position), var(--tw-gradient-to)}.via-fm-color-opacity-lg{--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--fm-color-opacity-lg) var(--tw-gradient-via-position), var(--tw-gradient-to)}.via-fm-color-opacity-md{--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--fm-color-opacity-md) var(--tw-gradient-via-position), var(--tw-gradient-to)}.via-fm-color-opacity-sm{--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--fm-color-opacity-sm) var(--tw-gradient-via-position), var(--tw-gradient-to)}.via-fm-color-overlay-background{--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--fm-color-overlay) var(--tw-gradient-via-position), var(--tw-gradient-to)}.via-fm-color-primary{--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--fm-color-primary) var(--tw-gradient-via-position), var(--tw-gradient-to)}.via-fm-color-secondary-blueberry{--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--fm-color-secondary-blueberry) var(--tw-gradient-via-position), var(--tw-gradient-to)}.via-fm-color-secondary-citrus{--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--fm-color-secondary-citrus) var(--tw-gradient-via-position), var(--tw-gradient-to)}.via-fm-color-secondary-cocoa{--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--fm-color-secondary-cocoa) var(--tw-gradient-via-position), var(--tw-gradient-to)}.via-fm-color-secondary-halite{--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--fm-color-secondary-halite) var(--tw-gradient-via-position), var(--tw-gradient-to)}.via-fm-color-secondary-macaron{--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--fm-color-secondary-macaron) var(--tw-gradient-via-position), var(--tw-gradient-to)}.via-fm-color-secondary-mint{--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--fm-color-secondary-mint) var(--tw-gradient-via-position), var(--tw-gradient-to)}.via-fm-color-secondary-mustard{--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--fm-color-secondary-mustard) var(--tw-gradient-via-position), var(--tw-gradient-to)}.via-fm-color-secondary-plum{--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--fm-color-secondary-plum) var(--tw-gradient-via-position), var(--tw-gradient-to)}.via-fm-color-secondary-salmon{--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--fm-color-secondary-salmon) var(--tw-gradient-via-position), var(--tw-gradient-to)}.via-fm-color-secondary-tuna{--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--fm-color-secondary-tuna) var(--tw-gradient-via-position), var(--tw-gradient-to)}.via-fm-color-system-error-100{--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--fm-color-system-red-100) var(--tw-gradient-via-position), var(--tw-gradient-to)}.via-fm-color-system-error-200{--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--fm-color-system-red-200) var(--tw-gradient-via-position), var(--tw-gradient-to)}.via-fm-color-system-error-300{--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--fm-color-system-red-300) var(--tw-gradient-via-position), var(--tw-gradient-to)}.via-fm-color-system-error-400{--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--fm-color-system-red-400) var(--tw-gradient-via-position), var(--tw-gradient-to)}.via-fm-color-system-info-100{--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--fm-color-system-blue-100) var(--tw-gradient-via-position), var(--tw-gradient-to)}.via-fm-color-system-info-200{--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--fm-color-system-blue-200) var(--tw-gradient-via-position), var(--tw-gradient-to)}.via-fm-color-system-info-300{--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--fm-color-system-blue-300) var(--tw-gradient-via-position), var(--tw-gradient-to)}.via-fm-color-system-info-400{--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--fm-color-system-blue-400) var(--tw-gradient-via-position), var(--tw-gradient-to)}.via-fm-color-system-success-100{--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--fm-color-system-green-100) var(--tw-gradient-via-position), var(--tw-gradient-to)}.via-fm-color-system-success-200{--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--fm-color-system-green-200) var(--tw-gradient-via-position), var(--tw-gradient-to)}.via-fm-color-system-success-300{--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--fm-color-system-green-300) var(--tw-gradient-via-position), var(--tw-gradient-to)}.via-fm-color-system-success-400{--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--fm-color-system-green-400) var(--tw-gradient-via-position), var(--tw-gradient-to)}.via-fm-color-system-warning-100{--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--fm-color-system-orange-100) var(--tw-gradient-via-position), var(--tw-gradient-to)}.via-fm-color-system-warning-200{--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--fm-color-system-orange-200) var(--tw-gradient-via-position), var(--tw-gradient-to)}.via-fm-color-system-warning-300{--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--fm-color-system-orange-300) var(--tw-gradient-via-position), var(--tw-gradient-to)}.via-fm-color-system-warning-400{--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--fm-color-system-orange-400) var(--tw-gradient-via-position), var(--tw-gradient-to)}.via-fm-color-typo-disabled{--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--fm-color-neutral-gray-200) var(--tw-gradient-via-position), var(--tw-gradient-to)}.via-fm-color-typo-error{--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--fm-color-system-red-400) var(--tw-gradient-via-position), var(--tw-gradient-to)}.via-fm-color-typo-info{--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--fm-color-system-blue-300) var(--tw-gradient-via-position), var(--tw-gradient-to)}.via-fm-color-typo-primary{--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--fm-color-neutral-gray-500) var(--tw-gradient-via-position), var(--tw-gradient-to)}.via-fm-color-typo-secondary{--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--fm-color-neutral-gray-400) var(--tw-gradient-via-position), var(--tw-gradient-to)}.via-fm-color-typo-success{--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--fm-color-system-green-300) var(--tw-gradient-via-position), var(--tw-gradient-to)}.via-fm-color-typo-tertiary{--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--fm-color-neutral-gray-300) var(--tw-gradient-via-position), var(--tw-gradient-to)}.via-fm-color-typo-warning{--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--fm-color-system-orange-300) var(--tw-gradient-via-position), var(--tw-gradient-to)}.via-fm-color-typo-white{--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--fm-color-neutral-white) var(--tw-gradient-via-position), var(--tw-gradient-to)}.to-fm-color-neutral-black{--tw-gradient-to: var(--fm-color-neutral-gray-500) var(--tw-gradient-to-position)}.to-fm-color-neutral-gray-100{--tw-gradient-to: var(--fm-color-neutral-gray-100) var(--tw-gradient-to-position)}.to-fm-color-neutral-gray-200{--tw-gradient-to: var(--fm-color-neutral-gray-200) var(--tw-gradient-to-position)}.to-fm-color-neutral-gray-300{--tw-gradient-to: var(--fm-color-neutral-gray-300) var(--tw-gradient-to-position)}.to-fm-color-neutral-gray-400{--tw-gradient-to: var(--fm-color-neutral-gray-400) var(--tw-gradient-to-position)}.to-fm-color-neutral-white{--tw-gradient-to: var(--fm-color-neutral-white) var(--tw-gradient-to-position)}.to-fm-color-opacity-lg{--tw-gradient-to: var(--fm-color-opacity-lg) var(--tw-gradient-to-position)}.to-fm-color-opacity-md{--tw-gradient-to: var(--fm-color-opacity-md) var(--tw-gradient-to-position)}.to-fm-color-opacity-sm{--tw-gradient-to: var(--fm-color-opacity-sm) var(--tw-gradient-to-position)}.to-fm-color-overlay-background{--tw-gradient-to: var(--fm-color-overlay) var(--tw-gradient-to-position)}.to-fm-color-primary{--tw-gradient-to: var(--fm-color-primary) var(--tw-gradient-to-position)}.to-fm-color-secondary-blueberry{--tw-gradient-to: var(--fm-color-secondary-blueberry) var(--tw-gradient-to-position)}.to-fm-color-secondary-citrus{--tw-gradient-to: var(--fm-color-secondary-citrus) var(--tw-gradient-to-position)}.to-fm-color-secondary-cocoa{--tw-gradient-to: var(--fm-color-secondary-cocoa) var(--tw-gradient-to-position)}.to-fm-color-secondary-halite{--tw-gradient-to: var(--fm-color-secondary-halite) var(--tw-gradient-to-position)}.to-fm-color-secondary-macaron{--tw-gradient-to: var(--fm-color-secondary-macaron) var(--tw-gradient-to-position)}.to-fm-color-secondary-mint{--tw-gradient-to: var(--fm-color-secondary-mint) var(--tw-gradient-to-position)}.to-fm-color-secondary-mustard{--tw-gradient-to: var(--fm-color-secondary-mustard) var(--tw-gradient-to-position)}.to-fm-color-secondary-plum{--tw-gradient-to: var(--fm-color-secondary-plum) var(--tw-gradient-to-position)}.to-fm-color-secondary-salmon{--tw-gradient-to: var(--fm-color-secondary-salmon) var(--tw-gradient-to-position)}.to-fm-color-secondary-tuna{--tw-gradient-to: var(--fm-color-secondary-tuna) var(--tw-gradient-to-position)}.to-fm-color-system-error-100{--tw-gradient-to: var(--fm-color-system-red-100) var(--tw-gradient-to-position)}.to-fm-color-system-error-200{--tw-gradient-to: var(--fm-color-system-red-200) var(--tw-gradient-to-position)}.to-fm-color-system-error-300{--tw-gradient-to: var(--fm-color-system-red-300) var(--tw-gradient-to-position)}.to-fm-color-system-error-400{--tw-gradient-to: var(--fm-color-system-red-400) var(--tw-gradient-to-position)}.to-fm-color-system-info-100{--tw-gradient-to: var(--fm-color-system-blue-100) var(--tw-gradient-to-position)}.to-fm-color-system-info-200{--tw-gradient-to: var(--fm-color-system-blue-200) var(--tw-gradient-to-position)}.to-fm-color-system-info-300{--tw-gradient-to: var(--fm-color-system-blue-300) var(--tw-gradient-to-position)}.to-fm-color-system-info-400{--tw-gradient-to: var(--fm-color-system-blue-400) var(--tw-gradient-to-position)}.to-fm-color-system-success-100{--tw-gradient-to: var(--fm-color-system-green-100) var(--tw-gradient-to-position)}.to-fm-color-system-success-200{--tw-gradient-to: var(--fm-color-system-green-200) var(--tw-gradient-to-position)}.to-fm-color-system-success-300{--tw-gradient-to: var(--fm-color-system-green-300) var(--tw-gradient-to-position)}.to-fm-color-system-success-400{--tw-gradient-to: var(--fm-color-system-green-400) var(--tw-gradient-to-position)}.to-fm-color-system-warning-100{--tw-gradient-to: var(--fm-color-system-orange-100) var(--tw-gradient-to-position)}.to-fm-color-system-warning-200{--tw-gradient-to: var(--fm-color-system-orange-200) var(--tw-gradient-to-position)}.to-fm-color-system-warning-300{--tw-gradient-to: var(--fm-color-system-orange-300) var(--tw-gradient-to-position)}.to-fm-color-system-warning-400{--tw-gradient-to: var(--fm-color-system-orange-400) var(--tw-gradient-to-position)}.to-fm-color-typo-disabled{--tw-gradient-to: var(--fm-color-neutral-gray-200) var(--tw-gradient-to-position)}.to-fm-color-typo-error{--tw-gradient-to: var(--fm-color-system-red-400) var(--tw-gradient-to-position)}.to-fm-color-typo-info{--tw-gradient-to: var(--fm-color-system-blue-300) var(--tw-gradient-to-position)}.to-fm-color-typo-primary{--tw-gradient-to: var(--fm-color-neutral-gray-500) var(--tw-gradient-to-position)}.to-fm-color-typo-secondary{--tw-gradient-to: var(--fm-color-neutral-gray-400) var(--tw-gradient-to-position)}.to-fm-color-typo-success{--tw-gradient-to: var(--fm-color-system-green-300) var(--tw-gradient-to-position)}.to-fm-color-typo-tertiary{--tw-gradient-to: var(--fm-color-neutral-gray-300) var(--tw-gradient-to-position)}.to-fm-color-typo-warning{--tw-gradient-to: var(--fm-color-system-orange-300) var(--tw-gradient-to-position)}.to-fm-color-typo-white{--tw-gradient-to: var(--fm-color-neutral-white) var(--tw-gradient-to-position)}.to-80\%{--tw-gradient-to-position: 80%}.fill-fm-color-neutral-black{fill:var(--fm-color-neutral-gray-500)}.fill-fm-color-neutral-gray-100{fill:var(--fm-color-neutral-gray-100)}.fill-fm-color-neutral-gray-200{fill:var(--fm-color-neutral-gray-200)}.fill-fm-color-neutral-gray-300{fill:var(--fm-color-neutral-gray-300)}.fill-fm-color-neutral-gray-400{fill:var(--fm-color-neutral-gray-400)}.fill-fm-color-neutral-white{fill:var(--fm-color-neutral-white)}.fill-fm-color-opacity-lg{fill:var(--fm-color-opacity-lg)}.fill-fm-color-opacity-md{fill:var(--fm-color-opacity-md)}.fill-fm-color-opacity-sm{fill:var(--fm-color-opacity-sm)}.fill-fm-color-overlay-background{fill:var(--fm-color-overlay)}.fill-fm-color-primary{fill:var(--fm-color-primary)}.fill-fm-color-secondary-blueberry{fill:var(--fm-color-secondary-blueberry)}.fill-fm-color-secondary-citrus{fill:var(--fm-color-secondary-citrus)}.fill-fm-color-secondary-cocoa{fill:var(--fm-color-secondary-cocoa)}.fill-fm-color-secondary-halite{fill:var(--fm-color-secondary-halite)}.fill-fm-color-secondary-macaron{fill:var(--fm-color-secondary-macaron)}.fill-fm-color-secondary-mint{fill:var(--fm-color-secondary-mint)}.fill-fm-color-secondary-mustard{fill:var(--fm-color-secondary-mustard)}.fill-fm-color-secondary-plum{fill:var(--fm-color-secondary-plum)}.fill-fm-color-secondary-salmon{fill:var(--fm-color-secondary-salmon)}.fill-fm-color-secondary-tuna{fill:var(--fm-color-secondary-tuna)}.fill-fm-color-system-error-100{fill:var(--fm-color-system-red-100)}.fill-fm-color-system-error-200{fill:var(--fm-color-system-red-200)}.fill-fm-color-system-error-300{fill:var(--fm-color-system-red-300)}.fill-fm-color-system-error-400{fill:var(--fm-color-system-red-400)}.fill-fm-color-system-info-100{fill:var(--fm-color-system-blue-100)}.fill-fm-color-system-info-200{fill:var(--fm-color-system-blue-200)}.fill-fm-color-system-info-300{fill:var(--fm-color-system-blue-300)}.fill-fm-color-system-info-400{fill:var(--fm-color-system-blue-400)}.fill-fm-color-system-success-100{fill:var(--fm-color-system-green-100)}.fill-fm-color-system-success-200{fill:var(--fm-color-system-green-200)}.fill-fm-color-system-success-300{fill:var(--fm-color-system-green-300)}.fill-fm-color-system-success-400{fill:var(--fm-color-system-green-400)}.fill-fm-color-system-warning-100{fill:var(--fm-color-system-orange-100)}.fill-fm-color-system-warning-200{fill:var(--fm-color-system-orange-200)}.fill-fm-color-system-warning-300{fill:var(--fm-color-system-orange-300)}.fill-fm-color-system-warning-400{fill:var(--fm-color-system-orange-400)}.fill-fm-color-typo-disabled{fill:var(--fm-color-neutral-gray-200)}.fill-fm-color-typo-error{fill:var(--fm-color-system-red-400)}.fill-fm-color-typo-info{fill:var(--fm-color-system-blue-300)}.fill-fm-color-typo-primary{fill:var(--fm-color-neutral-gray-500)}.fill-fm-color-typo-secondary{fill:var(--fm-color-neutral-gray-400)}.fill-fm-color-typo-success{fill:var(--fm-color-system-green-300)}.fill-fm-color-typo-tertiary{fill:var(--fm-color-neutral-gray-300)}.fill-fm-color-typo-warning{fill:var(--fm-color-system-orange-300)}.fill-fm-color-typo-white{fill:var(--fm-color-neutral-white)}.stroke-fm-color-neutral-black{stroke:var(--fm-color-neutral-gray-500)}.stroke-fm-color-neutral-gray-100{stroke:var(--fm-color-neutral-gray-100)}.stroke-fm-color-neutral-gray-200{stroke:var(--fm-color-neutral-gray-200)}.stroke-fm-color-neutral-gray-300{stroke:var(--fm-color-neutral-gray-300)}.stroke-fm-color-neutral-gray-400{stroke:var(--fm-color-neutral-gray-400)}.stroke-fm-color-neutral-white{stroke:var(--fm-color-neutral-white)}.stroke-fm-color-opacity-lg{stroke:var(--fm-color-opacity-lg)}.stroke-fm-color-opacity-md{stroke:var(--fm-color-opacity-md)}.stroke-fm-color-opacity-sm{stroke:var(--fm-color-opacity-sm)}.stroke-fm-color-overlay-background{stroke:var(--fm-color-overlay)}.stroke-fm-color-primary{stroke:var(--fm-color-primary)}.stroke-fm-color-secondary-blueberry{stroke:var(--fm-color-secondary-blueberry)}.stroke-fm-color-secondary-citrus{stroke:var(--fm-color-secondary-citrus)}.stroke-fm-color-secondary-cocoa{stroke:var(--fm-color-secondary-cocoa)}.stroke-fm-color-secondary-halite{stroke:var(--fm-color-secondary-halite)}.stroke-fm-color-secondary-macaron{stroke:var(--fm-color-secondary-macaron)}.stroke-fm-color-secondary-mint{stroke:var(--fm-color-secondary-mint)}.stroke-fm-color-secondary-mustard{stroke:var(--fm-color-secondary-mustard)}.stroke-fm-color-secondary-plum{stroke:var(--fm-color-secondary-plum)}.stroke-fm-color-secondary-salmon{stroke:var(--fm-color-secondary-salmon)}.stroke-fm-color-secondary-tuna{stroke:var(--fm-color-secondary-tuna)}.stroke-fm-color-system-error-100{stroke:var(--fm-color-system-red-100)}.stroke-fm-color-system-error-200{stroke:var(--fm-color-system-red-200)}.stroke-fm-color-system-error-300{stroke:var(--fm-color-system-red-300)}.stroke-fm-color-system-error-400{stroke:var(--fm-color-system-red-400)}.stroke-fm-color-system-info-100{stroke:var(--fm-color-system-blue-100)}.stroke-fm-color-system-info-200{stroke:var(--fm-color-system-blue-200)}.stroke-fm-color-system-info-300{stroke:var(--fm-color-system-blue-300)}.stroke-fm-color-system-info-400{stroke:var(--fm-color-system-blue-400)}.stroke-fm-color-system-success-100{stroke:var(--fm-color-system-green-100)}.stroke-fm-color-system-success-200{stroke:var(--fm-color-system-green-200)}.stroke-fm-color-system-success-300{stroke:var(--fm-color-system-green-300)}.stroke-fm-color-system-success-400{stroke:var(--fm-color-system-green-400)}.stroke-fm-color-system-warning-100{stroke:var(--fm-color-system-orange-100)}.stroke-fm-color-system-warning-200{stroke:var(--fm-color-system-orange-200)}.stroke-fm-color-system-warning-300{stroke:var(--fm-color-system-orange-300)}.stroke-fm-color-system-warning-400{stroke:var(--fm-color-system-orange-400)}.stroke-fm-color-typo-disabled{stroke:var(--fm-color-neutral-gray-200)}.stroke-fm-color-typo-error{stroke:var(--fm-color-system-red-400)}.stroke-fm-color-typo-info{stroke:var(--fm-color-system-blue-300)}.stroke-fm-color-typo-primary{stroke:var(--fm-color-neutral-gray-500)}.stroke-fm-color-typo-secondary{stroke:var(--fm-color-neutral-gray-400)}.stroke-fm-color-typo-success{stroke:var(--fm-color-system-green-300)}.stroke-fm-color-typo-tertiary{stroke:var(--fm-color-neutral-gray-300)}.stroke-fm-color-typo-warning{stroke:var(--fm-color-system-orange-300)}.stroke-fm-color-typo-white{stroke:var(--fm-color-neutral-white)}.object-cover{-o-object-fit:cover;object-fit:cover}.\!p-16{padding:16px!important}.p-0{padding:0}.p-12{padding:12px}.p-16{padding:16px}.p-24{padding:24px}.px-12{padding-left:12px;padding-right:12px}.px-16{padding-left:16px;padding-right:16px}.px-24{padding-left:24px;padding-right:24px}.px-4{padding-left:4px;padding-right:4px}.px-8{padding-left:8px;padding-right:8px}.px-\[11px\]{padding-left:11px;padding-right:11px}.px-\[7px\]{padding-left:7px;padding-right:7px}.py-1{padding-top:.25rem;padding-bottom:.25rem}.py-12{padding-top:12px;padding-bottom:12px}.py-16{padding-top:16px;padding-bottom:16px}.py-4{padding-top:4px;padding-bottom:4px}.py-8{padding-top:8px;padding-bottom:8px}.py-\[11px\]{padding-top:11px;padding-bottom:11px}.py-\[7px\]{padding-top:7px;padding-bottom:7px}.pb-8{padding-bottom:8px}.pl-2{padding-left:.5rem}.pl-4{padding-left:4px}.pr-0{padding-right:0}.pr-16{padding-right:16px}.pt-24{padding-top:24px}.text-left{text-align:left}.text-center{text-align:center}.uppercase{text-transform:uppercase}.\!text-fm-color-system-warning-400{color:var(--fm-color-system-orange-400)!important}.text-fm-color-neutral-black{color:var(--fm-color-neutral-gray-500)}.text-fm-color-neutral-gray-100{color:var(--fm-color-neutral-gray-100)}.text-fm-color-neutral-gray-200{color:var(--fm-color-neutral-gray-200)}.text-fm-color-neutral-gray-300{color:var(--fm-color-neutral-gray-300)}.text-fm-color-neutral-gray-400{color:var(--fm-color-neutral-gray-400)}.text-fm-color-neutral-white{color:var(--fm-color-neutral-white)}.text-fm-color-opacity-lg{color:var(--fm-color-opacity-lg)}.text-fm-color-opacity-md{color:var(--fm-color-opacity-md)}.text-fm-color-opacity-sm{color:var(--fm-color-opacity-sm)}.text-fm-color-overlay-background{color:var(--fm-color-overlay)}.text-fm-color-primary{color:var(--fm-color-primary)}.text-fm-color-secondary-blueberry{color:var(--fm-color-secondary-blueberry)}.text-fm-color-secondary-citrus{color:var(--fm-color-secondary-citrus)}.text-fm-color-secondary-cocoa{color:var(--fm-color-secondary-cocoa)}.text-fm-color-secondary-halite{color:var(--fm-color-secondary-halite)}.text-fm-color-secondary-macaron{color:var(--fm-color-secondary-macaron)}.text-fm-color-secondary-mint{color:var(--fm-color-secondary-mint)}.text-fm-color-secondary-mustard{color:var(--fm-color-secondary-mustard)}.text-fm-color-secondary-plum{color:var(--fm-color-secondary-plum)}.text-fm-color-secondary-salmon{color:var(--fm-color-secondary-salmon)}.text-fm-color-secondary-tuna{color:var(--fm-color-secondary-tuna)}.text-fm-color-system-error-100{color:var(--fm-color-system-red-100)}.text-fm-color-system-error-200{color:var(--fm-color-system-red-200)}.text-fm-color-system-error-300{color:var(--fm-color-system-red-300)}.text-fm-color-system-error-400{color:var(--fm-color-system-red-400)}.text-fm-color-system-info-100{color:var(--fm-color-system-blue-100)}.text-fm-color-system-info-200{color:var(--fm-color-system-blue-200)}.text-fm-color-system-info-300{color:var(--fm-color-system-blue-300)}.text-fm-color-system-info-400{color:var(--fm-color-system-blue-400)}.text-fm-color-system-success-100{color:var(--fm-color-system-green-100)}.text-fm-color-system-success-200{color:var(--fm-color-system-green-200)}.text-fm-color-system-success-300{color:var(--fm-color-system-green-300)}.text-fm-color-system-success-400{color:var(--fm-color-system-green-400)}.text-fm-color-system-warning-100{color:var(--fm-color-system-orange-100)}.text-fm-color-system-warning-200{color:var(--fm-color-system-orange-200)}.text-fm-color-system-warning-300{color:var(--fm-color-system-orange-300)}.text-fm-color-system-warning-400{color:var(--fm-color-system-orange-400)}.text-fm-color-typo-disabled{color:var(--fm-color-neutral-gray-200)}.text-fm-color-typo-error{color:var(--fm-color-system-red-400)}.text-fm-color-typo-info{color:var(--fm-color-system-blue-300)}.text-fm-color-typo-primary{color:var(--fm-color-neutral-gray-500)}.text-fm-color-typo-secondary{color:var(--fm-color-neutral-gray-400)}.text-fm-color-typo-success{color:var(--fm-color-system-green-300)}.text-fm-color-typo-tertiary{color:var(--fm-color-neutral-gray-300)}.text-fm-color-typo-warning{color:var(--fm-color-system-orange-300)}.text-fm-color-typo-white{color:var(--fm-color-neutral-white)}.decoration-fm-color-neutral-black{text-decoration-color:var(--fm-color-neutral-gray-500)}.decoration-fm-color-neutral-gray-100{text-decoration-color:var(--fm-color-neutral-gray-100)}.decoration-fm-color-neutral-gray-200{text-decoration-color:var(--fm-color-neutral-gray-200)}.decoration-fm-color-neutral-gray-300{text-decoration-color:var(--fm-color-neutral-gray-300)}.decoration-fm-color-neutral-gray-400{text-decoration-color:var(--fm-color-neutral-gray-400)}.decoration-fm-color-neutral-white{text-decoration-color:var(--fm-color-neutral-white)}.decoration-fm-color-opacity-lg{text-decoration-color:var(--fm-color-opacity-lg)}.decoration-fm-color-opacity-md{text-decoration-color:var(--fm-color-opacity-md)}.decoration-fm-color-opacity-sm{text-decoration-color:var(--fm-color-opacity-sm)}.decoration-fm-color-overlay-background{text-decoration-color:var(--fm-color-overlay)}.decoration-fm-color-primary{text-decoration-color:var(--fm-color-primary)}.decoration-fm-color-secondary-blueberry{text-decoration-color:var(--fm-color-secondary-blueberry)}.decoration-fm-color-secondary-citrus{text-decoration-color:var(--fm-color-secondary-citrus)}.decoration-fm-color-secondary-cocoa{text-decoration-color:var(--fm-color-secondary-cocoa)}.decoration-fm-color-secondary-halite{text-decoration-color:var(--fm-color-secondary-halite)}.decoration-fm-color-secondary-macaron{text-decoration-color:var(--fm-color-secondary-macaron)}.decoration-fm-color-secondary-mint{text-decoration-color:var(--fm-color-secondary-mint)}.decoration-fm-color-secondary-mustard{text-decoration-color:var(--fm-color-secondary-mustard)}.decoration-fm-color-secondary-plum{text-decoration-color:var(--fm-color-secondary-plum)}.decoration-fm-color-secondary-salmon{text-decoration-color:var(--fm-color-secondary-salmon)}.decoration-fm-color-secondary-tuna{text-decoration-color:var(--fm-color-secondary-tuna)}.decoration-fm-color-system-error-100{text-decoration-color:var(--fm-color-system-red-100)}.decoration-fm-color-system-error-200{text-decoration-color:var(--fm-color-system-red-200)}.decoration-fm-color-system-error-300{text-decoration-color:var(--fm-color-system-red-300)}.decoration-fm-color-system-error-400{text-decoration-color:var(--fm-color-system-red-400)}.decoration-fm-color-system-info-100{text-decoration-color:var(--fm-color-system-blue-100)}.decoration-fm-color-system-info-200{text-decoration-color:var(--fm-color-system-blue-200)}.decoration-fm-color-system-info-300{text-decoration-color:var(--fm-color-system-blue-300)}.decoration-fm-color-system-info-400{text-decoration-color:var(--fm-color-system-blue-400)}.decoration-fm-color-system-success-100{text-decoration-color:var(--fm-color-system-green-100)}.decoration-fm-color-system-success-200{text-decoration-color:var(--fm-color-system-green-200)}.decoration-fm-color-system-success-300{text-decoration-color:var(--fm-color-system-green-300)}.decoration-fm-color-system-success-400{text-decoration-color:var(--fm-color-system-green-400)}.decoration-fm-color-system-warning-100{text-decoration-color:var(--fm-color-system-orange-100)}.decoration-fm-color-system-warning-200{text-decoration-color:var(--fm-color-system-orange-200)}.decoration-fm-color-system-warning-300{text-decoration-color:var(--fm-color-system-orange-300)}.decoration-fm-color-system-warning-400{text-decoration-color:var(--fm-color-system-orange-400)}.decoration-fm-color-typo-disabled{text-decoration-color:var(--fm-color-neutral-gray-200)}.decoration-fm-color-typo-error{text-decoration-color:var(--fm-color-system-red-400)}.decoration-fm-color-typo-info{text-decoration-color:var(--fm-color-system-blue-300)}.decoration-fm-color-typo-primary{text-decoration-color:var(--fm-color-neutral-gray-500)}.decoration-fm-color-typo-secondary{text-decoration-color:var(--fm-color-neutral-gray-400)}.decoration-fm-color-typo-success{text-decoration-color:var(--fm-color-system-green-300)}.decoration-fm-color-typo-tertiary{text-decoration-color:var(--fm-color-neutral-gray-300)}.decoration-fm-color-typo-warning{text-decoration-color:var(--fm-color-system-orange-300)}.decoration-fm-color-typo-white{text-decoration-color:var(--fm-color-neutral-white)}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.placeholder-fm-color-neutral-black::-moz-placeholder{color:var(--fm-color-neutral-gray-500)}.placeholder-fm-color-neutral-black::placeholder{color:var(--fm-color-neutral-gray-500)}.placeholder-fm-color-neutral-gray-100::-moz-placeholder{color:var(--fm-color-neutral-gray-100)}.placeholder-fm-color-neutral-gray-100::placeholder{color:var(--fm-color-neutral-gray-100)}.placeholder-fm-color-neutral-gray-200::-moz-placeholder{color:var(--fm-color-neutral-gray-200)}.placeholder-fm-color-neutral-gray-200::placeholder{color:var(--fm-color-neutral-gray-200)}.placeholder-fm-color-neutral-gray-300::-moz-placeholder{color:var(--fm-color-neutral-gray-300)}.placeholder-fm-color-neutral-gray-300::placeholder{color:var(--fm-color-neutral-gray-300)}.placeholder-fm-color-neutral-gray-400::-moz-placeholder{color:var(--fm-color-neutral-gray-400)}.placeholder-fm-color-neutral-gray-400::placeholder{color:var(--fm-color-neutral-gray-400)}.placeholder-fm-color-neutral-white::-moz-placeholder{color:var(--fm-color-neutral-white)}.placeholder-fm-color-neutral-white::placeholder{color:var(--fm-color-neutral-white)}.placeholder-fm-color-opacity-lg::-moz-placeholder{color:var(--fm-color-opacity-lg)}.placeholder-fm-color-opacity-lg::placeholder{color:var(--fm-color-opacity-lg)}.placeholder-fm-color-opacity-md::-moz-placeholder{color:var(--fm-color-opacity-md)}.placeholder-fm-color-opacity-md::placeholder{color:var(--fm-color-opacity-md)}.placeholder-fm-color-opacity-sm::-moz-placeholder{color:var(--fm-color-opacity-sm)}.placeholder-fm-color-opacity-sm::placeholder{color:var(--fm-color-opacity-sm)}.placeholder-fm-color-overlay-background::-moz-placeholder{color:var(--fm-color-overlay)}.placeholder-fm-color-overlay-background::placeholder{color:var(--fm-color-overlay)}.placeholder-fm-color-primary::-moz-placeholder{color:var(--fm-color-primary)}.placeholder-fm-color-primary::placeholder{color:var(--fm-color-primary)}.placeholder-fm-color-secondary-blueberry::-moz-placeholder{color:var(--fm-color-secondary-blueberry)}.placeholder-fm-color-secondary-blueberry::placeholder{color:var(--fm-color-secondary-blueberry)}.placeholder-fm-color-secondary-citrus::-moz-placeholder{color:var(--fm-color-secondary-citrus)}.placeholder-fm-color-secondary-citrus::placeholder{color:var(--fm-color-secondary-citrus)}.placeholder-fm-color-secondary-cocoa::-moz-placeholder{color:var(--fm-color-secondary-cocoa)}.placeholder-fm-color-secondary-cocoa::placeholder{color:var(--fm-color-secondary-cocoa)}.placeholder-fm-color-secondary-halite::-moz-placeholder{color:var(--fm-color-secondary-halite)}.placeholder-fm-color-secondary-halite::placeholder{color:var(--fm-color-secondary-halite)}.placeholder-fm-color-secondary-macaron::-moz-placeholder{color:var(--fm-color-secondary-macaron)}.placeholder-fm-color-secondary-macaron::placeholder{color:var(--fm-color-secondary-macaron)}.placeholder-fm-color-secondary-mint::-moz-placeholder{color:var(--fm-color-secondary-mint)}.placeholder-fm-color-secondary-mint::placeholder{color:var(--fm-color-secondary-mint)}.placeholder-fm-color-secondary-mustard::-moz-placeholder{color:var(--fm-color-secondary-mustard)}.placeholder-fm-color-secondary-mustard::placeholder{color:var(--fm-color-secondary-mustard)}.placeholder-fm-color-secondary-plum::-moz-placeholder{color:var(--fm-color-secondary-plum)}.placeholder-fm-color-secondary-plum::placeholder{color:var(--fm-color-secondary-plum)}.placeholder-fm-color-secondary-salmon::-moz-placeholder{color:var(--fm-color-secondary-salmon)}.placeholder-fm-color-secondary-salmon::placeholder{color:var(--fm-color-secondary-salmon)}.placeholder-fm-color-secondary-tuna::-moz-placeholder{color:var(--fm-color-secondary-tuna)}.placeholder-fm-color-secondary-tuna::placeholder{color:var(--fm-color-secondary-tuna)}.placeholder-fm-color-system-error-100::-moz-placeholder{color:var(--fm-color-system-red-100)}.placeholder-fm-color-system-error-100::placeholder{color:var(--fm-color-system-red-100)}.placeholder-fm-color-system-error-200::-moz-placeholder{color:var(--fm-color-system-red-200)}.placeholder-fm-color-system-error-200::placeholder{color:var(--fm-color-system-red-200)}.placeholder-fm-color-system-error-300::-moz-placeholder{color:var(--fm-color-system-red-300)}.placeholder-fm-color-system-error-300::placeholder{color:var(--fm-color-system-red-300)}.placeholder-fm-color-system-error-400::-moz-placeholder{color:var(--fm-color-system-red-400)}.placeholder-fm-color-system-error-400::placeholder{color:var(--fm-color-system-red-400)}.placeholder-fm-color-system-info-100::-moz-placeholder{color:var(--fm-color-system-blue-100)}.placeholder-fm-color-system-info-100::placeholder{color:var(--fm-color-system-blue-100)}.placeholder-fm-color-system-info-200::-moz-placeholder{color:var(--fm-color-system-blue-200)}.placeholder-fm-color-system-info-200::placeholder{color:var(--fm-color-system-blue-200)}.placeholder-fm-color-system-info-300::-moz-placeholder{color:var(--fm-color-system-blue-300)}.placeholder-fm-color-system-info-300::placeholder{color:var(--fm-color-system-blue-300)}.placeholder-fm-color-system-info-400::-moz-placeholder{color:var(--fm-color-system-blue-400)}.placeholder-fm-color-system-info-400::placeholder{color:var(--fm-color-system-blue-400)}.placeholder-fm-color-system-success-100::-moz-placeholder{color:var(--fm-color-system-green-100)}.placeholder-fm-color-system-success-100::placeholder{color:var(--fm-color-system-green-100)}.placeholder-fm-color-system-success-200::-moz-placeholder{color:var(--fm-color-system-green-200)}.placeholder-fm-color-system-success-200::placeholder{color:var(--fm-color-system-green-200)}.placeholder-fm-color-system-success-300::-moz-placeholder{color:var(--fm-color-system-green-300)}.placeholder-fm-color-system-success-300::placeholder{color:var(--fm-color-system-green-300)}.placeholder-fm-color-system-success-400::-moz-placeholder{color:var(--fm-color-system-green-400)}.placeholder-fm-color-system-success-400::placeholder{color:var(--fm-color-system-green-400)}.placeholder-fm-color-system-warning-100::-moz-placeholder{color:var(--fm-color-system-orange-100)}.placeholder-fm-color-system-warning-100::placeholder{color:var(--fm-color-system-orange-100)}.placeholder-fm-color-system-warning-200::-moz-placeholder{color:var(--fm-color-system-orange-200)}.placeholder-fm-color-system-warning-200::placeholder{color:var(--fm-color-system-orange-200)}.placeholder-fm-color-system-warning-300::-moz-placeholder{color:var(--fm-color-system-orange-300)}.placeholder-fm-color-system-warning-300::placeholder{color:var(--fm-color-system-orange-300)}.placeholder-fm-color-system-warning-400::-moz-placeholder{color:var(--fm-color-system-orange-400)}.placeholder-fm-color-system-warning-400::placeholder{color:var(--fm-color-system-orange-400)}.placeholder-fm-color-typo-disabled::-moz-placeholder{color:var(--fm-color-neutral-gray-200)}.placeholder-fm-color-typo-disabled::placeholder{color:var(--fm-color-neutral-gray-200)}.placeholder-fm-color-typo-error::-moz-placeholder{color:var(--fm-color-system-red-400)}.placeholder-fm-color-typo-error::placeholder{color:var(--fm-color-system-red-400)}.placeholder-fm-color-typo-info::-moz-placeholder{color:var(--fm-color-system-blue-300)}.placeholder-fm-color-typo-info::placeholder{color:var(--fm-color-system-blue-300)}.placeholder-fm-color-typo-primary::-moz-placeholder{color:var(--fm-color-neutral-gray-500)}.placeholder-fm-color-typo-primary::placeholder{color:var(--fm-color-neutral-gray-500)}.placeholder-fm-color-typo-secondary::-moz-placeholder{color:var(--fm-color-neutral-gray-400)}.placeholder-fm-color-typo-secondary::placeholder{color:var(--fm-color-neutral-gray-400)}.placeholder-fm-color-typo-success::-moz-placeholder{color:var(--fm-color-system-green-300)}.placeholder-fm-color-typo-success::placeholder{color:var(--fm-color-system-green-300)}.placeholder-fm-color-typo-tertiary::-moz-placeholder{color:var(--fm-color-neutral-gray-300)}.placeholder-fm-color-typo-tertiary::placeholder{color:var(--fm-color-neutral-gray-300)}.placeholder-fm-color-typo-warning::-moz-placeholder{color:var(--fm-color-system-orange-300)}.placeholder-fm-color-typo-warning::placeholder{color:var(--fm-color-system-orange-300)}.placeholder-fm-color-typo-white::-moz-placeholder{color:var(--fm-color-neutral-white)}.placeholder-fm-color-typo-white::placeholder{color:var(--fm-color-neutral-white)}.caret-fm-color-neutral-black{caret-color:var(--fm-color-neutral-gray-500)}.caret-fm-color-neutral-gray-100{caret-color:var(--fm-color-neutral-gray-100)}.caret-fm-color-neutral-gray-200{caret-color:var(--fm-color-neutral-gray-200)}.caret-fm-color-neutral-gray-300{caret-color:var(--fm-color-neutral-gray-300)}.caret-fm-color-neutral-gray-400{caret-color:var(--fm-color-neutral-gray-400)}.caret-fm-color-neutral-white{caret-color:var(--fm-color-neutral-white)}.caret-fm-color-opacity-lg{caret-color:var(--fm-color-opacity-lg)}.caret-fm-color-opacity-md{caret-color:var(--fm-color-opacity-md)}.caret-fm-color-opacity-sm{caret-color:var(--fm-color-opacity-sm)}.caret-fm-color-overlay-background{caret-color:var(--fm-color-overlay)}.caret-fm-color-primary{caret-color:var(--fm-color-primary)}.caret-fm-color-secondary-blueberry{caret-color:var(--fm-color-secondary-blueberry)}.caret-fm-color-secondary-citrus{caret-color:var(--fm-color-secondary-citrus)}.caret-fm-color-secondary-cocoa{caret-color:var(--fm-color-secondary-cocoa)}.caret-fm-color-secondary-halite{caret-color:var(--fm-color-secondary-halite)}.caret-fm-color-secondary-macaron{caret-color:var(--fm-color-secondary-macaron)}.caret-fm-color-secondary-mint{caret-color:var(--fm-color-secondary-mint)}.caret-fm-color-secondary-mustard{caret-color:var(--fm-color-secondary-mustard)}.caret-fm-color-secondary-plum{caret-color:var(--fm-color-secondary-plum)}.caret-fm-color-secondary-salmon{caret-color:var(--fm-color-secondary-salmon)}.caret-fm-color-secondary-tuna{caret-color:var(--fm-color-secondary-tuna)}.caret-fm-color-system-error-100{caret-color:var(--fm-color-system-red-100)}.caret-fm-color-system-error-200{caret-color:var(--fm-color-system-red-200)}.caret-fm-color-system-error-300{caret-color:var(--fm-color-system-red-300)}.caret-fm-color-system-error-400{caret-color:var(--fm-color-system-red-400)}.caret-fm-color-system-info-100{caret-color:var(--fm-color-system-blue-100)}.caret-fm-color-system-info-200{caret-color:var(--fm-color-system-blue-200)}.caret-fm-color-system-info-300{caret-color:var(--fm-color-system-blue-300)}.caret-fm-color-system-info-400{caret-color:var(--fm-color-system-blue-400)}.caret-fm-color-system-success-100{caret-color:var(--fm-color-system-green-100)}.caret-fm-color-system-success-200{caret-color:var(--fm-color-system-green-200)}.caret-fm-color-system-success-300{caret-color:var(--fm-color-system-green-300)}.caret-fm-color-system-success-400{caret-color:var(--fm-color-system-green-400)}.caret-fm-color-system-warning-100{caret-color:var(--fm-color-system-orange-100)}.caret-fm-color-system-warning-200{caret-color:var(--fm-color-system-orange-200)}.caret-fm-color-system-warning-300{caret-color:var(--fm-color-system-orange-300)}.caret-fm-color-system-warning-400{caret-color:var(--fm-color-system-orange-400)}.caret-fm-color-typo-disabled{caret-color:var(--fm-color-neutral-gray-200)}.caret-fm-color-typo-error{caret-color:var(--fm-color-system-red-400)}.caret-fm-color-typo-info{caret-color:var(--fm-color-system-blue-300)}.caret-fm-color-typo-primary{caret-color:var(--fm-color-neutral-gray-500)}.caret-fm-color-typo-secondary{caret-color:var(--fm-color-neutral-gray-400)}.caret-fm-color-typo-success{caret-color:var(--fm-color-system-green-300)}.caret-fm-color-typo-tertiary{caret-color:var(--fm-color-neutral-gray-300)}.caret-fm-color-typo-warning{caret-color:var(--fm-color-system-orange-300)}.caret-fm-color-typo-white{caret-color:var(--fm-color-neutral-white)}.accent-fm-color-neutral-black{accent-color:var(--fm-color-neutral-gray-500)}.accent-fm-color-neutral-gray-100{accent-color:var(--fm-color-neutral-gray-100)}.accent-fm-color-neutral-gray-200{accent-color:var(--fm-color-neutral-gray-200)}.accent-fm-color-neutral-gray-300{accent-color:var(--fm-color-neutral-gray-300)}.accent-fm-color-neutral-gray-400{accent-color:var(--fm-color-neutral-gray-400)}.accent-fm-color-neutral-white{accent-color:var(--fm-color-neutral-white)}.accent-fm-color-opacity-lg{accent-color:var(--fm-color-opacity-lg)}.accent-fm-color-opacity-md{accent-color:var(--fm-color-opacity-md)}.accent-fm-color-opacity-sm{accent-color:var(--fm-color-opacity-sm)}.accent-fm-color-overlay-background{accent-color:var(--fm-color-overlay)}.accent-fm-color-primary{accent-color:var(--fm-color-primary)}.accent-fm-color-secondary-blueberry{accent-color:var(--fm-color-secondary-blueberry)}.accent-fm-color-secondary-citrus{accent-color:var(--fm-color-secondary-citrus)}.accent-fm-color-secondary-cocoa{accent-color:var(--fm-color-secondary-cocoa)}.accent-fm-color-secondary-halite{accent-color:var(--fm-color-secondary-halite)}.accent-fm-color-secondary-macaron{accent-color:var(--fm-color-secondary-macaron)}.accent-fm-color-secondary-mint{accent-color:var(--fm-color-secondary-mint)}.accent-fm-color-secondary-mustard{accent-color:var(--fm-color-secondary-mustard)}.accent-fm-color-secondary-plum{accent-color:var(--fm-color-secondary-plum)}.accent-fm-color-secondary-salmon{accent-color:var(--fm-color-secondary-salmon)}.accent-fm-color-secondary-tuna{accent-color:var(--fm-color-secondary-tuna)}.accent-fm-color-system-error-100{accent-color:var(--fm-color-system-red-100)}.accent-fm-color-system-error-200{accent-color:var(--fm-color-system-red-200)}.accent-fm-color-system-error-300{accent-color:var(--fm-color-system-red-300)}.accent-fm-color-system-error-400{accent-color:var(--fm-color-system-red-400)}.accent-fm-color-system-info-100{accent-color:var(--fm-color-system-blue-100)}.accent-fm-color-system-info-200{accent-color:var(--fm-color-system-blue-200)}.accent-fm-color-system-info-300{accent-color:var(--fm-color-system-blue-300)}.accent-fm-color-system-info-400{accent-color:var(--fm-color-system-blue-400)}.accent-fm-color-system-success-100{accent-color:var(--fm-color-system-green-100)}.accent-fm-color-system-success-200{accent-color:var(--fm-color-system-green-200)}.accent-fm-color-system-success-300{accent-color:var(--fm-color-system-green-300)}.accent-fm-color-system-success-400{accent-color:var(--fm-color-system-green-400)}.accent-fm-color-system-warning-100{accent-color:var(--fm-color-system-orange-100)}.accent-fm-color-system-warning-200{accent-color:var(--fm-color-system-orange-200)}.accent-fm-color-system-warning-300{accent-color:var(--fm-color-system-orange-300)}.accent-fm-color-system-warning-400{accent-color:var(--fm-color-system-orange-400)}.accent-fm-color-typo-disabled{accent-color:var(--fm-color-neutral-gray-200)}.accent-fm-color-typo-error{accent-color:var(--fm-color-system-red-400)}.accent-fm-color-typo-info{accent-color:var(--fm-color-system-blue-300)}.accent-fm-color-typo-primary{accent-color:var(--fm-color-neutral-gray-500)}.accent-fm-color-typo-secondary{accent-color:var(--fm-color-neutral-gray-400)}.accent-fm-color-typo-success{accent-color:var(--fm-color-system-green-300)}.accent-fm-color-typo-tertiary{accent-color:var(--fm-color-neutral-gray-300)}.accent-fm-color-typo-warning{accent-color:var(--fm-color-system-orange-300)}.accent-fm-color-typo-white{accent-color:var(--fm-color-neutral-white)}.opacity-0{opacity:0}.opacity-100{opacity:1}.opacity-60{opacity:.6}.shadow-light-300{--tw-shadow: 0px 8px 16px 0px rgba(199, 199, 204, .24);--tw-shadow-colored: 0px 8px 16px 0px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-fm-color-neutral-black{--tw-shadow-color: var(--fm-color-neutral-gray-500);--tw-shadow: var(--tw-shadow-colored)}.shadow-fm-color-neutral-gray-100{--tw-shadow-color: var(--fm-color-neutral-gray-100);--tw-shadow: var(--tw-shadow-colored)}.shadow-fm-color-neutral-gray-200{--tw-shadow-color: var(--fm-color-neutral-gray-200);--tw-shadow: var(--tw-shadow-colored)}.shadow-fm-color-neutral-gray-300{--tw-shadow-color: var(--fm-color-neutral-gray-300);--tw-shadow: var(--tw-shadow-colored)}.shadow-fm-color-neutral-gray-400{--tw-shadow-color: var(--fm-color-neutral-gray-400);--tw-shadow: var(--tw-shadow-colored)}.shadow-fm-color-neutral-white{--tw-shadow-color: var(--fm-color-neutral-white);--tw-shadow: var(--tw-shadow-colored)}.shadow-fm-color-opacity-lg{--tw-shadow-color: var(--fm-color-opacity-lg);--tw-shadow: var(--tw-shadow-colored)}.shadow-fm-color-opacity-md{--tw-shadow-color: var(--fm-color-opacity-md);--tw-shadow: var(--tw-shadow-colored)}.shadow-fm-color-opacity-sm{--tw-shadow-color: var(--fm-color-opacity-sm);--tw-shadow: var(--tw-shadow-colored)}.shadow-fm-color-overlay-background{--tw-shadow-color: var(--fm-color-overlay);--tw-shadow: var(--tw-shadow-colored)}.shadow-fm-color-primary{--tw-shadow-color: var(--fm-color-primary);--tw-shadow: var(--tw-shadow-colored)}.shadow-fm-color-secondary-blueberry{--tw-shadow-color: var(--fm-color-secondary-blueberry);--tw-shadow: var(--tw-shadow-colored)}.shadow-fm-color-secondary-citrus{--tw-shadow-color: var(--fm-color-secondary-citrus);--tw-shadow: var(--tw-shadow-colored)}.shadow-fm-color-secondary-cocoa{--tw-shadow-color: var(--fm-color-secondary-cocoa);--tw-shadow: var(--tw-shadow-colored)}.shadow-fm-color-secondary-halite{--tw-shadow-color: var(--fm-color-secondary-halite);--tw-shadow: var(--tw-shadow-colored)}.shadow-fm-color-secondary-macaron{--tw-shadow-color: var(--fm-color-secondary-macaron);--tw-shadow: var(--tw-shadow-colored)}.shadow-fm-color-secondary-mint{--tw-shadow-color: var(--fm-color-secondary-mint);--tw-shadow: var(--tw-shadow-colored)}.shadow-fm-color-secondary-mustard{--tw-shadow-color: var(--fm-color-secondary-mustard);--tw-shadow: var(--tw-shadow-colored)}.shadow-fm-color-secondary-plum{--tw-shadow-color: var(--fm-color-secondary-plum);--tw-shadow: var(--tw-shadow-colored)}.shadow-fm-color-secondary-salmon{--tw-shadow-color: var(--fm-color-secondary-salmon);--tw-shadow: var(--tw-shadow-colored)}.shadow-fm-color-secondary-tuna{--tw-shadow-color: var(--fm-color-secondary-tuna);--tw-shadow: var(--tw-shadow-colored)}.shadow-fm-color-system-error-100{--tw-shadow-color: var(--fm-color-system-red-100);--tw-shadow: var(--tw-shadow-colored)}.shadow-fm-color-system-error-200{--tw-shadow-color: var(--fm-color-system-red-200);--tw-shadow: var(--tw-shadow-colored)}.shadow-fm-color-system-error-300{--tw-shadow-color: var(--fm-color-system-red-300);--tw-shadow: var(--tw-shadow-colored)}.shadow-fm-color-system-error-400{--tw-shadow-color: var(--fm-color-system-red-400);--tw-shadow: var(--tw-shadow-colored)}.shadow-fm-color-system-info-100{--tw-shadow-color: var(--fm-color-system-blue-100);--tw-shadow: var(--tw-shadow-colored)}.shadow-fm-color-system-info-200{--tw-shadow-color: var(--fm-color-system-blue-200);--tw-shadow: var(--tw-shadow-colored)}.shadow-fm-color-system-info-300{--tw-shadow-color: var(--fm-color-system-blue-300);--tw-shadow: var(--tw-shadow-colored)}.shadow-fm-color-system-info-400{--tw-shadow-color: var(--fm-color-system-blue-400);--tw-shadow: var(--tw-shadow-colored)}.shadow-fm-color-system-success-100{--tw-shadow-color: var(--fm-color-system-green-100);--tw-shadow: var(--tw-shadow-colored)}.shadow-fm-color-system-success-200{--tw-shadow-color: var(--fm-color-system-green-200);--tw-shadow: var(--tw-shadow-colored)}.shadow-fm-color-system-success-300{--tw-shadow-color: var(--fm-color-system-green-300);--tw-shadow: var(--tw-shadow-colored)}.shadow-fm-color-system-success-400{--tw-shadow-color: var(--fm-color-system-green-400);--tw-shadow: var(--tw-shadow-colored)}.shadow-fm-color-system-warning-100{--tw-shadow-color: var(--fm-color-system-orange-100);--tw-shadow: var(--tw-shadow-colored)}.shadow-fm-color-system-warning-200{--tw-shadow-color: var(--fm-color-system-orange-200);--tw-shadow: var(--tw-shadow-colored)}.shadow-fm-color-system-warning-300{--tw-shadow-color: var(--fm-color-system-orange-300);--tw-shadow: var(--tw-shadow-colored)}.shadow-fm-color-system-warning-400{--tw-shadow-color: var(--fm-color-system-orange-400);--tw-shadow: var(--tw-shadow-colored)}.shadow-fm-color-typo-disabled{--tw-shadow-color: var(--fm-color-neutral-gray-200);--tw-shadow: var(--tw-shadow-colored)}.shadow-fm-color-typo-error{--tw-shadow-color: var(--fm-color-system-red-400);--tw-shadow: var(--tw-shadow-colored)}.shadow-fm-color-typo-info{--tw-shadow-color: var(--fm-color-system-blue-300);--tw-shadow: var(--tw-shadow-colored)}.shadow-fm-color-typo-primary{--tw-shadow-color: var(--fm-color-neutral-gray-500);--tw-shadow: var(--tw-shadow-colored)}.shadow-fm-color-typo-secondary{--tw-shadow-color: var(--fm-color-neutral-gray-400);--tw-shadow: var(--tw-shadow-colored)}.shadow-fm-color-typo-success{--tw-shadow-color: var(--fm-color-system-green-300);--tw-shadow: var(--tw-shadow-colored)}.shadow-fm-color-typo-tertiary{--tw-shadow-color: var(--fm-color-neutral-gray-300);--tw-shadow: var(--tw-shadow-colored)}.shadow-fm-color-typo-warning{--tw-shadow-color: var(--fm-color-system-orange-300);--tw-shadow: var(--tw-shadow-colored)}.shadow-fm-color-typo-white{--tw-shadow-color: var(--fm-color-neutral-white);--tw-shadow: var(--tw-shadow-colored)}.outline{outline-style:solid}.outline-1{outline-width:1px}.outline-2{outline-width:2px}.-outline-offset-1{outline-offset:-1px}.outline-fm-color-neutral-black{outline-color:var(--fm-color-neutral-gray-500)}.outline-fm-color-neutral-gray-100{outline-color:var(--fm-color-neutral-gray-100)}.outline-fm-color-neutral-gray-200{outline-color:var(--fm-color-neutral-gray-200)}.outline-fm-color-neutral-gray-300{outline-color:var(--fm-color-neutral-gray-300)}.outline-fm-color-neutral-gray-400{outline-color:var(--fm-color-neutral-gray-400)}.outline-fm-color-neutral-white{outline-color:var(--fm-color-neutral-white)}.outline-fm-color-opacity-lg{outline-color:var(--fm-color-opacity-lg)}.outline-fm-color-opacity-md{outline-color:var(--fm-color-opacity-md)}.outline-fm-color-opacity-sm{outline-color:var(--fm-color-opacity-sm)}.outline-fm-color-overlay-background{outline-color:var(--fm-color-overlay)}.outline-fm-color-primary{outline-color:var(--fm-color-primary)}.outline-fm-color-secondary-blueberry{outline-color:var(--fm-color-secondary-blueberry)}.outline-fm-color-secondary-citrus{outline-color:var(--fm-color-secondary-citrus)}.outline-fm-color-secondary-cocoa{outline-color:var(--fm-color-secondary-cocoa)}.outline-fm-color-secondary-halite{outline-color:var(--fm-color-secondary-halite)}.outline-fm-color-secondary-macaron{outline-color:var(--fm-color-secondary-macaron)}.outline-fm-color-secondary-mint{outline-color:var(--fm-color-secondary-mint)}.outline-fm-color-secondary-mustard{outline-color:var(--fm-color-secondary-mustard)}.outline-fm-color-secondary-plum{outline-color:var(--fm-color-secondary-plum)}.outline-fm-color-secondary-salmon{outline-color:var(--fm-color-secondary-salmon)}.outline-fm-color-secondary-tuna{outline-color:var(--fm-color-secondary-tuna)}.outline-fm-color-system-error-100{outline-color:var(--fm-color-system-red-100)}.outline-fm-color-system-error-200{outline-color:var(--fm-color-system-red-200)}.outline-fm-color-system-error-300{outline-color:var(--fm-color-system-red-300)}.outline-fm-color-system-error-400{outline-color:var(--fm-color-system-red-400)}.outline-fm-color-system-info-100{outline-color:var(--fm-color-system-blue-100)}.outline-fm-color-system-info-200{outline-color:var(--fm-color-system-blue-200)}.outline-fm-color-system-info-300{outline-color:var(--fm-color-system-blue-300)}.outline-fm-color-system-info-400{outline-color:var(--fm-color-system-blue-400)}.outline-fm-color-system-success-100{outline-color:var(--fm-color-system-green-100)}.outline-fm-color-system-success-200{outline-color:var(--fm-color-system-green-200)}.outline-fm-color-system-success-300{outline-color:var(--fm-color-system-green-300)}.outline-fm-color-system-success-400{outline-color:var(--fm-color-system-green-400)}.outline-fm-color-system-warning-100{outline-color:var(--fm-color-system-orange-100)}.outline-fm-color-system-warning-200{outline-color:var(--fm-color-system-orange-200)}.outline-fm-color-system-warning-300{outline-color:var(--fm-color-system-orange-300)}.outline-fm-color-system-warning-400{outline-color:var(--fm-color-system-orange-400)}.outline-fm-color-typo-disabled{outline-color:var(--fm-color-neutral-gray-200)}.outline-fm-color-typo-error{outline-color:var(--fm-color-system-red-400)}.outline-fm-color-typo-info{outline-color:var(--fm-color-system-blue-300)}.outline-fm-color-typo-primary{outline-color:var(--fm-color-neutral-gray-500)}.outline-fm-color-typo-secondary{outline-color:var(--fm-color-neutral-gray-400)}.outline-fm-color-typo-success{outline-color:var(--fm-color-system-green-300)}.outline-fm-color-typo-tertiary{outline-color:var(--fm-color-neutral-gray-300)}.outline-fm-color-typo-warning{outline-color:var(--fm-color-system-orange-300)}.outline-fm-color-typo-white{outline-color:var(--fm-color-neutral-white)}.ring-fm-color-neutral-black{--tw-ring-color: var(--fm-color-neutral-gray-500)}.ring-fm-color-neutral-gray-100{--tw-ring-color: var(--fm-color-neutral-gray-100)}.ring-fm-color-neutral-gray-200{--tw-ring-color: var(--fm-color-neutral-gray-200)}.ring-fm-color-neutral-gray-300{--tw-ring-color: var(--fm-color-neutral-gray-300)}.ring-fm-color-neutral-gray-400{--tw-ring-color: var(--fm-color-neutral-gray-400)}.ring-fm-color-neutral-white{--tw-ring-color: var(--fm-color-neutral-white)}.ring-fm-color-opacity-lg{--tw-ring-color: var(--fm-color-opacity-lg)}.ring-fm-color-opacity-md{--tw-ring-color: var(--fm-color-opacity-md)}.ring-fm-color-opacity-sm{--tw-ring-color: var(--fm-color-opacity-sm)}.ring-fm-color-overlay-background{--tw-ring-color: var(--fm-color-overlay)}.ring-fm-color-primary{--tw-ring-color: var(--fm-color-primary)}.ring-fm-color-secondary-blueberry{--tw-ring-color: var(--fm-color-secondary-blueberry)}.ring-fm-color-secondary-citrus{--tw-ring-color: var(--fm-color-secondary-citrus)}.ring-fm-color-secondary-cocoa{--tw-ring-color: var(--fm-color-secondary-cocoa)}.ring-fm-color-secondary-halite{--tw-ring-color: var(--fm-color-secondary-halite)}.ring-fm-color-secondary-macaron{--tw-ring-color: var(--fm-color-secondary-macaron)}.ring-fm-color-secondary-mint{--tw-ring-color: var(--fm-color-secondary-mint)}.ring-fm-color-secondary-mustard{--tw-ring-color: var(--fm-color-secondary-mustard)}.ring-fm-color-secondary-plum{--tw-ring-color: var(--fm-color-secondary-plum)}.ring-fm-color-secondary-salmon{--tw-ring-color: var(--fm-color-secondary-salmon)}.ring-fm-color-secondary-tuna{--tw-ring-color: var(--fm-color-secondary-tuna)}.ring-fm-color-system-error-100{--tw-ring-color: var(--fm-color-system-red-100)}.ring-fm-color-system-error-200{--tw-ring-color: var(--fm-color-system-red-200)}.ring-fm-color-system-error-300{--tw-ring-color: var(--fm-color-system-red-300)}.ring-fm-color-system-error-400{--tw-ring-color: var(--fm-color-system-red-400)}.ring-fm-color-system-info-100{--tw-ring-color: var(--fm-color-system-blue-100)}.ring-fm-color-system-info-200{--tw-ring-color: var(--fm-color-system-blue-200)}.ring-fm-color-system-info-300{--tw-ring-color: var(--fm-color-system-blue-300)}.ring-fm-color-system-info-400{--tw-ring-color: var(--fm-color-system-blue-400)}.ring-fm-color-system-success-100{--tw-ring-color: var(--fm-color-system-green-100)}.ring-fm-color-system-success-200{--tw-ring-color: var(--fm-color-system-green-200)}.ring-fm-color-system-success-300{--tw-ring-color: var(--fm-color-system-green-300)}.ring-fm-color-system-success-400{--tw-ring-color: var(--fm-color-system-green-400)}.ring-fm-color-system-warning-100{--tw-ring-color: var(--fm-color-system-orange-100)}.ring-fm-color-system-warning-200{--tw-ring-color: var(--fm-color-system-orange-200)}.ring-fm-color-system-warning-300{--tw-ring-color: var(--fm-color-system-orange-300)}.ring-fm-color-system-warning-400{--tw-ring-color: var(--fm-color-system-orange-400)}.ring-fm-color-typo-disabled{--tw-ring-color: var(--fm-color-neutral-gray-200)}.ring-fm-color-typo-error{--tw-ring-color: var(--fm-color-system-red-400)}.ring-fm-color-typo-info{--tw-ring-color: var(--fm-color-system-blue-300)}.ring-fm-color-typo-primary{--tw-ring-color: var(--fm-color-neutral-gray-500)}.ring-fm-color-typo-secondary{--tw-ring-color: var(--fm-color-neutral-gray-400)}.ring-fm-color-typo-success{--tw-ring-color: var(--fm-color-system-green-300)}.ring-fm-color-typo-tertiary{--tw-ring-color: var(--fm-color-neutral-gray-300)}.ring-fm-color-typo-warning{--tw-ring-color: var(--fm-color-system-orange-300)}.ring-fm-color-typo-white{--tw-ring-color: var(--fm-color-neutral-white)}.ring-offset-fm-color-neutral-black{--tw-ring-offset-color: var(--fm-color-neutral-gray-500)}.ring-offset-fm-color-neutral-gray-100{--tw-ring-offset-color: var(--fm-color-neutral-gray-100)}.ring-offset-fm-color-neutral-gray-200{--tw-ring-offset-color: var(--fm-color-neutral-gray-200)}.ring-offset-fm-color-neutral-gray-300{--tw-ring-offset-color: var(--fm-color-neutral-gray-300)}.ring-offset-fm-color-neutral-gray-400{--tw-ring-offset-color: var(--fm-color-neutral-gray-400)}.ring-offset-fm-color-neutral-white{--tw-ring-offset-color: var(--fm-color-neutral-white)}.ring-offset-fm-color-opacity-lg{--tw-ring-offset-color: var(--fm-color-opacity-lg)}.ring-offset-fm-color-opacity-md{--tw-ring-offset-color: var(--fm-color-opacity-md)}.ring-offset-fm-color-opacity-sm{--tw-ring-offset-color: var(--fm-color-opacity-sm)}.ring-offset-fm-color-overlay-background{--tw-ring-offset-color: var(--fm-color-overlay)}.ring-offset-fm-color-primary{--tw-ring-offset-color: var(--fm-color-primary)}.ring-offset-fm-color-secondary-blueberry{--tw-ring-offset-color: var(--fm-color-secondary-blueberry)}.ring-offset-fm-color-secondary-citrus{--tw-ring-offset-color: var(--fm-color-secondary-citrus)}.ring-offset-fm-color-secondary-cocoa{--tw-ring-offset-color: var(--fm-color-secondary-cocoa)}.ring-offset-fm-color-secondary-halite{--tw-ring-offset-color: var(--fm-color-secondary-halite)}.ring-offset-fm-color-secondary-macaron{--tw-ring-offset-color: var(--fm-color-secondary-macaron)}.ring-offset-fm-color-secondary-mint{--tw-ring-offset-color: var(--fm-color-secondary-mint)}.ring-offset-fm-color-secondary-mustard{--tw-ring-offset-color: var(--fm-color-secondary-mustard)}.ring-offset-fm-color-secondary-plum{--tw-ring-offset-color: var(--fm-color-secondary-plum)}.ring-offset-fm-color-secondary-salmon{--tw-ring-offset-color: var(--fm-color-secondary-salmon)}.ring-offset-fm-color-secondary-tuna{--tw-ring-offset-color: var(--fm-color-secondary-tuna)}.ring-offset-fm-color-system-error-100{--tw-ring-offset-color: var(--fm-color-system-red-100)}.ring-offset-fm-color-system-error-200{--tw-ring-offset-color: var(--fm-color-system-red-200)}.ring-offset-fm-color-system-error-300{--tw-ring-offset-color: var(--fm-color-system-red-300)}.ring-offset-fm-color-system-error-400{--tw-ring-offset-color: var(--fm-color-system-red-400)}.ring-offset-fm-color-system-info-100{--tw-ring-offset-color: var(--fm-color-system-blue-100)}.ring-offset-fm-color-system-info-200{--tw-ring-offset-color: var(--fm-color-system-blue-200)}.ring-offset-fm-color-system-info-300{--tw-ring-offset-color: var(--fm-color-system-blue-300)}.ring-offset-fm-color-system-info-400{--tw-ring-offset-color: var(--fm-color-system-blue-400)}.ring-offset-fm-color-system-success-100{--tw-ring-offset-color: var(--fm-color-system-green-100)}.ring-offset-fm-color-system-success-200{--tw-ring-offset-color: var(--fm-color-system-green-200)}.ring-offset-fm-color-system-success-300{--tw-ring-offset-color: var(--fm-color-system-green-300)}.ring-offset-fm-color-system-success-400{--tw-ring-offset-color: var(--fm-color-system-green-400)}.ring-offset-fm-color-system-warning-100{--tw-ring-offset-color: var(--fm-color-system-orange-100)}.ring-offset-fm-color-system-warning-200{--tw-ring-offset-color: var(--fm-color-system-orange-200)}.ring-offset-fm-color-system-warning-300{--tw-ring-offset-color: var(--fm-color-system-orange-300)}.ring-offset-fm-color-system-warning-400{--tw-ring-offset-color: var(--fm-color-system-orange-400)}.ring-offset-fm-color-typo-disabled{--tw-ring-offset-color: var(--fm-color-neutral-gray-200)}.ring-offset-fm-color-typo-error{--tw-ring-offset-color: var(--fm-color-system-red-400)}.ring-offset-fm-color-typo-info{--tw-ring-offset-color: var(--fm-color-system-blue-300)}.ring-offset-fm-color-typo-primary{--tw-ring-offset-color: var(--fm-color-neutral-gray-500)}.ring-offset-fm-color-typo-secondary{--tw-ring-offset-color: var(--fm-color-neutral-gray-400)}.ring-offset-fm-color-typo-success{--tw-ring-offset-color: var(--fm-color-system-green-300)}.ring-offset-fm-color-typo-tertiary{--tw-ring-offset-color: var(--fm-color-neutral-gray-300)}.ring-offset-fm-color-typo-warning{--tw-ring-offset-color: var(--fm-color-system-orange-300)}.ring-offset-fm-color-typo-white{--tw-ring-offset-color: var(--fm-color-neutral-white)}.blur{--tw-blur: blur(8px);filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-all{transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-opacity{transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.ease-in{transition-timing-function:cubic-bezier(.4,0,1,1)}.ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}.ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)}.content-\[\'\'\]{--tw-content: "";content:var(--tw-content)}.no-scrollbar::-webkit-scrollbar{display:none}.no-scrollbar{-ms-overflow-style:none;scrollbar-width:none}.before\:bg-fm-color-system-info-100:before{content:var(--tw-content);background-color:var(--fm-color-system-blue-100)}.before\:bg-fm-color-system-success-100:before{content:var(--tw-content);background-color:var(--fm-color-system-green-100)}.before\:bg-fm-color-system-warning-100:before{content:var(--tw-content);background-color:var(--fm-color-system-orange-100)}.after\:bg-fm-color-system-info-100:after{content:var(--tw-content);background-color:var(--fm-color-system-blue-100)}.after\:bg-fm-color-system-warning-100:after{content:var(--tw-content);background-color:var(--fm-color-system-orange-100)}.last\:border-r-0:last-child{border-right-width:0px}.empty\:hidden:empty{display:none}.hover\:bg-fm-color-neutral-gray-100:hover{background-color:var(--fm-color-neutral-gray-100)}.hover\:bg-fm-color-neutral-gray-200:hover{background-color:var(--fm-color-neutral-gray-200)}.hover\:bg-fm-color-neutral-white:hover{background-color:var(--fm-color-neutral-white)}.hover\:bg-fm-color-opacity-sm:hover{background-color:var(--fm-color-opacity-sm)}.hover\:bg-fm-color-system-warning-100:hover{background-color:var(--fm-color-system-orange-100)}.focus-visible\:bg-fm-color-opacity-md:focus-visible{background-color:var(--fm-color-opacity-md)}.focus-visible\:outline-none:focus-visible{outline:2px solid transparent;outline-offset:2px}@media (min-width: 0px) and (max-width: 647px){.xs\:inline{display:inline}.xs\:flex{display:flex}.xs\:hidden{display:none}.xs\:h-\[100\%\]{height:100%}.xs\:max-h-\[unset\]{max-height:unset}.xs\:w-\[100\%\],.xs\:w-full{width:100%}.xs\:max-w-\[unset\]{max-width:unset}.xs\:flex-col-reverse{flex-direction:column-reverse}}@media (min-width: 648px) and (max-width: 959px){.sm\:inline{display:inline}.sm\:hidden{display:none}.sm\:h-\[100\%\]{height:100%}.sm\:max-h-\[unset\]{max-height:unset}.sm\:w-\[100\%\],.sm\:w-full{width:100%}.sm\:max-w-\[unset\]{max-width:unset}.sm\:-translate-y-full{--tw-translate-y: -100%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.sm\:flex-col-reverse{flex-direction:column-reverse}}@media (min-width: 960px) and (max-width: 1247px){.md\:h-\[100\%\]{height:100%}.md\:max-h-\[unset\]{max-height:unset}.md\:w-\[100\%\]{width:100%}.md\:max-w-\[unset\]{max-width:unset}.md\:-translate-y-full{--tw-translate-y: -100%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}}.vue-recycle-scroller{position:relative}.vue-recycle-scroller.direction-vertical:not(.page-mode){overflow-y:auto}.vue-recycle-scroller.direction-horizontal:not(.page-mode){overflow-x:auto}.vue-recycle-scroller.direction-horizontal{display:-webkit-box;display:-ms-flexbox;display:flex}.vue-recycle-scroller__slot{-webkit-box-flex:1;-ms-flex:auto 0 0px;flex:auto 0 0}.vue-recycle-scroller__item-wrapper{-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;position:relative}.vue-recycle-scroller.ready .vue-recycle-scroller__item-view{position:absolute;top:0;left:0;will-change:transform}.vue-recycle-scroller.direction-vertical .vue-recycle-scroller__item-wrapper{width:100%}.vue-recycle-scroller.direction-horizontal .vue-recycle-scroller__item-wrapper{height:100%}.vue-recycle-scroller.ready.direction-vertical .vue-recycle-scroller__item-view{width:100%}.vue-recycle-scroller.ready.direction-horizontal .vue-recycle-scroller__item-view{height:100%}.resize-observer[data-v-b329ee4c]{position:absolute;top:0;left:0;z-index:-1;width:100%;height:100%;border:none;background-color:transparent;pointer-events:none;display:block;overflow:hidden;opacity:0}.resize-observer[data-v-b329ee4c] object{display:block;position:absolute;top:0;left:0;height:100%;width:100%;overflow:hidden;pointer-events:none;z-index:-1}