lawgic-dev-kit 0.21.6 → 0.22.4

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 (299) hide show
  1. package/README.md +54 -54
  2. package/dist/_virtual/index2.js +2 -3
  3. package/dist/_virtual/index3.js +3 -3
  4. package/dist/_virtual/index4.js +3 -5
  5. package/dist/_virtual/index5.js +5 -2
  6. package/dist/components/atoms/Checkbox/Checkbox.d.ts +3 -2
  7. package/dist/components/atoms/Checkbox/Checkbox.js +43 -30
  8. package/dist/components/atoms/Chip/Chip.d.ts +13 -0
  9. package/dist/components/atoms/Chip/Chip.js +32 -0
  10. package/dist/components/atoms/Chip/index.d.ts +1 -0
  11. package/dist/components/atoms/InformationDisclaimer/InformationDisclaimer.js +17 -30
  12. package/dist/components/atoms/InformationDisclaimer/InformationDisclaimer.styles.d.ts +8 -2
  13. package/dist/components/atoms/InformationDisclaimer/InformationDisclaimer.styles.js +46 -12
  14. package/dist/components/atoms/InformationDisclaimer/InformationDisclaimer.types.d.ts +3 -3
  15. package/dist/components/atoms/LoadingSpinner/LoadingSpinner.d.ts +1 -1
  16. package/dist/components/atoms/LoadingSpinner/LoadingSpinner.js +56 -12
  17. package/dist/components/atoms/PasswordInput/PasswordInput.d.ts +1 -1
  18. package/dist/components/atoms/PasswordInput/PasswordInput.js +57 -41
  19. package/dist/components/atoms/PasswordInput/PasswordInput.types.d.ts +1 -0
  20. package/dist/components/atoms/SelectInput/SelectInput.d.ts +1 -1
  21. package/dist/components/atoms/SelectInput/SelectInput.js +125 -140
  22. package/dist/components/atoms/SelectInput/SelectInput.types.d.ts +2 -0
  23. package/dist/components/atoms/StepIndicator/StepIndicator.d.ts +5 -0
  24. package/dist/components/atoms/StepIndicator/StepIndicator.js +58 -0
  25. package/dist/components/atoms/StepIndicator/index.d.ts +1 -0
  26. package/dist/components/atoms/TextInput/TextInput.js +33 -33
  27. package/dist/components/atoms/TextInput/TextInput.types.d.ts +1 -1
  28. package/dist/components/atoms/Toast/Toast.d.ts +2 -3
  29. package/dist/components/atoms/Toast/Toast.js +46 -53
  30. package/dist/components/atoms/UncontrolledSelector/UncontrolledSelector.d.ts +1 -0
  31. package/dist/components/atoms/UncontrolledSelector/UncontrolledSelector.js +98 -84
  32. package/dist/components/atoms/UncontrolledTextInput/UncontrolledTextInput.js +29 -35
  33. package/dist/components/atoms/UncontrolledTextInput/UncontrolledTextInput.types.d.ts +1 -1
  34. package/dist/components/atoms/UploadContainer/UploadContainer.js +4 -4
  35. package/dist/components/atoms/index.d.ts +2 -1
  36. package/dist/components/molecules/CalendarSelector/CalendarSelector.js +8 -8
  37. package/dist/components/molecules/DateInput/DateInput.d.ts +1 -1
  38. package/dist/components/molecules/EmptyState/EmptyState.d.ts +9 -0
  39. package/dist/components/molecules/EmptyState/EmptyState.js +16 -0
  40. package/dist/components/molecules/EmptyState/index.d.ts +1 -0
  41. package/dist/components/molecules/MultiSelectDropdown/MultiSelectDropdown.d.ts +24 -0
  42. package/dist/components/molecules/MultiSelectDropdown/MultiSelectDropdown.js +208 -0
  43. package/dist/components/molecules/MultiSelectDropdown/index.d.ts +1 -0
  44. package/dist/components/molecules/SingleSelectDropdown/SingleSelectDropdown.d.ts +25 -0
  45. package/dist/components/molecules/SingleSelectDropdown/SingleSelectDropdown.js +212 -0
  46. package/dist/components/molecules/SingleSelectDropdown/index.d.ts +1 -0
  47. package/dist/components/molecules/Stepper/Stepper.d.ts +1 -1
  48. package/dist/components/molecules/Stepper/Stepper.js +78 -231
  49. package/dist/components/molecules/Stepper/Stepper.styles.d.ts +7 -3
  50. package/dist/components/molecules/Stepper/Stepper.styles.js +23 -15
  51. package/dist/components/molecules/Tooltip/Tooltip.d.ts +20 -0
  52. package/dist/components/molecules/Tooltip/Tooltip.js +41 -0
  53. package/dist/components/molecules/UncontrolledDateInput/UncontrolledDateInput.d.ts +1 -1
  54. package/dist/components/molecules/index.d.ts +4 -0
  55. package/dist/index.js +139 -129
  56. package/dist/lawgic-dev-kit.css +1 -1
  57. package/dist/lawgic-dev-kit.umd.js +109 -97
  58. package/dist/node_modules/@floating-ui/react/dist/floating-ui.react.js +396 -712
  59. package/dist/node_modules/@floating-ui/react/dist/floating-ui.react.utils.js +33 -81
  60. package/dist/node_modules/@fortawesome/free-solid-svg-icons/index.js +7 -2
  61. package/dist/node_modules/@fortawesome/pro-light-svg-icons/index.js +14 -49
  62. package/dist/node_modules/@fortawesome/pro-regular-svg-icons/index.js +32 -12
  63. package/dist/node_modules/@fortawesome/pro-solid-svg-icons/index.js +14 -9
  64. package/dist/node_modules/prop-types/index.js +1 -1
  65. package/dist/node_modules/yup/index.esm.js +3 -3
  66. package/dist/src/Root.d.ts +2 -0
  67. package/dist/src/app.d.ts +1 -0
  68. package/dist/src/components/atoms/ActionButton/ActionButton.d.ts +11 -0
  69. package/dist/src/components/atoms/ActionButton/index.d.ts +1 -0
  70. package/dist/src/components/atoms/AsyncToast/index.d.ts +11 -0
  71. package/dist/src/components/atoms/Avatar/Avatar.d.ts +11 -0
  72. package/dist/src/components/atoms/Avatar/index.d.ts +1 -0
  73. package/dist/src/components/atoms/BoxContainer/BoxContainer.d.ts +4 -0
  74. package/dist/src/components/atoms/BoxContainer/BoxContainer.types.d.ts +6 -0
  75. package/dist/src/components/atoms/BoxContainer/index.d.ts +1 -0
  76. package/dist/src/components/atoms/Button/Button.d.ts +4 -0
  77. package/dist/src/components/atoms/Button/Button.styles.d.ts +26 -0
  78. package/dist/src/components/atoms/Button/Button.types.d.ts +12 -0
  79. package/dist/src/components/atoms/Button/index.d.ts +1 -0
  80. package/dist/src/components/atoms/CenterModal/CenterModal.d.ts +4 -0
  81. package/dist/src/components/atoms/CenterModal/CenterModal.types.d.ts +6 -0
  82. package/dist/src/components/atoms/CenterModal/index.d.ts +1 -0
  83. package/dist/src/components/atoms/Checkbox/Checkbox.d.ts +13 -0
  84. package/dist/src/components/atoms/Checkbox/index.d.ts +1 -0
  85. package/dist/src/components/atoms/Chip/Chip.d.ts +13 -0
  86. package/dist/src/components/atoms/Chip/index.d.ts +1 -0
  87. package/dist/src/components/atoms/CircleProgress/CircleProgress.d.ts +22 -0
  88. package/dist/src/components/atoms/CircleProgress/index.d.ts +1 -0
  89. package/dist/src/components/atoms/ClickAwayListener/ClickAwayListener.d.ts +4 -0
  90. package/dist/src/components/atoms/ClickAwayListener/ClickAwayListener.types.d.ts +7 -0
  91. package/dist/src/components/atoms/ClickAwayListener/index.d.ts +1 -0
  92. package/dist/src/components/atoms/CountryInput/CountryInput.d.ts +4 -0
  93. package/dist/src/components/atoms/CountryInput/CountryInput.types.d.ts +37 -0
  94. package/dist/src/components/atoms/CountryInput/index.d.ts +1 -0
  95. package/dist/src/components/atoms/CountryLabel/CountryLabel.d.ts +6 -0
  96. package/dist/src/components/atoms/CountryLabel/index.d.ts +1 -0
  97. package/dist/src/components/atoms/CountrySelectInput/CountryDropdown.d.ts +4 -0
  98. package/dist/src/components/atoms/CountrySelectInput/CountryDropdown.types.d.ts +36 -0
  99. package/dist/src/components/atoms/CountrySelectInput/index.d.ts +1 -0
  100. package/dist/src/components/atoms/Divider/Divider.d.ts +7 -0
  101. package/dist/src/components/atoms/Divider/index.d.ts +1 -0
  102. package/dist/src/components/atoms/FilterPill/FilterPill.d.ts +8 -0
  103. package/dist/src/components/atoms/FilterPill/index.d.ts +1 -0
  104. package/dist/src/components/atoms/FloatingCard/FloatingCard.d.ts +4 -0
  105. package/dist/{components/atoms/Tooltip/Tooltip.types.d.ts → src/components/atoms/FloatingCard/FloatingCard.types.d.ts} +3 -3
  106. package/dist/src/components/atoms/FloatingCard/index.d.ts +1 -0
  107. package/dist/src/components/atoms/IconButton/IconButton.d.ts +4 -0
  108. package/dist/src/components/atoms/IconButton/IconButton.styles.d.ts +10 -0
  109. package/dist/src/components/atoms/IconButton/IconButton.types.d.ts +11 -0
  110. package/dist/src/components/atoms/IconButton/index.d.ts +1 -0
  111. package/dist/src/components/atoms/ImageProfileInput/ImageProfileInput.d.ts +4 -0
  112. package/dist/src/components/atoms/ImageProfileInput/ImageProfileInput.types.d.ts +12 -0
  113. package/dist/src/components/atoms/ImageProfileInput/ImageProfileInput.validators.d.ts +9 -0
  114. package/dist/src/components/atoms/ImageProfileInput/index.d.ts +2 -0
  115. package/dist/src/components/atoms/IndexedStep/IndexedStep.d.ts +9 -0
  116. package/dist/src/components/atoms/IndexedStep/index.d.ts +1 -0
  117. package/dist/src/components/atoms/InfoCard/InfoCard.d.ts +3 -0
  118. package/dist/src/components/atoms/InfoCard/InfoCard.types.d.ts +6 -0
  119. package/dist/src/components/atoms/InfoCard/index.d.ts +1 -0
  120. package/dist/src/components/atoms/InformationDisclaimer/InformationDisclaimer.d.ts +4 -0
  121. package/dist/src/components/atoms/InformationDisclaimer/InformationDisclaimer.styles.d.ts +9 -0
  122. package/dist/src/components/atoms/InformationDisclaimer/InformationDisclaimer.types.d.ts +10 -0
  123. package/dist/src/components/atoms/InformationDisclaimer/index.d.ts +1 -0
  124. package/dist/src/components/atoms/LoadingProgress/LoadingProgress.d.ts +13 -0
  125. package/dist/src/components/atoms/LoadingProgress/index.d.ts +1 -0
  126. package/dist/src/components/atoms/LoadingSpinner/LoadingSpinner.d.ts +8 -0
  127. package/dist/src/components/atoms/LoadingSpinner/index.d.ts +1 -0
  128. package/dist/src/components/atoms/PasswordInput/PasswordInput.d.ts +5 -0
  129. package/dist/src/components/atoms/PasswordInput/PasswordInput.types.d.ts +12 -0
  130. package/dist/src/components/atoms/PasswordInput/index.d.ts +1 -0
  131. package/dist/src/components/atoms/PhoneInput/PhoneInput.d.ts +5 -0
  132. package/dist/src/components/atoms/PhoneInput/PhoneInput.types.d.ts +12 -0
  133. package/dist/src/components/atoms/PhoneInput/index.d.ts +1 -0
  134. package/dist/src/components/atoms/Pill/Pill.d.ts +8 -0
  135. package/dist/src/components/atoms/Pill/index.d.ts +1 -0
  136. package/dist/src/components/atoms/ProgressBar/ProgressBar.d.ts +3 -0
  137. package/dist/src/components/atoms/ProgressBar/ProgressBar.styles.d.ts +7 -0
  138. package/dist/src/components/atoms/ProgressBar/ProgressBar.types.d.ts +6 -0
  139. package/dist/src/components/atoms/ProgressBar/index.d.ts +1 -0
  140. package/dist/src/components/atoms/SearchBar/index.d.ts +2 -0
  141. package/dist/src/components/atoms/SectionButton/SectionButton.d.ts +12 -0
  142. package/dist/src/components/atoms/SectionButton/desktop/SectionButton.d.ts +3 -0
  143. package/dist/src/components/atoms/SectionButton/desktop/SectionButton.styles.d.ts +2 -0
  144. package/dist/src/components/atoms/SectionButton/desktop/SectionButton.types.d.ts +37 -0
  145. package/dist/src/components/atoms/SectionButton/desktop/index.d.ts +2 -0
  146. package/dist/src/components/atoms/SectionButton/index.d.ts +1 -0
  147. package/dist/src/components/atoms/SectionButton/mobile/MobileSectionButton.styles.d.ts +3 -0
  148. package/dist/src/components/atoms/SectionButton/mobile/SectionButton.d.ts +3 -0
  149. package/dist/src/components/atoms/SectionButton/mobile/SectionButton.types.d.ts +37 -0
  150. package/dist/src/components/atoms/SectionButton/mobile/index.d.ts +2 -0
  151. package/dist/src/components/atoms/SelectInput/SelectInput.d.ts +1 -1
  152. package/dist/src/components/atoms/SelectInput/SelectInput.types.d.ts +2 -0
  153. package/dist/src/components/atoms/SelectInput/index.d.ts +1 -0
  154. package/dist/src/components/atoms/SidebarButton/SidebarButton.d.ts +13 -0
  155. package/dist/src/components/atoms/SidebarButton/SidebarButton.styles.d.ts +9 -0
  156. package/dist/src/components/atoms/SidebarButton/index.d.ts +1 -0
  157. package/dist/src/components/atoms/StepIndicator/StepIndicator.d.ts +5 -0
  158. package/dist/src/components/atoms/StepIndicator/index.d.ts +1 -0
  159. package/dist/src/components/atoms/Switch/Switch.d.ts +7 -0
  160. package/dist/src/components/atoms/Switch/index.d.ts +1 -0
  161. package/dist/src/components/atoms/Tab/Tab.d.ts +3 -0
  162. package/dist/src/components/atoms/Tab/Tab.styles.d.ts +6 -0
  163. package/dist/src/components/atoms/Tab/Tab.types.d.ts +11 -0
  164. package/dist/src/components/atoms/Tab/index.d.ts +1 -0
  165. package/dist/src/components/atoms/TextButton/TextButton.d.ts +4 -0
  166. package/dist/src/components/atoms/TextButton/TextButton.styles.d.ts +2 -0
  167. package/dist/src/components/atoms/TextButton/TextButton.types.d.ts +6 -0
  168. package/dist/src/components/atoms/TextButton/index.d.ts +1 -0
  169. package/dist/src/components/atoms/TextInput/TextInput.d.ts +5 -0
  170. package/dist/src/components/atoms/TextInput/TextInput.types.d.ts +13 -0
  171. package/dist/src/components/atoms/TextInput/index.d.ts +1 -0
  172. package/dist/src/components/atoms/TextStaticInput/TextStaticInput.d.ts +3 -0
  173. package/dist/src/components/atoms/TextStaticInput/TextStaticInput.types.d.ts +5 -0
  174. package/dist/src/components/atoms/TextStaticInput/index.d.ts +1 -0
  175. package/dist/src/components/atoms/ThresholdCircleProgress/ThresholdCircleProgress.d.ts +4 -0
  176. package/dist/src/components/atoms/ThresholdCircleProgress/ThresholdCircleProgress.types.d.ts +30 -0
  177. package/dist/src/components/atoms/ThresholdCircleProgress/index.d.ts +1 -0
  178. package/dist/src/components/atoms/ThresholdProgressBar/ThresholdProgressBar.d.ts +4 -0
  179. package/dist/src/components/atoms/ThresholdProgressBar/ThresholdProgressBar.types.d.ts +22 -0
  180. package/dist/src/components/atoms/ThresholdProgressBar/index.d.ts +1 -0
  181. package/dist/src/components/atoms/Toast/Toast.d.ts +20 -0
  182. package/dist/src/components/atoms/Toast/index.d.ts +1 -0
  183. package/dist/src/components/atoms/UncontrolledSelector/UncontrolledSelector.d.ts +1 -0
  184. package/dist/src/components/atoms/UncontrolledSelector/index.d.ts +1 -0
  185. package/dist/src/components/atoms/UncontrolledTextInput/UncontrolledTextInput.d.ts +4 -0
  186. package/dist/src/components/atoms/UncontrolledTextInput/UncontrolledTextInput.types.d.ts +14 -0
  187. package/dist/src/components/atoms/UncontrolledTextInput/index.d.ts +1 -0
  188. package/dist/src/components/atoms/UploadContainer/UploadContainer.d.ts +4 -0
  189. package/dist/src/components/atoms/UploadContainer/UploadContainer.types.d.ts +37 -0
  190. package/dist/src/components/atoms/UploadContainer/index.d.ts +1 -0
  191. package/dist/src/components/atoms/index.d.ts +43 -0
  192. package/dist/src/components/index.d.ts +3 -0
  193. package/dist/src/components/molecules/AlertModal/AlertModal.d.ts +3 -0
  194. package/dist/src/components/molecules/AlertModal/AlertModal.types.d.ts +9 -0
  195. package/dist/src/components/molecules/AlertModal/index.d.ts +2 -0
  196. package/dist/src/components/molecules/AutocompleteInput/AutocompleteInput.d.ts +3 -0
  197. package/dist/src/components/molecules/AutocompleteInput/AutocompleteInput.types.d.ts +28 -0
  198. package/dist/src/components/molecules/AutocompleteInput/index.d.ts +1 -0
  199. package/dist/src/components/molecules/CalendarSelector/CalendarSelector.d.ts +14 -0
  200. package/dist/src/components/molecules/CalendarSelector/CalendarSelector.styles.d.ts +36 -0
  201. package/dist/src/components/molecules/CalendarSelector/PeriodToggle.d.ts +15 -0
  202. package/dist/src/components/molecules/CalendarSelector/TimeDisplay.d.ts +7 -0
  203. package/dist/src/components/molecules/CalendarSelector/index.d.ts +1 -0
  204. package/dist/src/components/molecules/DateInput/DateInput.d.ts +14 -0
  205. package/dist/src/components/molecules/DateInput/index.d.ts +1 -0
  206. package/dist/src/components/molecules/DialogModal/DialogModal.d.ts +3 -0
  207. package/dist/src/components/molecules/DialogModal/DialogModal.types.d.ts +11 -0
  208. package/dist/src/components/molecules/DialogModal/index.d.ts +1 -0
  209. package/dist/src/components/molecules/Dropdown/Dropdown.d.ts +3 -0
  210. package/dist/src/components/molecules/Dropdown/Dropdown.types.d.ts +9 -0
  211. package/dist/src/components/molecules/Dropdown/index.d.ts +1 -0
  212. package/dist/src/components/molecules/EmptyState/EmptyState.d.ts +9 -0
  213. package/dist/src/components/molecules/EmptyState/index.d.ts +1 -0
  214. package/dist/src/components/molecules/FileUpload/FileUpload.d.ts +4 -0
  215. package/dist/src/components/molecules/FileUpload/FileUpload.types.d.ts +17 -0
  216. package/dist/src/components/molecules/FileUpload/index.d.ts +1 -0
  217. package/dist/src/components/molecules/FiltersMenu/FiltersMenu.d.ts +13 -0
  218. package/dist/src/components/molecules/FiltersMenu/index.d.ts +1 -0
  219. package/dist/src/components/molecules/FloatingMenu/FloatingMenu.d.ts +4 -0
  220. package/dist/src/components/molecules/FloatingMenu/FloatingMenu.types.d.ts +13 -0
  221. package/dist/src/components/molecules/FloatingMenu/index.d.ts +1 -0
  222. package/dist/src/components/molecules/IndexedStepper/IndexedStepper.d.ts +7 -0
  223. package/dist/src/components/molecules/IndexedStepper/index.d.ts +1 -0
  224. package/dist/src/components/molecules/InformationContainer/InformationContainer.d.ts +14 -0
  225. package/dist/src/components/molecules/InformationContainer/index.d.ts +1 -0
  226. package/dist/src/components/molecules/MultiSelectDropdown/MultiSelectDropdown.d.ts +24 -0
  227. package/dist/src/components/molecules/MultiSelectDropdown/index.d.ts +1 -0
  228. package/dist/src/components/molecules/PillsContainer/PillsContainer.d.ts +9 -0
  229. package/dist/src/components/molecules/PillsContainer/index.d.ts +1 -0
  230. package/dist/src/components/molecules/SearchModal/SearchModal.d.ts +4 -0
  231. package/dist/src/components/molecules/SearchModal/SearchModal.types.d.ts +5 -0
  232. package/dist/src/components/molecules/SearchModal/index.d.ts +1 -0
  233. package/dist/src/components/molecules/SideModal/SideModal.d.ts +4 -0
  234. package/dist/src/components/molecules/SideModal/SideModal.types.d.ts +11 -0
  235. package/dist/src/components/molecules/SideModal/index.d.ts +1 -0
  236. package/dist/src/components/molecules/SingleSelectDropdown/SingleSelectDropdown.d.ts +25 -0
  237. package/dist/src/components/molecules/SingleSelectDropdown/index.d.ts +1 -0
  238. package/dist/src/components/molecules/Stepper/Stepper.d.ts +3 -0
  239. package/dist/src/components/molecules/Stepper/Stepper.styles.d.ts +15 -0
  240. package/dist/src/components/molecules/Stepper/index.d.ts +1 -0
  241. package/dist/src/components/molecules/Tabs/Tabs.d.ts +21 -0
  242. package/dist/src/components/molecules/Tabs/index.d.ts +1 -0
  243. package/dist/src/components/molecules/Tooltip/Tooltip.d.ts +20 -0
  244. package/dist/src/components/molecules/Tooltip/index.d.ts +1 -0
  245. package/dist/src/components/molecules/UncontrolledDateInput/UncontrolledDateInput.d.ts +16 -0
  246. package/dist/src/components/molecules/UncontrolledDateInput/index.d.ts +1 -0
  247. package/dist/src/components/molecules/index.d.ts +23 -0
  248. package/dist/src/components/organisms/index.d.ts +1 -0
  249. package/dist/src/constants/countries.d.ts +30 -0
  250. package/dist/src/contexts/index.d.ts +1 -0
  251. package/dist/src/contexts/themeContext.d.ts +3 -0
  252. package/dist/src/hooks/index.d.ts +2 -0
  253. package/dist/src/hooks/useFilterToggler.d.ts +5 -0
  254. package/dist/src/hooks/useTheme.d.ts +1 -0
  255. package/dist/src/index.d.ts +8 -0
  256. package/dist/src/lab/Laboratory.d.ts +2 -0
  257. package/dist/src/lab/LaboratoryLayout.d.ts +5 -0
  258. package/dist/src/lab/index.lab.d.ts +1 -0
  259. package/dist/src/providers/ThemeProvider.d.ts +7 -0
  260. package/dist/src/providers/index.d.ts +1 -0
  261. package/dist/src/themes/default.d.ts +2 -0
  262. package/dist/src/themes/index.d.ts +2 -0
  263. package/dist/src/themes/types.d.ts +6 -0
  264. package/dist/src/types/baseModalProps.d.ts +4 -0
  265. package/dist/src/types/cycles.d.ts +103 -0
  266. package/dist/src/types/display.d.ts +2 -0
  267. package/dist/src/types/fileInfo.d.ts +2 -0
  268. package/dist/src/types/filters.d.ts +22 -0
  269. package/dist/src/types/i18n.d.ts +1 -0
  270. package/dist/src/types/index.d.ts +10 -0
  271. package/dist/src/types/modal.d.ts +34 -0
  272. package/dist/src/types/modalType.d.ts +1 -0
  273. package/dist/src/types/navbarOption.d.ts +7 -0
  274. package/dist/src/types/sidebarOption.d.ts +7 -0
  275. package/dist/src/types/stepper.d.ts +23 -0
  276. package/dist/src/types/styleValues.d.ts +4 -0
  277. package/dist/src/types/toast.d.ts +29 -0
  278. package/dist/src/utils/cycles.d.ts +2 -0
  279. package/dist/src/utils/dates.d.ts +1 -0
  280. package/dist/src/utils/files.d.ts +8 -0
  281. package/dist/src/utils/images.d.ts +1 -0
  282. package/dist/src/utils/index.d.ts +7 -0
  283. package/dist/src/utils/modal.d.ts +13 -0
  284. package/dist/src/utils/renderContentOptions.d.ts +3 -0
  285. package/dist/src/utils/stepper.d.ts +2 -0
  286. package/dist/src/utils/strings.d.ts +2 -0
  287. package/dist/src/utils/toast.d.ts +15 -0
  288. package/dist/types/index.d.ts +1 -0
  289. package/dist/types/stepper.d.ts +23 -0
  290. package/dist/types/toast.d.ts +6 -3
  291. package/dist/utils/stepper.d.ts +2 -0
  292. package/dist/utils/toast.js +3 -3
  293. package/dist/vite-env.d.ts +1 -1
  294. package/dist/vite.config.d.ts +2 -0
  295. package/package.json +157 -157
  296. package/dist/components/atoms/Tooltip/Tooltip.d.ts +0 -4
  297. package/dist/components/atoms/Tooltip/Tooltip.js +0 -121
  298. package/dist/components/molecules/Stepper/Stepper.types.d.ts +0 -9
  299. /package/dist/components/{atoms → molecules}/Tooltip/index.d.ts +0 -0
