@aivenio/aquarium 1.9.0 → 1.11.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (278) hide show
  1. package/dist/_variables.scss +1 -1
  2. package/dist/_variables_timescale.scss +1 -1
  3. package/dist/atoms.cjs +50 -53
  4. package/dist/atoms.mjs +46 -49
  5. package/dist/src/{common → atoms}/Alert/Alert.d.ts +2 -2
  6. package/dist/src/atoms/Alert/Alert.js +74 -0
  7. package/dist/src/{common → atoms}/Banner/Banner.d.ts +2 -2
  8. package/dist/src/atoms/Banner/Banner.js +57 -0
  9. package/dist/src/atoms/Card/Card.js +54 -0
  10. package/dist/src/{common → atoms}/Checkbox/Checkbox.js +2 -2
  11. package/dist/src/{common → atoms}/Chip/Chip.js +1 -1
  12. package/dist/src/{common → atoms}/DataList/DataList.js +3 -3
  13. package/dist/src/{common → atoms}/Dialog/Dialog.d.ts +1 -1
  14. package/dist/src/{common → atoms}/Dialog/Dialog.js +1 -1
  15. package/dist/src/atoms/DropdownMenu/DropdownMenu.js +62 -0
  16. package/dist/src/{common → atoms}/InputGroup/InputGroup.d.ts +1 -1
  17. package/dist/src/{common → atoms}/InputGroup/InputGroup.js +2 -2
  18. package/dist/src/atoms/LineClamp/LineClamp.d.ts +11 -0
  19. package/dist/src/atoms/LineClamp/LineClamp.js +20 -0
  20. package/dist/src/{common → atoms}/Link/Link.js +1 -1
  21. package/dist/src/{common → atoms}/Modal/Modal.d.ts +1 -1
  22. package/dist/src/atoms/Modal/Modal.js +68 -0
  23. package/dist/src/{common → atoms}/Popover/Popover.js +2 -2
  24. package/dist/src/{common → atoms}/PopoverDialog/PopoverDialog.js +2 -2
  25. package/dist/src/{common → atoms}/ProgressBar/ProgressBar.js +1 -1
  26. package/dist/src/{common → atoms}/RadioButton/RadioButton.js +1 -1
  27. package/dist/src/{common → atoms}/Section/Section.d.ts +2 -2
  28. package/dist/src/atoms/Section/Section.js +46 -0
  29. package/dist/src/{common → atoms}/Select/Select.js +2 -2
  30. package/dist/src/{common → atoms}/Stepper/Stepper.js +2 -2
  31. package/dist/src/{common → atoms}/Switch/Switch.js +1 -1
  32. package/dist/src/{common → atoms}/Table/Table.d.ts +2 -2
  33. package/dist/src/atoms/Table/Table.js +91 -0
  34. package/dist/src/{common → atoms}/Timeline/Timeline.js +1 -1
  35. package/dist/src/{common → atoms}/Typography/Typography.js +1 -1
  36. package/dist/src/{common → atoms}/index.js +1 -1
  37. package/dist/src/{components → molecules}/Alert/Alert.d.ts +1 -1
  38. package/dist/src/molecules/Alert/Alert.js +12 -0
  39. package/dist/src/molecules/Avatar/Avatar.js +10 -0
  40. package/dist/src/{components → molecules}/Badge/Badge.js +1 -1
  41. package/dist/src/{components → molecules}/Banner/Banner.d.ts +1 -1
  42. package/dist/src/molecules/Banner/Banner.js +44 -0
  43. package/dist/src/{components → molecules}/Box/Box.d.ts +2 -2
  44. package/dist/src/{components → molecules}/Box/Box.js +2 -2
  45. package/dist/src/{components → molecules}/Breadcrumbs/Breadcrumbs.js +2 -2
  46. package/dist/src/molecules/Button/Button.js +105 -0
  47. package/dist/src/{components → molecules}/Card/Card.d.ts +1 -1
  48. package/dist/src/molecules/Card/Card.js +48 -0
  49. package/dist/src/{components → molecules}/Card/Compact.d.ts +1 -1
  50. package/dist/src/molecules/Card/Compact.js +43 -0
  51. package/dist/src/{components → molecules}/Card/types.js +1 -1
  52. package/dist/src/{components → molecules}/Carousel/Carousel.js +4 -4
  53. package/dist/src/{components → molecules}/Checkbox/Checkbox.d.ts +1 -1
  54. package/dist/src/molecules/Checkbox/Checkbox.js +29 -0
  55. package/dist/src/{components → molecules}/CheckboxGroup/CheckboxGroup.d.ts +2 -2
  56. package/dist/src/molecules/CheckboxGroup/CheckboxGroup.js +61 -0
  57. package/dist/src/{components → molecules}/Chip/Chip.d.ts +1 -1
  58. package/dist/src/molecules/Chip/Chip.js +64 -0
  59. package/dist/src/{components → molecules}/ChoiceChip/ChoiceChip.js +1 -1
  60. package/dist/src/molecules/Combobox/Combobox.js +109 -0
  61. package/dist/src/molecules/Container/Container.js +18 -0
  62. package/dist/src/molecules/Context/Context.js +18 -0
  63. package/dist/src/{components → molecules}/ControlLabel/ControlLabel.d.ts +1 -1
  64. package/dist/src/{components → molecules}/ControlLabel/ControlLabel.js +2 -2
  65. package/dist/src/molecules/DataList/DataList.js +24 -0
  66. package/dist/src/{components → molecules}/DataTable/DataTable.d.ts +1 -1
  67. package/dist/src/molecules/DataTable/DataTable.js +42 -0
  68. package/dist/src/{components → molecules}/Dialog/Dialog.d.ts +2 -2
  69. package/dist/src/molecules/Dialog/Dialog.js +41 -0
  70. package/dist/src/{components → molecules}/Divider/Divider.js +1 -1
  71. package/dist/src/{components → molecules}/Dropdown/Dropdown.d.ts +2 -2
  72. package/dist/src/molecules/Dropdown/Dropdown.js +87 -0
  73. package/dist/src/{components → molecules}/DropdownMenu/DropdownMenu.d.ts +1 -1
  74. package/dist/src/molecules/DropdownMenu/DropdownMenu.js +148 -0
  75. package/dist/src/molecules/DropdownMenu/utils.js +20 -0
  76. package/dist/src/{components → molecules}/Element/Element.js +1 -1
  77. package/dist/src/molecules/EmptyState/EmptyState.js +74 -0
  78. package/dist/src/{components → molecules}/Flexbox/Flexbox.d.ts +1 -1
  79. package/dist/src/molecules/Flexbox/Flexbox.js +19 -0
  80. package/dist/src/{components → molecules}/Flexbox/FlexboxItem.d.ts +1 -1
  81. package/dist/src/molecules/Flexbox/FlexboxItem.js +16 -0
  82. package/dist/src/{components → molecules}/Grid/Grid.d.ts +1 -1
  83. package/dist/src/molecules/Grid/Grid.js +31 -0
  84. package/dist/src/{components → molecules}/Grid/GridItem.d.ts +1 -1
  85. package/dist/src/molecules/Grid/GridItem.js +20 -0
  86. package/dist/src/{components → molecules}/Icon/Icon.js +1 -1
  87. package/dist/src/{components → molecules}/Input/Input.js +2 -2
  88. package/dist/src/{components → molecules}/LineClamp/LineClamp.d.ts +9 -1
  89. package/dist/src/molecules/LineClamp/LineClamp.js +21 -0
  90. package/dist/src/{components → molecules}/Link/Link.d.ts +1 -1
  91. package/dist/src/molecules/Link/Link.js +4 -0
  92. package/dist/src/molecules/List/List.js +6 -0
  93. package/dist/src/molecules/ListItem/ListItem.js +10 -0
  94. package/dist/src/{components → molecules}/Modal/Modal.d.ts +2 -2
  95. package/dist/src/{components → molecules}/Modal/Modal.js +4 -4
  96. package/dist/src/{components → molecules}/MultiInput/InputChip.js +3 -3
  97. package/dist/src/molecules/MultiInput/MultiInput.js +153 -0
  98. package/dist/src/{components → molecules}/MultiSelect/MultiSelect.d.ts +1 -1
  99. package/dist/src/molecules/MultiSelect/MultiSelect.js +149 -0
  100. package/dist/src/{components → molecules}/NativeSelect/NativeSelect.js +3 -3
  101. package/dist/src/{components → molecules}/PageHeader/PageHeader.d.ts +1 -1
  102. package/dist/src/molecules/PageHeader/PageHeader.js +40 -0
  103. package/dist/src/molecules/Pagination/Pagination.js +52 -0
  104. package/dist/src/molecules/Pagination/usePagination.js +36 -0
  105. package/dist/src/{components → molecules}/Popover/Popover.d.ts +1 -1
  106. package/dist/src/molecules/Popover/Popover.js +79 -0
  107. package/dist/src/molecules/Popover/PopoverContext.js +10 -0
  108. package/dist/src/molecules/Popover/PopoverWrapper.js +34 -0
  109. package/dist/src/{components → molecules}/PopoverDialog/PopoverDialog.d.ts +2 -2
  110. package/dist/src/molecules/PopoverDialog/PopoverDialog.js +28 -0
  111. package/dist/src/molecules/Portal/Portal.js +3 -0
  112. package/dist/src/molecules/ProgressBar/ProgressBar.js +23 -0
  113. package/dist/src/{components → molecules}/RadioButton/RadioButton.d.ts +1 -1
  114. package/dist/src/molecules/RadioButton/RadioButton.js +29 -0
  115. package/dist/src/{components → molecules}/RadioButtonGroup/RadioButtonGroup.d.ts +2 -2
  116. package/dist/src/molecules/RadioButtonGroup/RadioButtonGroup.js +65 -0
  117. package/dist/src/{components → molecules}/Section/Section.js +4 -4
  118. package/dist/src/{components → molecules}/SegmentedControl/SegmentedControl.js +1 -1
  119. package/dist/src/molecules/Select/Select.js +144 -0
  120. package/dist/src/molecules/Skeleton/Skeleton.js +18 -0
  121. package/dist/src/molecules/Spacing/Spacing.d.ts +14 -0
  122. package/dist/src/molecules/Spacing/Spacing.js +18 -0
  123. package/dist/src/molecules/Stepper/Stepper.js +25 -0
  124. package/dist/src/{components → molecules}/Switch/Switch.d.ts +1 -1
  125. package/dist/src/molecules/Switch/Switch.js +29 -0
  126. package/dist/src/{components → molecules}/SwitchGroup/SwitchGroup.d.ts +2 -2
  127. package/dist/src/molecules/SwitchGroup/SwitchGroup.js +59 -0
  128. package/dist/src/{components → molecules}/Table/Table.d.ts +1 -1
  129. package/dist/src/{components → molecules}/Table/Table.js +2 -2
  130. package/dist/src/molecules/Tabs/Tabs.js +220 -0
  131. package/dist/src/{components → molecules}/TagLabel/TagLabel.js +1 -1
  132. package/dist/src/{components → molecules}/Tailwindify/Tailwindify.js +1 -1
  133. package/dist/src/molecules/Template/Template.js +23 -0
  134. package/dist/src/molecules/Textarea/Textarea.js +46 -0
  135. package/dist/src/molecules/Timeline/Timeline.js +42 -0
  136. package/dist/src/{components → molecules}/Tooltip/Tooltip.d.ts +1 -1
  137. package/dist/src/molecules/Tooltip/Tooltip.js +110 -0
  138. package/dist/src/{components → molecules}/Tooltip/useTooltipTriggerState.js +1 -1
  139. package/dist/src/{components → molecules}/Typography/Typography.d.ts +1 -1
  140. package/dist/src/molecules/Typography/Typography.js +89 -0
  141. package/dist/src/{components → molecules}/index.d.ts +1 -0
  142. package/dist/src/{components → molecules}/index.js +3 -2
  143. package/dist/src/system.d.ts +3 -3
  144. package/dist/src/system.js +4 -4
  145. package/dist/src/utils/constants.js +2 -2
  146. package/dist/src/utils/form/FormControl/FormControl.js +2 -2
  147. package/dist/src/utils/form/HelperText/HelperText.js +2 -2
  148. package/dist/src/utils/form/InputAdornment/InputAdornment.d.ts +1 -1
  149. package/dist/src/utils/form/InputAdornment/InputAdornment.js +2 -2
  150. package/dist/src/utils/form/Label/Label.d.ts +1 -1
  151. package/dist/src/utils/form/Label/Label.js +3 -3
  152. package/dist/src/utils/table/types.d.ts +2 -2
  153. package/dist/src/utils/useStyle.js +2 -2
  154. package/dist/styles.css +832 -809
  155. package/dist/styles_timescaledb.css +832 -809
  156. package/dist/system.cjs +261 -240
  157. package/dist/system.mjs +254 -234
  158. package/dist/tailwind.config.js +0 -1
  159. package/dist/tsconfig.module.tsbuildinfo +1 -1
  160. package/dist/types/ActionType.d.ts +1 -1
  161. package/dist/types/tailwindGenerated.d.ts +1 -1
  162. package/package.json +4 -4
  163. package/dist/src/common/Alert/Alert.js +0 -74
  164. package/dist/src/common/Banner/Banner.js +0 -57
  165. package/dist/src/common/Card/Card.js +0 -54
  166. package/dist/src/common/DropdownMenu/DropdownMenu.js +0 -62
  167. package/dist/src/common/LineClamp/LineClamp.d.ts +0 -9
  168. package/dist/src/common/LineClamp/LineClamp.js +0 -18
  169. package/dist/src/common/Modal/Modal.js +0 -68
  170. package/dist/src/common/Section/Section.js +0 -46
  171. package/dist/src/common/Table/Table.js +0 -91
  172. package/dist/src/components/Alert/Alert.js +0 -12
  173. package/dist/src/components/Avatar/Avatar.js +0 -10
  174. package/dist/src/components/Banner/Banner.js +0 -44
  175. package/dist/src/components/Button/Button.js +0 -105
  176. package/dist/src/components/Card/Card.js +0 -48
  177. package/dist/src/components/Card/Compact.js +0 -43
  178. package/dist/src/components/Checkbox/Checkbox.js +0 -29
  179. package/dist/src/components/CheckboxGroup/CheckboxGroup.js +0 -61
  180. package/dist/src/components/Chip/Chip.js +0 -64
  181. package/dist/src/components/Combobox/Combobox.js +0 -109
  182. package/dist/src/components/Container/Container.js +0 -18
  183. package/dist/src/components/Context/Context.js +0 -18
  184. package/dist/src/components/DataList/DataList.js +0 -24
  185. package/dist/src/components/DataTable/DataTable.js +0 -42
  186. package/dist/src/components/Dialog/Dialog.js +0 -41
  187. package/dist/src/components/Dropdown/Dropdown.js +0 -87
  188. package/dist/src/components/DropdownMenu/DropdownMenu.js +0 -148
  189. package/dist/src/components/DropdownMenu/utils.js +0 -20
  190. package/dist/src/components/EmptyState/EmptyState.js +0 -74
  191. package/dist/src/components/Flexbox/Flexbox.js +0 -19
  192. package/dist/src/components/Flexbox/FlexboxItem.js +0 -16
  193. package/dist/src/components/Grid/Grid.js +0 -31
  194. package/dist/src/components/Grid/GridItem.js +0 -20
  195. package/dist/src/components/LineClamp/LineClamp.js +0 -17
  196. package/dist/src/components/Link/Link.js +0 -4
  197. package/dist/src/components/List/List.js +0 -6
  198. package/dist/src/components/ListItem/ListItem.js +0 -10
  199. package/dist/src/components/MultiInput/MultiInput.js +0 -153
  200. package/dist/src/components/MultiSelect/MultiSelect.js +0 -149
  201. package/dist/src/components/PageHeader/PageHeader.js +0 -40
  202. package/dist/src/components/Pagination/Pagination.js +0 -52
  203. package/dist/src/components/Pagination/usePagination.js +0 -36
  204. package/dist/src/components/Popover/Popover.js +0 -79
  205. package/dist/src/components/Popover/PopoverContext.js +0 -10
  206. package/dist/src/components/Popover/PopoverWrapper.js +0 -36
  207. package/dist/src/components/PopoverDialog/PopoverDialog.js +0 -28
  208. package/dist/src/components/Portal/Portal.js +0 -3
  209. package/dist/src/components/ProgressBar/ProgressBar.js +0 -23
  210. package/dist/src/components/RadioButton/RadioButton.js +0 -29
  211. package/dist/src/components/RadioButtonGroup/RadioButtonGroup.js +0 -65
  212. package/dist/src/components/Select/Select.js +0 -144
  213. package/dist/src/components/Skeleton/Skeleton.js +0 -18
  214. package/dist/src/components/Stepper/Stepper.js +0 -25
  215. package/dist/src/components/Switch/Switch.js +0 -29
  216. package/dist/src/components/SwitchGroup/SwitchGroup.js +0 -59
  217. package/dist/src/components/Tabs/Tabs.js +0 -220
  218. package/dist/src/components/Template/Template.js +0 -23
  219. package/dist/src/components/Textarea/Textarea.js +0 -46
  220. package/dist/src/components/Timeline/Timeline.js +0 -42
  221. package/dist/src/components/Tooltip/Tooltip.js +0 -110
  222. package/dist/src/components/Typography/Typography.js +0 -89
  223. /package/dist/src/{common → atoms}/Card/Card.d.ts +0 -0
  224. /package/dist/src/{common → atoms}/Checkbox/Checkbox.d.ts +0 -0
  225. /package/dist/src/{common → atoms}/Chip/Chip.d.ts +0 -0
  226. /package/dist/src/{common → atoms}/DataList/DataList.d.ts +0 -0
  227. /package/dist/src/{common → atoms}/DropdownMenu/DropdownMenu.d.ts +0 -0
  228. /package/dist/src/{common → atoms}/Link/Link.d.ts +0 -0
  229. /package/dist/src/{common → atoms}/Popover/Popover.d.ts +0 -0
  230. /package/dist/src/{common → atoms}/PopoverDialog/PopoverDialog.d.ts +0 -0
  231. /package/dist/src/{common → atoms}/ProgressBar/ProgressBar.d.ts +0 -0
  232. /package/dist/src/{common → atoms}/RadioButton/RadioButton.d.ts +0 -0
  233. /package/dist/src/{common → atoms}/Select/Select.d.ts +0 -0
  234. /package/dist/src/{common → atoms}/Stepper/Stepper.d.ts +0 -0
  235. /package/dist/src/{common → atoms}/Switch/Switch.d.ts +0 -0
  236. /package/dist/src/{common → atoms}/Timeline/Timeline.d.ts +0 -0
  237. /package/dist/src/{common → atoms}/Typography/Typography.d.ts +0 -0
  238. /package/dist/src/{common → atoms}/index.d.ts +0 -0
  239. /package/dist/src/{components → molecules}/Avatar/Avatar.d.ts +0 -0
  240. /package/dist/src/{components → molecules}/Badge/Badge.d.ts +0 -0
  241. /package/dist/src/{components → molecules}/Breadcrumbs/Breadcrumbs.d.ts +0 -0
  242. /package/dist/src/{components → molecules}/Button/Button.d.ts +0 -0
  243. /package/dist/src/{components → molecules}/Card/types.d.ts +0 -0
  244. /package/dist/src/{components → molecules}/Carousel/Carousel.d.ts +0 -0
  245. /package/dist/src/{components → molecules}/ChoiceChip/ChoiceChip.d.ts +0 -0
  246. /package/dist/src/{components → molecules}/Combobox/Combobox.d.ts +0 -0
  247. /package/dist/src/{components → molecules}/Container/Container.d.ts +0 -0
  248. /package/dist/src/{components → molecules}/Context/Context.d.ts +0 -0
  249. /package/dist/src/{components → molecules}/DataList/DataList.d.ts +0 -0
  250. /package/dist/src/{components → molecules}/Divider/Divider.d.ts +0 -0
  251. /package/dist/src/{components → molecules}/DropdownMenu/utils.d.ts +0 -0
  252. /package/dist/src/{components → molecules}/Element/Element.d.ts +0 -0
  253. /package/dist/src/{components → molecules}/EmptyState/EmptyState.d.ts +0 -0
  254. /package/dist/src/{components → molecules}/Icon/Icon.d.ts +0 -0
  255. /package/dist/src/{components → molecules}/Input/Input.d.ts +0 -0
  256. /package/dist/src/{components → molecules}/List/List.d.ts +0 -0
  257. /package/dist/src/{components → molecules}/ListItem/ListItem.d.ts +0 -0
  258. /package/dist/src/{components → molecules}/MultiInput/InputChip.d.ts +0 -0
  259. /package/dist/src/{components → molecules}/MultiInput/MultiInput.d.ts +0 -0
  260. /package/dist/src/{components → molecules}/NativeSelect/NativeSelect.d.ts +0 -0
  261. /package/dist/src/{components → molecules}/Pagination/Pagination.d.ts +0 -0
  262. /package/dist/src/{components → molecules}/Pagination/usePagination.d.ts +0 -0
  263. /package/dist/src/{components → molecules}/Popover/PopoverContext.d.ts +0 -0
  264. /package/dist/src/{components → molecules}/Popover/PopoverWrapper.d.ts +0 -0
  265. /package/dist/src/{components → molecules}/Portal/Portal.d.ts +0 -0
  266. /package/dist/src/{components → molecules}/ProgressBar/ProgressBar.d.ts +0 -0
  267. /package/dist/src/{components → molecules}/Section/Section.d.ts +0 -0
  268. /package/dist/src/{components → molecules}/SegmentedControl/SegmentedControl.d.ts +0 -0
  269. /package/dist/src/{components → molecules}/Select/Select.d.ts +0 -0
  270. /package/dist/src/{components → molecules}/Skeleton/Skeleton.d.ts +0 -0
  271. /package/dist/src/{components → molecules}/Stepper/Stepper.d.ts +0 -0
  272. /package/dist/src/{components → molecules}/Tabs/Tabs.d.ts +0 -0
  273. /package/dist/src/{components → molecules}/TagLabel/TagLabel.d.ts +0 -0
  274. /package/dist/src/{components → molecules}/Tailwindify/Tailwindify.d.ts +0 -0
  275. /package/dist/src/{components → molecules}/Template/Template.d.ts +0 -0
  276. /package/dist/src/{components → molecules}/Textarea/Textarea.d.ts +0 -0
  277. /package/dist/src/{components → molecules}/Timeline/Timeline.d.ts +0 -0
  278. /package/dist/src/{components → molecules}/Tooltip/useTooltipTriggerState.d.ts +0 -0
