@sapphire-ion/framework 0.30.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (299) hide show
  1. package/README.md +24 -0
  2. package/esm2022/lib/classes/comparison/comparison-operator.mjs +18 -0
  3. package/esm2022/lib/classes/comparison/comparison-value-type.mjs +25 -0
  4. package/esm2022/lib/classes/comparison/comparison.mjs +41 -0
  5. package/esm2022/lib/classes/comparison/properties/bool-property.mjs +15 -0
  6. package/esm2022/lib/classes/comparison/properties/date-property.mjs +27 -0
  7. package/esm2022/lib/classes/comparison/properties/datetime-property.mjs +27 -0
  8. package/esm2022/lib/classes/comparison/properties/decimal-property.mjs +27 -0
  9. package/esm2022/lib/classes/comparison/properties/enum-property.mjs +27 -0
  10. package/esm2022/lib/classes/comparison/properties/implicit-property.mjs +12 -0
  11. package/esm2022/lib/classes/comparison/properties/int-property.mjs +27 -0
  12. package/esm2022/lib/classes/comparison/properties/long-property.mjs +27 -0
  13. package/esm2022/lib/classes/comparison/properties/string-property.mjs +15 -0
  14. package/esm2022/lib/classes/comparison/properties/time-property.mjs +27 -0
  15. package/esm2022/lib/classes/credentials.mjs +2 -0
  16. package/esm2022/lib/classes/environment.mjs +32 -0
  17. package/esm2022/lib/classes/filters/view-filtros.mjs +18 -0
  18. package/esm2022/lib/classes/inputs/table-field-form-builder.mjs +10 -0
  19. package/esm2022/lib/classes/inputs/table-field.mjs +63 -0
  20. package/esm2022/lib/classes/page-option.mjs +2 -0
  21. package/esm2022/lib/classes/routes/default-routing-factory.mjs +23 -0
  22. package/esm2022/lib/classes/routes/id-preloader-configuration.mjs +22 -0
  23. package/esm2022/lib/classes/routes/route-data.mjs +9 -0
  24. package/esm2022/lib/components/carousel/carousel-image/carousel-image.component.mjs +18 -0
  25. package/esm2022/lib/components/carousel/carousel-item/carousel-item.component.mjs +15 -0
  26. package/esm2022/lib/components/carousel/carousel.component.mjs +79 -0
  27. package/esm2022/lib/components/carousel/carousel.module.mjs +31 -0
  28. package/esm2022/lib/components/carousel/i-carousel-item.component.mjs +16 -0
  29. package/esm2022/lib/components/content-block/content-block.component.mjs +27 -0
  30. package/esm2022/lib/components/default/default-list/abstract-list.mjs +49 -0
  31. package/esm2022/lib/components/default/default-list/default-list.component.mjs +94 -0
  32. package/esm2022/lib/components/default/default-list/header-list/header-list.component.mjs +98 -0
  33. package/esm2022/lib/components/default/default-list/list.mjs +110 -0
  34. package/esm2022/lib/components/default/default-pagination/default-pagination.component.mjs +123 -0
  35. package/esm2022/lib/components/default/default-table/default-table.component.mjs +206 -0
  36. package/esm2022/lib/components/default/default-table/th-filter/th-filter.component.mjs +182 -0
  37. package/esm2022/lib/components/default/default-view/abstract-view.mjs +18 -0
  38. package/esm2022/lib/components/default/default-view/default-view.component.mjs +51 -0
  39. package/esm2022/lib/components/default/default-view/header-view/header-view.component.mjs +72 -0
  40. package/esm2022/lib/components/default/default-view/view.mjs +170 -0
  41. package/esm2022/lib/components/default/default.module.mjs +87 -0
  42. package/esm2022/lib/components/default-page/default.page.mjs +73 -0
  43. package/esm2022/lib/components/drag-drop-file/drag-drop-file.directive.mjs +60 -0
  44. package/esm2022/lib/components/drag-drop-file/drag-drop-file.module.mjs +31 -0
  45. package/esm2022/lib/components/drag-drop-file/drag-drop-overlay/drag-drop-overlay.component.mjs +15 -0
  46. package/esm2022/lib/components/drawer/default-drawer-end/default-drawer-end.component.mjs +34 -0
  47. package/esm2022/lib/components/drawer/drawer-group/drawer-group.component.mjs +49 -0
  48. package/esm2022/lib/components/drawer/drawer.component.mjs +117 -0
  49. package/esm2022/lib/components/drawer/menu.mjs +15 -0
  50. package/esm2022/lib/components/filter/filter.component.mjs +124 -0
  51. package/esm2022/lib/components/http-responses-pages/forbidden-403/forbidden-403.component.mjs +17 -0
  52. package/esm2022/lib/components/image/image.component.mjs +91 -0
  53. package/esm2022/lib/components/info-popover/info-popover.component.mjs +91 -0
  54. package/esm2022/lib/components/inputs/custom-input.mjs +77 -0
  55. package/esm2022/lib/components/inputs/custom-signal-input.mjs +74 -0
  56. package/esm2022/lib/components/inputs/input-bool/input-bool.component.mjs +43 -0
  57. package/esm2022/lib/components/inputs/input-bool/input-bool.configuration.mjs +16 -0
  58. package/esm2022/lib/components/inputs/input-color/input-color.component.mjs +487 -0
  59. package/esm2022/lib/components/inputs/input-configuration.mjs +2 -0
  60. package/esm2022/lib/components/inputs/input-cpf-cnpj/input-cpf-cnpj.component.mjs +93 -0
  61. package/esm2022/lib/components/inputs/input-cpf-cnpj/input-cpf-cnpj.configuration.mjs +6 -0
  62. package/esm2022/lib/components/inputs/input-date/input-date.component.mjs +119 -0
  63. package/esm2022/lib/components/inputs/input-date/input-date.configuration.mjs +8 -0
  64. package/esm2022/lib/components/inputs/input-decimal/input-decimal.component.mjs +269 -0
  65. package/esm2022/lib/components/inputs/input-decimal/input-decimal.configuration.mjs +45 -0
  66. package/esm2022/lib/components/inputs/input-default-configurations.mjs +14 -0
  67. package/esm2022/lib/components/inputs/input-file/download-button/download-button.component.mjs +91 -0
  68. package/esm2022/lib/components/inputs/input-file/input-file.component.mjs +128 -0
  69. package/esm2022/lib/components/inputs/input-file/input-file.configuration.mjs +11 -0
  70. package/esm2022/lib/components/inputs/input-loading/input-loading.component.mjs +16 -0
  71. package/esm2022/lib/components/inputs/input-provider-factory.mjs +15 -0
  72. package/esm2022/lib/components/inputs/input-select/ISelect.mjs +11 -0
  73. package/esm2022/lib/components/inputs/input-select/input-select-internal-option/input-select-internal-option.component.mjs +42 -0
  74. package/esm2022/lib/components/inputs/input-select/input-select-option/input-select-option.component.mjs +46 -0
  75. package/esm2022/lib/components/inputs/input-select/input-select-template.directive.mjs +16 -0
  76. package/esm2022/lib/components/inputs/input-select/input-select.component.mjs +322 -0
  77. package/esm2022/lib/components/inputs/input-select/input.select.configuration.mjs +164 -0
  78. package/esm2022/lib/components/inputs/input-string/input-string.component.mjs +50 -0
  79. package/esm2022/lib/components/inputs/input-string/input-string.configuration.mjs +18 -0
  80. package/esm2022/lib/components/inputs/input-textarea/input-textarea.component.mjs +47 -0
  81. package/esm2022/lib/components/inputs/input-type.mjs +18 -0
  82. package/esm2022/lib/components/inputs/input-validators.mjs +90 -0
  83. package/esm2022/lib/components/inputs/inputs.module.mjs +101 -0
  84. package/esm2022/lib/components/loading/loading.component.mjs +34 -0
  85. package/esm2022/lib/components/login/login-admin/login-admin.component.mjs +52 -0
  86. package/esm2022/lib/components/login/login.component.mjs +93 -0
  87. package/esm2022/lib/components/main-content/main-content.component.mjs +62 -0
  88. package/esm2022/lib/components/stepper/step/step.component.mjs +43 -0
  89. package/esm2022/lib/components/stepper/stepper.component.mjs +36 -0
  90. package/esm2022/lib/components/stepper/stepper.module.mjs +25 -0
  91. package/esm2022/lib/components/tabs/tab/tab.component.mjs +41 -0
  92. package/esm2022/lib/components/tabs/tabs/tabs.component.mjs +56 -0
  93. package/esm2022/lib/components/tabs/tabs.module.mjs +22 -0
  94. package/esm2022/lib/components/text-tooltip/text-tooltip.component.mjs +51 -0
  95. package/esm2022/lib/components/tooltip/tooltip.component.mjs +21 -0
  96. package/esm2022/lib/core.module.mjs +29 -0
  97. package/esm2022/lib/directives/ng-var.directive.mjs +29 -0
  98. package/esm2022/lib/guards/auth.guard.mjs +26 -0
  99. package/esm2022/lib/guards/error.interceptor.mjs +106 -0
  100. package/esm2022/lib/guards/token.interceptor.mjs +25 -0
  101. package/esm2022/lib/index.mjs +172 -0
  102. package/esm2022/lib/pipes/secure.pipe.mjs +42 -0
  103. package/esm2022/lib/services/auth.service.mjs +149 -0
  104. package/esm2022/lib/services/environment.service.mjs +26 -0
  105. package/esm2022/lib/services/generics.service.mjs +84 -0
  106. package/esm2022/lib/services/route/route.cache.service.mjs +15 -0
  107. package/esm2022/lib/services/route/route.provider.service.mjs +42 -0
  108. package/esm2022/lib/services/usuario.service.mjs +49 -0
  109. package/esm2022/lib/services/utils.service.mjs +149 -0
  110. package/esm2022/lib/services/web/api-url-provider.service.mjs +29 -0
  111. package/esm2022/lib/services/web/http.ativo.service.mjs +55 -0
  112. package/esm2022/lib/services/web/http.service.mjs +175 -0
  113. package/esm2022/lib/services/web/storage.service.mjs +115 -0
  114. package/esm2022/public-api.mjs +5 -0
  115. package/esm2022/sapphire-ion-framework.mjs +5 -0
  116. package/fesm2022/sapphire-ion-framework.mjs +6080 -0
  117. package/fesm2022/sapphire-ion-framework.mjs.map +1 -0
  118. package/index.d.ts +5 -0
  119. package/lib/classes/comparison/comparison-operator.d.ts +9 -0
  120. package/lib/classes/comparison/comparison-value-type.d.ts +23 -0
  121. package/lib/classes/comparison/comparison.d.ts +25 -0
  122. package/lib/classes/comparison/properties/bool-property.d.ts +7 -0
  123. package/lib/classes/comparison/properties/date-property.d.ts +11 -0
  124. package/lib/classes/comparison/properties/datetime-property.d.ts +11 -0
  125. package/lib/classes/comparison/properties/decimal-property.d.ts +11 -0
  126. package/lib/classes/comparison/properties/enum-property.d.ts +11 -0
  127. package/lib/classes/comparison/properties/implicit-property.d.ts +6 -0
  128. package/lib/classes/comparison/properties/int-property.d.ts +11 -0
  129. package/lib/classes/comparison/properties/long-property.d.ts +11 -0
  130. package/lib/classes/comparison/properties/string-property.d.ts +7 -0
  131. package/lib/classes/comparison/properties/time-property.d.ts +11 -0
  132. package/lib/classes/credentials.d.ts +5 -0
  133. package/lib/classes/environment.d.ts +13 -0
  134. package/lib/classes/filters/view-filtros.d.ts +10 -0
  135. package/lib/classes/inputs/table-field-form-builder.d.ts +5 -0
  136. package/lib/classes/inputs/table-field.d.ts +19 -0
  137. package/lib/classes/page-option.d.ts +7 -0
  138. package/lib/classes/routes/default-routing-factory.d.ts +8 -0
  139. package/lib/classes/routes/id-preloader-configuration.d.ts +28 -0
  140. package/lib/classes/routes/route-data.d.ts +5 -0
  141. package/lib/components/carousel/carousel-image/carousel-image.component.d.ts +10 -0
  142. package/lib/components/carousel/carousel-item/carousel-item.component.d.ts +9 -0
  143. package/lib/components/carousel/carousel.component.d.ts +32 -0
  144. package/lib/components/carousel/carousel.module.d.ts +12 -0
  145. package/lib/components/carousel/i-carousel-item.component.d.ts +9 -0
  146. package/lib/components/content-block/content-block.component.d.ts +15 -0
  147. package/lib/components/default/default-list/abstract-list.d.ts +21 -0
  148. package/lib/components/default/default-list/default-list.component.d.ts +42 -0
  149. package/lib/components/default/default-list/header-list/header-list.component.d.ts +45 -0
  150. package/lib/components/default/default-list/list.d.ts +37 -0
  151. package/lib/components/default/default-pagination/default-pagination.component.d.ts +36 -0
  152. package/lib/components/default/default-table/default-table.component.d.ts +71 -0
  153. package/lib/components/default/default-table/th-filter/th-filter.component.d.ts +20 -0
  154. package/lib/components/default/default-view/abstract-view.d.ts +16 -0
  155. package/lib/components/default/default-view/default-view.component.d.ts +26 -0
  156. package/lib/components/default/default-view/header-view/header-view.component.d.ts +25 -0
  157. package/lib/components/default/default-view/view.d.ts +55 -0
  158. package/lib/components/default/default.module.d.ts +28 -0
  159. package/lib/components/default-page/default.page.d.ts +35 -0
  160. package/lib/components/drag-drop-file/drag-drop-file.directive.d.ts +14 -0
  161. package/lib/components/drag-drop-file/drag-drop-file.module.d.ts +10 -0
  162. package/lib/components/drag-drop-file/drag-drop-overlay/drag-drop-overlay.component.d.ts +9 -0
  163. package/lib/components/drawer/default-drawer-end/default-drawer-end.component.d.ts +13 -0
  164. package/lib/components/drawer/drawer-group/drawer-group.component.d.ts +22 -0
  165. package/lib/components/drawer/drawer.component.d.ts +23 -0
  166. package/lib/components/drawer/menu.d.ts +9 -0
  167. package/lib/components/filter/filter.component.d.ts +29 -0
  168. package/lib/components/http-responses-pages/forbidden-403/forbidden-403.component.d.ts +8 -0
  169. package/lib/components/image/image.component.d.ts +23 -0
  170. package/lib/components/info-popover/info-popover.component.d.ts +15 -0
  171. package/lib/components/inputs/custom-input.d.ts +36 -0
  172. package/lib/components/inputs/custom-signal-input.d.ts +38 -0
  173. package/lib/components/inputs/input-bool/input-bool.component.d.ts +19 -0
  174. package/lib/components/inputs/input-bool/input-bool.configuration.d.ts +17 -0
  175. package/lib/components/inputs/input-color/input-color.component.d.ts +80 -0
  176. package/lib/components/inputs/input-configuration.d.ts +8 -0
  177. package/lib/components/inputs/input-cpf-cnpj/input-cpf-cnpj.component.d.ts +24 -0
  178. package/lib/components/inputs/input-cpf-cnpj/input-cpf-cnpj.configuration.d.ts +5 -0
  179. package/lib/components/inputs/input-date/input-date.component.d.ts +30 -0
  180. package/lib/components/inputs/input-date/input-date.configuration.d.ts +7 -0
  181. package/lib/components/inputs/input-decimal/input-decimal.component.d.ts +41 -0
  182. package/lib/components/inputs/input-decimal/input-decimal.configuration.d.ts +25 -0
  183. package/lib/components/inputs/input-default-configurations.d.ts +13 -0
  184. package/lib/components/inputs/input-file/download-button/download-button.component.d.ts +36 -0
  185. package/lib/components/inputs/input-file/input-file.component.d.ts +39 -0
  186. package/lib/components/inputs/input-file/input-file.configuration.d.ts +11 -0
  187. package/lib/components/inputs/input-loading/input-loading.component.d.ts +7 -0
  188. package/lib/components/inputs/input-provider-factory.d.ts +4 -0
  189. package/lib/components/inputs/input-select/ISelect.d.ts +21 -0
  190. package/lib/components/inputs/input-select/input-select-internal-option/input-select-internal-option.component.d.ts +18 -0
  191. package/lib/components/inputs/input-select/input-select-option/input-select-option.component.d.ts +24 -0
  192. package/lib/components/inputs/input-select/input-select-template.directive.d.ts +8 -0
  193. package/lib/components/inputs/input-select/input-select.component.d.ts +66 -0
  194. package/lib/components/inputs/input-select/input.select.configuration.d.ts +87 -0
  195. package/lib/components/inputs/input-string/input-string.component.d.ts +19 -0
  196. package/lib/components/inputs/input-string/input-string.configuration.d.ts +14 -0
  197. package/lib/components/inputs/input-textarea/input-textarea.component.d.ts +18 -0
  198. package/lib/components/inputs/input-type.d.ts +16 -0
  199. package/lib/components/inputs/input-validators.d.ts +19 -0
  200. package/lib/components/inputs/inputs.module.d.ts +28 -0
  201. package/lib/components/loading/loading.component.d.ts +18 -0
  202. package/lib/components/login/login-admin/login-admin.component.d.ts +20 -0
  203. package/lib/components/login/login.component.d.ts +28 -0
  204. package/lib/components/main-content/main-content.component.d.ts +17 -0
  205. package/lib/components/stepper/step/step.component.d.ts +15 -0
  206. package/lib/components/stepper/stepper.component.d.ts +17 -0
  207. package/lib/components/stepper/stepper.module.d.ts +10 -0
  208. package/lib/components/tabs/tab/tab.component.d.ts +19 -0
  209. package/lib/components/tabs/tabs/tabs.component.d.ts +18 -0
  210. package/lib/components/tabs/tabs.module.d.ts +12 -0
  211. package/lib/components/text-tooltip/text-tooltip.component.d.ts +16 -0
  212. package/lib/components/tooltip/tooltip.component.d.ts +7 -0
  213. package/lib/core.module.d.ts +11 -0
  214. package/lib/directives/ng-var.directive.d.ts +12 -0
  215. package/lib/guards/auth.guard.d.ts +11 -0
  216. package/lib/guards/error.interceptor.d.ts +32 -0
  217. package/lib/guards/token.interceptor.d.ts +11 -0
  218. package/lib/index.d.ts +108 -0
  219. package/lib/pipes/secure.pipe.d.ts +15 -0
  220. package/lib/services/auth.service.d.ts +47 -0
  221. package/lib/services/environment.service.d.ts +10 -0
  222. package/lib/services/generics.service.d.ts +22 -0
  223. package/lib/services/route/route.cache.service.d.ts +7 -0
  224. package/lib/services/route/route.provider.service.d.ts +13 -0
  225. package/lib/services/usuario.service.d.ts +21 -0
  226. package/lib/services/utils.service.d.ts +36 -0
  227. package/lib/services/web/api-url-provider.service.d.ts +13 -0
  228. package/lib/services/web/http.ativo.service.d.ts +31 -0
  229. package/lib/services/web/http.service.d.ts +51 -0
  230. package/lib/services/web/storage.service.d.ts +25 -0
  231. package/package.json +41 -0
  232. package/public-api.d.ts +1 -0
  233. package/themes/compiled-styles.scss +2291 -0
  234. package/themes/components/_inputs_new/input-string/input-string.component.scss +0 -0
  235. package/themes/components/_inputs_new/inputs.scss +15 -0
  236. package/themes/components/carousel/carousel-image/carousel-image.component.scss +0 -0
  237. package/themes/components/carousel/carousel-item/carousel-item.component.scss +0 -0
  238. package/themes/components/carousel/carousel.component.scss +9 -0
  239. package/themes/components/content-block/content-block.component.scss +0 -0
  240. package/themes/components/default/default-list/default-list.component.scss +0 -0
  241. package/themes/components/default/default-list/header-list/header-list.component.scss +0 -0
  242. package/themes/components/default/default-pagination/default-pagination.component.scss +22 -0
  243. package/themes/components/default/default-table/default-table.component.scss +33 -0
  244. package/themes/components/default/default-table/th-filter/th-filter.component.scss +24 -0
  245. package/themes/components/default/default-view/default-view.component.scss +5 -0
  246. package/themes/components/default/default-view/header-view/header-view.component.scss +7 -0
  247. package/themes/components/default-page/default.page.scss +4 -0
  248. package/themes/components/drag-drop-file/drag-drop-overlay/drag-drop-overlay.component.scss +9 -0
  249. package/themes/components/drawer/default-drawer-end/default-drawer-end.component.scss +0 -0
  250. package/themes/components/drawer/drawer-group/drawer-group.component.scss +22 -0
  251. package/themes/components/drawer/drawer.component.scss +46 -0
  252. package/themes/components/filter/filter.component.scss +0 -0
  253. package/themes/components/http-responses-pages/forbidden-403/forbidden-403.component.scss +19 -0
  254. package/themes/components/image/image.component.scss +0 -0
  255. package/themes/components/info-popover/info-popover.component.scss +3 -0
  256. package/themes/components/inputs/input-bool/input-bool.component.scss +14 -0
  257. package/themes/components/inputs/input-color/input-color.component.scss +48 -0
  258. package/themes/components/inputs/input-cpf-cnpj/input-cpf-cnpj.component.scss +0 -0
  259. package/themes/components/inputs/input-date/input-date.component.scss +41 -0
  260. package/themes/components/inputs/input-decimal/input-decimal.component.scss +44 -0
  261. package/themes/components/inputs/input-file/download-button/download-button.component.scss +3 -0
  262. package/themes/components/inputs/input-file/input-file.component.scss +3 -0
  263. package/themes/components/inputs/input-loading/input-loading.component.scss +0 -0
  264. package/themes/components/inputs/input-select/input-select-internal-option/input-select-internal-option.component.scss +0 -0
  265. package/themes/components/inputs/input-select/input-select-option/input-select-option.component.scss +0 -0
  266. package/themes/components/inputs/input-select/input-select.component.scss +28 -0
  267. package/themes/components/inputs/input-string/input-string.component.scss +0 -0
  268. package/themes/components/inputs/input-textarea/input-textarea.component.scss +0 -0
  269. package/themes/components/inputs/inputs.scss +67 -0
  270. package/themes/components/loading/loading.component.scss +0 -0
  271. package/themes/components/login/login-admin/login-admin.component.scss +3 -0
  272. package/themes/components/login/login.component.scss +40 -0
  273. package/themes/components/main-content/main-content.component.scss +9 -0
  274. package/themes/components/stepper/step/step.component.scss +48 -0
  275. package/themes/components/stepper/stepper.component.scss +0 -0
  276. package/themes/components/tabs/tab/tab.component.scss +0 -0
  277. package/themes/components/tabs/tabs/tabs.component.scss +23 -0
  278. package/themes/components/text-tooltip/text-tooltip.component.scss +0 -0
  279. package/themes/components/tooltip/tooltip.component.scss +23 -0
  280. package/themes/styles/components.scss +52 -0
  281. package/themes/styles/core.styles.scss +409 -0
  282. package/themes/styles/ionic/ion-action-sheet.scss +8 -0
  283. package/themes/styles/ionic/ion-alert.scss +9 -0
  284. package/themes/styles/ionic/ion-button.scss +3 -0
  285. package/themes/styles/ionic/ion-card.scss +3 -0
  286. package/themes/styles/ionic/ion-content.scss +3 -0
  287. package/themes/styles/ionic/ion-datetime.scss +6 -0
  288. package/themes/styles/ionic/ion-item.scss +10 -0
  289. package/themes/styles/ionic/ion-list.scss +4 -0
  290. package/themes/styles/ionic/ion-modal.scss +8 -0
  291. package/themes/styles/ionic/ion-popover.scss +31 -0
  292. package/themes/styles/ionic/ion-progress-bar.scss +3 -0
  293. package/themes/styles/ionic/ion-searchbar.scss +4 -0
  294. package/themes/styles/ionic/ion-toast.scss +14 -0
  295. package/themes/styles/ionic.scss +13 -0
  296. package/themes/styles/login-default.scss +87 -0
  297. package/themes/styles/mixins.scss +467 -0
  298. package/themes/styles/styles.scss +1 -0
  299. package/themes/styles/translucid.scss +21 -0