@@ -0,0 +1,41 @@
1
+ import { j as r } from "../../../_virtual/jsx-runtime.js";
2
+ import { useState as f, useRef as m, useLayoutEffect as u } from "react";
3
+ import { FontAwesomeIcon as h } from "../../../node_modules/@fortawesome/react-fontawesome/index.es.js";
4
+ const y = ({ text: s, children: a, icon: e, location: l = "top", childClassName: d = "" }) => {
5
+ const [p, x] = f(!1), n = m(null), i = {
6
+ top: "bottom-full left-1/2 -translate-x-1/2 mb-2 flex-col",
7
+ bottom: "top-full left-1/2 -translate-x-1/2 mt-2 flex-col-reverse",
8
+ left: "right-full top-1/2 -translate-y-1/2 mr-2 flex-row",
9
+ right: "left-full top-1/2 -translate-y-1/2 ml-2 flex-row-reverse"
10
+ }, b = {
11
+ top: "border-l-[8px] border-l-transparent border-r-[8px] border-r-transparent border-t-[8px] border-t-gray-700",
12
+ bottom: "border-l-[8px] border-l-transparent border-r-[8px] border-r-transparent border-b-[8px] border-b-gray-700",
13
+ left: "border-t-[8px] border-t-transparent border-b-[8px] border-b-transparent border-l-[8px] border-l-gray-700",
14
+ right: "border-t-[8px] border-t-transparent border-b-[8px] border-b-transparent border-r-[8px] border-r-gray-700"
15
+ }, t = () => {
16
+ const o = n.current;
17
+ if (o) {
18
+ const c = o.scrollWidth > o.offsetWidth;
19
+ x(c);
20
+ }
21
+ };
22
+ return u(() => (t(), window.addEventListener("resize", t), () => window.removeEventListener("resize", t)), [s, a]), /* @__PURE__ */ r.jsxs("div", { className: "group relative grid min-w-0 w-full", children: [
23
+ /* @__PURE__ */ r.jsx("div", { ref: n, className: `truncate ${d}`, children: a }),
24
+ p && /* @__PURE__ */ r.jsxs("div", { className: `pointer-events-none absolute flex items-center opacity-0 transition-opacity group-hover:opacity-100 z-50 ${i[l]}`, children: [
25
+ /* @__PURE__ */ r.jsx("div", { className: "bg-gray-700 p-12 rounded-[8px] shadow-xl max-w-[320px] w-max border border-gray-700/50", children: /* @__PURE__ */ r.jsxs("div", { className: `flex items-start ${e ? "gap-8" : "justify-center"}`, children: [
26
+ e && /* @__PURE__ */ r.jsx("div", { className: "flex items-center h-[16px] flex-shrink-0", children: /* @__PURE__ */ r.jsx(
27
+ h,
28
+ {
29
+ icon: e,
30
+ className: "text-[16px] text-gray-100"
31
+ }
32
+ ) }),
33
+ /* @__PURE__ */ r.jsx("p", { className: "text-[12px] text-blue-50 leading-[16px] font-normal text-left", children: s })
34
+ ] }) }),
35
+ /* @__PURE__ */ r.jsx("div", { className: `w-0 h-0 ${b[l]}` })
36
+ ] })
37
+ ] });
38
+ };
39
+ export {
40
+ y as default
41
+ };
@@ -11,6 +11,6 @@ export type UncontrolledDateInputProps = {
11
11
  minDate?: Date;
12
12
  maxDate?: Date;
13
13
  customDisplay?: React.ReactNode;
14
- size?: "sm" | "base";
14
+ size?: "sm" | "md";
15
15
  };
16
16
  export default function UncontrolledDateInput({ currentDate, onDateChange, label, placeholder, error, translatedKey, showTimeSelector, futureDates, pastDates, minDate, maxDate, customDisplay, size, }: UncontrolledDateInputProps): import("react/jsx-runtime").JSX.Element;
@@ -17,3 +17,7 @@ export * from './AutocompleteInput';
17
17
  export * from './PillsContainer';
18
18
  export * from './SideModal';
19
19
  export * from './FiltersMenu';