package/dist/styles.css CHANGED
@@ -667,427 +667,447 @@ input[type='number'].no-arrows {
667
667
  letter-spacing: -1.98px;
668
668
  text-transform: none;
669
669
  }
670
+ .focusable.focus-visible {
671
+ outline: 2px solid transparent;
672
+ outline-offset: 2px;
673
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
674
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
675
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
676
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
677
+ --tw-ring-opacity: 1;
678
+ --tw-ring-color: rgb(3 153 227 / var(--tw-ring-opacity));
679
+ }
680
+ .focusable:focus-visible {
681
+ outline: 2px solid transparent;
682
+ outline-offset: 2px;
683
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
684
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
685
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
686
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
687
+ --tw-ring-opacity: 1;
688
+ --tw-ring-color: rgb(3 153 227 / var(--tw-ring-opacity));
689
+ }
670
690
  .pointer-events-none {
671
- pointer-events: none !important;
691
+ pointer-events: none;
672
692
  }
673
693
  .visible {
674
- visibility: visible !important;
694
+ visibility: visible;
675
695
  }
676
696
  .invisible {
677
- visibility: hidden !important;
697
+ visibility: hidden;
678
698
  }
679
699
  .collapse {
680
- visibility: collapse !important;
700
+ visibility: collapse;
681
701
  }
682
702
  .fixed {
683
- position: fixed !important;
703
+ position: fixed;
684
704
  }
685
705
  .absolute {
686
- position: absolute !important;
706
+ position: absolute;
687
707
  }
688
708
  .relative {
689
- position: relative !important;
709
+ position: relative;
690
710
  }
691
711
  .sticky {
692
- position: sticky !important;
712
+ position: sticky;
693
713
  }
694
714
  .inset-0 {
695
- top: 0 !important;
696
- right: 0 !important;
697
- bottom: 0 !important;
698
- left: 0 !important;
715
+ top: 0;
716
+ right: 0;
717
+ bottom: 0;
718
+ left: 0;
699
719
  }
700
720
  .inset-y-0 {
701
- top: 0 !important;
702
- bottom: 0 !important;
721
+ top: 0;
722
+ bottom: 0;
703
723
  }
704
724
  .top-0 {
705
- top: 0 !important;
725
+ top: 0;
706
726
  }
707
727
  .left-0 {
708
- left: 0 !important;
728
+ left: 0;
709
729
  }
710
730
  .right-0 {
711
- right: 0 !important;
731
+ right: 0;
712
732
  }
713
733
  .top-\[20px\] {
714
- top: 20px !important;
734
+ top: 20px;
715
735
  }
716
736
  .right-\[28px\] {
717
- right: 28px !important;
737
+ right: 28px;
718
738
  }
719
739
  .-left-1\/2 {
720
- left: -50% !important;
740
+ left: -50%;
721
741
  }
722
742
  .top-\[3px\] {
723
- top: 3px !important;
743
+ top: 3px;
724
744
  }
725
745
  .top-\[14px\] {
726
- top: 14px !important;
746
+ top: 14px;
727
747
  }
728
748
  .left-2 {
729
- left: 4px !important;
749
+ left: 4px;
730
750
  }
731
751
  .left-1\/2 {
732
- left: 50% !important;
752
+ left: 50%;
733
753
  }
734
754
  .bottom-0 {
735
- bottom: 0 !important;
755
+ bottom: 0;
736
756
  }
737
757
  .z-modal {
738
- z-index: 100 !important;
758
+ z-index: 100;
739
759
  }
740
760
  .-z-10 {
741
- z-index: -10 !important;
761
+ z-index: -10;
742
762
  }
743
763
  .z-10 {
744
- z-index: 10 !important;
764
+ z-index: 10;
745
765
  }
746
766
  .z-40 {
747
- z-index: 40 !important;
767
+ z-index: 40;
748
768
  }
749
769
  .z-0 {
750
- z-index: 0 !important;
770
+ z-index: 0;
751
771
  }
752
772
  .z-20 {
753
- z-index: 20 !important;
773
+ z-index: 20;
754
774
  }
755
775
  .col-start-2 {
756
- grid-column-start: 2 !important;
776
+ grid-column-start: 2;
757
777
  }
758
778
  .col-start-1 {
759
- grid-column-start: 1 !important;
779
+ grid-column-start: 1;
760
780
  }
761
781
  .col-start-3 {
762
- grid-column-start: 3 !important;
782
+ grid-column-start: 3;
763
783
  }
764
784
  .row-start-1 {
765
- grid-row-start: 1 !important;
785
+ grid-row-start: 1;
766
786
  }
767
787
  .-m-2 {
768
- margin: -4px !important;
788
+ margin: -4px;
769
789
  }
770
790
  .m-3 {
771
- margin: 8px !important;
791
+ margin: 8px;
772
792
  }
773
793
  .m-4 {
774
- margin: 12px !important;
794
+ margin: 12px;
775
795
  }
776
796
  .m-\[1px\] {
777
- margin: 1px !important;
797
+ margin: 1px;
778
798
  }
779
799
  .-mx-4 {
780
- margin-left: -12px !important;
781
- margin-right: -12px !important;
800
+ margin-left: -12px;
801
+ margin-right: -12px;
782
802
  }
783
803
  .mx-7 {
784
- margin-left: 32px !important;
785
- margin-right: 32px !important;
804
+ margin-left: 32px;
805
+ margin-right: 32px;
786
806
  }
787
807
  .my-1 {
788
- margin-top: 2px !important;
789
- margin-bottom: 2px !important;
808
+ margin-top: 2px;
809
+ margin-bottom: 2px;
790
810
  }
791
811
  .mx-3 {
792
- margin-left: 8px !important;
793
- margin-right: 8px !important;
812
+ margin-left: 8px;
813
+ margin-right: 8px;
794
814
  }
795
815
  .my-4 {
796
- margin-top: 12px !important;
797
- margin-bottom: 12px !important;
816
+ margin-top: 12px;
817
+ margin-bottom: 12px;
798
818
  }
799
819
  .mx-2 {
800
- margin-left: 4px !important;
801
- margin-right: 4px !important;
820
+ margin-left: 4px;
821
+ margin-right: 4px;
802
822
  }
803
823
  .mx-1 {
804
- margin-left: 2px !important;
805
- margin-right: 2px !important;
824
+ margin-left: 2px;
825
+ margin-right: 2px;
806
826
  }
807
827
  .mx-0 {
808
- margin-left: 0 !important;
809
- margin-right: 0 !important;
828
+ margin-left: 0;
829
+ margin-right: 0;
810
830
  }
811
831
  .mb-3 {
812
- margin-bottom: 8px !important;
832
+ margin-bottom: 8px;
813
833
  }
814
834
  .mt-5 {
815
- margin-top: 16px !important;
835
+ margin-top: 16px;
816
836
  }
817
837
  .-mt-4 {
818
- margin-top: -12px !important;
838
+ margin-top: -12px;
819
839
  }
820
840
  .mt-1 {
821
- margin-top: 2px !important;
841
+ margin-top: 2px;
822
842
  }
823
843
  .mt-4 {
824
- margin-top: 12px !important;
844
+ margin-top: 12px;
825
845
  }
826
846
  .mb-5 {
827
- margin-bottom: 16px !important;
847
+ margin-bottom: 16px;
828
848
  }
829
849
  .mr-4 {
830
- margin-right: 12px !important;
850
+ margin-right: 12px;
831
851
  }
832
852
  .ml-2 {
833
- margin-left: 4px !important;
853
+ margin-left: 4px;
834
854
  }
835
855
  .mt-2 {
836
- margin-top: 4px !important;
856
+ margin-top: 4px;
837
857
  }
838
858
  .ml-3 {
839
- margin-left: 8px !important;
859
+ margin-left: 8px;
840
860
  }
841
861
  .mr-1 {
842
- margin-right: 2px !important;
862
+ margin-right: 2px;
843
863
  }
844
864
  .mb-\[-2px\] {
845
- margin-bottom: -2px !important;
865
+ margin-bottom: -2px;
846
866
  }
847
867
  .mb-2 {
848
- margin-bottom: 4px !important;
868
+ margin-bottom: 4px;
849
869
  }
850
870
  .mb-\[7px\] {
851
- margin-bottom: 7px !important;
871
+ margin-bottom: 7px;
852
872
  }
853
873
  .block {
854
- display: block !important;
874
+ display: block;
855
875
  }
856
876
  .inline-block {
857
- display: inline-block !important;
877
+ display: inline-block;
858
878
  }
859
879
  .inline {
860
- display: inline !important;
880
+ display: inline;
861
881
  }
862
882
  .\!inline {
863
883
  display: inline !important;
864
884
  }
865
885
  .flex {
866
- display: flex !important;
886
+ display: flex;
867
887
  }
868
888
  .inline-flex {
869
- display: inline-flex !important;
889
+ display: inline-flex;
870
890
  }
871
891
  .table {
872
- display: table !important;
892
+ display: table;
873
893
  }
874
894
  .\!table {
875
895
  display: table !important;
876
896
  }
877
897
  .grid {
878
- display: grid !important;
898
+ display: grid;
879
899
  }
880
900
  .inline-grid {
881
- display: inline-grid !important;
901
+ display: inline-grid;
882
902
  }
883
903
  .contents {
884
- display: contents !important;
904
+ display: contents;
885
905
  }
886
906
  .hidden {
887
- display: none !important;
907
+ display: none;
888
908
  }
889
909
  .aspect-square {
890
- aspect-ratio: 1 / 1 !important;
910
+ aspect-ratio: 1 / 1;
891
911
  }
892
912
  .h-1 {
893
- height: 2px !important;
913
+ height: 2px;
894
914
  }
895
915
  .h-\[20px\] {
896
- height: 20px !important;
916
+ height: 20px;
897
917
  }
898
918
  .h-\[174px\] {
899
- height: 174px !important;
919
+ height: 174px;
900
920
  }
901
921
  .h-\[225px\] {
902
- height: 225px !important;
922
+ height: 225px;
903
923
  }
904
924
  .h-5 {
905
- height: 16px !important;
925
+ height: 16px;
906
926
  }
907
927
  .h-\[1px\] {
908
- height: 1px !important;
928
+ height: 1px;
909
929
  }
910
930
  .h-\[120px\] {
911
- height: 120px !important;
931
+ height: 120px;
912
932
  }
913
933
  .h-2 {
914
- height: 4px !important;
934
+ height: 4px;
915
935
  }
916
936
  .h-\[2px\] {
917
- height: 2px !important;
937
+ height: 2px;
918
938
  }
919
939
  .h-\[3px\] {
920
- height: 3px !important;
940
+ height: 3px;
921
941
  }
922
942
  .h-\[32px\] {
923
- height: 32px !important;
943
+ height: 32px;
924
944
  }
925
945
  .h-\[8px\] {
926
- height: 8px !important;
946
+ height: 8px;
927
947
  }
928
948
  .h-4 {
929
- height: 12px !important;
949
+ height: 12px;
930
950
  }
931
951
  .h-\[50px\] {
932
- height: 50px !important;
952
+ height: 50px;
933
953
  }
934
954
  .h-full {
935
- height: 100% !important;
955
+ height: 100%;
936
956
  }
937
957
  .h-\[6px\] {
938
- height: 6px !important;
958
+ height: 6px;
939
959
  }
940
960
  .h-1px {
941
- height: 1px !important;
961
+ height: 1px;
942
962
  }
943
963
  .h-3 {
944
- height: 8px !important;
964
+ height: 8px;
945
965
  }
946
966
  .h-6 {
947
- height: 24px !important;
967
+ height: 24px;
948
968
  }
