@sapphire-ion/framework 0.30.26 → 0.30.28

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 (469) hide show
  1. package/build.ps1 +39 -0
  2. package/ng-package.json +10 -0
  3. package/package.json +37 -41
  4. package/src/lib/classes/comparison/comparison-operator.ts +17 -0
  5. package/src/lib/classes/comparison/comparison-value-type.ts +34 -0
  6. package/src/lib/classes/comparison/comparison.ts +45 -0
  7. package/src/lib/classes/comparison/properties/bool-property.ts +16 -0
  8. package/src/lib/classes/comparison/properties/date-property.ts +28 -0
  9. package/src/lib/classes/comparison/properties/datetime-property.ts +28 -0
  10. package/src/lib/classes/comparison/properties/decimal-property.ts +28 -0
  11. package/src/lib/classes/comparison/properties/enum-property.ts +28 -0
  12. package/src/lib/classes/comparison/properties/implicit-property.ts +13 -0
  13. package/src/lib/classes/comparison/properties/int-property.ts +28 -0
  14. package/src/lib/classes/comparison/properties/long-property.ts +28 -0
  15. package/src/lib/classes/comparison/properties/string-property.ts +16 -0
  16. package/src/lib/classes/comparison/properties/time-property.ts +28 -0
  17. package/{lib/classes/credentials.d.ts → src/lib/classes/credentials.ts} +5 -5
  18. package/src/lib/classes/environment.ts +35 -0
  19. package/src/lib/classes/filters/view-filtros.ts +18 -0
  20. package/src/lib/classes/infinite-scroll.ts +112 -0
  21. package/src/lib/classes/inputs/table-field-form-builder.ts +12 -0
  22. package/src/lib/classes/inputs/table-field.ts +58 -0
  23. package/src/lib/classes/page-option.ts +8 -0
  24. package/src/lib/classes/routes/default-routing-factory.ts +24 -0
  25. package/src/lib/classes/routes/id-preloader-configuration.ts +21 -0
  26. package/src/lib/classes/routes/route-data.ts +9 -0
  27. package/{themes → src/lib}/compiled-styles.scss +2338 -2338
  28. package/src/lib/components/_inputs_new/classes/input-control-base.ts +85 -0
  29. package/src/lib/components/_inputs_new/classes/input-provider-factory.ts +16 -0
  30. package/src/lib/components/_inputs_new/input-string/input-string.component.html +4 -0
  31. package/src/lib/components/_inputs_new/input-string/input-string.component.ts +15 -0
  32. package/src/lib/components/_inputs_new/inputs.module.ts +16 -0
  33. package/src/lib/components/carousel/carousel-image/carousel-image.component.html +4 -0
  34. package/src/lib/components/carousel/carousel-image/carousel-image.component.ts +15 -0
  35. package/src/lib/components/carousel/carousel-item/carousel-item.component.html +3 -0
  36. package/src/lib/components/carousel/carousel-item/carousel-item.component.ts +14 -0
  37. package/src/lib/components/carousel/carousel.component.html +22 -0
  38. package/src/lib/components/carousel/carousel.component.ts +83 -0
  39. package/src/lib/components/carousel/carousel.module.ts +20 -0
  40. package/src/lib/components/carousel/i-carousel-item.component.ts +8 -0
  41. package/src/lib/components/content-block/content-block.component.html +6 -0
  42. package/src/lib/components/content-block/content-block.component.ts +25 -0
  43. package/src/lib/components/default/default-list/abstract-list.ts +56 -0
  44. package/src/lib/components/default/default-list/default-list.component.html +60 -0
  45. package/src/lib/components/default/default-list/default-list.component.ts +71 -0
  46. package/src/lib/components/default/default-list/header-list/header-list.component.html +32 -0
  47. package/src/lib/components/default/default-list/header-list/header-list.component.ts +85 -0
  48. package/src/lib/components/default/default-list/list.ts +121 -0
  49. package/src/lib/components/default/default-pagination/default-pagination.component.html +52 -0
  50. package/src/lib/components/default/default-pagination/default-pagination.component.ts +118 -0
  51. package/src/lib/components/default/default-table/default-table.component.html +105 -0
  52. package/src/lib/components/default/default-table/default-table.component.ts +197 -0
  53. package/src/lib/components/default/default-table/th-filter/th-filter.component.html +61 -0
  54. package/src/lib/components/default/default-table/th-filter/th-filter.component.ts +178 -0
  55. package/src/lib/components/default/default-view/abstract-view.ts +25 -0
  56. package/src/lib/components/default/default-view/default-view.component.html +81 -0
  57. package/src/lib/components/default/default-view/default-view.component.ts +34 -0
  58. package/src/lib/components/default/default-view/header-view/header-view.component.html +64 -0
  59. package/src/lib/components/default/default-view/header-view/header-view.component.ts +54 -0
  60. package/src/lib/components/default/default-view/view.ts +171 -0
  61. package/src/lib/components/default/default.module.ts +55 -0
  62. package/src/lib/components/default-page/default.page.html +53 -0
  63. package/src/lib/components/default-page/default.page.ts +77 -0
  64. package/src/lib/components/drag-drop-file/drag-drop-file.directive.ts +44 -0
  65. package/src/lib/components/drag-drop-file/drag-drop-file.module.ts +21 -0
  66. package/src/lib/components/drag-drop-file/drag-drop-overlay/drag-drop-overlay.component.html +5 -0
  67. package/src/lib/components/drag-drop-file/drag-drop-overlay/drag-drop-overlay.component.ts +17 -0
  68. package/src/lib/components/drawer/default-drawer-end/default-drawer-end.component.html +12 -0
  69. package/src/lib/components/drawer/default-drawer-end/default-drawer-end.component.ts +35 -0
  70. package/src/lib/components/drawer/drawer-group/drawer-group.component.html +61 -0
  71. package/src/lib/components/drawer/drawer-group/drawer-group.component.ts +44 -0
  72. package/src/lib/components/drawer/drawer.component.html +56 -0
  73. package/src/lib/components/drawer/drawer.component.ts +119 -0
  74. package/src/lib/components/drawer/menu.ts +20 -0
  75. package/src/lib/components/filter/filter.component.html +31 -0
  76. package/src/lib/components/filter/filter.component.ts +133 -0
  77. package/src/lib/components/http-responses-pages/forbidden-403/forbidden-403.component.html +35 -0
  78. package/src/lib/components/http-responses-pages/forbidden-403/forbidden-403.component.ts +19 -0
  79. package/src/lib/components/image/image.component.html +17 -0
  80. package/src/lib/components/image/image.component.ts +95 -0
  81. package/src/lib/components/info-popover/info-popover.component.html +23 -0
  82. package/src/lib/components/info-popover/info-popover.component.ts +75 -0
  83. package/src/lib/components/inputs/custom-input.ts +67 -0
  84. package/src/lib/components/inputs/custom-signal-input.ts +70 -0
  85. package/src/lib/components/inputs/input-bool/input-bool.component.html +18 -0
  86. package/src/lib/components/inputs/input-bool/input-bool.component.ts +36 -0
  87. package/src/lib/components/inputs/input-bool/input-bool.configuration.ts +14 -0
  88. package/src/lib/components/inputs/input-color/input-color.component.html +132 -0
  89. package/src/lib/components/inputs/input-color/input-color.component.ts +561 -0
  90. package/{lib/components/inputs/input-configuration.d.ts → src/lib/components/inputs/input-configuration.ts} +18 -8
  91. package/src/lib/components/inputs/input-cpf-cnpj/input-cpf-cnpj.component.html +26 -0
  92. package/src/lib/components/inputs/input-cpf-cnpj/input-cpf-cnpj.component.ts +78 -0
  93. package/src/lib/components/inputs/input-cpf-cnpj/input-cpf-cnpj.configuration.ts +4 -0
  94. package/src/lib/components/inputs/input-date/input-date.component.html +40 -0
  95. package/src/lib/components/inputs/input-date/input-date.component.ts +98 -0
  96. package/src/lib/components/inputs/input-date/input-date.configuration.ts +6 -0
  97. package/src/lib/components/inputs/input-decimal/input-decimal.component.html +24 -0
  98. package/src/lib/components/inputs/input-decimal/input-decimal.component.ts +296 -0
  99. package/src/lib/components/inputs/input-decimal/input-decimal.configuration.ts +42 -0
  100. package/src/lib/components/inputs/input-default-configurations.ts +15 -0
  101. package/src/lib/components/inputs/input-file/download-button/download-button.component.html +56 -0
  102. package/src/lib/components/inputs/input-file/download-button/download-button.component.ts +85 -0
  103. package/src/lib/components/inputs/input-file/input-file.component.html +101 -0
  104. package/src/lib/components/inputs/input-file/input-file.component.ts +120 -0
  105. package/src/lib/components/inputs/input-file/input-file.configuration.ts +8 -0
  106. package/src/lib/components/inputs/input-loading/input-loading.component.html +3 -0
  107. package/src/lib/components/inputs/input-loading/input-loading.component.ts +13 -0
  108. package/src/lib/components/inputs/input-provider-factory.ts +15 -0
  109. package/src/lib/components/inputs/input-select/ISelect.ts +26 -0
  110. package/src/lib/components/inputs/input-select/input-select-internal-option/input-select-internal-option.component.html +16 -0
  111. package/src/lib/components/inputs/input-select/input-select-internal-option/input-select-internal-option.component.ts +38 -0
  112. package/src/lib/components/inputs/input-select/input-select-option/input-select-option.component.html +15 -0
  113. package/src/lib/components/inputs/input-select/input-select-option/input-select-option.component.ts +47 -0
  114. package/src/lib/components/inputs/input-select/input-select-template.directive.ts +8 -0
  115. package/src/lib/components/inputs/input-select/input-select.component.html +66 -0
  116. package/src/lib/components/inputs/input-select/input-select.component.ts +323 -0
  117. package/src/lib/components/inputs/input-select/input.select.configuration.ts +188 -0
  118. package/src/lib/components/inputs/input-string/input-string.component.html +22 -0
  119. package/src/lib/components/inputs/input-string/input-string.component.ts +36 -0
  120. package/src/lib/components/inputs/input-string/input-string.configuration.ts +18 -0
  121. package/src/lib/components/inputs/input-textarea/input-textarea.component.html +25 -0
  122. package/src/lib/components/inputs/input-textarea/input-textarea.component.ts +35 -0
  123. package/src/lib/components/inputs/input-type.ts +16 -0
  124. package/src/lib/components/inputs/input-validators.ts +76 -0
  125. package/src/lib/components/inputs/inputs.module.ts +64 -0
  126. package/src/lib/components/loading/loading.component.html +28 -0
  127. package/src/lib/components/loading/loading.component.ts +29 -0
  128. package/src/lib/components/login/login-admin/login-admin.component.html +28 -0
  129. package/src/lib/components/login/login-admin/login-admin.component.ts +51 -0
  130. package/src/lib/components/login/login.component.html +104 -0
  131. package/src/lib/components/login/login.component.ts +97 -0
  132. package/src/lib/components/main-content/main-content.component.html +61 -0
  133. package/src/lib/components/main-content/main-content.component.ts +55 -0
  134. package/src/lib/components/stepper/step/step.component.html +11 -0
  135. package/src/lib/components/stepper/step/step.component.ts +44 -0
  136. package/src/lib/components/stepper/stepper.component.html +3 -0
  137. package/src/lib/components/stepper/stepper.component.ts +36 -0
  138. package/src/lib/components/stepper/stepper.module.ts +15 -0
  139. package/src/lib/components/tabs/tab/tab.component.html +8 -0
  140. package/src/lib/components/tabs/tab/tab.component.scss +0 -0
  141. package/src/lib/components/tabs/tab/tab.component.ts +28 -0
  142. package/src/lib/components/tabs/tabs/tabs.component.html +14 -0
  143. package/src/lib/components/tabs/tabs/tabs.component.ts +42 -0
  144. package/src/lib/components/tabs/tabs.module.ts +15 -0
  145. package/src/lib/components/text-tooltip/text-tooltip.component.html +8 -0
  146. package/src/lib/components/text-tooltip/text-tooltip.component.scss +0 -0
  147. package/src/lib/components/text-tooltip/text-tooltip.component.ts +45 -0
  148. package/src/lib/components/tooltip/tooltip.component.html +53 -0
  149. package/src/lib/components/tooltip/tooltip.component.ts +16 -0
  150. package/src/lib/core.module.ts +26 -0
  151. package/src/lib/directives/ng-var.directive.ts +26 -0
  152. package/src/lib/guards/auth.guard.ts +19 -0
  153. package/src/lib/guards/error.interceptor.ts +107 -0
  154. package/src/lib/guards/token.interceptor.ts +28 -0
  155. package/src/lib/index.ts +175 -0
  156. package/src/lib/pipes/secure.pipe.ts +39 -0
  157. package/src/lib/services/auth.service.ts +150 -0
  158. package/src/lib/services/crypto.service.ts +164 -0
  159. package/src/lib/services/environment.service.ts +17 -0
  160. package/src/lib/services/generics.service.ts +85 -0
  161. package/src/lib/services/route/route.cache.service.ts +17 -0
  162. package/src/lib/services/route/route.provider.service.ts +49 -0
  163. package/src/lib/services/usuario.service.ts +44 -0
  164. package/src/lib/services/utils.service.ts +161 -0
  165. package/src/lib/services/web/api-url-provider.service.ts +48 -0
  166. package/src/lib/services/web/http.ativo.service.ts +52 -0
  167. package/src/lib/services/web/http.service.ts +184 -0
  168. package/src/lib/services/web/storage.service.ts +131 -0
  169. package/{themes → src/lib}/styles/core.styles.scss +4 -0
  170. package/src/public-api.ts +5 -0
  171. package/tailwind.config.js +27 -0
  172. package/tsconfig.lib.json +29 -0
  173. package/tsconfig.lib.prod.json +23 -0
  174. package/tsconfig.spec.json +27 -0
  175. package/esm2022/lib/classes/comparison/comparison-operator.mjs +0 -18
  176. package/esm2022/lib/classes/comparison/comparison-value-type.mjs +0 -25
  177. package/esm2022/lib/classes/comparison/comparison.mjs +0 -41
  178. package/esm2022/lib/classes/comparison/properties/bool-property.mjs +0 -15
  179. package/esm2022/lib/classes/comparison/properties/date-property.mjs +0 -27
  180. package/esm2022/lib/classes/comparison/properties/datetime-property.mjs +0 -27
  181. package/esm2022/lib/classes/comparison/properties/decimal-property.mjs +0 -27
  182. package/esm2022/lib/classes/comparison/properties/enum-property.mjs +0 -27
  183. package/esm2022/lib/classes/comparison/properties/implicit-property.mjs +0 -12
  184. package/esm2022/lib/classes/comparison/properties/int-property.mjs +0 -27
  185. package/esm2022/lib/classes/comparison/properties/long-property.mjs +0 -27
  186. package/esm2022/lib/classes/comparison/properties/string-property.mjs +0 -15
  187. package/esm2022/lib/classes/comparison/properties/time-property.mjs +0 -27
  188. package/esm2022/lib/classes/credentials.mjs +0 -2
  189. package/esm2022/lib/classes/environment.mjs +0 -32
  190. package/esm2022/lib/classes/filters/view-filtros.mjs +0 -18
  191. package/esm2022/lib/classes/infinite-scroll.mjs +0 -90
  192. package/esm2022/lib/classes/inputs/table-field-form-builder.mjs +0 -10
  193. package/esm2022/lib/classes/inputs/table-field.mjs +0 -69
  194. package/esm2022/lib/classes/page-option.mjs +0 -2
  195. package/esm2022/lib/classes/routes/default-routing-factory.mjs +0 -23
  196. package/esm2022/lib/classes/routes/id-preloader-configuration.mjs +0 -22
  197. package/esm2022/lib/classes/routes/route-data.mjs +0 -9
  198. package/esm2022/lib/components/carousel/carousel-image/carousel-image.component.mjs +0 -18
  199. package/esm2022/lib/components/carousel/carousel-item/carousel-item.component.mjs +0 -15
  200. package/esm2022/lib/components/carousel/carousel.component.mjs +0 -79
  201. package/esm2022/lib/components/carousel/carousel.module.mjs +0 -31
  202. package/esm2022/lib/components/carousel/i-carousel-item.component.mjs +0 -16
  203. package/esm2022/lib/components/content-block/content-block.component.mjs +0 -27
  204. package/esm2022/lib/components/default/default-list/abstract-list.mjs +0 -49
  205. package/esm2022/lib/components/default/default-list/default-list.component.mjs +0 -99
  206. package/esm2022/lib/components/default/default-list/header-list/header-list.component.mjs +0 -98
  207. package/esm2022/lib/components/default/default-list/list.mjs +0 -110
  208. package/esm2022/lib/components/default/default-pagination/default-pagination.component.mjs +0 -123
  209. package/esm2022/lib/components/default/default-table/default-table.component.mjs +0 -222
  210. package/esm2022/lib/components/default/default-table/th-filter/th-filter.component.mjs +0 -186
  211. package/esm2022/lib/components/default/default-view/abstract-view.mjs +0 -22
  212. package/esm2022/lib/components/default/default-view/default-view.component.mjs +0 -51
  213. package/esm2022/lib/components/default/default-view/header-view/header-view.component.mjs +0 -75
  214. package/esm2022/lib/components/default/default-view/view.mjs +0 -175
  215. package/esm2022/lib/components/default/default.module.mjs +0 -87
  216. package/esm2022/lib/components/default-page/default.page.mjs +0 -73
  217. package/esm2022/lib/components/drag-drop-file/drag-drop-file.directive.mjs +0 -60
  218. package/esm2022/lib/components/drag-drop-file/drag-drop-file.module.mjs +0 -31
  219. package/esm2022/lib/components/drag-drop-file/drag-drop-overlay/drag-drop-overlay.component.mjs +0 -15
  220. package/esm2022/lib/components/drawer/default-drawer-end/default-drawer-end.component.mjs +0 -34
  221. package/esm2022/lib/components/drawer/drawer-group/drawer-group.component.mjs +0 -49
  222. package/esm2022/lib/components/drawer/drawer.component.mjs +0 -117
  223. package/esm2022/lib/components/drawer/menu.mjs +0 -15
  224. package/esm2022/lib/components/filter/filter.component.mjs +0 -127
  225. package/esm2022/lib/components/http-responses-pages/forbidden-403/forbidden-403.component.mjs +0 -17
  226. package/esm2022/lib/components/image/image.component.mjs +0 -91
  227. package/esm2022/lib/components/info-popover/info-popover.component.mjs +0 -91
  228. package/esm2022/lib/components/inputs/custom-input.mjs +0 -77
  229. package/esm2022/lib/components/inputs/custom-signal-input.mjs +0 -74
  230. package/esm2022/lib/components/inputs/input-bool/input-bool.component.mjs +0 -43
  231. package/esm2022/lib/components/inputs/input-bool/input-bool.configuration.mjs +0 -16
  232. package/esm2022/lib/components/inputs/input-color/input-color.component.mjs +0 -487
  233. package/esm2022/lib/components/inputs/input-configuration.mjs +0 -2
  234. package/esm2022/lib/components/inputs/input-cpf-cnpj/input-cpf-cnpj.component.mjs +0 -93
  235. package/esm2022/lib/components/inputs/input-cpf-cnpj/input-cpf-cnpj.configuration.mjs +0 -6
  236. package/esm2022/lib/components/inputs/input-date/input-date.component.mjs +0 -122
  237. package/esm2022/lib/components/inputs/input-date/input-date.configuration.mjs +0 -8
  238. package/esm2022/lib/components/inputs/input-decimal/input-decimal.component.mjs +0 -269
  239. package/esm2022/lib/components/inputs/input-decimal/input-decimal.configuration.mjs +0 -45
  240. package/esm2022/lib/components/inputs/input-default-configurations.mjs +0 -14
  241. package/esm2022/lib/components/inputs/input-file/download-button/download-button.component.mjs +0 -91
  242. package/esm2022/lib/components/inputs/input-file/input-file.component.mjs +0 -131
  243. package/esm2022/lib/components/inputs/input-file/input-file.configuration.mjs +0 -11
  244. package/esm2022/lib/components/inputs/input-loading/input-loading.component.mjs +0 -16
  245. package/esm2022/lib/components/inputs/input-provider-factory.mjs +0 -15
  246. package/esm2022/lib/components/inputs/input-select/ISelect.mjs +0 -11
  247. package/esm2022/lib/components/inputs/input-select/input-select-internal-option/input-select-internal-option.component.mjs +0 -42
  248. package/esm2022/lib/components/inputs/input-select/input-select-option/input-select-option.component.mjs +0 -46
  249. package/esm2022/lib/components/inputs/input-select/input-select-template.directive.mjs +0 -16
  250. package/esm2022/lib/components/inputs/input-select/input-select.component.mjs +0 -322
  251. package/esm2022/lib/components/inputs/input-select/input.select.configuration.mjs +0 -164
  252. package/esm2022/lib/components/inputs/input-string/input-string.component.mjs +0 -50
  253. package/esm2022/lib/components/inputs/input-string/input-string.configuration.mjs +0 -18
  254. package/esm2022/lib/components/inputs/input-textarea/input-textarea.component.mjs +0 -47
  255. package/esm2022/lib/components/inputs/input-type.mjs +0 -18
  256. package/esm2022/lib/components/inputs/input-validators.mjs +0 -90
  257. package/esm2022/lib/components/inputs/inputs.module.mjs +0 -105
  258. package/esm2022/lib/components/loading/loading.component.mjs +0 -34
  259. package/esm2022/lib/components/login/login-admin/login-admin.component.mjs +0 -52
  260. package/esm2022/lib/components/login/login.component.mjs +0 -102
  261. package/esm2022/lib/components/main-content/main-content.component.mjs +0 -62
  262. package/esm2022/lib/components/stepper/step/step.component.mjs +0 -43
  263. package/esm2022/lib/components/stepper/stepper.component.mjs +0 -36
  264. package/esm2022/lib/components/stepper/stepper.module.mjs +0 -25
  265. package/esm2022/lib/components/tabs/tab/tab.component.mjs +0 -41
  266. package/esm2022/lib/components/tabs/tabs/tabs.component.mjs +0 -56
  267. package/esm2022/lib/components/tabs/tabs.module.mjs +0 -22
  268. package/esm2022/lib/components/text-tooltip/text-tooltip.component.mjs +0 -51
  269. package/esm2022/lib/components/tooltip/tooltip.component.mjs +0 -21
  270. package/esm2022/lib/core.module.mjs +0 -29
  271. package/esm2022/lib/directives/ng-var.directive.mjs +0 -29
  272. package/esm2022/lib/guards/auth.guard.mjs +0 -26
  273. package/esm2022/lib/guards/error.interceptor.mjs +0 -106
  274. package/esm2022/lib/guards/token.interceptor.mjs +0 -25
  275. package/esm2022/lib/index.mjs +0 -173
  276. package/esm2022/lib/pipes/secure.pipe.mjs +0 -42
  277. package/esm2022/lib/services/auth.service.mjs +0 -146
  278. package/esm2022/lib/services/environment.service.mjs +0 -26
  279. package/esm2022/lib/services/generics.service.mjs +0 -84
  280. package/esm2022/lib/services/route/route.cache.service.mjs +0 -15
  281. package/esm2022/lib/services/route/route.provider.service.mjs +0 -42
  282. package/esm2022/lib/services/usuario.service.mjs +0 -49
  283. package/esm2022/lib/services/utils.service.mjs +0 -149
  284. package/esm2022/lib/services/web/api-url-provider.service.mjs +0 -29
  285. package/esm2022/lib/services/web/http.ativo.service.mjs +0 -55
  286. package/esm2022/lib/services/web/http.service.mjs +0 -169
  287. package/esm2022/lib/services/web/storage.service.mjs +0 -128
  288. package/esm2022/public-api.mjs +0 -5
  289. package/esm2022/sapphire-ion-framework.mjs +0 -5
  290. package/fesm2022/sapphire-ion-framework.mjs +0 -6237
  291. package/fesm2022/sapphire-ion-framework.mjs.map +0 -1
  292. package/index.d.ts +0 -5
  293. package/lib/classes/comparison/comparison-operator.d.ts +0 -9
  294. package/lib/classes/comparison/comparison-value-type.d.ts +0 -23
  295. package/lib/classes/comparison/comparison.d.ts +0 -25
  296. package/lib/classes/comparison/properties/bool-property.d.ts +0 -7
  297. package/lib/classes/comparison/properties/date-property.d.ts +0 -11
  298. package/lib/classes/comparison/properties/datetime-property.d.ts +0 -11
  299. package/lib/classes/comparison/properties/decimal-property.d.ts +0 -11
  300. package/lib/classes/comparison/properties/enum-property.d.ts +0 -11
  301. package/lib/classes/comparison/properties/implicit-property.d.ts +0 -6
  302. package/lib/classes/comparison/properties/int-property.d.ts +0 -11
  303. package/lib/classes/comparison/properties/long-property.d.ts +0 -11
  304. package/lib/classes/comparison/properties/string-property.d.ts +0 -7
  305. package/lib/classes/comparison/properties/time-property.d.ts +0 -11
  306. package/lib/classes/environment.d.ts +0 -13
  307. package/lib/classes/filters/view-filtros.d.ts +0 -10
  308. package/lib/classes/infinite-scroll.d.ts +0 -26
  309. package/lib/classes/inputs/table-field-form-builder.d.ts +0 -5
  310. package/lib/classes/inputs/table-field.d.ts +0 -20
  311. package/lib/classes/page-option.d.ts +0 -7
  312. package/lib/classes/routes/default-routing-factory.d.ts +0 -8
  313. package/lib/classes/routes/id-preloader-configuration.d.ts +0 -28
  314. package/lib/classes/routes/route-data.d.ts +0 -5
  315. package/lib/components/carousel/carousel-image/carousel-image.component.d.ts +0 -10
  316. package/lib/components/carousel/carousel-item/carousel-item.component.d.ts +0 -9
  317. package/lib/components/carousel/carousel.component.d.ts +0 -32
  318. package/lib/components/carousel/carousel.module.d.ts +0 -12
  319. package/lib/components/carousel/i-carousel-item.component.d.ts +0 -9
  320. package/lib/components/content-block/content-block.component.d.ts +0 -15
  321. package/lib/components/default/default-list/abstract-list.d.ts +0 -21
  322. package/lib/components/default/default-list/default-list.component.d.ts +0 -44
  323. package/lib/components/default/default-list/header-list/header-list.component.d.ts +0 -45
  324. package/lib/components/default/default-list/list.d.ts +0 -38
  325. package/lib/components/default/default-pagination/default-pagination.component.d.ts +0 -36
  326. package/lib/components/default/default-table/default-table.component.d.ts +0 -72
  327. package/lib/components/default/default-table/th-filter/th-filter.component.d.ts +0 -20
  328. package/lib/components/default/default-view/abstract-view.d.ts +0 -18
  329. package/lib/components/default/default-view/default-view.component.d.ts +0 -26
  330. package/lib/components/default/default-view/header-view/header-view.component.d.ts +0 -26
  331. package/lib/components/default/default-view/view.d.ts +0 -56
  332. package/lib/components/default/default.module.d.ts +0 -28
  333. package/lib/components/default-page/default.page.d.ts +0 -35
  334. package/lib/components/drag-drop-file/drag-drop-file.directive.d.ts +0 -14
  335. package/lib/components/drag-drop-file/drag-drop-file.module.d.ts +0 -10
  336. package/lib/components/drag-drop-file/drag-drop-overlay/drag-drop-overlay.component.d.ts +0 -9
  337. package/lib/components/drawer/default-drawer-end/default-drawer-end.component.d.ts +0 -13
  338. package/lib/components/drawer/drawer-group/drawer-group.component.d.ts +0 -22
  339. package/lib/components/drawer/drawer.component.d.ts +0 -23
  340. package/lib/components/drawer/menu.d.ts +0 -9
  341. package/lib/components/filter/filter.component.d.ts +0 -29
  342. package/lib/components/http-responses-pages/forbidden-403/forbidden-403.component.d.ts +0 -8
  343. package/lib/components/image/image.component.d.ts +0 -23
  344. package/lib/components/info-popover/info-popover.component.d.ts +0 -15
  345. package/lib/components/inputs/custom-input.d.ts +0 -36
  346. package/lib/components/inputs/custom-signal-input.d.ts +0 -38
  347. package/lib/components/inputs/input-bool/input-bool.component.d.ts +0 -19
  348. package/lib/components/inputs/input-bool/input-bool.configuration.d.ts +0 -17
  349. package/lib/components/inputs/input-color/input-color.component.d.ts +0 -80
  350. package/lib/components/inputs/input-cpf-cnpj/input-cpf-cnpj.component.d.ts +0 -24
  351. package/lib/components/inputs/input-cpf-cnpj/input-cpf-cnpj.configuration.d.ts +0 -5
  352. package/lib/components/inputs/input-date/input-date.component.d.ts +0 -30
  353. package/lib/components/inputs/input-date/input-date.configuration.d.ts +0 -7
  354. package/lib/components/inputs/input-decimal/input-decimal.component.d.ts +0 -41
  355. package/lib/components/inputs/input-decimal/input-decimal.configuration.d.ts +0 -25
  356. package/lib/components/inputs/input-default-configurations.d.ts +0 -13
  357. package/lib/components/inputs/input-file/download-button/download-button.component.d.ts +0 -36
  358. package/lib/components/inputs/input-file/input-file.component.d.ts +0 -39
  359. package/lib/components/inputs/input-file/input-file.configuration.d.ts +0 -11
  360. package/lib/components/inputs/input-loading/input-loading.component.d.ts +0 -7
  361. package/lib/components/inputs/input-provider-factory.d.ts +0 -4
  362. package/lib/components/inputs/input-select/ISelect.d.ts +0 -21
  363. package/lib/components/inputs/input-select/input-select-internal-option/input-select-internal-option.component.d.ts +0 -18
  364. package/lib/components/inputs/input-select/input-select-option/input-select-option.component.d.ts +0 -24
  365. package/lib/components/inputs/input-select/input-select-template.directive.d.ts +0 -8
  366. package/lib/components/inputs/input-select/input-select.component.d.ts +0 -66
  367. package/lib/components/inputs/input-select/input.select.configuration.d.ts +0 -87
  368. package/lib/components/inputs/input-string/input-string.component.d.ts +0 -19
  369. package/lib/components/inputs/input-string/input-string.configuration.d.ts +0 -14
  370. package/lib/components/inputs/input-textarea/input-textarea.component.d.ts +0 -18
  371. package/lib/components/inputs/input-type.d.ts +0 -16
  372. package/lib/components/inputs/input-validators.d.ts +0 -19
  373. package/lib/components/inputs/inputs.module.d.ts +0 -29
  374. package/lib/components/loading/loading.component.d.ts +0 -18
  375. package/lib/components/login/login-admin/login-admin.component.d.ts +0 -20
  376. package/lib/components/login/login.component.d.ts +0 -29
  377. package/lib/components/main-content/main-content.component.d.ts +0 -17
  378. package/lib/components/stepper/step/step.component.d.ts +0 -15
  379. package/lib/components/stepper/stepper.component.d.ts +0 -17
  380. package/lib/components/stepper/stepper.module.d.ts +0 -10
  381. package/lib/components/tabs/tab/tab.component.d.ts +0 -19
  382. package/lib/components/tabs/tabs/tabs.component.d.ts +0 -18
  383. package/lib/components/tabs/tabs.module.d.ts +0 -12
  384. package/lib/components/text-tooltip/text-tooltip.component.d.ts +0 -16
  385. package/lib/components/tooltip/tooltip.component.d.ts +0 -7
  386. package/lib/core.module.d.ts +0 -11
  387. package/lib/directives/ng-var.directive.d.ts +0 -12
  388. package/lib/guards/auth.guard.d.ts +0 -11
  389. package/lib/guards/error.interceptor.d.ts +0 -32
  390. package/lib/guards/token.interceptor.d.ts +0 -11
  391. package/lib/index.d.ts +0 -109
  392. package/lib/pipes/secure.pipe.d.ts +0 -15
  393. package/lib/services/auth.service.d.ts +0 -47
  394. package/lib/services/environment.service.d.ts +0 -10
  395. package/lib/services/generics.service.d.ts +0 -22
  396. package/lib/services/route/route.cache.service.d.ts +0 -7
  397. package/lib/services/route/route.provider.service.d.ts +0 -13
  398. package/lib/services/usuario.service.d.ts +0 -21
  399. package/lib/services/utils.service.d.ts +0 -36
  400. package/lib/services/web/api-url-provider.service.d.ts +0 -13
  401. package/lib/services/web/http.ativo.service.d.ts +0 -31
  402. package/lib/services/web/http.service.d.ts +0 -50
  403. package/lib/services/web/storage.service.d.ts +0 -25
  404. package/public-api.d.ts +0 -1
  405. /package/{themes → src/lib}/components/_inputs_new/input-string/input-string.component.scss +0 -0
  406. /package/{themes → src/lib}/components/_inputs_new/inputs.scss +0 -0
  407. /package/{themes → src/lib}/components/carousel/carousel-image/carousel-image.component.scss +0 -0
  408. /package/{themes → src/lib}/components/carousel/carousel-item/carousel-item.component.scss +0 -0
  409. /package/{themes → src/lib}/components/carousel/carousel.component.scss +0 -0
  410. /package/{themes → src/lib}/components/content-block/content-block.component.scss +0 -0
  411. /package/{themes → src/lib}/components/default/default-list/default-list.component.scss +0 -0
  412. /package/{themes → src/lib}/components/default/default-list/header-list/header-list.component.scss +0 -0
  413. /package/{themes → src/lib}/components/default/default-pagination/default-pagination.component.scss +0 -0
  414. /package/{themes → src/lib}/components/default/default-table/default-table.component.scss +0 -0
  415. /package/{themes → src/lib}/components/default/default-table/th-filter/th-filter.component.scss +0 -0
  416. /package/{themes → src/lib}/components/default/default-view/default-view.component.scss +0 -0
  417. /package/{themes → src/lib}/components/default/default-view/header-view/header-view.component.scss +0 -0
  418. /package/{themes → src/lib}/components/default-page/default.page.scss +0 -0
  419. /package/{themes → src/lib}/components/drag-drop-file/drag-drop-overlay/drag-drop-overlay.component.scss +0 -0
  420. /package/{themes → src/lib}/components/drawer/default-drawer-end/default-drawer-end.component.scss +0 -0
  421. /package/{themes → src/lib}/components/drawer/drawer-group/drawer-group.component.scss +0 -0
  422. /package/{themes → src/lib}/components/drawer/drawer.component.scss +0 -0
  423. /package/{themes → src/lib}/components/filter/filter.component.scss +0 -0
  424. /package/{themes → src/lib}/components/http-responses-pages/forbidden-403/forbidden-403.component.scss +0 -0
  425. /package/{themes → src/lib}/components/image/image.component.scss +0 -0
  426. /package/{themes → src/lib}/components/info-popover/info-popover.component.scss +0 -0
  427. /package/{themes → src/lib}/components/inputs/input-bool/input-bool.component.scss +0 -0
  428. /package/{themes → src/lib}/components/inputs/input-color/input-color.component.scss +0 -0
  429. /package/{themes/components/inputs/input-cpf-cnpj/input-cpf-cnpj.component.scss → src/lib/components/inputs/input-color/input-color.configuration.ts} +0 -0
  430. /package/{themes/components/inputs/input-loading/input-loading.component.scss → src/lib/components/inputs/input-cpf-cnpj/input-cpf-cnpj.component.scss} +0 -0
  431. /package/{themes → src/lib}/components/inputs/input-date/input-date.component.scss +0 -0
  432. /package/{themes → src/lib}/components/inputs/input-decimal/input-decimal.component.scss +0 -0
  433. /package/{themes → src/lib}/components/inputs/input-file/download-button/download-button.component.scss +0 -0
  434. /package/{themes → src/lib}/components/inputs/input-file/input-file.component.scss +0 -0
  435. /package/{themes/components/inputs/input-select/input-select-internal-option/input-select-internal-option.component.scss → src/lib/components/inputs/input-loading/input-bool.configuration.ts} +0 -0
  436. /package/{themes/components/inputs/input-select/input-select-option/input-select-option.component.scss → src/lib/components/inputs/input-loading/input-loading.component.scss} +0 -0
  437. /package/{themes/components/inputs/input-string/input-string.component.scss → src/lib/components/inputs/input-select/input-select-internal-option/input-select-internal-option.component.scss} +0 -0
  438. /package/{themes/components/inputs/input-textarea/input-textarea.component.scss → src/lib/components/inputs/input-select/input-select-option/input-select-option.component.scss} +0 -0
  439. /package/{themes → src/lib}/components/inputs/input-select/input-select.component.scss +0 -0
  440. /package/{themes/components/loading/loading.component.scss → src/lib/components/inputs/input-string/input-string.component.scss} +0 -0
  441. /package/{themes/components/stepper/stepper.component.scss → src/lib/components/inputs/input-textarea/input-textarea.component.scss} +0 -0
  442. /package/{themes → src/lib}/components/inputs/inputs.scss +0 -0
  443. /package/{themes/components/tabs/tab/tab.component.scss → src/lib/components/loading/loading.component.scss} +0 -0
  444. /package/{themes → src/lib}/components/login/login-admin/login-admin.component.scss +0 -0
  445. /package/{themes → src/lib}/components/login/login.component.scss +0 -0
  446. /package/{themes → src/lib}/components/main-content/main-content.component.scss +0 -0
  447. /package/{themes → src/lib}/components/stepper/step/step.component.scss +0 -0
  448. /package/{themes/components/text-tooltip/text-tooltip.component.scss → src/lib/components/stepper/stepper.component.scss} +0 -0
  449. /package/{themes → src/lib}/components/tabs/tabs/tabs.component.scss +0 -0
  450. /package/{themes → src/lib}/components/tooltip/tooltip.component.scss +0 -0
  451. /package/{themes → src/lib}/styles/components.scss +0 -0
  452. /package/{themes → src/lib}/styles/ionic/ion-action-sheet.scss +0 -0
  453. /package/{themes → src/lib}/styles/ionic/ion-alert.scss +0 -0
  454. /package/{themes → src/lib}/styles/ionic/ion-button.scss +0 -0
  455. /package/{themes → src/lib}/styles/ionic/ion-card.scss +0 -0
  456. /package/{themes → src/lib}/styles/ionic/ion-content.scss +0 -0
  457. /package/{themes → src/lib}/styles/ionic/ion-datetime.scss +0 -0
  458. /package/{themes → src/lib}/styles/ionic/ion-item.scss +0 -0
  459. /package/{themes → src/lib}/styles/ionic/ion-list.scss +0 -0
  460. /package/{themes → src/lib}/styles/ionic/ion-modal.scss +0 -0
  461. /package/{themes → src/lib}/styles/ionic/ion-popover.scss +0 -0
  462. /package/{themes → src/lib}/styles/ionic/ion-progress-bar.scss +0 -0
  463. /package/{themes → src/lib}/styles/ionic/ion-searchbar.scss +0 -0
  464. /package/{themes → src/lib}/styles/ionic/ion-toast.scss +0 -0
  465. /package/{themes → src/lib}/styles/ionic.scss +0 -0
  466. /package/{themes → src/lib}/styles/login-default.scss +0 -0
  467. /package/{themes → src/lib}/styles/mixins.scss +0 -0
  468. /package/{themes → src/lib}/styles/styles.scss +0 -0
  469. /package/{themes → src/lib}/styles/translucid.scss +0 -0