20
+ export * from './MultiSelectDropdown';
21
+ export * from './SingleSelectDropdown';
22
+ export * from './EmptyState';
23
+ export * from './Tooltip';
package/dist/index.js CHANGED
@@ -1,153 +1,163 @@
1
1
  /* empty css */
2
2
  import { default as a } from "./components/atoms/ActionButton/ActionButton.js";
3
3
  import { AsyncToast as l } from "./components/atoms/AsyncToast/index.js";
4
- import { default as s } from "./components/atoms/Avatar/Avatar.js";
4
+ import { default as d } from "./components/atoms/Avatar/Avatar.js";
5
5
  import { default as m } from "./components/atoms/BoxContainer/BoxContainer.js";
6
6
  import { default as x } from "./components/atoms/Button/Button.js";
7
7
  import { default as i } from "./components/atoms/CenterModal/CenterModal.js";
8
8
  import { default as I } from "./components/atoms/Checkbox/Checkbox.js";
9
- import { default as g } from "./components/atoms/CountryInput/CountryInput.js";
10
- import { default as h } from "./components/atoms/CountryLabel/CountryLabel.js";
11
- import { default as P } from "./components/atoms/CountrySelectInput/CountryDropdown.js";
12
- import { default as M } from "./components/atoms/Divider/Divider.js";
13
- import { default as D } from "./components/atoms/IconButton/IconButton.js";
14
- import { default as A } from "./components/atoms/ImageProfileInput/ImageProfileInput.js";
15
- import { default as b } from "./components/atoms/ImageProfileInput/ImageProfileInput.validators.js";
16
- import { default as U } from "./components/atoms/IndexedStep/IndexedStep.js";
17
- import { default as k } from "./components/atoms/InfoCard/InfoCard.js";
18
- import { default as O } from "./components/atoms/InformationDisclaimer/InformationDisclaimer.js";
19
- import { default as j } from "./components/atoms/LoadingSpinner/LoadingSpinner.js";
20
- import { default as E } from "./components/atoms/PasswordInput/PasswordInput.js";
21
- import { default as H } from "./components/atoms/PhoneInput/PhoneInput.js";
22
- import { default as K } from "./components/atoms/ProgressBar/ProgressBar.js";
23
- import { SearchBar as Q } from "./components/atoms/SearchBar/index.js";
24
- import { default as W } from "./components/atoms/SectionButton/SectionButton.js";
25
- import { default as Y } from "./components/atoms/SelectInput/SelectInput.js";
26
- import { default as _ } from "./components/atoms/SidebarButton/SidebarButton.js";
27
- import { default as oo } from "./components/atoms/Tab/Tab.js";
28
- import { default as to } from "./components/atoms/TextButton/TextButton.js";
29
- import { default as ao } from "./components/atoms/TextInput/TextInput.js";
30
- import { default as lo } from "./components/atoms/TextStaticInput/TextStaticInput.js";
31
- import { default as so } from "./components/atoms/Toast/Toast.js";
32
- import { default as uo } from "./components/atoms/UncontrolledSelector/UncontrolledSelector.js";
33
- import { default as no } from "./components/atoms/UncontrolledTextInput/UncontrolledTextInput.js";
34
- import { default as co } from "./components/atoms/UploadContainer/UploadContainer.js";
35
- import { default as To } from "./components/atoms/Tooltip/Tooltip.js";
36
- import { default as Co } from "./components/atoms/LoadingProgress/LoadingProgress.js";
37
- import { default as So } from "./components/atoms/ThresholdCircleProgress/ThresholdCircleProgress.js";
9
+ import { default as C } from "./components/atoms/Chip/Chip.js";
10
+ import { default as T } from "./components/atoms/CountryInput/CountryInput.js";
11
+ import { default as P } from "./components/atoms/CountryLabel/CountryLabel.js";
12
+ import { default as M } from "./components/atoms/CountrySelectInput/CountryDropdown.js";
13
+ import { default as w } from "./components/atoms/Divider/Divider.js";
14
+ import { default as A } from "./components/atoms/IconButton/IconButton.js";
15
+ import { default as b } from "./components/atoms/ImageProfileInput/ImageProfileInput.js";
16
+ import { default as U } from "./components/atoms/ImageProfileInput/ImageProfileInput.validators.js";
17
+ import { default as k } from "./components/atoms/IndexedStep/IndexedStep.js";
18
+ import { default as E } from "./components/atoms/InfoCard/InfoCard.js";
19
+ import { default as V } from "./components/atoms/InformationDisclaimer/InformationDisclaimer.js";
20
+ import { default as q } from "./components/atoms/LoadingSpinner/LoadingSpinner.js";
21
+ import { default as H } from "./components/atoms/PasswordInput/PasswordInput.js";
22
+ import { default as K } from "./components/atoms/PhoneInput/PhoneInput.js";
23
+ import { default as Q } from "./components/atoms/ProgressBar/ProgressBar.js";
24
+ import { SearchBar as W } from "./components/atoms/SearchBar/index.js";
25
+ import { default as Y } from "./components/atoms/SectionButton/SectionButton.js";
26
+ import { default as _ } from "./components/atoms/SelectInput/SelectInput.js";
27
+ import { default as oo } from "./components/atoms/SidebarButton/SidebarButton.js";
28
+ import { default as to } from "./components/atoms/Tab/Tab.js";
29
+ import { default as ao } from "./components/atoms/TextButton/TextButton.js";
30
+ import { default as lo } from "./components/atoms/TextInput/TextInput.js";
31
+ import { default as so } from "./components/atoms/TextStaticInput/TextStaticInput.js";
32
+ import { default as uo } from "./components/atoms/Toast/Toast.js";
33
+ import { default as no } from "./components/atoms/UncontrolledSelector/UncontrolledSelector.js";
34
+ import { default as co } from "./components/atoms/UncontrolledTextInput/UncontrolledTextInput.js";
35
+ import { default as go } from "./components/atoms/UploadContainer/UploadContainer.js";
36
+ import { default as So } from "./components/atoms/LoadingProgress/LoadingProgress.js";
37
+ import { default as ho } from "./components/atoms/ThresholdCircleProgress/ThresholdCircleProgress.js";
38
38
  import { default as Bo } from "./components/atoms/ThresholdProgressBar/ThresholdProgressBar.js";
39
- import { default as yo } from "./components/atoms/CircleProgress/CircleProgress.js";
40
- import { default as wo } from "./components/atoms/Switch/Switch.js";
39
+ import { default as Do } from "./components/atoms/CircleProgress/CircleProgress.js";
40
+ import { default as yo } from "./components/atoms/Switch/Switch.js";
41
41
  import { default as Lo } from "./components/atoms/Pill/Pill.js";
42
42
  import { default as Fo } from "./components/atoms/FilterPill/FilterPill.js";
43
43
  import { default as vo } from "./components/atoms/ClickAwayListener/ClickAwayListener.js";
44
- import { default as zo } from "./components/molecules/AlertModal/AlertModal.js";
45
- import { default as Vo } from "./components/molecules/CalendarSelector/CalendarSelector.js";
46
- import { default as qo } from "./components/molecules/DateInput/DateInput.js";
47
- import { default as Go } from "./components/molecules/DialogModal/DialogModal.js";
48
- import { default as Jo } from "./components/molecules/Dropdown/Dropdown.js";
49
- import { default as No } from "./components/molecules/FileUpload/FileUpload.js";
50
- import { default as Ro } from "./components/molecules/FloatingMenu/FloatingMenu.js";
51
- import { default as Xo } from "./components/molecules/IndexedStepper/IndexedStepper.js";
52
- import { default as Zo } from "./components/molecules/InformationContainer/InformationContainer.js";
53
- import { default as $o } from "./components/molecules/SearchModal/SearchModal.js";
54
- import { default as ee } from "./components/molecules/Stepper/Stepper.js";
55
- import { default as re } from "./components/molecules/Tabs/Tabs.js";
56
- import { default as fe } from "./components/molecules/UncontrolledDateInput/UncontrolledDateInput.js";
57
- import { default as pe } from "./components/molecules/AutocompleteInput/AutocompleteInput.js";
58
- import { default as de } from "./components/molecules/PillsContainer/PillsContainer.js";
59
- import { default as ue } from "./components/molecules/SideModal/SideModal.js";
60
- import { default as ne } from "./components/molecules/FiltersMenu/FiltersMenu.js";
61
- import { Organism as ce } from "./components/organisms/index.js";
62
- import { formatLocalizedDate as Te } from "./utils/dates.js";
63
- import { toBase64 as Ce, translateBytes as he } from "./utils/files.js";
64
- import { getImageUrl as Pe } from "./utils/images.js";
65
- import { ModalContainer as Me, closeModal as ye, openCustomModal as De, openModal as we } from "./utils/modal.js";
66
- import { renderTabContent as Le } from "./utils/renderContentOptions.js";
67
- import { capitalizeFirstLetter as Fe, stringToColor as Ue } from "./utils/strings.js";
68
- import { showToastAsync as ke, showToastLoading as ze, toast as Oe } from "./utils/toast.js";
69
- import { ThemeProvider as je } from "./providers/ThemeProvider.js";
70
- import { useTheme as Ee } from "./hooks/useTheme.js";
71
- import { useFilterToggler as He } from "./hooks/useFilterToggler.js";
44
+ import { default as zo } from "./components/atoms/StepIndicator/StepIndicator.js";
45
+ import { default as Oo } from "./components/molecules/AlertModal/AlertModal.js";
46
+ import { default as jo } from "./components/molecules/CalendarSelector/CalendarSelector.js";
47
+ import { default as Go } from "./components/molecules/DateInput/DateInput.js";
48
+ import { default as Jo } from "./components/molecules/DialogModal/DialogModal.js";
49
+ import { default as No } from "./components/molecules/Dropdown/Dropdown.js";
50
+ import { default as Ro } from "./components/molecules/FileUpload/FileUpload.js";
51
+ import { default as Xo } from "./components/molecules/FloatingMenu/FloatingMenu.js";
52
+ import { default as Zo } from "./components/molecules/IndexedStepper/IndexedStepper.js";
53
+ import { default as $o } from "./components/molecules/InformationContainer/InformationContainer.js";
54
+ import { default as ee } from "./components/molecules/SearchModal/SearchModal.js";
55
+ import { default as re } from "./components/molecules/Stepper/Stepper.js";
56
+ import { default as fe } from "./components/molecules/Tabs/Tabs.js";
57
+ import { default as pe } from "./components/molecules/UncontrolledDateInput/UncontrolledDateInput.js";
58
+ import { default as se } from "./components/molecules/AutocompleteInput/AutocompleteInput.js";
59
+ import { default as ue } from "./components/molecules/PillsContainer/PillsContainer.js";
60
+ import { default as ne } from "./components/molecules/SideModal/SideModal.js";
61
+ import { default as ce } from "./components/molecules/FiltersMenu/FiltersMenu.js";
62
+ import { default as ge } from "./components/molecules/MultiSelectDropdown/MultiSelectDropdown.js";
63
+ import { default as Se } from "./components/molecules/SingleSelectDropdown/SingleSelectDropdown.js";
64
+ import { default as he } from "./components/molecules/EmptyState/EmptyState.js";
65
+ import { default as Be } from "./components/molecules/Tooltip/Tooltip.js";
66
+ import { Organism as De } from "./components/organisms/index.js";
67
+ import { formatLocalizedDate as ye } from "./utils/dates.js";
68
+ import { toBase64 as Le, translateBytes as be } from "./utils/files.js";
69
+ import { getImageUrl as Ue } from "./utils/images.js";
70
+ import { ModalContainer as ke, closeModal as ze, openCustomModal as Ee, openModal as Oe } from "./utils/modal.js";
71
+ import { renderTabContent as je } from "./utils/renderContentOptions.js";
72
+ import { capitalizeFirstLetter as Ge, stringToColor as He } from "./utils/strings.js";
73
+ import { showToastAsync as Ke, showToastLoading as Ne, toast as Qe } from "./utils/toast.js";
74
+ import { ThemeProvider as We } from "./providers/ThemeProvider.js";
75
+ import { useTheme as Ye } from "./hooks/useTheme.js";
76
+ import { useFilterToggler as _e } from "./hooks/useFilterToggler.js";
72
77
  import "./contexts/themeContext.js";
73
- import { defaultTheme as Ke } from "./themes/default.js";
78
+ import { defaultTheme as ot } from "./themes/default.js";
74
79
  export {
75
80
  a as ActionButton,
76
- zo as AlertModal,
81
+ Oo as AlertModal,
77
82
  l as AsyncToast,
78
- pe as AutocompleteInput,
79
- s as Avatar,
83
+ se as AutocompleteInput,
84
+ d as Avatar,
80
85
  m as BoxContainer,
81
86
  x as Button,
82
- Vo as CalendarSelector,
87
+ jo as CalendarSelector,
83
88
  i as CenterModal,
84
89
  I as Checkbox,
85
- yo as CircleProgress,
90
+ C as Chip,
91
+ Do as CircleProgress,
86
92
  vo as ClickAwayListener,
87
- P as CountryDropdown,
88
- g as CountryInput,
89
- h as CountryLabel,
90
- qo as DateInput,
91
- Go as DialogModal,
92
- M as Divider,
93
- Jo as Dropdown,
94
- No as FileUpload,
93
+ M as CountryDropdown,
94
+ T as CountryInput,
95
+ P as CountryLabel,
96
+ Go as DateInput,
97
+ Jo as DialogModal,
98
+ w as Divider,
99
+ No as Dropdown,
100
+ he as EmptyState,
101
+ Ro as FileUpload,
95
102
  Fo as FilterPill,
96
- ne as FiltersMenu,
97
- Ro as FloatingMenu,
98
- D as IconButton,
99
- A as ImageProfileInput,
100
- U as IndexedStep,
101
- Xo as IndexedStepper,
102
- k as InfoCard,
103
- Zo as InformationContainer,
104
- O as InformationDisclaimer,
105
- Co as LoadingProgress,
106
- j as LoadingSpinner,
107
- Me as ModalContainer,
108
- ce as Organism,
109
- E as PasswordInput,
110
- H as PhoneInput,
103
+ ce as FiltersMenu,
104
+ Xo as FloatingMenu,
105
+ A as IconButton,
106
+ b as ImageProfileInput,
107
+ k as IndexedStep,
108
+ Zo as IndexedStepper,
109
+ E as InfoCard,
110
+ $o as InformationContainer,
111
+ V as InformationDisclaimer,
112
+ So as LoadingProgress,
113
+ q as LoadingSpinner,
114
+ ke as ModalContainer,
115
+ ge as MultiSelectDropdown,
116
+ De as Organism,
117
+ H as PasswordInput,
118
+ K as PhoneInput,
111
119
  Lo as Pill,
112
- de as PillsContainer,
113
- K as ProgressBar,
114
- Q as SearchBar,
115
- $o as SearchModal,
116
- W as SectionButton,
117
- Y as SelectInput,
118
- ue as SideModal,
119
- _ as SidebarButton,
120
- ee as Stepper,
121
- wo as Switch,
122
- oo as Tab,
123
- re as Tabs,
124
- to as TextButton,
125
- ao as TextInput,
126
- lo as TextStaticInput,
127
- je as ThemeProvider,
128
- So as ThresholdCircleProgress,
120
+ ue as PillsContainer,
121
+ Q as ProgressBar,
122
+ W as SearchBar,
123
+ ee as SearchModal,
124
+ Y as SectionButton,
125
+ _ as SelectInput,
126
+ ne as SideModal,
127
+ oo as SidebarButton,
128
+ Se as SingleSelectDropdown,
129
+ zo as StepIndicator,
130
+ re as Stepper,
131
+ yo as Switch,
132
+ to as Tab,
133
+ fe as Tabs,
134
+ ao as TextButton,
135
+ lo as TextInput,
136
+ so as TextStaticInput,
137
+ We as ThemeProvider,
138
+ ho as ThresholdCircleProgress,
129
139
  Bo as ThresholdProgressBar,
130
- so as Toast,
131
- To as Tooltip,
132
- fe as UncontrolledDateInput,
133
- uo as UncontrolledSelector,
134
- no as UncontrolledTextInput,
135
- co as UploadContainer,
136
- Fe as capitalizeFirstLetter,
137
- ye as closeModal,
138
- Ke as defaultTheme,
139
- Te as formatLocalizedDate,
140
- Pe as getImageUrl,
141
- De as openCustomModal,
142
- we as openModal,
143
- Le as renderTabContent,
144
- ke as showToastAsync,
145
- ze as showToastLoading,
146
- Ue as stringToColor,
147
- Ce as toBase64,
148
- Oe as toast,
149
- he as translateBytes,
150
- He as useFilterToggler,
151
- Ee as useTheme,
152
- b as yupImageProfileValidator
140
+ uo as Toast,
141
+ Be as Tooltip,
142
+ pe as UncontrolledDateInput,
143
+ no as UncontrolledSelector,
144
+ co as UncontrolledTextInput,
145
+ go as UploadContainer,
146
+ Ge as capitalizeFirstLetter,
147
+ ze as closeModal,
148
+ ot as defaultTheme,
149
+ ye as formatLocalizedDate,
150
+ Ue as getImageUrl,
151
+ Ee as openCustomModal,
152
+ Oe as openModal,
153
+ je as renderTabContent,
154
+ Ke as showToastAsync,
155
+ Ne as showToastLoading,
156
+ He as stringToColor,
157
+ Le as toBase64,
158
+ Qe as toast,
159
+ be as translateBytes,
160
+ _e as useFilterToggler,
161
+ Ye as useTheme,
162
+ U as yupImageProfileValidator
153
163
  };
