@aivenio/aquarium 1.10.0 → 1.12.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 (275) hide show
  1. package/dist/_variables.scss +1 -1
  2. package/dist/_variables_timescale.scss +1 -1
  3. package/dist/atoms.cjs +67 -46
  4. package/dist/atoms.mjs +63 -42
  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/{common → atoms}/LineClamp/LineClamp.js +1 -1
  19. package/dist/src/{common → atoms}/Link/Link.js +1 -1
  20. package/dist/src/{common → atoms}/Modal/Modal.d.ts +1 -1
  21. package/dist/src/atoms/Modal/Modal.js +68 -0
  22. package/dist/src/{common → atoms}/Popover/Popover.js +1 -1
  23. package/dist/src/{common → atoms}/PopoverDialog/PopoverDialog.js +2 -2
  24. package/dist/src/{common → atoms}/ProgressBar/ProgressBar.js +1 -1
  25. package/dist/src/{common → atoms}/RadioButton/RadioButton.js +1 -1
  26. package/dist/src/{common → atoms}/Section/Section.d.ts +2 -2
  27. package/dist/src/atoms/Section/Section.js +46 -0
  28. package/dist/src/{common → atoms}/Select/Select.js +2 -2
  29. package/dist/src/{common → atoms}/Stepper/Stepper.js +2 -2
  30. package/dist/src/{common → atoms}/Switch/Switch.js +1 -1
  31. package/dist/src/{common → atoms}/Table/Table.d.ts +2 -2
  32. package/dist/src/atoms/Table/Table.js +91 -0
  33. package/dist/src/{common → atoms}/Timeline/Timeline.js +1 -1
  34. package/dist/src/{common → atoms}/Typography/Typography.js +1 -1
  35. package/dist/src/{common → atoms}/index.js +1 -1
  36. package/dist/src/{components → molecules}/Alert/Alert.d.ts +4 -4
  37. package/dist/src/molecules/Alert/Alert.js +15 -0
  38. package/dist/src/molecules/Avatar/Avatar.js +10 -0
  39. package/dist/src/{components → molecules}/Badge/Badge.js +1 -1
  40. package/dist/src/{components → molecules}/Banner/Banner.d.ts +1 -1
  41. package/dist/src/molecules/Banner/Banner.js +44 -0
  42. package/dist/src/{components → molecules}/Box/Box.d.ts +2 -2
  43. package/dist/src/{components → molecules}/Box/Box.js +2 -2
  44. package/dist/src/{components → molecules}/Breadcrumbs/Breadcrumbs.js +2 -2
  45. package/dist/src/{components → molecules}/Button/Button.d.ts +12 -1
  46. package/dist/src/molecules/Button/Button.js +108 -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 +88 -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 +1 -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/{components → molecules}/Popover/PopoverWrapper.js +2 -2
  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 +124 -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 +4 -4
  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 +830 -810
  155. package/dist/styles_timescaledb.css +830 -810
  156. package/dist/system.cjs +277 -230
  157. package/dist/system.mjs +262 -217
  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/Modal/Modal.js +0 -68
  168. package/dist/src/common/Section/Section.js +0 -46
  169. package/dist/src/common/Table/Table.js +0 -91
  170. package/dist/src/components/Alert/Alert.js +0 -12
  171. package/dist/src/components/Avatar/Avatar.js +0 -10
  172. package/dist/src/components/Banner/Banner.js +0 -44
  173. package/dist/src/components/Button/Button.js +0 -105
  174. package/dist/src/components/Card/Card.js +0 -48
  175. package/dist/src/components/Card/Compact.js +0 -43
  176. package/dist/src/components/Checkbox/Checkbox.js +0 -29
  177. package/dist/src/components/CheckboxGroup/CheckboxGroup.js +0 -61
  178. package/dist/src/components/Chip/Chip.js +0 -64
  179. package/dist/src/components/Combobox/Combobox.js +0 -109
  180. package/dist/src/components/Container/Container.js +0 -18
  181. package/dist/src/components/Context/Context.js +0 -18
  182. package/dist/src/components/DataList/DataList.js +0 -24
  183. package/dist/src/components/DataTable/DataTable.js +0 -42
  184. package/dist/src/components/Dialog/Dialog.js +0 -41
  185. package/dist/src/components/Dropdown/Dropdown.js +0 -87
  186. package/dist/src/components/DropdownMenu/DropdownMenu.js +0 -148
  187. package/dist/src/components/DropdownMenu/utils.js +0 -20
  188. package/dist/src/components/EmptyState/EmptyState.js +0 -74
  189. package/dist/src/components/Flexbox/Flexbox.js +0 -19
  190. package/dist/src/components/Flexbox/FlexboxItem.js +0 -16
  191. package/dist/src/components/Grid/Grid.js +0 -31
  192. package/dist/src/components/Grid/GridItem.js +0 -20
  193. package/dist/src/components/LineClamp/LineClamp.js +0 -21
  194. package/dist/src/components/Link/Link.js +0 -4
  195. package/dist/src/components/List/List.js +0 -6
  196. package/dist/src/components/ListItem/ListItem.js +0 -10
  197. package/dist/src/components/MultiInput/MultiInput.js +0 -153
  198. package/dist/src/components/MultiSelect/MultiSelect.js +0 -149
  199. package/dist/src/components/PageHeader/PageHeader.js +0 -40
  200. package/dist/src/components/Pagination/Pagination.js +0 -52
  201. package/dist/src/components/Pagination/usePagination.js +0 -36
  202. package/dist/src/components/Popover/Popover.js +0 -79
  203. package/dist/src/components/Popover/PopoverContext.js +0 -10
  204. package/dist/src/components/PopoverDialog/PopoverDialog.js +0 -28
  205. package/dist/src/components/Portal/Portal.js +0 -3
  206. package/dist/src/components/ProgressBar/ProgressBar.js +0 -23
  207. package/dist/src/components/RadioButton/RadioButton.js +0 -29
  208. package/dist/src/components/RadioButtonGroup/RadioButtonGroup.js +0 -65
  209. package/dist/src/components/Select/Select.js +0 -144
  210. package/dist/src/components/Skeleton/Skeleton.js +0 -18
  211. package/dist/src/components/Stepper/Stepper.js +0 -25
  212. package/dist/src/components/Switch/Switch.js +0 -29
  213. package/dist/src/components/SwitchGroup/SwitchGroup.js +0 -59
  214. package/dist/src/components/Tabs/Tabs.js +0 -220
  215. package/dist/src/components/Template/Template.js +0 -23
  216. package/dist/src/components/Textarea/Textarea.js +0 -46
  217. package/dist/src/components/Timeline/Timeline.js +0 -42
  218. package/dist/src/components/Tooltip/Tooltip.js +0 -110
  219. package/dist/src/components/Typography/Typography.js +0 -89
  220. /package/dist/src/{common → atoms}/Card/Card.d.ts +0 -0
  221. /package/dist/src/{common → atoms}/Checkbox/Checkbox.d.ts +0 -0
  222. /package/dist/src/{common → atoms}/Chip/Chip.d.ts +0 -0
  223. /package/dist/src/{common → atoms}/DataList/DataList.d.ts +0 -0
  224. /package/dist/src/{common → atoms}/DropdownMenu/DropdownMenu.d.ts +0 -0
  225. /package/dist/src/{common → atoms}/LineClamp/LineClamp.d.ts +0 -0
  226. /package/dist/src/{common → atoms}/Link/Link.d.ts +0 -0
  227. /package/dist/src/{common → atoms}/Popover/Popover.d.ts +0 -0
  228. /package/dist/src/{common → atoms}/PopoverDialog/PopoverDialog.d.ts +0 -0
  229. /package/dist/src/{common → atoms}/ProgressBar/ProgressBar.d.ts +0 -0
  230. /package/dist/src/{common → atoms}/RadioButton/RadioButton.d.ts +0 -0
  231. /package/dist/src/{common → atoms}/Select/Select.d.ts +0 -0
  232. /package/dist/src/{common → atoms}/Stepper/Stepper.d.ts +0 -0
  233. /package/dist/src/{common → atoms}/Switch/Switch.d.ts +0 -0
  234. /package/dist/src/{common → atoms}/Timeline/Timeline.d.ts +0 -0
  235. /package/dist/src/{common → atoms}/Typography/Typography.d.ts +0 -0
  236. /package/dist/src/{common → atoms}/index.d.ts +0 -0
  237. /package/dist/src/{components → molecules}/Avatar/Avatar.d.ts +0 -0
  238. /package/dist/src/{components → molecules}/Badge/Badge.d.ts +0 -0
  239. /package/dist/src/{components → molecules}/Breadcrumbs/Breadcrumbs.d.ts +0 -0
  240. /package/dist/src/{components → molecules}/Card/types.d.ts +0 -0
  241. /package/dist/src/{components → molecules}/Carousel/Carousel.d.ts +0 -0
  242. /package/dist/src/{components → molecules}/ChoiceChip/ChoiceChip.d.ts +0 -0
  243. /package/dist/src/{components → molecules}/Combobox/Combobox.d.ts +0 -0
  244. /package/dist/src/{components → molecules}/Container/Container.d.ts +0 -0
  245. /package/dist/src/{components → molecules}/Context/Context.d.ts +0 -0
  246. /package/dist/src/{components → molecules}/DataList/DataList.d.ts +0 -0
  247. /package/dist/src/{components → molecules}/Divider/Divider.d.ts +0 -0
  248. /package/dist/src/{components → molecules}/DropdownMenu/utils.d.ts +0 -0
  249. /package/dist/src/{components → molecules}/Element/Element.d.ts +0 -0
  250. /package/dist/src/{components → molecules}/EmptyState/EmptyState.d.ts +0 -0
  251. /package/dist/src/{components → molecules}/Icon/Icon.d.ts +0 -0
  252. /package/dist/src/{components → molecules}/Input/Input.d.ts +0 -0
  253. /package/dist/src/{components → molecules}/List/List.d.ts +0 -0
  254. /package/dist/src/{components → molecules}/ListItem/ListItem.d.ts +0 -0
  255. /package/dist/src/{components → molecules}/MultiInput/InputChip.d.ts +0 -0
  256. /package/dist/src/{components → molecules}/MultiInput/MultiInput.d.ts +0 -0
  257. /package/dist/src/{components → molecules}/NativeSelect/NativeSelect.d.ts +0 -0
  258. /package/dist/src/{components → molecules}/Pagination/Pagination.d.ts +0 -0
  259. /package/dist/src/{components → molecules}/Pagination/usePagination.d.ts +0 -0
  260. /package/dist/src/{components → molecules}/Popover/PopoverContext.d.ts +0 -0
  261. /package/dist/src/{components → molecules}/Popover/PopoverWrapper.d.ts +0 -0
  262. /package/dist/src/{components → molecules}/Portal/Portal.d.ts +0 -0
  263. /package/dist/src/{components → molecules}/ProgressBar/ProgressBar.d.ts +0 -0
  264. /package/dist/src/{components → molecules}/Section/Section.d.ts +0 -0
  265. /package/dist/src/{components → molecules}/SegmentedControl/SegmentedControl.d.ts +0 -0
  266. /package/dist/src/{components → molecules}/Select/Select.d.ts +0 -0
  267. /package/dist/src/{components → molecules}/Skeleton/Skeleton.d.ts +0 -0
  268. /package/dist/src/{components → molecules}/Stepper/Stepper.d.ts +0 -0
  269. /package/dist/src/{components → molecules}/Tabs/Tabs.d.ts +0 -0
  270. /package/dist/src/{components → molecules}/TagLabel/TagLabel.d.ts +0 -0
  271. /package/dist/src/{components → molecules}/Tailwindify/Tailwindify.d.ts +0 -0
  272. /package/dist/src/{components → molecules}/Template/Template.d.ts +0 -0
  273. /package/dist/src/{components → molecules}/Textarea/Textarea.d.ts +0 -0
  274. /package/dist/src/{components → molecules}/Timeline/Timeline.d.ts +0 -0
  275. /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,1398 +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;