949
969
  .h-\[56px\] {
950
- height: 56px !important;
970
+ height: 56px;
951
971
  }
952
972
  .h-auto {
953
- height: auto !important;
973
+ height: auto;
954
974
  }
955
975
  .h-\[25px\] {
956
- height: 25px !important;
976
+ height: 25px;
957
977
  }
958
978
  .max-h-full {
959
- max-height: 100% !important;
979
+ max-height: 100%;
960
980
  }
961
981
  .min-h-full {
962
- min-height: 100% !important;
982
+ min-height: 100%;
963
983
  }
964
984
  .min-h-\[120px\] {
965
- min-height: 120px !important;
985
+ min-height: 120px;
966
986
  }
967
987
  .min-h-\[50px\] {
968
- min-height: 50px !important;
988
+ min-height: 50px;
969
989
  }
970
990
  .w-full {
971
- width: 100% !important;
991
+ width: 100%;
972
992
  }
973
993
  .w-\[280px\] {
974
- width: 280px !important;
994
+ width: 280px;
975
995
  }
976
996
  .w-5 {
977
- width: 16px !important;
997
+ width: 16px;
978
998
  }
979
999
  .w-\[32px\] {
980
- width: 32px !important;
1000
+ width: 32px;
981
1001
  }
982
1002
  .w-\[8px\] {
983
- width: 8px !important;
1003
+ width: 8px;
984
1004
  }
985
1005
  .w-\[34px\] {
986
- width: 34px !important;
1006
+ width: 34px;
987
1007
  }
988
1008
  .w-4 {
989
- width: 12px !important;
1009
+ width: 12px;
990
1010
  }
991
1011
  .w-1 {
992
- width: 2px !important;
1012
+ width: 2px;
993
1013
  }
994
1014
  .w-\[6px\] {
995
- width: 6px !important;
1015
+ width: 6px;
996
1016
  }
997
1017
  .w-1px {
998
- width: 1px !important;
1018
+ width: 1px;
999
1019
  }
1000
1020
  .w-2 {
1001
- width: 4px !important;
1021
+ width: 4px;
1002
1022
  }
1003
1023
  .w-3 {
1004
- width: 8px !important;
1024
+ width: 8px;
1005
1025
  }
1006
1026
  .w-6 {
1007
- width: 24px !important;
1027
+ width: 24px;
1008
1028
  }
1009
1029
  .w-\[56px\] {
1010
- width: 56px !important;
1030
+ width: 56px;
1011
1031
  }
1012
1032
  .min-w-\[280px\] {
1013
- min-width: 280px !important;
1033
+ min-width: 280px;
1014
1034
  }
1015
1035
  .min-w-full {
1016
- min-width: 100% !important;
1036
+ min-width: 100%;
1017
1037
  }
1018
1038
  .min-w-0 {
1019
- min-width: 0px !important;
1039
+ min-width: 0px;
1020
1040
  }
1021
1041
  .max-w-\[600px\] {
1022
- max-width: 600px !important;
1042
+ max-width: 600px;
1023
1043
  }
1024
1044
  .max-w-\[940px\] {
1025
- max-width: 940px !important;
1045
+ max-width: 940px;
1026
1046
  }
1027
1047
  .max-w-screen-xl {
1028
- max-width: 1536px !important;
1048
+ max-width: 1536px;
1029
1049
  }
1030
1050
  .max-w-screen-lg {
1031
- max-width: 1312px !important;
1051
+ max-width: 1312px;
1032
1052
  }
1033
1053
  .max-w-screen-md {
1034
- max-width: 1056px !important;
1054
+ max-width: 1056px;
1035
1055
  }
1036
1056
  .max-w-screen-sm {
1037
- max-width: 672px !important;
1057
+ max-width: 672px;
1038
1058
  }
1039
1059
  .max-w-screen-xs {
1040
- max-width: 320px !important;
1060
+ max-width: 320px;
1041
1061
  }
1042
1062
  .max-w-\[70px\] {
1043
- max-width: 70px !important;
1063
+ max-width: 70px;
1044
1064
  }
1045
1065
  .max-w-\[40px\] {
1046
- max-width: 40px !important;
1066
+ max-width: 40px;
1047
1067
  }
1048
1068
  .max-w-\[300px\] {
1049
- max-width: 300px !important;
1069
+ max-width: 300px;
1050
1070
  }
1051
1071
  .max-w-\[320px\] {
1052
- max-width: 320px !important;
1072
+ max-width: 320px;
1053
1073
  }
1054
1074
  .shrink {
1055
- flex-shrink: 1 !important;
1075
+ flex-shrink: 1;
1056
1076
  }
1057
1077
  .flex-grow {
1058
- flex-grow: 1 !important;
1078
+ flex-grow: 1;
1059
1079
  }
1060
1080
  .grow {
1061
- flex-grow: 1 !important;
1081
+ flex-grow: 1;
1062
1082
  }
1063
1083
  .grow-0 {
1064
- flex-grow: 0 !important;
1084
+ flex-grow: 0;
1065
1085
  }
1066
1086
  .table-auto {
1067
- table-layout: auto !important;
1087
+ table-layout: auto;
1068
1088
  }
1069
1089
  .table-fixed {
1070
- table-layout: fixed !important;
1090
+ table-layout: fixed;
1071
1091
  }
1072
1092
  .border-spacing-0 {
1073
- --tw-border-spacing-x: 0 !important;
1074
- --tw-border-spacing-y: 0 !important;
1075
- border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y) !important;
1093
+ --tw-border-spacing-x: 0;
1094
+ --tw-border-spacing-y: 0;
1095
+ border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
1076
1096
  }
1077
1097
  .origin-\[0\%_45\%\] {
1078
- transform-origin: 0% 45% !important;
1098
+ transform-origin: 0% 45%;
1079
1099
  }
1080
1100
  .rotate-45 {
1081
- --tw-rotate: 45deg !important;
1082
- transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
1101
+ --tw-rotate: 45deg;
1102
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1083
1103
  }
1084
1104
  .scale-\[0\.55\] {
1085
- --tw-scale-x: 0.55 !important;
1086
- --tw-scale-y: 0.55 !important;
1087
- transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
1105
+ --tw-scale-x: 0.55;
1106
+ --tw-scale-y: 0.55;
1107
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1088
1108
  }
1089
1109
  .transform {
1090
- transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
1110
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1091
1111
  }