@@ -1 +1 @@
1
- /*! tailwindcss v4.0.17 | MIT License | https://tailwindcss.com */@layer theme{:root,:host{--font-mono:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--color-red-50:oklch(.971 .013 17.38);--color-orange-500:oklch(.705 .213 47.604);--color-yellow-50:oklch(.987 .026 102.212);--color-yellow-500:oklch(.795 .184 86.047);--color-green-50:oklch(.982 .018 155.826);--color-green-100:oklch(.962 .044 156.743);--color-green-800:oklch(.448 .119 151.328);--color-purple-500:oklch(.627 .265 303.9);--color-gray-50:oklch(.985 .002 247.839);--color-gray-900:oklch(.21 .034 264.665);--color-black:#000;--tracking-wider:.05em;--leading-normal:1.5;--radius-md:.375rem;--radius-lg:.5rem;--radius-xl:.75rem;--radius-2xl:1rem;--radius-3xl:1.5rem;--ease-out:cubic-bezier(0,0,.2,1);--ease-in-out:cubic-bezier(.4,0,.2,1);--animate-spin:spin 1s linear infinite;--default-transition-duration:.15s;--default-transition-timing-function:cubic-bezier(.4,0,.2,1)}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;-moz-tab-size:4;tab-size:4;font-feature-settings:initial;font-variation-settings:initial;-webkit-tap-highlight-color:transparent;font-family:ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;line-height:1.5}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;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-feature-settings:initial;font-variation-settings:initial;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1}@supports (not ((-webkit-appearance:-apple-pay-button))) or (contain-intrinsic-size:1px){::placeholder{color:color-mix(in oklab,currentColor 50%,transparent)}}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){-webkit-appearance:button;-moz-appearance:button;appearance:button}::file-selector-button{-webkit-appearance:button;-moz-appearance:button;appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}*,:after,:before,::backdrop{border-color:var(--color-gray-200,currentColor)}::file-selector-button{border-color:var(--color-gray-200,currentColor)}}@layer components;@layer utilities{.pointer-events-auto{pointer-events:auto}.pointer-events-none{pointer-events:none}.pointer-events-none\!{pointer-events:none!important}.invisible{visibility:hidden}.visible{visibility:visible}.sr-only{clip:rect(0,0,0,0);white-space:nowrap;border-width:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.absolute{position:absolute}.fixed{position:fixed}.relative{position:relative}.static{position:static}.sticky{position:sticky}.inset-0{top:0;right:0;bottom:0;left:0}.inset-y-0{inset-block:0}.-top-14{top:-1.4rem}.top-0{top:0}.top-4{top:.4rem}.top-8{top:.8rem}.right-0{right:0}.right-4{right:.4rem}.right-8{right:.8rem}.bottom-0{bottom:0}.bottom-8{bottom:.8rem}.bottom-10{bottom:1rem}.bottom-\[28px\]{bottom:28px}.left-0{left:0}.left-1\/2{left:50%}.left-8{left:.8rem}.left-10{left:1rem}.left-\[13px\]{left:13px}.z-10{z-index:10}.z-20{z-index:20}.z-50{z-index:50}.z-99{z-index:99}.z-9999{z-index:9999}.z-\[99999\]{z-index:99999}.col-span-1{grid-column:span 1/span 1}.col-span-2{grid-column:span 2/span 2}.container{width:100%}@media (width>=40rem){.container{max-width:40rem}}@media (width>=48rem){.container{max-width:48rem}}@media (width>=64rem){.container{max-width:64rem}}@media (width>=80rem){.container{max-width:80rem}}@media (width>=96rem){.container{max-width:96rem}}.m-0\!{margin:0!important}.mx-16{margin-inline:1.6rem}.mx-auto{margin-inline:auto}.my-8{margin-block:.8rem}.my-128{margin-block:12.8rem}.mt-1{margin-top:.1rem}.mt-2{margin-top:.2rem}.mt-3{margin-top:.3rem}.mt-4{margin-top:.4rem}.mt-6{margin-top:.6rem}.mt-8{margin-top:.8rem}.mt-10{margin-top:1rem}.mt-16{margin-top:1.6rem}.mt-\[0\.5rem\]{margin-top:.5rem}.-mr-\[10\%\]{margin-right:-10%}.mr-2{margin-right:.2rem}.mb-1{margin-bottom:.1rem}.mb-2{margin-bottom:.2rem}.mb-4{margin-bottom:.4rem}.mb-6{margin-bottom:.6rem}.mb-8{margin-bottom:.8rem}.mb-16{margin-bottom:1.6rem}.ml-8{margin-left:.8rem}.ml-auto{margin-left:auto}.contents{display:contents}.flex{display:flex}.grid{display:grid}.hidden{display:none}.inline-block{display:inline-block}.inline-flex{display:inline-flex}.table{display:table}.size-12{width:1.2rem;height:1.2rem}.size-16{width:1.6rem;height:1.6rem}.size-24{width:2.4rem;height:2.4rem}.size-\[40px\]{width:40px;height:40px}.\!h-auto{height:auto!important}.h-0{height:0}.h-1{height:.1rem}.h-2{height:.2rem}.h-3{height:.3rem}.h-4{height:.4rem}.h-5{height:.5rem}.h-8{height:.8rem}.h-12{height:1.2rem}.h-14{height:1.4rem}.h-16{height:1.6rem}.h-20{height:2rem}.h-24{height:2.4rem}.h-32{height:3.2rem}.h-36{height:3.6rem}.h-40{height:4rem}.h-76{height:7.6rem}.h-\[40px\]{height:40px}.h-\[55px\]\!{height:55px!important}.h-\[87px\]{height:87px}.h-\[400px\]{height:400px}.h-\[600px\]{height:600px}.h-auto{height:auto}.h-fit{height:fit-content}.h-full{height:100%}.h-screen{height:100vh}.max-h-1{max-height:.1rem}.max-h-12{max-height:1.2rem}.max-h-16{max-height:1.6rem}.max-h-200{max-height:20rem}.max-h-\[12px\]{max-height:12px}.max-h-\[15px\]{max-height:15px}.max-h-\[20px\]{max-height:20px}.max-h-\[28px\]{max-height:28px}.max-h-\[40px\]{max-height:40px}.max-h-\[46px\]{max-height:46px}.max-h-\[150px\]{max-height:150px}.max-h-\[250px\]{max-height:250px}.min-h-1{min-height:.1rem}.min-h-12{min-height:1.2rem}.min-h-14{min-height:1.4rem}.min-h-16{min-height:1.6rem}.min-h-20{min-height:2rem}.min-h-24{min-height:2.4rem}.min-h-28{min-height:2.8rem}.min-h-36{min-height:3.6rem}.min-h-\[12px\]{min-height:12px}.min-h-\[15px\]{min-height:15px}.min-h-\[20px\]{min-height:20px}.min-h-\[28px\]{min-height:28px}.min-h-\[40px\]{min-height:40px}.min-h-\[46px\]{min-height:46px}.min-h-screen{min-height:100vh}.\!w-full{width:100%!important}.w-0{width:0}.w-1\/2{width:50%}.w-1\/3{width:33.3333%}.w-2{width:.2rem}.w-3{width:.3rem}.w-4{width:.4rem}.w-12{width:1.2rem}.w-14{width:1.4rem}.w-16{width:1.6rem}.w-20{width:2rem}.w-24{width:2.4rem}.w-32{width:3.2rem}.w-40{width:4rem}.w-64{width:6.4rem}.w-72{width:7.2rem}.w-76{width:7.6rem}.w-80{width:8rem}.w-\[0px\]{width:0}.w-\[1\.5px\]{width:1.5px}.w-\[40px\]{width:40px}.w-\[125\%\]\!{width:125%!important}.w-\[180px\]{width:180px}.w-\[200px\]{width:200px}.w-\[300px\]{width:300px}.w-\[320px\]{width:320px}.w-\[326px\]{width:326px}.w-\[500px\]{width:500px}.w-\[600px\]{width:600px}.w-\[800px\]{width:800px}.w-fit{width:fit-content}.w-full{width:100%}.max-w-1{max-width:.1rem}.max-w-2xl{max-width:65.6rem}.max-w-4xl{max-width:89.6rem}.max-w-12{max-width:1.2rem}.max-w-16{max-width:1.6rem}.max-w-120{max-width:12rem}.max-w-160{max-width:16rem}.max-w-\[12px\]{max-width:12px}.max-w-\[16px\]{max-width:16px}.max-w-\[28px\]{max-width:28px}.max-w-\[40px\]{max-width:40px}.max-w-\[46px\]{max-width:46px}.max-w-\[300px\]{max-width:300px}.max-w-\[400px\]{max-width:400px}.max-w-lg{max-width:80rem}.max-w-md{max-width:64rem}.max-w-sm{max-width:48rem}.min-w-0{min-width:0}.min-w-1{min-width:.1rem}.min-w-12{min-width:1.2rem}.min-w-14{min-width:1.4rem}.min-w-20{min-width:2rem}.min-w-24{min-width:2.4rem}.min-w-28{min-width:2.8rem}.min-w-36{min-width:3.6rem}.min-w-48{min-width:4.8rem}.min-w-\[12px\]{min-width:12px}.min-w-\[16px\]{min-width:16px}.min-w-\[18rem\]{min-width:18rem}.min-w-\[28px\]{min-width:28px}.min-w-\[40px\]{min-width:40px}.min-w-\[46px\]{min-width:46px}.min-w-\[400px\]{min-width:400px}.flex-1{flex:1}.shrink-0{flex-shrink:0}.flex-grow,.grow{flex-grow:1}.origin-left{transform-origin:0}.-translate-x-1\/2{--tw-translate-x: -50% ;translate:var(--tw-translate-x)var(--tw-translate-y)}.translate-x-0{--tw-translate-x:0px;translate:var(--tw-translate-x)var(--tw-translate-y)}.translate-x-3{--tw-translate-x:.3rem;translate:var(--tw-translate-x)var(--tw-translate-y)}.translate-x-24{--tw-translate-x:2.4rem;translate:var(--tw-translate-x)var(--tw-translate-y)}.translate-y-4{--tw-translate-y:.4rem;translate:var(--tw-translate-x)var(--tw-translate-y)}.scale-\[0\.8\]{scale:.8}.-rotate-90{rotate:-90deg}.rotate-45{rotate:45deg}.rotate-180{rotate:180deg}.transform{transform:var(--tw-rotate-x)var(--tw-rotate-y)var(--tw-rotate-z)var(--tw-skew-x)var(--tw-skew-y)}.animate-spin{animation:var(--animate-spin)}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.resize{resize:both}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.grid-cols-7{grid-template-columns:repeat(7,minmax(0,1fr))}.flex-col{flex-direction:column}.flex-row{flex-direction:row}.flex-row\!{flex-direction:row!important}.flex-wrap{flex-wrap:wrap}.items-center{align-items:center}.items-start{align-items:flex-start}.justify-between{justify-content:space-between}.justify-center{justify-content:center}.justify-end{justify-content:flex-end}.justify-evenly{justify-content:space-evenly}.justify-start{justify-content:flex-start}.justify-items-center{justify-items:center}.gap-0\.5{gap:.05rem}.gap-1{gap:.1rem}.gap-2{gap:.2rem}.gap-4{gap:.4rem}.gap-6{gap:.6rem}.gap-8{gap:.8rem}.gap-10{gap:1rem}.gap-12{gap:1.2rem}.gap-16{gap:1.6rem}.gap-20{gap:2rem}.gap-24{gap:2.4rem}.gap-\[6px\]{gap:6px}.gap-\[8px\]{gap:8px}.gap-\[10px\]{gap:10px}:where(.space-y-2>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(.2rem*var(--tw-space-y-reverse));margin-block-end:calc(.2rem*calc(1 - var(--tw-space-y-reverse)))}:where(.-space-x-4>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(-.4rem *var(--tw-space-x-reverse));margin-inline-end:calc(-.4rem *calc(1 - var(--tw-space-x-reverse)))}:where(.space-x-2>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(.2rem*var(--tw-space-x-reverse));margin-inline-end:calc(.2rem*calc(1 - var(--tw-space-x-reverse)))}.self-end{align-self:flex-end}.truncate{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-visible{overflow:visible}.overflow-y-auto{overflow-y:auto}.rounded{border-radius:.25rem}.rounded-2xl{border-radius:var(--radius-2xl)}.rounded-3xl{border-radius:var(--radius-3xl)}.rounded-\[4px\]{border-radius:4px}.rounded-full{border-radius:3.40282e38px}.rounded-lg{border-radius:var(--radius-lg)}.rounded-md{border-radius:var(--radius-md)}.rounded-xl{border-radius:var(--radius-xl)}.rounded-l-full{border-top-left-radius:3.40282e38px;border-bottom-left-radius:3.40282e38px}.rounded-r-full{border-top-right-radius:3.40282e38px;border-bottom-right-radius:3.40282e38px}.border,.border-1{border-style:var(--tw-border-style);border-width:1px}.border-1\!{border-style:var(--tw-border-style)!important;border-width:1px!important}.border-2{border-style:var(--tw-border-style);border-width:2px}.border-4{border-style:var(--tw-border-style);border-width:4px}.border-\[1\.4px\]{border-style:var(--tw-border-style);border-width:1.4px}.border-\[1\.5px\]{border-style:var(--tw-border-style);border-width:1.5px}.border-\[1px\]{border-style:var(--tw-border-style);border-width:1px}.border-r-0{border-right-style:var(--tw-border-style);border-right-width:0}.border-b{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.border-b-\[1\.3px\]{border-bottom-style:var(--tw-border-style);border-bottom-width:1.3px}.border-dashed{--tw-border-style:dashed;border-style:dashed}.border-none\!{--tw-border-style:none!important;border-style:none!important}.\!border-red-500{border-color:#eb4571!important}.border-aqua-500{border-color:#1da696}.border-blue-100{border-color:#ecf1fd}.border-blue-200{border-color:#cad6f9}.border-blue-400{border-color:#6a8def}.border-blue-500{border-color:#4570eb}.border-blue-500\!{border-color:#4570eb!important}.border-blue-600{border-color:#375abc}.border-blue-800{border-color:#1c2d5e}.border-gray-100{border-color:#f0f0f2}.border-gray-300{border-color:#abacaf}.border-gray-400{border-color:#8f9095}.border-gray-500{border-color:#72747a}.border-green-500{border-color:#16a85b}.border-red-500{border-color:#eb4571}.border-red-500\!{border-color:#eb4571!important}.border-transparent{border-color:#0000}.border-yellow-500{border-color:var(--color-yellow-500)}.border-t-blue-500{border-top-color:#4570eb}.border-r-blue-300{border-right-color:#8fa9f3}.border-b-blue-200{border-bottom-color:#cad6f9}.border-b-blue-500{border-bottom-color:#4570eb}.border-b-gray-700{border-bottom-color:#3b3d45}.border-l-blue-400{border-left-color:#6a8def}.\!bg-aqua-100{background-color:#d4f5f1!important}.\!bg-blue-50{background-color:#f9fafe!important}.\!bg-blue-100{background-color:#ecf1fd!important}.\!bg-gray-100{background-color:#f0f0f2!important}.\!bg-transparent{background-color:#0000!important}.bg-\[\#DEE6F7\]{background-color:#dee6f7}.bg-\[rgb\(243\,244\,246\)\]{background-color:#f3f4f6}.bg-aqua-100{background-color:#d4f5f1}.bg-aqua-500{background-color:#1da696}.bg-black{background-color:var(--color-black)}.bg-black\/50{background-color:color-mix(in oklab,var(--color-black)50%,transparent)}.bg-blue-50{background-color:#f9fafe}.bg-blue-100{background-color:#ecf1fd}.bg-blue-100\/30{background-color:#ecf1fd4d}.bg-blue-100\/50{background-color:#ecf1fd80}.bg-blue-400{background-color:#6a8def}.bg-blue-500{background-color:#4570eb}.bg-blue-600{background-color:#375abc}.bg-blue-800{background-color:#1c2d5e}.bg-blue-900{background-color:#0e162f}.bg-gray-50{background-color:var(--color-gray-50)}.bg-gray-50\/50{background-color:color-mix(in oklab,var(--color-gray-50)50%,transparent)}.bg-gray-100{background-color:#f0f0f2}.bg-gray-100\!{background-color:#f0f0f2!important}.bg-gray-200{background-color:#c7c8ca}.bg-gray-500{background-color:#72747a}.bg-green-50{background-color:var(--color-green-50)}.bg-green-100{background-color:var(--color-green-100)}.bg-green-500{background-color:#16a85b}.bg-light{background-color:#f9fbff}.bg-purple-500{background-color:var(--color-purple-500)}.bg-red-50{background-color:var(--color-red-50)}.bg-red-500{background-color:#eb4571}.bg-red-500\/20{background-color:#eb457133}.bg-transparent{background-color:#0000}.bg-white{background-color:#fff}.bg-yellow-50{background-color:var(--color-yellow-50)}.bg-yellow-500{background-color:var(--color-yellow-500)}.bg-gradient-to-b{--tw-gradient-position:to bottom in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.from-aqua-500{--tw-gradient-from:#1da696;--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.from-blue-500{--tw-gradient-from:#4570eb;--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.to-\[rgb\(243\,244\,246\)\]{--tw-gradient-to:#f3f4f6;--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.object-contain{object-fit:contain}.object-cover{object-fit:cover}.\!p-0,.p-0\!{padding:0!important}.p-2{padding:.2rem}.p-3{padding:.3rem}.p-4{padding:.4rem}.p-6{padding:.6rem}.p-8{padding:.8rem}.p-12{padding:1.2rem}.p-16{padding:1.6rem}.p-20{padding:2rem}.p-24{padding:2.4rem}.p-32{padding:3.2rem}.p-40{padding:4rem}.px-0\!{padding-inline:0!important}.px-2{padding-inline:.2rem}.px-3{padding-inline:.3rem}.px-4{padding-inline:.4rem}.px-6{padding-inline:.6rem}.px-10{padding-inline:1rem}.px-12{padding-inline:1.2rem}.px-14{padding-inline:1.4rem}.px-16{padding-inline:1.6rem}.px-20{padding-inline:2rem}.px-24{padding-inline:2.4rem}.px-32{padding-inline:3.2rem}.px-\[12\.3px\]{padding-inline:12.3px}.px-\[12px\]{padding-inline:12px}.px-\[24px\]{padding-inline:24px}.py-1{padding-block:.1rem}.py-2{padding-block:.2rem}.py-3{padding-block:.3rem}.py-4{padding-block:.4rem}.py-5{padding-block:.5rem}.py-6{padding-block:.6rem}.py-7{padding-block:.7rem}.py-8{padding-block:.8rem}.py-10{padding-block:1rem}.py-10\!{padding-block:1rem!important}.py-12\!{padding-block:1.2rem!important}.py-16{padding-block:1.6rem}.py-24{padding-block:2.4rem}.py-\[8px\]{padding-block:8px}.pt-0{padding-top:0}.pt-16{padding-top:1.6rem}.pt-28{padding-top:2.8rem}.pr-12{padding-right:1.2rem}.pr-\[10px\]{padding-right:10px}.pb-0\!{padding-bottom:0!important}.pb-16{padding-bottom:1.6rem}.pl-12{padding-left:1.2rem}.pl-40{padding-left:4rem}.text-center{text-align:center}.text-left{text-align:left}.text-start{text-align:start}.indent-\[10000px\]{text-indent:10000px}.align-middle{vertical-align:middle}.font-mono{font-family:var(--font-mono)}.text-header-1{font-size:2.8rem;font-weight:700;line-height:100%}@media (width>=48rem){.text-header-1{font-size:4rem}}.text-header-4{font-size:1.6rem;font-weight:700;line-height:100%}@media (width>=48rem){.text-header-4{font-size:1.8rem}}.text-2xl{font-size:2rem}.text-3xl{font-size:2.4rem}.text-\[10px\]{font-size:10px}.text-\[12px\]{font-size:12px}.text-\[14px\]{font-size:14px}.text-\[16px\]{font-size:16px}.text-base{font-size:1.4rem}.text-base\!{font-size:1.4rem!important}.text-body-m{font-size:1.6rem}.text-body-s{font-size:1.4rem}.text-header-1{font-size:2.8rem}.text-header-4{font-size:1.6rem}.text-label{font-size:1.2rem}.text-lg{font-size:1.6rem}.text-lg\!{font-size:1.6rem!important}.text-md{font-size:1.3rem}.text-sm{font-size:1.2rem}.text-xl{font-size:1.8rem}.text-xs{font-size:1rem}.leading-none{--tw-leading:1;line-height:1}.leading-normal{--tw-leading:var(--leading-normal);line-height:var(--leading-normal)}.body-l,.body-m,.body-s,.label{line-height:100%}.font-400{--tw-font-weight:400;font-weight:400}.font-500{--tw-font-weight:500;font-weight:500}.font-600{--tw-font-weight:600;font-weight:600}.font-700,.font-bold{--tw-font-weight:700;font-weight:700}.font-medium{--tw-font-weight:500;font-weight:500}.font-normal{--tw-font-weight:400;font-weight:400}.font-semibold{--tw-font-weight:600;font-weight:600}.tracking-wider{--tw-tracking:var(--tracking-wider);letter-spacing:var(--tracking-wider)}.text-nowrap{text-wrap:nowrap}.text-ellipsis{text-overflow:ellipsis}.whitespace-nowrap{white-space:nowrap}.\!text-black{color:var(--color-black)!important}.\!text-gray-300{color:#abacaf!important}.\!text-red-500{color:#eb4571!important}.text-aqua-500{color:#1da696}.text-black{color:var(--color-black)}.text-blue-100{color:#ecf1fd}.text-blue-200{color:#cad6f9}.text-blue-300{color:#8fa9f3}.text-blue-400{color:#6a8def}.text-blue-500{color:#4570eb}.text-blue-500\!{color:#4570eb!important}.text-blue-800{color:#1c2d5e}.text-blue-900{color:#0e162f}.text-error{color:#eb4571}.text-gray-300{color:#abacaf}.text-gray-400{color:#8f9095}.text-gray-500{color:#72747a}.text-gray-600{color:#57595f}.text-gray-700{color:#3b3d45}.text-gray-800{color:#1e212a}.text-gray-900{color:var(--color-gray-900)}.text-green-500{color:#16a85b}.text-green-800{color:var(--color-green-800)}.text-orange-500{color:var(--color-orange-500)}.text-purple-500{color:var(--color-purple-500)}.text-red-500{color:#eb4571}.text-red-500\!{color:#eb4571!important}.text-red-600{color:#b23456}.text-white{color:#fff}.text-yellow-500{color:var(--color-yellow-500)}.capitalize{text-transform:capitalize}.uppercase{text-transform:uppercase}.underline{text-decoration-line:underline}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.\!caret-transparent{caret-color:#0000!important}.opacity-0{opacity:0}.opacity-20{opacity:.2}.opacity-50{opacity:.5}.opacity-50\!{opacity:.5!important}.opacity-60{opacity:.6}.opacity-100{opacity:1}.shadow{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px 0 var(--tw-shadow-color,#0000000f);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-2xl{--tw-shadow:0 25px 50px -12px var(--tw-shadow-color,#00000040);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-blue-sh{--tw-shadow:0px 0px 10px 4px var(--tw-shadow-color,#c7d8ff4d);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-inner{--tw-shadow:inset 0 2px 4px 0 var(--tw-shadow-color,#0000000f);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-lg{--tw-shadow:0 10px 15px -3px var(--tw-shadow-color,#0000001a),0 4px 6px -2px var(--tw-shadow-color,#0000000d);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-md{--tw-shadow:0 4px 6px -1px var(--tw-shadow-color,#0000001a),0 2px 4px -1px var(--tw-shadow-color,#0000000f);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-sm{--tw-shadow:0 1px 2px 0 var(--tw-shadow-color,#0000000d);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.outline-hidden{--tw-outline-style:none;outline-style:none}@media (forced-colors:active){.outline-hidden{outline-offset:2px;outline:2px solid #0000}}.outline{outline-style:var(--tw-outline-style);outline-width:1px}.drop-shadow-xl{--tw-drop-shadow:drop-shadow(0 20px 13px #00000008)drop-shadow(0 8px 5px #00000014);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,)}.backdrop-blur-\[0\.60px\]{--tw-backdrop-blur:blur(.6px);-webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)}.transition{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-all{transition-property:all;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-colors{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-transform{transition-property:transform,translate,scale,rotate;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.duration-100{--tw-duration:.1s;transition-duration:.1s}.duration-150{--tw-duration:.15s;transition-duration:.15s}.duration-200{--tw-duration:.2s;transition-duration:.2s}.duration-300{--tw-duration:.3s;transition-duration:.3s}.ease-in-out{--tw-ease:var(--ease-in-out);transition-timing-function:var(--ease-in-out)}.ease-linear{--tw-ease:linear;transition-timing-function:linear}.ease-out{--tw-ease:var(--ease-out);transition-timing-function:var(--ease-out)}.\!select-none{-webkit-user-select:none!important;user-select:none!important}.outline-none{--tw-outline-style:none;outline-style:none}.select-none{-webkit-user-select:none;user-select:none}.group-focus-within\:border-blue-500:is(:where(.group):focus-within *){border-color:#4570eb}.group-focus-within\:text-blue-500:is(:where(.group):focus-within *){color:#4570eb}@media (hover:hover){.group-hover\:border-blue-300:is(:where(.group):hover *){border-color:#8fa9f3}.group-hover\:bg-aqua-100:is(:where(.group):hover *){background-color:#d4f5f1}.group-hover\:bg-blue-100:is(:where(.group):hover *){background-color:#ecf1fd}.group-hover\:text-aqua-500:is(:where(.group):hover *){color:#1da696}.group-hover\:text-blue-300:is(:where(.group):hover *){color:#8fa9f3}.group-hover\:text-blue-500:is(:where(.group):hover *){color:#4570eb}.group-hover\:text-gray-800:is(:where(.group):hover *){color:#1e212a}}.group-disabled\:bg-gray-500:is(:where(.group):disabled *){background-color:#72747a}.placeholder\:font-600::placeholder{--tw-font-weight:600;font-weight:600}.placeholder\:text-gray-400::placeholder{color:#8f9095}.focus-within\:border-blue-500:focus-within{border-color:#4570eb}@media (hover:hover){.hover\:\!cursor-pointer:hover{cursor:pointer!important}.hover\:cursor-not-allowed\!:hover{cursor:not-allowed!important}.hover\:border-aqua-600:hover{border-color:#167c70}.hover\:border-blue-300:hover{border-color:#8fa9f3}.hover\:border-blue-400:hover{border-color:#6a8def}.hover\:border-blue-500:hover{border-color:#4570eb}.hover\:border-blue-600:hover{border-color:#375abc}.hover\:border-gray-600:hover{border-color:#57595f}.hover\:border-red-600:hover{border-color:#b23456}.hover\:bg-aqua-100:hover{background-color:#d4f5f1}.hover\:bg-aqua-100\/40:hover{background-color:#d4f5f166}.hover\:bg-aqua-100\/80:hover{background-color:#d4f5f1cc}.hover\:bg-aqua-200\/50:hover{background-color:#7de2d680}.hover\:bg-aqua-600:hover{background-color:#167c70}.hover\:bg-blue-50:hover{background-color:#f9fafe}.hover\:bg-blue-100:hover{background-color:#ecf1fd}.hover\:bg-blue-100\/40:hover{background-color:#ecf1fd66}.hover\:bg-blue-100\/50:hover{background-color:#ecf1fd80}.hover\:bg-blue-100\/80:hover{background-color:#ecf1fdcc}.hover\:bg-blue-200:hover{background-color:#cad6f9}.hover\:bg-blue-600:hover{background-color:#375abc}.hover\:bg-gray-50\/50:hover{background-color:color-mix(in oklab,var(--color-gray-50)50%,transparent)}.hover\:bg-gray-100:hover{background-color:#f0f0f2}.hover\:bg-gray-200:hover{background-color:#c7c8ca}.hover\:bg-gray-600:hover{background-color:#57595f}.hover\:bg-red-500\/30:hover{background-color:#eb45714d}.hover\:bg-red-600:hover{background-color:#b23456}.hover\:text-aqua-500:hover{color:#1da696}.hover\:text-aqua-600:hover{color:#167c70}.hover\:text-blue-500:hover{color:#4570eb}.hover\:text-blue-600:hover{color:#375abc}.hover\:text-blue-700:hover{color:#29438d}.hover\:text-gray-500:hover{color:#72747a}.hover\:text-gray-600:hover{color:#57595f}.hover\:text-gray-700:hover{color:#3b3d45}.hover\:text-red-500:hover{color:#eb4571}.hover\:text-red-600:hover{color:#b23456}.hover\:text-white:hover{color:#fff}.hover\:opacity-80:hover{opacity:.8}.hover\:shadow-blue-sh:hover{--tw-shadow:0px 0px 10px 4px var(--tw-shadow-color,#c7d8ff4d);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}}.focus\:outline-none:focus{--tw-outline-style:none;outline-style:none}.active\:border-aqua-700:active{border-color:#0f534b}.active\:border-blue-700:active{border-color:#29438d}.active\:border-gray-700:active{border-color:#3b3d45}.active\:border-red-700:active{border-color:#8f2945}.active\:bg-aqua-100\/20:active{background-color:#d4f5f133}.active\:bg-aqua-100\/50:active{background-color:#d4f5f180}.active\:bg-aqua-200\/70:active{background-color:#7de2d6b3}.active\:bg-aqua-700:active{background-color:#0f534b}.active\:bg-blue-100\/20:active{background-color:#ecf1fd33}.active\:bg-blue-100\/50:active{background-color:#ecf1fd80}.active\:bg-blue-300\/80:active{background-color:#8fa9f3cc}.active\:bg-blue-700:active{background-color:#29438d}.active\:bg-gray-300:active{background-color:#abacaf}.active\:bg-gray-700:active{background-color:#3b3d45}.active\:bg-red-700:active{background-color:#8f2945}.active\:bg-red-700\/40:active{background-color:#8f294566}.active\:text-aqua-500:active{color:#1da696}.active\:text-aqua-700:active{color:#0f534b}.active\:text-blue-500:active{color:#4570eb}.active\:text-blue-700:active{color:#29438d}.active\:text-gray-700:active{color:#3b3d45}.active\:text-red-700:active{color:#8f2945}.active\:text-white:active{color:#fff}.active\:shadow-blue-sh:active{--tw-shadow:0px 0px 10px 4px var(--tw-shadow-color,#c7d8ff4d);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\:bg-gray-100:disabled{background-color:#f0f0f2}.disabled\:text-gray-300:disabled{color:#abacaf}.disabled\:opacity-50:disabled{opacity:.5}.disabled\:placeholder\:text-gray-300:disabled::placeholder{color:#abacaf}@media (width>=48rem){.md\:gap-24{gap:2.4rem}.md\:p-32{padding:3.2rem}.md\:px-0{padding-inline:0}.md\:pt-0{padding-top:0}.md\:pt-4{padding-top:.4rem}.md\:pb-0{padding-bottom:0}.md\:text-lg{font-size:1.6rem}.md\:text-xl{font-size:1.8rem}}@media (width>=64rem){.lg\:p-20{padding:2rem}}*{text-rendering:optimizeLegibility;-o-text-rendering:optimizeLegibility;-ms-text-rendering:optimizeLegibility;-moz-text-rendering:optimizeLegibility;-webkit-text-rendering:optimizeLegibility;-webkit-tap-highlight-color:transparent}button{cursor:pointer}html{color:#000;background-color:#fff;font-size:62.5%}* :focus{outline:none!important}body.no-animate *,body.no-animate :before,body.no-animate :after{transition:none!important;animation:none!important}button:focus{outline:none}input:-webkit-autofill{transitiondelay:9999s;transitionproperty:background-color,color}input:-webkit-autofill:hover{transitiondelay:9999s;transitionproperty:background-color,color}input:-webkit-autofill:focus{transitiondelay:9999s;transitionproperty:background-color,color}input:-webkit-autofill:active{transitiondelay:9999s;transitionproperty:background-color,color}:focus{outline-color:#0000}}@property --tw-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-y{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-z{syntax:"*";inherits:false;initial-value:0}@property --tw-rotate-x{syntax:"*";inherits:false;initial-value:rotateX(0)}@property --tw-rotate-y{syntax:"*";inherits:false;initial-value:rotateY(0)}@property --tw-rotate-z{syntax:"*";inherits:false;initial-value:rotateZ(0)}@property --tw-skew-x{syntax:"*";inherits:false;initial-value:skewX(0)}@property --tw-skew-y{syntax:"*";inherits:false;initial-value:skewY(0)}@property --tw-space-y-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-space-x-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-gradient-position{syntax:"*";inherits:false}@property --tw-gradient-from{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-via{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-to{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-stops{syntax:"*";inherits:false}@property --tw-gradient-via-stops{syntax:"*";inherits:false}@property --tw-gradient-from-position{syntax:"<length-percentage>";inherits:false;initial-value:0%}@property --tw-gradient-via-position{syntax:"<length-percentage>";inherits:false;initial-value:50%}@property --tw-gradient-to-position{syntax:"<length-percentage>";inherits:false;initial-value:100%}@property --tw-leading{syntax:"*";inherits:false}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-tracking{syntax:"*";inherits:false}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"<length>";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-outline-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-blur{syntax:"*";inherits:false}@property --tw-brightness{syntax:"*";inherits:false}@property --tw-contrast{syntax:"*";inherits:false}@property --tw-grayscale{syntax:"*";inherits:false}@property --tw-hue-rotate{syntax:"*";inherits:false}@property --tw-invert{syntax:"*";inherits:false}@property --tw-opacity{syntax:"*";inherits:false}@property --tw-saturate{syntax:"*";inherits:false}@property --tw-sepia{syntax:"*";inherits:false}@property --tw-drop-shadow{syntax:"*";inherits:false}@property --tw-backdrop-blur{syntax:"*";inherits:false}@property --tw-backdrop-brightness{syntax:"*";inherits:false}@property --tw-backdrop-contrast{syntax:"*";inherits:false}@property --tw-backdrop-grayscale{syntax:"*";inherits:false}@property --tw-backdrop-hue-rotate{syntax:"*";inherits:false}@property --tw-backdrop-invert{syntax:"*";inherits:false}@property --tw-backdrop-opacity{syntax:"*";inherits:false}@property --tw-backdrop-saturate{syntax:"*";inherits:false}@property --tw-backdrop-sepia{syntax:"*";inherits:false}@property --tw-duration{syntax:"*";inherits:false}@property --tw-ease{syntax:"*";inherits:false}@keyframes spin{to{transform:rotate(360deg)}}
1
+ /*! tailwindcss v4.0.17 | MIT License | https://tailwindcss.com */@layer theme{:root,:host{--font-mono:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--color-red-100:oklch(.936 .032 17.717);--color-red-400:oklch(.704 .191 22.216);--color-yellow-100:oklch(.973 .071 103.193);--color-yellow-500:oklch(.795 .184 86.047);--color-green-100:oklch(.962 .044 156.743);--color-green-800:oklch(.448 .119 151.328);--color-purple-500:oklch(.627 .265 303.9);--color-gray-50:oklch(.985 .002 247.839);--color-gray-900:oklch(.21 .034 264.665);--color-black:#000;--tracking-wide:.025em;--tracking-wider:.05em;--leading-normal:1.5;--radius-md:.375rem;--radius-lg:.5rem;--radius-xl:.75rem;--radius-2xl:1rem;--radius-3xl:1.5rem;--ease-out:cubic-bezier(0,0,.2,1);--ease-in-out:cubic-bezier(.4,0,.2,1);--animate-spin:spin 1s linear infinite;--default-transition-duration:.15s;--default-transition-timing-function:cubic-bezier(.4,0,.2,1)}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;-moz-tab-size:4;tab-size:4;font-feature-settings:initial;font-variation-settings:initial;-webkit-tap-highlight-color:transparent;font-family:ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;line-height:1.5}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;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-feature-settings:initial;font-variation-settings:initial;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1}@supports (not ((-webkit-appearance:-apple-pay-button))) or (contain-intrinsic-size:1px){::placeholder{color:color-mix(in oklab,currentColor 50%,transparent)}}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){-webkit-appearance:button;-moz-appearance:button;appearance:button}::file-selector-button{-webkit-appearance:button;-moz-appearance:button;appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}*,:after,:before,::backdrop{border-color:var(--color-gray-200,currentColor)}::file-selector-button{border-color:var(--color-gray-200,currentColor)}}@layer components;@layer utilities{.pointer-events-auto{pointer-events:auto}.pointer-events-none{pointer-events:none}.pointer-events-none\!{pointer-events:none!important}.invisible{visibility:hidden}.visible{visibility:visible}.sr-only{clip:rect(0,0,0,0);white-space:nowrap;border-width:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.absolute{position:absolute}.fixed{position:fixed}.relative{position:relative}.static{position:static}.sticky{position:sticky}.inset-0{top:0;right:0;bottom:0;left:0}.inset-y-0{inset-block:0}.-top-14{top:-1.4rem}.top-0{top:0}.top-1\/2{top:50%}.top-4{top:.4rem}.top-8{top:.8rem}.top-full{top:100%}.right-0{right:0}.right-4{right:.4rem}.right-8{right:.8rem}.right-full{right:100%}.bottom-0{bottom:0}.bottom-8{bottom:.8rem}.bottom-10{bottom:1rem}.bottom-full{bottom:100%}.left-0{left:0}.left-1\/2{left:50%}.left-8{left:.8rem}.left-10{left:1rem}.left-full{left:100%}.z-10{z-index:10}.z-20{z-index:20}.z-50{z-index:50}.z-99{z-index:99}.z-9999{z-index:9999}.z-\[99999\]{z-index:99999}.col-span-2{grid-column:span 2/span 2}.float-left{float:left}.float-right{float:right}.container{width:100%}@media (width>=40rem){.container{max-width:40rem}}@media (width>=48rem){.container{max-width:48rem}}@media (width>=64rem){.container{max-width:64rem}}@media (width>=80rem){.container{max-width:80rem}}@media (width>=96rem){.container{max-width:96rem}}.m-0\!{margin:0!important}.mx-4{margin-inline:.4rem}.mx-16{margin-inline:1.6rem}.mx-auto{margin-inline:auto}.my-4{margin-block:.4rem}.my-8{margin-block:.8rem}.my-128{margin-block:12.8rem}.mt-1{margin-top:.1rem}.mt-2{margin-top:.2rem}.mt-3{margin-top:.3rem}.mt-4{margin-top:.4rem}.mt-6{margin-top:.6rem}.mt-8{margin-top:.8rem}.mt-10{margin-top:1rem}.mt-16{margin-top:1.6rem}.mt-\[0\.5rem\]{margin-top:.5rem}.mt-\[16px\]{margin-top:16px}.-mr-\[10\%\]{margin-right:-10%}.mr-2{margin-right:.2rem}.mb-2{margin-bottom:.2rem}.mb-4{margin-bottom:.4rem}.mb-6{margin-bottom:.6rem}.mb-8{margin-bottom:.8rem}.mb-16{margin-bottom:1.6rem}.ml-2{margin-left:.2rem}.ml-8{margin-left:.8rem}.ml-auto{margin-left:auto}.contents{display:contents}.flex{display:flex}.grid{display:grid}.hidden{display:none}.inline-block{display:inline-block}.inline-flex{display:inline-flex}.table{display:table}.size-6{width:.6rem;height:.6rem}.size-12{width:1.2rem;height:1.2rem}.size-16{width:1.6rem;height:1.6rem}.size-24{width:2.4rem;height:2.4rem}.size-\[35px\]{width:35px;height:35px}.size-\[40px\]{width:40px;height:40px}.\!h-auto{height:auto!important}.h-0{height:0}.h-1{height:.1rem}.h-1\/2{height:50%}.h-2{height:.2rem}.h-3{height:.3rem}.h-4{height:.4rem}.h-5{height:.5rem}.h-8{height:.8rem}.h-12{height:1.2rem}.h-14{height:1.4rem}.h-16{height:1.6rem}.h-20{height:2rem}.h-24{height:2.4rem}.h-32{height:3.2rem}.h-36{height:3.6rem}.h-40{height:4rem}.h-76{height:7.6rem}.h-\[1\.5px\]{height:1.5px}.h-\[16px\]{height:16px}.h-\[40px\]{height:40px}.h-\[55px\]\!{height:55px!important}.h-\[87px\]{height:87px}.h-\[400px\]{height:400px}.h-\[600px\]{height:600px}.h-auto{height:auto}.h-fit{height:fit-content}.h-full{height:100%}.h-screen{height:100vh}.max-h-1{max-height:.1rem}.max-h-12{max-height:1.2rem}.max-h-16{max-height:1.6rem}.max-h-200{max-height:20rem}.max-h-\[12px\]{max-height:12px}.max-h-\[15px\]{max-height:15px}.max-h-\[20px\]{max-height:20px}.max-h-\[28px\]{max-height:28px}.max-h-\[40px\]{max-height:40px}.max-h-\[46px\]{max-height:46px}.max-h-\[150px\]{max-height:150px}.max-h-\[250px\]{max-height:250px}.max-h-\[450px\]{max-height:450px}.min-h-1{min-height:.1rem}.min-h-12{min-height:1.2rem}.min-h-14{min-height:1.4rem}.min-h-16{min-height:1.6rem}.min-h-24{min-height:2.4rem}.min-h-36{min-height:3.6rem}.min-h-\[12px\]{min-height:12px}.min-h-\[15px\]{min-height:15px}.min-h-\[20px\]{min-height:20px}.min-h-\[28px\]{min-height:28px}.min-h-\[40px\]{min-height:40px}.min-h-\[46px\]{min-height:46px}.min-h-\[300px\]{min-height:300px}.min-h-screen{min-height:100vh}.\!w-full{width:100%!important}.w-0{width:0}.w-1\/2{width:50%}.w-1\/3{width:33.3333%}.w-2{width:.2rem}.w-3{width:.3rem}.w-4{width:.4rem}.w-12{width:1.2rem}.w-14{width:1.4rem}.w-16{width:1.6rem}.w-20{width:2rem}.w-24{width:2.4rem}.w-32{width:3.2rem}.w-40{width:4rem}.w-64{width:6.4rem}.w-72{width:7.2rem}.w-76{width:7.6rem}.w-80{width:8rem}.w-\[0px\]{width:0}.w-\[1\.5px\]{width:1.5px}.w-\[35px\]{width:35px}.w-\[40px\]{width:40px}.w-\[125\%\]\!{width:125%!important}.w-\[180px\]{width:180px}.w-\[200px\]{width:200px}.w-\[300px\]{width:300px}.w-\[320px\]{width:320px}.w-\[326px\]{width:326px}.w-\[500px\]{width:500px}.w-\[600px\]{width:600px}.w-\[800px\]{width:800px}.w-fit{width:fit-content}.w-full{width:100%}.w-max{width:max-content}.max-w-1{max-width:.1rem}.max-w-2xl{max-width:65.6rem}.max-w-4xl{max-width:89.6rem}.max-w-12{max-width:1.2rem}.max-w-16{max-width:1.6rem}.max-w-120{max-width:12rem}.max-w-160{max-width:16rem}.max-w-\[12px\]{max-width:12px}.max-w-\[16px\]{max-width:16px}.max-w-\[28px\]{max-width:28px}.max-w-\[40px\]{max-width:40px}.max-w-\[46px\]{max-width:46px}.max-w-\[200px\]{max-width:200px}.max-w-\[300px\]{max-width:300px}.max-w-\[320px\]{max-width:320px}.max-w-\[400px\]{max-width:400px}.max-w-lg{max-width:80rem}.max-w-md{max-width:64rem}.max-w-sm{max-width:48rem}.min-w-0{min-width:0}.min-w-1{min-width:.1rem}.min-w-12{min-width:1.2rem}.min-w-14{min-width:1.4rem}.min-w-36{min-width:3.6rem}.min-w-48{min-width:4.8rem}.min-w-\[12px\]{min-width:12px}.min-w-\[16px\]{min-width:16px}.min-w-\[18rem\]{min-width:18rem}.min-w-\[28px\]{min-width:28px}.min-w-\[40px\]{min-width:40px}.min-w-\[46px\]{min-width:46px}.min-w-\[400px\]{min-width:400px}.min-w-fit{min-width:fit-content}.flex-1{flex:1}.flex-initial{flex:0 auto}.flex-shrink-0,.shrink-0{flex-shrink:0}.flex-grow,.grow{flex-grow:1}.origin-bottom-right{transform-origin:100% 100%}.origin-left{transform-origin:0}.-translate-x-1\/2{--tw-translate-x: -50% ;translate:var(--tw-translate-x)var(--tw-translate-y)}.translate-x-0{--tw-translate-x:0px;translate:var(--tw-translate-x)var(--tw-translate-y)}.translate-x-3{--tw-translate-x:.3rem;translate:var(--tw-translate-x)var(--tw-translate-y)}.translate-x-24{--tw-translate-x:2.4rem;translate:var(--tw-translate-x)var(--tw-translate-y)}.-translate-y-1\/2{--tw-translate-y: -50% ;translate:var(--tw-translate-x)var(--tw-translate-y)}.translate-y-4{--tw-translate-y:.4rem;translate:var(--tw-translate-x)var(--tw-translate-y)}.scale-\[0\.8\]{scale:.8}.-rotate-90{rotate:-90deg}.rotate-45{rotate:45deg}.rotate-180{rotate:180deg}.transform{transform:var(--tw-rotate-x)var(--tw-rotate-y)var(--tw-rotate-z)var(--tw-skew-x)var(--tw-skew-y)}.animate-sk-fold-cube{animation:2.4s linear infinite both sk-fold-cube}.animate-spin{animation:var(--animate-spin)}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.resize{resize:both}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.grid-cols-7{grid-template-columns:repeat(7,minmax(0,1fr))}.flex-col{flex-direction:column}.flex-col-reverse{flex-direction:column-reverse}.flex-row{flex-direction:row}.flex-row\!{flex-direction:row!important}.flex-row-reverse{flex-direction:row-reverse}.flex-wrap{flex-wrap:wrap}.items-center{align-items:center}.items-start{align-items:flex-start}.justify-between{justify-content:space-between}.justify-center{justify-content:center}.justify-end{justify-content:flex-end}.justify-start{justify-content:flex-start}.justify-items-center{justify-items:center}.gap-0\.5{gap:.05rem}.gap-1{gap:.1rem}.gap-2{gap:.2rem}.gap-4{gap:.4rem}.gap-6{gap:.6rem}.gap-8{gap:.8rem}.gap-10{gap:1rem}.gap-12{gap:1.2rem}.gap-16{gap:1.6rem}.gap-20{gap:2rem}.gap-24{gap:2.4rem}.gap-\[6px\]{gap:6px}.gap-\[8px\]{gap:8px}.gap-\[10px\]{gap:10px}:where(.space-y-2>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(.2rem*var(--tw-space-y-reverse));margin-block-end:calc(.2rem*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-8>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(.8rem*var(--tw-space-y-reverse));margin-block-end:calc(.8rem*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-16>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(1.6rem*var(--tw-space-y-reverse));margin-block-end:calc(1.6rem*calc(1 - var(--tw-space-y-reverse)))}:where(.-space-x-4>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(-.4rem *var(--tw-space-x-reverse));margin-inline-end:calc(-.4rem *calc(1 - var(--tw-space-x-reverse)))}:where(.space-x-2>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(.2rem*var(--tw-space-x-reverse));margin-inline-end:calc(.2rem*calc(1 - var(--tw-space-x-reverse)))}.self-center{align-self:center}.self-end{align-self:flex-end}.self-start{align-self:flex-start}.truncate{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-visible{overflow:visible}.overflow-y-auto{overflow-y:auto}.rounded{border-radius:.25rem}.rounded-2xl{border-radius:var(--radius-2xl)}.rounded-3xl{border-radius:var(--radius-3xl)}.rounded-\[4px\]{border-radius:4px}.rounded-\[6px\]{border-radius:6px}.rounded-\[8px\]{border-radius:8px}.rounded-full{border-radius:3.40282e38px}.rounded-lg{border-radius:var(--radius-lg)}.rounded-md{border-radius:var(--radius-md)}.rounded-xl{border-radius:var(--radius-xl)}.rounded-l-full{border-top-left-radius:3.40282e38px;border-bottom-left-radius:3.40282e38px}.rounded-r-full{border-top-right-radius:3.40282e38px;border-bottom-right-radius:3.40282e38px}.border,.border-1{border-style:var(--tw-border-style);border-width:1px}.border-1\!{border-style:var(--tw-border-style)!important;border-width:1px!important}.border-2{border-style:var(--tw-border-style);border-width:2px}.border-4{border-style:var(--tw-border-style);border-width:4px}.border-\[1\.4px\]{border-style:var(--tw-border-style);border-width:1.4px}.border-\[1\.5px\]{border-style:var(--tw-border-style);border-width:1.5px}.border-\[1px\]{border-style:var(--tw-border-style);border-width:1px}.border-t{border-top-style:var(--tw-border-style);border-top-width:1px}.border-t-\[8px\]{border-top-style:var(--tw-border-style);border-top-width:8px}.border-r-0{border-right-style:var(--tw-border-style);border-right-width:0}.border-r-\[8px\]{border-right-style:var(--tw-border-style);border-right-width:8px}.border-b{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.border-b-\[1\.3px\]{border-bottom-style:var(--tw-border-style);border-bottom-width:1.3px}.border-b-\[8px\]{border-bottom-style:var(--tw-border-style);border-bottom-width:8px}.border-l-\[8px\]{border-left-style:var(--tw-border-style);border-left-width:8px}.border-dashed{--tw-border-style:dashed;border-style:dashed}.border-none\!{--tw-border-style:none!important;border-style:none!important}.\!border-red-500{border-color:#eb4571!important}.border-aqua-500{border-color:#1da696}.border-blue-100{border-color:#ecf1fd}.border-blue-200{border-color:#cad6f9}.border-blue-400{border-color:#6a8def}.border-blue-500{border-color:#4570eb}.border-blue-500\!{border-color:#4570eb!important}.border-blue-600{border-color:#375abc}.border-blue-800{border-color:#1c2d5e}.border-gray-100{border-color:#f0f0f2}.border-gray-200{border-color:#c7c8ca}.border-gray-300{border-color:#abacaf}.border-gray-400{border-color:#8f9095}.border-gray-500{border-color:#72747a}.border-gray-700\/50{border-color:#3b3d4580}.border-red-500{border-color:#eb4571}.border-red-500\!{border-color:#eb4571!important}.border-transparent{border-color:#0000}.border-t-blue-500{border-top-color:#4570eb}.border-t-gray-700{border-top-color:#3b3d45}.border-t-transparent{border-top-color:#0000}.border-r-blue-300{border-right-color:#8fa9f3}.border-r-gray-700{border-right-color:#3b3d45}.border-r-transparent{border-right-color:#0000}.border-b-blue-200{border-bottom-color:#cad6f9}.border-b-blue-500{border-bottom-color:#4570eb}.border-b-gray-700{border-bottom-color:#3b3d45}.border-b-transparent{border-bottom-color:#0000}.border-l-blue-400{border-left-color:#6a8def}.border-l-gray-700{border-left-color:#3b3d45}.border-l-transparent{border-left-color:#0000}.\!bg-aqua-100{background-color:#d4f5f1!important}.\!bg-blue-50{background-color:#f9fafe!important}.\!bg-blue-100{background-color:#ecf1fd!important}.\!bg-gray-100{background-color:#f0f0f2!important}.\!bg-transparent{background-color:#0000!important}.bg-\[\#DEE6F7\]{background-color:#dee6f7}.bg-aqua-100{background-color:#d4f5f1}.bg-aqua-200{background-color:#7de2d6}.bg-aqua-500{background-color:#1da696}.bg-black{background-color:var(--color-black)}.bg-black\/50{background-color:color-mix(in oklab,var(--color-black)50%,transparent)}.bg-blue-50{background-color:#f9fafe}.bg-blue-100{background-color:#ecf1fd}.bg-blue-100\/30{background-color:#ecf1fd4d}.bg-blue-100\/50{background-color:#ecf1fd80}.bg-blue-200{background-color:#cad6f9}.bg-blue-400{background-color:#6a8def}.bg-blue-500{background-color:#4570eb}.bg-blue-600{background-color:#375abc}.bg-blue-800{background-color:#1c2d5e}.bg-blue-900{background-color:#0e162f}.bg-gray-50{background-color:var(--color-gray-50)}.bg-gray-50\/50{background-color:color-mix(in oklab,var(--color-gray-50)50%,transparent)}.bg-gray-100{background-color:#f0f0f2}.bg-gray-100\!{background-color:#f0f0f2!important}.bg-gray-200{background-color:#c7c8ca}.bg-gray-400{background-color:#8f9095}.bg-gray-500{background-color:#72747a}.bg-gray-700{background-color:#3b3d45}.bg-green-100{background-color:var(--color-green-100)}.bg-green-500{background-color:#16a85b}.bg-light{background-color:#f9fbff}.bg-purple-500{background-color:var(--color-purple-500)}.bg-red-100{background-color:var(--color-red-100)}.bg-red-500{background-color:#eb4571}.bg-red-500\/20{background-color:#eb457133}.bg-transparent{background-color:#0000}.bg-white{background-color:#fff}.bg-yellow-100{background-color:var(--color-yellow-100)}.bg-yellow-500{background-color:var(--color-yellow-500)}.bg-gradient-to-b{--tw-gradient-position:to bottom in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.bg-gradient-to-r{--tw-gradient-position:to right in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.from-aqua-500{--tw-gradient-from:#1da696;--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.from-blue-500{--tw-gradient-from:#4570eb;--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.to-aqua-200{--tw-gradient-to:#7de2d6;--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.to-blue-200{--tw-gradient-to:#cad6f9;--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.object-contain{object-fit:contain}.object-cover{object-fit:cover}.\!p-0,.p-0\!{padding:0!important}.p-2{padding:.2rem}.p-4{padding:.4rem}.p-6{padding:.6rem}.p-8{padding:.8rem}.p-12{padding:1.2rem}.p-16{padding:1.6rem}.p-20{padding:2rem}.p-24{padding:2.4rem}.p-32{padding:3.2rem}.p-40{padding:4rem}.p-\[18px\]{padding:18px}.px-0\!{padding-inline:0!important}.px-2{padding-inline:.2rem}.px-3{padding-inline:.3rem}.px-4{padding-inline:.4rem}.px-6{padding-inline:.6rem}.px-8{padding-inline:.8rem}.px-10{padding-inline:1rem}.px-12{padding-inline:1.2rem}.px-14{padding-inline:1.4rem}.px-16{padding-inline:1.6rem}.px-20{padding-inline:2rem}.px-24{padding-inline:2.4rem}.px-32{padding-inline:3.2rem}.px-\[12\.3px\]{padding-inline:12.3px}.px-\[12px\]{padding-inline:12px}.px-\[24px\]{padding-inline:24px}.py-1{padding-block:.1rem}.py-2{padding-block:.2rem}.py-3{padding-block:.3rem}.py-4{padding-block:.4rem}.py-5{padding-block:.5rem}.py-6{padding-block:.6rem}.py-7{padding-block:.7rem}.py-8{padding-block:.8rem}.py-10{padding-block:1rem}.py-10\!{padding-block:1rem!important}.py-12\!{padding-block:1.2rem!important}.py-16{padding-block:1.6rem}.py-24{padding-block:2.4rem}.py-\[8px\]{padding-block:8px}.pt-0{padding-top:0}.pt-16{padding-top:1.6rem}.pt-28{padding-top:2.8rem}.pr-12{padding-right:1.2rem}.pr-\[10px\]{padding-right:10px}.pb-0\!{padding-bottom:0!important}.pb-16{padding-bottom:1.6rem}.pl-12{padding-left:1.2rem}.pl-36{padding-left:3.6rem}.pl-40{padding-left:4rem}.text-center{text-align:center}.text-left{text-align:left}.text-start{text-align:start}.indent-\[10000px\]{text-indent:10000px}.align-middle{vertical-align:middle}.font-mono{font-family:var(--font-mono)}.text-header-1{font-size:2.8rem;font-weight:700;line-height:100%}@media (width>=48rem){.text-header-1{font-size:4rem}}.text-header-4{font-size:1.6rem;font-weight:700;line-height:100%}@media (width>=48rem){.text-header-4{font-size:1.8rem}}.text-2xl{font-size:2rem}.text-3xl{font-size:2.4rem}.text-\[6px\]{font-size:6px}.text-\[10px\]{font-size:10px}.text-\[12px\]{font-size:12px}.text-\[14px\]{font-size:14px}.text-\[16px\]{font-size:16px}.text-\[20px\]{font-size:20px}.text-base{font-size:1.4rem}.text-base\!{font-size:1.4rem!important}.text-body-m{font-size:1.6rem}.text-body-s{font-size:1.4rem}.text-header-1{font-size:2.8rem}.text-header-4{font-size:1.6rem}.text-label{font-size:1.2rem}.text-lg{font-size:1.6rem}.text-lg\!{font-size:1.6rem!important}.text-md{font-size:1.3rem}.text-sm{font-size:1.2rem}.text-xl{font-size:1.8rem}.text-xs{font-size:1rem}.leading-\[16px\]{--tw-leading:16px;line-height:16px}.leading-\[22px\]{--tw-leading:22px;line-height:22px}.leading-\[100\%\]{--tw-leading:100%;line-height:100%}.leading-\[150\%\]{--tw-leading:150%;line-height:150%}.leading-none{--tw-leading:1;line-height:1}.leading-normal{--tw-leading:var(--leading-normal);line-height:var(--leading-normal)}.body-l,.body-m,.body-s,.label{line-height:100%}.font-400{--tw-font-weight:400;font-weight:400}.font-500{--tw-font-weight:500;font-weight:500}.font-600{--tw-font-weight:600;font-weight:600}.font-700,.font-bold{--tw-font-weight:700;font-weight:700}.font-medium{--tw-font-weight:500;font-weight:500}.font-normal{--tw-font-weight:400;font-weight:400}.font-semibold{--tw-font-weight:600;font-weight:600}.tracking-wide{--tw-tracking:var(--tracking-wide);letter-spacing:var(--tracking-wide)}.tracking-wider{--tw-tracking:var(--tracking-wider);letter-spacing:var(--tracking-wider)}.text-nowrap{text-wrap:nowrap}.text-ellipsis{text-overflow:ellipsis}.whitespace-nowrap{white-space:nowrap}.\!text-black{color:var(--color-black)!important}.\!text-gray-300{color:#abacaf!important}.\!text-red-500{color:#eb4571!important}.text-\[\#9CA1B6\]{color:#9ca1b6}.text-aqua-500{color:#1da696}.text-black{color:var(--color-black)}.text-blue-50{color:#f9fafe}.text-blue-100{color:#ecf1fd}.text-blue-200{color:#cad6f9}.text-blue-300{color:#8fa9f3}.text-blue-400{color:#6a8def}.text-blue-500{color:#4570eb}.text-blue-500\!{color:#4570eb!important}.text-blue-800{color:#1c2d5e}.text-blue-900{color:#0e162f}.text-error{color:#eb4571}.text-gray-100{color:#f0f0f2}.text-gray-300{color:#abacaf}.text-gray-400{color:#8f9095}.text-gray-500{color:#72747a}.text-gray-600{color:#57595f}.text-gray-700{color:#3b3d45}.text-gray-800{color:#1e212a}.text-gray-900{color:var(--color-gray-900)}.text-green-500{color:#16a85b}.text-green-700{color:#0f6136}.text-green-800{color:var(--color-green-800)}.text-red-500{color:#eb4571}.text-red-500\!{color:#eb4571!important}.text-red-600{color:#b23456}.text-white{color:#fff}.text-yellow-500{color:var(--color-yellow-500)}.capitalize{text-transform:capitalize}.uppercase{text-transform:uppercase}.underline{text-decoration-line:underline}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.\!caret-transparent{caret-color:#0000!important}.opacity-0{opacity:0}.opacity-20{opacity:.2}.opacity-50{opacity:.5}.opacity-50\!{opacity:.5!important}.opacity-60{opacity:.6}.opacity-100{opacity:1}.shadow{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px 0 var(--tw-shadow-color,#0000000f);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-2xl{--tw-shadow:0 25px 50px -12px var(--tw-shadow-color,#00000040);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-blue-sh{--tw-shadow:0px 0px 10px 4px var(--tw-shadow-color,#c7d8ff4d);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-inner{--tw-shadow:inset 0 2px 4px 0 var(--tw-shadow-color,#0000000f);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-lg{--tw-shadow:0 10px 15px -3px var(--tw-shadow-color,#0000001a),0 4px 6px -2px var(--tw-shadow-color,#0000000d);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-md{--tw-shadow:0 4px 6px -1px var(--tw-shadow-color,#0000001a),0 2px 4px -1px var(--tw-shadow-color,#0000000f);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-sm{--tw-shadow:0 1px 2px 0 var(--tw-shadow-color,#0000000d);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-xl{--tw-shadow:0 20px 25px -5px var(--tw-shadow-color,#0000001a),0 10px 10px -5px var(--tw-shadow-color,#0000000a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.outline-hidden{--tw-outline-style:none;outline-style:none}@media (forced-colors:active){.outline-hidden{outline-offset:2px;outline:2px solid #0000}}.outline{outline-style:var(--tw-outline-style);outline-width:1px}.drop-shadow-xl{--tw-drop-shadow:drop-shadow(0 20px 13px #00000008)drop-shadow(0 8px 5px #00000014);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,)}.backdrop-blur-\[0\.60px\]{--tw-backdrop-blur:blur(.6px);-webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)}.transition{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-all{transition-property:all;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-colors{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-opacity{transition-property:opacity;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-transform{transition-property:transform,translate,scale,rotate;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.duration-100{--tw-duration:.1s;transition-duration:.1s}.duration-150{--tw-duration:.15s;transition-duration:.15s}.duration-200{--tw-duration:.2s;transition-duration:.2s}.duration-300{--tw-duration:.3s;transition-duration:.3s}.duration-500{--tw-duration:.5s;transition-duration:.5s}.ease-in-out{--tw-ease:var(--ease-in-out);transition-timing-function:var(--ease-in-out)}.ease-linear{--tw-ease:linear;transition-timing-function:linear}.ease-out{--tw-ease:var(--ease-out);transition-timing-function:var(--ease-out)}.\!select-none{-webkit-user-select:none!important;user-select:none!important}.outline-none{--tw-outline-style:none;outline-style:none}.select-none{-webkit-user-select:none;user-select:none}.group-focus-within\:border-blue-500:is(:where(.group):focus-within *){border-color:#4570eb}.group-focus-within\:text-blue-500:is(:where(.group):focus-within *){color:#4570eb}@media (hover:hover){.group-hover\:border-blue-300:is(:where(.group):hover *){border-color:#8fa9f3}.group-hover\:bg-aqua-100:is(:where(.group):hover *){background-color:#d4f5f1}.group-hover\:bg-blue-100:is(:where(.group):hover *){background-color:#ecf1fd}.group-hover\:text-aqua-500:is(:where(.group):hover *){color:#1da696}.group-hover\:text-blue-300:is(:where(.group):hover *){color:#8fa9f3}.group-hover\:text-blue-500:is(:where(.group):hover *){color:#4570eb}.group-hover\:text-gray-800:is(:where(.group):hover *){color:#1e212a}.group-hover\:opacity-100:is(:where(.group):hover *){opacity:1}}.group-disabled\:bg-gray-500:is(:where(.group):disabled *){background-color:#72747a}.placeholder\:font-600::placeholder{--tw-font-weight:600;font-weight:600}.placeholder\:text-gray-400::placeholder{color:#8f9095}.focus-within\:border-blue-500:focus-within{border-color:#4570eb}@media (hover:hover){.hover\:\!cursor-pointer:hover{cursor:pointer!important}.hover\:cursor-not-allowed\!:hover{cursor:not-allowed!important}.hover\:border-aqua-400:hover{border-color:#27cfbb}.hover\:border-aqua-600:hover{border-color:#167c70}.hover\:border-blue-300:hover{border-color:#8fa9f3}.hover\:border-blue-400:hover{border-color:#6a8def}.hover\:border-blue-500:hover{border-color:#4570eb}.hover\:border-blue-600:hover{border-color:#375abc}.hover\:border-gray-400:hover{border-color:#8f9095}.hover\:border-gray-600:hover{border-color:#57595f}.hover\:border-red-400:hover{border-color:var(--color-red-400)}.hover\:border-red-600:hover{border-color:#b23456}.hover\:bg-aqua-100:hover{background-color:#d4f5f1}.hover\:bg-aqua-100\/40:hover{background-color:#d4f5f166}.hover\:bg-aqua-100\/80:hover{background-color:#d4f5f1cc}.hover\:bg-aqua-200\/50:hover{background-color:#7de2d680}.hover\:bg-aqua-600:hover{background-color:#167c70}.hover\:bg-blue-50:hover{background-color:#f9fafe}.hover\:bg-blue-100:hover{background-color:#ecf1fd}.hover\:bg-blue-100\/40:hover{background-color:#ecf1fd66}.hover\:bg-blue-100\/50:hover{background-color:#ecf1fd80}.hover\:bg-blue-100\/80:hover{background-color:#ecf1fdcc}.hover\:bg-blue-200:hover{background-color:#cad6f9}.hover\:bg-blue-600:hover{background-color:#375abc}.hover\:bg-gray-50\/50:hover{background-color:color-mix(in oklab,var(--color-gray-50)50%,transparent)}.hover\:bg-gray-100:hover{background-color:#f0f0f2}.hover\:bg-gray-200:hover{background-color:#c7c8ca}.hover\:bg-gray-600:hover{background-color:#57595f}.hover\:bg-red-500\/30:hover{background-color:#eb45714d}.hover\:bg-red-600:hover{background-color:#b23456}.hover\:text-aqua-500:hover{color:#1da696}.hover\:text-aqua-600:hover{color:#167c70}.hover\:text-blue-500:hover{color:#4570eb}.hover\:text-blue-600:hover{color:#375abc}.hover\:text-blue-700:hover{color:#29438d}.hover\:text-gray-500:hover{color:#72747a}.hover\:text-gray-600:hover{color:#57595f}.hover\:text-gray-700:hover{color:#3b3d45}.hover\:text-red-500:hover{color:#eb4571}.hover\:text-red-600:hover{color:#b23456}.hover\:text-white:hover{color:#fff}.hover\:opacity-80:hover{opacity:.8}.hover\:shadow-blue-sh:hover{--tw-shadow:0px 0px 10px 4px var(--tw-shadow-color,#c7d8ff4d);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}}.focus\:outline-none:focus{--tw-outline-style:none;outline-style:none}.active\:border-aqua-700:active{border-color:#0f534b}.active\:border-blue-700:active{border-color:#29438d}.active\:border-gray-700:active{border-color:#3b3d45}.active\:border-red-700:active{border-color:#8f2945}.active\:bg-aqua-100\/20:active{background-color:#d4f5f133}.active\:bg-aqua-100\/50:active{background-color:#d4f5f180}.active\:bg-aqua-200\/70:active{background-color:#7de2d6b3}.active\:bg-aqua-700:active{background-color:#0f534b}.active\:bg-blue-100\/20:active{background-color:#ecf1fd33}.active\:bg-blue-100\/50:active{background-color:#ecf1fd80}.active\:bg-blue-300\/80:active{background-color:#8fa9f3cc}.active\:bg-blue-700:active{background-color:#29438d}.active\:bg-gray-300:active{background-color:#abacaf}.active\:bg-gray-700:active{background-color:#3b3d45}.active\:bg-red-700:active{background-color:#8f2945}.active\:bg-red-700\/40:active{background-color:#8f294566}.active\:text-aqua-500:active{color:#1da696}.active\:text-aqua-700:active{color:#0f534b}.active\:text-blue-500:active{color:#4570eb}.active\:text-blue-700:active{color:#29438d}.active\:text-gray-700:active{color:#3b3d45}.active\:text-red-700:active{color:#8f2945}.active\:text-white:active{color:#fff}.active\:shadow-blue-sh:active{--tw-shadow:0px 0px 10px 4px var(--tw-shadow-color,#c7d8ff4d);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\:bg-gray-100:disabled{background-color:#f0f0f2}.disabled\:text-gray-300:disabled{color:#abacaf}.disabled\:opacity-50:disabled{opacity:.5}.disabled\:placeholder\:text-gray-300:disabled::placeholder{color:#abacaf}@media (width>=48rem){.md\:gap-24{gap:2.4rem}.md\:p-32{padding:3.2rem}.md\:px-0{padding-inline:0}.md\:pt-0{padding-top:0}.md\:pt-4{padding-top:.4rem}.md\:pb-0{padding-bottom:0}.md\:text-lg{font-size:1.6rem}.md\:text-xl{font-size:1.8rem}}@media (width>=64rem){.lg\:p-20{padding:2rem}}*{text-rendering:optimizeLegibility;-o-text-rendering:optimizeLegibility;-ms-text-rendering:optimizeLegibility;-moz-text-rendering:optimizeLegibility;-webkit-text-rendering:optimizeLegibility;-webkit-tap-highlight-color:transparent}button{cursor:pointer}html{color:#000;background-color:#fff;font-size:62.5%}* :focus{outline:none!important}body.no-animate *,body.no-animate :before,body.no-animate :after{transition:none!important;animation:none!important}button:focus{outline:none}input:-webkit-autofill{transitiondelay:9999s;transitionproperty:background-color,color}input:-webkit-autofill:hover{transitiondelay:9999s;transitionproperty:background-color,color}input:-webkit-autofill:focus{transitiondelay:9999s;transitionproperty:background-color,color}input:-webkit-autofill:active{transitiondelay:9999s;transitionproperty:background-color,color}:focus{outline-color:#0000}}@property --tw-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-y{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-z{syntax:"*";inherits:false;initial-value:0}@property --tw-rotate-x{syntax:"*";inherits:false;initial-value:rotateX(0)}@property --tw-rotate-y{syntax:"*";inherits:false;initial-value:rotateY(0)}@property --tw-rotate-z{syntax:"*";inherits:false;initial-value:rotateZ(0)}@property --tw-skew-x{syntax:"*";inherits:false;initial-value:skewX(0)}@property --tw-skew-y{syntax:"*";inherits:false;initial-value:skewY(0)}@property --tw-space-y-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-space-x-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-gradient-position{syntax:"*";inherits:false}@property --tw-gradient-from{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-via{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-to{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-stops{syntax:"*";inherits:false}@property --tw-gradient-via-stops{syntax:"*";inherits:false}@property --tw-gradient-from-position{syntax:"<length-percentage>";inherits:false;initial-value:0%}@property --tw-gradient-via-position{syntax:"<length-percentage>";inherits:false;initial-value:50%}@property --tw-gradient-to-position{syntax:"<length-percentage>";inherits:false;initial-value:100%}@property --tw-leading{syntax:"*";inherits:false}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-tracking{syntax:"*";inherits:false}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"<length>";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-outline-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-blur{syntax:"*";inherits:false}@property --tw-brightness{syntax:"*";inherits:false}@property --tw-contrast{syntax:"*";inherits:false}@property --tw-grayscale{syntax:"*";inherits:false}@property --tw-hue-rotate{syntax:"*";inherits:false}@property --tw-invert{syntax:"*";inherits:false}@property --tw-opacity{syntax:"*";inherits:false}@property --tw-saturate{syntax:"*";inherits:false}@property --tw-sepia{syntax:"*";inherits:false}@property --tw-drop-shadow{syntax:"*";inherits:false}@property --tw-backdrop-blur{syntax:"*";inherits:false}@property --tw-backdrop-brightness{syntax:"*";inherits:false}@property --tw-backdrop-contrast{syntax:"*";inherits:false}@property --tw-backdrop-grayscale{syntax:"*";inherits:false}@property --tw-backdrop-hue-rotate{syntax:"*";inherits:false}@property --tw-backdrop-invert{syntax:"*";inherits:false}@property --tw-backdrop-opacity{syntax:"*";inherits:false}@property --tw-backdrop-saturate{syntax:"*";inherits:false}@property --tw-backdrop-sepia{syntax:"*";inherits:false}@property --tw-duration{syntax:"*";inherits:false}@property --tw-ease{syntax:"*";inherits:false}@keyframes spin{to{transform:rotate(360deg)}}@keyframes sk-fold-cube{0%,10%{opacity:0;transform:perspective(140px)rotateX(-180deg)}25%,75%{opacity:1;transform:perspective(140px)rotateX(0)}90%,to{opacity:0;transform:perspective(140px)rotateY(180deg)}}