1260
1280
  }
1261
1281
  .break-words {
1262
- word-wrap: break-word !important;
1282
+ word-wrap: break-word;
1263
1283
  }
1264
1284
  .break-all {
1265
- word-break: break-all !important;
1285
+ word-break: break-all;
1266
1286
  }
1267
1287
  .rounded-sm {
1268
- border-radius: 0.125rem !important;
1288
+ border-radius: 0.125rem;
1269
1289
  }
1270
1290
  .rounded-full {
1271
- border-radius: 9999px !important;
1291
+ border-radius: 9999px;
1272
1292
  }
1273
1293
  .rounded {
1274
- border-radius: 4px !important;
1294
+ border-radius: 4px;
1275
1295
  }
1276
1296
  .rounded-\[2px\] {
1277
- border-radius: 2px !important;
1297
+ border-radius: 2px;
1278
1298
  }
1279
1299
  .border {
1280
- border-width: 1px !important;
1300
+ border-width: 1px;
1281
1301
  }
1282
1302
  .border-\[1px\] {
1283
- border-width: 1px !important;
1303
+ border-width: 1px;
1284
1304
  }
1285
1305
  .border-0 {
1286
- border-width: 0px !important;
1306
+ border-width: 0px;
1287
1307
  }
1288
1308
  .border-2 {
1289
- border-width: 2px !important;
1309
+ border-width: 2px;
1290
1310
  }
1291
1311
  .border-b-\[1px\] {
1292
- border-bottom-width: 1px !important;
1312
+ border-bottom-width: 1px;
1293
1313
  }
1294
1314
  .border-b {
1295
- border-bottom-width: 1px !important;
1315
+ border-bottom-width: 1px;
1296
1316
  }
1297
1317
  .border-b-2 {
1298
- border-bottom-width: 2px !important;
1318
+ border-bottom-width: 2px;
1299
1319
  }
1300
1320
  .border-solid {
1301
- border-style: solid !important;
1321
+ border-style: solid;
1302
1322
  }
1303
1323
  .border-dashed {
1304
- border-style: dashed !important;
1324
+ border-style: dashed;
1305
1325
  }
1306
1326
  .border-none {
1307
- border-style: none !important;
1327
+ border-style: none;
1308
1328
  }
1309
1329
  .border-error-50 {
1310
- --tw-border-opacity: 1 !important;
1311
- 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));
1312
1332
  }
1313
1333
  .border-grey-20 {
1314
- --tw-border-opacity: 1 !important;
1315
- 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));
1316
1336
  }
1317
1337
  .border-info-70 {
1318
- --tw-border-opacity: 1 !important;
1319
- 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));
1320
1340
  }
1321
1341
  .border-grey-5 {
1322
- --tw-border-opacity: 1 !important;
1323
- 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));
1324
1344
  }
1325
1345
  .border-transparent {
1326
- border-color: transparent !important;
1346
+ border-color: transparent;
1327
1347
  }
1328
1348
  .border-grey-10 {
1329
- --tw-border-opacity: 1 !important;
1330
- 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));
1331
1351
  }
1332
1352
  .border-navyBlue-100 {
1333
- --tw-border-opacity: 1 !important;
1334
- 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));
1335
1355
  }
1336
1356
  .border-grey-50 {
1337
- --tw-border-opacity: 1 !important;
1338
- 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));
1339
1359
  }
1340
1360
  .border-grey-90 {
1341
- --tw-border-opacity: 1 !important;
1342
- 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));
1343
1363
  }
1344
1364
  .border-success-70 {
1345
- --tw-border-opacity: 1 !important;
1346
- 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));
1347
1367
  }
1348
1368
  .border-grey-40 {
1349
- --tw-border-opacity: 1 !important;
1350
- 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));
1351
1371
  }
1352
1372
  .border-current {
1353
- border-color: currentColor !important;
1373
+ border-color: currentColor;
1354
1374
  }