1092
1112
  @keyframes pulse {
1093
1113
  50% {
@@ -1095,1395 +1115,1398 @@ input[type='number'].no-arrows {
1095
1115
  }
1096
1116
  }
1097
1117
  .animate-pulse {
1098
- animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
1118
+ animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
1099
1119
  }
1100
1120
  .cursor-default {
1101
- cursor: default !important;
1121
+ cursor: default;
1102
1122
  }
1103
1123
  .cursor-pointer {
1104
- cursor: pointer !important;
1124
+ cursor: pointer;
1105
1125
  }
1106
1126
  .cursor-not-allowed {
1107
- cursor: not-allowed !important;
1127
+ cursor: not-allowed;
1108
1128
  }
1109
1129
  .resize-none {
1110
- resize: none !important;
1130
+ resize: none;
1111
1131
  }
1112
1132
  .resize {
1113
- resize: both !important;
1133
+ resize: both;
1114
1134
  }
1115
1135
  .snap-x {
1116
- scroll-snap-type: x var(--tw-scroll-snap-strictness) !important;
1136
+ scroll-snap-type: x var(--tw-scroll-snap-strictness);
1117
1137
  }
1118
1138
  .snap-mandatory {
1119
- --tw-scroll-snap-strictness: mandatory !important;
1139
+ --tw-scroll-snap-strictness: mandatory;
1120
1140
  }
1121
1141
  .snap-start {
1122
- scroll-snap-align: start !important;
1142
+ scroll-snap-align: start;
1123
1143
  }
1124
1144
  .appearance-none {
1125
- -webkit-appearance: none !important;
1126
- -moz-appearance: none !important;
1127
- appearance: none !important;
1145
+ -webkit-appearance: none;
1146
+ -moz-appearance: none;
1147
+ appearance: none;
1128
1148
  }
1129
1149
  .auto-cols-fr {
1130
- grid-auto-columns: minmax(0, 1fr) !important;
1150
+ grid-auto-columns: minmax(0, 1fr);
1131
1151
  }
1132
1152
  .grid-flow-col {
1133
- grid-auto-flow: column !important;
1153
+ grid-auto-flow: column;
1134
1154
  }
1135
1155
  .grid-cols-\[auto_1fr_auto\] {
1136
- grid-template-columns: auto 1fr auto !important;
1156
+ grid-template-columns: auto 1fr auto;
1137
1157
  }
1138
1158
  .grid-cols-1 {
1139
- grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
1159
+ grid-template-columns: repeat(1, minmax(0, 1fr));
1140
1160
  }
1141
1161
  .grid-cols-2 {
1142
- grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
1162
+ grid-template-columns: repeat(2, minmax(0, 1fr));
1143
1163
  }
1144
1164
  .grid-cols-3 {
1145
- grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
1165
+ grid-template-columns: repeat(3, minmax(0, 1fr));
1146
1166
  }
1147
1167
  .grid-cols-\[16px_1fr\] {
1148
- grid-template-columns: 16px 1fr !important;
1168
+ grid-template-columns: 16px 1fr;
1149
1169
  }
1150
1170
  .grid-cols-\[auto_1fr\] {
1151
- grid-template-columns: auto 1fr !important;
1171
+ grid-template-columns: auto 1fr;
1152
1172
  }
1153
1173
  .grid-cols-\[200px_1fr_200px\] {
1154
- grid-template-columns: 200px 1fr 200px !important;
1174
+ grid-template-columns: 200px 1fr 200px;
1155
1175
  }
1156
1176
  .flex-row {
1157
- flex-direction: row !important;
1177
+ flex-direction: row;
1158
1178
  }
1159
1179
  .flex-row-reverse {
1160
- flex-direction: row-reverse !important;
1180
+ flex-direction: row-reverse;
1161
1181
  }
1162
1182
  .flex-col {
1163
- flex-direction: column !important;
1183
+ flex-direction: column;
1164
1184
  }
1165
1185
  .flex-wrap {
1166
- flex-wrap: wrap !important;
1186
+ flex-wrap: wrap;
1167
1187
  }
1168
1188
  .flex-nowrap {
1169
- flex-wrap: nowrap !important;
1189
+ flex-wrap: nowrap;
1170
1190
  }
1171
1191
  .items-center {
1172
- align-items: center !important;
1192
+ align-items: center;
1173
1193
  }
1174
1194
  .items-stretch {
1175
- align-items: stretch !important;
1195
+ align-items: stretch;
1176
1196
  }
1177
1197
  .justify-start {
1178
- justify-content: flex-start !important;
1198
+ justify-content: flex-start;
1179
1199
  }
1180
1200
  .justify-end {
1181
- justify-content: flex-end !important;
1201
+ justify-content: flex-end;
1182
1202
  }
1183
1203
  .justify-center {
1184
- justify-content: center !important;
1204
+ justify-content: center;
1185
1205
  }
1186
1206
  .justify-between {
1187
- justify-content: space-between !important;
1207
+ justify-content: space-between;
1188
1208
  }
1189
1209
  .gap-4 {
1190
- grid-gap: 12px !important;
1191
- gap: 12px !important;
1210
+ grid-gap: 12px;
1211
+ gap: 12px;
1192
1212
  }
1193
1213
  .gap-7 {
1194
- grid-gap: 32px !important;
1195
- gap: 32px !important;
1214
+ grid-gap: 32px;
1215
+ gap: 32px;
1196
1216
  }
1197
1217
  .gap-5 {
1198
- grid-gap: 16px !important;
1199
- gap: 16px !important;
1218
+ grid-gap: 16px;
1219
+ gap: 16px;
1200
1220
  }
1201
1221
  .gap-3 {
1202
- grid-gap: 8px !important;
1203
- gap: 8px !important;
1222
+ grid-gap: 8px;
1223
+ gap: 8px;
1204
1224
  }
1205
1225
  .gap-2 {
1206
- grid-gap: 4px !important;
1207
- gap: 4px !important;
1226
+ grid-gap: 4px;
1227
+ gap: 4px;
1208
1228
  }
1209
1229
  .gap-8 {
1210
- grid-gap: 40px !important;
1211
- gap: 40px !important;
1230
+ grid-gap: 40px;
1231
+ gap: 40px;
1212
1232
  }
1213
1233
  .gap-x-3 {
1214
- grid-column-gap: 8px !important;
1215
- -moz-column-gap: 8px !important;
1216
- column-gap: 8px !important;
1234
+ grid-column-gap: 8px;
1235
+ -moz-column-gap: 8px;
1236
+ column-gap: 8px;
1217
1237
  }
1218
1238
  .gap-y-2 {
1219
- grid-row-gap: 4px !important;
1220
- row-gap: 4px !important;
1239
+ grid-row-gap: 4px;
1240
+ row-gap: 4px;
1221
1241
  }
1222
1242
  .gap-x-2 {
1223
- grid-column-gap: 4px !important;
1224
- -moz-column-gap: 4px !important;
1225
- column-gap: 4px !important;
1243
+ grid-column-gap: 4px;
1244
+ -moz-column-gap: 4px;
1245
+ column-gap: 4px;
1226
1246
  }
1227
1247
  .gap-x-4 {
1228
- grid-column-gap: 12px !important;
1229
- -moz-column-gap: 12px !important;
1230
- column-gap: 12px !important;
1248
+ grid-column-gap: 12px;
1249
+ -moz-column-gap: 12px;
1250
+ column-gap: 12px;
1231
1251
  }
1232
1252
  .self-start {
1233
- align-self: flex-start !important;
1253
+ align-self: flex-start;
1234
1254
  }
1235
1255
  .self-center {
1236
- align-self: center !important;
1256
+ align-self: center;
1237
1257
  }
1238
1258
  .justify-self-center {
1239
- justify-self: center !important;
1259
+ justify-self: center;
1240
1260
  }
1241
1261
  .overflow-hidden {
1242
- overflow: hidden !important;
1262
+ overflow: hidden;
1243
1263
  }
1244
1264
  .overflow-y-auto {
1245
- overflow-y: auto !important;
1265
+ overflow-y: auto;
1246
1266
  }
1247
1267
  .overflow-x-hidden {
1248
- overflow-x: hidden !important;
1268
+ overflow-x: hidden;
1249
1269
  }
1250
1270
  .overflow-x-scroll {
1251
- overflow-x: scroll !important;
1271
+ overflow-x: scroll;
1252
1272
  }
1253
1273
  .scroll-smooth {
1254
- scroll-behavior: smooth !important;
1274
+ scroll-behavior: smooth;
1255
1275
  }
1256
1276
  .whitespace-nowrap {
1257
- white-space: nowrap !important;
1277
+ white-space: nowrap;
1258
1278
  }
1259
1279
  .whitespace-pre {
1260
- white-space: pre !important;
1280
+ white-space: pre;
1281
+ }
1282
+ .break-words {
1283
+ word-wrap: break-word;
1261
1284
  }
1262
1285
  .break-all {
1263
- word-break: break-all !important;
1286
+ word-break: break-all;
1264
1287
  }
1265
1288
  .rounded-sm {
1266
- border-radius: 0.125rem !important;
1289
+ border-radius: 0.125rem;
1267
1290
  }
1268
1291
  .rounded-full {
1269
- border-radius: 9999px !important;
1292
+ border-radius: 9999px;
1270
1293
  }
1271
1294
  .rounded {
1272
- border-radius: 4px !important;
1295
+ border-radius: 4px;
1273
1296
  }
1274
1297
  .rounded-\[2px\] {
1275
- border-radius: 2px !important;
1298
+ border-radius: 2px;
1276
1299
  }
1277
1300
  .border {
1278
- border-width: 1px !important;
1301
+ border-width: 1px;
1279
1302
  }
1280
1303
  .border-\[1px\] {
1281
- border-width: 1px !important;
1304
+ border-width: 1px;
1282
1305
  }
1283
1306
  .border-0 {
1284
- border-width: 0px !important;
1307
+ border-width: 0px;
1285
1308
  }
1286
1309
  .border-2 {
1287
- border-width: 2px !important;
1310
+ border-width: 2px;
1288
1311
  }
1289
1312
  .border-b-\[1px\] {
1290
- border-bottom-width: 1px !important;
1313
+ border-bottom-width: 1px;
1291
1314
  }
1292
1315
  .border-b {
1293
- border-bottom-width: 1px !important;
1316
+ border-bottom-width: 1px;
1294
1317
  }
1295
1318
  .border-b-2 {
1296
- border-bottom-width: 2px !important;
1319
+ border-bottom-width: 2px;
1297
1320
  }
1298
1321
  .border-solid {
1299
- border-style: solid !important;
1322
+ border-style: solid;
1300
1323
  }
1301
1324
  .border-dashed {
1302
- border-style: dashed !important;
1325
+ border-style: dashed;
1303
1326
  }
1304
1327
  .border-none {
1305
- border-style: none !important;
1328
+ border-style: none;
1306
1329
  }
1307
1330
  .border-error-50 {
1308
- --tw-border-opacity: 1 !important;
1309
- border-color: rgb(230 39 40 / var(--tw-border-opacity)) !important;
1331
+ --tw-border-opacity: 1;
1332
+ border-color: rgb(230 39 40 / var(--tw-border-opacity));
1310
1333
  }
1311
1334
  .border-grey-20 {
1312
- --tw-border-opacity: 1 !important;
1313
- border-color: rgb(210 210 214 / var(--tw-border-opacity)) !important;
1335
+ --tw-border-opacity: 1;
1336
+ border-color: rgb(210 210 214 / var(--tw-border-opacity));
1314
1337
  }
1315
1338
  .border-info-70 {
1316
- --tw-border-opacity: 1 !important;
1317
- border-color: rgb(3 153 227 / var(--tw-border-opacity)) !important;
1339
+ --tw-border-opacity: 1;
1340
+ border-color: rgb(3 153 227 / var(--tw-border-opacity));
1318
1341
  }
1319
1342
  .border-grey-5 {
1320
- --tw-border-opacity: 1 !important;
1321
- border-color: rgb(237 237 240 / var(--tw-border-opacity)) !important;
1343
+ --tw-border-opacity: 1;
1344
+ border-color: rgb(237 237 240 / var(--tw-border-opacity));
1322
1345
  }
1323
1346
  .border-transparent {
1324
- border-color: transparent !important;
1347
+ border-color: transparent;
1325
1348
  }
1326
1349
  .border-grey-10 {
1327
- --tw-border-opacity: 1 !important;
1328
- border-color: rgb(225 225 227 / var(--tw-border-opacity)) !important;
1350
+ --tw-border-opacity: 1;
1351
+ border-color: rgb(225 225 227 / var(--tw-border-opacity));
1329
1352
  }
1330
1353
  .border-navyBlue-100 {
1331
- --tw-border-opacity: 1 !important;
1332
- border-color: rgb(48 55 94 / var(--tw-border-opacity)) !important;
1354
+ --tw-border-opacity: 1;
1355
+ border-color: rgb(48 55 94 / var(--tw-border-opacity));
1333
1356
  }
1334
1357
  .border-grey-50 {
1335
- --tw-border-opacity: 1 !important;
1336
- border-color: rgb(120 120 133 / var(--tw-border-opacity)) !important;
1358
+ --tw-border-opacity: 1;
1359
+ border-color: rgb(120 120 133 / var(--tw-border-opacity));
1337
1360
  }
1338
1361
  .border-grey-90 {
1339
- --tw-border-opacity: 1 !important;
1340
- border-color: rgb(41 42 49 / var(--tw-border-opacity)) !important;
1362
+ --tw-border-opacity: 1;
1363
+ border-color: rgb(41 42 49 / var(--tw-border-opacity));
1341
1364
  }
1342
1365
  .border-success-70 {
1343
- --tw-border-opacity: 1 !important;
1344
- border-color: rgb(0 179 0 / var(--tw-border-opacity)) !important;
1366
+ --tw-border-opacity: 1;
1367
+ border-color: rgb(0 179 0 / var(--tw-border-opacity));
1345
1368
  }
1346
1369
  .border-grey-40 {
1347
- --tw-border-opacity: 1 !important;
1348
- border-color: rgb(150 150 160 / var(--tw-border-opacity)) !important;
1370
+ --tw-border-opacity: 1;
1371
+ border-color: rgb(150 150 160 / var(--tw-border-opacity));
1349
1372
  }
1350
1373
  .border-current {
1351
- border-color: currentColor !important;
1374
+ border-color: currentColor;
1352
1375
  }
1353
1376
  .border-grey-100 {
1354
- --tw-border-opacity: 1 !important;
1355
- border-color: rgb(25 25 29 / var(--tw-border-opacity)) !important;
1377
+ --tw-border-opacity: 1;
1378
+ border-color: rgb(25 25 29 / var(--tw-border-opacity));
1356
1379
  }
1357
1380
  .border-primary-80 {
1358
- --tw-border-opacity: 1 !important;
1359
- border-color: rgb(228 26 74 / var(--tw-border-opacity)) !important;
1381
+ --tw-border-opacity: 1;
1382
+ border-color: rgb(228 26 74 / var(--tw-border-opacity));
1360
1383
  }
1361
1384
  .bg-grey-10 {
1362
- --tw-bg-opacity: 1 !important;
1363
- background-color: rgb(225 225 227 / var(--tw-bg-opacity)) !important;
1385
+ --tw-bg-opacity: 1;
1386
+ background-color: rgb(225 225 227 / var(--tw-bg-opacity));
1364
1387
  }
1365
1388
  .bg-error-5 {
1366
- --tw-bg-opacity: 1 !important;
1367
- background-color: rgb(254 232 231 / var(--tw-bg-opacity)) !important;
1389
+ --tw-bg-opacity: 1;
1390
+ background-color: rgb(254 232 231 / var(--tw-bg-opacity));
1368
1391
  }
1369
1392
  .bg-info-5 {
1370
- --tw-bg-opacity: 1 !important;
1371
- background-color: rgb(239 250 255 / var(--tw-bg-opacity)) !important;
1393
+ --tw-bg-opacity: 1;
1394
+ background-color: rgb(239 250 255 / var(--tw-bg-opacity));
1372
1395
  }
1373
1396
  .bg-success-5 {
1374
- --tw-bg-opacity: 1 !important;
1375
- background-color: rgb(236 247 237 / var(--tw-bg-opacity)) !important;
1397
+ --tw-bg-opacity: 1;
1398
+ background-color: rgb(236 247 237 / var(--tw-bg-opacity));
1376
1399
  }
1377
1400
  .bg-warning-5 {
1378
- --tw-bg-opacity: 1 !important;
1379
- background-color: rgb(255 248 234 / var(--tw-bg-opacity)) !important;
1401
+ --tw-bg-opacity: 1;
1402
+ background-color: rgb(255 248 234 / var(--tw-bg-opacity));
1380
1403
  }
1381
1404
  .bg-grey-0 {
1382
- --tw-bg-opacity: 1 !important;
1383
- background-color: rgb(247 247 250 / var(--tw-bg-opacity)) !important;
1405
+ --tw-bg-opacity: 1;
1406
+ background-color: rgb(247 247 250 / var(--tw-bg-opacity));
1384
1407
  }
1385
1408
  .bg-white {
1386
- --tw-bg-opacity: 1 !important;
1387
- background-color: rgb(255 255 255 / var(--tw-bg-opacity)) !important;
1409
+ --tw-bg-opacity: 1;
1410
+ background-color: rgb(255 255 255 / var(--tw-bg-opacity));
1388
1411
  }
1389
1412
  .bg-navyBlue-100 {
1390
- --tw-bg-opacity: 1 !important;
1391
- background-color: rgb(48 55 94 / var(--tw-bg-opacity)) !important;
1413
+ --tw-bg-opacity: 1;
1414
+ background-color: rgb(48 55 94 / var(--tw-bg-opacity));
1392
1415
  }
1393
1416
  .bg-grey-5 {
1394
- --tw-bg-opacity: 1 !important;
1395
- background-color: rgb(237 237 240 / var(--tw-bg-opacity)) !important;
1417
+ --tw-bg-opacity: 1;
1418
+ background-color: rgb(237 237 240 / var(--tw-bg-opacity));
1396
1419
  }
1397
1420
  .bg-info-50 {
1398
- --tw-bg-opacity: 1 !important;
1399
- background-color: rgb(40 180 244 / var(--tw-bg-opacity)) !important;
1421
+ --tw-bg-opacity: 1;
1422
+ background-color: rgb(40 180 244 / var(--tw-bg-opacity));
1400
1423
  }
1401
1424
  .bg-warning-70 {
1402
- --tw-bg-opacity: 1 !important;
1403
- background-color: rgb(255 179 0 / var(--tw-bg-opacity)) !important;
1425
+ --tw-bg-opacity: 1;
1426
+ background-color: rgb(255 179 0 / var(--tw-bg-opacity));
1404
1427
  }
1405
1428
  .bg-success-70 {
1406
- --tw-bg-opacity: 1 !important;
1407
- background-color: rgb(0 179 0 / var(--tw-bg-opacity)) !important;
1429
+ --tw-bg-opacity: 1;
1430
+ background-color: rgb(0 179 0 / var(--tw-bg-opacity));
1408
1431
  }
1409
1432
  .bg-error-70 {
1410
- --tw-bg-opacity: 1 !important;
1411
- background-color: rgb(216 0 5 / var(--tw-bg-opacity)) !important;
1433
+ --tw-bg-opacity: 1;
1434
+ background-color: rgb(216 0 5 / var(--tw-bg-opacity));
1412
1435
  }
1413
1436
  .bg-grey-20 {
1414
- --tw-bg-opacity: 1 !important;
1415
- background-color: rgb(210 210 214 / var(--tw-bg-opacity)) !important;
1437
+ --tw-bg-opacity: 1;
1438
+ background-color: rgb(210 210 214 / var(--tw-bg-opacity));
1416
1439
  }
1417
1440
  .bg-grey-90 {
1418
- --tw-bg-opacity: 1 !important;
1419
- background-color: rgb(41 42 49 / var(--tw-bg-opacity)) !important;
1441
+ --tw-bg-opacity: 1;
1442
+ background-color: rgb(41 42 49 / var(--tw-bg-opacity));
1420
1443
  }
1421
1444
  .bg-grey-30 {
1422
- --tw-bg-opacity: 1 !important;
1423
- background-color: rgb(180 180 187 / var(--tw-bg-opacity)) !important;
1445
+ --tw-bg-opacity: 1;
1446
+ background-color: rgb(180 180 187 / var(--tw-bg-opacity));
1424
1447
  }
1425
1448
  .bg-current {
1426
- background-color: currentColor !important;
1449
+ background-color: currentColor;
1427
1450
  }
1428
1451
  .bg-primary-80 {
1429
- --tw-bg-opacity: 1 !important;
1430
- background-color: rgb(228 26 74 / var(--tw-bg-opacity)) !important;
1452
+ --tw-bg-opacity: 1;
1453
+ background-color: rgb(228 26 74 / var(--tw-bg-opacity));
1431
1454
  }
1432
1455
  .bg-transparent {
1433
- background-color: transparent !important;
1456
+ background-color: transparent;
1434
1457
  }
1435
1458
  .bg-secondary-5 {
1436
- --tw-bg-opacity: 1 !important;
1437
- background-color: rgb(255 243 232 / var(--tw-bg-opacity)) !important;
1459
+ --tw-bg-opacity: 1;
1460
+ background-color: rgb(255 243 232 / var(--tw-bg-opacity));
1438
1461
  }
1439
1462
  .bg-error-0 {
1440
- --tw-bg-opacity: 1 !important;
1441
- background-color: rgb(254 242 241 / var(--tw-bg-opacity)) !important;
1463
+ --tw-bg-opacity: 1;
1464
+ background-color: rgb(254 242 241 / var(--tw-bg-opacity));
1442
1465
  }
1443
1466
  .bg-primary-70 {
1444
- --tw-bg-opacity: 1 !important;
1445
- background-color: rgb(255 53 84 / var(--tw-bg-opacity)) !important;
1467
+ --tw-bg-opacity: 1;
1468
+ background-color: rgb(255 53 84 / var(--tw-bg-opacity));
1446
1469
  }
1447
1470
  .bg-opacity-40 {
1448
- --tw-bg-opacity: 0.4 !important;
1471
+ --tw-bg-opacity: 0.4;
1449
1472
  }
1450
1473
  .bg-gradient-to-r {
1451
- background-image: linear-gradient(to right, var(--tw-gradient-stops)) !important;
1474
+ background-image: linear-gradient(to right, var(--tw-gradient-stops));
1452
1475
  }
1453
1476
  .bg-gradient-to-l {
1454
- background-image: linear-gradient(to left, var(--tw-gradient-stops)) !important;
1477
+ background-image: linear-gradient(to left, var(--tw-gradient-stops));
1455
1478
  }
1456
1479
  .from-white {
1457
- --tw-gradient-from: white !important;
1458
- --tw-gradient-to: rgba(255, 255, 255, 0) !important;
1459
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important;
1480
+ --tw-gradient-from: white;
1481
+ --tw-gradient-to: rgba(255, 255, 255, 0);
1482
+ --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
1460
1483
  }
1461
1484
  .via-white {
1462
- --tw-gradient-to: rgba(255, 255, 255, 0) !important;
1463
- --tw-gradient-stops: var(--tw-gradient-from), white, var(--tw-gradient-to) !important;
1485
+ --tw-gradient-to: rgba(255, 255, 255, 0);
1486
+ --tw-gradient-stops: var(--tw-gradient-from), white, var(--tw-gradient-to);
1464
1487
  }
1465
1488
  .bg-cover {
1466
- background-size: cover !important;
1489
+ background-size: cover;
1467
1490
  }
1468
1491
  .stroke-grey-30 {
1469
- stroke: #b4b4bb !important;
1492
+ stroke: #b4b4bb;
1470
1493
  }
1471
1494
  .object-cover {
1472
- -o-object-fit: cover !important;
1473
- object-fit: cover !important;
1495
+ -o-object-fit: cover;
1496
+ object-fit: cover;
1474
1497
  }
1475
1498
  .p-4 {
1476
- padding: 12px !important;
1499
+ padding: 12px;
1477
1500
  }
1478
1501
  .p-5 {
1479
- padding: 16px !important;
1502
+ padding: 16px;
1480
1503
  }
1481
1504
  .p-6 {
1482
- padding: 24px !important;
1505
+ padding: 24px;
1483
1506
  }
1484
1507
  .p-\[2px\] {
1485
- padding: 2px !important;
1508
+ padding: 2px;
1486
1509
  }
1487
1510
  .p-3 {
1488
- padding: 8px !important;
1511
+ padding: 8px;
1489
1512
  }
1490
1513
  .p-\[3px\] {
1491
- padding: 3px !important;
1514
+ padding: 3px;
1492
1515
  }
1493
1516
  .p-2 {
1494
- padding: 4px !important;
1517
+ padding: 4px;
1495
1518
  }
1496
1519
  .px-3 {
1497
- padding-left: 8px !important;
1498
- padding-right: 8px !important;
1520
+ padding-left: 8px;
1521
+ padding-right: 8px;
1499
1522
  }
1500
1523
  .py-3 {
1501
- padding-top: 8px !important;
1502
- padding-bottom: 8px !important;
1524
+ padding-top: 8px;
1525
+ padding-bottom: 8px;
1503
1526
  }
1504
1527
  .py-2 {
1505
- padding-top: 4px !important;
1506
- padding-bottom: 4px !important;
1528
+ padding-top: 4px;
1529
+ padding-bottom: 4px;
1507
1530
  }
1508
1531
  .py-1 {
1509
- padding-top: 2px !important;
1510
- padding-bottom: 2px !important;
1532
+ padding-top: 2px;
1533
+ padding-bottom: 2px;
1511
1534
  }
1512
1535
  .px-2 {
1513
- padding-left: 4px !important;
1514
- padding-right: 4px !important;
1536
+ padding-left: 4px;
1537
+ padding-right: 4px;
1515
1538
  }
1516
1539
  .py-7 {
1517
- padding-top: 32px !important;
1518
- padding-bottom: 32px !important;
1540
+ padding-top: 32px;
1541
+ padding-bottom: 32px;
1519
1542
  }
1520
1543
  .px-7 {
1521
- padding-left: 32px !important;
1522
- padding-right: 32px !important;
1544
+ padding-left: 32px;
1545
+ padding-right: 32px;
1523
1546
  }
1524
1547
  .py-6 {
1525
- padding-top: 24px !important;
1526
- padding-bottom: 24px !important;
1548
+ padding-top: 24px;
1549
+ padding-bottom: 24px;
1527
1550
  }
1528
1551
  .px-5 {
1529
- padding-left: 16px !important;
1530
- padding-right: 16px !important;
1552
+ padding-left: 16px;
1553
+ padding-right: 16px;
1531
1554
  }
1532
1555
  .px-6 {
1533
- padding-left: 24px !important;
1534
- padding-right: 24px !important;
1556
+ padding-left: 24px;
1557
+ padding-right: 24px;
1535
1558
  }
1536
1559
  .py-5 {
1537
- padding-top: 16px !important;
1538
- padding-bottom: 16px !important;
1560
+ padding-top: 16px;
1561
+ padding-bottom: 16px;
1539
1562
  }
1540
1563
  .py-\[6px\] {
1541
- padding-top: 6px !important;
1542
- padding-bottom: 6px !important;
1564
+ padding-top: 6px;
1565
+ padding-bottom: 6px;
1543
1566
  }
1544
1567
  .px-\[1px\] {
1545
- padding-left: 1px !important;
1546
- padding-right: 1px !important;
1568
+ padding-left: 1px;
1569
+ padding-right: 1px;
1547
1570
  }
1548
1571
  .px-\[14px\] {
1549
- padding-left: 14px !important;
1550
- padding-right: 14px !important;
1572
+ padding-left: 14px;
1573
+ padding-right: 14px;
1551
1574
  }
1552
1575
  .px-\[20px\] {
1553
- padding-left: 20px !important;
1554
- padding-right: 20px !important;
1576
+ padding-left: 20px;
1577
+ padding-right: 20px;
1555
1578
  }
1556
1579
  .px-4 {
1557
- padding-left: 12px !important;
1558
- padding-right: 12px !important;
1580
+ padding-left: 12px;
1581
+ padding-right: 12px;
1559
1582
  }
1560
1583
  .py-\[14px\] {
1561
- padding-top: 14px !important;
1562
- padding-bottom: 14px !important;
1584
+ padding-top: 14px;
1585
+ padding-bottom: 14px;
1563
1586
  }
1564
1587
  .px-1 {
1565
- padding-left: 2px !important;
1566
- padding-right: 2px !important;
1588
+ padding-left: 2px;
1589
+ padding-right: 2px;
1567
1590
  }
1568
1591
  .px-\[4px\] {
1569
- padding-left: 4px !important;
1570
- padding-right: 4px !important;
1592
+ padding-left: 4px;
1593
+ padding-right: 4px;
1571
1594
  }
1572
1595
  .py-4 {
1573
- padding-top: 12px !important;
1574
- padding-bottom: 12px !important;
1596
+ padding-top: 12px;
1597
+ padding-bottom: 12px;
1575
1598
  }
1576
1599
  .px-0 {
1577
- padding-left: 0 !important;
1578
- padding-right: 0 !important;
1600
+ padding-left: 0;
1601
+ padding-right: 0;
1579
1602
  }
1580
1603
  .pt-3 {
1581
- padding-top: 8px !important;
1604
+ padding-top: 8px;
1582
1605
  }
1583
1606
  .pb-6 {
1584
- padding-bottom: 24px !important;
1607
+ padding-bottom: 24px;
1585
1608
  }
1586
1609
  .pl-7 {
1587
- padding-left: 32px !important;
1610
+ padding-left: 32px;
1588
1611
  }
1589
1612
  .pb-3 {
1590
- padding-bottom: 8px !important;
1613
+ padding-bottom: 8px;
1591
1614
  }
1592
1615
  .pr-4 {
1593
- padding-right: 12px !important;
1616
+ padding-right: 12px;
1594
1617
  }
1595
1618
  .pl-4 {
1596
- padding-left: 12px !important;
1619
+ padding-left: 12px;
1597
1620
  }
1598
1621
  .text-left {
1599
- text-align: left !important;
1622
+ text-align: left;
1600
1623
  }
1601
1624
  .text-center {
1602
- text-align: center !important;
1625
+ text-align: center;
1603
1626
  }
1604
1627
  .text-right {
1605
- text-align: right !important;
1628
+ text-align: right;
1606
1629
  }
1607
1630
  .align-middle {
1608
- vertical-align: middle !important;
1631
+ vertical-align: middle;
1609
1632
  }
1610
1633
  .text-\[9px\] {
1611
- font-size: 9px !important;
1634
+ font-size: 9px;
1612
1635
  }
1613
1636
  .text-\[8px\] {
1614
- font-size: 8px !important;
1637
+ font-size: 8px;
1615
1638
  }
1616
1639
  .font-normal {
1617
- font-weight: 400 !important;
1640
+ font-weight: 400;
1618
1641
  }
1619
1642
  .uppercase {
1620
- text-transform: uppercase !important;
1643
+ text-transform: uppercase;
1621
1644
  }
1622
1645
  .capitalize {
1623
- text-transform: capitalize !important;
1646
+ text-transform: capitalize;
1624
1647
  }
1625
1648
  .italic {
1626
- font-style: italic !important;
1649
+ font-style: italic;
1627
1650
  }
1628
1651
  .leading-none {
1629
- line-height: 1 !important;
1652
+ line-height: 1;
1630
1653
  }
1631
1654
  .leading-\[18px\] {
1632
- line-height: 18px !important;
1655
+ line-height: 18px;
1633
1656
  }
1634
1657
  .leading-\[0px\] {
1635
- line-height: 0px !important;
1658
+ line-height: 0px;
1636
1659
  }
1637
1660
  .text-error-100 {
1638
- --tw-text-opacity: 1 !important;
1639
- color: rgb(170 0 0 / var(--tw-text-opacity)) !important;
1661
+ --tw-text-opacity: 1;
1662
+ color: rgb(170 0 0 / var(--tw-text-opacity));
1640
1663
  }
1641
1664
  .text-error-90 {
1642
- --tw-text-opacity: 1 !important;
1643
- color: rgb(185 0 0 / var(--tw-text-opacity)) !important;
1665
+ --tw-text-opacity: 1;
1666
+ color: rgb(185 0 0 / var(--tw-text-opacity));
1644
1667
  }
1645
1668
  .text-error-80 {
1646
- --tw-text-opacity: 1 !important;
1647
- color: rgb(197 0 1 / var(--tw-text-opacity)) !important;
1669
+ --tw-text-opacity: 1;
1670
+ color: rgb(197 0 1 / var(--tw-text-opacity));
1648
1671
  }
1649
1672
  .text-error-70 {
1650
- --tw-text-opacity: 1 !important;
1651
- color: rgb(216 0 5 / var(--tw-text-opacity)) !important;
1673
+ --tw-text-opacity: 1;
1674
+ color: rgb(216 0 5 / var(--tw-text-opacity));
1652
1675
  }
1653
1676
  .text-error-60 {
1654
- --tw-text-opacity: 1 !important;
1655
- color: rgb(231 0 0 / var(--tw-text-opacity)) !important;
1677
+ --tw-text-opacity: 1;
1678
+ color: rgb(231 0 0 / var(--tw-text-opacity));
1656
1679
  }
1657
1680
  .text-error-50 {
1658
- --tw-text-opacity: 1 !important;
1659
- color: rgb(230 39 40 / var(--tw-text-opacity)) !important;
1681
+ --tw-text-opacity: 1;
1682
+ color: rgb(230 39 40 / var(--tw-text-opacity));
1660
1683
  }
1661
1684
  .text-error-40 {
1662
- --tw-text-opacity: 1 !important;
1663
- color: rgb(224 80 79 / var(--tw-text-opacity)) !important;
1685
+ --tw-text-opacity: 1;
1686
+ color: rgb(224 80 79 / var(--tw-text-opacity));
1664
1687
  }
1665
1688
  .text-error-30 {
1666
- --tw-text-opacity: 1 !important;
1667
- color: rgb(237 121 117 / var(--tw-text-opacity)) !important;
1689
+ --tw-text-opacity: 1;
1690
+ color: rgb(237 121 117 / var(--tw-text-opacity));
1668
1691
  }
1669
1692
  .text-error-20 {
1670
- --tw-text-opacity: 1 !important;
1671
- color: rgb(255 173 179 / var(--tw-text-opacity)) !important;
1693
+ --tw-text-opacity: 1;
1694
+ color: rgb(255 173 179 / var(--tw-text-opacity));
1672
1695
  }
1673
1696
  .text-error-10 {
1674
- --tw-text-opacity: 1 !important;
1675
- color: rgb(255 203 210 / var(--tw-text-opacity)) !important;
1697
+ --tw-text-opacity: 1;
1698
+ color: rgb(255 203 210 / var(--tw-text-opacity));
1676
1699
  }
1677
1700
  .text-error-5 {
1678
- --tw-text-opacity: 1 !important;
1679
- color: rgb(254 232 231 / var(--tw-text-opacity)) !important;
1701
+ --tw-text-opacity: 1;
1702
+ color: rgb(254 232 231 / var(--tw-text-opacity));
1680
1703
  }
1681
1704
  .text-error-0 {
1682
- --tw-text-opacity: 1 !important;
1683
- color: rgb(254 242 241 / var(--tw-text-opacity)) !important;
1705
+ --tw-text-opacity: 1;
1706
+ color: rgb(254 242 241 / var(--tw-text-opacity));
1684
1707
  }
1685
1708
  .text-warning-100 {
1686
- --tw-text-opacity: 1 !important;
1687
- color: rgb(254 109 0 / var(--tw-text-opacity)) !important;
1709
+ --tw-text-opacity: 1;
1710
+ color: rgb(254 109 0 / var(--tw-text-opacity));
1688
1711
  }
1689
1712
  .text-warning-90 {
1690
- --tw-text-opacity: 1 !important;
1691
- color: rgb(255 144 3 / var(--tw-text-opacity)) !important;
1713
+ --tw-text-opacity: 1;
1714
+ color: rgb(255 144 3 / var(--tw-text-opacity));
1692
1715
  }
1693
1716
  .text-warning-80 {
1694
- --tw-text-opacity: 1 !important;
1695
- color: rgb(253 159 0 / var(--tw-text-opacity)) !important;
1717
+ --tw-text-opacity: 1;
1718
+ color: rgb(253 159 0 / var(--tw-text-opacity));
1696
1719
  }
1697
1720
  .text-warning-70 {
1698
- --tw-text-opacity: 1 !important;
1699
- color: rgb(255 179 0 / var(--tw-text-opacity)) !important;
1721
+ --tw-text-opacity: 1;
1722
+ color: rgb(255 179 0 / var(--tw-text-opacity));
1700
1723
  }
1701
1724
  .text-warning-60 {
1702
- --tw-text-opacity: 1 !important;
1703
- color: rgb(255 193 7 / var(--tw-text-opacity)) !important;
1725
+ --tw-text-opacity: 1;
1726
+ color: rgb(255 193 7 / var(--tw-text-opacity));
1704
1727
  }
1705
1728
  .text-warning-50 {
1706
- --tw-text-opacity: 1 !important;
1707
- color: rgb(253 201 38 / var(--tw-text-opacity)) !important;
1729
+ --tw-text-opacity: 1;
1730
+ color: rgb(253 201 38 / var(--tw-text-opacity));
1708
1731
  }
1709
1732
  .text-warning-40 {
1710
- --tw-text-opacity: 1 !important;
1711
- color: rgb(253 212 77 / var(--tw-text-opacity)) !important;
1733
+ --tw-text-opacity: 1;
1734
+ color: rgb(253 212 77 / var(--tw-text-opacity));
1712
1735
  }
1713
1736
  .text-warning-30 {
1714
- --tw-text-opacity: 1 !important;
1715
- color: rgb(253 223 129 / var(--tw-text-opacity)) !important;
1737
+ --tw-text-opacity: 1;
1738
+ color: rgb(253 223 129 / var(--tw-text-opacity));
1716
1739
  }
1717
1740
  .text-warning-20 {
1718
- --tw-text-opacity: 1 !important;
1719
- color: rgb(254 235 178 / var(--tw-text-opacity)) !important;
1741
+ --tw-text-opacity: 1;
1742
+ color: rgb(254 235 178 / var(--tw-text-opacity));
1720
1743
  }
1721
1744
  .text-warning-10 {
1722
- --tw-text-opacity: 1 !important;
1723
- color: rgb(255 242 205 / var(--tw-text-opacity)) !important;
1745
+ --tw-text-opacity: 1;
1746
+ color: rgb(255 242 205 / var(--tw-text-opacity));
1724
1747
  }
1725
1748
  .text-warning-5 {
1726
- --tw-text-opacity: 1 !important;
1727
- color: rgb(255 248 234 / var(--tw-text-opacity)) !important;
1749
+ --tw-text-opacity: 1;
1750
+ color: rgb(255 248 234 / var(--tw-text-opacity));
1728
1751
  }
1729
1752
  .text-warning-0 {
1730
- --tw-text-opacity: 1 !important;
1731
- color: rgb(255 253 249 / var(--tw-text-opacity)) !important;
1753
+ --tw-text-opacity: 1;
1754
+ color: rgb(255 253 249 / var(--tw-text-opacity));
1732
1755
  }
1733
1756
  .text-success-100 {
1734
- --tw-text-opacity: 1 !important;
1735
- color: rgb(0 111 0 / var(--tw-text-opacity)) !important;
1757
+ --tw-text-opacity: 1;
1758
+ color: rgb(0 111 0 / var(--tw-text-opacity));
1736
1759
  }
1737
1760
  .text-success-90 {
1738
- --tw-text-opacity: 1 !important;
1739
- color: rgb(0 142 0 / var(--tw-text-opacity)) !important;
1761
+ --tw-text-opacity: 1;
1762
+ color: rgb(0 142 0 / var(--tw-text-opacity));
1740
1763
  }
1741
1764
  .text-success-80 {
1742
- --tw-text-opacity: 1 !important;
1743
- color: rgb(0 159 0 / var(--tw-text-opacity)) !important;
1765
+ --tw-text-opacity: 1;
1766
+ color: rgb(0 159 0 / var(--tw-text-opacity));
1744
1767
  }
1745
1768
  .text-success-70 {
1746
- --tw-text-opacity: 1 !important;
1747
- color: rgb(0 179 0 / var(--tw-text-opacity)) !important;
1769
+ --tw-text-opacity: 1;
1770
+ color: rgb(0 179 0 / var(--tw-text-opacity));
1748
1771
  }
1749
1772
  .text-success-60 {
1750
- --tw-text-opacity: 1 !important;
1751
- color: rgb(0 195 0 / var(--tw-text-opacity)) !important;
1773
+ --tw-text-opacity: 1;
1774
+ color: rgb(0 195 0 / var(--tw-text-opacity));
1752
1775
  }
1753
1776
  .text-success-50 {
1754
- --tw-text-opacity: 1 !important;
1755
- color: rgb(64 206 55 / var(--tw-text-opacity)) !important;
1777
+ --tw-text-opacity: 1;
1778
+ color: rgb(64 206 55 / var(--tw-text-opacity));
1756
1779
  }
1757
1780
  .text-success-40 {
1758
- --tw-text-opacity: 1 !important;
1759
- color: rgb(96 219 87 / var(--tw-text-opacity)) !important;
1781
+ --tw-text-opacity: 1;
1782
+ color: rgb(96 219 87 / var(--tw-text-opacity));
1760
1783
  }
1761
1784
  .text-success-30 {
1762
- --tw-text-opacity: 1 !important;
1763
- color: rgb(137 235 128 / var(--tw-text-opacity)) !important;
1785
+ --tw-text-opacity: 1;
1786
+ color: rgb(137 235 128 / var(--tw-text-opacity));
1764
1787
  }
1765
1788
  .text-success-20 {
1766
- --tw-text-opacity: 1 !important;
1767
- color: rgb(175 255 167 / var(--tw-text-opacity)) !important;
1789
+ --tw-text-opacity: 1;
1790
+ color: rgb(175 255 167 / var(--tw-text-opacity));
1768
1791
  }
1769
1792
  .text-success-10 {
1770
- --tw-text-opacity: 1 !important;
1771
- color: rgb(203 255 201 / var(--tw-text-opacity)) !important;
1793
+ --tw-text-opacity: 1;
1794
+ color: rgb(203 255 201 / var(--tw-text-opacity));
1772
1795
  }
1773
1796
  .text-success-5 {
1774
- --tw-text-opacity: 1 !important;
1775
- color: rgb(236 247 237 / var(--tw-text-opacity)) !important;
1797
+ --tw-text-opacity: 1;
1798
+ color: rgb(236 247 237 / var(--tw-text-opacity));
1776
1799
  }
1777
1800
  .text-success-0 {
1778
- --tw-text-opacity: 1 !important;
1779
- color: rgb(245 250 245 / var(--tw-text-opacity)) !important;
1801
+ --tw-text-opacity: 1;
1802
+ color: rgb(245 250 245 / var(--tw-text-opacity));
1780
1803
  }
1781
1804
  .text-info-100 {
1782
- --tw-text-opacity: 1 !important;
1783
- color: rgb(2 86 154 / var(--tw-text-opacity)) !important;
1805
+ --tw-text-opacity: 1;
1806
+ color: rgb(2 86 154 / var(--tw-text-opacity));
1784
1807
  }
1785
1808
  .text-info-90 {
1786
- --tw-text-opacity: 1 !important;
1787
- color: rgb(1 116 186 / var(--tw-text-opacity)) !important;
1809
+ --tw-text-opacity: 1;
1810
+ color: rgb(1 116 186 / var(--tw-text-opacity));
1788
1811
  }
1789
1812
  .text-info-80 {
1790
- --tw-text-opacity: 1 !important;
1791
- color: rgb(7 136 209 / var(--tw-text-opacity)) !important;
1813
+ --tw-text-opacity: 1;
1814
+ color: rgb(7 136 209 / var(--tw-text-opacity));
1792
1815
  }
1793
1816
  .text-info-70 {
1794
- --tw-text-opacity: 1 !important;
1795
- color: rgb(3 153 227 / var(--tw-text-opacity)) !important;
1817
+ --tw-text-opacity: 1;
1818
+ color: rgb(3 153 227 / var(--tw-text-opacity));
1796
1819
  }
1797
1820
  .text-info-60 {
1798
- --tw-text-opacity: 1 !important;
1799
- color: rgb(2 168 243 / var(--tw-text-opacity)) !important;
1821
+ --tw-text-opacity: 1;
1822
+ color: rgb(2 168 243 / var(--tw-text-opacity));
1800
1823
  }
1801
1824
  .text-info-50 {
1802
- --tw-text-opacity: 1 !important;
1803
- color: rgb(40 180 244 / var(--tw-text-opacity)) !important;
1825
+ --tw-text-opacity: 1;
1826
+ color: rgb(40 180 244 / var(--tw-text-opacity));
1804
1827
  }
1805
1828
  .text-info-40 {
1806
- --tw-text-opacity: 1 !important;
1807
- color: rgb(76 194 247 / var(--tw-text-opacity)) !important;
1829
+ --tw-text-opacity: 1;
1830
+ color: rgb(76 194 247 / var(--tw-text-opacity));
1808
1831
  }
1809
1832
  .text-info-30 {
1810
- --tw-text-opacity: 1 !important;
1811
- color: rgb(127 209 247 / var(--tw-text-opacity)) !important;
1833
+ --tw-text-opacity: 1;
1834
+ color: rgb(127 209 247 / var(--tw-text-opacity));
1812
1835
  }
1813
1836
  .text-info-20 {
1814
- --tw-text-opacity: 1 !important;
1815
- color: rgb(180 229 251 / var(--tw-text-opacity)) !important;
1837
+ --tw-text-opacity: 1;
1838
+ color: rgb(180 229 251 / var(--tw-text-opacity));
1816
1839
  }
1817
1840
  .text-info-10 {
1818
- --tw-text-opacity: 1 !important;
1819
- color: rgb(224 245 254 / var(--tw-text-opacity)) !important;
1841
+ --tw-text-opacity: 1;
1842
+ color: rgb(224 245 254 / var(--tw-text-opacity));
1820
1843
  }
1821
1844
  .text-info-5 {
1822
- --tw-text-opacity: 1 !important;
1823
- color: rgb(239 250 255 / var(--tw-text-opacity)) !important;
1845
+ --tw-text-opacity: 1;
1846
+ color: rgb(239 250 255 / var(--tw-text-opacity));
1824
1847
  }
1825
1848
  .text-info-0 {
1826
- --tw-text-opacity: 1 !important;
1827
- color: rgb(249 253 255 / var(--tw-text-opacity)) !important;
1849
+ --tw-text-opacity: 1;
1850
+ color: rgb(249 253 255 / var(--tw-text-opacity));
1828
1851
  }
1829
1852
  .text-grey-100 {
1830
- --tw-text-opacity: 1 !important;
1831
- color: rgb(25 25 29 / var(--tw-text-opacity)) !important;
1853
+ --tw-text-opacity: 1;
1854
+ color: rgb(25 25 29 / var(--tw-text-opacity));
1832
1855
  }
1833
1856
  .text-grey-90 {
1834
- --tw-text-opacity: 1 !important;
1835
- color: rgb(41 42 49 / var(--tw-text-opacity)) !important;
1857
+ --tw-text-opacity: 1;
1858
+ color: rgb(41 42 49 / var(--tw-text-opacity));
1836
1859
  }
1837
1860
  .text-grey-80 {
1838
- --tw-text-opacity: 1 !important;
1839
- color: rgb(58 58 68 / var(--tw-text-opacity)) !important;
1861
+ --tw-text-opacity: 1;
1862
+ color: rgb(58 58 68 / var(--tw-text-opacity));
1840
1863
  }
1841
1864
  .text-grey-70 {
1842
- --tw-text-opacity: 1 !important;
1843
- color: rgb(74 75 87 / var(--tw-text-opacity)) !important;
1865
+ --tw-text-opacity: 1;
1866
+ color: rgb(74 75 87 / var(--tw-text-opacity));
1844
1867
  }
1845
1868
  .text-grey-60 {
1846
- --tw-text-opacity: 1 !important;
1847
- color: rgb(90 91 106 / var(--tw-text-opacity)) !important;
1869
+ --tw-text-opacity: 1;
1870
+ color: rgb(90 91 106 / var(--tw-text-opacity));
1848
1871
  }
1849
1872
  .text-grey-50 {
1850
- --tw-text-opacity: 1 !important;
1851
- color: rgb(120 120 133 / var(--tw-text-opacity)) !important;
1873
+ --tw-text-opacity: 1;
1874
+ color: rgb(120 120 133 / var(--tw-text-opacity));
1852
1875
  }
1853
1876
  .text-grey-40 {
1854
- --tw-text-opacity: 1 !important;
1855
- color: rgb(150 150 160 / var(--tw-text-opacity)) !important;
1877
+ --tw-text-opacity: 1;
1878
+ color: rgb(150 150 160 / var(--tw-text-opacity));
1856
1879
  }
1857
1880
  .text-grey-30 {
1858
- --tw-text-opacity: 1 !important;
1859
- color: rgb(180 180 187 / var(--tw-text-opacity)) !important;
1881
+ --tw-text-opacity: 1;
1882
+ color: rgb(180 180 187 / var(--tw-text-opacity));
1860
1883
  }
1861
1884
  .text-grey-10 {
1862
- --tw-text-opacity: 1 !important;
1863
- color: rgb(225 225 227 / var(--tw-text-opacity)) !important;
1885
+ --tw-text-opacity: 1;
1886
+ color: rgb(225 225 227 / var(--tw-text-opacity));
1864
1887
  }
1865
1888
  .text-grey-5 {
1866
- --tw-text-opacity: 1 !important;
1867
- color: rgb(237 237 240 / var(--tw-text-opacity)) !important;
1889
+ --tw-text-opacity: 1;
1890
+ color: rgb(237 237 240 / var(--tw-text-opacity));
1868
1891
  }
1869
1892
  .text-grey-0 {
1870
- --tw-text-opacity: 1 !important;
1871
- color: rgb(247 247 250 / var(--tw-text-opacity)) !important;
1893
+ --tw-text-opacity: 1;
1894
+ color: rgb(247 247 250 / var(--tw-text-opacity));
1872
1895
  }
1873
1896
  .text-secondary-100 {
1874
- --tw-text-opacity: 1 !important;
1875
- color: rgb(225 29 22 / var(--tw-text-opacity)) !important;
1897
+ --tw-text-opacity: 1;
1898
+ color: rgb(225 29 22 / var(--tw-text-opacity));
1876
1899
  }
1877
1900
  .text-secondary-90 {
1878
- --tw-text-opacity: 1 !important;
1879
- color: rgb(235 70 16 / var(--tw-text-opacity)) !important;
1901
+ --tw-text-opacity: 1;
1902
+ color: rgb(235 70 16 / var(--tw-text-opacity));
1880
1903
  }
1881
1904
  .text-secondary-80 {
1882
- --tw-text-opacity: 1 !important;
1883
- color: rgb(243 88 13 / var(--tw-text-opacity)) !important;
1905
+ --tw-text-opacity: 1;
1906
+ color: rgb(243 88 13 / var(--tw-text-opacity));
1884
1907
  }
1885
1908
  .text-secondary-70 {
1886
- --tw-text-opacity: 1 !important;
1887
- color: rgb(249 106 2 / var(--tw-text-opacity)) !important;
1909
+ --tw-text-opacity: 1;
1910
+ color: rgb(249 106 2 / var(--tw-text-opacity));
1888
1911
  }
1889
1912
  .text-secondary-60 {
1890
- --tw-text-opacity: 1 !important;
1891
- color: rgb(255 119 0 / var(--tw-text-opacity)) !important;
1913
+ --tw-text-opacity: 1;
1914
+ color: rgb(255 119 0 / var(--tw-text-opacity));
1892
1915
  }
1893
1916
  .text-secondary-50 {
1894
- --tw-text-opacity: 1 !important;
1895
- color: rgb(252 135 26 / var(--tw-text-opacity)) !important;
1917
+ --tw-text-opacity: 1;
1918
+ color: rgb(252 135 26 / var(--tw-text-opacity));
1896
1919
  }
1897
1920
  .text-secondary-40 {
1898
- --tw-text-opacity: 1 !important;
1899
- color: rgb(251 154 62 / var(--tw-text-opacity)) !important;
1921
+ --tw-text-opacity: 1;
1922
+ color: rgb(251 154 62 / var(--tw-text-opacity));
1900
1923
  }
1901
1924
  .text-secondary-30 {
1902
- --tw-text-opacity: 1 !important;
1903
- color: rgb(250 178 110 / var(--tw-text-opacity)) !important;
1925
+ --tw-text-opacity: 1;
1926
+ color: rgb(250 178 110 / var(--tw-text-opacity));
1904
1927
  }
1905
1928
  .text-secondary-20 {
1906
- --tw-text-opacity: 1 !important;
1907
- color: rgb(248 201 156 / var(--tw-text-opacity)) !important;
1929
+ --tw-text-opacity: 1;
1930
+ color: rgb(248 201 156 / var(--tw-text-opacity));
1908
1931
  }
1909
1932
  .text-secondary-10 {
1910
- --tw-text-opacity: 1 !important;
1911
- color: rgb(254 232 208 / var(--tw-text-opacity)) !important;
1933
+ --tw-text-opacity: 1;
1934
+ color: rgb(254 232 208 / var(--tw-text-opacity));
1912
1935
  }
1913
1936
  .text-secondary-5 {
1914
- --tw-text-opacity: 1 !important;
1915
- color: rgb(255 243 232 / var(--tw-text-opacity)) !important;
1937
+ --tw-text-opacity: 1;
1938
+ color: rgb(255 243 232 / var(--tw-text-opacity));
1916
1939
  }
1917
1940
  .text-secondary-0 {
1918
- --tw-text-opacity: 1 !important;
1919
- color: rgb(255 251 248 / var(--tw-text-opacity)) !important;
1941
+ --tw-text-opacity: 1;
1942
+ color: rgb(255 251 248 / var(--tw-text-opacity));
1920
1943
  }
1921
1944
  .text-primary-100 {
1922
- --tw-text-opacity: 1 !important;
1923
- color: rgb(167 0 69 / var(--tw-text-opacity)) !important;
1945
+ --tw-text-opacity: 1;
1946
+ color: rgb(167 0 69 / var(--tw-text-opacity));
1924
1947
  }
1925
1948
  .text-primary-90 {
1926
- --tw-text-opacity: 1 !important;
1927
- color: rgb(198 4 67 / var(--tw-text-opacity)) !important;
1949
+ --tw-text-opacity: 1;
1950
+ color: rgb(198 4 67 / var(--tw-text-opacity));
1928
1951
  }
1929
1952
  .text-primary-80 {
1930
- --tw-text-opacity: 1 !important;
1931
- color: rgb(228 26 74 / var(--tw-text-opacity)) !important;
1953
+ --tw-text-opacity: 1;
1954
+ color: rgb(228 26 74 / var(--tw-text-opacity));
1932
1955
  }
1933
1956
  .text-primary-70 {
1934
- --tw-text-opacity: 1 !important;
1935
- color: rgb(255 53 84 / var(--tw-text-opacity)) !important;
1957
+ --tw-text-opacity: 1;
1958
+ color: rgb(255 53 84 / var(--tw-text-opacity));
1936
1959
  }
1937
1960
  .text-primary-60 {
1938
- --tw-text-opacity: 1 !important;
1939
- color: rgb(255 82 117 / var(--tw-text-opacity)) !important;
1961
+ --tw-text-opacity: 1;
1962
+ color: rgb(255 82 117 / var(--tw-text-opacity));
1940
1963
  }
1941
1964
  .text-primary-50 {
1942
- --tw-text-opacity: 1 !important;
1943
- color: rgb(255 111 148 / var(--tw-text-opacity)) !important;
1965
+ --tw-text-opacity: 1;
1966
+ color: rgb(255 111 148 / var(--tw-text-opacity));
1944
1967
  }
1945
1968
  .text-primary-40 {
1946
- --tw-text-opacity: 1 !important;
1947
- color: rgb(255 141 176 / var(--tw-text-opacity)) !important;
1969
+ --tw-text-opacity: 1;
1970
+ color: rgb(255 141 176 / var(--tw-text-opacity));
1948
1971
  }
1949
1972
  .text-primary-30 {
1950
- --tw-text-opacity: 1 !important;
1951
- color: rgb(255 169 201 / var(--tw-text-opacity)) !important;
1973
+ --tw-text-opacity: 1;
1974
+ color: rgb(255 169 201 / var(--tw-text-opacity));
1952
1975
  }
1953
1976
  .text-primary-20 {
1954
- --tw-text-opacity: 1 !important;
1955
- color: rgb(255 196 222 / var(--tw-text-opacity)) !important;
1977
+ --tw-text-opacity: 1;
1978
+ color: rgb(255 196 222 / var(--tw-text-opacity));
1956
1979
  }
1957
1980
  .text-primary-10 {
1958
- --tw-text-opacity: 1 !important;
1959
- color: rgb(255 222 239 / var(--tw-text-opacity)) !important;
1981
+ --tw-text-opacity: 1;
1982
+ color: rgb(255 222 239 / var(--tw-text-opacity));
1960
1983
  }
1961
1984
  .text-primary-5 {
1962
- --tw-text-opacity: 1 !important;
1963
- color: rgb(255 232 244 / var(--tw-text-opacity)) !important;
1985
+ --tw-text-opacity: 1;
1986
+ color: rgb(255 232 244 / var(--tw-text-opacity));
1964
1987
  }
1965
1988
  .text-primary-0 {
1966
- --tw-text-opacity: 1 !important;
1967
- color: rgb(255 249 252 / var(--tw-text-opacity)) !important;
1989
+ --tw-text-opacity: 1;
1990
+ color: rgb(255 249 252 / var(--tw-text-opacity));
1968
1991
  }
1969
1992
  .text-grey-20 {
1970
- --tw-text-opacity: 1 !important;
1971
- color: rgb(210 210 214 / var(--tw-text-opacity)) !important;
1993
+ --tw-text-opacity: 1;
1994
+ color: rgb(210 210 214 / var(--tw-text-opacity));
1972
1995
  }
1973
1996
  .text-transparent {
1974
- color: transparent !important;
1997
+ color: transparent;
1975
1998
  }
1976
1999
  .text-white {
1977
- --tw-text-opacity: 1 !important;
1978
- color: rgb(255 255 255 / var(--tw-text-opacity)) !important;
2000
+ --tw-text-opacity: 1;
2001
+ color: rgb(255 255 255 / var(--tw-text-opacity));
1979
2002
  }
1980
2003
  .underline {
1981
- -webkit-text-decoration-line: underline !important;
1982
- text-decoration-line: underline !important;
2004
+ -webkit-text-decoration-line: underline;
2005
+ text-decoration-line: underline;
1983
2006
  }
1984
2007
  .no-underline {
1985
- -webkit-text-decoration-line: none !important;
1986
- text-decoration-line: none !important;
2008
+ -webkit-text-decoration-line: none;
2009
+ text-decoration-line: none;
1987
2010
  }
1988
2011
  .underline-offset-2 {
1989
- text-underline-offset: 2px !important;
2012
+ text-underline-offset: 2px;
1990
2013
  }
1991
2014
  .opacity-70 {
1992
- opacity: 0.7 !important;
2015
+ opacity: 0.7;
1993
2016
  }
1994
2017
  .opacity-40 {
1995
- opacity: 0.4 !important;
2018
+ opacity: 0.4;
1996
2019
  }
1997
2020
  .shadow-16dp {
1998
- --tw-shadow: 0px 16px 32px rgba(90, 91, 106, 0.12), 0px 8px 16px rgba(58, 58, 68, 0.12) !important;
1999
- --tw-shadow-colored: 0px 16px 32px var(--tw-shadow-color), 0px 8px 16px var(--tw-shadow-color) !important;
2000
- box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow) !important;
2001
- box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow) !important;
2021
+ --tw-shadow: 0px 16px 32px rgba(90, 91, 106, 0.12), 0px 8px 16px rgba(58, 58, 68, 0.12);
2022
+ --tw-shadow-colored: 0px 16px 32px var(--tw-shadow-color), 0px 8px 16px var(--tw-shadow-color);
2023
+ box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow);
2024
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
2002
2025
  }
