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