1355
1375
  .border-grey-100 {
1356
- --tw-border-opacity: 1 !important;
1357
- 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));
1358
1378
  }
1359
1379
  .border-primary-80 {
1360
- --tw-border-opacity: 1 !important;
1361
- 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));
1362
1382
  }
1363
1383
  .bg-grey-10 {
1364
- --tw-bg-opacity: 1 !important;
1365
- 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));
1366
1386
  }
1367
1387
  .bg-error-5 {
1368
- --tw-bg-opacity: 1 !important;
1369
- 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));
1370
1390
  }
1371
1391
  .bg-info-5 {
1372
- --tw-bg-opacity: 1 !important;
1373
- 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));
1374
1394
  }
1375
1395
  .bg-success-5 {
1376
- --tw-bg-opacity: 1 !important;
1377
- 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));
1378
1398
  }
1379
1399
  .bg-warning-5 {
1380
- --tw-bg-opacity: 1 !important;
1381
- 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));
1382
1402
  }
1383
1403
  .bg-grey-0 {
1384
- --tw-bg-opacity: 1 !important;
1385
- 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));
1386
1406
  }
1387
1407
  .bg-white {
1388
- --tw-bg-opacity: 1 !important;
1389
- 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));
1390
1410
  }
1391
1411
  .bg-navyBlue-100 {
1392
- --tw-bg-opacity: 1 !important;
1393
- 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));
1394
1414
  }
1395
1415
  .bg-grey-5 {
1396
- --tw-bg-opacity: 1 !important;
1397
- 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));
1398
1418
  }
1399
1419
  .bg-info-50 {
1400
- --tw-bg-opacity: 1 !important;
1401
- 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));
1402
1422
  }
1403
1423
  .bg-warning-70 {
1404
- --tw-bg-opacity: 1 !important;
1405
- 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));
1406
1426
  }
1407
1427
  .bg-success-70 {
1408
- --tw-bg-opacity: 1 !important;
1409
- 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));
1410
1430
  }
1411
1431
  .bg-error-70 {
1412
- --tw-bg-opacity: 1 !important;
1413
- 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));
1414
1434
  }
1415
1435
  .bg-grey-20 {
1416
- --tw-bg-opacity: 1 !important;
1417
- 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));
1418
1438
  }
1419
1439
  .bg-grey-90 {
1420
- --tw-bg-opacity: 1 !important;
1421
- 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));
1422
1442
  }
1423
1443
  .bg-grey-30 {
1424
- --tw-bg-opacity: 1 !important;
1425
- 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));
1426
1446
  }
1427
1447
  .bg-current {
1428
- background-color: currentColor !important;
1448
+ background-color: currentColor;
1429
1449
  }
1430
1450
  .bg-primary-80 {
1431
- --tw-bg-opacity: 1 !important;
1432
- 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));
1433
1453
  }
1434
1454
  .bg-transparent {
1435
- background-color: transparent !important;
1455
+ background-color: transparent;
1436
1456
  }
1437
1457
  .bg-secondary-5 {
1438
- --tw-bg-opacity: 1 !important;
1439
- 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));
1440
1460
  }
1441
1461
  .bg-error-0 {
1442
- --tw-bg-opacity: 1 !important;
1443
- 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));
1444
1464
  }
1445
1465
  .bg-primary-70 {
1446
- --tw-bg-opacity: 1 !important;
1447
- 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));
1448
1468
  }
1449
1469
  .bg-opacity-40 {
1450
- --tw-bg-opacity: 0.4 !important;
1470
+ --tw-bg-opacity: 0.4;
1451
1471
  }
1452
1472
  .bg-gradient-to-r {
1453
- background-image: linear-gradient(to right, var(--tw-gradient-stops)) !important;
1473
+ background-image: linear-gradient(to right, var(--tw-gradient-stops));
1454
1474
  }
1455
1475
  .bg-gradient-to-l {
1456
- background-image: linear-gradient(to left, var(--tw-gradient-stops)) !important;
1476
+ background-image: linear-gradient(to left, var(--tw-gradient-stops));
1457
1477
  }
1458
1478
  .from-white {
1459
- --tw-gradient-from: white !important;
1460
- --tw-gradient-to: rgba(255, 255, 255, 0) !important;
1461
- --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);
1462
1482
  }
1463
1483
  .via-white {
1464
- --tw-gradient-to: rgba(255, 255, 255, 0) !important;
1465
- --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);
1466
1486
  }
1467
1487
  .bg-cover {
1468
- background-size: cover !important;
1488
+ background-size: cover;
1469
1489
  }
1470
1490
  .stroke-grey-30 {
1471
- stroke: #b4b4bb !important;
1491
+ stroke: #b4b4bb;
1472
1492
  }
1473
1493
  .object-cover {
1474
- -o-object-fit: cover !important;
1475
- object-fit: cover !important;
1494
+ -o-object-fit: cover;
1495
+ object-fit: cover;
1476
1496
  }
1477
1497
  .p-4 {
1478
- padding: 12px !important;
1498
+ padding: 12px;
1479
1499
  }
1480
1500
  .p-5 {
1481
- padding: 16px !important;
1501
+ padding: 16px;
1482
1502
  }
1483
1503
  .p-6 {
1484
- padding: 24px !important;
1504
+ padding: 24px;
1485
1505
  }
1486
1506
  .p-\[2px\] {
1487
- padding: 2px !important;
1507
+ padding: 2px;
1488
1508
  }
1489
1509
  .p-3 {
1490
- padding: 8px !important;
1510
+ padding: 8px;
1491
1511
  }
1492
1512
  .p-\[3px\] {
1493
- padding: 3px !important;
1513
+ padding: 3px;
1494
1514
  }
1495
1515
  .p-2 {
1496
- padding: 4px !important;
1516
+ padding: 4px;
1497
1517
  }
1498
1518
  .px-3 {
1499
- padding-left: 8px !important;
1500
- padding-right: 8px !important;
1519
+ padding-left: 8px;
1520
+ padding-right: 8px;
1501
1521
  }
1502
1522
  .py-3 {
1503
- padding-top: 8px !important;
1504
- padding-bottom: 8px !important;
1523
+ padding-top: 8px;
1524
+ padding-bottom: 8px;
1505
1525
  }
1506
1526
  .py-2 {
1507
- padding-top: 4px !important;
1508
- padding-bottom: 4px !important;
1527
+ padding-top: 4px;
1528
+ padding-bottom: 4px;
1509
1529
  }
1510
1530
  .py-1 {
1511
- padding-top: 2px !important;
1512
- padding-bottom: 2px !important;
1531
+ padding-top: 2px;
1532
+ padding-bottom: 2px;
1513
1533
  }
1514
1534
  .px-2 {
1515
- padding-left: 4px !important;
1516
- padding-right: 4px !important;
1535
+ padding-left: 4px;
1536
+ padding-right: 4px;
1517
1537
  }
1518
1538
  .py-7 {
1519
- padding-top: 32px !important;
1520
- padding-bottom: 32px !important;
1539
+ padding-top: 32px;
1540
+ padding-bottom: 32px;
1521
1541
  }
1522
1542
  .px-7 {
1523
- padding-left: 32px !important;
1524
- padding-right: 32px !important;
1543
+ padding-left: 32px;
1544
+ padding-right: 32px;
1525
1545
  }
1526
1546
  .py-6 {
1527
- padding-top: 24px !important;
1528
- padding-bottom: 24px !important;
1547
+ padding-top: 24px;
1548
+ padding-bottom: 24px;
1529
1549
  }
1530
1550
  .px-5 {
1531
- padding-left: 16px !important;
1532
- padding-right: 16px !important;
1551
+ padding-left: 16px;
1552
+ padding-right: 16px;
1533
1553
  }
1534
1554
  .px-6 {
1535
- padding-left: 24px !important;
1536
- padding-right: 24px !important;
1555
+ padding-left: 24px;
1556
+ padding-right: 24px;
1537
1557
  }