2003
2026
  .shadow-4dp {
2004
- --tw-shadow: 0px 4px 8px rgba(90, 91, 106, 0.20), 0px 2px 4px rgba(58, 58, 68, 0.20) !important;
2005
- --tw-shadow-colored: 0px 4px 8px var(--tw-shadow-color), 0px 2px 4px var(--tw-shadow-color) !important;
2006
- box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow) !important;
2007
- box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow) !important;
2027
+ --tw-shadow: 0px 4px 8px rgba(90, 91, 106, 0.20), 0px 2px 4px rgba(58, 58, 68, 0.20);
2028
+ --tw-shadow-colored: 0px 4px 8px var(--tw-shadow-color), 0px 2px 4px var(--tw-shadow-color);
2029
+ box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow);
2030
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
2008
2031
  }
2009
2032
  .shadow-2dp {
2010
- --tw-shadow: 0px 2px 4px rgba(90, 91, 106, 0.24), 0px 1px 2px rgba(58, 58, 68, 0.24) !important;
2011
- --tw-shadow-colored: 0px 2px 4px var(--tw-shadow-color), 0px 1px 2px var(--tw-shadow-color) !important;
2012
- box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow) !important;
2013
- box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow) !important;
2033
+ --tw-shadow: 0px 2px 4px rgba(90, 91, 106, 0.24), 0px 1px 2px rgba(58, 58, 68, 0.24);
2034
+ --tw-shadow-colored: 0px 2px 4px var(--tw-shadow-color), 0px 1px 2px var(--tw-shadow-color);
2035
+ box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow);
2036
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
2014
2037
  }
