@peak-ai/canvas 1.4.21 → 1.4.22

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 (213) hide show
  1. package/.babelrc +14 -0
  2. package/.eslintcache +1 -0
  3. package/.eslintignore +5 -0
  4. package/.eslintrc.js +29 -0
  5. package/{GrapesjsCanvas.js → dist/GrapesjsCanvas.js} +3 -2
  6. package/dist/GrapesjsCanvas.js.map +1 -0
  7. package/dist/package.json +62 -0
  8. package/{plugins → dist/plugins}/helpers/render-components.js +1 -1
  9. package/dist/plugins/helpers/render-components.js.map +1 -0
  10. package/dist/shadcn/components/ui/error-wrapper.js +2 -0
  11. package/dist/shadcn/components/ui/error-wrapper.js.map +1 -0
  12. package/package.json +45 -7
  13. package/scripts/build.ts +120 -0
  14. package/src/GrapesjsCanvas.tsx +494 -0
  15. package/src/constants/index.ts +25 -0
  16. package/src/declaration.d.ts +1 -0
  17. package/src/helpers/compiled-table.css +2429 -0
  18. package/src/helpers/css.ts +2667 -0
  19. package/src/helpers/date-picker.ts +807 -0
  20. package/src/helpers/filter-placeholder.ts +18 -0
  21. package/src/helpers/index.ts +13 -0
  22. package/src/helpers/merge-json.ts +106 -0
  23. package/src/index.styles.ts +58 -0
  24. package/src/index.ts +9 -0
  25. package/src/plugins/grapejs-plugin.tsx +196 -0
  26. package/src/plugins/helpers/custom-modal.tsx +123 -0
  27. package/src/plugins/helpers/data-table.tsx +300 -0
  28. package/src/plugins/helpers/extra.tsx +164 -0
  29. package/src/plugins/helpers/query-cache-context.tsx +154 -0
  30. package/src/plugins/helpers/query-cache-singleton.ts +176 -0
  31. package/src/plugins/helpers/query-cache-utils.ts +226 -0
  32. package/src/plugins/helpers/query-details-modal.tsx +400 -0
  33. package/src/plugins/helpers/query-heading-formatter.ts +24 -0
  34. package/src/plugins/helpers/query-loading-modal.tsx +94 -0
  35. package/src/plugins/helpers/render-components.tsx +1450 -0
  36. package/src/plugins/helpers/styled-info-button.tsx +504 -0
  37. package/src/public/canvas.css +42 -0
  38. package/src/public/components-css/table/table-output.css +2436 -0
  39. package/src/public/components-css/table/table.css +30 -0
  40. package/src/public/output.css +2465 -0
  41. package/src/public/table.css +135 -0
  42. package/src/shadcn/components/icons/AiAvatarIcon.tsx +47 -0
  43. package/src/shadcn/components/icons/Co_driver Expanding button copy.svg +21 -0
  44. package/src/shadcn/components/icons/ai-avatar.svg +7 -0
  45. package/src/shadcn/components/icons/thinking.gif +0 -0
  46. package/src/shadcn/components/ui/button.tsx +132 -0
  47. package/src/shadcn/components/ui/card.tsx +92 -0
  48. package/src/shadcn/components/ui/chart.tsx +324 -0
  49. package/src/shadcn/components/ui/checkbox.tsx +27 -0
  50. package/src/shadcn/components/ui/component-wrapper.tsx +61 -0
  51. package/src/shadcn/components/ui/date-filter.tsx +816 -0
  52. package/src/shadcn/components/ui/error-container.tsx +125 -0
  53. package/src/shadcn/components/ui/error-wrapper.tsx +99 -0
  54. package/src/shadcn/components/ui/filter.tsx +368 -0
  55. package/src/shadcn/components/ui/hover-card.tsx +36 -0
  56. package/src/shadcn/components/ui/input.tsx +20 -0
  57. package/src/shadcn/components/ui/label.tsx +24 -0
  58. package/src/shadcn/components/ui/pagination.tsx +213 -0
  59. package/src/shadcn/components/ui/scroll-area.tsx +59 -0
  60. package/src/shadcn/components/ui/search.tsx +150 -0
  61. package/src/shadcn/components/ui/separator.tsx +26 -0
  62. package/src/shadcn/components/ui/skeleton.tsx +69 -0
  63. package/src/shadcn/components/ui/table.tsx +196 -0
  64. package/src/shadcn/components/ui/tabs.tsx +55 -0
  65. package/src/shadcn/components/ui/textarea.tsx +18 -0
  66. package/src/shadcn/components/ui/tooltip.tsx +87 -0
  67. package/src/shadcn/utils.ts +6 -0
  68. package/src/types/grapesjs-tailwind.d.ts +61 -0
  69. package/src/types/images.d.ts +1 -0
  70. package/tailwind.config.js +5 -0
  71. package/tooling/tailwind-compiler/index.js +99 -0
  72. package/tooling/tailwind-compiler/package.json +11 -0
  73. package/tooling/tailwind-compiler/yarn.lock +123 -0
  74. package/tsconfig.build.json +15 -0
  75. package/tsconfig.json +8 -0
  76. package/GrapesjsCanvas.js.map +0 -1
  77. package/plugins/helpers/render-components.js.map +0 -1
  78. package/shadcn/components/ui/error-wrapper.js +0 -2
  79. package/shadcn/components/ui/error-wrapper.js.map +0 -1
  80. /package/{GrapesjsCanvas.d.ts → dist/GrapesjsCanvas.d.ts} +0 -0
  81. /package/{constants → dist/constants}/index.d.ts +0 -0
  82. /package/{constants → dist/constants}/index.js +0 -0
  83. /package/{constants → dist/constants}/index.js.map +0 -0
  84. /package/{declaration.d.js → dist/declaration.d.js} +0 -0
  85. /package/{declaration.d.js.map → dist/declaration.d.js.map} +0 -0
  86. /package/{helpers → dist/helpers}/compiled-table.css +0 -0
  87. /package/{helpers → dist/helpers}/css.d.ts +0 -0
  88. /package/{helpers → dist/helpers}/css.js +0 -0
  89. /package/{helpers → dist/helpers}/css.js.map +0 -0
  90. /package/{helpers → dist/helpers}/date-picker.d.ts +0 -0
  91. /package/{helpers → dist/helpers}/date-picker.js +0 -0
  92. /package/{helpers → dist/helpers}/date-picker.js.map +0 -0
  93. /package/{helpers → dist/helpers}/filter-placeholder.d.ts +0 -0
  94. /package/{helpers → dist/helpers}/filter-placeholder.js +0 -0
  95. /package/{helpers → dist/helpers}/filter-placeholder.js.map +0 -0
  96. /package/{helpers → dist/helpers}/index.d.ts +0 -0
  97. /package/{helpers → dist/helpers}/index.js +0 -0
  98. /package/{helpers → dist/helpers}/index.js.map +0 -0
  99. /package/{helpers → dist/helpers}/merge-json.d.ts +0 -0
  100. /package/{helpers → dist/helpers}/merge-json.js +0 -0
  101. /package/{helpers → dist/helpers}/merge-json.js.map +0 -0
  102. /package/{index.d.ts → dist/index.d.ts} +0 -0
  103. /package/{index.js → dist/index.js} +0 -0
  104. /package/{index.js.map → dist/index.js.map} +0 -0
  105. /package/{index.styles.d.ts → dist/index.styles.d.ts} +0 -0
  106. /package/{index.styles.js → dist/index.styles.js} +0 -0
  107. /package/{index.styles.js.map → dist/index.styles.js.map} +0 -0
  108. /package/{plugins → dist/plugins}/grapejs-plugin.d.ts +0 -0
  109. /package/{plugins → dist/plugins}/grapejs-plugin.js +0 -0
  110. /package/{plugins → dist/plugins}/grapejs-plugin.js.map +0 -0
  111. /package/{plugins → dist/plugins}/helpers/custom-modal.d.ts +0 -0
  112. /package/{plugins → dist/plugins}/helpers/custom-modal.js +0 -0
  113. /package/{plugins → dist/plugins}/helpers/custom-modal.js.map +0 -0
  114. /package/{plugins → dist/plugins}/helpers/data-table.d.ts +0 -0
  115. /package/{plugins → dist/plugins}/helpers/data-table.js +0 -0
  116. /package/{plugins → dist/plugins}/helpers/data-table.js.map +0 -0
  117. /package/{plugins → dist/plugins}/helpers/extra.d.ts +0 -0
  118. /package/{plugins → dist/plugins}/helpers/extra.js +0 -0
  119. /package/{plugins → dist/plugins}/helpers/extra.js.map +0 -0
  120. /package/{plugins → dist/plugins}/helpers/query-cache-context.d.ts +0 -0
  121. /package/{plugins → dist/plugins}/helpers/query-cache-context.js +0 -0
  122. /package/{plugins → dist/plugins}/helpers/query-cache-context.js.map +0 -0
  123. /package/{plugins → dist/plugins}/helpers/query-cache-singleton.d.ts +0 -0
  124. /package/{plugins → dist/plugins}/helpers/query-cache-singleton.js +0 -0
  125. /package/{plugins → dist/plugins}/helpers/query-cache-singleton.js.map +0 -0
  126. /package/{plugins → dist/plugins}/helpers/query-cache-utils.d.ts +0 -0
  127. /package/{plugins → dist/plugins}/helpers/query-cache-utils.js +0 -0
  128. /package/{plugins → dist/plugins}/helpers/query-cache-utils.js.map +0 -0
  129. /package/{plugins → dist/plugins}/helpers/query-details-modal.d.ts +0 -0
  130. /package/{plugins → dist/plugins}/helpers/query-details-modal.js +0 -0
  131. /package/{plugins → dist/plugins}/helpers/query-details-modal.js.map +0 -0
  132. /package/{plugins → dist/plugins}/helpers/query-heading-formatter.d.ts +0 -0
  133. /package/{plugins → dist/plugins}/helpers/query-heading-formatter.js +0 -0
  134. /package/{plugins → dist/plugins}/helpers/query-heading-formatter.js.map +0 -0
  135. /package/{plugins → dist/plugins}/helpers/query-loading-modal.d.ts +0 -0
  136. /package/{plugins → dist/plugins}/helpers/query-loading-modal.js +0 -0
  137. /package/{plugins → dist/plugins}/helpers/query-loading-modal.js.map +0 -0
  138. /package/{plugins → dist/plugins}/helpers/render-components.d.ts +0 -0
  139. /package/{plugins → dist/plugins}/helpers/styled-info-button.d.ts +0 -0
  140. /package/{plugins → dist/plugins}/helpers/styled-info-button.js +0 -0
  141. /package/{plugins → dist/plugins}/helpers/styled-info-button.js.map +0 -0
  142. /package/{shadcn → dist/shadcn}/components/icons/AiAvatarIcon.d.ts +0 -0
  143. /package/{shadcn → dist/shadcn}/components/icons/AiAvatarIcon.js +0 -0
  144. /package/{shadcn → dist/shadcn}/components/icons/AiAvatarIcon.js.map +0 -0
  145. /package/{shadcn → dist/shadcn}/components/icons/thinking.gif +0 -0
  146. /package/{shadcn → dist/shadcn}/components/ui/button.d.ts +0 -0
  147. /package/{shadcn → dist/shadcn}/components/ui/button.js +0 -0
  148. /package/{shadcn → dist/shadcn}/components/ui/button.js.map +0 -0
  149. /package/{shadcn → dist/shadcn}/components/ui/card.d.ts +0 -0
  150. /package/{shadcn → dist/shadcn}/components/ui/card.js +0 -0
  151. /package/{shadcn → dist/shadcn}/components/ui/card.js.map +0 -0
  152. /package/{shadcn → dist/shadcn}/components/ui/chart.d.ts +0 -0
  153. /package/{shadcn → dist/shadcn}/components/ui/chart.js +0 -0
  154. /package/{shadcn → dist/shadcn}/components/ui/chart.js.map +0 -0
  155. /package/{shadcn → dist/shadcn}/components/ui/checkbox.d.ts +0 -0
  156. /package/{shadcn → dist/shadcn}/components/ui/checkbox.js +0 -0
  157. /package/{shadcn → dist/shadcn}/components/ui/checkbox.js.map +0 -0
  158. /package/{shadcn → dist/shadcn}/components/ui/component-wrapper.d.ts +0 -0
  159. /package/{shadcn → dist/shadcn}/components/ui/component-wrapper.js +0 -0
  160. /package/{shadcn → dist/shadcn}/components/ui/component-wrapper.js.map +0 -0
  161. /package/{shadcn → dist/shadcn}/components/ui/date-filter.d.ts +0 -0
  162. /package/{shadcn → dist/shadcn}/components/ui/date-filter.js +0 -0
  163. /package/{shadcn → dist/shadcn}/components/ui/date-filter.js.map +0 -0
  164. /package/{shadcn → dist/shadcn}/components/ui/error-container.d.ts +0 -0
  165. /package/{shadcn → dist/shadcn}/components/ui/error-container.js +0 -0
  166. /package/{shadcn → dist/shadcn}/components/ui/error-container.js.map +0 -0
  167. /package/{shadcn → dist/shadcn}/components/ui/error-wrapper.d.ts +0 -0
  168. /package/{shadcn → dist/shadcn}/components/ui/filter.d.ts +0 -0
  169. /package/{shadcn → dist/shadcn}/components/ui/filter.js +0 -0
  170. /package/{shadcn → dist/shadcn}/components/ui/filter.js.map +0 -0
  171. /package/{shadcn → dist/shadcn}/components/ui/hover-card.d.ts +0 -0
  172. /package/{shadcn → dist/shadcn}/components/ui/hover-card.js +0 -0
  173. /package/{shadcn → dist/shadcn}/components/ui/hover-card.js.map +0 -0
  174. /package/{shadcn → dist/shadcn}/components/ui/input.d.ts +0 -0
  175. /package/{shadcn → dist/shadcn}/components/ui/input.js +0 -0
  176. /package/{shadcn → dist/shadcn}/components/ui/input.js.map +0 -0
  177. /package/{shadcn → dist/shadcn}/components/ui/label.d.ts +0 -0
  178. /package/{shadcn → dist/shadcn}/components/ui/label.js +0 -0
  179. /package/{shadcn → dist/shadcn}/components/ui/label.js.map +0 -0
  180. /package/{shadcn → dist/shadcn}/components/ui/pagination.d.ts +0 -0
  181. /package/{shadcn → dist/shadcn}/components/ui/pagination.js +0 -0
  182. /package/{shadcn → dist/shadcn}/components/ui/pagination.js.map +0 -0
  183. /package/{shadcn → dist/shadcn}/components/ui/scroll-area.d.ts +0 -0
  184. /package/{shadcn → dist/shadcn}/components/ui/scroll-area.js +0 -0
  185. /package/{shadcn → dist/shadcn}/components/ui/scroll-area.js.map +0 -0
  186. /package/{shadcn → dist/shadcn}/components/ui/search.d.ts +0 -0
  187. /package/{shadcn → dist/shadcn}/components/ui/search.js +0 -0
  188. /package/{shadcn → dist/shadcn}/components/ui/search.js.map +0 -0
  189. /package/{shadcn → dist/shadcn}/components/ui/separator.d.ts +0 -0
  190. /package/{shadcn → dist/shadcn}/components/ui/separator.js +0 -0
  191. /package/{shadcn → dist/shadcn}/components/ui/separator.js.map +0 -0
  192. /package/{shadcn → dist/shadcn}/components/ui/skeleton.d.ts +0 -0
  193. /package/{shadcn → dist/shadcn}/components/ui/skeleton.js +0 -0
  194. /package/{shadcn → dist/shadcn}/components/ui/skeleton.js.map +0 -0
  195. /package/{shadcn → dist/shadcn}/components/ui/table.d.ts +0 -0
  196. /package/{shadcn → dist/shadcn}/components/ui/table.js +0 -0
  197. /package/{shadcn → dist/shadcn}/components/ui/table.js.map +0 -0
  198. /package/{shadcn → dist/shadcn}/components/ui/tabs.d.ts +0 -0
  199. /package/{shadcn → dist/shadcn}/components/ui/tabs.js +0 -0
  200. /package/{shadcn → dist/shadcn}/components/ui/tabs.js.map +0 -0
  201. /package/{shadcn → dist/shadcn}/components/ui/textarea.d.ts +0 -0
  202. /package/{shadcn → dist/shadcn}/components/ui/textarea.js +0 -0
  203. /package/{shadcn → dist/shadcn}/components/ui/textarea.js.map +0 -0
  204. /package/{shadcn → dist/shadcn}/components/ui/tooltip.d.ts +0 -0
  205. /package/{shadcn → dist/shadcn}/components/ui/tooltip.js +0 -0
  206. /package/{shadcn → dist/shadcn}/components/ui/tooltip.js.map +0 -0
  207. /package/{shadcn → dist/shadcn}/utils.d.ts +0 -0
  208. /package/{shadcn → dist/shadcn}/utils.js +0 -0
  209. /package/{shadcn → dist/shadcn}/utils.js.map +0 -0
  210. /package/{types → dist/types}/grapesjs-tailwind.d.js +0 -0
  211. /package/{types → dist/types}/grapesjs-tailwind.d.js.map +0 -0
  212. /package/{types → dist/types}/images.d.js +0 -0
  213. /package/{types → dist/types}/images.d.js.map +0 -0