1538
1558
  .py-5 {
1539
- padding-top: 16px !important;
1540
- padding-bottom: 16px !important;
1559
+ padding-top: 16px;
1560
+ padding-bottom: 16px;
1541
1561
  }
1542
1562
  .py-\[6px\] {
1543
- padding-top: 6px !important;
1544
- padding-bottom: 6px !important;
1563
+ padding-top: 6px;
1564
+ padding-bottom: 6px;
1545
1565
  }
1546
1566
  .px-\[1px\] {
1547
- padding-left: 1px !important;
1548
- padding-right: 1px !important;
1567
+ padding-left: 1px;
1568
+ padding-right: 1px;
1549
1569
  }
1550
1570
  .px-\[14px\] {
1551
- padding-left: 14px !important;
1552
- padding-right: 14px !important;
1571
+ padding-left: 14px;
1572
+ padding-right: 14px;
1553
1573
  }
1554
1574
  .px-\[20px\] {
1555
- padding-left: 20px !important;
1556
- padding-right: 20px !important;
1575
+ padding-left: 20px;
1576
+ padding-right: 20px;
1557
1577
  }
1558
1578
  .px-4 {
1559
- padding-left: 12px !important;
1560
- padding-right: 12px !important;
1579
+ padding-left: 12px;
1580
+ padding-right: 12px;
1561
1581
  }
1562
1582
  .py-\[14px\] {
1563
- padding-top: 14px !important;
1564
- padding-bottom: 14px !important;
1583
+ padding-top: 14px;
1584
+ padding-bottom: 14px;
1565
1585
  }
1566
1586
  .px-1 {
1567
- padding-left: 2px !important;
1568
- padding-right: 2px !important;
1587
+ padding-left: 2px;
1588
+ padding-right: 2px;
1569
1589
  }
1570
1590
  .px-\[4px\] {
1571
- padding-left: 4px !important;
1572
- padding-right: 4px !important;
1591
+ padding-left: 4px;
1592
+ padding-right: 4px;
1573
1593
  }
1574
1594
  .py-4 {
1575
- padding-top: 12px !important;
1576
- padding-bottom: 12px !important;
1595
+ padding-top: 12px;
1596
+ padding-bottom: 12px;
1577
1597
  }
1578
1598
  .px-0 {
1579
- padding-left: 0 !important;
1580
- padding-right: 0 !important;
1599
+ padding-left: 0;
1600
+ padding-right: 0;
1581
1601
  }
1582
1602
  .pt-3 {
1583
- padding-top: 8px !important;
1603
+ padding-top: 8px;
1584
1604
  }
1585
1605
  .pb-6 {
1586
- padding-bottom: 24px !important;
1606
+ padding-bottom: 24px;
1587
1607
  }
1588
1608
  .pl-7 {
1589
- padding-left: 32px !important;
1609
+ padding-left: 32px;
1590
1610
  }
1591
1611
  .pb-3 {
1592
- padding-bottom: 8px !important;
1612
+ padding-bottom: 8px;
1593
1613
  }
1594
1614
  .pr-4 {
1595
- padding-right: 12px !important;
1615
+ padding-right: 12px;
1596
1616
  }
1597
1617
  .pl-4 {
1598
- padding-left: 12px !important;
1618
+ padding-left: 12px;
1599
1619
  }
1600
1620
  .text-left {
1601
- text-align: left !important;
1621
+ text-align: left;
1602
1622
  }
1603
1623
  .text-center {
1604
- text-align: center !important;
1624
+ text-align: center;
1605
1625
  }
1606
1626
  .text-right {
1607
- text-align: right !important;
1627
+ text-align: right;
1608
1628
  }
1609
1629
  .align-middle {
1610
- vertical-align: middle !important;
1630
+ vertical-align: middle;
1611
1631
  }
1612
1632
  .text-\[9px\] {
1613
- font-size: 9px !important;
1633
+ font-size: 9px;
1614
1634
  }
1615
1635
  .text-\[8px\] {
1616
- font-size: 8px !important;
1636
+ font-size: 8px;
1617
1637
  }
1618
1638
  .font-normal {
1619
- font-weight: 400 !important;
1639
+ font-weight: 400;
1620
1640
  }
1621
1641
  .uppercase {
1622
- text-transform: uppercase !important;
1642
+ text-transform: uppercase;
1623
1643
  }
1624
1644
  .capitalize {
1625
- text-transform: capitalize !important;
1645
+ text-transform: capitalize;
1626
1646
  }
1627
1647
  .italic {
1628
- font-style: italic !important;
1648
+ font-style: italic;
1629
1649
  }
1630
1650
  .leading-none {
1631
- line-height: 1 !important;
1651
+ line-height: 1;
1632
1652
  }
1633
1653
  .leading-\[18px\] {
1634
- line-height: 18px !important;
1654
+ line-height: 18px;
1635
1655
  }
1636
1656
  .leading-\[0px\] {
1637
- line-height: 0px !important;
1657
+ line-height: 0px;
1638
1658
  }
1639
1659
  .text-error-100 {
1640
- --tw-text-opacity: 1 !important;
1641
- 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));
1642
1662
  }
1643
1663
  .text-error-90 {
1644
- --tw-text-opacity: 1 !important;
1645
- 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));
1646
1666
  }
1647
1667
  .text-error-80 {
1648
- --tw-text-opacity: 1 !important;
1649
- 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));
1650
1670
  }
1651
1671
  .text-error-70 {
1652
- --tw-text-opacity: 1 !important;
1653
- 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));
1654
1674
  }
1655
1675
  .text-error-60 {
1656
- --tw-text-opacity: 1 !important;
1657
- 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));
1658
1678
  }
1659
1679
  .text-error-50 {
1660
- --tw-text-opacity: 1 !important;
1661
- 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));
1662
1682
  }
1663
1683
  .text-error-40 {
1664
- --tw-text-opacity: 1 !important;
1665
- 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));
1666
1686
  }
1667
1687
  .text-error-30 {
1668
- --tw-text-opacity: 1 !important;
1669
- 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));
1670
1690
  }
1671
1691
  .text-error-20 {
1672
- --tw-text-opacity: 1 !important;
1673
- 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));
1674
1694
  }
1675
1695
  .text-error-10 {
1676
- --tw-text-opacity: 1 !important;
1677
- 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));
1678
1698
  }
1679
1699
  .text-error-5 {
1680
- --tw-text-opacity: 1 !important;
1681
- 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));
1682
1702
  }
1683
1703
  .text-error-0 {
1684
- --tw-text-opacity: 1 !important;
1685
- 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));
1686
1706
  }
1687
1707
  .text-warning-100 {
1688
- --tw-text-opacity: 1 !important;
1689
- 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));
1690
1710
  }
1691
1711
  .text-warning-90 {
1692
- --tw-text-opacity: 1 !important;
1693
- 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));
1694
1714
  }
1695
1715
  .text-warning-80 {
1696
- --tw-text-opacity: 1 !important;
1697
- 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));
1698
1718
  }
1699
1719
  .text-warning-70 {
1700
- --tw-text-opacity: 1 !important;
1701
- 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));
1702
1722
  }
1703
1723
  .text-warning-60 {
1704
- --tw-text-opacity: 1 !important;
1705
- 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));
1706
1726
  }
1707
1727
  .text-warning-50 {
1708
- --tw-text-opacity: 1 !important;
1709
- 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));
1710
1730
  }
1711
1731
  .text-warning-40 {
1712
- --tw-text-opacity: 1 !important;
1713
- 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));
1714
1734
  }
1715
1735
  .text-warning-30 {
1716
- --tw-text-opacity: 1 !important;
1717
- 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));
1718
1738
  }
1719
1739
  .text-warning-20 {
1720
- --tw-text-opacity: 1 !important;
1721
- 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));
1722
1742
  }
1723
1743
  .text-warning-10 {
1724
- --tw-text-opacity: 1 !important;
1725
- 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));
1726
1746
  }
1727
1747
  .text-warning-5 {
1728
- --tw-text-opacity: 1 !important;
1729
- 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));
1730
1750
  }