2015
2038
  .outline-none {
2016
- outline: 2px solid transparent !important;
2017
- outline-offset: 2px !important;
2039
+ outline: 2px solid transparent;
2040
+ outline-offset: 2px;
2018
2041
  }
2019
2042
  .ring-1 {
2020
- --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
2021
- --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
2022
- box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0) !important;
2023
- box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0)) !important;
2043
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
2044
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
2045
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
2046
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
2024
2047
  }
2025
2048
  .ring-2 {
2026
- --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
2027
- --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
2028
- box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0) !important;
2029
- box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0)) !important;
2049
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
2050
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
2051
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
2052
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
2030
2053
  }
2031
2054
  .ring-inset {
2032
- --tw-ring-inset: inset !important;
2055
+ --tw-ring-inset: inset;
2033
2056
  }
2034
2057
  .ring-grey-30 {
2035
- --tw-ring-opacity: 1 !important;
2036
- --tw-ring-color: rgb(180 180 187 / var(--tw-ring-opacity)) !important;
2058
+ --tw-ring-opacity: 1;
2059
+ --tw-ring-color: rgb(180 180 187 / var(--tw-ring-opacity));
2037
2060
  }
2038
2061
  .ring-offset-0 {
2039
- --tw-ring-offset-width: 0px !important;
2062
+ --tw-ring-offset-width: 0px;
2040
2063
  }