@@ -0,0 +1,2667 @@
1
+ export const tailwindCompiledCss = `/*! tailwindcss v4.1.7 | MIT License | https://tailwindcss.com */
2
+ :root, :host {
3
+ --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
4
+ "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
5
+ --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
6
+ "Courier New", monospace;
7
+ --color-red-50: oklch(97.1% 0.013 17.38);
8
+ --color-red-100: oklch(93.6% 0.032 17.717);
9
+ --color-red-200: oklch(88.5% 0.062 18.334);
10
+ --color-red-300: oklch(80.8% 0.114 19.571);
11
+ --color-red-600: oklch(57.7% 0.245 27.325);
12
+ --color-green-300: oklch(87.1% 0.15 154.449);
13
+ --color-green-600: oklch(62.7% 0.194 149.214);
14
+ --color-blue-50: oklch(97% 0.014 254.604);
15
+ --color-blue-500: oklch(62.3% 0.214 259.815);
16
+ --color-blue-600: oklch(54.6% 0.245 262.881);
17
+ --color-blue-700: oklch(48.8% 0.243 264.376);
18
+ --color-purple-600: oklch(55.8% 0.288 302.321);
19
+ --color-pink-50: oklch(97.1% 0.014 343.198);
20
+ --color-pink-900: oklch(40.8% 0.153 2.432);
21
+ --color-slate-100: oklch(96.8% 0.007 247.896);
22
+ --color-gray-50: oklch(98.5% 0.002 247.839);
23
+ --color-gray-100: oklch(96.7% 0.003 264.542);
24
+ --color-gray-200: oklch(92.8% 0.006 264.531);
25
+ --color-gray-300: oklch(87.2% 0.01 258.338);
26
+ --color-gray-400: oklch(70.7% 0.022 261.325);
27
+ --color-gray-500: oklch(55.1% 0.027 264.364);
28
+ --color-gray-600: oklch(44.6% 0.03 256.802);
29
+ --color-gray-700: oklch(37.3% 0.034 259.733);
30
+ --color-gray-800: oklch(27.8% 0.033 256.848);
31
+ --color-gray-900: oklch(21% 0.034 264.665);
32
+ --color-black: #000;
33
+ --color-white: #fff;
34
+ --spacing: 0.25rem;
35
+ --container-md: 28rem;
36
+ --container-2xl: 42rem;
37
+ --text-xs: 0.75rem;
38
+ --text-xs--line-height: calc(1 / 0.75);
39
+ --text-sm: 0.875rem;
40
+ --text-sm--line-height: calc(1.25 / 0.875);
41
+ --text-base: 1rem;
42
+ --text-base--line-height: calc(1.5 / 1);
43
+ --text-lg: 1.125rem;
44
+ --text-lg--line-height: calc(1.75 / 1.125);
45
+ --text-xl: 1.25rem;
46
+ --text-xl--line-height: calc(1.75 / 1.25);
47
+ --text-2xl: 1.5rem;
48
+ --text-2xl--line-height: calc(2 / 1.5);
49
+ --text-3xl: 1.875rem;
50
+ --text-3xl--line-height: calc(2.25 / 1.875);
51
+ --text-4xl: 2.25rem;
52
+ --text-4xl--line-height: calc(2.5 / 2.25);
53
+ --text-5xl: 3rem;
54
+ --text-5xl--line-height: 1;
55
+ --font-weight-medium: 500;
56
+ --font-weight-semibold: 600;
57
+ --font-weight-bold: 700;
58
+ --leading-relaxed: 1.625;
59
+ --radius-sm: calc(0.625rem - 4px);
60
+ --radius-md: calc(0.625rem - 2px);
61
+ --radius-lg: 0.625rem;
62
+ --radius-xl: calc(0.625rem + 4px);
63
+ --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
64
+ --animate-spin: spin 1s linear infinite;
65
+ --animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
66
+ --aspect-video: 16 / 9;
67
+ --default-transition-duration: 150ms;
68
+ --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
69
+ --default-font-family: var(--font-sans);
70
+ --default-mono-font-family: var(--font-mono);
71
+ --color-border: oklch(0.922 0 0);
72
+ }
73
+ *, ::after, ::before, ::backdrop, ::file-selector-button {
74
+ box-sizing: border-box;
75
+ margin: 0;
76
+ padding: 0;
77
+ border: 0 solid;
78
+ }
79
+ html, :host {
80
+ line-height: 1.5;
81
+ -webkit-text-size-adjust: 100%;
82
+ -moz-tab-size: 4;
83
+ -o-tab-size: 4;
84
+ tab-size: 4;
85
+ font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
86
+ "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
87
+ font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
88
+ font-feature-settings: normal;
89
+ font-feature-settings: var(--default-font-feature-settings, normal);
90
+ font-variation-settings: normal;
91
+ font-variation-settings: var(--default-font-variation-settings, normal);
92
+ -webkit-tap-highlight-color: transparent;
93
+ }
94
+ hr {
95
+ height: 0;
96
+ color: inherit;
97
+ border-top-width: 1px;
98
+ }
99
+ abbr:where([title]) {
100
+ -webkit-text-decoration: underline dotted;
101
+ text-decoration: underline dotted;
102
+ }
103
+ h1, h2, h3, h4, h5, h6 {
104
+ font-size: inherit;
105
+ font-weight: inherit;
106
+ }
107
+ a {
108
+ color: inherit;
109
+ -webkit-text-decoration: inherit;
110
+ text-decoration: inherit;
111
+ }
112
+ b, strong {
113
+ font-weight: bolder;
114
+ }
115
+ code, kbd, samp, pre {
116
+ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
117
+ "Courier New", monospace;
118
+ font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
119
+ font-feature-settings: normal;
120
+ font-feature-settings: var(--default-mono-font-feature-settings, normal);
121
+ font-variation-settings: normal;
122
+ font-variation-settings: var(--default-mono-font-variation-settings, normal);
123
+ font-size: 1em;
124
+ }
125
+ small {
126
+ font-size: 80%;
127
+ }
128
+ sub, sup {
129
+ font-size: 75%;
130
+ line-height: 0;
131
+ position: relative;
132
+ vertical-align: baseline;
133
+ }
134
+ sub {
135
+ bottom: -0.25em;
136
+ }
137
+ sup {
138
+ top: -0.5em;
139
+ }
140
+ table {
141
+ text-indent: 0;
142
+ border-color: inherit;
143
+ border-collapse: collapse;
144
+ }
145
+ :-moz-focusring {
146
+ outline: auto;
147
+ }
148
+ progress {
149
+ vertical-align: baseline;
150
+ }
151
+ summary {
152
+ display: list-item;
153
+ }
154
+ ol, ul, menu {
155
+ list-style: none;
156
+ }
157
+ img, svg, video, canvas, audio, iframe, embed, object {
158
+ display: block;
159
+ vertical-align: middle;
160
+ }
161
+ img, video {
162
+ max-width: 100%;
163
+ height: auto;
164
+ }
165
+ button, input, select, optgroup, textarea, ::file-selector-button {
166
+ font: inherit;
167
+ font-feature-settings: inherit;
168
+ font-variation-settings: inherit;
169
+ letter-spacing: inherit;
170
+ color: inherit;
171
+ border-radius: 0;
172
+ background-color: transparent;
173
+ opacity: 1;
174
+ }
175
+ :where(select:is([multiple], [size])) optgroup {
176
+ font-weight: bolder;
177
+ }
178
+ :where(select:is([multiple], [size])) optgroup option {
179
+ padding-inline-start: 20px;
180
+ }
181
+ ::file-selector-button {
182
+ margin-inline-end: 4px;
183
+ }
184
+ ::-moz-placeholder {
185
+ opacity: 1;
186
+ }
187
+ ::placeholder {
188
+ opacity: 1;
189
+ }
190
+ @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
191
+ ::-moz-placeholder {
192
+ color: currentcolor;
193
+ @supports (color: color-mix(in lab, red, red)) {
194
+ color: color-mix(in oklab, currentcolor 50%, transparent);
195
+ }
196
+ }
197
+ ::placeholder {
198
+ color: currentcolor;
199
+ @supports (color: color-mix(in lab, red, red)) {
200
+ color: color-mix(in oklab, currentcolor 50%, transparent);
201
+ }
202
+ }
203
+ }
204
+ textarea {
205
+ resize: vertical;
206
+ }
207
+ ::-webkit-search-decoration {
208
+ -webkit-appearance: none;
209
+ }
210
+ ::-webkit-date-and-time-value {
211
+ min-height: 1lh;
212
+ text-align: inherit;
213
+ }
214
+ ::-webkit-datetime-edit {
215
+ display: inline-flex;
216
+ }
217
+ ::-webkit-datetime-edit-fields-wrapper {
218
+ padding: 0;
219
+ }
220
+ ::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
221
+ padding-block: 0;
222
+ }
223
+ :-moz-ui-invalid {
224
+ box-shadow: none;
225
+ }
226
+ button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-selector-button {
227
+ -webkit-appearance: button;
228
+ -moz-appearance: button;
229
+ appearance: button;
230
+ }
231
+ ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
232
+ height: auto;
233
+ }
234
+ [hidden]:where(:not([hidden="until-found"])) {
235
+ display: none !important;
236
+ }
237
+ .\\@container\\/card-header {
238
+ container-type: inline-size;
239
+ container-name: card-header;
240
+ }
241
+ .pointer-events-none {
242
+ pointer-events: none;
243
+ }
244
+ .sr-only {
245
+ position: absolute;
246
+ width: 1px;
247
+ height: 1px;
248
+ padding: 0;
249
+ margin: -1px;
250
+ overflow: hidden;
251
+ clip: rect(0, 0, 0, 0);
252
+ white-space: nowrap;
253
+ border-width: 0;
254
+ }
255
+ .absolute {
256
+ position: absolute;
257
+ }
258
+ .fixed {
259
+ position: fixed;
260
+ }
261
+ .relative {
262
+ position: relative;
263
+ }
264
+ .sticky {
265
+ position: sticky;
266
+ }
267
+ .inset-0 {
268
+ inset: calc(0.25rem * 0);
269
+ inset: calc(var(--spacing) * 0);
270
+ }
271
+ .top-0 {
272
+ top: calc(0.25rem * 0);
273
+ top: calc(var(--spacing) * 0);
274
+ }
275
+ .top-1 {
276
+ top: calc(0.25rem * 1);
277
+ top: calc(var(--spacing) * 1);
278
+ }
279
+ .top-2 {
280
+ top: calc(0.25rem * 2);
281
+ top: calc(var(--spacing) * 2);
282
+ }
283
+ .top-7 {
284
+ top: calc(0.25rem * 7);
285
+ top: calc(var(--spacing) * 7);
286
+ }
287
+ .top-full {
288
+ top: 100%;
289
+ }
290
+ .right-0 {
291
+ right: calc(0.25rem * 0);
292
+ right: calc(var(--spacing) * 0);
293
+ }
294
+ .right-2 {
295
+ right: calc(0.25rem * 2);
296
+ right: calc(var(--spacing) * 2);
297
+ }
298
+ .right-3 {
299
+ right: calc(0.25rem * 3);
300
+ right: calc(var(--spacing) * 3);
301
+ }
302
+ .right-10 {
303
+ right: calc(0.25rem * 10);
304
+ right: calc(var(--spacing) * 10);
305
+ }
306
+ .bottom-0 {
307
+ bottom: calc(0.25rem * 0);
308
+ bottom: calc(var(--spacing) * 0);
309
+ }
310
+ .left-0 {
311
+ left: calc(0.25rem * 0);
312
+ left: calc(var(--spacing) * 0);
313
+ }
314
+ .left-1 {
315
+ left: calc(0.25rem * 1);
316
+ left: calc(var(--spacing) * 1);
317
+ }
318
+ .left-1\\/2 {
319
+ left: calc(1/2 * 100%);
320
+ }
321
+ .left-2 {
322
+ left: calc(0.25rem * 2);
323
+ left: calc(var(--spacing) * 2);
324
+ }
325
+ .\\!z-\\[9999\\] {
326
+ z-index: 9999 !important;
327
+ }
328
+ .z-2 {
329
+ z-index: 2;
330
+ }
331
+ .z-10 {
332
+ z-index: 10;
333
+ }
334
+ .z-50 {
335
+ z-index: 50;
336
+ }
337
+ .z-\\[9999\\] {
338
+ z-index: 9999;
339
+ }
340
+ .col-start-2 {
341
+ grid-column-start: 2;
342
+ }
343
+ .row-span-2 {
344
+ grid-row: span 2 / span 2;
345
+ }
346
+ .row-start-1 {
347
+ grid-row-start: 1;
348
+ }
349
+ .container {
350
+ width: 100%;
351
+ max-width: 40rem;
352
+ max-width: 48rem;
353
+ max-width: 64rem;
354
+ max-width: 80rem;
355
+ max-width: 96rem
356
+ }
357
+ .-m-0 {
358
+ margin: calc(0.25rem * -0);
359
+ margin: calc(var(--spacing) * -0);
360
+ }
361
+ .-m-0\\.5 {
362
+ margin: calc(0.25rem * -0.5);
363
+ margin: calc(var(--spacing) * -0.5);
364
+ }
365
+ .m-0 {
366
+ margin: calc(0.25rem * 0);
367
+ margin: calc(var(--spacing) * 0);
368
+ }
369
+ .m-6 {
370
+ margin: calc(0.25rem * 6);
371
+ margin: calc(var(--spacing) * 6);
372
+ }
373
+ .-mx-1 {
374
+ margin-inline: calc(0.25rem * -1);
375
+ margin-inline: calc(var(--spacing) * -1);
376
+ }
377
+ .mx-auto {
378
+ margin-inline: auto;
379
+ }
380
+ .my-0 {
381
+ margin-block: calc(0.25rem * 0);
382
+ margin-block: calc(var(--spacing) * 0);
383
+ }
384
+ .my-0\\.5 {
385
+ margin-block: calc(0.25rem * 0.5);
386
+ margin-block: calc(var(--spacing) * 0.5);
387
+ }
388
+ .my-1 {
389
+ margin-block: calc(0.25rem * 1);
390
+ margin-block: calc(var(--spacing) * 1);
391
+ }
392
+ .my-4 {
393
+ margin-block: calc(0.25rem * 4);
394
+ margin-block: calc(var(--spacing) * 4);
395
+ }
396
+ .my-6 {
397
+ margin-block: calc(0.25rem * 6);
398
+ margin-block: calc(var(--spacing) * 6);
399
+ }
400
+ .mt-1 {
401
+ margin-top: calc(0.25rem * 1);
402
+ margin-top: calc(var(--spacing) * 1);
403
+ }
404
+ .mt-2 {
405
+ margin-top: calc(0.25rem * 2);
406
+ margin-top: calc(var(--spacing) * 2);
407
+ }
408
+ .mt-4 {
409
+ margin-top: calc(0.25rem * 4);
410
+ margin-top: calc(var(--spacing) * 4);
411
+ }
412
+ .mt-auto {
413
+ margin-top: auto;
414
+ }
415
+ .mr-1 {
416
+ margin-right: calc(0.25rem * 1);
417
+ margin-right: calc(var(--spacing) * 1);
418
+ }
419
+ .mr-2 {
420
+ margin-right: calc(0.25rem * 2);
421
+ margin-right: calc(var(--spacing) * 2);
422
+ }
423
+ .mb-1 {
424
+ margin-bottom: calc(0.25rem * 1);
425
+ margin-bottom: calc(var(--spacing) * 1);
426
+ }
427
+ .mb-2 {
428
+ margin-bottom: calc(0.25rem * 2);
429
+ margin-bottom: calc(var(--spacing) * 2);
430
+ }
431
+ .mb-3 {
432
+ margin-bottom: calc(0.25rem * 3);
433
+ margin-bottom: calc(var(--spacing) * 3);
434
+ }
435
+ .mb-4 {
436
+ margin-bottom: calc(0.25rem * 4);
437
+ margin-bottom: calc(var(--spacing) * 4);
438
+ }
439
+ .mb-6 {
440
+ margin-bottom: calc(0.25rem * 6);
441
+ margin-bottom: calc(var(--spacing) * 6);
442
+ }
443
+ .mb-8 {
444
+ margin-bottom: calc(0.25rem * 8);
445
+ margin-bottom: calc(var(--spacing) * 8);
446
+ }
447
+ .ml-1 {
448
+ margin-left: calc(0.25rem * 1);
449
+ margin-left: calc(var(--spacing) * 1);
450
+ }
451
+ .ml-1\\.5 {
452
+ margin-left: calc(0.25rem * 1.5);
453
+ margin-left: calc(var(--spacing) * 1.5);
454
+ }
455
+ .ml-2 {
456
+ margin-left: calc(0.25rem * 2);
457
+ margin-left: calc(var(--spacing) * 2);
458
+ }
459
+ .ml-2\\.5 {
460
+ margin-left: calc(0.25rem * 2.5);
461
+ margin-left: calc(var(--spacing) * 2.5);
462
+ }
463
+ .ml-auto {
464
+ margin-left: auto;
465
+ }
466
+ .block {
467
+ display: block;
468
+ }
469
+ .flex {
470
+ display: flex;
471
+ }
472
+ .grid {
473
+ display: grid;
474
+ }
475
+ .hidden {
476
+ display: none;
477
+ }
478
+ .inline {
479
+ display: inline;
480
+ }
481
+ .inline-block {
482
+ display: inline-block;
483
+ }
484
+ .inline-flex {
485
+ display: inline-flex;
486
+ }
487
+ .table {
488
+ display: table;
489
+ }
490
+ .table-caption {
491
+ display: table-caption;
492
+ }
493
+ .table-cell {
494
+ display: table-cell;
495
+ }
496
+ .table-row {
497
+ display: table-row;
498
+ }
499
+ .field-sizing-content {
500
+ field-sizing: content;
501
+ }
502
+ .aspect-auto {
503
+ aspect-ratio: auto;
504
+ }
505
+ .aspect-video {
506
+ aspect-ratio: 16 / 9;
507
+ aspect-ratio: var(--aspect-video);
508
+ }
509
+ .size-2 {
510
+ width: calc(0.25rem * 2);
511
+ width: calc(var(--spacing) * 2);
512
+ height: calc(0.25rem * 2);
513
+ height: calc(var(--spacing) * 2);
514
+ }
515
+ .size-2\\.5 {
516
+ width: calc(0.25rem * 2.5);
517
+ width: calc(var(--spacing) * 2.5);
518
+ height: calc(0.25rem * 2.5);
519
+ height: calc(var(--spacing) * 2.5);
520
+ }
521
+ .size-3 {
522
+ width: calc(0.25rem * 3);
523
+ width: calc(var(--spacing) * 3);
524
+ height: calc(0.25rem * 3);
525
+ height: calc(var(--spacing) * 3);
526
+ }
527
+ .size-3\\.5 {
528
+ width: calc(0.25rem * 3.5);
529
+ width: calc(var(--spacing) * 3.5);
530
+ height: calc(0.25rem * 3.5);
531
+ height: calc(var(--spacing) * 3.5);
532
+ }
533
+ .size-4 {
534
+ width: calc(0.25rem * 4);
535
+ width: calc(var(--spacing) * 4);
536
+ height: calc(0.25rem * 4);
537
+ height: calc(var(--spacing) * 4);
538
+ }
539
+ .size-9 {
540
+ width: calc(0.25rem * 9);
541
+ width: calc(var(--spacing) * 9);
542
+ height: calc(0.25rem * 9);
543
+ height: calc(var(--spacing) * 9);
544
+ }
545
+ .size-full {
546
+ width: 100%;
547
+ height: 100%;
548
+ }
549
+ .h-2 {
550
+ height: calc(0.25rem * 2);
551
+ height: calc(var(--spacing) * 2);
552
+ }
553
+ .h-2\\.5 {
554
+ height: calc(0.25rem * 2.5);
555
+ height: calc(var(--spacing) * 2.5);
556
+ }
557
+ .h-3 {
558
+ height: calc(0.25rem * 3);
559
+ height: calc(var(--spacing) * 3);
560
+ }
561
+ .h-4 {
562
+ height: calc(0.25rem * 4);
563
+ height: calc(var(--spacing) * 4);
564
+ }
565
+ .h-5 {
566
+ height: calc(0.25rem * 5);
567
+ height: calc(var(--spacing) * 5);
568
+ }
569
+ .h-6 {
570
+ height: calc(0.25rem * 6);
571
+ height: calc(var(--spacing) * 6);
572
+ }
573
+ .h-8 {
574
+ height: calc(0.25rem * 8);
575
+ height: calc(var(--spacing) * 8);
576
+ }
577
+ .h-9 {
578
+ height: calc(0.25rem * 9);
579
+ height: calc(var(--spacing) * 9);
580
+ }
581
+ .h-10 {
582
+ height: calc(0.25rem * 10);
583
+ height: calc(var(--spacing) * 10);
584
+ }
585
+ .h-12 {
586
+ height: calc(0.25rem * 12);
587
+ height: calc(var(--spacing) * 12);
588
+ }
589
+ .h-20 {
590
+ height: calc(0.25rem * 20);
591
+ height: calc(var(--spacing) * 20);
592
+ }
593
+ .h-28 {
594
+ height: calc(0.25rem * 28);
595
+ height: calc(var(--spacing) * 28);
596
+ }
597
+ .h-30 {
598
+ height: calc(0.25rem * 30);
599
+ height: calc(var(--spacing) * 30);
600
+ }
601
+ .h-35 {
602
+ height: calc(0.25rem * 35);
603
+ height: calc(var(--spacing) * 35);
604
+ }
605
+ .h-40 {
606
+ height: calc(0.25rem * 40);
607
+ height: calc(var(--spacing) * 40);
608
+ }
609
+ .h-50 {
610
+ height: calc(0.25rem * 50);
611
+ height: calc(var(--spacing) * 50);
612
+ }
613
+ .h-\\[38px\\] {
614
+ height: 38px;
615
+ }
616
+ .h-\\[250px\\] {
617
+ height: 250px;
618
+ }
619
+ .h-\\[258px\\] {
620
+ height: 258px;
621
+ }
622
+ .h-auto {
623
+ height: auto;
624
+ }
625
+ .h-fit {
626
+ height: -moz-fit-content;
627
+ height: fit-content;
628
+ }
629
+ .h-full {
630
+ height: 100%;
631
+ }
632
+ .h-px {
633
+ height: 1px;
634
+ }
635
+ .max-h-48 {
636
+ max-height: calc(0.25rem * 48);
637
+ max-height: calc(var(--spacing) * 48);
638
+ }
639
+ .max-h-64 {
640
+ max-height: calc(0.25rem * 64);
641
+ max-height: calc(var(--spacing) * 64);
642
+ }
643
+ .max-h-\\[90vh\\] {
644
+ max-height: 90vh;
645
+ }
646
+ .max-h-\\[calc\\(90vh-160px\\)\\] {
647
+ max-height: calc(90vh - 160px);
648
+ }
649
+ .min-h-16 {
650
+ min-height: calc(0.25rem * 16);
651
+ min-height: calc(var(--spacing) * 16);
652
+ }
653
+ .min-h-\\[45vh\\] {
654
+ min-height: 45vh;
655
+ }
656
+ .min-h-\\[100px\\] {
657
+ min-height: 100px;
658
+ }
659
+ .w-0 {
660
+ width: calc(0.25rem * 0);
661
+ width: calc(var(--spacing) * 0);
662
+ }
663
+ .w-1 {
664
+ width: calc(0.25rem * 1);
665
+ width: calc(var(--spacing) * 1);
666
+ }
667
+ .w-1\\/3 {
668
+ width: calc(1/3 * 100%);
669
+ }
670
+ .w-1\\/6 {
671
+ width: calc(1/6 * 100%);
672
+ }
673
+ .w-2 {
674
+ width: calc(0.25rem * 2);
675
+ width: calc(var(--spacing) * 2);
676
+ }
677
+ .w-2\\.5 {
678
+ width: calc(0.25rem * 2.5);
679
+ width: calc(var(--spacing) * 2.5);
680
+ }
681
+ .w-3 {
682
+ width: calc(0.25rem * 3);
683
+ width: calc(var(--spacing) * 3);
684
+ }
685
+ .w-4 {
686
+ width: calc(0.25rem * 4);
687
+ width: calc(var(--spacing) * 4);
688
+ }
689
+ .w-4\\/5 {
690
+ width: calc(4/5 * 100%);
691
+ }
692
+ .w-6 {
693
+ width: calc(0.25rem * 6);
694
+ width: calc(var(--spacing) * 6);
695
+ }
696
+ .w-12 {
697
+ width: calc(0.25rem * 12);
698
+ width: calc(var(--spacing) * 12);
699
+ }
700
+ .w-56 {
701
+ width: calc(0.25rem * 56);
702
+ width: calc(var(--spacing) * 56);
703
+ }
704
+ .w-64 {
705
+ width: calc(0.25rem * 64);
706
+ width: calc(var(--spacing) * 64);
707
+ }
708
+ .w-72 {
709
+ width: calc(0.25rem * 72);
710
+ width: calc(var(--spacing) * 72);
711
+ }
712
+ .w-80 {
713
+ width: calc(0.25rem * 80);
714
+ width: calc(var(--spacing) * 80);
715
+ }
716
+ .w-\\[280px\\] {
717
+ width: 280px;
718
+ }
719
+ .w-\\[320px\\] {
720
+ width: 320px;
721
+ }
722
+ .w-\\[380px\\] {
723
+ width: 380px;
724
+ }
725
+ .w-\\[481px\\] {
726
+ width: 481px;
727
+ }
728
+ .w-\\[640px\\] {
729
+ width: 640px;
730
+ }
731
+ .w-auto {
732
+ width: auto;
733
+ }
734
+ .w-fit {
735
+ width: -moz-fit-content;
736
+ width: fit-content;
737
+ }
738
+ .w-full {
739
+ width: 100%;
740
+ }
741
+ .max-w-2xl {
742
+ max-width: 42rem;
743
+ max-width: var(--container-2xl);
744
+ }
745
+ .max-w-\\[200px\\] {
746
+ max-width: 200px;
747
+ }
748
+ .max-w-\\[320px\\] {
749
+ max-width: 320px;
750
+ }
751
+ .max-w-full {
752
+ max-width: 100%;
753
+ }
754
+ .max-w-md {
755
+ max-width: 28rem;
756
+ max-width: var(--container-md);
757
+ }
758
+ .min-w-0 {
759
+ min-width: calc(0.25rem * 0);
760
+ min-width: calc(var(--spacing) * 0);
761
+ }
762
+ .min-w-\\[8rem\\] {
763
+ min-width: 8rem;
764
+ }
765
+ .flex-1 {
766
+ flex: 1;
767
+ }
768
+ .flex-shrink {
769
+ flex-shrink: 1;
770
+ }
771
+ .flex-shrink-0 {
772
+ flex-shrink: 0;
773
+ }
774
+ .shrink-0 {
775
+ flex-shrink: 0;
776
+ }
777
+ .flex-grow {
778
+ flex-grow: 1;
779
+ }
780
+ .caption-bottom {
781
+ caption-side: bottom;
782
+ }
783
+ .border-collapse {
784
+ border-collapse: collapse;
785
+ }
786
+ .origin-\\(--radix-hover-card-content-transform-origin\\) {
787
+ transform-origin: var(--radix-hover-card-content-transform-origin);
788
+ }
789
+ .origin-\\[var\\(--radix-tooltip-content-transform-origin\\)\\] {
790
+ transform-origin: var(--radix-tooltip-content-transform-origin);
791
+ }
792
+ .-translate-x-1 {
793
+ --tw-translate-x: calc(var(--spacing) * -1);
794
+ translate: calc(0.25rem * -1) var(--tw-translate-y);
795
+ translate: var(--tw-translate-x) var(--tw-translate-y);
796
+ }
797
+ .-translate-x-1\\/2 {
798
+ --tw-translate-x: calc(calc(1/2 * 100%) * -1);
799
+ translate: calc(calc(1/2 * 100%) * -1) var(--tw-translate-y);
800
+ translate: var(--tw-translate-x) var(--tw-translate-y);
801
+ }
802
+ .-translate-y-1 {
803
+ --tw-translate-y: calc(var(--spacing) * -1);
804
+ translate: var(--tw-translate-x) calc(0.25rem * -1);
805
+ translate: var(--tw-translate-x) var(--tw-translate-y);
806
+ }
807
+ .-translate-y-1\\/2 {
808
+ --tw-translate-y: calc(calc(1/2 * 100%) * -1);
809
+ translate: var(--tw-translate-x) calc(calc(1/2 * 100%) * -1);
810
+ translate: var(--tw-translate-x) var(--tw-translate-y);
811
+ }
812
+ .-translate-y-2 {
813
+ --tw-translate-y: calc(var(--spacing) * -2);
814
+ translate: var(--tw-translate-x) calc(0.25rem * -2);
815
+ translate: var(--tw-translate-x) var(--tw-translate-y);
816
+ }
817
+ .-translate-y-\\[2px\\] {
818
+ --tw-translate-y: calc(2px * -1);
819
+ translate: var(--tw-translate-x) calc(2px * -1);
820
+ translate: var(--tw-translate-x) var(--tw-translate-y);
821
+ }
822
+ .rotate-45 {
823
+ rotate: 45deg;
824
+ }
825
+ .rotate-180 {
826
+ rotate: 180deg;
827
+ }
828
+ .transform {
829
+ transform: ;
830
+ transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
831
+ }
832
+ .animate-pulse {
833
+ animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
834
+ animation: var(--animate-pulse);
835
+ }
836
+ .animate-spin {
837
+ animation: spin 1s linear infinite;
838
+ animation: var(--animate-spin);
839
+ }
840
+ .cursor-default {
841
+ cursor: default;
842
+ }
843
+ .cursor-not-allowed {
844
+ cursor: not-allowed;
845
+ }
846
+ .cursor-pointer {
847
+ cursor: pointer;
848
+ }
849
+ .touch-none {
850
+ touch-action: none;
851
+ }
852
+ .resize {
853
+ resize: both;
854
+ }
855
+ .scroll-my-1 {
856
+ scroll-margin-block: calc(0.25rem * 1);
857
+ scroll-margin-block: calc(var(--spacing) * 1);
858
+ }
859
+ .list-disc {
860
+ list-style-type: disc;
861
+ }
862
+ .auto-rows-min {
863
+ grid-auto-rows: min-content;
864
+ }
865
+ .grid-rows-\\[auto_auto\\] {
866
+ grid-template-rows: auto auto;
867
+ }
868
+ .flex-col {
869
+ flex-direction: column;
870
+ }
871
+ .flex-row {
872
+ flex-direction: row;
873
+ }
874
+ .flex-wrap {
875
+ flex-wrap: wrap;
876
+ }
877
+ .items-center {
878
+ align-items: center;
879
+ }
880
+ .items-end {
881
+ align-items: flex-end;
882
+ }
883
+ .items-start {
884
+ align-items: flex-start;
885
+ }
886
+ .items-stretch {
887
+ align-items: stretch;
888
+ }
889
+ .justify-between {
890
+ justify-content: space-between;
891
+ }
892
+ .justify-center {
893
+ justify-content: center;
894
+ }
895
+ .justify-end {
896
+ justify-content: flex-end;
897
+ }
898
+ .gap-1 {
899
+ gap: calc(0.25rem * 1);
900
+ gap: calc(var(--spacing) * 1);
901
+ }
902
+ .gap-1\\.5 {
903
+ gap: calc(0.25rem * 1.5);
904
+ gap: calc(var(--spacing) * 1.5);
905
+ }
906
+ .gap-2 {
907
+ gap: calc(0.25rem * 2);
908
+ gap: calc(var(--spacing) * 2);
909
+ }
910
+ .gap-3 {
911
+ gap: calc(0.25rem * 3);
912
+ gap: calc(var(--spacing) * 3);
913
+ }
914
+ .gap-4 {
915
+ gap: calc(0.25rem * 4);
916
+ gap: calc(var(--spacing) * 4);
917
+ }
918
+ .gap-6 {
919
+ gap: calc(0.25rem * 6);
920
+ gap: calc(var(--spacing) * 6);
921
+ }
922
+ .space-y-2 {
923
+ :where(& > :not(:last-child)) {
924
+ --tw-space-y-reverse: 0;
925
+ margin-block-start: calc(calc(0.25rem * 2) * 0);
926
+ margin-block-start: calc(calc(var(--spacing) * 2) * var(--tw-space-y-reverse));
927
+ margin-block-end: calc(calc(0.25rem * 2) * calc(1 - 0));
928
+ margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
929
+ }
930
+ }
931
+ .space-y-4 {
932
+ :where(& > :not(:last-child)) {
933
+ --tw-space-y-reverse: 0;
934
+ margin-block-start: calc(calc(0.25rem * 4) * 0);
935
+ margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));
936
+ margin-block-end: calc(calc(0.25rem * 4) * calc(1 - 0));
937
+ margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
938
+ }
939
+ }
940
+ .space-x-2 {
941
+ :where(& > :not(:last-child)) {
942
+ --tw-space-x-reverse: 0;
943
+ margin-inline-start: calc(calc(0.25rem * 2) * 0);
944
+ margin-inline-start: calc(calc(var(--spacing) * 2) * var(--tw-space-x-reverse));
945
+ margin-inline-end: calc(calc(0.25rem * 2) * calc(1 - 0));
946
+ margin-inline-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-x-reverse)));
947
+ }
948
+ }
949
+ .self-end {
950
+ align-self: flex-end;
951
+ }
952
+ .self-start {
953
+ align-self: flex-start;
954
+ }
955
+ .justify-self-end {
956
+ justify-self: flex-end;
957
+ }
958
+ .truncate {
959
+ overflow: hidden;
960
+ text-overflow: ellipsis;
961
+ white-space: nowrap;
962
+ }
963
+ .overflow-auto {
964
+ overflow: auto;
965
+ }
966
+ .overflow-hidden {
967
+ overflow: hidden;
968
+ }
969
+ .overflow-x-auto {
970
+ overflow-x: auto;
971
+ }
972
+ .overflow-x-hidden {
973
+ overflow-x: hidden;
974
+ }
975
+ .overflow-y-auto {
976
+ overflow-y: auto;
977
+ }
978
+ .rounded {
979
+ border-radius: 0.25rem;
980
+ }
981
+ .rounded-\\[2px\\] {
982
+ border-radius: 2px;
983
+ }
984
+ .rounded-\\[4px\\] {
985
+ border-radius: 4px;
986
+ }
987
+ .rounded-\\[16px\\] {
988
+ border-radius: 16px;
989
+ }
990
+ .rounded-\\[inherit\\] {
991
+ border-radius: inherit;
992
+ }
993
+ .rounded-full {
994
+ border-radius: calc(infinity * 1px);
995
+ }
996
+ .rounded-lg {
997
+ border-radius: 0.625rem;
998
+ }
999
+ .rounded-md {
1000
+ border-radius: calc(0.625rem - 2px);
1001
+ }
1002
+ .rounded-none {
1003
+ border-radius: 0;
1004
+ }
1005
+ .rounded-sm {
1006
+ border-radius: calc(0.625rem - 4px);
1007
+ }
1008
+ .rounded-xl {
1009
+ border-radius: calc(0.625rem + 4px);
1010
+ }
1011
+ .border {
1012
+ border-style: var(--tw-border-style);
1013
+ border-width: 1px;
1014
+ }
1015
+ .border-0 {
1016
+ border-style: var(--tw-border-style);
1017
+ border-width: 0px;
1018
+ }
1019
+ .border-\\[1\\.5px\\] {
1020
+ border-style: var(--tw-border-style);
1021
+ border-width: 1.5px;
1022
+ }
1023
+ .border-t {
1024
+ border-top-style: var(--tw-border-style);
1025
+ border-top-width: 1px;
1026
+ }
1027
+ .border-t-2 {
1028
+ border-top-style: var(--tw-border-style);
1029
+ border-top-width: 2px;
1030
+ }
1031
+ .border-b {
1032
+ border-bottom-style: var(--tw-border-style);
1033
+ border-bottom-width: 1px;
1034
+ }
1035
+ .border-b-2 {
1036
+ border-bottom-style: var(--tw-border-style);
1037
+ border-bottom-width: 2px;
1038
+ }
1039
+ .border-l {
1040
+ border-left-style: var(--tw-border-style);
1041
+ border-left-width: 1px;
1042
+ }
1043
+ .border-dashed {
1044
+ --tw-border-style: dashed;
1045
+ border-style: dashed;
1046
+ }
1047
+ .border-\\(--color-border\\) {
1048
+ border-color: oklch(0.922 0 0);
1049
+ border-color: var(--color-border);
1050
+ }
1051
+ .border-\\[\\#2A44D4\\] {
1052
+ border-color: #2A44D4;
1053
+ }
1054
+ .border-\\[\\#D4D5DE\\] {
1055
+ border-color: #D4D5DE;
1056
+ }
1057
+ .border-border {
1058
+ border-color: oklch(0.922 0 0);
1059
+ }
1060
+ .border-border\\/50 {
1061
+ border-color: color-mix(in oklab, oklch(0.922 0 0) 50%, transparent);
1062
+ }
1063
+ .border-gray-200 {
1064
+ border-color: oklch(92.8% 0.006 264.531);
1065
+ border-color: var(--color-gray-200);
1066
+ }
1067
+ .border-gray-300 {
1068
+ border-color: oklch(87.2% 0.01 258.338);
1069
+ border-color: var(--color-gray-300);
1070
+ }
1071
+ .border-input {
1072
+ border-color: oklch(0.922 0 0);
1073
+ }
1074
+ .border-purple-600 {
1075
+ border-color: oklch(55.8% 0.288 302.321);
1076
+ border-color: var(--color-purple-600);
1077
+ }
1078
+ .border-red-200 {
1079
+ border-color: oklch(88.5% 0.062 18.334);
1080
+ border-color: var(--color-red-200);
1081
+ }
1082
+ .border-t-transparent {
1083
+ border-top-color: transparent;
1084
+ }
1085
+ .border-l-transparent {
1086
+ border-left-color: transparent;
1087
+ }
1088
+ .bg-\\(--color-bg\\) {
1089
+ background-color: var(--color-bg);
1090
+ }
1091
+ .bg-\\[\\#2A44D4\\] {
1092
+ background-color: #2A44D4;
1093
+ }
1094
+ .bg-\\[\\#EAECFB\\] {
1095
+ background-color: #EAECFB;
1096
+ }
1097
+ .bg-\\[\\#F9F9FE\\] {
1098
+ background-color: #F9F9FE;
1099
+ }
1100
+ .bg-accent {
1101
+ background-color: oklch(0.97 0 0);
1102
+ }
1103
+ .bg-background {
1104
+ background-color: oklch(1 0 0);
1105
+ }
1106
+ .bg-black {
1107
+ background-color: #000;
1108
+ background-color: var(--color-black);
1109
+ }
1110
+ .bg-black\\/10 {
1111
+ background-color: color-mix(in srgb, #000 10%, transparent);
1112
+ @supports (color: color-mix(in lab, red, red)) {
1113
+ background-color: color-mix(in oklab, #000 10%, transparent);
1114
+ background-color: color-mix(in oklab, var(--color-black) 10%, transparent);
1115
+ }
1116
+ }
1117
+ .bg-blue-600 {
1118
+ background-color: oklch(54.6% 0.245 262.881);
1119
+ background-color: var(--color-blue-600);
1120
+ }
1121
+ .bg-border {
1122
+ background-color: oklch(0.922 0 0);
1123
+ }
1124
+ .bg-destructive {
1125
+ background-color: oklch(0.577 0.245 27.325);
1126
+ }
1127
+ .bg-gray-50 {
1128
+ background-color: oklch(98.5% 0.002 247.839);
1129
+ background-color: var(--color-gray-50);
1130
+ }
1131
+ .bg-gray-300 {
1132
+ background-color: oklch(87.2% 0.01 258.338);
1133
+ background-color: var(--color-gray-300);
1134
+ }
1135
+ .bg-gray-400 {
1136
+ background-color: oklch(70.7% 0.022 261.325);
1137
+ background-color: var(--color-gray-400);
1138
+ }
1139
+ .bg-gray-500 {
1140
+ background-color: oklch(55.1% 0.027 264.364);
1141
+ background-color: var(--color-gray-500);
1142
+ }
1143
+ .bg-green-300 {
1144
+ background-color: oklch(87.1% 0.15 154.449);
1145
+ background-color: var(--color-green-300);
1146
+ }
1147
+ .bg-muted {
1148
+ background-color: oklch(0.97 0 0);
1149
+ }
1150
+ .bg-muted\\/50 {
1151
+ background-color: color-mix(in oklab, oklch(0.97 0 0) 50%, transparent);
1152
+ }
1153
+ .bg-pink-50 {
1154
+ background-color: oklch(97.1% 0.014 343.198);
1155
+ background-color: var(--color-pink-50);
1156
+ }
1157
+ .bg-popover {
1158
+ background-color: oklch(1 0 0);
1159
+ }
1160
+ .bg-primary {
1161
+ background-color: oklch(0.205 0 0);
1162
+ }
1163
+ .bg-red-50 {
1164
+ background-color: oklch(97.1% 0.013 17.38);
1165
+ background-color: var(--color-red-50);
1166
+ }
1167
+ .bg-red-100 {
1168
+ background-color: oklch(93.6% 0.032 17.717);
1169
+ background-color: var(--color-red-100);
1170
+ }
1171
+ .bg-secondary {
1172
+ background-color: oklch(0.97 0 0);
1173
+ }
1174
+ .bg-slate-100 {
1175
+ background-color: oklch(96.8% 0.007 247.896);
1176
+ background-color: var(--color-slate-100);
1177
+ }
1178
+ .bg-transparent {
1179
+ background-color: transparent;
1180
+ }
1181
+ .bg-white {
1182
+ background-color: #fff;
1183
+ background-color: var(--color-white);
1184
+ }
1185
+ .fill-primary {
1186
+ fill: oklch(0.205 0 0);
1187
+ }
1188
+ .p-0 {
1189
+ padding: calc(0.25rem * 0);
1190
+ padding: calc(var(--spacing) * 0);
1191
+ }
1192
+ .p-0\\.5 {
1193
+ padding: calc(0.25rem * 0.5);
1194
+ padding: calc(var(--spacing) * 0.5);
1195
+ }
1196
+ .p-1 {
1197
+ padding: calc(0.25rem * 1);
1198
+ padding: calc(var(--spacing) * 1);
1199
+ }
1200
+ .p-2 {
1201
+ padding: calc(0.25rem * 2);
1202
+ padding: calc(var(--spacing) * 2);
1203
+ }
1204
+ .p-3 {
1205
+ padding: calc(0.25rem * 3);
1206
+ padding: calc(var(--spacing) * 3);
1207
+ }
1208
+ .p-4 {
1209
+ padding: calc(0.25rem * 4);
1210
+ padding: calc(var(--spacing) * 4);
1211
+ }
1212
+ .p-6 {
1213
+ padding: calc(0.25rem * 6);
1214
+ padding: calc(var(--spacing) * 6);
1215
+ }
1216
+ .p-\\[1em\\] {
1217
+ padding: 1em;
1218
+ }
1219
+ .p-px {
1220
+ padding: 1px;
1221
+ }
1222
+ .px-1 {
1223
+ padding-inline: calc(0.25rem * 1);
1224
+ padding-inline: calc(var(--spacing) * 1);
1225
+ }
1226
+ .px-2 {
1227
+ padding-inline: calc(0.25rem * 2);
1228
+ padding-inline: calc(var(--spacing) * 2);
1229
+ }
1230
+ .px-2\\.5 {
1231
+ padding-inline: calc(0.25rem * 2.5);
1232
+ padding-inline: calc(var(--spacing) * 2.5);
1233
+ }
1234
+ .px-3 {
1235
+ padding-inline: calc(0.25rem * 3);
1236
+ padding-inline: calc(var(--spacing) * 3);
1237
+ }
1238
+ .px-4 {
1239
+ padding-inline: calc(0.25rem * 4);
1240
+ padding-inline: calc(var(--spacing) * 4);
1241
+ }
1242
+ .px-6 {
1243
+ padding-inline: calc(0.25rem * 6);
1244
+ padding-inline: calc(var(--spacing) * 6);
1245
+ }
1246
+ .px-\\[1em\\] {
1247
+ padding-inline: 1em;
1248
+ }
1249
+ .py-1 {
1250
+ padding-block: calc(0.25rem * 1);
1251
+ padding-block: calc(var(--spacing) * 1);
1252
+ }
1253
+ .py-1\\.5 {
1254
+ padding-block: calc(0.25rem * 1.5);
1255
+ padding-block: calc(var(--spacing) * 1.5);
1256
+ }
1257
+ .py-2 {
1258
+ padding-block: calc(0.25rem * 2);
1259
+ padding-block: calc(var(--spacing) * 2);
1260
+ }
1261
+ .py-3 {
1262
+ padding-block: calc(0.25rem * 3);
1263
+ padding-block: calc(var(--spacing) * 3);
1264
+ }
1265
+ .py-6 {
1266
+ padding-block: calc(0.25rem * 6);
1267
+ padding-block: calc(var(--spacing) * 6);
1268
+ }
1269
+ .py-8 {
1270
+ padding-block: calc(0.25rem * 8);
1271
+ padding-block: calc(var(--spacing) * 8);
1272
+ }
1273
+ .py-12 {
1274
+ padding-block: calc(0.25rem * 12);
1275
+ padding-block: calc(var(--spacing) * 12);
1276
+ }
1277
+ .py-16 {
1278
+ padding-block: calc(0.25rem * 16);
1279
+ padding-block: calc(var(--spacing) * 16);
1280
+ }
1281
+ .py-\\[11px\\] {
1282
+ padding-block: 11px;
1283
+ }
1284
+ .pt-1 {
1285
+ padding-top: calc(0.25rem * 1);
1286
+ padding-top: calc(var(--spacing) * 1);
1287
+ }
1288
+ .pt-2 {
1289
+ padding-top: calc(0.25rem * 2);
1290
+ padding-top: calc(var(--spacing) * 2);
1291
+ }
1292
+ .pt-3 {
1293
+ padding-top: calc(0.25rem * 3);
1294
+ padding-top: calc(var(--spacing) * 3);
1295
+ }
1296
+ .pr-8 {
1297
+ padding-right: calc(0.25rem * 8);
1298
+ padding-right: calc(var(--spacing) * 8);
1299
+ }
1300
+ .pr-16 {
1301
+ padding-right: calc(0.25rem * 16);
1302
+ padding-right: calc(var(--spacing) * 16);
1303
+ }
1304
+ .pb-3 {
1305
+ padding-bottom: calc(0.25rem * 3);
1306
+ padding-bottom: calc(var(--spacing) * 3);
1307
+ }
1308
+ .pb-4 {
1309
+ padding-bottom: calc(0.25rem * 4);
1310
+ padding-bottom: calc(var(--spacing) * 4);
1311
+ }
1312
+ .pl-1 {
1313
+ padding-left: calc(0.25rem * 1);
1314
+ padding-left: calc(var(--spacing) * 1);
1315
+ }
1316
+ .pl-2 {
1317
+ padding-left: calc(0.25rem * 2);
1318
+ padding-left: calc(var(--spacing) * 2);
1319
+ }
1320
+ .pl-4 {
1321
+ padding-left: calc(0.25rem * 4);
1322
+ padding-left: calc(var(--spacing) * 4);
1323
+ }
1324
+ .text-center {
1325
+ text-align: center;
1326
+ }
1327
+ .text-left {
1328
+ text-align: left;
1329
+ }
1330
+ .align-middle {
1331
+ vertical-align: middle;
1332
+ }
1333
+ .font-mono {
1334
+ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
1335
+ "Courier New", monospace;
1336
+ font-family: var(--font-mono);
1337
+ }
1338
+ .text-2xl {
1339
+ font-size: 1.5rem;
1340
+ font-size: var(--text-2xl);
1341
+ line-height: calc(2 / 1.5);
1342
+ line-height: var(--tw-leading, var(--text-2xl--line-height));
1343
+ }
1344
+ .text-3xl {
1345
+ font-size: 1.875rem;
1346
+ font-size: var(--text-3xl);
1347
+ line-height: calc(2.25 / 1.875);
1348
+ line-height: var(--tw-leading, var(--text-3xl--line-height));
1349
+ }
1350
+ .text-4xl {
1351
+ font-size: 2.25rem;
1352
+ font-size: var(--text-4xl);
1353
+ line-height: calc(2.5 / 2.25);
1354
+ line-height: var(--tw-leading, var(--text-4xl--line-height));
1355
+ }
1356
+ .text-5xl {
1357
+ font-size: 3rem;
1358
+ font-size: var(--text-5xl);
1359
+ line-height: 1;
1360
+ line-height: var(--tw-leading, var(--text-5xl--line-height));
1361
+ }
1362
+ .text-base {
1363
+ font-size: 1rem;
1364
+ font-size: var(--text-base);
1365
+ line-height: calc(1.5 / 1);
1366
+ line-height: var(--tw-leading, var(--text-base--line-height));
1367
+ }
1368
+ .text-lg {
1369
+ font-size: 1.125rem;
1370
+ font-size: var(--text-lg);
1371
+ line-height: calc(1.75 / 1.125);
1372
+ line-height: var(--tw-leading, var(--text-lg--line-height));
1373
+ }
1374
+ .text-sm {
1375
+ font-size: 0.875rem;
1376
+ font-size: var(--text-sm);
1377
+ line-height: calc(1.25 / 0.875);
1378
+ line-height: var(--tw-leading, var(--text-sm--line-height));
1379
+ }
1380
+ .text-xl {
1381
+ font-size: 1.25rem;
1382
+ font-size: var(--text-xl);
1383
+ line-height: calc(1.75 / 1.25);
1384
+ line-height: var(--tw-leading, var(--text-xl--line-height));
1385
+ }
1386
+ .text-xs {
1387
+ font-size: 0.75rem;
1388
+ font-size: var(--text-xs);
1389
+ line-height: calc(1 / 0.75);
1390
+ line-height: var(--tw-leading, var(--text-xs--line-height));
1391
+ }
1392
+ .text-\\[0\\.8rem\\] {
1393
+ font-size: 0.8rem;
1394
+ }
1395
+ .leading-4 {
1396
+ --tw-leading: calc(var(--spacing) * 4);
1397
+ line-height: calc(0.25rem * 4);
1398
+ line-height: calc(var(--spacing) * 4);
1399
+ }
1400
+ .leading-\\[2\\.5rem\\] {
1401
+ --tw-leading: 2.5rem;
1402
+ line-height: 2.5rem;
1403
+ }
1404
+ .leading-\\[2rem\\] {
1405
+ --tw-leading: 2rem;
1406
+ line-height: 2rem;
1407
+ }
1408
+ .leading-\\[3rem\\] {
1409
+ --tw-leading: 3rem;
1410
+ line-height: 3rem;
1411
+ }
1412
+ .leading-\\[4rem\\] {
1413
+ --tw-leading: 4rem;
1414
+ line-height: 4rem;
1415
+ }
1416
+ .leading-none {
1417
+ --tw-leading: 1;
1418
+ line-height: 1;
1419
+ }
1420
+ .leading-relaxed {
1421
+ --tw-leading: var(--leading-relaxed);
1422
+ line-height: 1.625;
1423
+ line-height: var(--leading-relaxed);
1424
+ }
1425
+ .font-bold {
1426
+ --tw-font-weight: var(--font-weight-bold);
1427
+ font-weight: 700;
1428
+ font-weight: var(--font-weight-bold);
1429
+ }
1430
+ .font-medium {
1431
+ --tw-font-weight: var(--font-weight-medium);
1432
+ font-weight: 500;
1433
+ font-weight: var(--font-weight-medium);
1434
+ }
1435
+ .font-semibold {
1436
+ --tw-font-weight: var(--font-weight-semibold);
1437
+ font-weight: 600;
1438
+ font-weight: var(--font-weight-semibold);
1439
+ }
1440
+ .text-balance {
1441
+ text-wrap: balance;
1442
+ }
1443
+ .text-wrap {
1444
+ text-wrap: wrap;
1445
+ }
1446
+ .break-all {
1447
+ word-break: break-all;
1448
+ }
1449
+ .whitespace-normal {
1450
+ white-space: normal;
1451
+ }
1452
+ .whitespace-nowrap {
1453
+ white-space: nowrap;
1454
+ }
1455
+ .whitespace-pre-wrap {
1456
+ white-space: pre-wrap;
1457
+ }
1458
+ .text-\\[\\#020D21\\] {
1459
+ color: #020D21;
1460
+ }
1461
+ .text-\\[\\#263DBF\\] {
1462
+ color: #263DBF;
1463
+ }
1464
+ .text-\\[\\#687387\\] {
1465
+ color: #687387;
1466
+ }
1467
+ .text-black {
1468
+ color: #000;
1469
+ color: var(--color-black);
1470
+ }
1471
+ .text-blue-500 {
1472
+ color: oklch(62.3% 0.214 259.815);
1473
+ color: var(--color-blue-500);
1474
+ }
1475
+ .text-blue-600 {
1476
+ color: oklch(54.6% 0.245 262.881);
1477
+ color: var(--color-blue-600);
1478
+ }
1479
+ .text-card-foreground {
1480
+ color: oklch(0.145 0 0);
1481
+ }
1482
+ .text-current {
1483
+ color: currentcolor;
1484
+ }
1485
+ .text-foreground {
1486
+ color: oklch(0.145 0 0);
1487
+ }
1488
+ .text-gray-400 {
1489
+ color: oklch(70.7% 0.022 261.325);
1490
+ color: var(--color-gray-400);
1491
+ }
1492
+ .text-gray-500 {
1493
+ color: oklch(55.1% 0.027 264.364);
1494
+ color: var(--color-gray-500);
1495
+ }
1496
+ .text-gray-600 {
1497
+ color: oklch(44.6% 0.03 256.802);
1498
+ color: var(--color-gray-600);
1499
+ }
1500
+ .text-gray-700 {
1501
+ color: oklch(37.3% 0.034 259.733);
1502
+ color: var(--color-gray-700);
1503
+ }
1504
+ .text-gray-800 {
1505
+ color: oklch(27.8% 0.033 256.848);
1506
+ color: var(--color-gray-800);
1507
+ }
1508
+ .text-gray-900 {
1509
+ color: oklch(21% 0.034 264.665);
1510
+ color: var(--color-gray-900);
1511
+ }
1512
+ .text-green-600 {
1513
+ color: oklch(62.7% 0.194 149.214);
1514
+ color: var(--color-green-600);
1515
+ }
1516
+ .text-muted-foreground {
1517
+ color: oklch(0.556 0 0);
1518
+ }
1519
+ .text-pink-900 {
1520
+ color: oklch(40.8% 0.153 2.432);
1521
+ color: var(--color-pink-900);
1522
+ }
1523
+ .text-popover-foreground {
1524
+ color: oklch(0.145 0 0);
1525
+ }
1526
+ .text-primary {
1527
+ color: oklch(0.205 0 0);
1528
+ }
1529
+ .text-primary-foreground {
1530
+ color: oklch(0.985 0 0);
1531
+ }
1532
+ .text-red-600 {
1533
+ color: oklch(57.7% 0.245 27.325);
1534
+ color: var(--color-red-600);
1535
+ }
1536
+ .text-secondary-foreground {
1537
+ color: oklch(0.205 0 0);
1538
+ }
1539
+ .text-white {
1540
+ color: #fff;
1541
+ color: var(--color-white);
1542
+ }
1543
+ .italic {
1544
+ font-style: italic;
1545
+ }
1546
+ .tabular-nums {
1547
+ --tw-numeric-spacing: tabular-nums;
1548
+ font-variant-numeric: tabular-nums ;
1549
+ font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);
1550
+ }
1551
+ .underline {
1552
+ text-decoration-line: underline;
1553
+ }
1554
+ .underline-offset-4 {
1555
+ text-underline-offset: 4px;
1556
+ }
1557
+ .opacity-50 {
1558
+ opacity: 50%;
1559
+ }
1560
+ .opacity-60 {
1561
+ opacity: 60%;
1562
+ }
1563
+ .shadow {
1564
+ --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
1565
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
1566
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1567
+ }
1568
+ .shadow-\\[0px_8px_16px_-4px_rgba\\(0\\,0\\,0\\,0\\.1\\)\\] {
1569
+ --tw-shadow: 0px 8px 16px -4px var(--tw-shadow-color, rgba(0,0,0,0.1));
1570
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0px 8px 16px -4px rgba(0,0,0,0.1);
1571
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1572
+ }
1573
+ .shadow-lg {
1574
+ --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
1575
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
1576
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1577
+ }
1578
+ .shadow-md {
1579
+ --tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
1580
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
1581
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1582
+ }
1583
+ .shadow-none {
1584
+ --tw-shadow: 0 0 #0000;
1585
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 #0000;
1586
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1587
+ }
1588
+ .shadow-sm {
1589
+ --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
1590
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
1591
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1592
+ }
1593
+ .shadow-xl {
1594
+ --tw-shadow: 0 20px 25px -5px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 8px 10px -6px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
1595
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
1596
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1597
+ }
1598
+ .shadow-xs {
1599
+ --tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05));
1600
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 1px 2px 0 rgb(0 0 0 / 0.05);
1601
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1602
+ }
1603
+ .ring-1 {
1604
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1605
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1606
+ }
1607
+ .ring-2 {
1608
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1609
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1610
+ }
1611
+ .ring-black {
1612
+ --tw-ring-color: var(--color-black);
1613
+ }
1614
+ .ring-blue-500 {
1615
+ --tw-ring-color: var(--color-blue-500);
1616
+ }
1617
+ .ring-offset-background {
1618
+ --tw-ring-offset-color: oklch(1 0 0);
1619
+ }
1620
+ .outline-hidden {
1621
+ --tw-outline-style: none;
1622
+ outline-style: none;
1623
+ outline: 2px solid transparent;
1624
+ outline-offset: 2px
1625
+ }
1626
+ .outline {
1627
+ outline-style: var(--tw-outline-style);
1628
+ outline-width: 1px;
1629
+ }
1630
+ .filter {
1631
+ filter: ;
1632
+ 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,);
1633
+ }
1634
+ .transition {
1635
+ transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, visibility, content-visibility, overlay, pointer-events;
1636
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1637
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1638
+ transition-duration: 150ms;
1639
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1640
+ }
1641
+ .transition-\\[color\\,box-shadow\\] {
1642
+ transition-property: color,box-shadow;
1643
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1644
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1645
+ transition-duration: 150ms;
1646
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1647
+ }
1648
+ .transition-all {
1649
+ transition-property: all;
1650
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1651
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1652
+ transition-duration: 150ms;
1653
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1654
+ }
1655
+ .transition-colors {
1656
+ transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
1657
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1658
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1659
+ transition-duration: 150ms;
1660
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1661
+ }
1662
+ .transition-shadow {
1663
+ transition-property: box-shadow;
1664
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1665
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1666
+ transition-duration: 150ms;
1667
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1668
+ }
1669
+ .transition-transform {
1670
+ transition-property: transform, translate, scale, rotate;
1671
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1672
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1673
+ transition-duration: 150ms;
1674
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1675
+ }
1676
+ .transition-none {
1677
+ transition-property: none;
1678
+ }
1679
+ .duration-200 {
1680
+ --tw-duration: 200ms;
1681
+ transition-duration: 200ms;
1682
+ }
1683
+ .ease-in-out {
1684
+ --tw-ease: var(--ease-in-out);
1685
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1686
+ transition-timing-function: var(--ease-in-out);
1687
+ }
1688
+ .animate-in {
1689
+ animation-name: enter;
1690
+ animation-duration: 150ms;
1691
+ --tw-enter-opacity: initial;
1692
+ --tw-enter-scale: initial;
1693
+ --tw-enter-rotate: initial;
1694
+ --tw-enter-translate-x: initial;
1695
+ --tw-enter-translate-y: initial;
1696
+ }
1697
+ .outline-none {
1698
+ --tw-outline-style: none;
1699
+ outline-style: none;
1700
+ }
1701
+ .select-none {
1702
+ -webkit-user-select: none;
1703
+ -moz-user-select: none;
1704
+ user-select: none;
1705
+ }
1706
+ .duration-200 {
1707
+ animation-duration: 200ms;
1708
+ }
1709
+ .ease-in-out {
1710
+ animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1711
+ }
1712
+ .fade-in-0 {
1713
+ --tw-enter-opacity: 0;
1714
+ }
1715
+ .zoom-in-95 {
1716
+ --tw-enter-scale: .95;
1717
+ }
1718
+ .group-data-\\[disabled\\=true\\]\\:pointer-events-none {
1719
+ &:is(:where(.group)[data-disabled="true"] *) {
1720
+ pointer-events: none;
1721
+ }
1722
+ }
1723
+ .group-data-\\[disabled\\=true\\]\\:opacity-50 {
1724
+ &:is(:where(.group)[data-disabled="true"] *) {
1725
+ opacity: 50%;
1726
+ }
1727
+ }
1728
+ .peer-disabled\\:cursor-not-allowed {
1729
+ &:is(:where(.peer):disabled ~ *) {
1730
+ cursor: not-allowed;
1731
+ }
1732
+ }
1733
+ .peer-disabled\\:opacity-50 {
1734
+ &:is(:where(.peer):disabled ~ *) {
1735
+ opacity: 50%;
1736
+ }
1737
+ }
1738
+ .selection\\:bg-primary {
1739
+ & *::-moz-selection {
1740
+ background-color: oklch(0.205 0 0);
1741
+ }
1742
+ & *::selection {
1743
+ background-color: oklch(0.205 0 0);
1744
+ }
1745
+ &::-moz-selection {
1746
+ background-color: oklch(0.205 0 0);
1747
+ }
1748
+ &::selection {
1749
+ background-color: oklch(0.205 0 0);
1750
+ }
1751
+ }
1752
+ .selection\\:text-primary-foreground {
1753
+ & *::-moz-selection {
1754
+ color: oklch(0.985 0 0);
1755
+ }
1756
+ & *::selection {
1757
+ color: oklch(0.985 0 0);
1758
+ }
1759
+ &::-moz-selection {
1760
+ color: oklch(0.985 0 0);
1761
+ }
1762
+ &::selection {
1763
+ color: oklch(0.985 0 0);
1764
+ }
1765
+ }
1766
+ .file\\:inline-flex {
1767
+ &::file-selector-button {
1768
+ display: inline-flex;
1769
+ }
1770
+ }
1771
+ .file\\:h-7 {
1772
+ &::file-selector-button {
1773
+ height: calc(0.25rem * 7);
1774
+ height: calc(var(--spacing) * 7);
1775
+ }
1776
+ }
1777
+ .file\\:border-0 {
1778
+ &::file-selector-button {
1779
+ border-style: var(--tw-border-style);
1780
+ border-width: 0px;
1781
+ }
1782
+ }
1783
+ .file\\:bg-transparent {
1784
+ &::file-selector-button {
1785
+ background-color: transparent;
1786
+ }
1787
+ }
1788
+ .file\\:text-sm {
1789
+ &::file-selector-button {
1790
+ font-size: 0.875rem;
1791
+ font-size: var(--text-sm);
1792
+ line-height: calc(1.25 / 0.875);
1793
+ line-height: var(--tw-leading, var(--text-sm--line-height));
1794
+ }
1795
+ }
1796
+ .file\\:font-medium {
1797
+ &::file-selector-button {
1798
+ --tw-font-weight: var(--font-weight-medium);
1799
+ font-weight: 500;
1800
+ font-weight: var(--font-weight-medium);
1801
+ }
1802
+ }
1803
+ .file\\:text-foreground {
1804
+ &::file-selector-button {
1805
+ color: oklch(0.145 0 0);
1806
+ }
1807
+ }
1808
+ .placeholder\\:text-muted-foreground {
1809
+ &::-moz-placeholder {
1810
+ color: oklch(0.556 0 0);
1811
+ }
1812
+ &::placeholder {
1813
+ color: oklch(0.556 0 0);
1814
+ }
1815
+ }
1816
+ .hover\\:cursor-pointer {
1817
+ &:hover {
1818
+ cursor: pointer
1819
+ }
1820
+ }
1821
+ .hover\\:bg-\\[\\#2A44D4\\] {
1822
+ &:hover {
1823
+ background-color: #2A44D4
1824
+ }
1825
+ }
1826
+ .hover\\:bg-\\[\\#EAECFB\\] {
1827
+ &:hover {
1828
+ background-color: #EAECFB
1829
+ }
1830
+ }
1831
+ .hover\\:bg-accent {
1832
+ &:hover {
1833
+ background-color: oklch(0.97 0 0)
1834
+ }
1835
+ }
1836
+ .hover\\:bg-destructive\\/90 {
1837
+ &:hover {
1838
+ background-color: color-mix(in oklab, oklch(0.577 0.245 27.325) 90%, transparent)
1839
+ }
1840
+ }
1841
+ .hover\\:bg-gray-50 {
1842
+ &:hover {
1843
+ background-color: oklch(98.5% 0.002 247.839);
1844
+ background-color: var(--color-gray-50)
1845
+ }
1846
+ }
1847
+ .hover\\:bg-gray-100 {
1848
+ &:hover {
1849
+ background-color: oklch(96.7% 0.003 264.542);
1850
+ background-color: var(--color-gray-100)
1851
+ }
1852
+ }
1853
+ .hover\\:bg-muted\\/30 {
1854
+ &:hover {
1855
+ background-color: color-mix(in oklab, oklch(0.97 0 0) 30%, transparent)
1856
+ }
1857
+ }
1858
+ .hover\\:bg-muted\\/50 {
1859
+ &:hover {
1860
+ background-color: color-mix(in oklab, oklch(0.97 0 0) 50%, transparent)
1861
+ }
1862
+ }
1863
+ .hover\\:bg-primary\\/90 {
1864
+ &:hover {
1865
+ background-color: color-mix(in oklab, oklch(0.205 0 0) 90%, transparent)
1866
+ }
1867
+ }
1868
+ .hover\\:bg-red-200 {
1869
+ &:hover {
1870
+ background-color: oklch(88.5% 0.062 18.334);
1871
+ background-color: var(--color-red-200)
1872
+ }
1873
+ }
1874
+ .hover\\:bg-secondary\\/80 {
1875
+ &:hover {
1876
+ background-color: color-mix(in oklab, oklch(0.97 0 0) 80%, transparent)
1877
+ }
1878
+ }
1879
+ .hover\\:text-\\[\\#263DBF\\] {
1880
+ &:hover {
1881
+ color: #263DBF
1882
+ }
1883
+ }
1884
+ .hover\\:text-accent-foreground {
1885
+ &:hover {
1886
+ color: oklch(0.205 0 0)
1887
+ }
1888
+ }
1889
+ .hover\\:text-blue-600 {
1890
+ &:hover {
1891
+ color: oklch(54.6% 0.245 262.881);
1892
+ color: var(--color-blue-600)
1893
+ }
1894
+ }
1895
+ .hover\\:text-gray-600 {
1896
+ &:hover {
1897
+ color: oklch(44.6% 0.03 256.802);
1898
+ color: var(--color-gray-600)
1899
+ }
1900
+ }
1901
+ .hover\\:text-white {
1902
+ &:hover {
1903
+ color: #fff;
1904
+ color: var(--color-white)
1905
+ }
1906
+ }
1907
+ .hover\\:underline {
1908
+ &:hover {
1909
+ text-decoration-line: underline
1910
+ }
1911
+ }
1912
+ .focus\\:bg-blue-50 {
1913
+ &:focus {
1914
+ background-color: oklch(97% 0.014 254.604);
1915
+ background-color: var(--color-blue-50);
1916
+ }
1917
+ }
1918
+ .focus\\:ring-2 {
1919
+ &:focus {
1920
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1921
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1922
+ }
1923
+ }
1924
+ .focus\\:ring-blue-500 {
1925
+ &:focus {
1926
+ --tw-ring-color: var(--color-blue-500);
1927
+ }
1928
+ }
1929
+ .focus\\:outline-none {
1930
+ &:focus {
1931
+ --tw-outline-style: none;
1932
+ outline-style: none;
1933
+ }
1934
+ }
1935
+ .focus-visible\\:border-ring {
1936
+ &:focus-visible {
1937
+ border-color: oklch(0.708 0 0);
1938
+ }
1939
+ }
1940
+ .focus-visible\\:ring-2 {
1941
+ &:focus-visible {
1942
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1943
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1944
+ }
1945
+ }
1946
+ .focus-visible\\:ring-\\[3px\\] {
1947
+ &:focus-visible {
1948
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1949
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1950
+ }
1951
+ }
1952
+ .focus-visible\\:ring-destructive\\/20 {
1953
+ &:focus-visible {
1954
+ --tw-ring-color: color-mix(in oklab, oklch(0.577 0.245 27.325) 20%, transparent);
1955
+ }
1956
+ }
1957
+ .focus-visible\\:ring-ring {
1958
+ &:focus-visible {
1959
+ --tw-ring-color: oklch(0.708 0 0);
1960
+ }
1961
+ }
1962
+ .focus-visible\\:ring-ring\\/50 {
1963
+ &:focus-visible {
1964
+ --tw-ring-color: color-mix(in oklab, oklch(0.708 0 0) 50%, transparent);
1965
+ }
1966
+ }
1967
+ .focus-visible\\:ring-offset-2 {
1968
+ &:focus-visible {
1969
+ --tw-ring-offset-width: 2px;
1970
+ --tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
1971
+ }
1972
+ }
1973
+ .focus-visible\\:outline-none {
1974
+ &:focus-visible {
1975
+ --tw-outline-style: none;
1976
+ outline-style: none;
1977
+ }
1978
+ }
1979
+ .disabled\\:pointer-events-none {
1980
+ &:disabled {
1981
+ pointer-events: none;
1982
+ }
1983
+ }
1984
+ .disabled\\:cursor-not-allowed {
1985
+ &:disabled {
1986
+ cursor: not-allowed;
1987
+ }
1988
+ }
1989
+ .disabled\\:opacity-50 {
1990
+ &:disabled {
1991
+ opacity: 50%;
1992
+ }
1993
+ }
1994
+ .has-data-\\[slot\\=card-action\\]\\:grid-cols-\\[1fr_auto\\] {
1995
+ &:has(*[data-slot="card-action"]) {
1996
+ grid-template-columns: 1fr auto;
1997
+ }
1998
+ }
1999
+ .has-\\[\\>svg\\]\\:px-2\\.5 {
2000
+ &:has(>svg) {
2001
+ padding-inline: calc(0.25rem * 2.5);
2002
+ padding-inline: calc(var(--spacing) * 2.5);
2003
+ }
2004
+ }
2005
+ .has-\\[\\>svg\\]\\:px-3 {
2006
+ &:has(>svg) {
2007
+ padding-inline: calc(0.25rem * 3);
2008
+ padding-inline: calc(var(--spacing) * 3);
2009
+ }
2010
+ }
2011
+ .has-\\[\\>svg\\]\\:px-4 {
2012
+ &:has(>svg) {
2013
+ padding-inline: calc(0.25rem * 4);
2014
+ padding-inline: calc(var(--spacing) * 4);
2015
+ }
2016
+ }
2017
+ .aria-invalid\\:border-destructive {
2018
+ &[aria-invalid="true"] {
2019
+ border-color: oklch(0.577 0.245 27.325);
2020
+ }
2021
+ }
2022
+ .aria-invalid\\:ring-destructive\\/20 {
2023
+ &[aria-invalid="true"] {
2024
+ --tw-ring-color: color-mix(in oklab, oklch(0.577 0.245 27.325) 20%, transparent);
2025
+ }
2026
+ }
2027
+ .data-\\[orientation\\=horizontal\\]\\:h-px {
2028
+ &[data-orientation="horizontal"] {
2029
+ height: 1px;
2030
+ }
2031
+ }
2032
+ .data-\\[orientation\\=horizontal\\]\\:w-full {
2033
+ &[data-orientation="horizontal"] {
2034
+ width: 100%;
2035
+ }
2036
+ }
2037
+ .data-\\[orientation\\=vertical\\]\\:h-full {
2038
+ &[data-orientation="vertical"] {
2039
+ height: 100%;
2040
+ }
2041
+ }
2042
+ .data-\\[orientation\\=vertical\\]\\:w-px {
2043
+ &[data-orientation="vertical"] {
2044
+ width: 1px;
2045
+ }
2046
+ }
2047
+ .data-\\[side\\=bottom\\]\\:slide-in-from-top-2 {
2048
+ &[data-side="bottom"] {
2049
+ --tw-enter-translate-y: -0.5rem;
2050
+ }
2051
+ }
2052
+ .data-\\[side\\=left\\]\\:slide-in-from-right-2 {
2053
+ &[data-side="left"] {
2054
+ --tw-enter-translate-x: 0.5rem;
2055
+ }
2056
+ }
2057
+ .data-\\[side\\=right\\]\\:slide-in-from-left-2 {
2058
+ &[data-side="right"] {
2059
+ --tw-enter-translate-x: -0.5rem;
2060
+ }
2061
+ }
2062
+ .data-\\[side\\=top\\]\\:slide-in-from-bottom-2 {
2063
+ &[data-side="top"] {
2064
+ --tw-enter-translate-y: 0.5rem;
2065
+ }
2066
+ }
2067
+ .data-\\[state\\=active\\]\\:rounded-md {
2068
+ &[data-state="active"] {
2069
+ border-radius: calc(0.625rem - 2px);
2070
+ }
2071
+ }
2072
+ .data-\\[state\\=active\\]\\:border {
2073
+ &[data-state="active"] {
2074
+ border-style: var(--tw-border-style);
2075
+ border-width: 1px;
2076
+ }
2077
+ }
2078
+ .data-\\[state\\=active\\]\\:border-solid {
2079
+ &[data-state="active"] {
2080
+ --tw-border-style: solid;
2081
+ border-style: solid;
2082
+ }
2083
+ }
2084
+ .data-\\[state\\=active\\]\\:border-\\[\\#2A44D4\\] {
2085
+ &[data-state="active"] {
2086
+ border-color: #2A44D4;
2087
+ }
2088
+ }
2089
+ .data-\\[state\\=active\\]\\:bg-\\[\\#EAECFB\\] {
2090
+ &[data-state="active"] {
2091
+ background-color: #EAECFB;
2092
+ }
2093
+ }
2094
+ .data-\\[state\\=active\\]\\:bg-background {
2095
+ &[data-state="active"] {
2096
+ background-color: oklch(1 0 0);
2097
+ }
2098
+ }
2099
+ .data-\\[state\\=active\\]\\:text-\\[\\#263DBF\\] {
2100
+ &[data-state="active"] {
2101
+ color: #263DBF;
2102
+ }
2103
+ }
2104
+ .data-\\[state\\=active\\]\\:text-foreground {
2105
+ &[data-state="active"] {
2106
+ color: oklch(0.145 0 0);
2107
+ }
2108
+ }
2109
+ .data-\\[state\\=active\\]\\:shadow {
2110
+ &[data-state="active"] {
2111
+ --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
2112
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
2113
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
2114
+ }
2115
+ }
2116
+ .data-\\[state\\=active\\]\\:shadow-none {
2117
+ &[data-state="active"] {
2118
+ --tw-shadow: 0 0 #0000;
2119
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 #0000;
2120
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
2121
+ }
2122
+ }
2123
+ .data-\\[state\\=checked\\]\\:border-primary {
2124
+ &[data-state="checked"] {
2125
+ border-color: oklch(0.205 0 0);
2126
+ }
2127
+ }
2128
+ .data-\\[state\\=checked\\]\\:bg-primary {
2129
+ &[data-state="checked"] {
2130
+ background-color: oklch(0.205 0 0);
2131
+ }
2132
+ }
2133
+ .data-\\[state\\=checked\\]\\:text-primary-foreground {
2134
+ &[data-state="checked"] {
2135
+ color: oklch(0.985 0 0);
2136
+ }
2137
+ }
2138
+ .data-\\[state\\=closed\\]\\:animate-out {
2139
+ &[data-state="closed"] {
2140
+ animation-name: exit;
2141
+ animation-duration: 150ms;
2142
+ --tw-exit-opacity: initial;
2143
+ --tw-exit-scale: initial;
2144
+ --tw-exit-rotate: initial;
2145
+ --tw-exit-translate-x: initial;
2146
+ --tw-exit-translate-y: initial;
2147
+ }
2148
+ }
2149
+ .data-\\[state\\=closed\\]\\:fade-out-0 {
2150
+ &[data-state="closed"] {
2151
+ --tw-exit-opacity: 0;
2152
+ }
2153
+ }
2154
+ .data-\\[state\\=closed\\]\\:zoom-out-95 {
2155
+ &[data-state="closed"] {
2156
+ --tw-exit-scale: .95;
2157
+ }
2158
+ }
2159
+ .data-\\[state\\=open\\]\\:animate-in {
2160
+ &[data-state="open"] {
2161
+ animation-name: enter;
2162
+ animation-duration: 150ms;
2163
+ --tw-enter-opacity: initial;
2164
+ --tw-enter-scale: initial;
2165
+ --tw-enter-rotate: initial;
2166
+ --tw-enter-translate-x: initial;
2167
+ --tw-enter-translate-y: initial;
2168
+ }
2169
+ }
2170
+ .data-\\[state\\=open\\]\\:fade-in-0 {
2171
+ &[data-state="open"] {
2172
+ --tw-enter-opacity: 0;
2173
+ }
2174
+ }
2175
+ .data-\\[state\\=open\\]\\:zoom-in-95 {
2176
+ &[data-state="open"] {
2177
+ --tw-enter-scale: .95;
2178
+ }
2179
+ }
2180
+ .data-\\[state\\=selected\\]\\:bg-muted {
2181
+ &[data-state="selected"] {
2182
+ background-color: oklch(0.97 0 0);
2183
+ }
2184
+ }
2185
+ .md\\:text-sm {
2186
+ font-size: 0.875rem;
2187
+ font-size: var(--text-sm);
2188
+ line-height: calc(1.25 / 0.875);
2189
+ line-height: var(--tw-leading, var(--text-sm--line-height))
2190
+ }
2191
+ .dark\\:border-input {
2192
+ border-color: oklch(0.922 0 0)
2193
+ }
2194
+ .dark\\:bg-destructive\\/60 {
2195
+ background-color: color-mix(in oklab, oklch(0.577 0.245 27.325) 60%, transparent)
2196
+ }
2197
+ .dark\\:bg-input\\/30 {
2198
+ background-color: color-mix(in oklab, oklch(0.922 0 0) 30%, transparent)
2199
+ }
2200
+ .dark\\:hover\\:bg-accent\\/50 {
2201
+ &:hover {
2202
+ background-color: color-mix(in oklab, oklch(0.97 0 0) 50%, transparent)
2203
+ }
2204
+ }
2205
+ .dark\\:hover\\:bg-input\\/50 {
2206
+ &:hover {
2207
+ background-color: color-mix(in oklab, oklch(0.922 0 0) 50%, transparent)
2208
+ }
2209
+ }
2210
+ .dark\\:focus-visible\\:ring-destructive\\/40 {
2211
+ &:focus-visible {
2212
+ --tw-ring-color: color-mix(in oklab, oklch(0.577 0.245 27.325) 40%, transparent);
2213
+ }
2214
+ }
2215
+ .dark\\:aria-invalid\\:ring-destructive\\/40 {
2216
+ &[aria-invalid="true"] {
2217
+ --tw-ring-color: color-mix(in oklab, oklch(0.577 0.245 27.325) 40%, transparent);
2218
+ }
2219
+ }
2220
+ .dark\\:data-\\[state\\=checked\\]\\:bg-primary {
2221
+ &[data-state="checked"] {
2222
+ background-color: oklch(0.205 0 0);
2223
+ }
2224
+ }
2225
+ .\\[\\&_\\.recharts-cartesian-axis-tick_text\\]\\:fill-muted-foreground {
2226
+ & .recharts-cartesian-axis-tick text {
2227
+ fill: oklch(0.556 0 0);
2228
+ }
2229
+ }
2230
+ .\\[\\&_\\.recharts-cartesian-grid_line\\[stroke\\=\\'\\#ccc\\'\\]\\]\\:stroke-border\\/50 {
2231
+ & .recharts-cartesian-grid line[stroke='#ccc'] {
2232
+ stroke: color-mix(in oklab, oklch(0.922 0 0) 50%, transparent);
2233
+ }
2234
+ }
2235
+ .\\[\\&_\\.recharts-curve\\.recharts-tooltip-cursor\\]\\:stroke-border {
2236
+ & .recharts-curve.recharts-tooltip-cursor {
2237
+ stroke: oklch(0.922 0 0);
2238
+ }
2239
+ }
2240
+ .\\[\\&_\\.recharts-dot\\[stroke\\=\\'\\#fff\\'\\]\\]\\:stroke-transparent {
2241
+ & .recharts-dot[stroke='#fff'] {
2242
+ stroke: transparent;
2243
+ }
2244
+ }
2245
+ .\\[\\&_\\.recharts-layer\\]\\:outline-hidden {
2246
+ & .recharts-layer {
2247
+ --tw-outline-style: none;
2248
+ outline-style: none;
2249
+ outline: 2px solid transparent;
2250
+ outline-offset: 2px
2251
+ }
2252
+ }
2253
+ .\\[\\&_\\.recharts-polar-grid_\\[stroke\\=\\'\\#ccc\\'\\]\\]\\:stroke-border {
2254
+ & .recharts-polar-grid [stroke='#ccc'] {
2255
+ stroke: oklch(0.922 0 0);
2256
+ }
2257
+ }
2258
+ .\\[\\&_\\.recharts-radial-bar-background-sector\\]\\:fill-muted {
2259
+ & .recharts-radial-bar-background-sector {
2260
+ fill: oklch(0.97 0 0);
2261
+ }
2262
+ }
2263
+ .\\[\\&_\\.recharts-rectangle\\.recharts-tooltip-cursor\\]\\:fill-muted {
2264
+ & .recharts-rectangle.recharts-tooltip-cursor {
2265
+ fill: oklch(0.97 0 0);
2266
+ }
2267
+ }
2268
+ .\\[\\&_\\.recharts-reference-line_\\[stroke\\=\\'\\#ccc\\'\\]\\]\\:stroke-border {
2269
+ & .recharts-reference-line [stroke='#ccc'] {
2270
+ stroke: oklch(0.922 0 0);
2271
+ }
2272
+ }
2273
+ .\\[\\&_\\.recharts-sector\\]\\:outline-hidden {
2274
+ & .recharts-sector {
2275
+ --tw-outline-style: none;
2276
+ outline-style: none;
2277
+ outline: 2px solid transparent;
2278
+ outline-offset: 2px
2279
+ }
2280
+ }
2281
+ .\\[\\&_\\.recharts-sector\\[stroke\\=\\'\\#fff\\'\\]\\]\\:stroke-transparent {
2282
+ & .recharts-sector[stroke='#fff'] {
2283
+ stroke: transparent;
2284
+ }
2285
+ }
2286
+ .\\[\\&_\\.recharts-surface\\]\\:outline-hidden {
2287
+ & .recharts-surface {
2288
+ --tw-outline-style: none;
2289
+ outline-style: none;
2290
+ outline: 2px solid transparent;
2291
+ outline-offset: 2px
2292
+ }
2293
+ }
2294
+ .\\[\\&_svg\\]\\:pointer-events-none {
2295
+ & svg {
2296
+ pointer-events: none;
2297
+ }
2298
+ }
2299
+ .\\[\\&_svg\\]\\:shrink-0 {
2300
+ & svg {
2301
+ flex-shrink: 0;
2302
+ }
2303
+ }
2304
+ .\\[\\&_svg\\:not\\(\\[class\\*\\=\\'size-\\'\\]\\)\\]\\:size-4 {
2305
+ & svg:not([class*='size-']) {
2306
+ width: calc(0.25rem * 4);
2307
+ width: calc(var(--spacing) * 4);
2308
+ height: calc(0.25rem * 4);
2309
+ height: calc(var(--spacing) * 4);
2310
+ }
2311
+ }
2312
+ .\\[\\&_tr\\]\\:border-b {
2313
+ & tr {
2314
+ border-bottom-style: var(--tw-border-style);
2315
+ border-bottom-width: 1px;
2316
+ }
2317
+ }
2318
+ .\\[\\&_tr\\:last-child\\]\\:border-0 {
2319
+ & tr:last-child {
2320
+ border-style: var(--tw-border-style);
2321
+ border-width: 0px;
2322
+ }
2323
+ }
2324
+ .\\[\\&\\:has\\(\\[role\\=checkbox\\]\\)\\]\\:pr-0 {
2325
+ &:has([role=checkbox]) {
2326
+ padding-right: calc(0.25rem * 0);
2327
+ padding-right: calc(var(--spacing) * 0);
2328
+ }
2329
+ }
2330
+ .\\[\\.border-b\\]\\:pb-6 {
2331
+ &:is(.border-b) {
2332
+ padding-bottom: calc(0.25rem * 6);
2333
+ padding-bottom: calc(var(--spacing) * 6);
2334
+ }
2335
+ }
2336
+ .\\[\\&\\>\\[role\\=checkbox\\]\\]\\:translate-y-\\[2px\\] {
2337
+ &>[role=checkbox] {
2338
+ --tw-translate-y: 2px;
2339
+ translate: var(--tw-translate-x) 2px;
2340
+ translate: var(--tw-translate-x) var(--tw-translate-y);
2341
+ }
2342
+ }
2343
+ .\\[\\&\\>svg\\]\\:h-2\\.5 {
2344
+ &>svg {
2345
+ height: calc(0.25rem * 2.5);
2346
+ height: calc(var(--spacing) * 2.5);
2347
+ }
2348
+ }
2349
+ .\\[\\&\\>svg\\]\\:h-3 {
2350
+ &>svg {
2351
+ height: calc(0.25rem * 3);
2352
+ height: calc(var(--spacing) * 3);
2353
+ }
2354
+ }
2355
+ .\\[\\&\\>svg\\]\\:w-2\\.5 {
2356
+ &>svg {
2357
+ width: calc(0.25rem * 2.5);
2358
+ width: calc(var(--spacing) * 2.5);
2359
+ }
2360
+ }
2361
+ .\\[\\&\\>svg\\]\\:w-3 {
2362
+ &>svg {
2363
+ width: calc(0.25rem * 3);
2364
+ width: calc(var(--spacing) * 3);
2365
+ }
2366
+ }
2367
+ .\\[\\&\\>svg\\]\\:text-muted-foreground {
2368
+ &>svg {
2369
+ color: oklch(0.556 0 0);
2370
+ }
2371
+ }
2372
+ .\\[\\&\\>tr\\]\\:last\\:border-b-0 {
2373
+ &>tr {
2374
+ &:last-child {
2375
+ border-bottom-style: var(--tw-border-style);
2376
+ border-bottom-width: 0px;
2377
+ }
2378
+ }
2379
+ }
2380
+ @keyframes enter {
2381
+ from {
2382
+ opacity: 1;
2383
+ opacity: var(--tw-enter-opacity, 1);
2384
+ transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotate(0);
2385
+ transform: translate3d(var(--tw-enter-translate-x, 0), var(--tw-enter-translate-y, 0), 0) scale3d(var(--tw-enter-scale, 1), var(--tw-enter-scale, 1), var(--tw-enter-scale, 1)) rotate(var(--tw-enter-rotate, 0));
2386
+ }
2387
+ }
2388
+ @keyframes exit {
2389
+ to {
2390
+ opacity: 1;
2391
+ opacity: var(--tw-exit-opacity, 1);
2392
+ transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotate(0);
2393
+ transform: translate3d(var(--tw-exit-translate-x, 0), var(--tw-exit-translate-y, 0), 0) scale3d(var(--tw-exit-scale, 1), var(--tw-exit-scale, 1), var(--tw-exit-scale, 1)) rotate(var(--tw-exit-rotate, 0));
2394
+ }
2395
+ }
2396
+ @property --tw-translate-x {
2397
+ syntax: "*";
2398
+ inherits: false;
2399
+ initial-value: 0;
2400
+ }
2401
+ @property --tw-translate-y {
2402
+ syntax: "*";
2403
+ inherits: false;
2404
+ initial-value: 0;
2405
+ }
2406
+ @property --tw-translate-z {
2407
+ syntax: "*";
2408
+ inherits: false;
2409
+ initial-value: 0;
2410
+ }
2411
+ @property --tw-rotate-x {
2412
+ syntax: "*";
2413
+ inherits: false;
2414
+ }
2415
+ @property --tw-rotate-y {
2416
+ syntax: "*";
2417
+ inherits: false;
2418
+ }
2419
+ @property --tw-rotate-z {
2420
+ syntax: "*";
2421
+ inherits: false;
2422
+ }
2423
+ @property --tw-skew-x {
2424
+ syntax: "*";
2425
+ inherits: false;
2426
+ }
2427
+ @property --tw-skew-y {
2428
+ syntax: "*";
2429
+ inherits: false;
2430
+ }
2431
+ @property --tw-space-y-reverse {
2432
+ syntax: "*";
2433
+ inherits: false;
2434
+ initial-value: 0;
2435
+ }
2436
+ @property --tw-space-x-reverse {
2437
+ syntax: "*";
2438
+ inherits: false;
2439
+ initial-value: 0;
2440
+ }
2441
+ @property --tw-border-style {
2442
+ syntax: "*";
2443
+ inherits: false;
2444
+ initial-value: solid;
2445
+ }
2446
+ @property --tw-leading {
2447
+ syntax: "*";
2448
+ inherits: false;
2449
+ }
2450
+ @property --tw-font-weight {
2451
+ syntax: "*";
2452
+ inherits: false;
2453
+ }
2454
+ @property --tw-ordinal {
2455
+ syntax: "*";
2456
+ inherits: false;
2457
+ }
2458
+ @property --tw-slashed-zero {
2459
+ syntax: "*";
2460
+ inherits: false;
2461
+ }
2462
+ @property --tw-numeric-figure {
2463
+ syntax: "*";
2464
+ inherits: false;
2465
+ }
2466
+ @property --tw-numeric-spacing {
2467
+ syntax: "*";
2468
+ inherits: false;
2469
+ }
2470
+ @property --tw-numeric-fraction {
2471
+ syntax: "*";
2472
+ inherits: false;
2473
+ }
2474
+ @property --tw-shadow {
2475
+ syntax: "*";
2476
+ inherits: false;
2477
+ initial-value: 0 0 #0000;
2478
+ }
2479
+ @property --tw-shadow-color {
2480
+ syntax: "*";
2481
+ inherits: false;
2482
+ }
2483
+ @property --tw-shadow-alpha {
2484
+ syntax: "<percentage>";
2485
+ inherits: false;
2486
+ initial-value: 100%;
2487
+ }
2488
+ @property --tw-inset-shadow {
2489
+ syntax: "*";
2490
+ inherits: false;
2491
+ initial-value: 0 0 #0000;
2492
+ }
2493
+ @property --tw-inset-shadow-color {
2494
+ syntax: "*";
2495
+ inherits: false;
2496
+ }
2497
+ @property --tw-inset-shadow-alpha {
2498
+ syntax: "<percentage>";
2499
+ inherits: false;
2500
+ initial-value: 100%;
2501
+ }
2502
+ @property --tw-ring-color {
2503
+ syntax: "*";
2504
+ inherits: false;
2505
+ }
2506
+ @property --tw-ring-shadow {
2507
+ syntax: "*";
2508
+ inherits: false;
2509
+ initial-value: 0 0 #0000;
2510
+ }
2511
+ @property --tw-inset-ring-color {
2512
+ syntax: "*";
2513
+ inherits: false;
2514
+ }
2515
+ @property --tw-inset-ring-shadow {
2516
+ syntax: "*";
2517
+ inherits: false;
2518
+ initial-value: 0 0 #0000;
2519
+ }
2520
+ @property --tw-ring-inset {
2521
+ syntax: "*";
2522
+ inherits: false;
2523
+ }
2524
+ @property --tw-ring-offset-width {
2525
+ syntax: "<length>";
2526
+ inherits: false;
2527
+ initial-value: 0px;
2528
+ }
2529
+ @property --tw-ring-offset-color {
2530
+ syntax: "*";
2531
+ inherits: false;
2532
+ initial-value: #fff;
2533
+ }
2534
+ @property --tw-ring-offset-shadow {
2535
+ syntax: "*";
2536
+ inherits: false;
2537
+ initial-value: 0 0 #0000;
2538
+ }
2539
+ @property --tw-outline-style {
2540
+ syntax: "*";
2541
+ inherits: false;
2542
+ initial-value: solid;
2543
+ }
2544
+ @property --tw-blur {
2545
+ syntax: "*";
2546
+ inherits: false;
2547
+ }
2548
+ @property --tw-brightness {
2549
+ syntax: "*";
2550
+ inherits: false;
2551
+ }
2552
+ @property --tw-contrast {
2553
+ syntax: "*";
2554
+ inherits: false;
2555
+ }
2556
+ @property --tw-grayscale {
2557
+ syntax: "*";
2558
+ inherits: false;
2559
+ }
2560
+ @property --tw-hue-rotate {
2561
+ syntax: "*";
2562
+ inherits: false;
2563
+ }
2564
+ @property --tw-invert {
2565
+ syntax: "*";
2566
+ inherits: false;
2567
+ }
2568
+ @property --tw-opacity {
2569
+ syntax: "*";
2570
+ inherits: false;
2571
+ }
2572
+ @property --tw-saturate {
2573
+ syntax: "*";
2574
+ inherits: false;
2575
+ }
2576
+ @property --tw-sepia {
2577
+ syntax: "*";
2578
+ inherits: false;
2579
+ }
2580
+ @property --tw-drop-shadow {
2581
+ syntax: "*";
2582
+ inherits: false;
2583
+ }
2584
+ @property --tw-drop-shadow-color {
2585
+ syntax: "*";
2586
+ inherits: false;
2587
+ }
2588
+ @property --tw-drop-shadow-alpha {
2589
+ syntax: "<percentage>";
2590
+ inherits: false;
2591
+ initial-value: 100%;
2592
+ }
2593
+ @property --tw-drop-shadow-size {
2594
+ syntax: "*";
2595
+ inherits: false;
2596
+ }
2597
+ @property --tw-duration {
2598
+ syntax: "*";
2599
+ inherits: false;
2600
+ }
2601
+ @property --tw-ease {
2602
+ syntax: "*";
2603
+ inherits: false;
2604
+ }
2605
+ @keyframes spin {
2606
+ to {
2607
+ transform: rotate(360deg);
2608
+ }
2609
+ }
2610
+ @keyframes pulse {
2611
+ 50% {
2612
+ opacity: 0.5;
2613
+ }
2614
+ }
2615
+ @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
2616
+ *, ::before, ::after, ::backdrop {
2617
+ --tw-translate-x: 0;
2618
+ --tw-translate-y: 0;
2619
+ --tw-translate-z: 0;
2620
+ --tw-rotate-x: initial;
2621
+ --tw-rotate-y: initial;
2622
+ --tw-rotate-z: initial;
2623
+ --tw-skew-x: initial;
2624
+ --tw-skew-y: initial;
2625
+ --tw-space-y-reverse: 0;
2626
+ --tw-space-x-reverse: 0;
2627
+ --tw-border-style: solid;
2628
+ --tw-leading: initial;
2629
+ --tw-font-weight: initial;
2630
+ --tw-ordinal: initial;
2631
+ --tw-slashed-zero: initial;
2632
+ --tw-numeric-figure: initial;
2633
+ --tw-numeric-spacing: initial;
2634
+ --tw-numeric-fraction: initial;
2635
+ --tw-shadow: 0 0 #0000;
2636
+ --tw-shadow-color: initial;
2637
+ --tw-shadow-alpha: 100%;
2638
+ --tw-inset-shadow: 0 0 #0000;
2639
+ --tw-inset-shadow-color: initial;
2640
+ --tw-inset-shadow-alpha: 100%;
2641
+ --tw-ring-color: initial;
2642
+ --tw-ring-shadow: 0 0 #0000;
2643
+ --tw-inset-ring-color: initial;
2644
+ --tw-inset-ring-shadow: 0 0 #0000;
2645
+ --tw-ring-inset: initial;
2646
+ --tw-ring-offset-width: 0px;
2647
+ --tw-ring-offset-color: #fff;
2648
+ --tw-ring-offset-shadow: 0 0 #0000;
2649
+ --tw-outline-style: solid;
2650
+ --tw-blur: initial;
2651
+ --tw-brightness: initial;
2652
+ --tw-contrast: initial;
2653
+ --tw-grayscale: initial;
2654
+ --tw-hue-rotate: initial;
2655
+ --tw-invert: initial;
2656
+ --tw-opacity: initial;
2657
+ --tw-saturate: initial;
2658
+ --tw-sepia: initial;
2659
+ --tw-drop-shadow: initial;
2660
+ --tw-drop-shadow-color: initial;
2661
+ --tw-drop-shadow-alpha: 100%;
2662
+ --tw-drop-shadow-size: initial;
2663
+ --tw-duration: initial;
2664
+ --tw-ease: initial;
2665
+ }
2666
+ }
2667
+ `