1731
1751
  .text-warning-0 {
1732
- --tw-text-opacity: 1 !important;
1733
- 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));
1734
1754
  }
1735
1755
  .text-success-100 {
1736
- --tw-text-opacity: 1 !important;
1737
- 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));
1738
1758
  }
1739
1759
  .text-success-90 {
1740
- --tw-text-opacity: 1 !important;
1741
- 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));
1742
1762
  }
1743
1763
  .text-success-80 {
1744
- --tw-text-opacity: 1 !important;
1745
- 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));
1746
1766
  }
1747
1767
  .text-success-70 {
1748
- --tw-text-opacity: 1 !important;
1749
- 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));
1750
1770
  }
1751
1771
  .text-success-60 {
1752
- --tw-text-opacity: 1 !important;
1753
- 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));
1754
1774
  }
1755
1775
  .text-success-50 {
1756
- --tw-text-opacity: 1 !important;
1757
- 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));
1758
1778
  }
1759
1779
  .text-success-40 {
1760
- --tw-text-opacity: 1 !important;
1761
- 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));
1762
1782
  }
1763
1783
  .text-success-30 {
1764
- --tw-text-opacity: 1 !important;
1765
- 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));
1766
1786
  }
1767
1787
  .text-success-20 {
1768
- --tw-text-opacity: 1 !important;
1769
- 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));
1770
1790
  }
1771
1791
  .text-success-10 {
1772
- --tw-text-opacity: 1 !important;
1773
- 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));
1774
1794
  }
1775
1795
  .text-success-5 {
1776
- --tw-text-opacity: 1 !important;
1777
- 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));
1778
1798
  }
1779
1799
  .text-success-0 {
1780
- --tw-text-opacity: 1 !important;
1781
- 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));
1782
1802
  }
1783
1803
  .text-info-100 {
1784
- --tw-text-opacity: 1 !important;
1785
- 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));
1786
1806
  }
1787
1807
  .text-info-90 {
1788
- --tw-text-opacity: 1 !important;
1789
- 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));
1790
1810
  }
1791
1811
  .text-info-80 {
1792
- --tw-text-opacity: 1 !important;
1793
- 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));
1794
1814
  }
1795
1815
  .text-info-70 {
1796
- --tw-text-opacity: 1 !important;
1797
- 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));
1798
1818
  }
1799
1819
  .text-info-60 {
1800
- --tw-text-opacity: 1 !important;
1801
- 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));
1802
1822
  }
1803
1823
  .text-info-50 {
1804
- --tw-text-opacity: 1 !important;
1805
- 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));
1806
1826
  }
1807
1827
  .text-info-40 {
1808
- --tw-text-opacity: 1 !important;
1809
- 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));
1810
1830
  }
1811
1831
  .text-info-30 {
1812
- --tw-text-opacity: 1 !important;
1813
- 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));
1814
1834
  }
1815
1835
  .text-info-20 {
1816
- --tw-text-opacity: 1 !important;
1817
- 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));
1818
1838
  }
1819
1839
  .text-info-10 {
1820
- --tw-text-opacity: 1 !important;
1821
- 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));
1822
1842
  }
1823
1843
  .text-info-5 {
1824
- --tw-text-opacity: 1 !important;
1825
- 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));
1826
1846
  }
1827
1847
  .text-info-0 {
1828
- --tw-text-opacity: 1 !important;
1829
- 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));
1830
1850
  }
1831
1851
  .text-grey-100 {
1832
- --tw-text-opacity: 1 !important;
1833
- 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));
1834
1854
  }
1835
1855
  .text-grey-90 {
1836
- --tw-text-opacity: 1 !important;
1837
- 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));
1838
1858
  }
1839
1859
  .text-grey-80 {
1840
- --tw-text-opacity: 1 !important;
1841
- 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));
1842
1862
  }
1843
1863
  .text-grey-70 {
1844
- --tw-text-opacity: 1 !important;
1845
- 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));
1846
1866
  }
1847
1867
  .text-grey-60 {
1848
- --tw-text-opacity: 1 !important;
1849
- 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));
1850
1870
  }
1851
1871
  .text-grey-50 {
1852
- --tw-text-opacity: 1 !important;
1853
- 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));
1854
1874
  }
1855
1875
  .text-grey-40 {
1856
- --tw-text-opacity: 1 !important;
1857
- 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));
1858
1878
  }
1859
1879
  .text-grey-30 {
1860
- --tw-text-opacity: 1 !important;
1861
- 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));
1862
1882
  }
1863
1883
  .text-grey-20 {
1864
- --tw-text-opacity: 1 !important;
1865
- 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));
1866
1886
  }
1867
1887
  .text-grey-10 {
1868
- --tw-text-opacity: 1 !important;
1869
- 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));
1870
1890
  }
1871
1891
  .text-grey-5 {
1872
- --tw-text-opacity: 1 !important;
1873
- 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));
1874
1894
  }
1875
1895
  .text-grey-0 {
1876
- --tw-text-opacity: 1 !important;
1877
- 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));
1878
1898
  }
1879
1899
  .text-secondary-100 {
1880
- --tw-text-opacity: 1 !important;
1881
- 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));
1882
1902
  }
1883
1903
  .text-secondary-90 {
1884
- --tw-text-opacity: 1 !important;
1885
- 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));
1886
1906
  }
1887
1907
  .text-secondary-80 {
1888
- --tw-text-opacity: 1 !important;
1889
- 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));
1890
1910
  }
1891
1911
  .text-secondary-70 {
1892
- --tw-text-opacity: 1 !important;
1893
- 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));
1894
1914
  }
1895
1915
  .text-secondary-60 {
1896
- --tw-text-opacity: 1 !important;
1897
- 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));
1898
1918
  }
1899
1919
  .text-secondary-50 {
1900
- --tw-text-opacity: 1 !important;
1901
- 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));
1902
1922
  }
1903
1923
  .text-secondary-40 {
1904
- --tw-text-opacity: 1 !important;
1905
- 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));
1906
1926
  }
1907
1927
  .text-secondary-30 {
1908
- --tw-text-opacity: 1 !important;
1909
- 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));
1910
1930
  }
1911
1931
  .text-secondary-20 {
1912
- --tw-text-opacity: 1 !important;
1913
- 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));
1914
1934
  }
1915
1935
  .text-secondary-10 {
1916
- --tw-text-opacity: 1 !important;
1917
- 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));
1918
1938
  }
1919
1939
  .text-secondary-5 {
1920
- --tw-text-opacity: 1 !important;
1921
- 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));
1922
1942
  }
1923
1943
  .text-secondary-0 {
1924
- --tw-text-opacity: 1 !important;
1925
- 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));
1926
1946
  }
1927
1947
  .text-primary-100 {
1928
- --tw-text-opacity: 1 !important;
1929
- 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));
1930
1950
  }
1931
1951
  .text-primary-90 {
1932
- --tw-text-opacity: 1 !important;
1933
- 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));
1934
1954
  }
1935
1955
  .text-primary-80 {
1936
- --tw-text-opacity: 1 !important;
1937
- 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));
1938
1958
  }
1939
1959
  .text-primary-70 {
1940
- --tw-text-opacity: 1 !important;
1941
- 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));
1942
1962
  }
1943
1963
  .text-primary-60 {
1944
- --tw-text-opacity: 1 !important;
1945
- 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));
1946
1966
  }
1947
1967
  .text-primary-50 {
1948
- --tw-text-opacity: 1 !important;
1949
- 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));
1950
1970
  }
1951
1971
  .text-primary-40 {
1952
- --tw-text-opacity: 1 !important;
1953
- 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));
1954
1974
  }
1955
1975
  .text-primary-30 {
1956
- --tw-text-opacity: 1 !important;
1957
- 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));
1958
1978
  }
1959
1979
  .text-primary-20 {
1960
- --tw-text-opacity: 1 !important;
1961
- 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));
1962
1982
  }
1963
1983
  .text-primary-10 {
1964
- --tw-text-opacity: 1 !important;
1965
- 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));
1966
1986
  }