2041
2064
  .blur {
2042
- --tw-blur: blur(8px) !important;
2043
- 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) !important;
2065
+ --tw-blur: blur(8px);
2066
+ 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);
2044
2067
  }
2045
2068
  .filter {
2046
- 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) !important;
2069
+ 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);
2047
2070
  }
2048
2071
  .transition {
2049
- transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter !important;
2050
- transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter !important;
2051
- transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter !important;
2052
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
2053
- transition-duration: 150ms !important;
2072
+ transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
2073
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
2074
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
2075
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
2076
+ transition-duration: 150ms;
2054
2077
  }
2055
2078
  .transition-all {
2056
- transition-property: all !important;
2057
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
2058
- transition-duration: 150ms !important;
2079
+ transition-property: all;
2080
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
2081
+ transition-duration: 150ms;
2059
2082
  }
2060
2083
  .delay-150 {
2061
- transition-delay: 150ms !important;
2084
+ transition-delay: 150ms;
2062
2085
  }
2063
2086
  .duration-300 {
2064
- transition-duration: 300ms !important;
2087
+ transition-duration: 300ms;
2065
2088
  }
2066
2089
  .ease-in-out {
2067
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
2090
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
2068
2091
  }
2069
2092
  .line-clamp-1 {
2070
- overflow: hidden !important;
2071
- display: -webkit-box !important;
2072
- -webkit-box-orient: vertical !important;
2073
- -webkit-line-clamp: 1 !important;
2093
+ overflow: hidden;
2094
+ display: -webkit-box;
2095
+ -webkit-box-orient: vertical;
2096
+ -webkit-line-clamp: 1;
2074
2097
  }
2075
2098
  .line-clamp-2 {
2076
- overflow: hidden !important;
2077
- display: -webkit-box !important;
2078
- -webkit-box-orient: vertical !important;
2079
- -webkit-line-clamp: 2 !important;
2099
+ overflow: hidden;
2100
+ display: -webkit-box;
2101
+ -webkit-box-orient: vertical;
2102
+ -webkit-line-clamp: 2;
2080
2103
  }
2081
2104
  .line-clamp-3 {
2082
- overflow: hidden !important;
2083
- display: -webkit-box !important;
2084
- -webkit-box-orient: vertical !important;
2085
- -webkit-line-clamp: 3 !important;
2105
+ overflow: hidden;
2106
+ display: -webkit-box;
2107
+ -webkit-box-orient: vertical;
2108
+ -webkit-line-clamp: 3;
2086
2109
  }
2087
2110
  .line-clamp-4 {
2088
- overflow: hidden !important;
2089
- display: -webkit-box !important;
2090
- -webkit-box-orient: vertical !important;
2091
- -webkit-line-clamp: 4 !important;
2111
+ overflow: hidden;
2112
+ display: -webkit-box;
2113
+ -webkit-box-orient: vertical;
2114
+ -webkit-line-clamp: 4;
2092
2115
  }
2093
2116
  .line-clamp-5 {
2094
- overflow: hidden !important;
2095
- display: -webkit-box !important;
2096
- -webkit-box-orient: vertical !important;
2097
- -webkit-line-clamp: 5 !important;
2117
+ overflow: hidden;
2118
+ display: -webkit-box;
2119
+ -webkit-box-orient: vertical;
2120
+ -webkit-line-clamp: 5;
2098
2121
  }
2099
2122
  .line-clamp-6 {
2100
- overflow: hidden !important;
2101
- display: -webkit-box !important;
2102
- -webkit-box-orient: vertical !important;
2103
- -webkit-line-clamp: 6 !important;
2123
+ overflow: hidden;
2124
+ display: -webkit-box;
2125
+ -webkit-box-orient: vertical;
2126
+ -webkit-line-clamp: 6;
2104
2127
  }
2105
2128
  .scrollbar-hide {
2106
- -ms-overflow-style: none !important;
2107
- scrollbar-width: none !important;
2129
+ -ms-overflow-style: none;
2130
+ scrollbar-width: none;
2108
2131
  }
2109
2132
  .scrollbar-hide::-webkit-scrollbar {
2110
- display: none !important;
2133
+ display: none;
2111
2134
  }
2112
2135
  .placeholder\:text-grey-40::-moz-placeholder {
2113
- --tw-text-opacity: 1 !important;
2114
- color: rgb(150 150 160 / var(--tw-text-opacity)) !important;
2136
+ --tw-text-opacity: 1;
2137
+ color: rgb(150 150 160 / var(--tw-text-opacity));
2115
2138
  }
2116
2139
  .placeholder\:text-grey-40::placeholder {
2117
- --tw-text-opacity: 1 !important;
2118
- color: rgb(150 150 160 / var(--tw-text-opacity)) !important;
2140
+ --tw-text-opacity: 1;
2141
+ color: rgb(150 150 160 / var(--tw-text-opacity));
2119
2142
  }
2120
2143
  .before\:content-\[\'_\'\]::before {
2121
- --tw-content: ' ' !important;
2122
- content: var(--tw-content) !important;
2144
+ --tw-content: ' ';
2145
+ content: var(--tw-content);
2123
2146
  }
2124
2147
  .first\:mt-0:first-child {
2125
- margin-top: 0 !important;
2148
+ margin-top: 0;
2126
2149
  }
2127
2150
  .visited\:text-primary-80:visited {
2128
- color: rgb(228, 26, 74 ) !important;
2151
+ color: rgb(228, 26, 74 );
2129
2152
  }
2130
2153
  .checked\:border-navyBlue-100:checked {
2131
- --tw-border-opacity: 1 !important;
2132
- border-color: rgb(48 55 94 / var(--tw-border-opacity)) !important;
2154
+ --tw-border-opacity: 1;
2155
+ border-color: rgb(48 55 94 / var(--tw-border-opacity));
2133
2156
  }
2134
2157
  .checked\:bg-navyBlue-100:checked {
2135
- --tw-bg-opacity: 1 !important;
2136
- background-color: rgb(48 55 94 / var(--tw-bg-opacity)) !important;
2158
+ --tw-bg-opacity: 1;
2159
+ background-color: rgb(48 55 94 / var(--tw-bg-opacity));
2137
2160
  }
2138
2161
  .checked\:bg-opacity-40:checked {
2139
- --tw-bg-opacity: 0.4 !important;
2162
+ --tw-bg-opacity: 0.4;
2140
2163
  }
2141
2164
  .checked\:opacity-40:checked {
2142
- opacity: 0.4 !important;
2165
+ opacity: 0.4;
2143
2166
  }
2144
2167
  .checked\:shadow-whiteInset:checked {
2145
- --tw-shadow: inset 0 0 0 3px rgba(255,255,255,1) !important;
2146
- --tw-shadow-colored: inset 0 0 0 3px var(--tw-shadow-color) !important;
2147
- box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow) !important;
2148
- box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow) !important;
2168
+ --tw-shadow: inset 0 0 0 3px rgba(255,255,255,1);
2169
+ --tw-shadow-colored: inset 0 0 0 3px var(--tw-shadow-color);
2170
+ box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow);
2171
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
2149
2172
  }
2150
2173
  .hover\:cursor-pointer:hover {
2151
- cursor: pointer !important;
2174
+ cursor: pointer;
2152
2175
  }
2153
2176
  .hover\:border-grey-50:hover {
2154
- --tw-border-opacity: 1 !important;
2155
- border-color: rgb(120 120 133 / var(--tw-border-opacity)) !important;
2177
+ --tw-border-opacity: 1;
2178
+ border-color: rgb(120 120 133 / var(--tw-border-opacity));
2156
2179
  }
2157
2180
  .hover\:border-grey-20:hover {
2158
- --tw-border-opacity: 1 !important;
2159
- border-color: rgb(210 210 214 / var(--tw-border-opacity)) !important;
2181
+ --tw-border-opacity: 1;
2182
+ border-color: rgb(210 210 214 / var(--tw-border-opacity));
2160
2183
  }
2161
2184
  .hover\:bg-grey-0:hover {
2162
- --tw-bg-opacity: 1 !important;
2163
- background-color: rgb(247 247 250 / var(--tw-bg-opacity)) !important;
2185
+ --tw-bg-opacity: 1;
2186
+ background-color: rgb(247 247 250 / var(--tw-bg-opacity));
2164
2187
  }
2165
2188
  .hover\:bg-grey-30:hover {
2166
- --tw-bg-opacity: 1 !important;
2167
- background-color: rgb(180 180 187 / var(--tw-bg-opacity)) !important;
2189
+ --tw-bg-opacity: 1;
2190
+ background-color: rgb(180 180 187 / var(--tw-bg-opacity));
2168
2191
  }
2169
2192
  .hover\:bg-primary-70:hover {
2170
- --tw-bg-opacity: 1 !important;
2171
- background-color: rgb(255 53 84 / var(--tw-bg-opacity)) !important;
2193
+ --tw-bg-opacity: 1;
2194
+ background-color: rgb(255 53 84 / var(--tw-bg-opacity));
2172
2195
  }
2173
2196
  .hover\:bg-grey-5:hover {
2174
- --tw-bg-opacity: 1 !important;
2175
- background-color: rgb(237 237 240 / var(--tw-bg-opacity)) !important;
2197
+ --tw-bg-opacity: 1;
2198
+ background-color: rgb(237 237 240 / var(--tw-bg-opacity));
2176
2199
  }
2177
2200
  .hover\:text-primary-70:hover {
2178
- --tw-text-opacity: 1 !important;
2179
- color: rgb(255 53 84 / var(--tw-text-opacity)) !important;
2201
+ --tw-text-opacity: 1;
2202
+ color: rgb(255 53 84 / var(--tw-text-opacity));
2180
2203
  }
2181
2204
  .hover\:text-grey-80:hover {
2182
- --tw-text-opacity: 1 !important;
2183
- color: rgb(58 58 68 / var(--tw-text-opacity)) !important;
2205
+ --tw-text-opacity: 1;
2206
+ color: rgb(58 58 68 / var(--tw-text-opacity));
2184
2207
  }
2185
2208
  .hover\:text-grey-90:hover {
2186
- --tw-text-opacity: 1 !important;
2187
- color: rgb(41 42 49 / var(--tw-text-opacity)) !important;
2209
+ --tw-text-opacity: 1;
2210
+ color: rgb(41 42 49 / var(--tw-text-opacity));
2188
2211
  }
2189
2212
  .hover\:text-primary-80:hover {
2190
- --tw-text-opacity: 1 !important;
2191
- color: rgb(228 26 74 / var(--tw-text-opacity)) !important;
2213
+ --tw-text-opacity: 1;
2214
+ color: rgb(228 26 74 / var(--tw-text-opacity));
2192
2215
  }
2193
2216
  .hover\:no-underline:hover {
2194
- -webkit-text-decoration-line: none !important;
2195
- text-decoration-line: none !important;
2217
+ -webkit-text-decoration-line: none;
2218
+ text-decoration-line: none;
2196
2219
  }
2197
2220
  .hover\:ring-grey-50:hover {
2198
- --tw-ring-opacity: 1 !important;
2199
- --tw-ring-color: rgb(120 120 133 / var(--tw-ring-opacity)) !important;
2221
+ --tw-ring-opacity: 1;
2222
+ --tw-ring-color: rgb(120 120 133 / var(--tw-ring-opacity));
2200
2223
  }
2201
2224
  .hover\:checked\:bg-navyBlue-100:checked:hover {
2202
- --tw-bg-opacity: 1 !important;
2203
- background-color: rgb(48 55 94 / var(--tw-bg-opacity)) !important;
2225
+ --tw-bg-opacity: 1;
2226
+ background-color: rgb(48 55 94 / var(--tw-bg-opacity));
2204
2227
  }
2205
2228
  .focus\:border:focus {
2206
- border-width: 1px !important;
2229
+ border-width: 1px;
2207
2230
  }
2208
2231
  .focus\:border-info-70:focus {
2209
- --tw-border-opacity: 1 !important;
2210
- border-color: rgb(3 153 227 / var(--tw-border-opacity)) !important;
2232
+ --tw-border-opacity: 1;
2233
+ border-color: rgb(3 153 227 / var(--tw-border-opacity));
2211
2234
  }
2212
2235
  .focus\:border-transparent:focus {
2213
- border-color: transparent !important;
2236
+ border-color: transparent;
2214
2237
  }
2215
2238
  .focus\:text-primary-80:focus {
2216
- --tw-text-opacity: 1 !important;
2217
- color: rgb(228 26 74 / var(--tw-text-opacity)) !important;
2239
+ --tw-text-opacity: 1;
2240
+ color: rgb(228 26 74 / var(--tw-text-opacity));
2218
2241
  }
2219
2242
  .focus\:outline-none:focus {
2220
- outline: 2px solid transparent !important;
2221
- outline-offset: 2px !important;
2243
+ outline: 2px solid transparent;
2244
+ outline-offset: 2px;
2222
2245
  }
2223
2246
  .focus\:ring-0:focus {
2224
- --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
2225
- --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
2226
- box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0) !important;
2227
- box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0)) !important;
2247
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
2248
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
2249
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
2250
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
2228
2251
  }
2229
2252
  .focus\:ring-2:focus {
2230
- --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
2231
- --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
2232
- box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0) !important;
2233
- box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0)) !important;
2253
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
2254
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
2255
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
2256
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
2234
2257
  }
2235
2258
  .focus\:ring-1:focus {
2236
- --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
2237
- --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
2238
- box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0) !important;
2239
- box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0)) !important;
2259
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
2260
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
2261
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
2262
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
2240
2263
  }
2241
2264
  .focus\:ring-grey-60:focus {
2242
- --tw-ring-opacity: 1 !important;
2243
- --tw-ring-color: rgb(90 91 106 / var(--tw-ring-opacity)) !important;
2265
+ --tw-ring-opacity: 1;
2266
+ --tw-ring-color: rgb(90 91 106 / var(--tw-ring-opacity));
2244
2267
  }
2245
2268
  .focus\:ring-offset-0:focus {
2246
- --tw-ring-offset-width: 0px !important;
2269
+ --tw-ring-offset-width: 0px;
2247
2270
  }
2248
2271
  .focus-visible\:border-info-70.focus-visible {
2249
- --tw-border-opacity: 1 !important;
2250
- border-color: rgb(3 153 227 / var(--tw-border-opacity)) !important;
2272
+ --tw-border-opacity: 1;
2273
+ border-color: rgb(3 153 227 / var(--tw-border-opacity));
2251
2274
  }
2252
2275
  .focus-visible\:border-info-70:focus-visible {
2253
- --tw-border-opacity: 1 !important;
2254
- border-color: rgb(3 153 227 / var(--tw-border-opacity)) !important;
2276
+ --tw-border-opacity: 1;
2277
+ border-color: rgb(3 153 227 / var(--tw-border-opacity));
2255
2278
  }
2256
2279
  .focus-visible\:bg-grey-0.focus-visible {
2257
- --tw-bg-opacity: 1 !important;
2258
- background-color: rgb(247 247 250 / var(--tw-bg-opacity)) !important;
2280
+ --tw-bg-opacity: 1;
2281
+ background-color: rgb(247 247 250 / var(--tw-bg-opacity));
2259
2282
  }
2260
2283
  .focus-visible\:bg-grey-0:focus-visible {
2261
- --tw-bg-opacity: 1 !important;
2262
- background-color: rgb(247 247 250 / var(--tw-bg-opacity)) !important;
2284
+ --tw-bg-opacity: 1;
2285
+ background-color: rgb(247 247 250 / var(--tw-bg-opacity));
2263
2286
  }