@@ -0,0 +1,2291 @@
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;
974
+ }
975
+
976
+ .aspect-square {
977
+ aspect-ratio: 1 / 1;
978
+ }
979
+
980
+ .\!size-full {
981
+ width: 100% !important;
982
+ height: 100% !important;
983
+ }
984
+
985
+ .size-0 {
986
+ width: 0px;
987
+ height: 0px;
988
+ }
989
+
990
+ .size-10 {
991
+ width: 2.5rem;
992
+ height: 2.5rem;
993
+ }
994
+
995
+ .size-12 {
996
+ width: 3rem;
997
+ height: 3rem;
998
+ }
999
+
1000
+ .size-8 {
1001
+ width: 2rem;
1002
+ height: 2rem;
1003
+ }
1004
+
1005
+ .size-full {
1006
+ width: 100%;
1007
+ height: 100%;
1008
+ }
1009
+
1010
+ .\!h-0 {
1011
+ height: 0px !important;
1012
+ }
1013
+
1014
+ .\!h-10 {
1015
+ height: 2.5rem !important;
1016
+ }
1017
+
1018
+ .h-0 {
1019
+ height: 0px;
1020
+ }
1021
+
1022
+ .h-1 {
1023
+ height: 0.25rem;
1024
+ }
1025
+
1026
+ .h-10 {
1027
+ height: 2.5rem;
1028
+ }
1029
+
1030
+ .h-12 {
1031
+ height: 3rem;
1032
+ }
1033
+
1034
+ .h-14 {
1035
+ height: 3.5rem;
1036
+ }
1037
+
1038
+ .h-16 {
1039
+ height: 4rem;
1040
+ }
1041
+
1042
+ .h-2 {
1043
+ height: 0.5rem;
1044
+ }
1045
+
1046
+ .h-3 {
1047
+ height: 0.75rem;
1048
+ }
1049
+
1050
+ .h-32 {
1051
+ height: 8rem;
1052
+ }
1053
+
1054
+ .h-4 {
1055
+ height: 1rem;
1056
+ }
1057
+
1058
+ .h-48 {
1059
+ height: 12rem;
1060
+ }
1061
+
1062
+ .h-5 {
1063
+ height: 1.25rem;
1064
+ }
1065
+
1066
+ .h-6 {
1067
+ height: 1.5rem;
1068
+ }
1069
+
1070
+ .h-7 {
1071
+ height: 1.75rem;
1072
+ }
1073
+
1074
+ .h-8 {
1075
+ height: 2rem;
1076
+ }
1077
+
1078
+ .h-\[12\.5rem\] {
1079
+ height: 12.5rem;
1080
+ }
1081
+
1082
+ .h-\[125\%\] {
1083
+ height: 125%;
1084
+ }
1085
+
1086
+ .h-\[22px\] {
1087
+ height: 22px;
1088
+ }
1089
+
1090
+ .h-\[calc\(100\%\+var\(--padding-top\)\+var\(--padding-bottom\)\)\] {
1091
+ height: calc(100% + var(--padding-top) + var(--padding-bottom));
1092
+ }
1093
+
1094
+ .h-fit {
1095
+ height: -moz-fit-content;
1096
+ height: fit-content;
1097
+ }
1098
+
1099
+ .h-full {
1100
+ height: 100%;
1101
+ }
1102
+
1103
+ .\!max-h-full {
1104
+ max-height: 100% !important;
1105
+ }
1106
+
1107
+ .max-h-full {
1108
+ max-height: 100%;
1109
+ }
1110
+
1111
+ .min-h-0 {
1112
+ min-height: 0px;
1113
+ }
1114
+
1115
+ .min-h-10 {
1116
+ min-height: 2.5rem;
1117
+ }
1118
+
1119
+ .min-h-8 {
1120
+ min-height: 2rem;
1121
+ }
1122
+
1123
+ .min-h-fit {
1124
+ min-height: -moz-fit-content;
1125
+ min-height: fit-content;
1126
+ }
1127
+
1128
+ .min-h-screen {
1129
+ min-height: 100vh;
1130
+ }
1131
+
1132
+ .\!w-0 {
1133
+ width: 0px !important;
1134
+ }
1135
+
1136
+ .\!w-16 {
1137
+ width: 4rem !important;
1138
+ }
1139
+
1140
+ .w-0 {
1141
+ width: 0px;
1142
+ }
1143
+
1144
+ .w-1 {
1145
+ width: 0.25rem;
1146
+ }
1147
+
1148
+ .w-1\/2 {
1149
+ width: 50%;
1150
+ }
1151
+
1152
+ .w-10 {
1153
+ width: 2.5rem;
1154
+ }
1155
+
1156
+ .w-12 {
1157
+ width: 3rem;
1158
+ }
1159
+
1160
+ .w-16 {
1161
+ width: 4rem;
1162
+ }
1163
+
1164
+ .w-3 {
1165
+ width: 0.75rem;
1166
+ }
1167
+
1168
+ .w-4 {
1169
+ width: 1rem;
1170
+ }
1171
+
1172
+ .w-44 {
1173
+ width: 11rem;
1174
+ }
1175
+
1176
+ .w-48 {
1177
+ width: 12rem;
1178
+ }
1179
+
1180
+ .w-56 {
1181
+ width: 14rem;
1182
+ }
1183
+
1184
+ .w-6 {
1185
+ width: 1.5rem;
1186
+ }
1187
+
1188
+ .w-8 {
1189
+ width: 2rem;
1190
+ }
1191
+
1192
+ .w-96 {
1193
+ width: 24rem;
1194
+ }
1195
+
1196
+ .w-\[125\%\] {
1197
+ width: 125%;
1198
+ }
1199
+
1200
+ .w-\[19rem\] {
1201
+ width: 19rem;
1202
+ }
1203
+
1204
+ .w-\[calc\(100\%\+var\(--padding-end\)\+var\(--padding-start\)\)\] {
1205
+ width: calc(100% + var(--padding-end) + var(--padding-start));
1206
+ }
1207
+
1208
+ .w-fit {
1209
+ width: -moz-fit-content;
1210
+ width: fit-content;
1211
+ }
1212
+
1213
+ .w-full {
1214
+ width: 100%;
1215
+ }
1216
+
1217
+ .min-w-10 {
1218
+ min-width: 2.5rem;
1219
+ }
1220
+
1221
+ .min-w-32 {
1222
+ min-width: 8rem;
1223
+ }
1224
+
1225
+ .min-w-6 {
1226
+ min-width: 1.5rem;
1227
+ }
1228
+
1229
+ .min-w-8 {
1230
+ min-width: 2rem;
1231
+ }
1232
+
1233
+ .min-w-fit {
1234
+ min-width: -moz-fit-content;
1235
+ min-width: fit-content;
1236
+ }
1237
+
1238
+ .min-w-full {
1239
+ min-width: 100%;
1240
+ }
1241
+
1242
+ .min-w-min {
1243
+ min-width: min-content;
1244
+ }
1245
+
1246
+ .max-w-full {
1247
+ max-width: 100%;
1248
+ }
1249
+
1250
+ .max-w-md {
1251
+ max-width: 28rem;
1252
+ }
1253
+
1254
+ .flex-1 {
1255
+ flex: 1 1 0%;
1256
+ }
1257
+
1258
+ .flex-shrink {
1259
+ flex-shrink: 1;
1260
+ }
1261
+
1262
+ .flex-shrink-0 {
1263
+ flex-shrink: 0;
1264
+ }
1265
+
1266
+ .shrink {
1267
+ flex-shrink: 1;
1268
+ }
1269
+
1270
+ .shrink-0 {
1271
+ flex-shrink: 0;
1272
+ }
1273
+
1274
+ .flex-grow {
1275
+ flex-grow: 1;
1276
+ }
1277
+
1278
+ .grow {
1279
+ flex-grow: 1;
1280
+ }
1281
+
1282
+ .grow-0 {
1283
+ flex-grow: 0;
1284
+ }
1285
+
1286
+ .basis-24 {
1287
+ flex-basis: 6rem;
1288
+ }
1289
+
1290
+ .basis-full {
1291
+ flex-basis: 100%;
1292
+ }
1293
+
1294
+ .border-collapse {
1295
+ border-collapse: collapse;
1296
+ }
1297
+
1298
+ .\!-translate-y-12 {
1299
+ --tw-translate-y: -3rem !important;
1300
+ 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;
1301
+ }
1302
+
1303
+ .\!translate-x-0 {
1304
+ --tw-translate-x: 0px !important;
1305
+ 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;
1306
+ }
1307
+
1308
+ .\!translate-y-0 {
1309
+ --tw-translate-y: 0px !important;
1310
+ 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;
1311
+ }
1312
+
1313
+ .-translate-x-1 {
1314
+ --tw-translate-x: -0.25rem;
1315
+ 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));
1316
+ }
1317
+
1318
+ .-translate-x-1\/2 {
1319
+ --tw-translate-x: -50%;
1320
+ 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));
1321
+ }
1322
+
1323
+ .-translate-x-12 {
1324
+ --tw-translate-x: -3rem;
1325
+ 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));
1326
+ }
1327
+
1328
+ .-translate-x-4 {
1329
+ --tw-translate-x: -1rem;
1330
+ 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));
1331
+ }
1332
+
1333
+ .-translate-x-full {
1334
+ --tw-translate-x: -100%;
1335
+ 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));
1336
+ }
1337
+
1338
+ .-translate-y-12 {
1339
+ --tw-translate-y: -3rem;
1340
+ 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));
1341
+ }
1342
+
1343
+ .-translate-y-4 {
1344
+ --tw-translate-y: -1rem;
1345
+ 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));
1346
+ }
1347
+
1348
+ .-translate-y-8 {
1349
+ --tw-translate-y: -2rem;
1350
+ 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));
1351
+ }
1352
+
1353
+ .translate-x-0 {
1354
+ --tw-translate-x: 0px;
1355
+ 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));
1356
+ }
1357
+
1358
+ .translate-x-12 {
1359
+ --tw-translate-x: 3rem;
1360
+ 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));
1361
+ }
1362
+
1363
+ .translate-x-full {
1364
+ --tw-translate-x: 100%;
1365
+ 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));
1366
+ }
1367
+
1368
+ .translate-y-0 {
1369
+ --tw-translate-y: 0px;
1370
+ 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));
1371
+ }
1372
+
1373
+ .-rotate-45 {
1374
+ --tw-rotate: -45deg;
1375
+ 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));
1376
+ }
1377
+
1378
+ .-rotate-\[135deg\] {
1379
+ --tw-rotate: -135deg;
1380
+ 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));
1381
+ }
1382
+
1383
+ .rotate-45 {
1384
+ --tw-rotate: 45deg;
1385
+ 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));
1386
+ }
1387
+
1388
+ .rotate-\[135deg\] {
1389
+ --tw-rotate: 135deg;
1390
+ 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));
1391
+ }
1392
+
1393
+ .scale-75 {
1394
+ --tw-scale-x: .75;
1395
+ --tw-scale-y: .75;
1396
+ 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));
1397
+ }
1398
+
1399
+ .transform {
1400
+ 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));
1401
+ }
1402
+
1403
+ .cursor-pointer {
1404
+ cursor: pointer;
1405
+ }
1406
+
1407
+ .select-none {
1408
+ -webkit-user-select: none;
1409
+ user-select: none;
1410
+ }
1411
+
1412
+ .resize {
1413
+ resize: both;
1414
+ }
1415
+
1416
+ .\!grid-cols-1 {
1417
+ grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
1418
+ }
1419
+
1420
+ .grid-cols-1 {
1421
+ grid-template-columns: repeat(1, minmax(0, 1fr));
1422
+ }
1423
+
1424
+ .grid-cols-10 {
1425
+ grid-template-columns: repeat(10, minmax(0, 1fr));
1426
+ }
1427
+
1428
+ .grid-cols-12 {
1429
+ grid-template-columns: repeat(12, minmax(0, 1fr));
1430
+ }
1431
+
1432
+ .grid-cols-5 {
1433
+ grid-template-columns: repeat(5, minmax(0, 1fr));
1434
+ }
1435
+
1436
+ .flex-row {
1437
+ flex-direction: row;
1438
+ }
1439
+
1440
+ .flex-row-reverse {
1441
+ flex-direction: row-reverse;
1442
+ }
1443
+
1444
+ .flex-col {
1445
+ flex-direction: column;
1446
+ }
1447
+
1448
+ .flex-wrap {
1449
+ flex-wrap: wrap;
1450
+ }
1451
+
1452
+ .items-start {
1453
+ align-items: flex-start;
1454
+ }
1455
+
1456
+ .items-center {
1457
+ align-items: center;
1458
+ }
1459
+
1460
+ .justify-start {
1461
+ justify-content: flex-start;
1462
+ }
1463
+
1464
+ .justify-end {
1465
+ justify-content: flex-end;
1466
+ }
1467
+
1468
+ .justify-center {
1469
+ justify-content: center;
1470
+ }
1471
+
1472
+ .justify-between {
1473
+ justify-content: space-between;
1474
+ }
1475
+
1476
+ .justify-evenly {
1477
+ justify-content: space-evenly;
1478
+ }
1479
+
1480
+ .gap-0 {
1481
+ gap: 0px;
1482
+ }
1483
+
1484
+ .gap-0\.5 {
1485
+ gap: 0.125rem;
1486
+ }
1487
+
1488
+ .gap-1 {
1489
+ gap: 0.25rem;
1490
+ }
1491
+
1492
+ .gap-2 {
1493
+ gap: 0.5rem;
1494
+ }
1495
+
1496
+ .gap-3 {
1497
+ gap: 0.75rem;
1498
+ }
1499
+
1500
+ .gap-4 {
1501
+ gap: 1rem;
1502
+ }
1503
+
1504
+ .space-y-6 > :not([hidden]) ~ :not([hidden]) {
1505
+ --tw-space-y-reverse: 0;
1506
+ margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
1507
+ margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
1508
+ }
1509
+
1510
+ .\!overflow-hidden {
1511
+ overflow: hidden !important;
1512
+ }
1513
+
1514
+ .overflow-hidden {
1515
+ overflow: hidden;
1516
+ }
1517
+
1518
+ .overflow-visible {
1519
+ overflow: visible;
1520
+ }
1521
+
1522
+ .overflow-x-auto {
1523
+ overflow-x: auto;
1524
+ }
1525
+
1526
+ .\!overflow-y-auto {
1527
+ overflow-y: auto !important;
1528
+ }
1529
+
1530
+ .overflow-y-auto {
1531
+ overflow-y: auto;
1532
+ }
1533
+
1534
+ .overflow-x-hidden {
1535
+ overflow-x: hidden;
1536
+ }
1537
+
1538
+ .overflow-y-hidden {
1539
+ overflow-y: hidden;
1540
+ }
1541
+
1542
+ .truncate {
1543
+ overflow: hidden;
1544
+ text-overflow: ellipsis;
1545
+ white-space: nowrap;
1546
+ }
1547
+
1548
+ .text-ellipsis {
1549
+ text-overflow: ellipsis;
1550
+ }
1551
+
1552
+ .whitespace-nowrap {
1553
+ white-space: nowrap;
1554
+ }
1555
+
1556
+ .text-wrap {
1557
+ text-wrap: wrap;
1558
+ }
1559
+
1560
+ .text-nowrap {
1561
+ text-wrap: nowrap;
1562
+ }
1563
+
1564
+ .\!rounded-2xl {
1565
+ border-radius: 1rem !important;
1566
+ }
1567
+
1568
+ .\!rounded-none {
1569
+ border-radius: 0px !important;
1570
+ }
1571
+
1572
+ .rounded {
1573
+ border-radius: 0.25rem;
1574
+ }
1575
+
1576
+ .rounded-2xl {
1577
+ border-radius: 1rem;
1578
+ }
1579
+
1580
+ .rounded-3xl {
1581
+ border-radius: 1.5rem;
1582
+ }
1583
+
1584
+ .rounded-full {
1585
+ border-radius: 9999px;
1586
+ }
1587
+
1588
+ .rounded-lg {
1589
+ border-radius: 0.5rem;
1590
+ }
1591
+
1592
+ .rounded-md {
1593
+ border-radius: 0.375rem;
1594
+ }
1595
+
1596
+ .rounded-none {
1597
+ border-radius: 0px;
1598
+ }
1599
+
1600
+ .rounded-sm {
1601
+ border-radius: 0.125rem;
1602
+ }
1603
+
1604
+ .rounded-xl {
1605
+ border-radius: 0.75rem;
1606
+ }
1607
+
1608
+ .\!rounded-l-2xl {
1609
+ border-top-left-radius: 1rem !important;
1610
+ border-bottom-left-radius: 1rem !important;
1611
+ }
1612
+
1613
+ .\!rounded-r-2xl {
1614
+ border-top-right-radius: 1rem !important;
1615
+ border-bottom-right-radius: 1rem !important;
1616
+ }
1617
+
1618
+ .\!rounded-r-none {
1619
+ border-top-right-radius: 0px !important;
1620
+ border-bottom-right-radius: 0px !important;
1621
+ }
1622
+
1623
+ .rounded-b-2xl {
1624
+ border-bottom-right-radius: 1rem;
1625
+ border-bottom-left-radius: 1rem;
1626
+ }
1627
+
1628
+ .rounded-l-2xl {
1629
+ border-top-left-radius: 1rem;
1630
+ border-bottom-left-radius: 1rem;
1631
+ }
1632
+
1633
+ .rounded-r-2xl {
1634
+ border-top-right-radius: 1rem;
1635
+ border-bottom-right-radius: 1rem;
1636
+ }
1637
+
1638
+ .rounded-r-lg {
1639
+ border-top-right-radius: 0.5rem;
1640
+ border-bottom-right-radius: 0.5rem;
1641
+ }
1642
+
1643
+ .rounded-t-2xl {
1644
+ border-top-left-radius: 1rem;
1645
+ border-top-right-radius: 1rem;
1646
+ }
1647
+
1648
+ .\!rounded-tr-none {
1649
+ border-top-right-radius: 0px !important;
1650
+ }
1651
+
1652
+ .rounded-bl-2xl {
1653
+ border-bottom-left-radius: 1rem;
1654
+ }
1655
+
1656
+ .rounded-tr-none {
1657
+ border-top-right-radius: 0px;
1658
+ }
1659
+
1660
+ .\!border-0 {
1661
+ border-width: 0px !important;
1662
+ }
1663
+
1664
+ .border {
1665
+ border-width: 1px;
1666
+ }
1667
+
1668
+ .border-4 {
1669
+ border-width: 4px;
1670
+ }
1671
+
1672
+ .\!border-x-0 {
1673
+ border-left-width: 0px !important;
1674
+ border-right-width: 0px !important;
1675
+ }
1676
+
1677
+ .\!border-y-0 {
1678
+ border-top-width: 0px !important;
1679
+ border-bottom-width: 0px !important;
1680
+ }
1681
+
1682
+ .border-x-0 {
1683
+ border-left-width: 0px;
1684
+ border-right-width: 0px;
1685
+ }
1686
+
1687
+ .\!border-b-0 {
1688
+ border-bottom-width: 0px !important;
1689
+ }
1690
+
1691
+ .\!border-l-0 {
1692
+ border-left-width: 0px !important;
1693
+ }
1694
+
1695
+ .\!border-r-0 {
1696
+ border-right-width: 0px !important;
1697
+ }
1698
+
1699
+ .border-b {
1700
+ border-bottom-width: 1px;
1701
+ }
1702
+
1703
+ .border-b-0 {
1704
+ border-bottom-width: 0px;
1705
+ }
1706
+
1707
+ .border-l {
1708
+ border-left-width: 1px;
1709
+ }
1710
+
1711
+ .border-l-2 {
1712
+ border-left-width: 2px;
1713
+ }
1714
+
1715
+ .border-r {
1716
+ border-right-width: 1px;
1717
+ }
1718
+
1719
+ .border-solid {
1720
+ border-style: solid;
1721
+ }
1722
+
1723
+ .border-dashed {
1724
+ border-style: dashed;
1725
+ }
1726
+
1727
+ .border-none {
1728
+ border-style: none;
1729
+ }
1730
+
1731
+ .border-\[var\(--ion-color-step-250\)\] {
1732
+ border-color: var(--ion-color-step-250);
1733
+ }
1734
+
1735
+ .border-transparent {
1736
+ border-color: transparent;
1737
+ }
1738
+
1739
+ .\!bg-transparent {
1740
+ background-color: transparent !important;
1741
+ }
1742
+
1743
+ .bg-\[var\(--background\)\] {
1744
+ background-color: var(--background);
1745
+ }
1746
+
1747
+ .bg-\[var\(--ion-color-secondary\)\] {
1748
+ background-color: var(--ion-color-secondary);
1749
+ }
1750
+
1751
+ .bg-red-400 {
1752
+ --tw-bg-opacity: 1;
1753
+ background-color: rgb(248 113 113 / var(--tw-bg-opacity, 1));
1754
+ }
1755
+
1756
+ .bg-red-500 {
1757
+ --tw-bg-opacity: 1;
1758
+ background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
1759
+ }
1760
+
1761
+ .bg-transparent {
1762
+ background-color: transparent;
1763
+ }
1764
+
1765
+ .bg-white {
1766
+ --tw-bg-opacity: 1;
1767
+ background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
1768
+ }
1769
+
1770
+ .bg-gradient-to-br {
1771
+ background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
1772
+ }
1773
+
1774
+ .bg-gradient-to-r {
1775
+ background-image: linear-gradient(to right, var(--tw-gradient-stops));
1776
+ }
1777
+
1778
+ .from-red-500 {
1779
+ --tw-gradient-from: #ef4444 var(--tw-gradient-from-position);
1780
+ --tw-gradient-to: rgb(239 68 68 / 0) var(--tw-gradient-to-position);
1781
+ --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
1782
+ }
1783
+
1784
+ .from-rose-400 {
1785
+ --tw-gradient-from: #fb7185 var(--tw-gradient-from-position);
1786
+ --tw-gradient-to: rgb(251 113 133 / 0) var(--tw-gradient-to-position);
1787
+ --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
1788
+ }
1789
+
1790
+ .to-pink-500 {
1791
+ --tw-gradient-to: #ec4899 var(--tw-gradient-to-position);
1792
+ }
1793
+
1794
+ .to-red-900 {
1795
+ --tw-gradient-to: #7f1d1d var(--tw-gradient-to-position);
1796
+ }
1797
+
1798
+ .object-contain {
1799
+ object-fit: contain;
1800
+ }
1801
+
1802
+ .object-cover {
1803
+ object-fit: cover;
1804
+ }
1805
+
1806
+ .object-fill {
1807
+ object-fit: fill;
1808
+ }
1809
+
1810
+ .object-none {
1811
+ object-fit: none;
1812
+ }
1813
+
1814
+ .object-scale-down {
1815
+ object-fit: scale-down;
1816
+ }
1817
+
1818
+ .\!p-0 {
1819
+ padding: 0px !important;
1820
+ }
1821
+
1822
+ .\!p-2 {
1823
+ padding: 0.5rem !important;
1824
+ }
1825
+
1826
+ .\!p-8 {
1827
+ padding: 2rem !important;
1828
+ }
1829
+
1830
+ .p-0 {
1831
+ padding: 0px;
1832
+ }
1833
+
1834
+ .p-0\.5 {
1835
+ padding: 0.125rem;
1836
+ }
1837
+
1838
+ .p-2 {
1839
+ padding: 0.5rem;
1840
+ }
1841
+
1842
+ .p-3 {
1843
+ padding: 0.75rem;
1844
+ }
1845
+
1846
+ .p-4 {
1847
+ padding: 1rem;
1848
+ }
1849
+
1850
+ .p-8 {
1851
+ padding: 2rem;
1852
+ }
1853
+
1854
+ .\!px-0 {
1855
+ padding-left: 0px !important;
1856
+ padding-right: 0px !important;
1857
+ }
1858
+
1859
+ .px-1 {
1860
+ padding-left: 0.25rem;
1861
+ padding-right: 0.25rem;
1862
+ }
1863
+
1864
+ .px-2 {
1865
+ padding-left: 0.5rem;
1866
+ padding-right: 0.5rem;
1867
+ }
1868
+
1869
+ .px-3 {
1870
+ padding-left: 0.75rem;
1871
+ padding-right: 0.75rem;
1872
+ }
1873
+
1874
+ .px-4 {
1875
+ padding-left: 1rem;
1876
+ padding-right: 1rem;
1877
+ }
1878
+
1879
+ .py-1 {
1880
+ padding-top: 0.25rem;
1881
+ padding-bottom: 0.25rem;
1882
+ }
1883
+
1884
+ .py-2 {
1885
+ padding-top: 0.5rem;
1886
+ padding-bottom: 0.5rem;
1887
+ }
1888
+
1889
+ .py-3 {
1890
+ padding-top: 0.75rem;
1891
+ padding-bottom: 0.75rem;
1892
+ }
1893
+
1894
+ .\!pb-0 {
1895
+ padding-bottom: 0px !important;
1896
+ }
1897
+
1898
+ .pb-2 {
1899
+ padding-bottom: 0.5rem;
1900
+ }
1901
+
1902
+ .pl-2 {
1903
+ padding-left: 0.5rem;
1904
+ }
1905
+
1906
+ .pl-3 {
1907
+ padding-left: 0.75rem;
1908
+ }
1909
+
1910
+ .pl-8 {
1911
+ padding-left: 2rem;
1912
+ }
1913
+
1914
+ .pr-3 {
1915
+ padding-right: 0.75rem;
1916
+ }
1917
+
1918
+ .pt-0 {
1919
+ padding-top: 0px;
1920
+ }
1921
+
1922
+ .pt-1 {
1923
+ padding-top: 0.25rem;
1924
+ }
1925
+
1926
+ .pt-2 {
1927
+ padding-top: 0.5rem;
1928
+ }
1929
+
1930
+ .text-left {
1931
+ text-align: left;
1932
+ }
1933
+
1934
+ .text-center {
1935
+ text-align: center;
1936
+ }
1937
+
1938
+ .align-sub {
1939
+ vertical-align: sub;
1940
+ }
1941
+
1942
+ .font-mono {
1943
+ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
1944
+ }
1945
+
1946
+ .\!text-sm {
1947
+ font-size: 0.875rem !important;
1948
+ line-height: 1.25rem !important;
1949
+ }
1950
+
1951
+ .text-2xl {
1952
+ font-size: 1.5rem;
1953
+ line-height: 2rem;
1954
+ }
1955
+
1956
+ .text-3xl {
1957
+ font-size: 1.875rem;
1958
+ line-height: 2.25rem;
1959
+ }
1960
+
1961
+ .text-4xl {
1962
+ font-size: 2.25rem;
1963
+ line-height: 2.5rem;
1964
+ }
1965
+
1966
+ .text-5xl {
1967
+ font-size: 3rem;
1968
+ line-height: 1;
1969
+ }
1970
+
1971
+ .text-8xl {
1972
+ font-size: 6rem;
1973
+ line-height: 1;
1974
+ }
1975
+
1976
+ .text-9xl {
1977
+ font-size: 8rem;
1978
+ line-height: 1;
1979
+ }
1980
+
1981
+ .text-base {
1982
+ font-size: 1rem;
1983
+ line-height: 1.5rem;
1984
+ }
1985
+
1986
+ .text-lg {
1987
+ font-size: 1.125rem;
1988
+ line-height: 1.75rem;
1989
+ }
1990
+
1991
+ .text-sm {
1992
+ font-size: 0.875rem;
1993
+ line-height: 1.25rem;
1994
+ }
1995
+
1996
+ .text-xl {
1997
+ font-size: 1.25rem;
1998
+ line-height: 1.75rem;
1999
+ }
2000
+
2001
+ .text-xs {
2002
+ font-size: 0.75rem;
2003
+ line-height: 1rem;
2004
+ }
2005
+
2006
+ .font-bold {
2007
+ font-weight: 700;
2008
+ }
2009
+
2010
+ .font-medium {
2011
+ font-weight: 500;
2012
+ }
2013
+
2014
+ .uppercase {
2015
+ text-transform: uppercase;
2016
+ }
2017
+
2018
+ .tracking-tight {
2019
+ letter-spacing: -0.025em;
2020
+ }
2021
+
2022
+ .text-red-600 {
2023
+ --tw-text-opacity: 1;
2024
+ color: rgb(220 38 38 / var(--tw-text-opacity, 1));
2025
+ }
2026
+
2027
+ .text-transparent {
2028
+ color: transparent;
2029
+ }
2030
+
2031
+ .text-white {
2032
+ --tw-text-opacity: 1;
2033
+ color: rgb(255 255 255 / var(--tw-text-opacity, 1));
2034
+ }
2035
+
2036
+ .text-white\/70 {
2037
+ color: rgb(255 255 255 / 0.7);
2038
+ }
2039
+
2040
+ .underline {
2041
+ text-decoration-line: underline;
2042
+ }
2043
+
2044
+ .\!opacity-0 {
2045
+ opacity: 0 !important;
2046
+ }
2047
+
2048
+ .\!opacity-100 {
2049
+ opacity: 1 !important;
2050
+ }
2051
+
2052
+ .opacity-0 {
2053
+ opacity: 0;
2054
+ }
2055
+
2056
+ .opacity-100 {
2057
+ opacity: 1;
2058
+ }
2059
+
2060
+ .opacity-20 {
2061
+ opacity: 0.2;
2062
+ }
2063
+
2064
+ .opacity-25 {
2065
+ opacity: 0.25;
2066
+ }
2067
+
2068
+ .opacity-50 {
2069
+ opacity: 0.5;
2070
+ }
2071
+
2072
+ .shadow-none {
2073
+ --tw-shadow: 0 0 #0000;
2074
+ --tw-shadow-colored: 0 0 #0000;
2075
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
2076
+ }
2077
+
2078
+ .shadow-xl {
2079
+ --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
2080
+ --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
2081
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
2082
+ }
2083
+
2084
+ .outline-none {
2085
+ outline: 2px solid transparent;
2086
+ outline-offset: 2px;
2087
+ }
2088
+
2089
+ .outline {
2090
+ outline-style: solid;
2091
+ }
2092
+
2093
+ .blur {
2094
+ --tw-blur: blur(8px);
2095
+ 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);
2096
+ }
2097
+
2098
+ .blur-sm {
2099
+ --tw-blur: blur(4px);
2100
+ 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);
2101
+ }
2102
+
2103
+ .grayscale {
2104
+ --tw-grayscale: grayscale(100%);
2105
+ 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);
2106
+ }
2107
+
2108
+ .filter {
2109
+ 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);
2110
+ }
2111
+
2112
+ .filter-none {
2113
+ filter: none;
2114
+ }
2115
+
2116
+ .backdrop-blur-sm {
2117
+ --tw-backdrop-blur: blur(4px);
2118
+ -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);
2119
+ 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);
2120
+ }
2121
+
2122
+ .backdrop-blur-xl {
2123
+ --tw-backdrop-blur: blur(24px);
2124
+ -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);
2125
+ 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);
2126
+ }
2127
+
2128
+ .backdrop-grayscale-\[\.5\] {
2129
+ --tw-backdrop-grayscale: grayscale(.5);
2130
+ -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);
2131
+ 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);
2132
+ }
2133
+
2134
+ .backdrop-filter {
2135
+ -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);
2136
+ 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);
2137
+ }
2138
+
2139
+ .transition {
2140
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
2141
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
2142
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
2143
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
2144
+ transition-duration: 150ms;
2145
+ }
2146
+
2147
+ .transition-all {
2148
+ transition-property: all;
2149
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
2150
+ transition-duration: 150ms;
2151
+ }
2152
+
2153
+ .duration-300 {
2154
+ transition-duration: 300ms;
2155
+ }
2156
+
2157
+ .ease-in-out {
2158
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
2159
+ }
2160
+
2161
+ .\[--border-radius\:0rem_1rem_1rem_0rem\] {
2162
+ --border-radius: 0rem 1rem 1rem 0rem;
2163
+ }
2164
+
2165
+ .\[clip-path\:polygon\(0_20\%\2c _0\%_100\%\2c _80\%_100\%\)\] {
2166
+ clip-path: polygon(0 20%, 0% 100%, 80% 100%);
2167
+ }
2168
+
2169
+ .hover\:mr-0:hover {
2170
+ margin-right: 0px;
2171
+ }
2172
+
2173
+ @media (min-width: 640px) {
2174
+ .sm\:flex-row {
2175
+ flex-direction: row;
2176
+ }
2177
+ }
2178
+
2179
+ @media (min-width: 768px) {
2180
+ .md\:col-span-6 {
2181
+ grid-column: span 6 / span 6;
2182
+ }
2183
+ }
2184
+
2185
+ @media (min-width: 1280px) {
2186
+ .xl\:col-span-3 {
2187
+ grid-column: span 3 / span 3;
2188
+ }
2189
+ }
2190
+
2191
+ @media (orientation: portrait) {
2192
+ .portrait\:order-1 {
2193
+ order: 1;
2194
+ }
2195
+
2196
+ .portrait\:order-2 {
2197
+ order: 2;
2198
+ }
2199
+
2200
+ .portrait\:order-3 {
2201
+ order: 3;
2202
+ }
2203
+
2204
+ .portrait\:mt-\[-5rem\] {
2205
+ margin-top: -5rem;
2206
+ }
2207
+
2208
+ .portrait\:\!grid {
2209
+ display: grid !important;
2210
+ }
2211
+
2212
+ .portrait\:hidden {
2213
+ display: none;
2214
+ }
2215
+
2216
+ .portrait\:h-32 {
2217
+ height: 8rem;
2218
+ }
2219
+
2220
+ .portrait\:h-full {
2221
+ height: 100%;
2222
+ }
2223
+
2224
+ .portrait\:w-full {
2225
+ width: 100%;
2226
+ }
2227
+
2228
+ .portrait\:grow {
2229
+ flex-grow: 1;
2230
+ }
2231
+
2232
+ .portrait\:basis-\[calc\(50\%-0\.25rem\)\] {
2233
+ flex-basis: calc(50% - 0.25rem);
2234
+ }
2235
+
2236
+ .portrait\:basis-full {
2237
+ flex-basis: 100%;
2238
+ }
2239
+
2240
+ .portrait\:\!grid-cols-1 {
2241
+ grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
2242
+ }
2243
+
2244
+ .portrait\:flex-col {
2245
+ flex-direction: column;
2246
+ }
2247
+
2248
+ .portrait\:justify-center {
2249
+ justify-content: center;
2250
+ }
2251
+
2252
+ .portrait\:pl-3 {
2253
+ padding-left: 0.75rem;
2254
+ }
2255
+ }
2256
+
2257
+ @media (orientation: landscape) {
2258
+ .landscape\:h-2\/3 {
2259
+ height: 66.666667%;
2260
+ }
2261
+
2262
+ .landscape\:w-4\/5 {
2263
+ width: 80%;
2264
+ }
2265
+
2266
+ .landscape\:w-48 {
2267
+ width: 12rem;
2268
+ }
2269
+
2270
+ .landscape\:max-w-\[60rem\] {
2271
+ max-width: 60rem;
2272
+ }
2273
+
2274
+ .landscape\:basis-24 {
2275
+ flex-basis: 6rem;
2276
+ }
2277
+
2278
+ .landscape\:rounded-3xl {
2279
+ border-radius: 1.5rem;
2280
+ }
2281
+
2282
+ .landscape\:backdrop-blur-xl {
2283
+ --tw-backdrop-blur: blur(24px);
2284
+ -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);
2285
+ 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);
2286
+ }
2287
+ }
2288
+
2289
+ .rtl\:text-right:where([dir="rtl"], [dir="rtl"] *) {
2290
+ text-align: right;
2291
+ }