1967
1987
  .text-primary-5 {
1968
- --tw-text-opacity: 1 !important;
1969
- 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));
1970
1990
  }
1971
1991
  .text-primary-0 {
1972
- --tw-text-opacity: 1 !important;
1973
- 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));
1974
1994
  }
1975
1995
  .text-transparent {
1976
- color: transparent !important;
1996
+ color: transparent;
1977
1997
  }
1978
1998
  .text-white {
1979
- --tw-text-opacity: 1 !important;
1980
- 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));
1981
2001
  }
1982
2002
  .underline {
1983
- -webkit-text-decoration-line: underline !important;
1984
- text-decoration-line: underline !important;
2003
+ -webkit-text-decoration-line: underline;
2004
+ text-decoration-line: underline;
1985
2005
  }
1986
2006
  .no-underline {
1987
- -webkit-text-decoration-line: none !important;
1988
- text-decoration-line: none !important;
2007
+ -webkit-text-decoration-line: none;
2008
+ text-decoration-line: none;
1989
2009
  }
1990
2010
  .underline-offset-2 {
1991
- text-underline-offset: 2px !important;
2011
+ text-underline-offset: 2px;
1992
2012
  }
1993
2013
  .opacity-70 {
1994
- opacity: 0.7 !important;
2014
+ opacity: 0.7;
1995
2015
  }
1996
2016
  .opacity-40 {
1997
- opacity: 0.4 !important;
2017
+ opacity: 0.4;
1998
2018
  }
1999
2019
  .shadow-16dp {
2000
- --tw-shadow: 0px 16px 32px rgba(90, 91, 106, 0.12), 0px 8px 16px rgba(58, 58, 68, 0.12) !important;
2001
- --tw-shadow-colored: 0px 16px 32px var(--tw-shadow-color), 0px 8px 16px var(--tw-shadow-color) !important;
2002
- box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow) !important;
2003
- 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);
2004
2024
  }
2005
2025
  .shadow-4dp {
2006
- --tw-shadow: 0px 4px 8px rgba(90, 91, 106, 0.20), 0px 2px 4px rgba(58, 58, 68, 0.20) !important;
2007
- --tw-shadow-colored: 0px 4px 8px var(--tw-shadow-color), 0px 2px 4px var(--tw-shadow-color) !important;
2008
- box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow) !important;
2009
- 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);
2010
2030
  }
2011
2031
  .shadow-2dp {
2012
- --tw-shadow: 0px 2px 4px rgba(90, 91, 106, 0.24), 0px 1px 2px rgba(58, 58, 68, 0.24) !important;
2013
- --tw-shadow-colored: 0px 2px 4px var(--tw-shadow-color), 0px 1px 2px var(--tw-shadow-color) !important;
2014
- box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow) !important;
2015
- 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);
2016
2036
  }
2017
2037
  .outline-none {
2018
- outline: 2px solid transparent !important;
2019
- outline-offset: 2px !important;
2038
+ outline: 2px solid transparent;
2039
+ outline-offset: 2px;
2020
2040
  }
2021
2041
  .ring-1 {
2022
- --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
2023
- --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
2024
- box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0) !important;
2025
- 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));
2026
2046
  }
2027
2047
  .ring-2 {
2028
- --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
2029
- --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
2030
- box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0) !important;
2031
- 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));
2032
2052
  }
2033
2053
  .ring-inset {
2034
- --tw-ring-inset: inset !important;
2054
+ --tw-ring-inset: inset;
2035
2055
  }
2036
2056
  .ring-grey-30 {
2037
- --tw-ring-opacity: 1 !important;
2038
- --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));
2039
2059
  }
2040
2060
  .ring-offset-0 {
2041
- --tw-ring-offset-width: 0px !important;
2061
+ --tw-ring-offset-width: 0px;
2042
2062
  }
2043
2063
  .blur {
2044
- --tw-blur: blur(8px) !important;
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;
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);
2046
2066
  }
2047
2067
  .filter {
2048
- 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);
2049
2069
  }
2050
2070
  .transition {
2051
- transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter !important;
2052
- transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter !important;
2053
- 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;
2054
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
2055
- 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;
2056
2076
  }
2057
2077
  .transition-all {
2058
- transition-property: all !important;
2059
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
2060
- transition-duration: 150ms !important;
2078
+ transition-property: all;
2079
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
2080
+ transition-duration: 150ms;
2061
2081
  }
2062
2082
  .delay-150 {
2063
- transition-delay: 150ms !important;
2083
+ transition-delay: 150ms;
2064
2084
  }
2065
2085
  .duration-300 {
2066
- transition-duration: 300ms !important;
2086
+ transition-duration: 300ms;
2067
2087
  }
2068
2088
  .ease-in-out {
2069
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
2089
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
2070
2090
  }
2071
2091
  .line-clamp-1 {
2072
- overflow: hidden !important;
2073
- display: -webkit-box !important;
2074
- -webkit-box-orient: vertical !important;
2075
- -webkit-line-clamp: 1 !important;
2092
+ overflow: hidden;
2093
+ display: -webkit-box;
2094
+ -webkit-box-orient: vertical;
2095
+ -webkit-line-clamp: 1;
2076
2096
  }
2077
2097
  .line-clamp-2 {
2078
- overflow: hidden !important;
2079
- display: -webkit-box !important;
2080
- -webkit-box-orient: vertical !important;
2081
- -webkit-line-clamp: 2 !important;
2098
+ overflow: hidden;
2099
+ display: -webkit-box;
2100
+ -webkit-box-orient: vertical;
2101
+ -webkit-line-clamp: 2;
2082
2102
  }
2083
2103
  .line-clamp-3 {
2084
- overflow: hidden !important;
2085
- display: -webkit-box !important;
2086
- -webkit-box-orient: vertical !important;
2087
- -webkit-line-clamp: 3 !important;
2104
+ overflow: hidden;
2105
+ display: -webkit-box;
2106
+ -webkit-box-orient: vertical;
2107
+ -webkit-line-clamp: 3;
2088
2108
  }
2089
2109
  .line-clamp-4 {
2090
- overflow: hidden !important;
2091
- display: -webkit-box !important;
2092
- -webkit-box-orient: vertical !important;
2093
- -webkit-line-clamp: 4 !important;
2110
+ overflow: hidden;
2111
+ display: -webkit-box;
2112
+ -webkit-box-orient: vertical;
2113
+ -webkit-line-clamp: 4;
2094
2114
  }
2095
2115
  .line-clamp-5 {
2096
- overflow: hidden !important;
2097
- display: -webkit-box !important;
2098
- -webkit-box-orient: vertical !important;
2099
- -webkit-line-clamp: 5 !important;
2116
+ overflow: hidden;
2117
+ display: -webkit-box;
2118
+ -webkit-box-orient: vertical;
2119
+ -webkit-line-clamp: 5;
2100
2120
  }
2101
2121
  .line-clamp-6 {
2102
- overflow: hidden !important;
2103
- display: -webkit-box !important;
2104
- -webkit-box-orient: vertical !important;
2105
- -webkit-line-clamp: 6 !important;
2122
+ overflow: hidden;
2123
+ display: -webkit-box;
2124
+ -webkit-box-orient: vertical;
2125
+ -webkit-line-clamp: 6;
2106
2126
  }
2107
2127
  .scrollbar-hide {
2108
- -ms-overflow-style: none !important;
2109
- scrollbar-width: none !important;
2128
+ -ms-overflow-style: none;
2129
+ scrollbar-width: none;
2110
2130
  }
2111
2131
  .scrollbar-hide::-webkit-scrollbar {
2112
- display: none !important;
2132
+ display: none;
2113
2133
  }
2114
2134
  .placeholder\:text-grey-40::-moz-placeholder {
2115
- --tw-text-opacity: 1 !important;
2116
- 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));
2117
2137
  }
2118
2138
  .placeholder\:text-grey-40::placeholder {
2119
- --tw-text-opacity: 1 !important;
2120
- 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));
2121
2141
  }