2264
2287
  .focus-visible\:text-grey-90.focus-visible {
2265
- --tw-text-opacity: 1 !important;
2266
- color: rgb(41 42 49 / var(--tw-text-opacity)) !important;
2288
+ --tw-text-opacity: 1;
2289
+ color: rgb(41 42 49 / var(--tw-text-opacity));
2267
2290
  }
2268
2291
  .focus-visible\:text-grey-90:focus-visible {
2269
- --tw-text-opacity: 1 !important;
2270
- color: rgb(41 42 49 / var(--tw-text-opacity)) !important;
2292
+ --tw-text-opacity: 1;
2293
+ color: rgb(41 42 49 / var(--tw-text-opacity));
2271
2294
  }
2272
2295
  .focus-visible\:text-grey-80.focus-visible {
2273
- --tw-text-opacity: 1 !important;
2274
- color: rgb(58 58 68 / var(--tw-text-opacity)) !important;
2296
+ --tw-text-opacity: 1;
2297
+ color: rgb(58 58 68 / var(--tw-text-opacity));
2275
2298
  }
2276
2299
  .focus-visible\:text-grey-80:focus-visible {
2277
- --tw-text-opacity: 1 !important;
2278
- color: rgb(58 58 68 / var(--tw-text-opacity)) !important;
2300
+ --tw-text-opacity: 1;
2301
+ color: rgb(58 58 68 / var(--tw-text-opacity));
2279
2302
  }
2280
2303
  .focus-visible\:outline-0.focus-visible {
2281
- outline-width: 0px !important;
2304
+ outline-width: 0px;
2282
2305
  }
2283
2306
  .focus-visible\:outline-0:focus-visible {
2284
- outline-width: 0px !important;
2307
+ outline-width: 0px;
2285
2308
  }
2286
2309
  .focus-visible\:ring-2.focus-visible {
2287
- --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
2288
- --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
2289
- box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0) !important;
2290
- box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0)) !important;
2310
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
2311
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
2312
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
2313
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
2291
2314
  }
2292
2315
  .focus-visible\:ring-2:focus-visible {
2293
- --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
2294
- --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
2295
- box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0) !important;
2296
- box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0)) !important;
2316
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
2317
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
2318
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
2319
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
2297
2320
  }
2298
2321
  .focus-visible\:ring-1.focus-visible {
2299
- --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
2300
- --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
2301
- box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0) !important;
2302
- box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0)) !important;
2322
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
2323
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
2324
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
2325
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
2303
2326
  }
2304
2327
  .focus-visible\:ring-1:focus-visible {
2305
- --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
2306
- --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
2307
- box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0) !important;
2308
- box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0)) !important;
2328
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
2329
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
2330
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
2331
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
2309
2332
  }
2310
2333
  .focus-visible\:ring-inset.focus-visible {
2311
- --tw-ring-inset: inset !important;
2334
+ --tw-ring-inset: inset;
2312
2335
  }
2313
2336
  .focus-visible\:ring-inset:focus-visible {
2314
- --tw-ring-inset: inset !important;
2337
+ --tw-ring-inset: inset;
2315
2338
  }
2316
2339
  .focus-visible\:ring-primary-100.focus-visible {
2317
- --tw-ring-opacity: 1 !important;
2318
- --tw-ring-color: rgb(167 0 69 / var(--tw-ring-opacity)) !important;
2340
+ --tw-ring-opacity: 1;
2341
+ --tw-ring-color: rgb(167 0 69 / var(--tw-ring-opacity));
2319
2342
  }
2320
2343
  .focus-visible\:ring-primary-100:focus-visible {
2321
- --tw-ring-opacity: 1 !important;
2322
- --tw-ring-color: rgb(167 0 69 / var(--tw-ring-opacity)) !important;
2344
+ --tw-ring-opacity: 1;
2345
+ --tw-ring-color: rgb(167 0 69 / var(--tw-ring-opacity));
2323
2346
  }
2324
2347
  .focus-visible\:ring-grey-50.focus-visible {
2325
- --tw-ring-opacity: 1 !important;
2326
- --tw-ring-color: rgb(120 120 133 / var(--tw-ring-opacity)) !important;
2348
+ --tw-ring-opacity: 1;
2349
+ --tw-ring-color: rgb(120 120 133 / var(--tw-ring-opacity));
2327
2350
  }
2328
2351
  .focus-visible\:ring-grey-50:focus-visible {
2329
- --tw-ring-opacity: 1 !important;
2330
- --tw-ring-color: rgb(120 120 133 / var(--tw-ring-opacity)) !important;
2352
+ --tw-ring-opacity: 1;
2353
+ --tw-ring-color: rgb(120 120 133 / var(--tw-ring-opacity));
2331
2354
  }
2332
2355
  .focus-visible\:ring-info-70.focus-visible {
2333
- --tw-ring-opacity: 1 !important;
2334
- --tw-ring-color: rgb(3 153 227 / var(--tw-ring-opacity)) !important;
2356
+ --tw-ring-opacity: 1;
2357
+ --tw-ring-color: rgb(3 153 227 / var(--tw-ring-opacity));
2335
2358
  }
2336
2359
  .focus-visible\:ring-info-70:focus-visible {
2337
- --tw-ring-opacity: 1 !important;
2338
- --tw-ring-color: rgb(3 153 227 / var(--tw-ring-opacity)) !important;
2360
+ --tw-ring-opacity: 1;
2361
+ --tw-ring-color: rgb(3 153 227 / var(--tw-ring-opacity));
2339
2362
  }
2340
2363
  .active\:bg-grey-5:active {
2341
- --tw-bg-opacity: 1 !important;
2342
- background-color: rgb(237 237 240 / var(--tw-bg-opacity)) !important;
2364
+ --tw-bg-opacity: 1;
2365
+ background-color: rgb(237 237 240 / var(--tw-bg-opacity));
2343
2366
  }
2344
2367
  .active\:bg-primary-90:active {
2345
- --tw-bg-opacity: 1 !important;
2346
- background-color: rgb(198 4 67 / var(--tw-bg-opacity)) !important;
2368
+ --tw-bg-opacity: 1;
2369
+ background-color: rgb(198 4 67 / var(--tw-bg-opacity));
2347
2370
  }
2348
2371
  .active\:bg-transparent:active {
2349
- background-color: transparent !important;
2372
+ background-color: transparent;
2350
2373
  }
2351
2374
  .active\:bg-grey-10:active {
2352
- --tw-bg-opacity: 1 !important;
2353
- background-color: rgb(225 225 227 / var(--tw-bg-opacity)) !important;
2375
+ --tw-bg-opacity: 1;
2376
+ background-color: rgb(225 225 227 / var(--tw-bg-opacity));
2354
2377
  }
2355
2378
  .active\:text-primary-70:active {
2356
- --tw-text-opacity: 1 !important;
2357
- color: rgb(255 53 84 / var(--tw-text-opacity)) !important;
2379
+ --tw-text-opacity: 1;
2380
+ color: rgb(255 53 84 / var(--tw-text-opacity));
2358
2381
  }
2359
2382
  .active\:text-grey-80:active {
2360
- --tw-text-opacity: 1 !important;
2361
- color: rgb(58 58 68 / var(--tw-text-opacity)) !important;
2383
+ --tw-text-opacity: 1;
2384
+ color: rgb(58 58 68 / var(--tw-text-opacity));
2362
2385
  }
2363
2386
  .active\:text-grey-50:active {
2364
- --tw-text-opacity: 1 !important;
2365
- color: rgb(120 120 133 / var(--tw-text-opacity)) !important;
2387
+ --tw-text-opacity: 1;
2388
+ color: rgb(120 120 133 / var(--tw-text-opacity));
2366
2389
  }
2367
2390
  .active\:text-grey-70:active {
2368
- --tw-text-opacity: 1 !important;
2369
- color: rgb(74 75 87 / var(--tw-text-opacity)) !important;
2391
+ --tw-text-opacity: 1;
2392
+ color: rgb(74 75 87 / var(--tw-text-opacity));
2370
2393
  }
2371
2394
  .active\:ring-0:active {
2372
- --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
2373
- --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
2374
- box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0) !important;
2375
- box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0)) !important;
2395
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
2396
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
2397
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
2398
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
2376
2399
  }
2377
2400
  .active\:ring-grey-50:active {
2378
- --tw-ring-opacity: 1 !important;
2379
- --tw-ring-color: rgb(120 120 133 / var(--tw-ring-opacity)) !important;
2401
+ --tw-ring-opacity: 1;
2402
+ --tw-ring-color: rgb(120 120 133 / var(--tw-ring-opacity));
2380
2403
  }
2381
2404
  .disabled\:cursor-not-allowed:disabled {
2382
- cursor: not-allowed !important;
2405
+ cursor: not-allowed;
2383
2406
  }
2384
2407
  .disabled\:border-grey-20:disabled {
2385
- --tw-border-opacity: 1 !important;
2386
- border-color: rgb(210 210 214 / var(--tw-border-opacity)) !important;
2408
+ --tw-border-opacity: 1;
2409
+ border-color: rgb(210 210 214 / var(--tw-border-opacity));
2387
2410
  }
2388
2411
  .disabled\:bg-grey-5:disabled {
2389
- --tw-bg-opacity: 1 !important;
2390
- background-color: rgb(237 237 240 / var(--tw-bg-opacity)) !important;
2412
+ --tw-bg-opacity: 1;
2413
+ background-color: rgb(237 237 240 / var(--tw-bg-opacity));
2391
2414
  }
2392
2415
  .disabled\:bg-primary-5:disabled {
2393
- --tw-bg-opacity: 1 !important;
2394
- background-color: rgb(255 232 244 / var(--tw-bg-opacity)) !important;
2416
+ --tw-bg-opacity: 1;
2417
+ background-color: rgb(255 232 244 / var(--tw-bg-opacity));
2395
2418
  }
2396
2419
  .disabled\:bg-grey-0:disabled {
2397
- --tw-bg-opacity: 1 !important;
2398
- background-color: rgb(247 247 250 / var(--tw-bg-opacity)) !important;
2420
+ --tw-bg-opacity: 1;
2421
+ background-color: rgb(247 247 250 / var(--tw-bg-opacity));
2399
2422
  }
2400
2423
  .disabled\:bg-transparent:disabled {
2401
- background-color: transparent !important;
2424
+ background-color: transparent;
2402
2425
  }
2403
2426
  .disabled\:text-grey-40:disabled {
2404
- --tw-text-opacity: 1 !important;
2405
- color: rgb(150 150 160 / var(--tw-text-opacity)) !important;
2427
+ --tw-text-opacity: 1;
2428
+ color: rgb(150 150 160 / var(--tw-text-opacity));
2406
2429
  }
2407
2430
  .disabled\:text-primary-40:disabled {
2408
- --tw-text-opacity: 1 !important;
2409
- color: rgb(255 141 176 / var(--tw-text-opacity)) !important;
2431
+ --tw-text-opacity: 1;
2432
+ color: rgb(255 141 176 / var(--tw-text-opacity));
2410
2433
  }
2411
2434
  .disabled\:text-grey-30:disabled {
2412
- --tw-text-opacity: 1 !important;
2413
- color: rgb(180 180 187 / var(--tw-text-opacity)) !important;
2435
+ --tw-text-opacity: 1;
2436
+ color: rgb(180 180 187 / var(--tw-text-opacity));
2414
2437
  }
2415
2438
  .disabled\:text-grey-20:disabled {
2416
- --tw-text-opacity: 1 !important;
2417
- color: rgb(210 210 214 / var(--tw-text-opacity)) !important;
2439
+ --tw-text-opacity: 1;
2440
+ color: rgb(210 210 214 / var(--tw-text-opacity));
2418
2441
  }
2419
2442
  .disabled\:ring-grey-20:disabled {
2420
- --tw-ring-opacity: 1 !important;
2421
- --tw-ring-color: rgb(210 210 214 / var(--tw-ring-opacity)) !important;
2443
+ --tw-ring-opacity: 1;
2444
+ --tw-ring-color: rgb(210 210 214 / var(--tw-ring-opacity));
2422
2445
  }
2423
2446
  .group:last-child .group-last\:border-b-0 {
2424
- border-bottom-width: 0px !important;
2447
+ border-bottom-width: 0px;
2425
2448
  }
2426
2449
  .group:hover .group-hover\:visible {
2427
- visibility: visible !important;
2450
+ visibility: visible;
2428
2451
  }
2429
2452
  .group:hover .group-hover\:bg-grey-0 {
2430
- --tw-bg-opacity: 1 !important;
2431
- background-color: rgb(247 247 250 / var(--tw-bg-opacity)) !important;
2453
+ --tw-bg-opacity: 1;
2454
+ background-color: rgb(247 247 250 / var(--tw-bg-opacity));
2432
2455
  }
2433
2456
  .peer\/switch:checked~.peer-checked\/switch\:left-1 {
2434
- left: 2px !important;
2457
+ left: 2px;
2435
2458
  }
2436
2459
  .peer\/switch:checked~.peer-checked\/switch\:translate-x-5 {
2437
- --tw-translate-x: 16px !important;
2438
- transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
2460
+ --tw-translate-x: 16px;
2461
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
2439
2462
  }
2440
2463
  .peer:checked~.peer-checked\:border-navyBlue-100 {
2441
- --tw-border-opacity: 1 !important;
2442
- border-color: rgb(48 55 94 / var(--tw-border-opacity)) !important;
2464
+ --tw-border-opacity: 1;
2465
+ border-color: rgb(48 55 94 / var(--tw-border-opacity));
2443
2466
  }
2444
2467
  .peer:checked~.peer-checked\:text-white {
2445
- --tw-text-opacity: 1 !important;
2446
- color: rgb(255 255 255 / var(--tw-text-opacity)) !important;
2468
+ --tw-text-opacity: 1;
2469
+ color: rgb(255 255 255 / var(--tw-text-opacity));
2447
2470
  }
2448
2471
  .peer:checked~.peer-checked\:text-grey-30 {
2449
- --tw-text-opacity: 1 !important;
2450
- color: rgb(180 180 187 / var(--tw-text-opacity)) !important;
2472
+ --tw-text-opacity: 1;
2473
+ color: rgb(180 180 187 / var(--tw-text-opacity));
2451
2474
  }
2452
2475
  .peer:hover~.peer-hover\:border-grey-50 {
2453
- --tw-border-opacity: 1 !important;
2454
- border-color: rgb(120 120 133 / var(--tw-border-opacity)) !important;
2476
+ --tw-border-opacity: 1;
2477
+ border-color: rgb(120 120 133 / var(--tw-border-opacity));
2455
2478
  }
2456
2479
  .peer:focus~.peer-focus\:border-info-70 {
2457
- --tw-border-opacity: 1 !important;
2458
- border-color: rgb(3 153 227 / var(--tw-border-opacity)) !important;
2480
+ --tw-border-opacity: 1;
2481
+ border-color: rgb(3 153 227 / var(--tw-border-opacity));
2459
2482
  }
2460
2483
  .peer\/switch:disabled~.peer-disabled\/switch\:bg-grey-0 {
2461
- --tw-bg-opacity: 1 !important;
2462
- background-color: rgb(247 247 250 / var(--tw-bg-opacity)) !important;
2484
+ --tw-bg-opacity: 1;
2485
+ background-color: rgb(247 247 250 / var(--tw-bg-opacity));
2463
2486
  }
2464
2487
  .children\:inline-block>* {
2465
- display: inline-block !important;
2488
+ display: inline-block;
2466
2489
  }
2467
2490
  .children\:border-grey-10>* {
2468
- --tw-border-opacity: 1 !important;
2469
- border-color: rgb(225 225 227 / var(--tw-border-opacity)) !important;
2491
+ --tw-border-opacity: 1;
2492
+ border-color: rgb(225 225 227 / var(--tw-border-opacity));
2470
2493
  }
2471
2494
  .children\:last\:border-b-0:last-child>* {
2472
- border-bottom-width: 0px !important;
2495
+ border-bottom-width: 0px;
2473
2496
  }
2474
2497
  .\[\&\>path\]\:stroke-transparent>path {
2475
- stroke: transparent !important;
2498
+ stroke: transparent;
2476
2499
  }
2477
2500
  .peer:checked~.peer-checked\:\[\&\>path\]\:stroke-white>path {
2478
- stroke: white !important;
2501
+ stroke: white;
2479
2502
  }
2480
2503
  .peer:checked~.peer-checked\:\[\&\>path\]\:stroke-grey-30>path {
2481
- stroke: #b4b4bb !important;
2504
+ stroke: #b4b4bb;
2482
2505
  }
2483
2506
  .\[\&\>\*\:not\(\:first-child\)\]\:-ml-3>*:not(:first-child) {
2484
- margin-left: -8px !important;
2507
+ margin-left: -8px;
2485
2508
  }
2486
2509
  .\[\&\>div\:first-child\]\:px-5>div:first-child {
2487
- padding-left: 16px !important;
2488
- padding-right: 16px !important;
2510
+ padding-left: 16px;
2511
+ padding-right: 16px;
2489
2512
  }