@@ -1,2339 +1,2339 @@
1
- *, ::before, ::after {
2
- --tw-border-spacing-x: 0;
3
- --tw-border-spacing-y: 0;
4
- --tw-translate-x: 0;
5
- --tw-translate-y: 0;
6
- --tw-rotate: 0;
7
- --tw-skew-x: 0;
8
- --tw-skew-y: 0;
9
- --tw-scale-x: 1;
10
- --tw-scale-y: 1;
11
- --tw-pan-x: ;
12
- --tw-pan-y: ;
13
- --tw-pinch-zoom: ;
14
- --tw-scroll-snap-strictness: proximity;
15
- --tw-gradient-from-position: ;
16
- --tw-gradient-via-position: ;
17
- --tw-gradient-to-position: ;
18
- --tw-ordinal: ;
19
- --tw-slashed-zero: ;
20
- --tw-numeric-figure: ;
21
- --tw-numeric-spacing: ;
22
- --tw-numeric-fraction: ;
23
- --tw-ring-inset: ;
24
- --tw-ring-offset-width: 0px;
25
- --tw-ring-offset-color: #fff;
26
- --tw-ring-color: rgb(59 130 246 / 0.5);
27
- --tw-ring-offset-shadow: 0 0 #0000;
28
- --tw-ring-shadow: 0 0 #0000;
29
- --tw-shadow: 0 0 #0000;
30
- --tw-shadow-colored: 0 0 #0000;
31
- --tw-blur: ;
32
- --tw-brightness: ;
33
- --tw-contrast: ;
34
- --tw-grayscale: ;
35
- --tw-hue-rotate: ;
36
- --tw-invert: ;
37
- --tw-saturate: ;
38
- --tw-sepia: ;
39
- --tw-drop-shadow: ;
40
- --tw-backdrop-blur: ;
41
- --tw-backdrop-brightness: ;
42
- --tw-backdrop-contrast: ;
43
- --tw-backdrop-grayscale: ;
44
- --tw-backdrop-hue-rotate: ;
45
- --tw-backdrop-invert: ;
46
- --tw-backdrop-opacity: ;
47
- --tw-backdrop-saturate: ;
48
- --tw-backdrop-sepia: ;
49
- --tw-contain-size: ;
50
- --tw-contain-layout: ;
51
- --tw-contain-paint: ;
52
- --tw-contain-style: ;
53
- }
54
-
55
- ::backdrop {
56
- --tw-border-spacing-x: 0;
57
- --tw-border-spacing-y: 0;
58
- --tw-translate-x: 0;
59
- --tw-translate-y: 0;
60
- --tw-rotate: 0;
61
- --tw-skew-x: 0;
62
- --tw-skew-y: 0;
63
- --tw-scale-x: 1;
64
- --tw-scale-y: 1;
65
- --tw-pan-x: ;
66
- --tw-pan-y: ;
67
- --tw-pinch-zoom: ;
68
- --tw-scroll-snap-strictness: proximity;
69
- --tw-gradient-from-position: ;
70
- --tw-gradient-via-position: ;
71
- --tw-gradient-to-position: ;
72
- --tw-ordinal: ;
73
- --tw-slashed-zero: ;
74
- --tw-numeric-figure: ;
75
- --tw-numeric-spacing: ;
76
- --tw-numeric-fraction: ;
77
- --tw-ring-inset: ;
78
- --tw-ring-offset-width: 0px;
79
- --tw-ring-offset-color: #fff;
80
- --tw-ring-color: rgb(59 130 246 / 0.5);
81
- --tw-ring-offset-shadow: 0 0 #0000;
82
- --tw-ring-shadow: 0 0 #0000;
83
- --tw-shadow: 0 0 #0000;
84
- --tw-shadow-colored: 0 0 #0000;
85
- --tw-blur: ;
86
- --tw-brightness: ;
87
- --tw-contrast: ;
88
- --tw-grayscale: ;
89
- --tw-hue-rotate: ;
90
- --tw-invert: ;
91
- --tw-saturate: ;
92
- --tw-sepia: ;
93
- --tw-drop-shadow: ;
94
- --tw-backdrop-blur: ;
95
- --tw-backdrop-brightness: ;
96
- --tw-backdrop-contrast: ;
97
- --tw-backdrop-grayscale: ;
98
- --tw-backdrop-hue-rotate: ;
99
- --tw-backdrop-invert: ;
100
- --tw-backdrop-opacity: ;
101
- --tw-backdrop-saturate: ;
102
- --tw-backdrop-sepia: ;
103
- --tw-contain-size: ;
104
- --tw-contain-layout: ;
105
- --tw-contain-paint: ;
106
- --tw-contain-style: ;
107
- }
108
-
109
- /*
110
- ! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com
111
- */
112
-
113
- /*
114
- 1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
115
- 2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
116
- */
117
-
118
- *,
119
- ::before,
120
- ::after {
121
- box-sizing: border-box;
122
- /* 1 */
123
- border-width: 0;
124
- /* 2 */
125
- border-style: solid;
126
- /* 2 */
127
- border-color: #e5e7eb;
128
- /* 2 */
129
- }
130
-
131
- ::before,
132
- ::after {
133
- --tw-content: '';
134
- }
135
-
136
- /*
137
- 1. Use a consistent sensible line-height in all browsers.
138
- 2. Prevent adjustments of font size after orientation changes in iOS.
139
- 3. Use a more readable tab size.
140
- 4. Use the user's configured `sans` font-family by default.
141
- 5. Use the user's configured `sans` font-feature-settings by default.
142
- 6. Use the user's configured `sans` font-variation-settings by default.
143
- 7. Disable tap highlights on iOS
144
- */
145
-
146
- html,
147
- :host {
148
- line-height: 1.5;
149
- /* 1 */
150
- -webkit-text-size-adjust: 100%;
151
- /* 2 */
152
- -moz-tab-size: 4;
153
- /* 3 */
154
- tab-size: 4;
155
- /* 3 */
156
- font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
157
- /* 4 */
158
- font-feature-settings: normal;
159
- /* 5 */
160
- font-variation-settings: normal;
161
- /* 6 */
162
- -webkit-tap-highlight-color: transparent;
163
- /* 7 */
164
- }
165
-
166
- /*
167
- 1. Remove the margin in all browsers.
168
- 2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
169
- */
170
-
171
- body {
172
- margin: 0;
173
- /* 1 */
174
- line-height: inherit;
175
- /* 2 */
176
- }
177
-
178
- /*
179
- 1. Add the correct height in Firefox.
180
- 2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
181
- 3. Ensure horizontal rules are visible by default.
182
- */
183
-
184
- hr {
185
- height: 0;
186
- /* 1 */
187
- color: inherit;
188
- /* 2 */
189
- border-top-width: 1px;
190
- /* 3 */
191
- }
192
-
193
- /*
194
- Add the correct text decoration in Chrome, Edge, and Safari.
195
- */
196
-
197
- abbr:where([title]) {
198
- -webkit-text-decoration: underline dotted;
199
- text-decoration: underline dotted;
200
- }
201
-
202
- /*
203
- Remove the default font size and weight for headings.
204
- */
205
-
206
- h1,
207
- h2,
208
- h3,
209
- h4,
210
- h5,
211
- h6 {
212
- font-size: inherit;
213
- font-weight: inherit;
214
- }
215
-
216
- /*
217
- Reset links to optimize for opt-in styling instead of opt-out.
218
- */
219
-
220
- a {
221
- color: inherit;
222
- text-decoration: inherit;
223
- }
224
-
225
- /*
226
- Add the correct font weight in Edge and Safari.
227
- */
228
-
229
- b,
230
- strong {
231
- font-weight: bolder;
232
- }
233
-
234
- /*
235
- 1. Use the user's configured `mono` font-family by default.
236
- 2. Use the user's configured `mono` font-feature-settings by default.
237
- 3. Use the user's configured `mono` font-variation-settings by default.
238
- 4. Correct the odd `em` font sizing in all browsers.
239
- */
240
-
241
- code,
242
- kbd,
243
- samp,
244
- pre {
245
- font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
246
- /* 1 */
247
- font-feature-settings: normal;
248
- /* 2 */
249
- font-variation-settings: normal;
250
- /* 3 */
251
- font-size: 1em;
252
- /* 4 */
253
- }
254
-
255
- /*
256
- Add the correct font size in all browsers.
257
- */
258
-
259
- small {
260
- font-size: 80%;
261
- }
262
-
263
- /*
264
- Prevent `sub` and `sup` elements from affecting the line height in all browsers.
265
- */
266
-
267
- sub,
268
- sup {
269
- font-size: 75%;
270
- line-height: 0;
271
- position: relative;
272
- vertical-align: baseline;
273
- }
274
-
275
- sub {
276
- bottom: -0.25em;
277
- }
278
-
279
- sup {
280
- top: -0.5em;
281
- }
282
-
283
- /*
284
- 1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
285
- 2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
286
- 3. Remove gaps between table borders by default.
287
- */
288
-
289
- table {
290
- text-indent: 0;
291
- /* 1 */
292
- border-color: inherit;
293
- /* 2 */
294
- border-collapse: collapse;
295
- /* 3 */
296
- }
297
-
298
- /*
299
- 1. Change the font styles in all browsers.
300
- 2. Remove the margin in Firefox and Safari.
301
- 3. Remove default padding in all browsers.
302
- */
303
-
304
- button,
305
- input,
306
- optgroup,
307
- select,
308
- textarea {
309
- font-family: inherit;
310
- /* 1 */
311
- font-feature-settings: inherit;
312
- /* 1 */
313
- font-variation-settings: inherit;
314
- /* 1 */
315
- font-size: 100%;
316
- /* 1 */
317
- font-weight: inherit;
318
- /* 1 */
319
- line-height: inherit;
320
- /* 1 */
321
- letter-spacing: inherit;
322
- /* 1 */
323
- color: inherit;
324
- /* 1 */
325
- margin: 0;
326
- /* 2 */
327
- padding: 0;
328
- /* 3 */
329
- }
330
-
331
- /*
332
- Remove the inheritance of text transform in Edge and Firefox.
333
- */
334
-
335
- button,
336
- select {
337
- text-transform: none;
338
- }
339
-
340
- /*
341
- 1. Correct the inability to style clickable types in iOS and Safari.
342
- 2. Remove default button styles.
343
- */
344
-
345
- button,
346
- input:where([type='button']),
347
- input:where([type='reset']),
348
- input:where([type='submit']) {
349
- -webkit-appearance: button;
350
- /* 1 */
351
- background-color: transparent;
352
- /* 2 */
353
- background-image: none;
354
- /* 2 */
355
- }
356
-
357
- /*
358
- Use the modern Firefox focus style for all focusable elements.
359
- */
360
-
361
- :-moz-focusring {
362
- outline: auto;
363
- }
364
-
365
- /*
366
- Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
367
- */
368
-
369
- :-moz-ui-invalid {
370
- box-shadow: none;
371
- }
372
-
373
- /*
374
- Add the correct vertical alignment in Chrome and Firefox.
375
- */
376
-
377
- progress {
378
- vertical-align: baseline;
379
- }
380
-
381
- /*
382
- Correct the cursor style of increment and decrement buttons in Safari.
383
- */
384
-
385
- ::-webkit-inner-spin-button,
386
- ::-webkit-outer-spin-button {
387
- height: auto;
388
- }
389
-
390
- /*
391
- 1. Correct the odd appearance in Chrome and Safari.
392
- 2. Correct the outline style in Safari.
393
- */
394
-
395
- [type='search'] {
396
- -webkit-appearance: textfield;
397
- /* 1 */
398
- outline-offset: -2px;
399
- /* 2 */
400
- }
401
-
402
- /*
403
- Remove the inner padding in Chrome and Safari on macOS.
404
- */
405
-
406
- ::-webkit-search-decoration {
407
- -webkit-appearance: none;
408
- }
409
-
410
- /*
411
- 1. Correct the inability to style clickable types in iOS and Safari.
412
- 2. Change font properties to `inherit` in Safari.
413
- */
414
-
415
- ::-webkit-file-upload-button {
416
- -webkit-appearance: button;
417
- /* 1 */
418
- font: inherit;
419
- /* 2 */
420
- }
421
-
422
- /*
423
- Add the correct display in Chrome and Safari.
424
- */
425
-
426
- summary {
427
- display: list-item;
428
- }
429
-
430
- /*
431
- Removes the default spacing and border for appropriate elements.
432
- */
433
-
434
- blockquote,
435
- dl,
436
- dd,
437
- h1,
438
- h2,
439
- h3,
440
- h4,
441
- h5,
442
- h6,
443
- hr,
444
- figure,
445
- p,
446
- pre {
447
- margin: 0;
448
- }
449
-
450
- fieldset {
451
- margin: 0;
452
- padding: 0;
453
- }
454
-
455
- legend {
456
- padding: 0;
457
- }
458
-
459
- ol,
460
- ul,
461
- menu {
462
- list-style: none;
463
- margin: 0;
464
- padding: 0;
465
- }
466
-
467
- /*
468
- Reset default styling for dialogs.
469
- */
470
-
471
- dialog {
472
- padding: 0;
473
- }
474
-
475
- /*
476
- Prevent resizing textareas horizontally by default.
477
- */
478
-
479
- textarea {
480
- resize: vertical;
481
- }
482
-
483
- /*
484
- 1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
485
- 2. Set the default placeholder color to the user's configured gray 400 color.
486
- */
487
-
488
- input::placeholder,
489
- textarea::placeholder {
490
- opacity: 1;
491
- /* 1 */
492
- color: #9ca3af;
493
- /* 2 */
494
- }
495
-
496
- /*
497
- Set the default cursor for buttons.
498
- */
499
-
500
- button,
501
- [role="button"] {
502
- cursor: pointer;
503
- }
504
-
505
- /*
506
- Make sure disabled buttons don't get the pointer cursor.
507
- */
508
-
509
- :disabled {
510
- cursor: default;
511
- }
512
-
513
- /*
514
- 1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
515
- 2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
516
- This can trigger a poorly considered lint error in some tools but is included by design.
517
- */
518
-
519
- img,
520
- svg,
521
- video,
522
- canvas,
523
- audio,
524
- iframe,
525
- embed,
526
- object {
527
- display: block;
528
- /* 1 */
529
- vertical-align: middle;
530
- /* 2 */
531
- }
532
-
533
- /*
534
- Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
535
- */
536
-
537
- img,
538
- video {
539
- max-width: 100%;
540
- height: auto;
541
- }
542
-
543
- /* Make elements with the HTML hidden attribute stay hidden by default */
544
-
545
- [hidden]:where(:not([hidden="until-found"])) {
546
- display: none;
547
- }
548
-
549
- .container {
550
- width: 100%;
551
- }
552
-
553
- @media (min-width: 640px) {
554
- .container {
555
- max-width: 640px;
556
- }
557
- }
558
-
559
- @media (min-width: 768px) {
560
- .container {
561
- max-width: 768px;
562
- }
563
- }
564
-
565
- @media (min-width: 1024px) {
566
- .container {
567
- max-width: 1024px;
568
- }
569
- }
570
-
571
- @media (min-width: 1280px) {
572
- .container {
573
- max-width: 1280px;
574
- }
575
- }
576
-
577
- @media (min-width: 1536px) {
578
- .container {
579
- max-width: 1536px;
580
- }
581
- }
582
-
583
- .\!pointer-events-none {
584
- pointer-events: none !important;
585
- }
586
-
587
- .pointer-events-none {
588
- pointer-events: none;
589
- }
590
-
591
- .visible {
592
- visibility: visible;
593
- }
594
-
595
- .collapse {
596
- visibility: collapse;
597
- }
598
-
599
- .static {
600
- position: static;
601
- }
602
-
603
- .fixed {
604
- position: fixed;
605
- }
606
-
607
- .absolute {
608
- position: absolute;
609
- }
610
-
611
- .\!relative {
612
- position: relative !important;
613
- }
614
-
615
- .relative {
616
- position: relative;
617
- }
618
-
619
- .sticky {
620
- position: sticky;
621
- }
622
-
623
- .-inset-1 {
624
- inset: -0.25rem;
625
- }
626
-
627
- .inset-0 {
628
- inset: 0px;
629
- }
630
-
631
- .-bottom-1 {
632
- bottom: -0.25rem;
633
- }
634
-
635
- .-left-1 {
636
- left: -0.25rem;
637
- }
638
-
639
- .-left-\[12\.5\%\] {
640
- left: -12.5%;
641
- }
642
-
643
- .-right-1 {
644
- right: -0.25rem;
645
- }
646
-
647
- .-top-1 {
648
- top: -0.25rem;
649
- }
650
-
651
- .-top-\[12\.5\%\] {
652
- top: -12.5%;
653
- }
654
-
655
- .bottom-0 {
656
- bottom: 0px;
657
- }
658
-
659
- .bottom-1 {
660
- bottom: 0.25rem;
661
- }
662
-
663
- .bottom-1\/2 {
664
- bottom: 50%;
665
- }
666
-
667
- .bottom-3 {
668
- bottom: 0.75rem;
669
- }
670
-
671
- .bottom-\[calc\(100\%\+0\.5rem\)\] {
672
- bottom: calc(100% + 0.5rem);
673
- }
674
-
675
- .left-0 {
676
- left: 0px;
677
- }
678
-
679
- .left-1 {
680
- left: 0.25rem;
681
- }
682
-
683
- .left-1\/2 {
684
- left: 50%;
685
- }
686
-
687
- .left-14 {
688
- left: 3.5rem;
689
- }
690
-
691
- .left-3 {
692
- left: 0.75rem;
693
- }
694
-
695
- .left-\[calc\(100\%\+0\.5rem\)\] {
696
- left: calc(100% + 0.5rem);
697
- }
698
-
699
- .right-0 {
700
- right: 0px;
701
- }
702
-
703
- .right-1 {
704
- right: 0.25rem;
705
- }
706
-
707
- .right-1\/2 {
708
- right: 50%;
709
- }
710
-
711
- .right-12 {
712
- right: 3rem;
713
- }
714
-
715
- .right-2 {
716
- right: 0.5rem;
717
- }
718
-
719
- .right-3 {
720
- right: 0.75rem;
721
- }
722
-
723
- .right-\[calc\(100\%\+0\.5rem\)\] {
724
- right: calc(100% + 0.5rem);
725
- }
726
-
727
- .top-0 {
728
- top: 0px;
729
- }
730
-
731
- .top-1 {
732
- top: 0.25rem;
733
- }
734
-
735
- .top-1\/2 {
736
- top: 50%;
737
- }
738
-
739
- .top-10 {
740
- top: 2.5rem;
741
- }
742
-
743
- .top-3 {
744
- top: 0.75rem;
745
- }
746
-
747
- .top-\[calc\(100\%\+0\.5rem\)\] {
748
- top: calc(100% + 0.5rem);
749
- }
750
-
751
- .\!-z-50 {
752
- z-index: -50 !important;
753
- }
754
-
755
- .\!z-0 {
756
- z-index: 0 !important;
757
- }
758
-
759
- .\!z-20 {
760
- z-index: 20 !important;
761
- }
762
-
763
- .-z-10 {
764
- z-index: -10;
765
- }
766
-
767
- .-z-30 {
768
- z-index: -30;
769
- }
770
-
771
- .-z-50 {
772
- z-index: -50;
773
- }
774
-
775
- .z-0 {
776
- z-index: 0;
777
- }
778
-
779
- .z-10 {
780
- z-index: 10;
781
- }
782
-
783
- .z-20 {
784
- z-index: 20;
785
- }
786
-
787
- .z-30 {
788
- z-index: 30;
789
- }
790
-
791
- .z-50 {
792
- z-index: 50;
793
- }
794
-
795
- .z-\[100\] {
796
- z-index: 100;
797
- }
798
-
799
- .z-\[90\] {
800
- z-index: 90;
801
- }
802
-
803
- .order-1 {
804
- order: 1;
805
- }
806
-
807
- .order-2 {
808
- order: 2;
809
- }
810
-
811
- .order-3 {
812
- order: 3;
813
- }
814
-
815
- .col-span-2 {
816
- grid-column: span 2 / span 2;
817
- }
818
-
819
- .col-span-3 {
820
- grid-column: span 3 / span 3;
821
- }
822
-
823
- .col-span-6 {
824
- grid-column: span 6 / span 6;
825
- }
826
-
827
- .col-span-8 {
828
- grid-column: span 8 / span 8;
829
- }
830
-
831
- .col-span-full {
832
- grid-column: 1 / -1;
833
- }
834
-
835
- .m-0 {
836
- margin: 0px;
837
- }
838
-
839
- .-mx-2 {
840
- margin-left: -0.5rem;
841
- margin-right: -0.5rem;
842
- }
843
-
844
- .mx-1 {
845
- margin-left: 0.25rem;
846
- margin-right: 0.25rem;
847
- }
848
-
849
- .mx-2 {
850
- margin-left: 0.5rem;
851
- margin-right: 0.5rem;
852
- }
853
-
854
- .mx-auto {
855
- margin-left: auto;
856
- margin-right: auto;
857
- }
858
-
859
- .my-1 {
860
- margin-top: 0.25rem;
861
- margin-bottom: 0.25rem;
862
- }
863
-
864
- .my-10 {
865
- margin-top: 2.5rem;
866
- margin-bottom: 2.5rem;
867
- }
868
-
869
- .my-2 {
870
- margin-top: 0.5rem;
871
- margin-bottom: 0.5rem;
872
- }
873
-
874
- .my-3 {
875
- margin-top: 0.75rem;
876
- margin-bottom: 0.75rem;
877
- }
878
-
879
- .my-auto {
880
- margin-top: auto;
881
- margin-bottom: auto;
882
- }
883
-
884
- .-mb-1 {
885
- margin-bottom: -0.25rem;
886
- }
887
-
888
- .-ml-1 {
889
- margin-left: -0.25rem;
890
- }
891
-
892
- .-mr-4 {
893
- margin-right: -1rem;
894
- }
895
-
896
- .-mt-1 {
897
- margin-top: -0.25rem;
898
- }
899
-
900
- .mb-2 {
901
- margin-bottom: 0.5rem;
902
- }
903
-
904
- .mb-auto {
905
- margin-bottom: auto;
906
- }
907
-
908
- .ml-2 {
909
- margin-left: 0.5rem;
910
- }
911
-
912
- .ml-3 {
913
- margin-left: 0.75rem;
914
- }
915
-
916
- .mr-1 {
917
- margin-right: 0.25rem;
918
- }
919
-
920
- .mr-2 {
921
- margin-right: 0.5rem;
922
- }
923
-
924
- .mt-1 {
925
- margin-top: 0.25rem;
926
- }
927
-
928
- .mt-2 {
929
- margin-top: 0.5rem;
930
- }
931
-
932
- .mt-3 {
933
- margin-top: 0.75rem;
934
- }
935
-
936
- .mt-4 {
937
- margin-top: 1rem;
938
- }
939
-
940
- .mt-auto {
941
- margin-top: auto;
942
- }
943
-
944
- .\!block {
945
- display: block !important;
946
- }
947
-
948
- .block {
949
- display: block;
950
- }
951
-
952
- .flex {
953
- display: flex;
954
- }
955
-
956
- .table {
957
- display: table;
958
- }
959
-
960
- .\!grid {
961
- display: grid !important;
962
- }
963
-
964
- .grid {
965
- display: grid;
966
- }
967
-
968
- .contents {
969
- display: contents;
970
- }
971
-
972
- .\!hidden {
973
- display: none !important;
974
- }
975
-
976
- .hidden {
977
- display: none;
978
- }
979
-
980
- .aspect-square {
981
- aspect-ratio: 1 / 1;
982
- }
983
-
984
- .\!size-full {
985
- width: 100% !important;
986
- height: 100% !important;
987
- }
988
-
989
- .size-0 {
990
- width: 0px;
991
- height: 0px;
992
- }
993
-
994
- .size-10 {
995
- width: 2.5rem;
996
- height: 2.5rem;
997
- }
998
-
999
- .size-12 {
1000
- width: 3rem;
1001
- height: 3rem;
1002
- }
1003
-
1004
- .size-8 {
1005
- width: 2rem;
1006
- height: 2rem;
1007
- }
1008
-
1009
- .size-full {
1010
- width: 100%;
1011
- height: 100%;
1012
- }
1013
-
1014
- .\!h-0 {
1015
- height: 0px !important;
1016
- }
1017
-
1018
- .\!h-10 {
1019
- height: 2.5rem !important;
1020
- }
1021
-
1022
- .h-0 {
1023
- height: 0px;
1024
- }
1025
-
1026
- .h-1 {
1027
- height: 0.25rem;
1028
- }
1029
-
1030
- .h-10 {
1031
- height: 2.5rem;
1032
- }
1033
-
1034
- .h-12 {
1035
- height: 3rem;
1036
- }
1037
-
1038
- .h-14 {
1039
- height: 3.5rem;
1040
- }
1041
-
1042
- .h-16 {
1043
- height: 4rem;
1044
- }
1045
-
1046
- .h-2 {
1047
- height: 0.5rem;
1048
- }
1049
-
1050
- .h-24 {
1051
- height: 6rem;
1052
- }
1053
-
1054
- .h-3 {
1055
- height: 0.75rem;
1056
- }
1057
-
1058
- .h-32 {
1059
- height: 8rem;
1060
- }
1061
-
1062
- .h-4 {
1063
- height: 1rem;
1064
- }
1065
-
1066
- .h-40 {
1067
- height: 10rem;
1068
- }
1069
-
1070
- .h-48 {
1071
- height: 12rem;
1072
- }
1073
-
1074
- .h-5 {
1075
- height: 1.25rem;
1076
- }
1077
-
1078
- .h-6 {
1079
- height: 1.5rem;
1080
- }
1081
-
1082
- .h-7 {
1083
- height: 1.75rem;
1084
- }
1085
-
1086
- .h-8 {
1087
- height: 2rem;
1088
- }
1089
-
1090
- .h-\[12\.5rem\] {
1091
- height: 12.5rem;
1092
- }
1093
-
1094
- .h-\[125\%\] {
1095
- height: 125%;
1096
- }
1097
-
1098
- .h-\[22px\] {
1099
- height: 22px;
1100
- }
1101
-
1102
- .h-\[calc\(100\%\+var\(--padding-top\)\+var\(--padding-bottom\)\)\] {
1103
- height: calc(100% + var(--padding-top) + var(--padding-bottom));
1104
- }
1105
-
1106
- .h-fit {
1107
- height: -moz-fit-content;
1108
- height: fit-content;
1109
- }
1110
-
1111
- .h-full {
1112
- height: 100%;
1113
- }
1114
-
1115
- .\!max-h-full {
1116
- max-height: 100% !important;
1117
- }
1118
-
1119
- .max-h-full {
1120
- max-height: 100%;
1121
- }
1122
-
1123
- .min-h-0 {
1124
- min-height: 0px;
1125
- }
1126
-
1127
- .min-h-10 {
1128
- min-height: 2.5rem;
1129
- }
1130
-
1131
- .min-h-8 {
1132
- min-height: 2rem;
1133
- }
1134
-
1135
- .min-h-fit {
1136
- min-height: -moz-fit-content;
1137
- min-height: fit-content;
1138
- }
1139
-
1140
- .min-h-screen {
1141
- min-height: 100vh;
1142
- }
1143
-
1144
- .\!w-0 {
1145
- width: 0px !important;
1146
- }
1147
-
1148
- .\!w-16 {
1149
- width: 4rem !important;
1150
- }
1151
-
1152
- .w-0 {
1153
- width: 0px;
1154
- }
1155
-
1156
- .w-1 {
1157
- width: 0.25rem;
1158
- }
1159
-
1160
- .w-1\/2 {
1161
- width: 50%;
1162
- }
1163
-
1164
- .w-10 {
1165
- width: 2.5rem;
1166
- }
1167
-
1168
- .w-12 {
1169
- width: 3rem;
1170
- }
1171
-
1172
- .w-16 {
1173
- width: 4rem;
1174
- }
1175
-
1176
- .w-3 {
1177
- width: 0.75rem;
1178
- }
1179
-
1180
- .w-4 {
1181
- width: 1rem;
1182
- }
1183
-
1184
- .w-44 {
1185
- width: 11rem;
1186
- }
1187
-
1188
- .w-48 {
1189
- width: 12rem;
1190
- }
1191
-
1192
- .w-56 {
1193
- width: 14rem;
1194
- }
1195
-
1196
- .w-6 {
1197
- width: 1.5rem;
1198
- }
1199
-
1200
- .w-8 {
1201
- width: 2rem;
1202
- }
1203
-
1204
- .w-96 {
1205
- width: 24rem;
1206
- }
1207
-
1208
- .w-\[125\%\] {
1209
- width: 125%;
1210
- }
1211
-
1212
- .w-\[19rem\] {
1213
- width: 19rem;
1214
- }
1215
-
1216
- .w-\[calc\(100\%\+var\(--padding-end\)\+var\(--padding-start\)\)\] {
1217
- width: calc(100% + var(--padding-end) + var(--padding-start));
1218
- }
1219
-
1220
- .w-fit {
1221
- width: -moz-fit-content;
1222
- width: fit-content;
1223
- }
1224
-
1225
- .w-full {
1226
- width: 100%;
1227
- }
1228
-
1229
- .min-w-10 {
1230
- min-width: 2.5rem;
1231
- }
1232
-
1233
- .min-w-32 {
1234
- min-width: 8rem;
1235
- }
1236
-
1237
- .min-w-6 {
1238
- min-width: 1.5rem;
1239
- }
1240
-
1241
- .min-w-8 {
1242
- min-width: 2rem;
1243
- }
1244
-
1245
- .min-w-fit {
1246
- min-width: -moz-fit-content;
1247
- min-width: fit-content;
1248
- }
1249
-
1250
- .min-w-full {
1251
- min-width: 100%;
1252
- }
1253
-
1254
- .min-w-min {
1255
- min-width: min-content;
1256
- }
1257
-
1258
- .max-w-full {
1259
- max-width: 100%;
1260
- }
1261
-
1262
- .max-w-md {
1263
- max-width: 28rem;
1264
- }
1265
-
1266
- .flex-1 {
1267
- flex: 1 1 0%;
1268
- }
1269
-
1270
- .flex-shrink {
1271
- flex-shrink: 1;
1272
- }
1273
-
1274
- .flex-shrink-0 {
1275
- flex-shrink: 0;
1276
- }
1277
-
1278
- .shrink {
1279
- flex-shrink: 1;
1280
- }
1281
-
1282
- .shrink-0 {
1283
- flex-shrink: 0;
1284
- }
1285
-
1286
- .flex-grow {
1287
- flex-grow: 1;
1288
- }
1289
-
1290
- .grow {
1291
- flex-grow: 1;
1292
- }
1293
-
1294
- .grow-0 {
1295
- flex-grow: 0;
1296
- }
1297
-
1298
- .basis-24 {
1299
- flex-basis: 6rem;
1300
- }
1301
-
1302
- .basis-full {
1303
- flex-basis: 100%;
1304
- }
1305
-
1306
- .border-collapse {
1307
- border-collapse: collapse;
1308
- }
1309
-
1310
- .\!-translate-y-12 {
1311
- --tw-translate-y: -3rem !important;
1312
- 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;
1313
- }
1314
-
1315
- .\!translate-x-0 {
1316
- --tw-translate-x: 0px !important;
1317
- 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;
1318
- }
1319
-
1320
- .\!translate-y-0 {
1321
- --tw-translate-y: 0px !important;
1322
- 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;
1323
- }
1324
-
1325
- .-translate-x-1 {
1326
- --tw-translate-x: -0.25rem;
1327
- 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));
1328
- }
1329
-
1330
- .-translate-x-1\/2 {
1331
- --tw-translate-x: -50%;
1332
- 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));
1333
- }
1334
-
1335
- .-translate-x-12 {
1336
- --tw-translate-x: -3rem;
1337
- 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));
1338
- }
1339
-
1340
- .-translate-x-4 {
1341
- --tw-translate-x: -1rem;
1342
- 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));
1343
- }
1344
-
1345
- .-translate-x-full {
1346
- --tw-translate-x: -100%;
1347
- 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));
1348
- }
1349
-
1350
- .-translate-y-12 {
1351
- --tw-translate-y: -3rem;
1352
- 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));
1353
- }
1354
-
1355
- .-translate-y-4 {
1356
- --tw-translate-y: -1rem;
1357
- 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));
1358
- }
1359
-
1360
- .-translate-y-8 {
1361
- --tw-translate-y: -2rem;
1362
- 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));
1363
- }
1364
-
1365
- .translate-x-0 {
1366
- --tw-translate-x: 0px;
1367
- 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));
1368
- }
1369
-
1370
- .translate-x-12 {
1371
- --tw-translate-x: 3rem;
1372
- 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));
1373
- }
1374
-
1375
- .translate-x-full {
1376
- --tw-translate-x: 100%;
1377
- 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));
1378
- }
1379
-
1380
- .translate-y-0 {
1381
- --tw-translate-y: 0px;
1382
- 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));
1383
- }
1384
-
1385
- .-rotate-45 {
1386
- --tw-rotate: -45deg;
1387
- 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));
1388
- }
1389
-
1390
- .-rotate-\[135deg\] {
1391
- --tw-rotate: -135deg;
1392
- 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));
1393
- }
1394
-
1395
- .rotate-45 {
1396
- --tw-rotate: 45deg;
1397
- 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));
1398
- }
1399
-
1400
- .rotate-\[135deg\] {
1401
- --tw-rotate: 135deg;
1402
- 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));
1403
- }
1404
-
1405
- .scale-75 {
1406
- --tw-scale-x: .75;
1407
- --tw-scale-y: .75;
1408
- 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));
1409
- }
1410
-
1411
- .transform {
1412
- 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));
1413
- }
1414
-
1415
- .cursor-pointer {
1416
- cursor: pointer;
1417
- }
1418
-
1419
- .select-none {
1420
- -webkit-user-select: none;
1421
- user-select: none;
1422
- }
1423
-
1424
- .resize {
1425
- resize: both;
1426
- }
1427
-
1428
- .\!grid-cols-1 {
1429
- grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
1430
- }
1431
-
1432
- .grid-cols-1 {
1433
- grid-template-columns: repeat(1, minmax(0, 1fr));
1434
- }
1435
-
1436
- .grid-cols-10 {
1437
- grid-template-columns: repeat(10, minmax(0, 1fr));
1438
- }
1439
-
1440
- .grid-cols-12 {
1441
- grid-template-columns: repeat(12, minmax(0, 1fr));
1442
- }
1443
-
1444
- .grid-cols-5 {
1445
- grid-template-columns: repeat(5, minmax(0, 1fr));
1446
- }
1447
-
1448
- .flex-row {
1449
- flex-direction: row;
1450
- }
1451
-
1452
- .flex-row-reverse {
1453
- flex-direction: row-reverse;
1454
- }
1455
-
1456
- .flex-col {
1457
- flex-direction: column;
1458
- }
1459
-
1460
- .flex-wrap {
1461
- flex-wrap: wrap;
1462
- }
1463
-
1464
- .items-start {
1465
- align-items: flex-start;
1466
- }
1467
-
1468
- .items-center {
1469
- align-items: center;
1470
- }
1471
-
1472
- .justify-start {
1473
- justify-content: flex-start;
1474
- }
1475
-
1476
- .justify-end {
1477
- justify-content: flex-end;
1478
- }
1479
-
1480
- .justify-center {
1481
- justify-content: center;
1482
- }
1483
-
1484
- .justify-between {
1485
- justify-content: space-between;
1486
- }
1487
-
1488
- .justify-evenly {
1489
- justify-content: space-evenly;
1490
- }
1491
-
1492
- .gap-0 {
1493
- gap: 0px;
1494
- }
1495
-
1496
- .gap-0\.5 {
1497
- gap: 0.125rem;
1498
- }
1499
-
1500
- .gap-1 {
1501
- gap: 0.25rem;
1502
- }
1503
-
1504
- .gap-2 {
1505
- gap: 0.5rem;
1506
- }
1507
-
1508
- .gap-3 {
1509
- gap: 0.75rem;
1510
- }
1511
-
1512
- .gap-4 {
1513
- gap: 1rem;
1514
- }
1515
-
1516
- .space-y-6 > :not([hidden]) ~ :not([hidden]) {
1517
- --tw-space-y-reverse: 0;
1518
- margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
1519
- margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
1520
- }
1521
-
1522
- .\!overflow-hidden {
1523
- overflow: hidden !important;
1524
- }
1525
-
1526
- .overflow-hidden {
1527
- overflow: hidden;
1528
- }
1529
-
1530
- .overflow-visible {
1531
- overflow: visible;
1532
- }
1533
-
1534
- .overflow-x-auto {
1535
- overflow-x: auto;
1536
- }
1537
-
1538
- .\!overflow-y-auto {
1539
- overflow-y: auto !important;
1540
- }
1541
-
1542
- .overflow-y-auto {
1543
- overflow-y: auto;
1544
- }
1545
-
1546
- .overflow-x-hidden {
1547
- overflow-x: hidden;
1548
- }
1549
-
1550
- .overflow-y-hidden {
1551
- overflow-y: hidden;
1552
- }
1553
-
1554
- .truncate {
1555
- overflow: hidden;
1556
- text-overflow: ellipsis;
1557
- white-space: nowrap;
1558
- }
1559
-
1560
- .text-ellipsis {
1561
- text-overflow: ellipsis;
1562
- }
1563
-
1564
- .whitespace-nowrap {
1565
- white-space: nowrap;
1566
- }
1567
-
1568
- .text-wrap {
1569
- text-wrap: wrap;
1570
- }
1571
-
1572
- .text-nowrap {
1573
- text-wrap: nowrap;
1574
- }
1575
-
1576
- .\!rounded-2xl {
1577
- border-radius: 1rem !important;
1578
- }
1579
-
1580
- .\!rounded-none {
1581
- border-radius: 0px !important;
1582
- }
1583
-
1584
- .rounded {
1585
- border-radius: 0.25rem;
1586
- }
1587
-
1588
- .rounded-2xl {
1589
- border-radius: 1rem;
1590
- }
1591
-
1592
- .rounded-3xl {
1593
- border-radius: 1.5rem;
1594
- }
1595
-
1596
- .rounded-full {
1597
- border-radius: 9999px;
1598
- }
1599
-
1600
- .rounded-lg {
1601
- border-radius: 0.5rem;
1602
- }
1603
-
1604
- .rounded-md {
1605
- border-radius: 0.375rem;
1606
- }
1607
-
1608
- .rounded-none {
1609
- border-radius: 0px;
1610
- }
1611
-
1612
- .rounded-sm {
1613
- border-radius: 0.125rem;
1614
- }
1615
-
1616
- .rounded-xl {
1617
- border-radius: 0.75rem;
1618
- }
1619
-
1620
- .\!rounded-l-2xl {
1621
- border-top-left-radius: 1rem !important;
1622
- border-bottom-left-radius: 1rem !important;
1623
- }
1624
-
1625
- .\!rounded-r-2xl {
1626
- border-top-right-radius: 1rem !important;
1627
- border-bottom-right-radius: 1rem !important;
1628
- }
1629
-
1630
- .\!rounded-r-none {
1631
- border-top-right-radius: 0px !important;
1632
- border-bottom-right-radius: 0px !important;
1633
- }
1634
-
1635
- .rounded-b-2xl {
1636
- border-bottom-right-radius: 1rem;
1637
- border-bottom-left-radius: 1rem;
1638
- }
1639
-
1640
- .rounded-l-2xl {
1641
- border-top-left-radius: 1rem;
1642
- border-bottom-left-radius: 1rem;
1643
- }
1644
-
1645
- .rounded-r-2xl {
1646
- border-top-right-radius: 1rem;
1647
- border-bottom-right-radius: 1rem;
1648
- }
1649
-
1650
- .rounded-r-lg {
1651
- border-top-right-radius: 0.5rem;
1652
- border-bottom-right-radius: 0.5rem;
1653
- }
1654
-
1655
- .rounded-t-2xl {
1656
- border-top-left-radius: 1rem;
1657
- border-top-right-radius: 1rem;
1658
- }
1659
-
1660
- .\!rounded-tr-none {
1661
- border-top-right-radius: 0px !important;
1662
- }
1663
-
1664
- .rounded-bl-2xl {
1665
- border-bottom-left-radius: 1rem;
1666
- }
1667
-
1668
- .rounded-tr-none {
1669
- border-top-right-radius: 0px;
1670
- }
1671
-
1672
- .\!border-0 {
1673
- border-width: 0px !important;
1674
- }
1675
-
1676
- .border {
1677
- border-width: 1px;
1678
- }
1679
-
1680
- .border-4 {
1681
- border-width: 4px;
1682
- }
1683
-
1684
- .\!border-x-0 {
1685
- border-left-width: 0px !important;
1686
- border-right-width: 0px !important;
1687
- }
1688
-
1689
- .\!border-y-0 {
1690
- border-top-width: 0px !important;
1691
- border-bottom-width: 0px !important;
1692
- }
1693
-
1694
- .border-x-0 {
1695
- border-left-width: 0px;
1696
- border-right-width: 0px;
1697
- }
1698
-
1699
- .\!border-b-0 {
1700
- border-bottom-width: 0px !important;
1701
- }
1702
-
1703
- .\!border-l-0 {
1704
- border-left-width: 0px !important;
1705
- }
1706
-
1707
- .\!border-r-0 {
1708
- border-right-width: 0px !important;
1709
- }
1710
-
1711
- .border-b {
1712
- border-bottom-width: 1px;
1713
- }
1714
-
1715
- .border-b-0 {
1716
- border-bottom-width: 0px;
1717
- }
1718
-
1719
- .border-l {
1720
- border-left-width: 1px;
1721
- }
1722
-
1723
- .border-l-2 {
1724
- border-left-width: 2px;
1725
- }
1726
-
1727
- .border-r {
1728
- border-right-width: 1px;
1729
- }
1730
-
1731
- .border-r-2 {
1732
- border-right-width: 2px;
1733
- }
1734
-
1735
- .border-solid {
1736
- border-style: solid;
1737
- }
1738
-
1739
- .border-dashed {
1740
- border-style: dashed;
1741
- }
1742
-
1743
- .border-none {
1744
- border-style: none;
1745
- }
1746
-
1747
- .border-\[var\(--ion-color-step-250\)\] {
1748
- border-color: var(--ion-color-step-250);
1749
- }
1750
-
1751
- .border-transparent {
1752
- border-color: transparent;
1753
- }
1754
-
1755
- .\!bg-transparent {
1756
- background-color: transparent !important;
1757
- }
1758
-
1759
- .bg-\[var\(--background\)\] {
1760
- background-color: var(--background);
1761
- }
1762
-
1763
- .bg-\[var\(--ion-color-secondary\)\] {
1764
- background-color: var(--ion-color-secondary);
1765
- }
1766
-
1767
- .bg-red-400 {
1768
- --tw-bg-opacity: 1;
1769
- background-color: rgb(248 113 113 / var(--tw-bg-opacity, 1));
1770
- }
1771
-
1772
- .bg-red-500 {
1773
- --tw-bg-opacity: 1;
1774
- background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
1775
- }
1776
-
1777
- .bg-transparent {
1778
- background-color: transparent;
1779
- }
1780
-
1781
- .bg-white {
1782
- --tw-bg-opacity: 1;
1783
- background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
1784
- }
1785
-
1786
- .bg-gradient-to-br {
1787
- background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
1788
- }
1789
-
1790
- .bg-gradient-to-r {
1791
- background-image: linear-gradient(to right, var(--tw-gradient-stops));
1792
- }
1793
-
1794
- .from-red-500 {
1795
- --tw-gradient-from: #ef4444 var(--tw-gradient-from-position);
1796
- --tw-gradient-to: rgb(239 68 68 / 0) var(--tw-gradient-to-position);
1797
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
1798
- }
1799
-
1800
- .from-rose-400 {
1801
- --tw-gradient-from: #fb7185 var(--tw-gradient-from-position);
1802
- --tw-gradient-to: rgb(251 113 133 / 0) var(--tw-gradient-to-position);
1803
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
1804
- }
1805
-
1806
- .to-pink-500 {
1807
- --tw-gradient-to: #ec4899 var(--tw-gradient-to-position);
1808
- }
1809
-
1810
- .to-red-900 {
1811
- --tw-gradient-to: #7f1d1d var(--tw-gradient-to-position);
1812
- }
1813
-
1814
- .object-contain {
1815
- object-fit: contain;
1816
- }
1817
-
1818
- .object-cover {
1819
- object-fit: cover;
1820
- }
1821
-
1822
- .object-fill {
1823
- object-fit: fill;
1824
- }
1825
-
1826
- .object-none {
1827
- object-fit: none;
1828
- }
1829
-
1830
- .object-scale-down {
1831
- object-fit: scale-down;
1832
- }
1833
-
1834
- .\!p-0 {
1835
- padding: 0px !important;
1836
- }
1837
-
1838
- .\!p-2 {
1839
- padding: 0.5rem !important;
1840
- }
1841
-
1842
- .\!p-8 {
1843
- padding: 2rem !important;
1844
- }
1845
-
1846
- .p-0 {
1847
- padding: 0px;
1848
- }
1849
-
1850
- .p-0\.5 {
1851
- padding: 0.125rem;
1852
- }
1853
-
1854
- .p-2 {
1855
- padding: 0.5rem;
1856
- }
1857
-
1858
- .p-3 {
1859
- padding: 0.75rem;
1860
- }
1861
-
1862
- .p-4 {
1863
- padding: 1rem;
1864
- }
1865
-
1866
- .p-8 {
1867
- padding: 2rem;
1868
- }
1869
-
1870
- .\!px-0 {
1871
- padding-left: 0px !important;
1872
- padding-right: 0px !important;
1873
- }
1874
-
1875
- .px-1 {
1876
- padding-left: 0.25rem;
1877
- padding-right: 0.25rem;
1878
- }
1879
-
1880
- .px-10 {
1881
- padding-left: 2.5rem;
1882
- padding-right: 2.5rem;
1883
- }
1884
-
1885
- .px-2 {
1886
- padding-left: 0.5rem;
1887
- padding-right: 0.5rem;
1888
- }
1889
-
1890
- .px-3 {
1891
- padding-left: 0.75rem;
1892
- padding-right: 0.75rem;
1893
- }
1894
-
1895
- .px-4 {
1896
- padding-left: 1rem;
1897
- padding-right: 1rem;
1898
- }
1899
-
1900
- .py-1 {
1901
- padding-top: 0.25rem;
1902
- padding-bottom: 0.25rem;
1903
- }
1904
-
1905
- .py-2 {
1906
- padding-top: 0.5rem;
1907
- padding-bottom: 0.5rem;
1908
- }
1909
-
1910
- .py-3 {
1911
- padding-top: 0.75rem;
1912
- padding-bottom: 0.75rem;
1913
- }
1914
-
1915
- .\!pb-0 {
1916
- padding-bottom: 0px !important;
1917
- }
1918
-
1919
- .pb-2 {
1920
- padding-bottom: 0.5rem;
1921
- }
1922
-
1923
- .pl-2 {
1924
- padding-left: 0.5rem;
1925
- }
1926
-
1927
- .pl-3 {
1928
- padding-left: 0.75rem;
1929
- }
1930
-
1931
- .pl-8 {
1932
- padding-left: 2rem;
1933
- }
1934
-
1935
- .pr-3 {
1936
- padding-right: 0.75rem;
1937
- }
1938
-
1939
- .pt-0 {
1940
- padding-top: 0px;
1941
- }
1942
-
1943
- .pt-1 {
1944
- padding-top: 0.25rem;
1945
- }
1946
-
1947
- .pt-2 {
1948
- padding-top: 0.5rem;
1949
- }
1950
-
1951
- .text-left {
1952
- text-align: left;
1953
- }
1954
-
1955
- .text-center {
1956
- text-align: center;
1957
- }
1958
-
1959
- .align-sub {
1960
- vertical-align: sub;
1961
- }
1962
-
1963
- .font-mono {
1964
- font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
1965
- }
1966
-
1967
- .\!text-sm {
1968
- font-size: 0.875rem !important;
1969
- line-height: 1.25rem !important;
1970
- }
1971
-
1972
- .text-2xl {
1973
- font-size: 1.5rem;
1974
- line-height: 2rem;
1975
- }
1976
-
1977
- .text-3xl {
1978
- font-size: 1.875rem;
1979
- line-height: 2.25rem;
1980
- }
1981
-
1982
- .text-4xl {
1983
- font-size: 2.25rem;
1984
- line-height: 2.5rem;
1985
- }
1986
-
1987
- .text-5xl {
1988
- font-size: 3rem;
1989
- line-height: 1;
1990
- }
1991
-
1992
- .text-8xl {
1993
- font-size: 6rem;
1994
- line-height: 1;
1995
- }
1996
-
1997
- .text-9xl {
1998
- font-size: 8rem;
1999
- line-height: 1;
2000
- }
2001
-
2002
- .text-\[1\.7rem\] {
2003
- font-size: 1.7rem;
2004
- }
2005
-
2006
- .text-base {
2007
- font-size: 1rem;
2008
- line-height: 1.5rem;
2009
- }
2010
-
2011
- .text-lg {
2012
- font-size: 1.125rem;
2013
- line-height: 1.75rem;
2014
- }
2015
-
2016
- .text-sm {
2017
- font-size: 0.875rem;
2018
- line-height: 1.25rem;
2019
- }
2020
-
2021
- .text-xl {
2022
- font-size: 1.25rem;
2023
- line-height: 1.75rem;
2024
- }
2025
-
2026
- .text-xs {
2027
- font-size: 0.75rem;
2028
- line-height: 1rem;
2029
- }
2030
-
2031
- .font-bold {
2032
- font-weight: 700;
2033
- }
2034
-
2035
- .font-medium {
2036
- font-weight: 500;
2037
- }
2038
-
2039
- .uppercase {
2040
- text-transform: uppercase;
2041
- }
2042
-
2043
- .tracking-tight {
2044
- letter-spacing: -0.025em;
2045
- }
2046
-
2047
- .text-red-600 {
2048
- --tw-text-opacity: 1;
2049
- color: rgb(220 38 38 / var(--tw-text-opacity, 1));
2050
- }
2051
-
2052
- .text-transparent {
2053
- color: transparent;
2054
- }
2055
-
2056
- .text-white {
2057
- --tw-text-opacity: 1;
2058
- color: rgb(255 255 255 / var(--tw-text-opacity, 1));
2059
- }
2060
-
2061
- .text-white\/70 {
2062
- color: rgb(255 255 255 / 0.7);
2063
- }
2064
-
2065
- .underline {
2066
- text-decoration-line: underline;
2067
- }
2068
-
2069
- .\!opacity-0 {
2070
- opacity: 0 !important;
2071
- }
2072
-
2073
- .\!opacity-100 {
2074
- opacity: 1 !important;
2075
- }
2076
-
2077
- .opacity-0 {
2078
- opacity: 0;
2079
- }
2080
-
2081
- .opacity-100 {
2082
- opacity: 1;
2083
- }
2084
-
2085
- .opacity-20 {
2086
- opacity: 0.2;
2087
- }
2088
-
2089
- .opacity-25 {
2090
- opacity: 0.25;
2091
- }
2092
-
2093
- .opacity-50 {
2094
- opacity: 0.5;
2095
- }
2096
-
2097
- .shadow-none {
2098
- --tw-shadow: 0 0 #0000;
2099
- --tw-shadow-colored: 0 0 #0000;
2100
- box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
2101
- }
2102
-
2103
- .shadow-xl {
2104
- --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
2105
- --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
2106
- box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
2107
- }
2108
-
2109
- .outline-none {
2110
- outline: 2px solid transparent;
2111
- outline-offset: 2px;
2112
- }
2113
-
2114
- .outline {
2115
- outline-style: solid;
2116
- }
2117
-
2118
- .blur {
2119
- --tw-blur: blur(8px);
2120
- 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);
2121
- }
2122
-
2123
- .blur-sm {
2124
- --tw-blur: blur(4px);
2125
- 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);
2126
- }
2127
-
2128
- .grayscale {
2129
- --tw-grayscale: grayscale(100%);
2130
- 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);
2131
- }
2132
-
2133
- .filter {
2134
- 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);
2135
- }
2136
-
2137
- .filter-none {
2138
- filter: none;
2139
- }
2140
-
2141
- .backdrop-blur-sm {
2142
- --tw-backdrop-blur: blur(4px);
2143
- -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
2144
- backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
2145
- }
2146
-
2147
- .backdrop-blur-xl {
2148
- --tw-backdrop-blur: blur(24px);
2149
- -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
2150
- backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
2151
- }
2152
-
2153
- .backdrop-grayscale-\[\.5\] {
2154
- --tw-backdrop-grayscale: grayscale(.5);
2155
- -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
2156
- backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
2157
- }
2158
-
2159
- .backdrop-filter {
2160
- -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
2161
- backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
2162
- }
2163
-
2164
- .transition {
2165
- transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
2166
- transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
2167
- transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
2168
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
2169
- transition-duration: 150ms;
2170
- }
2171
-
2172
- .transition-all {
2173
- transition-property: all;
2174
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
2175
- transition-duration: 150ms;
2176
- }
2177
-
2178
- .duration-300 {
2179
- transition-duration: 300ms;
2180
- }
2181
-
2182
- .ease-in-out {
2183
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
2184
- }
2185
-
2186
- .\[--border-radius\:0rem_1rem_1rem_0rem\] {
2187
- --border-radius: 0rem 1rem 1rem 0rem;
2188
- }
2189
-
2190
- .\[clip-path\:polygon\(0_20\%\2c _0\%_100\%\2c _80\%_100\%\)\] {
2191
- clip-path: polygon(0 20%, 0% 100%, 80% 100%);
2192
- }
2193
-
2194
- .hover\:mr-0:hover {
2195
- margin-right: 0px;
2196
- }
2197
-
2198
- @media (min-width: 640px) {
2199
- .sm\:flex-row {
2200
- flex-direction: row;
2201
- }
2202
- }
2203
-
2204
- @media (min-width: 768px) {
2205
- .md\:col-span-6 {
2206
- grid-column: span 6 / span 6;
2207
- }
2208
- }
2209
-
2210
- @media (min-width: 1280px) {
2211
- .xl\:col-span-3 {
2212
- grid-column: span 3 / span 3;
2213
- }
2214
- }
2215
-
2216
- @media (orientation: portrait) {
2217
- .portrait\:order-1 {
2218
- order: 1;
2219
- }
2220
-
2221
- .portrait\:order-2 {
2222
- order: 2;
2223
- }
2224
-
2225
- .portrait\:order-3 {
2226
- order: 3;
2227
- }
2228
-
2229
- .portrait\:mt-\[-5rem\] {
2230
- margin-top: -5rem;
2231
- }
2232
-
2233
- .portrait\:\!grid {
2234
- display: grid !important;
2235
- }
2236
-
2237
- .portrait\:hidden {
2238
- display: none;
2239
- }
2240
-
2241
- .portrait\:size-full {
2242
- width: 100%;
2243
- height: 100%;
2244
- }
2245
-
2246
- .portrait\:h-32 {
2247
- height: 8rem;
2248
- }
2249
-
2250
- .portrait\:h-40 {
2251
- height: 10rem;
2252
- }
2253
-
2254
- .portrait\:h-full {
2255
- height: 100%;
2256
- }
2257
-
2258
- .portrait\:w-full {
2259
- width: 100%;
2260
- }
2261
-
2262
- .portrait\:grow {
2263
- flex-grow: 1;
2264
- }
2265
-
2266
- .portrait\:basis-\[calc\(50\%-0\.25rem\)\] {
2267
- flex-basis: calc(50% - 0.25rem);
2268
- }
2269
-
2270
- .portrait\:basis-full {
2271
- flex-basis: 100%;
2272
- }
2273
-
2274
- .portrait\:\!grid-cols-1 {
2275
- grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
2276
- }
2277
-
2278
- .portrait\:flex-col {
2279
- flex-direction: column;
2280
- }
2281
-
2282
- .portrait\:justify-center {
2283
- justify-content: center;
2284
- }
2285
-
2286
- .portrait\:p-4 {
2287
- padding: 1rem;
2288
- }
2289
-
2290
- .portrait\:pl-3 {
2291
- padding-left: 0.75rem;
2292
- }
2293
- }
2294
-
2295
- @media (orientation: landscape) {
2296
- .landscape\:h-2\/3 {
2297
- height: 66.666667%;
2298
- }
2299
-
2300
- .landscape\:h-full {
2301
- height: 100%;
2302
- }
2303
-
2304
- .landscape\:w-4\/5 {
2305
- width: 80%;
2306
- }
2307
-
2308
- .landscape\:w-48 {
2309
- width: 12rem;
2310
- }
2311
-
2312
- .landscape\:max-w-\[60rem\] {
2313
- max-width: 60rem;
2314
- }
2315
-
2316
- .landscape\:basis-24 {
2317
- flex-basis: 6rem;
2318
- }
2319
-
2320
- .landscape\:rounded-3xl {
2321
- border-radius: 1.5rem;
2322
- }
2323
-
2324
- .landscape\:backdrop-blur-xl {
2325
- --tw-backdrop-blur: blur(24px);
2326
- -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
2327
- backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
2328
- }
2329
-
2330
- @media (min-width: 1280px) {
2331
- .landscape\:xl\:max-w-\[60rem\] {
2332
- max-width: 60rem;
2333
- }
2334
- }
2335
- }
2336
-
2337
- .rtl\:text-right:where([dir="rtl"], [dir="rtl"] *) {
2338
- text-align: right;
1
+ *, ::before, ::after {
2
+ --tw-border-spacing-x: 0;
3
+ --tw-border-spacing-y: 0;
4
+ --tw-translate-x: 0;
5
+ --tw-translate-y: 0;
6
+ --tw-rotate: 0;
7
+ --tw-skew-x: 0;
8
+ --tw-skew-y: 0;
9
+ --tw-scale-x: 1;
10
+ --tw-scale-y: 1;
11
+ --tw-pan-x: ;
12
+ --tw-pan-y: ;
13
+ --tw-pinch-zoom: ;
14
+ --tw-scroll-snap-strictness: proximity;
15
+ --tw-gradient-from-position: ;
16
+ --tw-gradient-via-position: ;
17
+ --tw-gradient-to-position: ;
18
+ --tw-ordinal: ;
19
+ --tw-slashed-zero: ;
20
+ --tw-numeric-figure: ;
21
+ --tw-numeric-spacing: ;
22
+ --tw-numeric-fraction: ;
23
+ --tw-ring-inset: ;
24
+ --tw-ring-offset-width: 0px;
25
+ --tw-ring-offset-color: #fff;
26
+ --tw-ring-color: rgb(59 130 246 / 0.5);
27
+ --tw-ring-offset-shadow: 0 0 #0000;
28
+ --tw-ring-shadow: 0 0 #0000;
29
+ --tw-shadow: 0 0 #0000;
30
+ --tw-shadow-colored: 0 0 #0000;
31
+ --tw-blur: ;
32
+ --tw-brightness: ;
33
+ --tw-contrast: ;
34
+ --tw-grayscale: ;
35
+ --tw-hue-rotate: ;
36
+ --tw-invert: ;
37
+ --tw-saturate: ;
38
+ --tw-sepia: ;
39
+ --tw-drop-shadow: ;
40
+ --tw-backdrop-blur: ;
41
+ --tw-backdrop-brightness: ;
42
+ --tw-backdrop-contrast: ;
43
+ --tw-backdrop-grayscale: ;
44
+ --tw-backdrop-hue-rotate: ;
45
+ --tw-backdrop-invert: ;
46
+ --tw-backdrop-opacity: ;
47
+ --tw-backdrop-saturate: ;
48
+ --tw-backdrop-sepia: ;
49
+ --tw-contain-size: ;
50
+ --tw-contain-layout: ;
51
+ --tw-contain-paint: ;
52
+ --tw-contain-style: ;
53
+ }
54
+
55
+ ::backdrop {
56
+ --tw-border-spacing-x: 0;
57
+ --tw-border-spacing-y: 0;
58
+ --tw-translate-x: 0;
59
+ --tw-translate-y: 0;
60
+ --tw-rotate: 0;
61
+ --tw-skew-x: 0;
62
+ --tw-skew-y: 0;
63
+ --tw-scale-x: 1;
64
+ --tw-scale-y: 1;
65
+ --tw-pan-x: ;
66
+ --tw-pan-y: ;
67
+ --tw-pinch-zoom: ;
68
+ --tw-scroll-snap-strictness: proximity;
69
+ --tw-gradient-from-position: ;
70
+ --tw-gradient-via-position: ;
71
+ --tw-gradient-to-position: ;
72
+ --tw-ordinal: ;
73
+ --tw-slashed-zero: ;
74
+ --tw-numeric-figure: ;
75
+ --tw-numeric-spacing: ;
76
+ --tw-numeric-fraction: ;
77
+ --tw-ring-inset: ;
78
+ --tw-ring-offset-width: 0px;
79
+ --tw-ring-offset-color: #fff;
80
+ --tw-ring-color: rgb(59 130 246 / 0.5);
81
+ --tw-ring-offset-shadow: 0 0 #0000;
82
+ --tw-ring-shadow: 0 0 #0000;
83
+ --tw-shadow: 0 0 #0000;
84
+ --tw-shadow-colored: 0 0 #0000;
85
+ --tw-blur: ;
86
+ --tw-brightness: ;
87
+ --tw-contrast: ;
88
+ --tw-grayscale: ;
89
+ --tw-hue-rotate: ;
90
+ --tw-invert: ;
91
+ --tw-saturate: ;
92
+ --tw-sepia: ;
93
+ --tw-drop-shadow: ;
94
+ --tw-backdrop-blur: ;
95
+ --tw-backdrop-brightness: ;
96
+ --tw-backdrop-contrast: ;
97
+ --tw-backdrop-grayscale: ;
98
+ --tw-backdrop-hue-rotate: ;
99
+ --tw-backdrop-invert: ;
100
+ --tw-backdrop-opacity: ;
101
+ --tw-backdrop-saturate: ;
102
+ --tw-backdrop-sepia: ;
103
+ --tw-contain-size: ;
104
+ --tw-contain-layout: ;
105
+ --tw-contain-paint: ;
106
+ --tw-contain-style: ;
107
+ }
108
+
109
+ /*
110
+ ! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com
111
+ */
112
+
113
+ /*
114
+ 1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
115
+ 2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
116
+ */
117
+
118
+ *,
119
+ ::before,
120
+ ::after {
121
+ box-sizing: border-box;
122
+ /* 1 */
123
+ border-width: 0;
124
+ /* 2 */
125
+ border-style: solid;
126
+ /* 2 */
127
+ border-color: #e5e7eb;
128
+ /* 2 */
129
+ }
130
+
131
+ ::before,
132
+ ::after {
133
+ --tw-content: '';
134
+ }
135
+
136
+ /*
137
+ 1. Use a consistent sensible line-height in all browsers.
138
+ 2. Prevent adjustments of font size after orientation changes in iOS.
139
+ 3. Use a more readable tab size.
140
+ 4. Use the user's configured `sans` font-family by default.
141
+ 5. Use the user's configured `sans` font-feature-settings by default.
142
+ 6. Use the user's configured `sans` font-variation-settings by default.
143
+ 7. Disable tap highlights on iOS
144
+ */
145
+
146
+ html,
147
+ :host {
148
+ line-height: 1.5;
149
+ /* 1 */
150
+ -webkit-text-size-adjust: 100%;
151
+ /* 2 */
152
+ -moz-tab-size: 4;
153
+ /* 3 */
154
+ tab-size: 4;
155
+ /* 3 */
156
+ font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
157
+ /* 4 */
158
+ font-feature-settings: normal;
159
+ /* 5 */
160
+ font-variation-settings: normal;
161
+ /* 6 */
162
+ -webkit-tap-highlight-color: transparent;
163
+ /* 7 */
164
+ }
165
+
166
+ /*
167
+ 1. Remove the margin in all browsers.
168
+ 2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
169
+ */
170
+
171
+ body {
172
+ margin: 0;
173
+ /* 1 */
174
+ line-height: inherit;
175
+ /* 2 */
176
+ }
177
+
178
+ /*
179
+ 1. Add the correct height in Firefox.
180
+ 2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
181
+ 3. Ensure horizontal rules are visible by default.
182
+ */
183
+
184
+ hr {
185
+ height: 0;
186
+ /* 1 */
187
+ color: inherit;
188
+ /* 2 */
189
+ border-top-width: 1px;
190
+ /* 3 */
191
+ }
192
+
193
+ /*
194
+ Add the correct text decoration in Chrome, Edge, and Safari.
195
+ */
196
+
197
+ abbr:where([title]) {
198
+ -webkit-text-decoration: underline dotted;
199
+ text-decoration: underline dotted;
200
+ }
201
+
202
+ /*
203
+ Remove the default font size and weight for headings.
204
+ */
205
+
206
+ h1,
207
+ h2,
208
+ h3,
209
+ h4,
210
+ h5,
211
+ h6 {
212
+ font-size: inherit;
213
+ font-weight: inherit;
214
+ }
215
+
216
+ /*
217
+ Reset links to optimize for opt-in styling instead of opt-out.
218
+ */
219
+
220
+ a {
221
+ color: inherit;
222
+ text-decoration: inherit;
223
+ }
224
+
225
+ /*
226
+ Add the correct font weight in Edge and Safari.
227
+ */
228
+
229
+ b,
230
+ strong {
231
+ font-weight: bolder;
232
+ }
233
+
234
+ /*
235
+ 1. Use the user's configured `mono` font-family by default.
236
+ 2. Use the user's configured `mono` font-feature-settings by default.
237
+ 3. Use the user's configured `mono` font-variation-settings by default.
238
+ 4. Correct the odd `em` font sizing in all browsers.
239
+ */
240
+
241
+ code,
242
+ kbd,
243
+ samp,
244
+ pre {
245
+ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
246
+ /* 1 */
247
+ font-feature-settings: normal;
248
+ /* 2 */
249
+ font-variation-settings: normal;
250
+ /* 3 */
251
+ font-size: 1em;
252
+ /* 4 */
253
+ }
254
+
255
+ /*
256
+ Add the correct font size in all browsers.
257
+ */
258
+
259
+ small {
260
+ font-size: 80%;
261
+ }
262
+
263
+ /*
264
+ Prevent `sub` and `sup` elements from affecting the line height in all browsers.
265
+ */
266
+
267
+ sub,
268
+ sup {
269
+ font-size: 75%;
270
+ line-height: 0;
271
+ position: relative;
272
+ vertical-align: baseline;
273
+ }
274
+
275
+ sub {
276
+ bottom: -0.25em;
277
+ }
278
+
279
+ sup {
280
+ top: -0.5em;
281
+ }
282
+
283
+ /*
284
+ 1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
285
+ 2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
286
+ 3. Remove gaps between table borders by default.
287
+ */
288
+
289
+ table {
290
+ text-indent: 0;
291
+ /* 1 */
292
+ border-color: inherit;
293
+ /* 2 */
294
+ border-collapse: collapse;
295
+ /* 3 */
296
+ }
297
+
298
+ /*
299
+ 1. Change the font styles in all browsers.
300
+ 2. Remove the margin in Firefox and Safari.
301
+ 3. Remove default padding in all browsers.
302
+ */
303
+
304
+ button,
305
+ input,
306
+ optgroup,
307
+ select,
308
+ textarea {
309
+ font-family: inherit;
310
+ /* 1 */
311
+ font-feature-settings: inherit;
312
+ /* 1 */
313
+ font-variation-settings: inherit;
314
+ /* 1 */
315
+ font-size: 100%;
316
+ /* 1 */
317
+ font-weight: inherit;
318
+ /* 1 */
319
+ line-height: inherit;
320
+ /* 1 */
321
+ letter-spacing: inherit;
322
+ /* 1 */
323
+ color: inherit;
324
+ /* 1 */
325
+ margin: 0;
326
+ /* 2 */
327
+ padding: 0;
328
+ /* 3 */
329
+ }
330
+
331
+ /*
332
+ Remove the inheritance of text transform in Edge and Firefox.
333
+ */
334
+
335
+ button,
336
+ select {
337
+ text-transform: none;
338
+ }
339
+
340
+ /*
341
+ 1. Correct the inability to style clickable types in iOS and Safari.
342
+ 2. Remove default button styles.
343
+ */
344
+
345
+ button,
346
+ input:where([type='button']),
347
+ input:where([type='reset']),
348
+ input:where([type='submit']) {
349
+ -webkit-appearance: button;
350
+ /* 1 */
351
+ background-color: transparent;
352
+ /* 2 */
353
+ background-image: none;
354
+ /* 2 */
355
+ }
356
+
357
+ /*
358
+ Use the modern Firefox focus style for all focusable elements.
359
+ */
360
+
361
+ :-moz-focusring {
362
+ outline: auto;
363
+ }
364
+
365
+ /*
366
+ Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
367
+ */
368
+
369
+ :-moz-ui-invalid {
370
+ box-shadow: none;
371
+ }
372
+
373
+ /*
374
+ Add the correct vertical alignment in Chrome and Firefox.
375
+ */
376
+
377
+ progress {
378
+ vertical-align: baseline;
379
+ }
380
+
381
+ /*
382
+ Correct the cursor style of increment and decrement buttons in Safari.
383
+ */
384
+
385
+ ::-webkit-inner-spin-button,
386
+ ::-webkit-outer-spin-button {
387
+ height: auto;
388
+ }
389
+
390
+ /*
391
+ 1. Correct the odd appearance in Chrome and Safari.
392
+ 2. Correct the outline style in Safari.
393
+ */
394
+
395
+ [type='search'] {
396
+ -webkit-appearance: textfield;
397
+ /* 1 */
398
+ outline-offset: -2px;
399
+ /* 2 */
400
+ }
401
+
402
+ /*
403
+ Remove the inner padding in Chrome and Safari on macOS.
404
+ */
405
+
406
+ ::-webkit-search-decoration {
407
+ -webkit-appearance: none;
408
+ }
409
+
410
+ /*
411
+ 1. Correct the inability to style clickable types in iOS and Safari.
412
+ 2. Change font properties to `inherit` in Safari.
413
+ */
414
+
415
+ ::-webkit-file-upload-button {
416
+ -webkit-appearance: button;
417
+ /* 1 */
418
+ font: inherit;
419
+ /* 2 */
420
+ }
421
+
422
+ /*
423
+ Add the correct display in Chrome and Safari.
424
+ */
425
+
426
+ summary {
427
+ display: list-item;
428
+ }
429
+
430
+ /*
431
+ Removes the default spacing and border for appropriate elements.
432
+ */
433
+
434
+ blockquote,
435
+ dl,
436
+ dd,
437
+ h1,
438
+ h2,
439
+ h3,
440
+ h4,
441
+ h5,
442
+ h6,
443
+ hr,
444
+ figure,
445
+ p,
446
+ pre {
447
+ margin: 0;
448
+ }
449
+
450
+ fieldset {
451
+ margin: 0;
452
+ padding: 0;
453
+ }
454
+
455
+ legend {
456
+ padding: 0;
457
+ }
458
+
459
+ ol,
460
+ ul,
461
+ menu {
462
+ list-style: none;
463
+ margin: 0;
464
+ padding: 0;
465
+ }
466
+
467
+ /*
468
+ Reset default styling for dialogs.
469
+ */
470
+
471
+ dialog {
472
+ padding: 0;
473
+ }
474
+
475
+ /*
476
+ Prevent resizing textareas horizontally by default.
477
+ */
478
+
479
+ textarea {
480
+ resize: vertical;
481
+ }
482
+
483
+ /*
484
+ 1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
485
+ 2. Set the default placeholder color to the user's configured gray 400 color.
486
+ */
487
+
488
+ input::placeholder,
489
+ textarea::placeholder {
490
+ opacity: 1;
491
+ /* 1 */
492
+ color: #9ca3af;
493
+ /* 2 */
494
+ }
495
+
496
+ /*
497
+ Set the default cursor for buttons.
498
+ */
499
+
500
+ button,
501
+ [role="button"] {
502
+ cursor: pointer;
503
+ }
504
+
505
+ /*
506
+ Make sure disabled buttons don't get the pointer cursor.
507
+ */
508
+
509
+ :disabled {
510
+ cursor: default;
511
+ }
512
+
513
+ /*
514
+ 1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
515
+ 2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
516
+ This can trigger a poorly considered lint error in some tools but is included by design.
517
+ */
518
+
519
+ img,
520
+ svg,
521
+ video,
522
+ canvas,
523
+ audio,
524
+ iframe,
525
+ embed,
526
+ object {
527
+ display: block;
528
+ /* 1 */
529
+ vertical-align: middle;
530
+ /* 2 */
531
+ }
532
+
533
+ /*
534
+ Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
535
+ */
536
+
537
+ img,
538
+ video {
539
+ max-width: 100%;
540
+ height: auto;
541
+ }
542
+
543
+ /* Make elements with the HTML hidden attribute stay hidden by default */
544
+
545
+ [hidden]:where(:not([hidden="until-found"])) {
546
+ display: none;
547
+ }
548
+
549
+ .container {
550
+ width: 100%;
551
+ }
552
+
553
+ @media (min-width: 640px) {
554
+ .container {
555
+ max-width: 640px;
556
+ }
557
+ }
558
+
559
+ @media (min-width: 768px) {
560
+ .container {
561
+ max-width: 768px;
562
+ }
563
+ }
564
+
565
+ @media (min-width: 1024px) {
566
+ .container {
567
+ max-width: 1024px;
568
+ }
569
+ }
570
+
571
+ @media (min-width: 1280px) {
572
+ .container {
573
+ max-width: 1280px;
574
+ }
575
+ }
576
+
577
+ @media (min-width: 1536px) {
578
+ .container {
579
+ max-width: 1536px;
580
+ }
581
+ }
582
+
583
+ .\!pointer-events-none {
584
+ pointer-events: none !important;
585
+ }
586
+
587
+ .pointer-events-none {
588
+ pointer-events: none;
589
+ }
590
+
591
+ .visible {
592
+ visibility: visible;
593
+ }
594
+
595
+ .collapse {
596
+ visibility: collapse;
597
+ }
598
+
599
+ .static {
600
+ position: static;
601
+ }
602
+
603
+ .fixed {
604
+ position: fixed;
605
+ }
606
+
607
+ .absolute {
608
+ position: absolute;
609
+ }
610
+
611
+ .\!relative {
612
+ position: relative !important;
613
+ }
614
+
615
+ .relative {
616
+ position: relative;
617
+ }
618
+
619
+ .sticky {
620
+ position: sticky;
621
+ }
622
+
623
+ .-inset-1 {
624
+ inset: -0.25rem;
625
+ }
626
+
627
+ .inset-0 {
628
+ inset: 0px;
629
+ }
630
+
631
+ .-bottom-1 {
632
+ bottom: -0.25rem;
633
+ }
634
+
635
+ .-left-1 {
636
+ left: -0.25rem;
637
+ }
638
+
639
+ .-left-\[12\.5\%\] {
640
+ left: -12.5%;
641
+ }
642
+
643
+ .-right-1 {
644
+ right: -0.25rem;
645
+ }
646
+
647
+ .-top-1 {
648
+ top: -0.25rem;
649
+ }
650
+
651
+ .-top-\[12\.5\%\] {
652
+ top: -12.5%;
653
+ }
654
+
655
+ .bottom-0 {
656
+ bottom: 0px;
657
+ }
658
+
659
+ .bottom-1 {
660
+ bottom: 0.25rem;
661
+ }
662
+
663
+ .bottom-1\/2 {
664
+ bottom: 50%;
665
+ }
666
+
667
+ .bottom-3 {
668
+ bottom: 0.75rem;
669
+ }
670
+
671
+ .bottom-\[calc\(100\%\+0\.5rem\)\] {
672
+ bottom: calc(100% + 0.5rem);
673
+ }
674
+
675
+ .left-0 {
676
+ left: 0px;
677
+ }
678
+
679
+ .left-1 {
680
+ left: 0.25rem;
681
+ }
682
+
683
+ .left-1\/2 {
684
+ left: 50%;
685
+ }
686
+
687
+ .left-14 {
688
+ left: 3.5rem;
689
+ }
690
+
691
+ .left-3 {
692
+ left: 0.75rem;
693
+ }
694
+
695
+ .left-\[calc\(100\%\+0\.5rem\)\] {
696
+ left: calc(100% + 0.5rem);
697
+ }
698
+
699
+ .right-0 {
700
+ right: 0px;
701
+ }
702
+
703
+ .right-1 {
704
+ right: 0.25rem;
705
+ }
706
+
707
+ .right-1\/2 {
708
+ right: 50%;
709
+ }
710
+
711
+ .right-12 {
712
+ right: 3rem;
713
+ }
714
+
715
+ .right-2 {
716
+ right: 0.5rem;
717
+ }
718
+
719
+ .right-3 {
720
+ right: 0.75rem;
721
+ }
722
+
723
+ .right-\[calc\(100\%\+0\.5rem\)\] {
724
+ right: calc(100% + 0.5rem);
725
+ }
726
+
727
+ .top-0 {
728
+ top: 0px;
729
+ }
730
+
731
+ .top-1 {
732
+ top: 0.25rem;
733
+ }
734
+
735
+ .top-1\/2 {
736
+ top: 50%;
737
+ }
738
+
739
+ .top-10 {
740
+ top: 2.5rem;
741
+ }
742
+
743
+ .top-3 {
744
+ top: 0.75rem;
745
+ }
746
+
747
+ .top-\[calc\(100\%\+0\.5rem\)\] {
748
+ top: calc(100% + 0.5rem);
749
+ }
750
+
751
+ .\!-z-50 {
752
+ z-index: -50 !important;
753
+ }
754
+
755
+ .\!z-0 {
756
+ z-index: 0 !important;
757
+ }
758
+
759
+ .\!z-20 {
760
+ z-index: 20 !important;
761
+ }
762
+
763
+ .-z-10 {
764
+ z-index: -10;
765
+ }
766
+
767
+ .-z-30 {
768
+ z-index: -30;
769
+ }
770
+
771
+ .-z-50 {
772
+ z-index: -50;
773
+ }
774
+
775
+ .z-0 {
776
+ z-index: 0;
777
+ }
778
+
779
+ .z-10 {
780
+ z-index: 10;
781
+ }
782
+
783
+ .z-20 {
784
+ z-index: 20;
785
+ }
786
+
787
+ .z-30 {
788
+ z-index: 30;
789
+ }
790
+
791
+ .z-50 {
792
+ z-index: 50;
793
+ }
794
+
795
+ .z-\[100\] {
796
+ z-index: 100;
797
+ }
798
+
799
+ .z-\[90\] {
800
+ z-index: 90;
801
+ }
802
+
803
+ .order-1 {
804
+ order: 1;
805
+ }
806
+
807
+ .order-2 {
808
+ order: 2;
809
+ }
810
+
811
+ .order-3 {
812
+ order: 3;
813
+ }
814
+
815
+ .col-span-2 {
816
+ grid-column: span 2 / span 2;
817
+ }
818
+
819
+ .col-span-3 {
820
+ grid-column: span 3 / span 3;
821
+ }
822
+
823
+ .col-span-6 {
824
+ grid-column: span 6 / span 6;
825
+ }
826
+
827
+ .col-span-8 {
828
+ grid-column: span 8 / span 8;
829
+ }
830
+
831
+ .col-span-full {
832
+ grid-column: 1 / -1;
833
+ }
834
+
835
+ .m-0 {
836
+ margin: 0px;
837
+ }
838
+
839
+ .-mx-2 {
840
+ margin-left: -0.5rem;
841
+ margin-right: -0.5rem;
842
+ }
843
+
844
+ .mx-1 {
845
+ margin-left: 0.25rem;
846
+ margin-right: 0.25rem;
847
+ }
848
+
849
+ .mx-2 {
850
+ margin-left: 0.5rem;
851
+ margin-right: 0.5rem;
852
+ }
853
+
854
+ .mx-auto {
855
+ margin-left: auto;
856
+ margin-right: auto;
857
+ }
858
+
859
+ .my-1 {
860
+ margin-top: 0.25rem;
861
+ margin-bottom: 0.25rem;
862
+ }
863
+
864
+ .my-10 {
865
+ margin-top: 2.5rem;
866
+ margin-bottom: 2.5rem;
867
+ }
868
+
869
+ .my-2 {
870
+ margin-top: 0.5rem;
871
+ margin-bottom: 0.5rem;
872
+ }
873
+
874
+ .my-3 {
875
+ margin-top: 0.75rem;
876
+ margin-bottom: 0.75rem;
877
+ }
878
+
879
+ .my-auto {
880
+ margin-top: auto;
881
+ margin-bottom: auto;
882
+ }
883
+
884
+ .-mb-1 {
885
+ margin-bottom: -0.25rem;
886
+ }
887
+
888
+ .-ml-1 {
889
+ margin-left: -0.25rem;
890
+ }
891
+
892
+ .-mr-4 {
893
+ margin-right: -1rem;
894
+ }
895
+
896
+ .-mt-1 {
897
+ margin-top: -0.25rem;
898
+ }
899
+
900
+ .mb-2 {
901
+ margin-bottom: 0.5rem;
902
+ }
903
+
904
+ .mb-auto {
905
+ margin-bottom: auto;
906
+ }
907
+
908
+ .ml-2 {
909
+ margin-left: 0.5rem;
910
+ }
911
+
912
+ .ml-3 {
913
+ margin-left: 0.75rem;
914
+ }
915
+
916
+ .mr-1 {
917
+ margin-right: 0.25rem;
918
+ }
919
+
920
+ .mr-2 {
921
+ margin-right: 0.5rem;
922
+ }
923
+
924
+ .mt-1 {
925
+ margin-top: 0.25rem;
926
+ }
927
+
928
+ .mt-2 {
929
+ margin-top: 0.5rem;
930
+ }
931
+
932
+ .mt-3 {
933
+ margin-top: 0.75rem;
934
+ }
935
+
936
+ .mt-4 {
937
+ margin-top: 1rem;
938
+ }
939
+
940
+ .mt-auto {
941
+ margin-top: auto;
942
+ }
943
+
944
+ .\!block {
945
+ display: block !important;
946
+ }
947
+
948
+ .block {
949
+ display: block;
950
+ }
951
+
952
+ .flex {
953
+ display: flex;
954
+ }
955
+
956
+ .table {
957
+ display: table;
958
+ }
959
+
960
+ .\!grid {
961
+ display: grid !important;
962
+ }
963
+
964
+ .grid {
965
+ display: grid;
966
+ }
967
+
968
+ .contents {
969
+ display: contents;
970
+ }
971
+
972
+ .\!hidden {
973
+ display: none !important;
974
+ }
975
+
976
+ .hidden {
977
+ display: none;
978
+ }
979
+
980
+ .aspect-square {
981
+ aspect-ratio: 1 / 1;
982
+ }
983
+
984
+ .\!size-full {
985
+ width: 100% !important;
986
+ height: 100% !important;
987
+ }
988
+
989
+ .size-0 {
990
+ width: 0px;
991
+ height: 0px;
992
+ }
993
+
994
+ .size-10 {
995
+ width: 2.5rem;
996
+ height: 2.5rem;
997
+ }
998
+
999
+ .size-12 {
1000
+ width: 3rem;
1001
+ height: 3rem;
1002
+ }
1003
+
1004
+ .size-8 {
1005
+ width: 2rem;
1006
+ height: 2rem;
1007
+ }
1008
+
1009
+ .size-full {
1010
+ width: 100%;
1011
+ height: 100%;
1012
+ }
1013
+
1014
+ .\!h-0 {
1015
+ height: 0px !important;
1016
+ }
1017
+
1018
+ .\!h-10 {
1019
+ height: 2.5rem !important;
1020
+ }
1021
+
1022
+ .h-0 {
1023
+ height: 0px;
1024
+ }
1025
+
1026
+ .h-1 {
1027
+ height: 0.25rem;
1028
+ }
1029
+
1030
+ .h-10 {
1031
+ height: 2.5rem;
1032
+ }
1033
+
1034
+ .h-12 {
1035
+ height: 3rem;
1036
+ }
1037
+
1038
+ .h-14 {
1039
+ height: 3.5rem;
1040
+ }
1041
+
1042
+ .h-16 {
1043
+ height: 4rem;
1044
+ }
1045
+
1046
+ .h-2 {
1047
+ height: 0.5rem;
1048
+ }
1049
+
1050
+ .h-24 {
1051
+ height: 6rem;
1052
+ }
1053
+
1054
+ .h-3 {
1055
+ height: 0.75rem;
1056
+ }
1057
+
1058
+ .h-32 {
1059
+ height: 8rem;
1060
+ }
1061
+
1062
+ .h-4 {
1063
+ height: 1rem;
1064
+ }
1065
+
1066
+ .h-40 {
1067
+ height: 10rem;
1068
+ }
1069
+
1070
+ .h-48 {
1071
+ height: 12rem;
1072
+ }
1073
+
1074
+ .h-5 {
1075
+ height: 1.25rem;
1076
+ }
1077
+
1078
+ .h-6 {
1079
+ height: 1.5rem;
1080
+ }
1081
+
1082
+ .h-7 {
1083
+ height: 1.75rem;
1084
+ }
1085
+
1086
+ .h-8 {
1087
+ height: 2rem;
1088
+ }
1089
+
1090
+ .h-\[12\.5rem\] {
1091
+ height: 12.5rem;
1092
+ }
1093
+
1094
+ .h-\[125\%\] {
1095
+ height: 125%;
1096
+ }
1097
+
1098
+ .h-\[22px\] {
1099
+ height: 22px;
1100
+ }
1101
+
1102
+ .h-\[calc\(100\%\+var\(--padding-top\)\+var\(--padding-bottom\)\)\] {
1103
+ height: calc(100% + var(--padding-top) + var(--padding-bottom));
1104
+ }
1105
+
1106
+ .h-fit {
1107
+ height: -moz-fit-content;
1108
+ height: fit-content;
1109
+ }
1110
+
1111
+ .h-full {
1112
+ height: 100%;
1113
+ }
1114
+
1115
+ .\!max-h-full {
1116
+ max-height: 100% !important;
1117
+ }
1118
+
1119
+ .max-h-full {
1120
+ max-height: 100%;
1121
+ }
1122
+
1123
+ .min-h-0 {
1124
+ min-height: 0px;
1125
+ }
1126
+
1127
+ .min-h-10 {
1128
+ min-height: 2.5rem;
1129
+ }
1130
+
1131
+ .min-h-8 {
1132
+ min-height: 2rem;
1133
+ }
1134
+
1135
+ .min-h-fit {
1136
+ min-height: -moz-fit-content;
1137
+ min-height: fit-content;
1138
+ }
1139
+
1140
+ .min-h-screen {
1141
+ min-height: 100vh;
1142
+ }
1143
+
1144
+ .\!w-0 {
1145
+ width: 0px !important;
1146
+ }
1147
+
1148
+ .\!w-16 {
1149
+ width: 4rem !important;
1150
+ }
1151
+
1152
+ .w-0 {
1153
+ width: 0px;
1154
+ }
1155
+
1156
+ .w-1 {
1157
+ width: 0.25rem;
1158
+ }
1159
+
1160
+ .w-1\/2 {
1161
+ width: 50%;
1162
+ }
1163
+
1164
+ .w-10 {
1165
+ width: 2.5rem;
1166
+ }
1167
+
1168
+ .w-12 {
1169
+ width: 3rem;
1170
+ }
1171
+
1172
+ .w-16 {
1173
+ width: 4rem;
1174
+ }
1175
+
1176
+ .w-3 {
1177
+ width: 0.75rem;
1178
+ }
1179
+
1180
+ .w-4 {
1181
+ width: 1rem;
1182
+ }
1183
+
1184
+ .w-44 {
1185
+ width: 11rem;
1186
+ }
1187
+
1188
+ .w-48 {
1189
+ width: 12rem;
1190
+ }
1191
+
1192
+ .w-56 {
1193
+ width: 14rem;
1194
+ }
1195
+
1196
+ .w-6 {
1197
+ width: 1.5rem;
1198
+ }
1199
+
1200
+ .w-8 {
1201
+ width: 2rem;
1202
+ }
1203
+
1204
+ .w-96 {
1205
+ width: 24rem;
1206
+ }
1207
+
1208
+ .w-\[125\%\] {
1209
+ width: 125%;
1210
+ }
1211
+
1212
+ .w-\[19rem\] {
1213
+ width: 19rem;
1214
+ }
1215
+
1216
+ .w-\[calc\(100\%\+var\(--padding-end\)\+var\(--padding-start\)\)\] {
1217
+ width: calc(100% + var(--padding-end) + var(--padding-start));
1218
+ }
1219
+
1220
+ .w-fit {
1221
+ width: -moz-fit-content;
1222
+ width: fit-content;
1223
+ }
1224
+
1225
+ .w-full {
1226
+ width: 100%;
1227
+ }
1228
+
1229
+ .min-w-10 {
1230
+ min-width: 2.5rem;
1231
+ }
1232
+
1233
+ .min-w-32 {
1234
+ min-width: 8rem;
1235
+ }
1236
+
1237
+ .min-w-6 {
1238
+ min-width: 1.5rem;
1239
+ }
1240
+
1241
+ .min-w-8 {
1242
+ min-width: 2rem;
1243
+ }
1244
+
1245
+ .min-w-fit {
1246
+ min-width: -moz-fit-content;
1247
+ min-width: fit-content;
1248
+ }
1249
+
1250
+ .min-w-full {
1251
+ min-width: 100%;
1252
+ }
1253
+
1254
+ .min-w-min {
1255
+ min-width: min-content;
1256
+ }
1257
+
1258
+ .max-w-full {
1259
+ max-width: 100%;
1260
+ }
1261
+
1262
+ .max-w-md {
1263
+ max-width: 28rem;
1264
+ }
1265
+
1266
+ .flex-1 {
1267
+ flex: 1 1 0%;
1268
+ }
1269
+
1270
+ .flex-shrink {
1271
+ flex-shrink: 1;
1272
+ }
1273
+
1274
+ .flex-shrink-0 {
1275
+ flex-shrink: 0;
1276
+ }
1277
+
1278
+ .shrink {
1279
+ flex-shrink: 1;
1280
+ }
1281
+
1282
+ .shrink-0 {
1283
+ flex-shrink: 0;
1284
+ }
1285
+
1286
+ .flex-grow {
1287
+ flex-grow: 1;
1288
+ }
1289
+
1290
+ .grow {
1291
+ flex-grow: 1;
1292
+ }
1293
+
1294
+ .grow-0 {
1295
+ flex-grow: 0;
1296
+ }
1297
+
1298
+ .basis-24 {
1299
+ flex-basis: 6rem;
1300
+ }
1301
+
1302
+ .basis-full {
1303
+ flex-basis: 100%;
1304
+ }
1305
+
1306
+ .border-collapse {
1307
+ border-collapse: collapse;
1308
+ }
1309
+
1310
+ .\!-translate-y-12 {
1311
+ --tw-translate-y: -3rem !important;
1312
+ 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;
1313
+ }
1314
+
1315
+ .\!translate-x-0 {
1316
+ --tw-translate-x: 0px !important;
1317
+ 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;
1318
+ }
1319
+
1320
+ .\!translate-y-0 {
1321
+ --tw-translate-y: 0px !important;
1322
+ 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;
1323
+ }
1324
+
1325
+ .-translate-x-1 {
1326
+ --tw-translate-x: -0.25rem;
1327
+ 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));
1328
+ }
1329
+
1330
+ .-translate-x-1\/2 {
1331
+ --tw-translate-x: -50%;
1332
+ 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));
1333
+ }
1334
+
1335
+ .-translate-x-12 {
1336
+ --tw-translate-x: -3rem;
1337
+ 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));
1338
+ }
1339
+
1340
+ .-translate-x-4 {
1341
+ --tw-translate-x: -1rem;
1342
+ 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));
1343
+ }
1344
+
1345
+ .-translate-x-full {
1346
+ --tw-translate-x: -100%;
1347
+ 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));
1348
+ }
1349
+
1350
+ .-translate-y-12 {
1351
+ --tw-translate-y: -3rem;
1352
+ 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));
1353
+ }
1354
+
1355
+ .-translate-y-4 {
1356
+ --tw-translate-y: -1rem;
1357
+ 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));
1358
+ }
1359
+
1360
+ .-translate-y-8 {
1361
+ --tw-translate-y: -2rem;
1362
+ 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));
1363
+ }
1364
+
1365
+ .translate-x-0 {
1366
+ --tw-translate-x: 0px;
1367
+ 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));
1368
+ }
1369
+
1370
+ .translate-x-12 {
1371
+ --tw-translate-x: 3rem;
1372
+ 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));
1373
+ }
1374
+
1375
+ .translate-x-full {
1376
+ --tw-translate-x: 100%;
1377
+ 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));
1378
+ }
1379
+
1380
+ .translate-y-0 {
1381
+ --tw-translate-y: 0px;
1382
+ 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));
1383
+ }
1384
+
1385
+ .-rotate-45 {
1386
+ --tw-rotate: -45deg;
1387
+ 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));
1388
+ }
1389
+
1390
+ .-rotate-\[135deg\] {
1391
+ --tw-rotate: -135deg;
1392
+ 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));
1393
+ }
1394
+
1395
+ .rotate-45 {
1396
+ --tw-rotate: 45deg;
1397
+ 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));
1398
+ }
1399
+
1400
+ .rotate-\[135deg\] {
1401
+ --tw-rotate: 135deg;
1402
+ 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));
1403
+ }
1404
+
1405
+ .scale-75 {
1406
+ --tw-scale-x: .75;
1407
+ --tw-scale-y: .75;
1408
+ 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));
1409
+ }
1410
+
1411
+ .transform {
1412
+ 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));
1413
+ }
1414
+
1415
+ .cursor-pointer {
1416
+ cursor: pointer;
1417
+ }
1418
+
1419
+ .select-none {
1420
+ -webkit-user-select: none;
1421
+ user-select: none;
1422
+ }
1423
+
1424
+ .resize {
1425
+ resize: both;
1426
+ }
1427
+
1428
+ .\!grid-cols-1 {
1429
+ grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
1430
+ }
1431
+
1432
+ .grid-cols-1 {
1433
+ grid-template-columns: repeat(1, minmax(0, 1fr));
1434
+ }
1435
+
1436
+ .grid-cols-10 {
1437
+ grid-template-columns: repeat(10, minmax(0, 1fr));
1438
+ }
1439
+
1440
+ .grid-cols-12 {
1441
+ grid-template-columns: repeat(12, minmax(0, 1fr));
1442
+ }
1443
+
1444
+ .grid-cols-5 {
1445
+ grid-template-columns: repeat(5, minmax(0, 1fr));
1446
+ }
1447
+
1448
+ .flex-row {
1449
+ flex-direction: row;
1450
+ }
1451
+
1452
+ .flex-row-reverse {
1453
+ flex-direction: row-reverse;
1454
+ }
1455
+
1456
+ .flex-col {
1457
+ flex-direction: column;
1458
+ }
1459
+
1460
+ .flex-wrap {
1461
+ flex-wrap: wrap;
1462
+ }
1463
+
1464
+ .items-start {
1465
+ align-items: flex-start;
1466
+ }
1467
+
1468
+ .items-center {
1469
+ align-items: center;
1470
+ }
1471
+
1472
+ .justify-start {
1473
+ justify-content: flex-start;
1474
+ }
1475
+
1476
+ .justify-end {
1477
+ justify-content: flex-end;
1478
+ }
1479
+
1480
+ .justify-center {
1481
+ justify-content: center;
1482
+ }
1483
+
1484
+ .justify-between {
1485
+ justify-content: space-between;
1486
+ }
1487
+
1488
+ .justify-evenly {
1489
+ justify-content: space-evenly;
1490
+ }
1491
+
1492
+ .gap-0 {
1493
+ gap: 0px;
1494
+ }
1495
+
1496
+ .gap-0\.5 {
1497
+ gap: 0.125rem;
1498
+ }
1499
+
1500
+ .gap-1 {
1501
+ gap: 0.25rem;
1502
+ }
1503
+
1504
+ .gap-2 {
1505
+ gap: 0.5rem;
1506
+ }
1507
+
1508
+ .gap-3 {
1509
+ gap: 0.75rem;
1510
+ }
1511
+
1512
+ .gap-4 {
1513
+ gap: 1rem;
1514
+ }
1515
+
1516
+ .space-y-6 > :not([hidden]) ~ :not([hidden]) {
1517
+ --tw-space-y-reverse: 0;
1518
+ margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
1519
+ margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
1520
+ }
1521
+
1522
+ .\!overflow-hidden {
1523
+ overflow: hidden !important;
1524
+ }
1525
+
1526
+ .overflow-hidden {
1527
+ overflow: hidden;
1528
+ }
1529
+
1530
+ .overflow-visible {
1531
+ overflow: visible;
1532
+ }
1533
+
1534
+ .overflow-x-auto {
1535
+ overflow-x: auto;
1536
+ }
1537
+
1538
+ .\!overflow-y-auto {
1539
+ overflow-y: auto !important;
1540
+ }
1541
+
1542
+ .overflow-y-auto {
1543
+ overflow-y: auto;
1544
+ }
1545
+
1546
+ .overflow-x-hidden {
1547
+ overflow-x: hidden;
1548
+ }
1549
+
1550
+ .overflow-y-hidden {
1551
+ overflow-y: hidden;
1552
+ }
1553
+
1554
+ .truncate {
1555
+ overflow: hidden;
1556
+ text-overflow: ellipsis;
1557
+ white-space: nowrap;
1558
+ }
1559
+
1560
+ .text-ellipsis {
1561
+ text-overflow: ellipsis;
1562
+ }
1563
+
1564
+ .whitespace-nowrap {
1565
+ white-space: nowrap;
1566
+ }
1567
+
1568
+ .text-wrap {
1569
+ text-wrap: wrap;
1570
+ }
1571
+
1572
+ .text-nowrap {
1573
+ text-wrap: nowrap;
1574
+ }
1575
+
1576
+ .\!rounded-2xl {
1577
+ border-radius: 1rem !important;
1578
+ }
1579
+
1580
+ .\!rounded-none {
1581
+ border-radius: 0px !important;
1582
+ }
1583
+
1584
+ .rounded {
1585
+ border-radius: 0.25rem;
1586
+ }
1587
+
1588
+ .rounded-2xl {
1589
+ border-radius: 1rem;
1590
+ }
1591
+
1592
+ .rounded-3xl {
1593
+ border-radius: 1.5rem;
1594
+ }
1595
+
1596
+ .rounded-full {
1597
+ border-radius: 9999px;
1598
+ }
1599
+
1600
+ .rounded-lg {
1601
+ border-radius: 0.5rem;
1602
+ }
1603
+
1604
+ .rounded-md {
1605
+ border-radius: 0.375rem;
1606
+ }
1607
+
1608
+ .rounded-none {
1609
+ border-radius: 0px;
1610
+ }
1611
+
1612
+ .rounded-sm {
1613
+ border-radius: 0.125rem;
1614
+ }
1615
+
1616
+ .rounded-xl {
1617
+ border-radius: 0.75rem;
1618
+ }
1619
+
1620
+ .\!rounded-l-2xl {
1621
+ border-top-left-radius: 1rem !important;
1622
+ border-bottom-left-radius: 1rem !important;
1623
+ }
1624
+
1625
+ .\!rounded-r-2xl {
1626
+ border-top-right-radius: 1rem !important;
1627
+ border-bottom-right-radius: 1rem !important;
1628
+ }
1629
+
1630
+ .\!rounded-r-none {
1631
+ border-top-right-radius: 0px !important;
1632
+ border-bottom-right-radius: 0px !important;
1633
+ }
1634
+
1635
+ .rounded-b-2xl {
1636
+ border-bottom-right-radius: 1rem;
1637
+ border-bottom-left-radius: 1rem;
1638
+ }
1639
+
1640
+ .rounded-l-2xl {
1641
+ border-top-left-radius: 1rem;
1642
+ border-bottom-left-radius: 1rem;
1643
+ }
1644
+
1645
+ .rounded-r-2xl {
1646
+ border-top-right-radius: 1rem;
1647
+ border-bottom-right-radius: 1rem;
1648
+ }
1649
+
1650
+ .rounded-r-lg {
1651
+ border-top-right-radius: 0.5rem;
1652
+ border-bottom-right-radius: 0.5rem;
1653
+ }
1654
+
1655
+ .rounded-t-2xl {
1656
+ border-top-left-radius: 1rem;
1657
+ border-top-right-radius: 1rem;
1658
+ }
1659
+
1660
+ .\!rounded-tr-none {
1661
+ border-top-right-radius: 0px !important;
1662
+ }
1663
+
1664
+ .rounded-bl-2xl {
1665
+ border-bottom-left-radius: 1rem;
1666
+ }
1667
+
1668
+ .rounded-tr-none {
1669
+ border-top-right-radius: 0px;
1670
+ }
1671
+
1672
+ .\!border-0 {
1673
+ border-width: 0px !important;
1674
+ }
1675
+
1676
+ .border {
1677
+ border-width: 1px;
1678
+ }
1679
+
1680
+ .border-4 {
1681
+ border-width: 4px;
1682
+ }
1683
+
1684
+ .\!border-x-0 {
1685
+ border-left-width: 0px !important;
1686
+ border-right-width: 0px !important;
1687
+ }
1688
+
1689
+ .\!border-y-0 {
1690
+ border-top-width: 0px !important;
1691
+ border-bottom-width: 0px !important;
1692
+ }
1693
+
1694
+ .border-x-0 {
1695
+ border-left-width: 0px;
1696
+ border-right-width: 0px;
1697
+ }
1698
+
1699
+ .\!border-b-0 {
1700
+ border-bottom-width: 0px !important;
1701
+ }
1702
+
1703
+ .\!border-l-0 {
1704
+ border-left-width: 0px !important;
1705
+ }
1706
+
1707
+ .\!border-r-0 {
1708
+ border-right-width: 0px !important;
1709
+ }
1710
+
1711
+ .border-b {
1712
+ border-bottom-width: 1px;
1713
+ }
1714
+
1715
+ .border-b-0 {
1716
+ border-bottom-width: 0px;
1717
+ }
1718
+
1719
+ .border-l {
1720
+ border-left-width: 1px;
1721
+ }
1722
+
1723
+ .border-l-2 {
1724
+ border-left-width: 2px;
1725
+ }
1726
+
1727
+ .border-r {
1728
+ border-right-width: 1px;
1729
+ }
1730
+
1731
+ .border-r-2 {
1732
+ border-right-width: 2px;
1733
+ }
1734
+
1735
+ .border-solid {
1736
+ border-style: solid;
1737
+ }
1738
+
1739
+ .border-dashed {
1740
+ border-style: dashed;
1741
+ }
1742
+
1743
+ .border-none {
1744
+ border-style: none;
1745
+ }
1746
+
1747
+ .border-\[var\(--ion-color-step-250\)\] {
1748
+ border-color: var(--ion-color-step-250);
1749
+ }
1750
+
1751
+ .border-transparent {
1752
+ border-color: transparent;
1753
+ }
1754
+
1755
+ .\!bg-transparent {
1756
+ background-color: transparent !important;
1757
+ }
1758
+
1759
+ .bg-\[var\(--background\)\] {
1760
+ background-color: var(--background);
1761
+ }
1762
+
1763
+ .bg-\[var\(--ion-color-secondary\)\] {
1764
+ background-color: var(--ion-color-secondary);
1765
+ }
1766
+
1767
+ .bg-red-400 {
1768
+ --tw-bg-opacity: 1;
1769
+ background-color: rgb(248 113 113 / var(--tw-bg-opacity, 1));
1770
+ }
1771
+
1772
+ .bg-red-500 {
1773
+ --tw-bg-opacity: 1;
1774
+ background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
1775
+ }
1776
+
1777
+ .bg-transparent {
1778
+ background-color: transparent;
1779
+ }
1780
+
1781
+ .bg-white {
1782
+ --tw-bg-opacity: 1;
1783
+ background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
1784
+ }
1785
+
1786
+ .bg-gradient-to-br {
1787
+ background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
1788
+ }
1789
+
1790
+ .bg-gradient-to-r {
1791
+ background-image: linear-gradient(to right, var(--tw-gradient-stops));
1792
+ }
1793
+
1794
+ .from-red-500 {
1795
+ --tw-gradient-from: #ef4444 var(--tw-gradient-from-position);
1796
+ --tw-gradient-to: rgb(239 68 68 / 0) var(--tw-gradient-to-position);
1797
+ --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
1798
+ }
1799
+
1800
+ .from-rose-400 {
1801
+ --tw-gradient-from: #fb7185 var(--tw-gradient-from-position);
1802
+ --tw-gradient-to: rgb(251 113 133 / 0) var(--tw-gradient-to-position);
1803
+ --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
1804
+ }
1805
+
1806
+ .to-pink-500 {
1807
+ --tw-gradient-to: #ec4899 var(--tw-gradient-to-position);
1808
+ }
1809
+
1810
+ .to-red-900 {
1811
+ --tw-gradient-to: #7f1d1d var(--tw-gradient-to-position);
1812
+ }
1813
+
1814
+ .object-contain {
1815
+ object-fit: contain;
1816
+ }
1817
+
1818
+ .object-cover {
1819
+ object-fit: cover;
1820
+ }
1821
+
1822
+ .object-fill {
1823
+ object-fit: fill;
1824
+ }
1825
+
1826
+ .object-none {
1827
+ object-fit: none;
1828
+ }
1829
+
1830
+ .object-scale-down {
1831
+ object-fit: scale-down;
1832
+ }
1833
+
1834
+ .\!p-0 {
1835
+ padding: 0px !important;
1836
+ }
1837
+
1838
+ .\!p-2 {
1839
+ padding: 0.5rem !important;
1840
+ }
1841
+
1842
+ .\!p-8 {
1843
+ padding: 2rem !important;
1844
+ }
1845
+
1846
+ .p-0 {
1847
+ padding: 0px;
1848
+ }
1849
+
1850
+ .p-0\.5 {
1851
+ padding: 0.125rem;
1852
+ }
1853
+
1854
+ .p-2 {
1855
+ padding: 0.5rem;
1856
+ }
1857
+
1858
+ .p-3 {
1859
+ padding: 0.75rem;
1860
+ }
1861
+
1862
+ .p-4 {
1863
+ padding: 1rem;
1864
+ }
1865
+
1866
+ .p-8 {
1867
+ padding: 2rem;
1868
+ }
1869
+
1870
+ .\!px-0 {
1871
+ padding-left: 0px !important;
1872
+ padding-right: 0px !important;
1873
+ }
1874
+
1875
+ .px-1 {
1876
+ padding-left: 0.25rem;
1877
+ padding-right: 0.25rem;
1878
+ }
1879
+
1880
+ .px-10 {
1881
+ padding-left: 2.5rem;
1882
+ padding-right: 2.5rem;
1883
+ }
1884
+
1885
+ .px-2 {
1886
+ padding-left: 0.5rem;
1887
+ padding-right: 0.5rem;
1888
+ }
1889
+
1890
+ .px-3 {
1891
+ padding-left: 0.75rem;
1892
+ padding-right: 0.75rem;
1893
+ }
1894
+
1895
+ .px-4 {
1896
+ padding-left: 1rem;
1897
+ padding-right: 1rem;
1898
+ }
1899
+
1900
+ .py-1 {
1901
+ padding-top: 0.25rem;
1902
+ padding-bottom: 0.25rem;
1903
+ }
1904
+
1905
+ .py-2 {
1906
+ padding-top: 0.5rem;
1907
+ padding-bottom: 0.5rem;
1908
+ }
1909
+
1910
+ .py-3 {
1911
+ padding-top: 0.75rem;
1912
+ padding-bottom: 0.75rem;
1913
+ }
1914
+
1915
+ .\!pb-0 {
1916
+ padding-bottom: 0px !important;
1917
+ }
1918
+
1919
+ .pb-2 {
1920
+ padding-bottom: 0.5rem;
1921
+ }
1922
+
1923
+ .pl-2 {
1924
+ padding-left: 0.5rem;
1925
+ }
1926
+
1927
+ .pl-3 {
1928
+ padding-left: 0.75rem;
1929
+ }
1930
+
1931
+ .pl-8 {
1932
+ padding-left: 2rem;
1933
+ }
1934
+
1935
+ .pr-3 {
1936
+ padding-right: 0.75rem;
1937
+ }
1938
+
1939
+ .pt-0 {
1940
+ padding-top: 0px;
1941
+ }
1942
+
1943
+ .pt-1 {
1944
+ padding-top: 0.25rem;
1945
+ }
1946
+
1947
+ .pt-2 {
1948
+ padding-top: 0.5rem;
1949
+ }
1950
+
1951
+ .text-left {
1952
+ text-align: left;
1953
+ }
1954
+
1955
+ .text-center {
1956
+ text-align: center;
1957
+ }
1958
+
1959
+ .align-sub {
1960
+ vertical-align: sub;
1961
+ }
1962
+
1963
+ .font-mono {
1964
+ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
1965
+ }
1966
+
1967
+ .\!text-sm {
1968
+ font-size: 0.875rem !important;
1969
+ line-height: 1.25rem !important;
1970
+ }
1971
+
1972
+ .text-2xl {
1973
+ font-size: 1.5rem;
1974
+ line-height: 2rem;
1975
+ }
1976
+
1977
+ .text-3xl {
1978
+ font-size: 1.875rem;
1979
+ line-height: 2.25rem;
1980
+ }
1981
+
1982
+ .text-4xl {
1983
+ font-size: 2.25rem;
1984
+ line-height: 2.5rem;
1985
+ }
1986
+
1987
+ .text-5xl {
1988
+ font-size: 3rem;
1989
+ line-height: 1;
1990
+ }
1991
+
1992
+ .text-8xl {
1993
+ font-size: 6rem;
1994
+ line-height: 1;
1995
+ }
1996
+
1997
+ .text-9xl {
1998
+ font-size: 8rem;
1999
+ line-height: 1;
2000
+ }
2001
+
2002
+ .text-\[1\.7rem\] {
2003
+ font-size: 1.7rem;
2004
+ }
2005
+
2006
+ .text-base {
2007
+ font-size: 1rem;
2008
+ line-height: 1.5rem;
2009
+ }
2010
+
2011
+ .text-lg {
2012
+ font-size: 1.125rem;
2013
+ line-height: 1.75rem;
2014
+ }
2015
+
2016
+ .text-sm {
2017
+ font-size: 0.875rem;
2018
+ line-height: 1.25rem;
2019
+ }
2020
+
2021
+ .text-xl {
2022
+ font-size: 1.25rem;
2023
+ line-height: 1.75rem;
2024
+ }
2025
+
2026
+ .text-xs {
2027
+ font-size: 0.75rem;
2028
+ line-height: 1rem;
2029
+ }
2030
+
2031
+ .font-bold {
2032
+ font-weight: 700;
2033
+ }
2034
+
2035
+ .font-medium {
2036
+ font-weight: 500;
2037
+ }
2038
+
2039
+ .uppercase {
2040
+ text-transform: uppercase;
2041
+ }
2042
+
2043
+ .tracking-tight {
2044
+ letter-spacing: -0.025em;
2045
+ }
2046
+
2047
+ .text-red-600 {
2048
+ --tw-text-opacity: 1;
2049
+ color: rgb(220 38 38 / var(--tw-text-opacity, 1));
2050
+ }
2051
+
2052
+ .text-transparent {
2053
+ color: transparent;
2054
+ }
2055
+
2056
+ .text-white {
2057
+ --tw-text-opacity: 1;
2058
+ color: rgb(255 255 255 / var(--tw-text-opacity, 1));
2059
+ }
2060
+
2061
+ .text-white\/70 {
2062
+ color: rgb(255 255 255 / 0.7);
2063
+ }
2064
+
2065
+ .underline {
2066
+ text-decoration-line: underline;
2067
+ }
2068
+
2069
+ .\!opacity-0 {
2070
+ opacity: 0 !important;
2071
+ }
2072
+
2073
+ .\!opacity-100 {
2074
+ opacity: 1 !important;
2075
+ }
2076
+
2077
+ .opacity-0 {
2078
+ opacity: 0;
2079
+ }
2080
+
2081
+ .opacity-100 {
2082
+ opacity: 1;
2083
+ }
2084
+
2085
+ .opacity-20 {
2086
+ opacity: 0.2;
2087
+ }
2088
+
2089
+ .opacity-25 {
2090
+ opacity: 0.25;
2091
+ }
2092
+
2093
+ .opacity-50 {
2094
+ opacity: 0.5;
2095
+ }
2096
+
2097
+ .shadow-none {
2098
+ --tw-shadow: 0 0 #0000;
2099
+ --tw-shadow-colored: 0 0 #0000;
2100
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
2101
+ }
2102
+
2103
+ .shadow-xl {
2104
+ --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
2105
+ --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
2106
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
2107
+ }
2108
+
2109
+ .outline-none {
2110
+ outline: 2px solid transparent;
2111
+ outline-offset: 2px;
2112
+ }
2113
+
2114
+ .outline {
2115
+ outline-style: solid;
2116
+ }
2117
+
2118
+ .blur {
2119
+ --tw-blur: blur(8px);
2120
+ 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);
2121
+ }
2122
+
2123
+ .blur-sm {
2124
+ --tw-blur: blur(4px);
2125
+ 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);
2126
+ }
2127
+
2128
+ .grayscale {
2129
+ --tw-grayscale: grayscale(100%);
2130
+ 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);
2131
+ }
2132
+
2133
+ .filter {
2134
+ 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);
2135
+ }
2136
+
2137
+ .filter-none {
2138
+ filter: none;
2139
+ }
2140
+
2141
+ .backdrop-blur-sm {
2142
+ --tw-backdrop-blur: blur(4px);
2143
+ -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
2144
+ backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
2145
+ }
2146
+
2147
+ .backdrop-blur-xl {
2148
+ --tw-backdrop-blur: blur(24px);
2149
+ -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
2150
+ backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
2151
+ }
2152
+
2153
+ .backdrop-grayscale-\[\.5\] {
2154
+ --tw-backdrop-grayscale: grayscale(.5);
2155
+ -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
2156
+ backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
2157
+ }
2158
+
2159
+ .backdrop-filter {
2160
+ -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
2161
+ backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
2162
+ }
2163
+
2164
+ .transition {
2165
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
2166
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
2167
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
2168
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
2169
+ transition-duration: 150ms;
2170
+ }
2171
+
2172
+ .transition-all {
2173
+ transition-property: all;
2174
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
2175
+ transition-duration: 150ms;
2176
+ }
2177
+
2178
+ .duration-300 {
2179
+ transition-duration: 300ms;
2180
+ }
2181
+
2182
+ .ease-in-out {
2183
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
2184
+ }
2185
+
2186
+ .\[--border-radius\:0rem_1rem_1rem_0rem\] {
2187
+ --border-radius: 0rem 1rem 1rem 0rem;
2188
+ }
2189
+
2190
+ .\[clip-path\:polygon\(0_20\%\2c _0\%_100\%\2c _80\%_100\%\)\] {
2191
+ clip-path: polygon(0 20%, 0% 100%, 80% 100%);
2192
+ }
2193
+
2194
+ .hover\:mr-0:hover {
2195
+ margin-right: 0px;
2196
+ }
2197
+
2198
+ @media (min-width: 640px) {
2199
+ .sm\:flex-row {
2200
+ flex-direction: row;
2201
+ }
2202
+ }
2203
+
2204
+ @media (min-width: 768px) {
2205
+ .md\:col-span-6 {
2206
+ grid-column: span 6 / span 6;
2207
+ }
2208
+ }
2209
+
2210
+ @media (min-width: 1280px) {
2211
+ .xl\:col-span-3 {
2212
+ grid-column: span 3 / span 3;
2213
+ }
2214
+ }
2215
+
2216
+ @media (orientation: portrait) {
2217
+ .portrait\:order-1 {
2218
+ order: 1;
2219
+ }
2220
+
2221
+ .portrait\:order-2 {
2222
+ order: 2;
2223
+ }
2224
+
2225
+ .portrait\:order-3 {
2226
+ order: 3;
2227
+ }
2228
+
2229
+ .portrait\:mt-\[-5rem\] {
2230
+ margin-top: -5rem;
2231
+ }
2232
+
2233
+ .portrait\:\!grid {
2234
+ display: grid !important;
2235
+ }
2236
+
2237
+ .portrait\:hidden {
2238
+ display: none;
2239
+ }
2240
+
2241
+ .portrait\:size-full {
2242
+ width: 100%;
2243
+ height: 100%;
2244
+ }
2245
+
2246
+ .portrait\:h-32 {
2247
+ height: 8rem;
2248
+ }
2249
+
2250
+ .portrait\:h-40 {
2251
+ height: 10rem;
2252
+ }
2253
+
2254
+ .portrait\:h-full {
2255
+ height: 100%;
2256
+ }
2257
+
2258
+ .portrait\:w-full {
2259
+ width: 100%;
2260
+ }
2261
+
2262
+ .portrait\:grow {
2263
+ flex-grow: 1;
2264
+ }
2265
+
2266
+ .portrait\:basis-\[calc\(50\%-0\.25rem\)\] {
2267
+ flex-basis: calc(50% - 0.25rem);
2268
+ }
2269
+
2270
+ .portrait\:basis-full {
2271
+ flex-basis: 100%;
2272
+ }
2273
+
2274
+ .portrait\:\!grid-cols-1 {
2275
+ grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
2276
+ }
2277
+
2278
+ .portrait\:flex-col {
2279
+ flex-direction: column;
2280
+ }
2281
+
2282
+ .portrait\:justify-center {
2283
+ justify-content: center;
2284
+ }
2285
+
2286
+ .portrait\:p-4 {
2287
+ padding: 1rem;
2288
+ }
2289
+
2290
+ .portrait\:pl-3 {
2291
+ padding-left: 0.75rem;
2292
+ }
2293
+ }
2294
+
2295
+ @media (orientation: landscape) {
2296
+ .landscape\:h-2\/3 {
2297
+ height: 66.666667%;
2298
+ }
2299
+
2300
+ .landscape\:h-full {
2301
+ height: 100%;
2302
+ }
2303
+
2304
+ .landscape\:w-4\/5 {
2305
+ width: 80%;
2306
+ }
2307
+
2308
+ .landscape\:w-48 {
2309
+ width: 12rem;
2310
+ }
2311
+
2312
+ .landscape\:max-w-\[60rem\] {
2313
+ max-width: 60rem;
2314
+ }
2315
+
2316
+ .landscape\:basis-24 {
2317
+ flex-basis: 6rem;
2318
+ }
2319
+
2320
+ .landscape\:rounded-3xl {
2321
+ border-radius: 1.5rem;
2322
+ }
2323
+
2324
+ .landscape\:backdrop-blur-xl {
2325
+ --tw-backdrop-blur: blur(24px);
2326
+ -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
2327
+ backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
2328
+ }
2329
+
2330
+ @media (min-width: 1280px) {
2331
+ .landscape\:xl\:max-w-\[60rem\] {
2332
+ max-width: 60rem;
2333
+ }
2334
+ }
2335
+ }
2336
+
2337
+ .rtl\:text-right:where([dir="rtl"], [dir="rtl"] *) {
2338
+ text-align: right;
2339
2339
  }