2122
2142
  .before\:content-\[\'_\'\]::before {
2123
- --tw-content: ' ' !important;
2124
- content: var(--tw-content) !important;
2143
+ --tw-content: ' ';
2144
+ content: var(--tw-content);
2125
2145
  }
2126
2146
  .first\:mt-0:first-child {
2127
- margin-top: 0 !important;
2147
+ margin-top: 0;
2128
2148
  }
2129
2149
  .visited\:text-primary-80:visited {
2130
- color: rgb(7, 136, 209 ) !important;
2150
+ color: rgb(7, 136, 209 );
2131
2151
  }
2132
2152
  .checked\:border-navyBlue-100:checked {
2133
- --tw-border-opacity: 1 !important;
2134
- 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));
2135
2155
  }
2136
2156
  .checked\:bg-navyBlue-100:checked {
2137
- --tw-bg-opacity: 1 !important;
2138
- 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));
2139
2159
  }
2140
2160
  .checked\:bg-opacity-40:checked {
2141
- --tw-bg-opacity: 0.4 !important;
2161
+ --tw-bg-opacity: 0.4;
2142
2162
  }
2143
2163
  .checked\:opacity-40:checked {
2144
- opacity: 0.4 !important;
2164
+ opacity: 0.4;
2145
2165
  }
2146
2166
  .checked\:shadow-whiteInset:checked {
2147
- --tw-shadow: inset 0 0 0 3px rgba(255,255,255,1) !important;
2148
- --tw-shadow-colored: inset 0 0 0 3px var(--tw-shadow-color) !important;
2149
- box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow) !important;
2150
- 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);
2151
2171
  }
2152
2172
  .hover\:cursor-pointer:hover {
2153
- cursor: pointer !important;
2173
+ cursor: pointer;
2154
2174
  }
2155
2175
  .hover\:border-grey-50:hover {
2156
- --tw-border-opacity: 1 !important;
2157
- 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));
2158
2178
  }
2159
2179
  .hover\:border-grey-20:hover {
2160
- --tw-border-opacity: 1 !important;
2161
- 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));
2162
2182
  }
2163
2183
  .hover\:bg-grey-0:hover {
2164
- --tw-bg-opacity: 1 !important;
2165
- 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));
2166
2186
  }
2167
2187
  .hover\:bg-grey-30:hover {
2168
- --tw-bg-opacity: 1 !important;
2169
- 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));
2170
2190
  }
2171
2191
  .hover\:bg-primary-70:hover {
2172
- --tw-bg-opacity: 1 !important;
2173
- 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));
2174
2194
  }
2175
2195
  .hover\:bg-grey-5:hover {
2176
- --tw-bg-opacity: 1 !important;
2177
- 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));
2178
2198
  }
2179
2199
  .hover\:text-primary-70:hover {
2180
- --tw-text-opacity: 1 !important;
2181
- 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));
2182
2202
  }
2183
2203
  .hover\:text-grey-80:hover {
2184
- --tw-text-opacity: 1 !important;
2185
- 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));
2186
2206
  }
2187
2207
  .hover\:text-grey-90:hover {
2188
- --tw-text-opacity: 1 !important;
2189
- 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));
2190
2210
  }
2191
2211
  .hover\:text-primary-80:hover {
2192
- --tw-text-opacity: 1 !important;
2193
- 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));
2194
2214
  }
2195
2215
  .hover\:no-underline:hover {
2196
- -webkit-text-decoration-line: none !important;
2197
- text-decoration-line: none !important;
2216
+ -webkit-text-decoration-line: none;
2217
+ text-decoration-line: none;
2198
2218
  }
2199
2219
  .hover\:ring-grey-50:hover {
2200
- --tw-ring-opacity: 1 !important;
2201
- --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));
2202
2222
  }
2203
2223
  .hover\:checked\:bg-navyBlue-100:checked:hover {
2204
- --tw-bg-opacity: 1 !important;
2205
- 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));
2206
2226
  }
2207
2227
  .focus\:border:focus {
2208
- border-width: 1px !important;
2228
+ border-width: 1px;
2209
2229
  }
2210
2230
  .focus\:border-info-70:focus {
2211
- --tw-border-opacity: 1 !important;
2212
- 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));
2213
2233
  }
2214
2234
  .focus\:border-transparent:focus {
2215
- border-color: transparent !important;
2235
+ border-color: transparent;
2216
2236
  }
2217
2237
  .focus\:text-primary-80:focus {
2218
- --tw-text-opacity: 1 !important;
2219
- 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));
2220
2240
  }
2221
2241
  .focus\:outline-none:focus {
2222
- outline: 2px solid transparent !important;
2223
- outline-offset: 2px !important;
2242
+ outline: 2px solid transparent;
2243
+ outline-offset: 2px;
2224
2244
  }
2225
2245
  .focus\:ring-0:focus {
2226
- --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
2227
- --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
2228
- box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0) !important;
2229
- 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));
2230
2250
  }
2231
2251
  .focus\:ring-2:focus {
2232
- --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
2233
- --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
2234
- box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0) !important;
2235
- 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));
2236
2256
  }
2237
2257
  .focus\:ring-1:focus {
2238
- --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
2239
- --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
2240
- box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0) !important;
2241
- 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));
2242
2262
  }
2243
2263
  .focus\:ring-grey-60:focus {
2244
- --tw-ring-opacity: 1 !important;
2245
- --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));
2246
2266
  }
2247
2267
  .focus\:ring-offset-0:focus {
2248
- --tw-ring-offset-width: 0px !important;
2268
+ --tw-ring-offset-width: 0px;
2249
2269
  }
2250
2270
  .focus-visible\:border-info-70.focus-visible {
2251
- --tw-border-opacity: 1 !important;
2252
- 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));
2253
2273
  }
2254
2274
  .focus-visible\:border-info-70:focus-visible {
2255
- --tw-border-opacity: 1 !important;
2256
- 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));
2257
2277
  }
2258
2278
  .focus-visible\:bg-grey-0.focus-visible {
2259
- --tw-bg-opacity: 1 !important;
2260
- 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));
2261
2281
  }
2262
2282
  .focus-visible\:bg-grey-0:focus-visible {
2263
- --tw-bg-opacity: 1 !important;
2264
- 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));
2265
2285
  }
2266
2286
  .focus-visible\:text-grey-90.focus-visible {
2267
- --tw-text-opacity: 1 !important;
2268
- 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));
2269
2289
  }
2270
2290
  .focus-visible\:text-grey-90:focus-visible {
2271
- --tw-text-opacity: 1 !important;
2272
- 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));
2273
2293
  }
2274
2294
  .focus-visible\:text-grey-80.focus-visible {
2275
- --tw-text-opacity: 1 !important;
2276
- 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));
2277
2297
  }
2278
2298
  .focus-visible\:text-grey-80:focus-visible {
2279
- --tw-text-opacity: 1 !important;
2280
- 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));
2281
2301
  }
2282
2302
  .focus-visible\:outline-0.focus-visible {
2283
- outline-width: 0px !important;
2303
+ outline-width: 0px;
2284
2304
  }
2285
2305
  .focus-visible\:outline-0:focus-visible {
2286
- outline-width: 0px !important;
2306
+ outline-width: 0px;
2287
2307
  }
2288
2308
  .focus-visible\:ring-2.focus-visible {
2289
- --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
2290
- --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
2291
- box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0) !important;
2292
- 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));
2293
2313
  }
2294
2314
  .focus-visible\:ring-2:focus-visible {
2295
- --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
2296
- --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
2297
- box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0) !important;
2298
- 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));
2299
2319
  }
2300
2320
  .focus-visible\:ring-1.focus-visible {
2301
- --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
2302
- --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
2303
- box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0) !important;
2304
- 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));
2305
2325
  }
2306
2326
  .focus-visible\:ring-1:focus-visible {
2307
- --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
2308
- --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
2309
- box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0) !important;
2310
- 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));
2311
2331
  }
2312
2332
  .focus-visible\:ring-inset.focus-visible {
2313
- --tw-ring-inset: inset !important;
2333
+ --tw-ring-inset: inset;
2314
2334
  }
2315
2335
  .focus-visible\:ring-inset:focus-visible {
2316
- --tw-ring-inset: inset !important;
2336
+ --tw-ring-inset: inset;
2317
2337
  }
2318
2338
  .focus-visible\:ring-primary-100.focus-visible {
2319
- --tw-ring-opacity: 1 !important;
2320
- --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));
2321
2341
  }
2322
2342
  .focus-visible\:ring-primary-100:focus-visible {
2323
- --tw-ring-opacity: 1 !important;
2324
- --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));
2325
2345
  }
2326
2346
  .focus-visible\:ring-grey-50.focus-visible {
2327
- --tw-ring-opacity: 1 !important;
2328
- --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));
2329
2349
  }
2330
2350
  .focus-visible\:ring-grey-50:focus-visible {
2331
- --tw-ring-opacity: 1 !important;
2332
- --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));
2333
2353
  }
2334
2354
  .focus-visible\:ring-info-70.focus-visible {
2335
- --tw-ring-opacity: 1 !important;
2336
- --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));
2337
2357
  }
2338
2358
  .focus-visible\:ring-info-70:focus-visible {
2339
- --tw-ring-opacity: 1 !important;
2340
- --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));
2341
2361
  }
2342
2362
  .active\:bg-grey-5:active {
2343
- --tw-bg-opacity: 1 !important;
2344
- 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));
2345
2365
  }
2346
2366
  .active\:bg-primary-90:active {
2347
- --tw-bg-opacity: 1 !important;
2348
- 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));
2349
2369
  }
2350
2370
  .active\:bg-transparent:active {
2351
- background-color: transparent !important;
2371
+ background-color: transparent;
2352
2372
  }
2353
2373
  .active\:bg-grey-10:active {
2354
- --tw-bg-opacity: 1 !important;
2355
- 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));
2356
2376
  }
2357
2377
  .active\:text-primary-70:active {
2358
- --tw-text-opacity: 1 !important;
2359
- 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));
2360
2380
  }
2361
2381
  .active\:text-grey-80:active {
2362
- --tw-text-opacity: 1 !important;
2363
- 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));
2364
2384
  }
2365
2385
  .active\:text-grey-50:active {
2366
- --tw-text-opacity: 1 !important;
2367
- 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));
2368
2388
  }
2369
2389
  .active\:text-grey-70:active {
2370
- --tw-text-opacity: 1 !important;
2371
- 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));
2372
2392
  }
2373
2393
  .active\:ring-0:active {
2374
- --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
2375
- --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
2376
- box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0) !important;
2377
- 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));
2378
2398
  }
2379
2399
  .active\:ring-grey-50:active {
2380
- --tw-ring-opacity: 1 !important;
2381
- --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));
2382
2402
  }
2383
2403
  .disabled\:cursor-not-allowed:disabled {
2384
- cursor: not-allowed !important;
2404
+ cursor: not-allowed;
2385
2405
  }
2386
2406
  .disabled\:border-grey-20:disabled {
2387
- --tw-border-opacity: 1 !important;
2388
- 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));
2389
2409
  }
2390
2410
  .disabled\:bg-grey-5:disabled {
2391
- --tw-bg-opacity: 1 !important;
2392
- 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));
2393
2413
  }
2394
2414
  .disabled\:bg-primary-5:disabled {
2395
- --tw-bg-opacity: 1 !important;
2396
- 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));
2397
2417
  }
2398
2418
  .disabled\:bg-grey-0:disabled {
2399
- --tw-bg-opacity: 1 !important;
2400
- 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));
2401
2421
  }
2402
2422
  .disabled\:bg-transparent:disabled {
2403
- background-color: transparent !important;
2423
+ background-color: transparent;
2404
2424
  }
2405
2425
  .disabled\:text-grey-40:disabled {
2406
- --tw-text-opacity: 1 !important;
2407
- 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));
2408
2428
  }
2409
2429
  .disabled\:text-primary-40:disabled {
2410
- --tw-text-opacity: 1 !important;
2411
- 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));
2412
2432
  }
2413
2433
  .disabled\:text-grey-30:disabled {
2414
- --tw-text-opacity: 1 !important;
2415
- 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));
2416
2436
  }
2417
2437
  .disabled\:text-grey-20:disabled {
2418
- --tw-text-opacity: 1 !important;
2419
- 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));
2420
2440
  }
2421
2441
  .disabled\:ring-grey-20:disabled {
2422
- --tw-ring-opacity: 1 !important;
2423
- --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));
2424
2444
  }
2425
2445
  .group:last-child .group-last\:border-b-0 {
2426
- border-bottom-width: 0px !important;
2446
+ border-bottom-width: 0px;
2427
2447
  }
2428
2448
  .group:hover .group-hover\:visible {
2429
- visibility: visible !important;
2449
+ visibility: visible;
2430
2450
  }
2431
2451
  .group:hover .group-hover\:bg-grey-0 {
2432
- --tw-bg-opacity: 1 !important;
2433
- 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));
2434
2454
  }
2435
2455
  .peer\/switch:checked~.peer-checked\/switch\:left-1 {
2436
- left: 2px !important;
2456
+ left: 2px;
2437
2457
  }
2438
2458
  .peer\/switch:checked~.peer-checked\/switch\:translate-x-5 {
2439
- --tw-translate-x: 16px !important;
2440
- 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));
2441
2461
  }
2442
2462
  .peer:checked~.peer-checked\:border-navyBlue-100 {
2443
- --tw-border-opacity: 1 !important;
2444
- 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));
2445
2465
  }
2446
2466
  .peer:checked~.peer-checked\:text-white {
2447
- --tw-text-opacity: 1 !important;
2448
- 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));
2449
2469
  }
2450
2470
  .peer:checked~.peer-checked\:text-grey-30 {
2451
- --tw-text-opacity: 1 !important;
2452
- 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));
2453
2473
  }
2454
2474
  .peer:hover~.peer-hover\:border-grey-50 {
2455
- --tw-border-opacity: 1 !important;
2456
- 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));
2457
2477
  }
2458
2478
  .peer:focus~.peer-focus\:border-info-70 {
2459
- --tw-border-opacity: 1 !important;
2460
- 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));
2461
2481
  }
2462
2482
  .peer\/switch:disabled~.peer-disabled\/switch\:bg-grey-0 {
2463
- --tw-bg-opacity: 1 !important;
2464
- 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));
2465
2485
  }
2466
2486
  .children\:inline-block>* {
2467
- display: inline-block !important;
2487
+ display: inline-block;
2468
2488
  }
2469
2489
  .children\:border-grey-10>* {
2470
- --tw-border-opacity: 1 !important;
2471
- 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));
2472
2492
  }
2473
2493
  .children\:last\:border-b-0:last-child>* {
2474
- border-bottom-width: 0px !important;
2494
+ border-bottom-width: 0px;
2475
2495
  }
2476
2496
  .\[\&\>path\]\:stroke-transparent>path {
2477
- stroke: transparent !important;
2497
+ stroke: transparent;
2478
2498
  }
2479
2499
  .peer:checked~.peer-checked\:\[\&\>path\]\:stroke-white>path {
2480
- stroke: white !important;
2500
+ stroke: white;
2481
2501
  }
2482
2502
  .peer:checked~.peer-checked\:\[\&\>path\]\:stroke-grey-30>path {
2483
- stroke: #b4b4bb !important;
2503
+ stroke: #b4b4bb;
2484
2504
  }
2485
2505
  .\[\&\>\*\:not\(\:first-child\)\]\:-ml-3>*:not(:first-child) {
2486
- margin-left: -8px !important;
2506
+ margin-left: -8px;
2487
2507
  }
2488
2508
  .\[\&\>div\:first-child\]\:px-5>div:first-child {
2489
- padding-left: 16px !important;
2490
- padding-right: 16px !important;
2509
+ padding-left: 16px;
2510
+ padding-right: 16px;
2491
2511
  }