hasting-swatchcart-module 1.0.70 → 1.0.71

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 (127) hide show
  1. package/dist/assets/index.css +3103 -0
  2. package/dist/cdn/lib/components/SwatchesModule.d.ts +13 -0
  3. package/dist/cdn/lib/main.d.ts +9 -0
  4. package/dist/cdn/lib/store/LibraryProvider.d.ts +4 -0
  5. package/dist/cdn/lib/store/rootReducer.d.ts +11 -0
  6. package/dist/cdn/lib/store/store.d.ts +25 -0
  7. package/dist/cdn/lib/store/withStore.d.ts +2 -0
  8. package/dist/cdn/lib/vite-env.d.ts +1 -0
  9. package/dist/cdn/main.css +3103 -0
  10. package/dist/cdn/main.js +31886 -0
  11. package/dist/cdn/src/app/App.d.ts +12 -0
  12. package/dist/cdn/src/app/assets/svg/ArrowIconSVG.d.ts +3 -0
  13. package/dist/cdn/src/app/assets/svg/CheckMarkIconSVG.d.ts +3 -0
  14. package/dist/cdn/src/app/assets/svg/ChevronSVGIcon.d.ts +3 -0
  15. package/dist/cdn/src/app/assets/svg/CloseIconSVG.d.ts +3 -0
  16. package/dist/cdn/src/app/assets/svg/DarkWhiteIconSVG.d.ts +1 -0
  17. package/dist/cdn/src/app/assets/svg/MinusIconSVG.d.ts +3 -0
  18. package/dist/cdn/src/app/assets/svg/PlusIconSVG.d.ts +3 -0
  19. package/dist/cdn/src/app/assets/svg/SearchIconSVG.d.ts +3 -0
  20. package/dist/cdn/src/app/assets/svg/TrashIconSVG.d.ts +3 -0
  21. package/dist/cdn/src/app/assets/svg/WhiteWhiteIconSVG.d.ts +1 -0
  22. package/dist/cdn/src/app/main.d.ts +0 -0
  23. package/dist/cdn/src/app/providers/StoreProvider.d.ts +6 -0
  24. package/dist/cdn/src/app/store/rootReducer.d.ts +11 -0
  25. package/dist/cdn/src/app/store/storageMiddleware.d.ts +7 -0
  26. package/dist/cdn/src/app/store/store.d.ts +24 -0
  27. package/dist/cdn/src/features/Cart/lib/CartCervices.d.ts +5 -0
  28. package/dist/cdn/src/features/Cart/model/cartSlice.d.ts +3 -0
  29. package/dist/cdn/src/features/Cart/model/selectors.d.ts +223 -0
  30. package/dist/cdn/src/features/Cart/model/types.d.ts +7 -0
  31. package/dist/cdn/src/features/Cart/ui/CartHeader/CartHeader.d.ts +31 -0
  32. package/dist/cdn/src/features/Cart/ui/CartList/CartList.d.ts +1 -0
  33. package/dist/cdn/src/features/Cart/ui/CartListItem/CartListItem.d.ts +10 -0
  34. package/dist/cdn/src/features/Cart/ui/CartWrapper/CartWrapper.d.ts +9 -0
  35. package/dist/cdn/src/features/Cart/ui/Counter/Counter.d.ts +9 -0
  36. package/dist/cdn/src/features/DataAdapter/lib/DataAdapterServices.d.ts +19 -0
  37. package/dist/cdn/src/features/DataAdapter/utils/types.d.ts +12 -0
  38. package/dist/cdn/src/features/MultiProduct/lib/MultiProductCartServices.d.ts +13 -0
  39. package/dist/cdn/src/features/MultiProduct/model/API/api.d.ts +7 -0
  40. package/dist/cdn/src/features/MultiProduct/model/API/routes.d.ts +7 -0
  41. package/dist/cdn/src/features/MultiProduct/model/multiProductCartSlice.d.ts +9 -0
  42. package/dist/cdn/src/features/MultiProduct/model/selectors.d.ts +38 -0
  43. package/dist/cdn/src/features/MultiProduct/model/thunk.d.ts +11 -0
  44. package/dist/cdn/src/features/MultiProduct/model/types.d.ts +71 -0
  45. package/dist/cdn/src/features/MultiProduct/ui/CartSelectedProductList/CartSelectedProductList.d.ts +1 -0
  46. package/dist/cdn/src/features/MultiProduct/ui/FiltersSelectedProductItem/FiltersSelectedProductItem.d.ts +1 -0
  47. package/dist/cdn/src/features/MultiProduct/ui/MaterialMultiProductList/MaterialMultiProductList.d.ts +11 -0
  48. package/dist/cdn/src/features/MultiProduct/ui/MultiProductCartHeader/MultiProductCartHeader.d.ts +5 -0
  49. package/dist/cdn/src/features/MultiProduct/ui/MultiProductItemCart/MultiProductItemCart.d.ts +25 -0
  50. package/dist/cdn/src/features/MultiProduct/ui/MultiProductWrapper/MultiProductWrapper.d.ts +6 -0
  51. package/dist/cdn/src/features/MultiProduct/ui/ProductList/ProductList.d.ts +14 -0
  52. package/dist/cdn/src/features/MultiProduct/ui/ProductListItem/ProductListItem.d.ts +6 -0
  53. package/dist/cdn/src/features/MultiProduct/ui/SelectedProductItem/SelectedProductItem.d.ts +1 -0
  54. package/dist/cdn/src/features/MultiProduct/ui/SwatchContentContainer/SwatchContentContainer.d.ts +15 -0
  55. package/dist/cdn/src/features/MultiProduct/ui/SwatchListItem/SwatchListItem.d.ts +41 -0
  56. package/dist/cdn/src/features/MultiProduct/ui/SwatchesMultiProductList/SwatchesMultiProductList.d.ts +29 -0
  57. package/dist/cdn/src/features/MultiProduct/utils/constants.d.ts +6 -0
  58. package/dist/cdn/src/features/MultiProduct/utils/randomList.d.ts +2 -0
  59. package/dist/cdn/src/features/SwatchModule/SwatchModule/ui/SwatchModule.d.ts +2 -0
  60. package/dist/cdn/src/features/swatches/lib/AttributeHelper.d.ts +7 -0
  61. package/dist/cdn/src/features/swatches/lib/SwatchesServices.d.ts +11 -0
  62. package/dist/cdn/src/features/swatches/model/selectors.d.ts +10 -0
  63. package/dist/cdn/src/features/swatches/model/swatchesSlice.d.ts +49 -0
  64. package/dist/cdn/src/features/swatches/model/thunks.d.ts +22 -0
  65. package/dist/cdn/src/features/swatches/model/types.d.ts +149 -0
  66. package/dist/cdn/src/features/swatches/ui/Filters/ColorsFilter.d.ts +1 -0
  67. package/dist/cdn/src/features/swatches/ui/Filters/LooksFilter.d.ts +1 -0
  68. package/dist/cdn/src/features/swatches/ui/Filters/MaterialsFilter.d.ts +1 -0
  69. package/dist/cdn/src/features/swatches/ui/Filters/index.d.ts +1 -0
  70. package/dist/cdn/src/features/swatches/ui/HexGridZoom/HexGridZoom.d.ts +3 -0
  71. package/dist/cdn/src/features/swatches/ui/ImageGridZoom/ImageGridZoom.d.ts +3 -0
  72. package/dist/cdn/src/features/swatches/ui/MaterialSingleProductList/MaterialSingleProductList.d.ts +27 -0
  73. package/dist/cdn/src/features/swatches/ui/ProductElement/index.d.ts +28 -0
  74. package/dist/cdn/src/features/swatches/ui/SwatchWrapper/SwatchWrapper.d.ts +11 -0
  75. package/dist/cdn/src/features/swatches/ui/Swatches.d.ts +2 -0
  76. package/dist/cdn/src/features/swatches/ui/SwatchesList/SwatchesList.d.ts +28 -0
  77. package/dist/cdn/src/features/swatches/ui/SwatchesListWrapper/SwatchesListWrapper.d.ts +1 -0
  78. package/dist/cdn/src/features/swatches/utils/constants.d.ts +3 -0
  79. package/dist/cdn/src/features/swatches/utils/hooks/useCartCount.d.ts +18 -0
  80. package/dist/cdn/src/features/swatches/utils/types.d.ts +22 -0
  81. package/dist/cdn/src/shared/constants/constants.d.ts +1 -0
  82. package/dist/cdn/src/shared/constants/props.d.ts +1058 -0
  83. package/dist/cdn/src/shared/constants/select.d.ts +4 -0
  84. package/dist/cdn/src/shared/constants/selectedMaterials.d.ts +1 -0
  85. package/dist/cdn/src/shared/types/activeTab.d.ts +5 -0
  86. package/dist/cdn/src/shared/types/fetchData.d.ts +41 -0
  87. package/dist/cdn/src/shared/types/svg.d.ts +3 -0
  88. package/dist/cdn/src/shared/ui/CartPrice/CartPrice.d.ts +7 -0
  89. package/dist/cdn/src/shared/ui/Checkbox/Checkbox.d.ts +4 -0
  90. package/dist/cdn/src/shared/ui/CustomButton/CustomButton.d.ts +6 -0
  91. package/dist/cdn/src/shared/ui/CustomModal/CustomModal.d.ts +11 -0
  92. package/dist/cdn/src/shared/ui/CustomSidebar/CustomSidebar.d.ts +8 -0
  93. package/dist/cdn/src/shared/ui/Dialog/Dialog.d.ts +19 -0
  94. package/dist/cdn/src/shared/ui/Hint/Hint.d.ts +60 -0
  95. package/dist/cdn/src/shared/ui/Label/Label.d.ts +7 -0
  96. package/dist/cdn/src/shared/ui/Loader/Loader.d.ts +10 -0
  97. package/dist/cdn/src/shared/ui/Markdown/MDWithAccordion.d.ts +10 -0
  98. package/dist/cdn/src/shared/ui/MaterialItem/MaterialItem.d.ts +8 -0
  99. package/dist/cdn/src/shared/ui/MaterialListItem/MaterialListItem.d.ts +8 -0
  100. package/dist/cdn/src/shared/ui/MultiSelect/MultiSelect.d.ts +20 -0
  101. package/dist/cdn/src/shared/ui/PopoverTooltip/InfoIcon.d.ts +1 -0
  102. package/dist/cdn/src/shared/ui/PopoverTooltip/PopoverTooltip.d.ts +11 -0
  103. package/dist/cdn/src/shared/ui/SingleSelect/SingleSelect.d.ts +18 -0
  104. package/dist/cdn/src/shared/ui/Slider/Slider.d.ts +11 -0
  105. package/dist/cdn/src/shared/ui/SwatchLimitModal/SwatchLimitModal.d.ts +8 -0
  106. package/dist/cdn/src/shared/ui/popover.d.ts +9 -0
  107. package/dist/cdn/src/shared/utils/cn.d.ts +2 -0
  108. package/dist/cdn/src/shared/utils/scrollToTop.d.ts +4 -0
  109. package/dist/cdn/src/shared/utils/storageService.d.ts +46 -0
  110. package/dist/cdn/src/shared/utils/toast.d.ts +3 -0
  111. package/dist/cdn/src/shared/utils/uniqueList.d.ts +1 -0
  112. package/dist/cdn/src/shared/utils/version.d.ts +1 -0
  113. package/dist/components/SwatchesModule.d.ts +13 -0
  114. package/dist/main.cjs +158 -0
  115. package/dist/main.cjs.map +1 -0
  116. package/dist/main.d.ts +9 -0
  117. package/dist/main.js +24861 -0
  118. package/dist/main.js.map +1 -0
  119. package/dist/store/LibraryProvider.d.ts +4 -0
  120. package/dist/store/rootReducer.d.ts +11 -0
  121. package/dist/store/store.d.ts +25 -0
  122. package/dist/store/withStore.d.ts +2 -0
  123. package/package.json +1 -1
  124. package/dist/assets/index-BXz0XhUL.css +0 -1
  125. package/dist/assets/index-DOffJJvA.js +0 -164
  126. package/dist/index.html +0 -14
  127. /package/dist/{vite.svg → cdn/vite.svg} +0 -0
@@ -0,0 +1,3103 @@
1
+ /*! tailwindcss v4.1.17 | MIT License | https://tailwindcss.com */
2
+ @layer properties {
3
+ @supports (((-webkit-hyphens: none)) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color: rgb(from red r g b)))) {
4
+ *, :before, :after, ::backdrop {
5
+ --tw-animation-delay: 0s;
6
+ --tw-animation-direction: normal;
7
+ --tw-animation-duration: initial;
8
+ --tw-animation-fill-mode: none;
9
+ --tw-animation-iteration-count: 1;
10
+ --tw-enter-blur: 0;
11
+ --tw-enter-opacity: 1;
12
+ --tw-enter-rotate: 0;
13
+ --tw-enter-scale: 1;
14
+ --tw-enter-translate-x: 0;
15
+ --tw-enter-translate-y: 0;
16
+ --tw-exit-blur: 0;
17
+ --tw-exit-opacity: 1;
18
+ --tw-exit-rotate: 0;
19
+ --tw-exit-scale: 1;
20
+ --tw-exit-translate-x: 0;
21
+ --tw-exit-translate-y: 0;
22
+ --tw-translate-x: 0;
23
+ --tw-translate-y: 0;
24
+ --tw-translate-z: 0;
25
+ --tw-rotate-x: initial;
26
+ --tw-rotate-y: initial;
27
+ --tw-rotate-z: initial;
28
+ --tw-skew-x: initial;
29
+ --tw-skew-y: initial;
30
+ --tw-pan-x: initial;
31
+ --tw-pan-y: initial;
32
+ --tw-pinch-zoom: initial;
33
+ --tw-space-y-reverse: 0;
34
+ --tw-border-style: solid;
35
+ --tw-leading: initial;
36
+ --tw-font-weight: initial;
37
+ --tw-tracking: initial;
38
+ --tw-shadow: 0 0 #0000;
39
+ --tw-shadow-color: initial;
40
+ --tw-shadow-alpha: 100%;
41
+ --tw-inset-shadow: 0 0 #0000;
42
+ --tw-inset-shadow-color: initial;
43
+ --tw-inset-shadow-alpha: 100%;
44
+ --tw-ring-color: initial;
45
+ --tw-ring-shadow: 0 0 #0000;
46
+ --tw-inset-ring-color: initial;
47
+ --tw-inset-ring-shadow: 0 0 #0000;
48
+ --tw-ring-inset: initial;
49
+ --tw-ring-offset-width: 0px;
50
+ --tw-ring-offset-color: #fff;
51
+ --tw-ring-offset-shadow: 0 0 #0000;
52
+ --tw-blur: initial;
53
+ --tw-brightness: initial;
54
+ --tw-contrast: initial;
55
+ --tw-grayscale: initial;
56
+ --tw-hue-rotate: initial;
57
+ --tw-invert: initial;
58
+ --tw-opacity: initial;
59
+ --tw-saturate: initial;
60
+ --tw-sepia: initial;
61
+ --tw-drop-shadow: initial;
62
+ --tw-drop-shadow-color: initial;
63
+ --tw-drop-shadow-alpha: 100%;
64
+ --tw-drop-shadow-size: initial;
65
+ --tw-backdrop-blur: initial;
66
+ --tw-backdrop-brightness: initial;
67
+ --tw-backdrop-contrast: initial;
68
+ --tw-backdrop-grayscale: initial;
69
+ --tw-backdrop-hue-rotate: initial;
70
+ --tw-backdrop-invert: initial;
71
+ --tw-backdrop-opacity: initial;
72
+ --tw-backdrop-saturate: initial;
73
+ --tw-backdrop-sepia: initial;
74
+ --tw-duration: initial;
75
+ --tw-ease: initial;
76
+ --tw-space-x-reverse: 0;
77
+ }
78
+ }
79
+ }
80
+
81
+ @layer theme {
82
+ :root, :host {
83
+ --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
84
+ --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
85
+ --color-amber-300: oklch(87.9% .169 91.605);
86
+ --color-amber-700: oklch(55.5% .163 48.998);
87
+ --color-gray-50: oklch(98.5% .002 247.839);
88
+ --color-gray-100: oklch(96.7% .003 264.542);
89
+ --color-gray-200: oklch(92.8% .006 264.531);
90
+ --color-gray-300: oklch(87.2% .01 258.338);
91
+ --color-gray-400: oklch(70.7% .022 261.325);
92
+ --color-gray-500: oklch(55.1% .027 264.364);
93
+ --color-gray-700: oklch(37.3% .034 259.733);
94
+ --color-gray-800: oklch(27.8% .033 256.848);
95
+ --color-black: #000;
96
+ --color-white: #fff;
97
+ --spacing: .25rem;
98
+ --container-5xl: 64rem;
99
+ --font-weight-normal: 400;
100
+ --font-weight-medium: 500;
101
+ --font-weight-semibold: 600;
102
+ --font-weight-bold: 700;
103
+ --tracking-tight: -.025em;
104
+ --leading-snug: 1.375;
105
+ --radius-2xl: 1rem;
106
+ --ease-in-out: cubic-bezier(.4, 0, .2, 1);
107
+ --animate-spin: spin 1s linear infinite;
108
+ --aspect-video: 16 / 9;
109
+ --default-transition-timing-function: cubic-bezier(.4, 0, .2, 1);
110
+ --default-font-family: var(--font-sans);
111
+ --default-mono-font-family: var(--font-mono);
112
+ }
113
+ }
114
+
115
+ @layer base {
116
+ *, :after, :before, ::backdrop {
117
+ box-sizing: border-box;
118
+ border: 0 solid;
119
+ margin: 0;
120
+ padding: 0;
121
+ }
122
+
123
+ ::file-selector-button {
124
+ box-sizing: border-box;
125
+ border: 0 solid;
126
+ margin: 0;
127
+ padding: 0;
128
+ }
129
+
130
+ html, :host {
131
+ -webkit-text-size-adjust: 100%;
132
+ tab-size: 4;
133
+ line-height: 1.5;
134
+ 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");
135
+ font-feature-settings: var(--default-font-feature-settings, normal);
136
+ font-variation-settings: var(--default-font-variation-settings, normal);
137
+ -webkit-tap-highlight-color: transparent;
138
+ }
139
+
140
+ hr {
141
+ height: 0;
142
+ color: inherit;
143
+ border-top-width: 1px;
144
+ }
145
+
146
+ abbr:where([title]) {
147
+ -webkit-text-decoration: underline dotted;
148
+ text-decoration: underline dotted;
149
+ }
150
+
151
+ h1, h2, h3, h4, h5, h6 {
152
+ font-size: inherit;
153
+ font-weight: inherit;
154
+ }
155
+
156
+ a {
157
+ color: inherit;
158
+ -webkit-text-decoration: inherit;
159
+ -webkit-text-decoration: inherit;
160
+ -webkit-text-decoration: inherit;
161
+ text-decoration: inherit;
162
+ }
163
+
164
+ b, strong {
165
+ font-weight: bolder;
166
+ }
167
+
168
+ code, kbd, samp, pre {
169
+ font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
170
+ font-feature-settings: var(--default-mono-font-feature-settings, normal);
171
+ font-variation-settings: var(--default-mono-font-variation-settings, normal);
172
+ font-size: 1em;
173
+ }
174
+
175
+ small {
176
+ font-size: 80%;
177
+ }
178
+
179
+ sub, sup {
180
+ vertical-align: baseline;
181
+ font-size: 75%;
182
+ line-height: 0;
183
+ position: relative;
184
+ }
185
+
186
+ sub {
187
+ bottom: -.25em;
188
+ }
189
+
190
+ sup {
191
+ top: -.5em;
192
+ }
193
+
194
+ table {
195
+ text-indent: 0;
196
+ border-color: inherit;
197
+ border-collapse: collapse;
198
+ }
199
+
200
+ :-moz-focusring {
201
+ outline: auto;
202
+ }
203
+
204
+ progress {
205
+ vertical-align: baseline;
206
+ }
207
+
208
+ summary {
209
+ display: list-item;
210
+ }
211
+
212
+ ol, ul, menu {
213
+ list-style: none;
214
+ }
215
+
216
+ img, svg, video, canvas, audio, iframe, embed, object {
217
+ vertical-align: middle;
218
+ display: block;
219
+ }
220
+
221
+ img, video {
222
+ max-width: 100%;
223
+ height: auto;
224
+ }
225
+
226
+ button, input, select, optgroup, textarea {
227
+ font: inherit;
228
+ font-feature-settings: inherit;
229
+ font-variation-settings: inherit;
230
+ letter-spacing: inherit;
231
+ color: inherit;
232
+ opacity: 1;
233
+ background-color: #0000;
234
+ border-radius: 0;
235
+ }
236
+
237
+ ::file-selector-button {
238
+ font: inherit;
239
+ font-feature-settings: inherit;
240
+ font-variation-settings: inherit;
241
+ letter-spacing: inherit;
242
+ color: inherit;
243
+ opacity: 1;
244
+ background-color: #0000;
245
+ border-radius: 0;
246
+ }
247
+
248
+ :where(select:is([multiple], [size])) optgroup {
249
+ font-weight: bolder;
250
+ }
251
+
252
+ :where(select:is([multiple], [size])) optgroup option {
253
+ padding-inline-start: 20px;
254
+ }
255
+
256
+ ::file-selector-button {
257
+ margin-inline-end: 4px;
258
+ }
259
+
260
+ ::placeholder {
261
+ opacity: 1;
262
+ }
263
+
264
+ @supports (not ((-webkit-appearance: -apple-pay-button))) or (contain-intrinsic-size: 1px) {
265
+ ::placeholder {
266
+ color: currentColor;
267
+ }
268
+
269
+ @supports (color: color-mix(in lab, red, red)) {
270
+ ::placeholder {
271
+ color: color-mix(in oklab, currentcolor 50%, transparent);
272
+ }
273
+ }
274
+ }
275
+
276
+ textarea {
277
+ resize: vertical;
278
+ }
279
+
280
+ ::-webkit-search-decoration {
281
+ -webkit-appearance: none;
282
+ }
283
+
284
+ ::-webkit-date-and-time-value {
285
+ min-height: 1lh;
286
+ text-align: inherit;
287
+ }
288
+
289
+ ::-webkit-datetime-edit {
290
+ display: inline-flex;
291
+ }
292
+
293
+ ::-webkit-datetime-edit-fields-wrapper {
294
+ padding: 0;
295
+ }
296
+
297
+ ::-webkit-datetime-edit {
298
+ padding-block: 0;
299
+ }
300
+
301
+ ::-webkit-datetime-edit-year-field {
302
+ padding-block: 0;
303
+ }
304
+
305
+ ::-webkit-datetime-edit-month-field {
306
+ padding-block: 0;
307
+ }
308
+
309
+ ::-webkit-datetime-edit-day-field {
310
+ padding-block: 0;
311
+ }
312
+
313
+ ::-webkit-datetime-edit-hour-field {
314
+ padding-block: 0;
315
+ }
316
+
317
+ ::-webkit-datetime-edit-minute-field {
318
+ padding-block: 0;
319
+ }
320
+
321
+ ::-webkit-datetime-edit-second-field {
322
+ padding-block: 0;
323
+ }
324
+
325
+ ::-webkit-datetime-edit-millisecond-field {
326
+ padding-block: 0;
327
+ }
328
+
329
+ ::-webkit-datetime-edit-meridiem-field {
330
+ padding-block: 0;
331
+ }
332
+
333
+ ::-webkit-calendar-picker-indicator {
334
+ line-height: 1;
335
+ }
336
+
337
+ :-moz-ui-invalid {
338
+ box-shadow: none;
339
+ }
340
+
341
+ button, input:where([type="button"], [type="reset"], [type="submit"]) {
342
+ appearance: button;
343
+ }
344
+
345
+ ::file-selector-button {
346
+ appearance: button;
347
+ }
348
+
349
+ ::-webkit-inner-spin-button {
350
+ height: auto;
351
+ }
352
+
353
+ ::-webkit-outer-spin-button {
354
+ height: auto;
355
+ }
356
+
357
+ [hidden]:where(:not([hidden="until-found"])) {
358
+ display: none !important;
359
+ }
360
+
361
+ @supports (color: color-mix(in lab, red, red)) {
362
+ * {
363
+ outline-color: color-mix(in oklab, var(--ring) 50%, transparent);
364
+ }
365
+ }
366
+
367
+ * {
368
+ border-color: var(--border);
369
+ outline-color: var(--ring);
370
+ }
371
+
372
+ @supports (color: color-mix(in lab, red, red)) {
373
+ * {
374
+ outline-color: color-mix(in oklab, var(--ring) 50%, transparent);
375
+ }
376
+ }
377
+ }
378
+
379
+ @layer components, utilities;
380
+
381
+ @property --tw-animation-delay {
382
+ syntax: "*";
383
+ inherits: false;
384
+ initial-value: 0s;
385
+ }
386
+
387
+ @property --tw-animation-direction {
388
+ syntax: "*";
389
+ inherits: false;
390
+ initial-value: normal;
391
+ }
392
+
393
+ @property --tw-animation-duration {
394
+ syntax: "*";
395
+ inherits: false
396
+ }
397
+
398
+ @property --tw-animation-fill-mode {
399
+ syntax: "*";
400
+ inherits: false;
401
+ initial-value: none;
402
+ }
403
+
404
+ @property --tw-animation-iteration-count {
405
+ syntax: "*";
406
+ inherits: false;
407
+ initial-value: 1;
408
+ }
409
+
410
+ @property --tw-enter-blur {
411
+ syntax: "*";
412
+ inherits: false;
413
+ initial-value: 0;
414
+ }
415
+
416
+ @property --tw-enter-opacity {
417
+ syntax: "*";
418
+ inherits: false;
419
+ initial-value: 1;
420
+ }
421
+
422
+ @property --tw-enter-rotate {
423
+ syntax: "*";
424
+ inherits: false;
425
+ initial-value: 0;
426
+ }
427
+
428
+ @property --tw-enter-scale {
429
+ syntax: "*";
430
+ inherits: false;
431
+ initial-value: 1;
432
+ }
433
+
434
+ @property --tw-enter-translate-x {
435
+ syntax: "*";
436
+ inherits: false;
437
+ initial-value: 0;
438
+ }
439
+
440
+ @property --tw-enter-translate-y {
441
+ syntax: "*";
442
+ inherits: false;
443
+ initial-value: 0;
444
+ }
445
+
446
+ @property --tw-exit-blur {
447
+ syntax: "*";
448
+ inherits: false;
449
+ initial-value: 0;
450
+ }
451
+
452
+ @property --tw-exit-opacity {
453
+ syntax: "*";
454
+ inherits: false;
455
+ initial-value: 1;
456
+ }
457
+
458
+ @property --tw-exit-rotate {
459
+ syntax: "*";
460
+ inherits: false;
461
+ initial-value: 0;
462
+ }
463
+
464
+ @property --tw-exit-scale {
465
+ syntax: "*";
466
+ inherits: false;
467
+ initial-value: 1;
468
+ }
469
+
470
+ @property --tw-exit-translate-x {
471
+ syntax: "*";
472
+ inherits: false;
473
+ initial-value: 0;
474
+ }
475
+
476
+ @property --tw-exit-translate-y {
477
+ syntax: "*";
478
+ inherits: false;
479
+ initial-value: 0;
480
+ }
481
+
482
+ html {
483
+ -webkit-text-size-adjust: 100%;
484
+ line-height: 1.15;
485
+ }
486
+
487
+ body {
488
+ margin: 0;
489
+ }
490
+
491
+ main {
492
+ display: block;
493
+ }
494
+
495
+ h1 {
496
+ margin: .67em 0;
497
+ font-size: 2em;
498
+ }
499
+
500
+ hr {
501
+ box-sizing: content-box;
502
+ height: 0;
503
+ overflow: visible;
504
+ }
505
+
506
+ pre {
507
+ font-family: monospace;
508
+ font-size: 1em;
509
+ }
510
+
511
+ a {
512
+ background-color: #0000;
513
+ }
514
+
515
+ abbr[title] {
516
+ border-bottom: none;
517
+ -webkit-text-decoration: underline dotted;
518
+ text-decoration: underline dotted;
519
+ }
520
+
521
+ b, strong {
522
+ font-weight: bolder;
523
+ }
524
+
525
+ code, kbd, samp {
526
+ font-family: monospace;
527
+ font-size: 1em;
528
+ }
529
+
530
+ small {
531
+ font-size: 80%;
532
+ }
533
+
534
+ sub, sup {
535
+ vertical-align: baseline;
536
+ font-size: 75%;
537
+ line-height: 0;
538
+ position: relative;
539
+ }
540
+
541
+ sub {
542
+ bottom: -.25em;
543
+ }
544
+
545
+ sup {
546
+ top: -.5em;
547
+ }
548
+
549
+ img {
550
+ border-style: none;
551
+ }
552
+
553
+ button, input, optgroup, select, textarea {
554
+ margin: 0;
555
+ font-family: inherit;
556
+ font-size: 100%;
557
+ line-height: 1.15;
558
+ }
559
+
560
+ button, input {
561
+ overflow: visible;
562
+ }
563
+
564
+ button, select {
565
+ text-transform: none;
566
+ }
567
+
568
+ button, [type="button"], [type="reset"], [type="submit"] {
569
+ -webkit-appearance: button;
570
+ }
571
+
572
+ button::-moz-focus-inner {
573
+ border-style: none;
574
+ padding: 0;
575
+ }
576
+
577
+ [type="button"]::-moz-focus-inner {
578
+ border-style: none;
579
+ padding: 0;
580
+ }
581
+
582
+ [type="reset"]::-moz-focus-inner {
583
+ border-style: none;
584
+ padding: 0;
585
+ }
586
+
587
+ [type="submit"]::-moz-focus-inner {
588
+ border-style: none;
589
+ padding: 0;
590
+ }
591
+
592
+ button:-moz-focusring {
593
+ outline: 1px dotted buttontext;
594
+ }
595
+
596
+ [type="button"]:-moz-focusring {
597
+ outline: 1px dotted buttontext;
598
+ }
599
+
600
+ [type="reset"]:-moz-focusring {
601
+ outline: 1px dotted buttontext;
602
+ }
603
+
604
+ [type="submit"]:-moz-focusring {
605
+ outline: 1px dotted buttontext;
606
+ }
607
+
608
+ fieldset {
609
+ padding: .35em .75em .625em;
610
+ }
611
+
612
+ legend {
613
+ box-sizing: border-box;
614
+ color: inherit;
615
+ white-space: normal;
616
+ max-width: 100%;
617
+ padding: 0;
618
+ display: table;
619
+ }
620
+
621
+ progress {
622
+ vertical-align: baseline;
623
+ }
624
+
625
+ textarea {
626
+ overflow: auto;
627
+ }
628
+
629
+ [type="checkbox"], [type="radio"] {
630
+ box-sizing: border-box;
631
+ padding: 0;
632
+ }
633
+
634
+ [type="number"]::-webkit-inner-spin-button {
635
+ height: auto;
636
+ }
637
+
638
+ [type="number"]::-webkit-outer-spin-button {
639
+ height: auto;
640
+ }
641
+
642
+ [type="search"] {
643
+ -webkit-appearance: textfield;
644
+ outline-offset: -2px;
645
+ }
646
+
647
+ [type="search"]::-webkit-search-decoration {
648
+ -webkit-appearance: none;
649
+ }
650
+
651
+ ::-webkit-file-upload-button {
652
+ -webkit-appearance: button;
653
+ font: inherit;
654
+ }
655
+
656
+ details {
657
+ display: block;
658
+ }
659
+
660
+ summary {
661
+ display: list-item;
662
+ }
663
+
664
+ template, [hidden] {
665
+ display: none;
666
+ }
667
+
668
+ :root {
669
+ --border: oklch(92.2% 0 0);
670
+ --main-accent-color: #ac5331;
671
+ --svg-dark: #282828;
672
+ --background-grey: #e5e6ea;
673
+ --main-font-family: "Poppins";
674
+ --grey-text-color: #c2c2c2;
675
+ --label-bg: #f8f9fa;
676
+ --sm-padding: 20px;
677
+ --padding: 8px;
678
+ --sidebar-bg: #fff;
679
+ --sidebar-overlay: #00000073;
680
+ --sidebar-transition: .25s cubic-bezier(.2, .8, .2, 1);
681
+ --sidebar-width: 560px;
682
+ --sidebar-shadow: 0 8px 30px #00000026;
683
+ --sidebar-padding: 20px 20px;
684
+ --radius: .625rem;
685
+ --background: oklch(100% 0 0);
686
+ --foreground: oklch(14.5% 0 0);
687
+ --card: oklch(100% 0 0);
688
+ --card-foreground: oklch(14.5% 0 0);
689
+ --popover: oklch(100% 0 0);
690
+ --popover-foreground: oklch(14.5% 0 0);
691
+ --primary: #b65633;
692
+ --primary-foreground: oklch(98.5% 0 0);
693
+ --secondary: #8e8d70;
694
+ --secondary-foreground: oklch(20.5% 0 0);
695
+ --muted: oklch(97% 0 0);
696
+ --muted-foreground: oklch(55.6% 0 0);
697
+ --accent: oklch(97% 0 0);
698
+ --accent-foreground: oklch(20.5% 0 0);
699
+ --destructive: oklch(57.7% .245 27.325);
700
+ --input: oklch(92.2% 0 0);
701
+ --ring: oklch(70.8% 0 0);
702
+ --link: #62603f;
703
+ --chart-1: oklch(64.6% .222 41.116);
704
+ --chart-2: oklch(60% .118 184.704);
705
+ --chart-3: oklch(39.8% .07 227.392);
706
+ --chart-4: oklch(82.8% .189 84.429);
707
+ --chart-5: oklch(76.9% .188 70.08);
708
+ --product-name-font-size: 3.2rem;
709
+ --bg-accordion: #f0ece7;
710
+ --border-accordion: #d9d9d9;
711
+ --color-black: #282828;
712
+ --white: #fff;
713
+ --sidebar: oklch(98.5% 0 0);
714
+ --sidebar-foreground: oklch(14.5% 0 0);
715
+ --sidebar-primary: oklch(20.5% 0 0);
716
+ --sidebar-primary-foreground: oklch(98.5% 0 0);
717
+ --sidebar-accent: oklch(97% 0 0);
718
+ --sidebar-accent-foreground: oklch(20.5% 0 0);
719
+ --sidebar-border: oklch(92.2% 0 0);
720
+ --sidebar-ring: oklch(70.8% 0 0);
721
+ }
722
+
723
+ #root-container .pointer-events-auto {
724
+ pointer-events: auto;
725
+ }
726
+
727
+ #root-container .pointer-events-none {
728
+ pointer-events: none;
729
+ }
730
+
731
+ #root-container .visible {
732
+ visibility: visible;
733
+ }
734
+
735
+ #root-container .sr-only {
736
+ clip-path: inset(50%);
737
+ white-space: nowrap;
738
+ border-width: 0;
739
+ width: 1px;
740
+ height: 1px;
741
+ margin: -1px;
742
+ padding: 0;
743
+ position: absolute;
744
+ overflow: hidden;
745
+ }
746
+
747
+ #root-container .absolute {
748
+ position: absolute;
749
+ }
750
+
751
+ #root-container .fixed {
752
+ position: fixed;
753
+ }
754
+
755
+ #root-container .relative {
756
+ position: relative;
757
+ }
758
+
759
+ #root-container .static {
760
+ position: static;
761
+ }
762
+
763
+ #root-container .inset-0 {
764
+ inset: calc(var(--spacing) * 0);
765
+ }
766
+
767
+ #root-container .top-0 {
768
+ top: calc(var(--spacing) * 0);
769
+ }
770
+
771
+ #root-container .top-1\/2 {
772
+ top: 50%;
773
+ }
774
+
775
+ #root-container .top-2 {
776
+ top: calc(var(--spacing) * 2);
777
+ }
778
+
779
+ #root-container .top-4 {
780
+ top: calc(var(--spacing) * 4);
781
+ }
782
+
783
+ #root-container .top-\[20rem\] {
784
+ top: 20rem;
785
+ }
786
+
787
+ #root-container .top-\[50\%\] {
788
+ top: 50%;
789
+ }
790
+
791
+ #root-container .right-0 {
792
+ right: calc(var(--spacing) * 0);
793
+ }
794
+
795
+ #root-container .right-2 {
796
+ right: calc(var(--spacing) * 2);
797
+ }
798
+
799
+ #root-container .right-3 {
800
+ right: calc(var(--spacing) * 3);
801
+ }
802
+
803
+ #root-container .right-4 {
804
+ right: calc(var(--spacing) * 4);
805
+ }
806
+
807
+ #root-container .right-\[-20px\] {
808
+ right: -20px;
809
+ }
810
+
811
+ #root-container .-bottom-\[10px\] {
812
+ bottom: -10px;
813
+ }
814
+
815
+ #root-container .left-\[50\%\] {
816
+ left: 50%;
817
+ }
818
+
819
+ #root-container .z-50 {
820
+ z-index: 50;
821
+ }
822
+
823
+ #root-container .z-150 {
824
+ z-index: 150;
825
+ }
826
+
827
+ #root-container .z-10000 {
828
+ z-index: 10000;
829
+ }
830
+
831
+ #root-container .z-10001 {
832
+ z-index: 10001;
833
+ }
834
+
835
+ #root-container .z-99999999999999 {
836
+ z-index: 2147483647;
837
+ }
838
+
839
+ #root-container .z-\[99\] {
840
+ z-index: 99;
841
+ }
842
+
843
+ #root-container .z-\[100\] {
844
+ z-index: 100;
845
+ }
846
+
847
+ #root-container .z-\[9999999999\] {
848
+ z-index: 2147483647;
849
+ }
850
+
851
+ #root-container .container {
852
+ width: 100%;
853
+ }
854
+
855
+ @media (min-width: 320px) {
856
+ #root-container .container {
857
+ max-width: 320px;
858
+ }
859
+ }
860
+
861
+ @media (min-width: 375px) {
862
+ #root-container .container {
863
+ max-width: 375px;
864
+ }
865
+ }
866
+
867
+ @media (min-width: 425px) {
868
+ #root-container .container {
869
+ max-width: 425px;
870
+ }
871
+ }
872
+
873
+ @media (min-width: 40rem) {
874
+ #root-container .container {
875
+ max-width: 40rem;
876
+ }
877
+ }
878
+
879
+ @media (min-width: 48rem) {
880
+ #root-container .container {
881
+ max-width: 48rem;
882
+ }
883
+ }
884
+
885
+ @media (min-width: 64rem) {
886
+ #root-container .container {
887
+ max-width: 64rem;
888
+ }
889
+ }
890
+
891
+ @media (min-width: 80rem) {
892
+ #root-container .container {
893
+ max-width: 80rem;
894
+ }
895
+ }
896
+
897
+ @media (min-width: 96rem) {
898
+ #root-container .container {
899
+ max-width: 96rem;
900
+ }
901
+ }
902
+
903
+ #root-container .m-0\! {
904
+ margin: calc(var(--spacing) * 0) !important;
905
+ }
906
+
907
+ #root-container .m-2 {
908
+ margin: calc(var(--spacing) * 2);
909
+ }
910
+
911
+ #root-container .m-\[2px\] {
912
+ margin: 2px;
913
+ }
914
+
915
+ #root-container .m-auto {
916
+ margin: auto;
917
+ }
918
+
919
+ #root-container .mt-2 {
920
+ margin-top: calc(var(--spacing) * 2);
921
+ }
922
+
923
+ #root-container .mr-1 {
924
+ margin-right: calc(var(--spacing) * 1);
925
+ }
926
+
927
+ #root-container .mb-2 {
928
+ margin-bottom: calc(var(--spacing) * 2);
929
+ }
930
+
931
+ #root-container .mb-4 {
932
+ margin-bottom: calc(var(--spacing) * 4);
933
+ }
934
+
935
+ #root-container .mb-\[4px\] {
936
+ margin-bottom: 4px;
937
+ }
938
+
939
+ #root-container .mb-\[12px\] {
940
+ margin-bottom: 12px;
941
+ }
942
+
943
+ #root-container .ml-2 {
944
+ margin-left: calc(var(--spacing) * 2);
945
+ }
946
+
947
+ #root-container .block {
948
+ display: block;
949
+ }
950
+
951
+ #root-container .block\! {
952
+ display: block !important;
953
+ }
954
+
955
+ #root-container .flex {
956
+ display: flex;
957
+ }
958
+
959
+ #root-container .flex\! {
960
+ display: flex !important;
961
+ }
962
+
963
+ #root-container .grid {
964
+ display: grid;
965
+ }
966
+
967
+ #root-container .hidden {
968
+ display: none;
969
+ }
970
+
971
+ #root-container .hidden\! {
972
+ display: none !important;
973
+ }
974
+
975
+ #root-container .inline-flex {
976
+ display: inline-flex;
977
+ }
978
+
979
+ #root-container .aspect-square {
980
+ aspect-ratio: 1;
981
+ }
982
+
983
+ #root-container .aspect-video {
984
+ aspect-ratio: var(--aspect-video);
985
+ }
986
+
987
+ #root-container .size-3 {
988
+ width: calc(var(--spacing) * 3);
989
+ height: calc(var(--spacing) * 3);
990
+ }
991
+
992
+ #root-container .size-4 {
993
+ width: calc(var(--spacing) * 4);
994
+ height: calc(var(--spacing) * 4);
995
+ }
996
+
997
+ #root-container .size-5 {
998
+ width: calc(var(--spacing) * 5);
999
+ height: calc(var(--spacing) * 5);
1000
+ }
1001
+
1002
+ #root-container .size-6 {
1003
+ width: calc(var(--spacing) * 6);
1004
+ height: calc(var(--spacing) * 6);
1005
+ }
1006
+
1007
+ #root-container .h-0 {
1008
+ height: calc(var(--spacing) * 0);
1009
+ }
1010
+
1011
+ #root-container .h-2 {
1012
+ height: calc(var(--spacing) * 2);
1013
+ }
1014
+
1015
+ #root-container .h-3 {
1016
+ height: calc(var(--spacing) * 3);
1017
+ }
1018
+
1019
+ #root-container .h-3\.5 {
1020
+ height: calc(var(--spacing) * 3.5);
1021
+ }
1022
+
1023
+ #root-container .h-4 {
1024
+ height: calc(var(--spacing) * 4);
1025
+ }
1026
+
1027
+ #root-container .h-5 {
1028
+ height: calc(var(--spacing) * 5);
1029
+ }
1030
+
1031
+ #root-container .h-8 {
1032
+ height: calc(var(--spacing) * 8);
1033
+ }
1034
+
1035
+ #root-container .h-\[8px\] {
1036
+ height: 8px;
1037
+ }
1038
+
1039
+ #root-container .h-\[12px\] {
1040
+ height: 12px;
1041
+ }
1042
+
1043
+ #root-container .h-\[16px\] {
1044
+ height: 16px;
1045
+ }
1046
+
1047
+ #root-container .h-\[20px\] {
1048
+ height: 20px;
1049
+ }
1050
+
1051
+ #root-container .h-\[30px\] {
1052
+ height: 30px;
1053
+ }
1054
+
1055
+ #root-container .h-\[36px\] {
1056
+ height: 36px;
1057
+ }
1058
+
1059
+ #root-container .h-\[40px\] {
1060
+ height: 40px;
1061
+ }
1062
+
1063
+ #root-container .h-\[64px\] {
1064
+ height: 64px;
1065
+ }
1066
+
1067
+ #root-container .h-\[64px\]\! {
1068
+ height: 64px !important;
1069
+ }
1070
+
1071
+ #root-container .h-\[100dvh\] {
1072
+ height: 100dvh;
1073
+ }
1074
+
1075
+ #root-container .h-\[200px\] {
1076
+ height: 200px;
1077
+ }
1078
+
1079
+ #root-container .h-\[768px\] {
1080
+ height: 768px;
1081
+ }
1082
+
1083
+ #root-container .h-auto {
1084
+ height: auto;
1085
+ }
1086
+
1087
+ #root-container .h-full {
1088
+ height: 100%;
1089
+ }
1090
+
1091
+ #root-container .h-full\! {
1092
+ height: 100% !important;
1093
+ }
1094
+
1095
+ #root-container .max-h-0 {
1096
+ max-height: calc(var(--spacing) * 0);
1097
+ }
1098
+
1099
+ #root-container .max-h-75 {
1100
+ max-height: calc(var(--spacing) * 75);
1101
+ }
1102
+
1103
+ #root-container .max-h-80 {
1104
+ max-height: calc(var(--spacing) * 80);
1105
+ }
1106
+
1107
+ #root-container .max-h-\[80vh\] {
1108
+ max-height: 80vh;
1109
+ }
1110
+
1111
+ #root-container .max-h-\[90vh\] {
1112
+ max-height: 90vh;
1113
+ }
1114
+
1115
+ #root-container .max-h-\[200px\] {
1116
+ max-height: 200px;
1117
+ }
1118
+
1119
+ #root-container .min-h-0 {
1120
+ min-height: calc(var(--spacing) * 0);
1121
+ }
1122
+
1123
+ #root-container .min-h-9 {
1124
+ min-height: calc(var(--spacing) * 9);
1125
+ }
1126
+
1127
+ #root-container .w-0 {
1128
+ width: calc(var(--spacing) * 0);
1129
+ }
1130
+
1131
+ #root-container .w-8 {
1132
+ width: calc(var(--spacing) * 8);
1133
+ }
1134
+
1135
+ #root-container .w-64 {
1136
+ width: calc(var(--spacing) * 64);
1137
+ }
1138
+
1139
+ #root-container .w-72 {
1140
+ width: calc(var(--spacing) * 72);
1141
+ }
1142
+
1143
+ #root-container .w-80 {
1144
+ width: calc(var(--spacing) * 80);
1145
+ }
1146
+
1147
+ #root-container .w-\[8px\] {
1148
+ width: 8px;
1149
+ }
1150
+
1151
+ #root-container .w-\[12px\] {
1152
+ width: 12px;
1153
+ }
1154
+
1155
+ #root-container .w-\[16px\] {
1156
+ width: 16px;
1157
+ }
1158
+
1159
+ #root-container .w-\[20px\] {
1160
+ width: 20px;
1161
+ }
1162
+
1163
+ #root-container .w-\[30px\] {
1164
+ width: 30px;
1165
+ }
1166
+
1167
+ #root-container .w-\[40px\] {
1168
+ width: 40px;
1169
+ }
1170
+
1171
+ #root-container .w-\[64px\] {
1172
+ width: 64px;
1173
+ }
1174
+
1175
+ #root-container .w-\[90px\] {
1176
+ width: 90px;
1177
+ }
1178
+
1179
+ #root-container .w-\[var\(--radix-popover-trigger-width\)\] {
1180
+ width: var(--radix-popover-trigger-width);
1181
+ }
1182
+
1183
+ #root-container .w-auto {
1184
+ width: auto;
1185
+ }
1186
+
1187
+ #root-container .w-full {
1188
+ width: 100%;
1189
+ }
1190
+
1191
+ #root-container .max-w-\[90vw\] {
1192
+ max-width: 90vw;
1193
+ }
1194
+
1195
+ #root-container .max-w-\[154px\] {
1196
+ max-width: 154px;
1197
+ }
1198
+
1199
+ #root-container .max-w-\[300px\] {
1200
+ max-width: 300px;
1201
+ }
1202
+
1203
+ #root-container .max-w-\[calc\(100\%-2rem\)\] {
1204
+ max-width: calc(100% - 2rem);
1205
+ }
1206
+
1207
+ #root-container .max-w-max {
1208
+ max-width: max-content;
1209
+ }
1210
+
1211
+ #root-container .min-w-0 {
1212
+ min-width: calc(var(--spacing) * 0);
1213
+ }
1214
+
1215
+ #root-container .min-w-\[16px\] {
1216
+ min-width: 16px;
1217
+ }
1218
+
1219
+ #root-container .min-w-\[80px\] {
1220
+ min-width: 80px;
1221
+ }
1222
+
1223
+ #root-container .min-w-\[auto\] {
1224
+ min-width: auto;
1225
+ }
1226
+
1227
+ #root-container .flex-1 {
1228
+ flex: 1;
1229
+ }
1230
+
1231
+ #root-container .flex-none {
1232
+ flex: none;
1233
+ }
1234
+
1235
+ #root-container .flex-shrink-0, #root-container .shrink-0 {
1236
+ flex-shrink: 0;
1237
+ }
1238
+
1239
+ #root-container .shrink-0\! {
1240
+ flex-shrink: 0 !important;
1241
+ }
1242
+
1243
+ #root-container .origin-\(--radix-popover-content-transform-origin\) {
1244
+ transform-origin: var(--radix-popover-content-transform-origin);
1245
+ }
1246
+
1247
+ #root-container .translate-x-\[-50\%\] {
1248
+ --tw-translate-x: -50%;
1249
+ translate: var(--tw-translate-x) var(--tw-translate-y);
1250
+ }
1251
+
1252
+ #root-container .-translate-y-1\/2 {
1253
+ --tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
1254
+ translate: var(--tw-translate-x) var(--tw-translate-y);
1255
+ }
1256
+
1257
+ #root-container .-translate-y-4 {
1258
+ --tw-translate-y: calc(var(--spacing) * -4);
1259
+ translate: var(--tw-translate-x) var(--tw-translate-y);
1260
+ }
1261
+
1262
+ #root-container .translate-y-0 {
1263
+ --tw-translate-y: calc(var(--spacing) * 0);
1264
+ translate: var(--tw-translate-x) var(--tw-translate-y);
1265
+ }
1266
+
1267
+ #root-container .translate-y-\[-50\%\] {
1268
+ --tw-translate-y: -50%;
1269
+ translate: var(--tw-translate-x) var(--tw-translate-y);
1270
+ }
1271
+
1272
+ #root-container .rotate-180 {
1273
+ rotate: 180deg;
1274
+ }
1275
+
1276
+ #root-container .rotate-360 {
1277
+ rotate: 360deg;
1278
+ }
1279
+
1280
+ #root-container .transform {
1281
+ transform: var(--tw-rotate-x, ) var(--tw-rotate-y, ) var(--tw-rotate-z, ) var(--tw-skew-x, ) var(--tw-skew-y, );
1282
+ }
1283
+
1284
+ #root-container .transform-gpu {
1285
+ transform: translateZ(0) var(--tw-rotate-x, ) var(--tw-rotate-y, ) var(--tw-rotate-z, ) var(--tw-skew-x, ) var(--tw-skew-y, );
1286
+ }
1287
+
1288
+ #root-container .animate-spin {
1289
+ animation: var(--animate-spin);
1290
+ }
1291
+
1292
+ #root-container .cursor-not-allowed {
1293
+ cursor: not-allowed;
1294
+ }
1295
+
1296
+ #root-container .cursor-pointer {
1297
+ cursor: pointer;
1298
+ }
1299
+
1300
+ #root-container .touch-pan-y {
1301
+ --tw-pan-y: pan-y;
1302
+ touch-action: var(--tw-pan-x, ) var(--tw-pan-y, ) var(--tw-pinch-zoom, );
1303
+ }
1304
+
1305
+ #root-container .resize {
1306
+ resize: both;
1307
+ }
1308
+
1309
+ #root-container .grid-cols-2 {
1310
+ grid-template-columns: repeat(2, minmax(0, 1fr));
1311
+ }
1312
+
1313
+ #root-container .flex-col {
1314
+ flex-direction: column;
1315
+ }
1316
+
1317
+ #root-container .flex-col-reverse {
1318
+ flex-direction: column-reverse;
1319
+ }
1320
+
1321
+ #root-container .flex-row {
1322
+ flex-direction: row;
1323
+ }
1324
+
1325
+ #root-container .flex-row\! {
1326
+ flex-direction: row !important;
1327
+ }
1328
+
1329
+ #root-container .flex-wrap {
1330
+ flex-wrap: wrap;
1331
+ }
1332
+
1333
+ #root-container .items-center {
1334
+ align-items: center;
1335
+ }
1336
+
1337
+ #root-container .items-center\! {
1338
+ align-items: center !important;
1339
+ }
1340
+
1341
+ #root-container .items-start {
1342
+ align-items: flex-start;
1343
+ }
1344
+
1345
+ #root-container .justify-between {
1346
+ justify-content: space-between;
1347
+ }
1348
+
1349
+ #root-container .justify-center {
1350
+ justify-content: center;
1351
+ }
1352
+
1353
+ #root-container .gap-\[4px\] {
1354
+ gap: 4px;
1355
+ }
1356
+
1357
+ #root-container .gap-\[8px\] {
1358
+ gap: 8px;
1359
+ }
1360
+
1361
+ #root-container .gap-\[8px\]\! {
1362
+ gap: 8px !important;
1363
+ }
1364
+
1365
+ #root-container .gap-\[12px\] {
1366
+ gap: 12px;
1367
+ }
1368
+
1369
+ #root-container .gap-\[16px\] {
1370
+ gap: 16px;
1371
+ }
1372
+
1373
+ #root-container .gap-\[16px\]\! {
1374
+ gap: 16px !important;
1375
+ }
1376
+
1377
+ #root-container .gap-\[var\(--sm-padding\)\] {
1378
+ gap: var(--sm-padding);
1379
+ }
1380
+
1381
+ :where(#root-container .space-y-1\.5 > :not(:last-child)) {
1382
+ --tw-space-y-reverse: 0;
1383
+ margin-block-start: calc(calc(var(--spacing) * 1.5) * var(--tw-space-y-reverse));
1384
+ margin-block-end: calc(calc(var(--spacing) * 1.5) * calc(1 - var(--tw-space-y-reverse)));
1385
+ }
1386
+
1387
+ #root-container .truncate {
1388
+ text-overflow: ellipsis;
1389
+ white-space: nowrap;
1390
+ overflow: hidden;
1391
+ }
1392
+
1393
+ #root-container .overflow-hidden {
1394
+ overflow: hidden;
1395
+ }
1396
+
1397
+ #root-container .overflow-x-auto\! {
1398
+ overflow-x: auto !important;
1399
+ }
1400
+
1401
+ #root-container .overflow-y-auto {
1402
+ overflow-y: auto;
1403
+ }
1404
+
1405
+ #root-container .overscroll-contain {
1406
+ overscroll-behavior: contain;
1407
+ }
1408
+
1409
+ #root-container .scroll-smooth {
1410
+ scroll-behavior: smooth;
1411
+ }
1412
+
1413
+ #root-container .rounded {
1414
+ border-radius: .25rem;
1415
+ }
1416
+
1417
+ #root-container .rounded-2xl {
1418
+ border-radius: var(--radius-2xl);
1419
+ }
1420
+
1421
+ #root-container .rounded-\[1rem\] {
1422
+ border-radius: 1rem;
1423
+ }
1424
+
1425
+ #root-container .rounded-\[4px\] {
1426
+ border-radius: 4px;
1427
+ }
1428
+
1429
+ #root-container .rounded-full {
1430
+ border-radius: 3.40282e38px;
1431
+ }
1432
+
1433
+ #root-container .rounded-lg {
1434
+ border-radius: var(--radius);
1435
+ }
1436
+
1437
+ #root-container .rounded-md {
1438
+ border-radius: calc(var(--radius) - 2px);
1439
+ }
1440
+
1441
+ #root-container .rounded-sm {
1442
+ border-radius: calc(var(--radius) - 4px);
1443
+ }
1444
+
1445
+ #root-container .rounded-xl {
1446
+ border-radius: calc(var(--radius) + 4px);
1447
+ }
1448
+
1449
+ #root-container .border {
1450
+ border-style: var(--tw-border-style);
1451
+ border-width: 1px;
1452
+ }
1453
+
1454
+ #root-container .border-y {
1455
+ border-block-style: var(--tw-border-style);
1456
+ border-block-width: 1px;
1457
+ }
1458
+
1459
+ #root-container .border-t {
1460
+ border-top-style: var(--tw-border-style);
1461
+ border-top-width: 1px;
1462
+ }
1463
+
1464
+ #root-container .border-t-\[10px\] {
1465
+ border-top-style: var(--tw-border-style);
1466
+ border-top-width: 10px;
1467
+ }
1468
+
1469
+ #root-container .border-r-\[10px\] {
1470
+ border-right-style: var(--tw-border-style);
1471
+ border-right-width: 10px;
1472
+ }
1473
+
1474
+ #root-container .border-b {
1475
+ border-bottom-style: var(--tw-border-style);
1476
+ border-bottom-width: 1px;
1477
+ }
1478
+
1479
+ #root-container .border-b\! {
1480
+ border-bottom-style: var(--tw-border-style) !important;
1481
+ border-bottom-width: 1px !important;
1482
+ }
1483
+
1484
+ #root-container .border-l-\[10px\] {
1485
+ border-left-style: var(--tw-border-style);
1486
+ border-left-width: 10px;
1487
+ }
1488
+
1489
+ #root-container .border-none {
1490
+ --tw-border-style: none;
1491
+ border-style: none;
1492
+ }
1493
+
1494
+ #root-container .border-solid {
1495
+ --tw-border-style: solid;
1496
+ border-style: solid;
1497
+ }
1498
+
1499
+ #root-container .border-solid\! {
1500
+ --tw-border-style: solid !important;
1501
+ border-style: solid !important;
1502
+ }
1503
+
1504
+ #root-container .border-\[var\(--border\)\] {
1505
+ border-color: var(--border);
1506
+ }
1507
+
1508
+ #root-container .border-\[var\(--border\)\]\! {
1509
+ border-color: var(--border) !important;
1510
+ }
1511
+
1512
+ #root-container .border-\[var\(--main-accent-color\)\] {
1513
+ border-color: var(--main-accent-color);
1514
+ }
1515
+
1516
+ #root-container .border-amber-700 {
1517
+ border-color: var(--color-amber-700);
1518
+ }
1519
+
1520
+ #root-container .border-gray-200 {
1521
+ border-color: var(--color-gray-200);
1522
+ }
1523
+
1524
+ #root-container .border-input {
1525
+ border-color: var(--input);
1526
+ }
1527
+
1528
+ #root-container .border-transparent {
1529
+ border-color: #0000;
1530
+ }
1531
+
1532
+ #root-container .border-r-transparent {
1533
+ border-right-color: #0000;
1534
+ }
1535
+
1536
+ #root-container .border-b-border {
1537
+ border-bottom-color: var(--border);
1538
+ }
1539
+
1540
+ #root-container .border-l-transparent {
1541
+ border-left-color: #0000;
1542
+ }
1543
+
1544
+ #root-container .bg-\[\#000\] {
1545
+ background-color: #000;
1546
+ }
1547
+
1548
+ #root-container .bg-\[var\(--background\)\] {
1549
+ background-color: var(--background);
1550
+ }
1551
+
1552
+ #root-container .bg-\[var\(--background-grey\)\] {
1553
+ background-color: var(--background-grey);
1554
+ }
1555
+
1556
+ #root-container .bg-\[var\(--border\)\] {
1557
+ background-color: var(--border);
1558
+ }
1559
+
1560
+ #root-container .bg-\[var\(--label-bg\)\] {
1561
+ background-color: var(--label-bg);
1562
+ }
1563
+
1564
+ #root-container .bg-\[var\(--main-accent-color\)\] {
1565
+ background-color: var(--main-accent-color);
1566
+ }
1567
+
1568
+ #root-container .bg-\[var\(--sidebar-b\)\] {
1569
+ background-color: var(--sidebar-b);
1570
+ }
1571
+
1572
+ #root-container .bg-\[var\(--sidebar-bg\)\] {
1573
+ background-color: var(--sidebar-bg);
1574
+ }
1575
+
1576
+ #root-container .bg-amber-300 {
1577
+ background-color: var(--color-amber-300);
1578
+ }
1579
+
1580
+ #root-container .bg-black {
1581
+ background-color: var(--color-black);
1582
+ }
1583
+
1584
+ #root-container .bg-black\/30 {
1585
+ background-color: #0000004d;
1586
+ }
1587
+
1588
+ @supports (color: color-mix(in lab, red, red)) {
1589
+ #root-container .bg-black\/30 {
1590
+ background-color: color-mix(in oklab, var(--color-black) 30%, transparent);
1591
+ }
1592
+ }
1593
+
1594
+ #root-container .bg-black\/40 {
1595
+ background-color: #0006;
1596
+ }
1597
+
1598
+ @supports (color: color-mix(in lab, red, red)) {
1599
+ #root-container .bg-black\/40 {
1600
+ background-color: color-mix(in oklab, var(--color-black) 40%, transparent);
1601
+ }
1602
+ }
1603
+
1604
+ #root-container .bg-black\/80 {
1605
+ background-color: #000c;
1606
+ }
1607
+
1608
+ @supports (color: color-mix(in lab, red, red)) {
1609
+ #root-container .bg-black\/80 {
1610
+ background-color: color-mix(in oklab, var(--color-black) 80%, transparent);
1611
+ }
1612
+ }
1613
+
1614
+ #root-container .bg-gray-100 {
1615
+ background-color: var(--color-gray-100);
1616
+ }
1617
+
1618
+ #root-container .bg-gray-200 {
1619
+ background-color: var(--color-gray-200);
1620
+ }
1621
+
1622
+ #root-container .bg-gray-400 {
1623
+ background-color: var(--color-gray-400);
1624
+ }
1625
+
1626
+ #root-container .bg-popover {
1627
+ background-color: var(--popover);
1628
+ }
1629
+
1630
+ #root-container .bg-white {
1631
+ background-color: var(--color-white);
1632
+ }
1633
+
1634
+ #root-container .stroke-\[var\(--svg-dark\)\] {
1635
+ stroke: var(--svg-dark);
1636
+ }
1637
+
1638
+ #root-container .object-cover {
1639
+ object-fit: cover;
1640
+ }
1641
+
1642
+ #root-container .p-0 {
1643
+ padding: calc(var(--spacing) * 0);
1644
+ }
1645
+
1646
+ #root-container .p-1 {
1647
+ padding: calc(var(--spacing) * 1);
1648
+ }
1649
+
1650
+ #root-container .p-2 {
1651
+ padding: calc(var(--spacing) * 2);
1652
+ }
1653
+
1654
+ #root-container .p-4 {
1655
+ padding: calc(var(--spacing) * 4);
1656
+ }
1657
+
1658
+ #root-container .p-\[0\.4rem\] {
1659
+ padding: .4rem;
1660
+ }
1661
+
1662
+ #root-container .p-\[1\.6rem\] {
1663
+ padding: 1.6rem;
1664
+ }
1665
+
1666
+ #root-container .p-\[1\.25rem\] {
1667
+ padding: 1.25rem;
1668
+ }
1669
+
1670
+ #root-container .p-\[var\(--padding\)\] {
1671
+ padding: var(--padding);
1672
+ }
1673
+
1674
+ #root-container .p-\[var\(--sm-padding\)\] {
1675
+ padding: var(--sm-padding);
1676
+ }
1677
+
1678
+ #root-container .p-\[var\(--sm-padding\)\]\! {
1679
+ padding: var(--sm-padding) !important;
1680
+ }
1681
+
1682
+ #root-container .px-2 {
1683
+ padding-inline: calc(var(--spacing) * 2);
1684
+ }
1685
+
1686
+ #root-container .px-3 {
1687
+ padding-inline: calc(var(--spacing) * 3);
1688
+ }
1689
+
1690
+ #root-container .px-4 {
1691
+ padding-inline: calc(var(--spacing) * 4);
1692
+ }
1693
+
1694
+ #root-container .px-\[8px\] {
1695
+ padding-inline: 8px;
1696
+ }
1697
+
1698
+ #root-container .px-\[var\(--sm-padding\)\] {
1699
+ padding-inline: var(--sm-padding);
1700
+ }
1701
+
1702
+ #root-container .py-0\.5 {
1703
+ padding-block: calc(var(--spacing) * .5);
1704
+ }
1705
+
1706
+ #root-container .py-1 {
1707
+ padding-block: calc(var(--spacing) * 1);
1708
+ }
1709
+
1710
+ #root-container .py-2 {
1711
+ padding-block: calc(var(--spacing) * 2);
1712
+ }
1713
+
1714
+ #root-container .py-3 {
1715
+ padding-block: calc(var(--spacing) * 3);
1716
+ }
1717
+
1718
+ #root-container .py-\[8px\] {
1719
+ padding-block: 8px;
1720
+ }
1721
+
1722
+ #root-container .pt-3 {
1723
+ padding-top: calc(var(--spacing) * 3);
1724
+ }
1725
+
1726
+ #root-container .pr-8 {
1727
+ padding-right: calc(var(--spacing) * 8);
1728
+ }
1729
+
1730
+ #root-container .pb-2 {
1731
+ padding-bottom: calc(var(--spacing) * 2);
1732
+ }
1733
+
1734
+ #root-container .text-center {
1735
+ text-align: center;
1736
+ }
1737
+
1738
+ #root-container .text-left {
1739
+ text-align: left;
1740
+ }
1741
+
1742
+ #root-container .text-\[12px\]\/snug {
1743
+ font-size: 12px;
1744
+ line-height: var(--leading-snug);
1745
+ }
1746
+
1747
+ #root-container .text-\[8px\] {
1748
+ font-size: 8px;
1749
+ }
1750
+
1751
+ #root-container .text-\[12px\] {
1752
+ font-size: 12px;
1753
+ }
1754
+
1755
+ #root-container .text-\[14px\] {
1756
+ font-size: 14px;
1757
+ }
1758
+
1759
+ #root-container .text-\[15\.2px\] {
1760
+ font-size: 15.2px;
1761
+ }
1762
+
1763
+ #root-container .text-\[16\.8px\] {
1764
+ font-size: 16.8px;
1765
+ }
1766
+
1767
+ #root-container .text-\[16px\] {
1768
+ font-size: 16px;
1769
+ }
1770
+
1771
+ #root-container .text-\[17\.6px\] {
1772
+ font-size: 17.6px;
1773
+ }
1774
+
1775
+ #root-container .text-\[30px\] {
1776
+ font-size: 30px;
1777
+ }
1778
+
1779
+ #root-container .leading-6 {
1780
+ --tw-leading: calc(var(--spacing) * 6);
1781
+ line-height: calc(var(--spacing) * 6);
1782
+ }
1783
+
1784
+ #root-container .leading-\[1\.6\] {
1785
+ --tw-leading: 1.6;
1786
+ line-height: 1.6;
1787
+ }
1788
+
1789
+ #root-container .leading-\[1\.45\] {
1790
+ --tw-leading: 1.45;
1791
+ line-height: 1.45;
1792
+ }
1793
+
1794
+ #root-container .leading-\[14px\] {
1795
+ --tw-leading: 14px;
1796
+ line-height: 14px;
1797
+ }
1798
+
1799
+ #root-container .leading-\[16px\] {
1800
+ --tw-leading: 16px;
1801
+ line-height: 16px;
1802
+ }
1803
+
1804
+ #root-container .leading-\[20px\] {
1805
+ --tw-leading: 20px;
1806
+ line-height: 20px;
1807
+ }
1808
+
1809
+ #root-container .leading-\[24px\] {
1810
+ --tw-leading: 24px;
1811
+ line-height: 24px;
1812
+ }
1813
+
1814
+ #root-container .leading-none {
1815
+ --tw-leading: 1;
1816
+ line-height: 1;
1817
+ }
1818
+
1819
+ #root-container .font-bold {
1820
+ --tw-font-weight: var(--font-weight-bold);
1821
+ font-weight: var(--font-weight-bold);
1822
+ }
1823
+
1824
+ #root-container .font-medium {
1825
+ --tw-font-weight: var(--font-weight-medium);
1826
+ font-weight: var(--font-weight-medium);
1827
+ }
1828
+
1829
+ #root-container .font-normal {
1830
+ --tw-font-weight: var(--font-weight-normal);
1831
+ font-weight: var(--font-weight-normal);
1832
+ }
1833
+
1834
+ #root-container .font-semibold {
1835
+ --tw-font-weight: var(--font-weight-semibold);
1836
+ font-weight: var(--font-weight-semibold);
1837
+ }
1838
+
1839
+ #root-container .tracking-tight {
1840
+ --tw-tracking: var(--tracking-tight);
1841
+ letter-spacing: var(--tracking-tight);
1842
+ }
1843
+
1844
+ #root-container .whitespace-nowrap {
1845
+ white-space: nowrap;
1846
+ }
1847
+
1848
+ #root-container .text-\[var\(--main-accent-color\)\] {
1849
+ color: var(--main-accent-color);
1850
+ }
1851
+
1852
+ #root-container .text-\[var\(--text\)\] {
1853
+ color: var(--text);
1854
+ }
1855
+
1856
+ #root-container .text-\[var\(--text-muted\)\] {
1857
+ color: var(--text-muted);
1858
+ }
1859
+
1860
+ #root-container .text-amber-700 {
1861
+ color: var(--color-amber-700);
1862
+ }
1863
+
1864
+ #root-container .text-black {
1865
+ color: var(--color-black);
1866
+ }
1867
+
1868
+ #root-container .text-current {
1869
+ color: currentColor;
1870
+ }
1871
+
1872
+ #root-container .text-gray-200 {
1873
+ color: var(--color-gray-200);
1874
+ }
1875
+
1876
+ #root-container .text-gray-400 {
1877
+ color: var(--color-gray-400);
1878
+ }
1879
+
1880
+ #root-container .text-gray-500 {
1881
+ color: var(--color-gray-500);
1882
+ }
1883
+
1884
+ #root-container .text-gray-700 {
1885
+ color: var(--color-gray-700);
1886
+ }
1887
+
1888
+ #root-container .text-gray-800 {
1889
+ color: var(--color-gray-800);
1890
+ }
1891
+
1892
+ #root-container .text-muted-foreground {
1893
+ color: var(--muted-foreground);
1894
+ }
1895
+
1896
+ #root-container .text-popover-foreground {
1897
+ color: var(--popover-foreground);
1898
+ }
1899
+
1900
+ #root-container .text-white {
1901
+ color: var(--color-white);
1902
+ }
1903
+
1904
+ #root-container .capitalize {
1905
+ text-transform: capitalize;
1906
+ }
1907
+
1908
+ #root-container .underline {
1909
+ text-decoration-line: underline;
1910
+ }
1911
+
1912
+ #root-container .placeholder-\[var\(--text-muted\)\]::placeholder {
1913
+ color: var(--text-muted);
1914
+ }
1915
+
1916
+ #root-container .opacity-0 {
1917
+ opacity: 0;
1918
+ }
1919
+
1920
+ #root-container .opacity-60 {
1921
+ opacity: .6;
1922
+ }
1923
+
1924
+ #root-container .opacity-70 {
1925
+ opacity: .7;
1926
+ }
1927
+
1928
+ #root-container .opacity-100 {
1929
+ opacity: 1;
1930
+ }
1931
+
1932
+ #root-container .shadow {
1933
+ --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, #0000001a), 0 1px 2px -1px var(--tw-shadow-color, #0000001a);
1934
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1935
+ }
1936
+
1937
+ #root-container .shadow-\[0_-2px_10px_rgba\(40\,40\,40\,0\.10\)\] {
1938
+ --tw-shadow: 0 -2px 10px var(--tw-shadow-color, #2828281a);
1939
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1940
+ }
1941
+
1942
+ #root-container .shadow-lg {
1943
+ --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, #0000001a), 0 4px 6px -4px var(--tw-shadow-color, #0000001a);
1944
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1945
+ }
1946
+
1947
+ #root-container .shadow-sm {
1948
+ --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, #0000001a), 0 1px 2px -1px var(--tw-shadow-color, #0000001a);
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
+ #root-container .shadow-xl {
1953
+ --tw-shadow: 0 20px 25px -5px var(--tw-shadow-color, #0000001a), 0 8px 10px -6px var(--tw-shadow-color, #0000001a);
1954
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1955
+ }
1956
+
1957
+ #root-container .shadow-xs {
1958
+ --tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, #0000000d);
1959
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1960
+ }
1961
+
1962
+ #root-container .outline-hidden {
1963
+ --tw-outline-style: none;
1964
+ outline-style: none;
1965
+ }
1966
+
1967
+ @media (forced-colors: active) {
1968
+ #root-container .outline-hidden {
1969
+ outline-offset: 2px;
1970
+ outline: 2px solid #0000;
1971
+ }
1972
+ }
1973
+
1974
+ #root-container .filter {
1975
+ 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, );
1976
+ }
1977
+
1978
+ #root-container .backdrop-blur {
1979
+ --tw-backdrop-blur: blur(8px);
1980
+ -webkit-backdrop-filter: var(--tw-backdrop-blur, ) var(--tw-backdrop-brightness, ) var(--tw-backdrop-contrast, ) var(--tw-backdrop-grayscale, ) var(--tw-backdrop-hue-rotate, ) var(--tw-backdrop-invert, ) var(--tw-backdrop-opacity, ) var(--tw-backdrop-saturate, ) var(--tw-backdrop-sepia, );
1981
+ backdrop-filter: var(--tw-backdrop-blur, ) var(--tw-backdrop-brightness, ) var(--tw-backdrop-contrast, ) var(--tw-backdrop-grayscale, ) var(--tw-backdrop-hue-rotate, ) var(--tw-backdrop-invert, ) var(--tw-backdrop-opacity, ) var(--tw-backdrop-saturate, ) var(--tw-backdrop-sepia, );
1982
+ }
1983
+
1984
+ #root-container .transition {
1985
+ 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, content-visibility, overlay, pointer-events;
1986
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1987
+ transition-duration: var(--tw-duration, .2s);
1988
+ }
1989
+
1990
+ #root-container .transition-\[max-height\,opacity\,transform\] {
1991
+ transition-property: max-height, opacity, transform;
1992
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1993
+ transition-duration: var(--tw-duration, .2s);
1994
+ }
1995
+
1996
+ #root-container .transition-all {
1997
+ transition-property: all;
1998
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1999
+ transition-duration: var(--tw-duration, .2s);
2000
+ }
2001
+
2002
+ #root-container .transition-colors {
2003
+ transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
2004
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
2005
+ transition-duration: var(--tw-duration, .2s);
2006
+ }
2007
+
2008
+ #root-container .transition-shadow {
2009
+ transition-property: box-shadow;
2010
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
2011
+ transition-duration: var(--tw-duration, .2s);
2012
+ }
2013
+
2014
+ #root-container .transition-transform {
2015
+ transition-property: transform, translate, scale, rotate;
2016
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
2017
+ transition-duration: var(--tw-duration, .2s);
2018
+ }
2019
+
2020
+ #root-container .transition-none {
2021
+ transition-property: none;
2022
+ }
2023
+
2024
+ #root-container .duration-200 {
2025
+ --tw-duration: .2s;
2026
+ transition-duration: .2s;
2027
+ }
2028
+
2029
+ #root-container .duration-300 {
2030
+ --tw-duration: .3s;
2031
+ transition-duration: .3s;
2032
+ }
2033
+
2034
+ #root-container .duration-500 {
2035
+ --tw-duration: .5s;
2036
+ transition-duration: .5s;
2037
+ }
2038
+
2039
+ #root-container .duration-\[400ms\] {
2040
+ --tw-duration: .4s;
2041
+ transition-duration: .4s;
2042
+ }
2043
+
2044
+ #root-container .ease-in-out {
2045
+ --tw-ease: var(--ease-in-out);
2046
+ transition-timing-function: var(--ease-in-out);
2047
+ }
2048
+
2049
+ #root-container .outline-none {
2050
+ --tw-outline-style: none;
2051
+ outline-style: none;
2052
+ }
2053
+
2054
+ #root-container .select-none {
2055
+ -webkit-user-select: none;
2056
+ user-select: none;
2057
+ }
2058
+
2059
+ #root-container .last\:border-b-0:last-child {
2060
+ border-bottom-style: var(--tw-border-style);
2061
+ border-bottom-width: 0;
2062
+ }
2063
+
2064
+ @media (hover: hover) {
2065
+ #root-container .hover\:border-primary:hover {
2066
+ border-color: var(--primary);
2067
+ }
2068
+
2069
+ #root-container .hover\:bg-gray-50:hover {
2070
+ background-color: var(--color-gray-50);
2071
+ }
2072
+
2073
+ #root-container .hover\:bg-gray-100:hover {
2074
+ background-color: var(--color-gray-100);
2075
+ }
2076
+
2077
+ #root-container .hover\:bg-gray-300:hover {
2078
+ background-color: var(--color-gray-300);
2079
+ }
2080
+
2081
+ #root-container .hover\:bg-secondary:hover {
2082
+ background-color: var(--secondary);
2083
+ }
2084
+
2085
+ #root-container .hover\:text-\[var\(--main-accent-color\)\]:hover {
2086
+ color: var(--main-accent-color);
2087
+ }
2088
+
2089
+ #root-container .hover\:text-primary:hover {
2090
+ color: var(--primary);
2091
+ }
2092
+
2093
+ #root-container .hover\:opacity-90:hover {
2094
+ opacity: .9;
2095
+ }
2096
+
2097
+ #root-container .hover\:brightness-90:hover {
2098
+ --tw-brightness: brightness(90%);
2099
+ 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, );
2100
+ }
2101
+
2102
+ #root-container .hover\:brightness-95:hover {
2103
+ --tw-brightness: brightness(95%);
2104
+ 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, );
2105
+ }
2106
+
2107
+ #root-container .hover\:brightness-110:hover {
2108
+ --tw-brightness: brightness(110%);
2109
+ filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, );
2110
+ }
2111
+ }
2112
+
2113
+ #root-container .focus\:border-\[var\(--main-accent-color\)\]:focus {
2114
+ border-color: var(--main-accent-color);
2115
+ }
2116
+
2117
+ #root-container .focus\:border-primary:focus {
2118
+ border-color: var(--primary);
2119
+ }
2120
+
2121
+ #root-container .focus\:bg-gray-50:focus {
2122
+ background-color: var(--color-gray-50);
2123
+ }
2124
+
2125
+ #root-container .focus\:ring-2:focus {
2126
+ --tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
2127
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
2128
+ }
2129
+
2130
+ #root-container .focus\:ring-\[var\(--main-accent-color\)\]:focus {
2131
+ --tw-ring-color: var(--main-accent-color);
2132
+ }
2133
+
2134
+ #root-container .focus\:ring-offset-2:focus {
2135
+ --tw-ring-offset-width: 2px;
2136
+ --tw-ring-offset-shadow: var(--tw-ring-inset, ) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
2137
+ }
2138
+
2139
+ #root-container .focus\:outline-none:focus {
2140
+ --tw-outline-style: none;
2141
+ outline-style: none;
2142
+ }
2143
+
2144
+ #root-container .focus-visible\:border-ring:focus-visible {
2145
+ border-color: var(--ring);
2146
+ }
2147
+
2148
+ #root-container .focus-visible\:ring-2:focus-visible {
2149
+ --tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
2150
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
2151
+ }
2152
+
2153
+ #root-container .focus-visible\:ring-\[3px\]:focus-visible {
2154
+ --tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
2155
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
2156
+ }
2157
+
2158
+ #root-container .focus-visible\:ring-\[var\(--main-accent-color\)\]:focus-visible {
2159
+ --tw-ring-color: var(--main-accent-color);
2160
+ }
2161
+
2162
+ #root-container .focus-visible\:ring-ring\/50:focus-visible {
2163
+ --tw-ring-color: var(--ring);
2164
+ }
2165
+
2166
+ @supports (color: color-mix(in lab, red, red)) {
2167
+ #root-container .focus-visible\:ring-ring\/50:focus-visible {
2168
+ --tw-ring-color: color-mix(in oklab, var(--ring) 50%, transparent);
2169
+ }
2170
+ }
2171
+
2172
+ #root-container .focus-visible\:outline-none:focus-visible {
2173
+ --tw-outline-style: none;
2174
+ outline-style: none;
2175
+ }
2176
+
2177
+ #root-container .disabled\:pointer-events-none:disabled {
2178
+ pointer-events: none;
2179
+ }
2180
+
2181
+ #root-container .disabled\:cursor-not-allowed:disabled {
2182
+ cursor: not-allowed;
2183
+ }
2184
+
2185
+ #root-container .disabled\:opacity-40:disabled {
2186
+ opacity: .4;
2187
+ }
2188
+
2189
+ #root-container .disabled\:opacity-50:disabled {
2190
+ opacity: .5;
2191
+ }
2192
+
2193
+ #root-container .aria-invalid\:border-destructive[aria-invalid="true"] {
2194
+ border-color: var(--destructive);
2195
+ }
2196
+
2197
+ #root-container .aria-invalid\:ring-destructive\/20[aria-invalid="true"] {
2198
+ --tw-ring-color: var(--destructive);
2199
+ }
2200
+
2201
+ @supports (color: color-mix(in lab, red, red)) {
2202
+ #root-container .aria-invalid\:ring-destructive\/20[aria-invalid="true"] {
2203
+ --tw-ring-color: color-mix(in oklab, var(--destructive) 20%, transparent);
2204
+ }
2205
+ }
2206
+
2207
+ #root-container .data-\[side\=bottom\]\:slide-in-from-top-2[data-side="bottom"] {
2208
+ --tw-enter-translate-y: calc(2 * var(--spacing) * -1);
2209
+ }
2210
+
2211
+ #root-container .data-\[side\=left\]\:slide-in-from-right-2[data-side="left"] {
2212
+ --tw-enter-translate-x: calc(2 * var(--spacing));
2213
+ }
2214
+
2215
+ #root-container .data-\[side\=right\]\:slide-in-from-left-2[data-side="right"] {
2216
+ --tw-enter-translate-x: calc(2 * var(--spacing) * -1);
2217
+ }
2218
+
2219
+ #root-container .data-\[side\=top\]\:slide-in-from-bottom-2[data-side="top"] {
2220
+ --tw-enter-translate-y: calc(2 * var(--spacing));
2221
+ }
2222
+
2223
+ #root-container .data-\[state\=checked\]\:bg-transparent[data-state="checked"] {
2224
+ background-color: #0000;
2225
+ }
2226
+
2227
+ #root-container .data-\[state\=checked\]\:text-black[data-state="checked"] {
2228
+ color: var(--color-black);
2229
+ }
2230
+
2231
+ #root-container .data-\[state\=closed\]\:animate-out[data-state="closed"] {
2232
+ animation: exit var(--tw-animation-duration, var(--tw-duration, .15s)) var(--tw-ease, ease) var(--tw-animation-delay, 0s) var(--tw-animation-iteration-count, 1) var(--tw-animation-direction, normal) var(--tw-animation-fill-mode, none);
2233
+ }
2234
+
2235
+ #root-container .data-\[state\=closed\]\:fade-out-0[data-state="closed"] {
2236
+ --tw-exit-opacity: 0;
2237
+ }
2238
+
2239
+ #root-container .data-\[state\=closed\]\:zoom-out-95[data-state="closed"] {
2240
+ --tw-exit-scale: .95;
2241
+ }
2242
+
2243
+ #root-container .data-\[state\=open\]\:animate-in[data-state="open"] {
2244
+ animation: enter var(--tw-animation-duration, var(--tw-duration, .15s)) var(--tw-ease, ease) var(--tw-animation-delay, 0s) var(--tw-animation-iteration-count, 1) var(--tw-animation-direction, normal) var(--tw-animation-fill-mode, none);
2245
+ }
2246
+
2247
+ #root-container .data-\[state\=open\]\:border-primary[data-state="open"] {
2248
+ border-color: var(--primary);
2249
+ }
2250
+
2251
+ #root-container .data-\[state\=open\]\:fade-in-0[data-state="open"] {
2252
+ --tw-enter-opacity: 0;
2253
+ }
2254
+
2255
+ #root-container .data-\[state\=open\]\:zoom-in-95[data-state="open"] {
2256
+ --tw-enter-scale: .95;
2257
+ }
2258
+
2259
+ @media (min-width: 375px) {
2260
+ #root-container .\32 xs\:min-w-\[100px\] {
2261
+ min-width: 100px;
2262
+ }
2263
+ }
2264
+
2265
+ @media (min-width: 425px) {
2266
+ #root-container .xs\:min-w-\[110px\] {
2267
+ min-width: 110px;
2268
+ }
2269
+ }
2270
+
2271
+ @media (min-width: 40rem) {
2272
+ #root-container .sm\:pointer-events-none {
2273
+ pointer-events: none;
2274
+ }
2275
+
2276
+ #root-container .sm\:right-4 {
2277
+ right: calc(var(--spacing) * 4);
2278
+ }
2279
+
2280
+ #root-container .sm\:block\! {
2281
+ display: block !important;
2282
+ }
2283
+
2284
+ #root-container .sm\:flex {
2285
+ display: flex;
2286
+ }
2287
+
2288
+ #root-container .sm\:hidden\! {
2289
+ display: none !important;
2290
+ }
2291
+
2292
+ #root-container .sm\:h-6 {
2293
+ height: calc(var(--spacing) * 6);
2294
+ }
2295
+
2296
+ #root-container .sm\:h-\[16px\] {
2297
+ height: 16px;
2298
+ }
2299
+
2300
+ #root-container .sm\:h-\[32px\] {
2301
+ height: 32px;
2302
+ }
2303
+
2304
+ #root-container .sm\:h-\[62px\] {
2305
+ height: 62px;
2306
+ }
2307
+
2308
+ #root-container .sm\:h-\[64px\] {
2309
+ height: 64px;
2310
+ }
2311
+
2312
+ #root-container .sm\:h-full {
2313
+ height: 100%;
2314
+ }
2315
+
2316
+ #root-container .sm\:w-6 {
2317
+ width: calc(var(--spacing) * 6);
2318
+ }
2319
+
2320
+ #root-container .sm\:w-\[16px\] {
2321
+ width: 16px;
2322
+ }
2323
+
2324
+ #root-container .sm\:w-\[32px\] {
2325
+ width: 32px;
2326
+ }
2327
+
2328
+ #root-container .sm\:w-\[50\%\] {
2329
+ width: 50%;
2330
+ }
2331
+
2332
+ #root-container .sm\:w-\[62px\] {
2333
+ width: 62px;
2334
+ }
2335
+
2336
+ #root-container .sm\:w-\[64px\] {
2337
+ width: 64px;
2338
+ }
2339
+
2340
+ #root-container .sm\:w-\[102px\] {
2341
+ width: 102px;
2342
+ }
2343
+
2344
+ #root-container .sm\:w-full {
2345
+ width: 100%;
2346
+ }
2347
+
2348
+ #root-container .sm\:max-w-5xl {
2349
+ max-width: var(--container-5xl);
2350
+ }
2351
+
2352
+ #root-container .sm\:max-w-\[360px\] {
2353
+ max-width: 360px;
2354
+ }
2355
+
2356
+ #root-container .sm\:max-w-\[auto\] {
2357
+ max-width: auto;
2358
+ }
2359
+
2360
+ #root-container .sm\:min-w-\[130px\] {
2361
+ min-width: 130px;
2362
+ }
2363
+
2364
+ #root-container .sm\:min-w-\[180px\] {
2365
+ min-width: 180px;
2366
+ }
2367
+
2368
+ #root-container .sm\:min-w-\[250px\] {
2369
+ min-width: 250px;
2370
+ }
2371
+
2372
+ #root-container .sm\:grid-cols-4 {
2373
+ grid-template-columns: repeat(4, minmax(0, 1fr));
2374
+ }
2375
+
2376
+ #root-container .sm\:flex-row {
2377
+ flex-direction: row;
2378
+ }
2379
+
2380
+ #root-container .sm\:items-center {
2381
+ align-items: center;
2382
+ }
2383
+
2384
+ #root-container .sm\:items-end {
2385
+ align-items: flex-end;
2386
+ }
2387
+
2388
+ #root-container .sm\:justify-between {
2389
+ justify-content: space-between;
2390
+ }
2391
+
2392
+ #root-container .sm\:justify-center {
2393
+ justify-content: center;
2394
+ }
2395
+
2396
+ #root-container .sm\:justify-end {
2397
+ justify-content: flex-end;
2398
+ }
2399
+
2400
+ #root-container .sm\:gap-\[12px\] {
2401
+ gap: 12px;
2402
+ }
2403
+
2404
+ #root-container .sm\:gap-\[16px\] {
2405
+ gap: 16px;
2406
+ }
2407
+
2408
+ :where(#root-container .sm\:space-x-2 > :not(:last-child)) {
2409
+ --tw-space-x-reverse: 0;
2410
+ margin-inline-start: calc(calc(var(--spacing) * 2) * var(--tw-space-x-reverse));
2411
+ margin-inline-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-x-reverse)));
2412
+ }
2413
+
2414
+ #root-container .sm\:border-t {
2415
+ border-top-style: var(--tw-border-style);
2416
+ border-top-width: 1px;
2417
+ }
2418
+
2419
+ #root-container .sm\:border-r {
2420
+ border-right-style: var(--tw-border-style);
2421
+ border-right-width: 1px;
2422
+ }
2423
+
2424
+ #root-container .sm\:border-none {
2425
+ --tw-border-style: none;
2426
+ border-style: none;
2427
+ }
2428
+
2429
+ #root-container .sm\:border-solid {
2430
+ --tw-border-style: solid;
2431
+ border-style: solid;
2432
+ }
2433
+
2434
+ #root-container .sm\:border-\[var\(--border\)\] {
2435
+ border-color: var(--border);
2436
+ }
2437
+
2438
+ #root-container .sm\:p-2 {
2439
+ padding: calc(var(--spacing) * 2);
2440
+ }
2441
+
2442
+ #root-container .sm\:p-\[var\(--sm-padding\)\] {
2443
+ padding: var(--sm-padding);
2444
+ }
2445
+
2446
+ #root-container .sm\:px-4 {
2447
+ padding-inline: calc(var(--spacing) * 4);
2448
+ }
2449
+
2450
+ #root-container .sm\:px-\[var\(--sm-padding\)\] {
2451
+ padding-inline: var(--sm-padding);
2452
+ }
2453
+
2454
+ #root-container .sm\:pb-\[130px\] {
2455
+ padding-bottom: 130px;
2456
+ }
2457
+
2458
+ #root-container .sm\:text-\[14px\] {
2459
+ font-size: 14px;
2460
+ }
2461
+
2462
+ #root-container .sm\:opacity-0 {
2463
+ opacity: 0;
2464
+ }
2465
+
2466
+ @media (hover: hover) {
2467
+ #root-container .sm\:group-hover\:pointer-events-auto:is(:where(.group):hover *) {
2468
+ pointer-events: auto;
2469
+ }
2470
+
2471
+ #root-container .sm\:group-hover\:opacity-100:is(:where(.group):hover *) {
2472
+ opacity: 1;
2473
+ }
2474
+ }
2475
+ }
2476
+
2477
+ @media (min-width: 64rem) {
2478
+ #root-container .lg\:visible\! {
2479
+ visibility: visible !important;
2480
+ }
2481
+
2482
+ #root-container .lg\:flex\! {
2483
+ display: flex !important;
2484
+ }
2485
+
2486
+ #root-container .lg\:hidden\! {
2487
+ display: none !important;
2488
+ }
2489
+
2490
+ #root-container .lg\:h-\[64px\] {
2491
+ height: 64px;
2492
+ }
2493
+
2494
+ #root-container .lg\:w-\[50\%\] {
2495
+ width: 50%;
2496
+ }
2497
+
2498
+ #root-container .lg\:w-\[50\%\]\! {
2499
+ width: 50% !important;
2500
+ }
2501
+
2502
+ #root-container .lg\:w-\[64px\] {
2503
+ width: 64px;
2504
+ }
2505
+
2506
+ #root-container .lg\:max-w-\[240px\] {
2507
+ max-width: 240px;
2508
+ }
2509
+
2510
+ #root-container .lg\:max-w-\[382px\] {
2511
+ max-width: 382px;
2512
+ }
2513
+
2514
+ #root-container .lg\:min-w-\[160px\] {
2515
+ min-width: 160px;
2516
+ }
2517
+
2518
+ #root-container .lg\:grid-cols-5 {
2519
+ grid-template-columns: repeat(5, minmax(0, 1fr));
2520
+ }
2521
+
2522
+ #root-container .lg\:grid-cols-6 {
2523
+ grid-template-columns: repeat(6, minmax(0, 1fr));
2524
+ }
2525
+
2526
+ #root-container .lg\:flex-row {
2527
+ flex-direction: row;
2528
+ }
2529
+
2530
+ #root-container .lg\:items-end {
2531
+ align-items: flex-end;
2532
+ }
2533
+
2534
+ #root-container .lg\:justify-between {
2535
+ justify-content: space-between;
2536
+ }
2537
+
2538
+ #root-container .lg\:justify-end {
2539
+ justify-content: flex-end;
2540
+ }
2541
+
2542
+ #root-container .lg\:border-none {
2543
+ --tw-border-style: none;
2544
+ border-style: none;
2545
+ }
2546
+ }
2547
+
2548
+ @media (min-width: 80rem) {
2549
+ #root-container .xl\:w-full\! {
2550
+ width: 100% !important;
2551
+ }
2552
+
2553
+ #root-container .xl\:max-w-\[68\%\]\! {
2554
+ max-width: 68% !important;
2555
+ }
2556
+
2557
+ #root-container .xl\:grid-cols-7 {
2558
+ grid-template-columns: repeat(7, minmax(0, 1fr));
2559
+ }
2560
+
2561
+ #root-container .xl\:grid-cols-8 {
2562
+ grid-template-columns: repeat(8, minmax(0, 1fr));
2563
+ }
2564
+
2565
+ #root-container .xl\:pb-\[130px\] {
2566
+ padding-bottom: 130px;
2567
+ }
2568
+ }
2569
+
2570
+ @media (min-width: 96rem) {
2571
+ #root-container .\32 xl\:grid-cols-9 {
2572
+ grid-template-columns: repeat(9, minmax(0, 1fr));
2573
+ }
2574
+ }
2575
+
2576
+ @media (prefers-color-scheme: dark) {
2577
+ #root-container .dark\:bg-input\/30 {
2578
+ background-color: var(--input);
2579
+ }
2580
+
2581
+ @supports (color: color-mix(in lab, red, red)) {
2582
+ #root-container .dark\:bg-input\/30 {
2583
+ background-color: color-mix(in oklab, var(--input) 30%, transparent);
2584
+ }
2585
+ }
2586
+
2587
+ #root-container .dark\:aria-invalid\:ring-destructive\/40[aria-invalid="true"] {
2588
+ --tw-ring-color: var(--destructive);
2589
+ }
2590
+
2591
+ @supports (color: color-mix(in lab, red, red)) {
2592
+ #root-container .dark\:aria-invalid\:ring-destructive\/40[aria-invalid="true"] {
2593
+ --tw-ring-color: color-mix(in oklab, var(--destructive) 40%, transparent);
2594
+ }
2595
+ }
2596
+ }
2597
+
2598
+ #root-container .\[\&_svg_path\]\:stroke-\[var\(--main-accent-color\)\] svg path {
2599
+ stroke: var(--main-accent-color);
2600
+ }
2601
+
2602
+ #root-container .\[\&_svg_path\]\:stroke-\[var\(--svg-dark\)\] svg path {
2603
+ stroke: var(--svg-dark);
2604
+ }
2605
+
2606
+ #root-container .text-sm {
2607
+ font-size: 14px;
2608
+ }
2609
+
2610
+ #root-container .text-base {
2611
+ font-size: 16px;
2612
+ }
2613
+
2614
+ #root-container .text-lg {
2615
+ font-size: 18px;
2616
+ }
2617
+
2618
+ #root-container .text-xl {
2619
+ font-size: 20px;
2620
+ }
2621
+
2622
+ #root-container .text-2xl {
2623
+ font-size: 24px;
2624
+ }
2625
+
2626
+ #root-container .text-3xl {
2627
+ font-size: 30px;
2628
+ }
2629
+
2630
+ #root-container .text-4xl {
2631
+ font-size: 36px;
2632
+ }
2633
+
2634
+ #root-container .text-5xl {
2635
+ font-size: 48px;
2636
+ }
2637
+
2638
+ #root-container .text-6xl {
2639
+ font-size: 60px;
2640
+ }
2641
+
2642
+ #root-container .text-7xl {
2643
+ font-size: 72px;
2644
+ }
2645
+
2646
+ #root-container .text-8xl {
2647
+ font-size: 96px;
2648
+ }
2649
+
2650
+ #root-container .text-9xl {
2651
+ font-size: 128px;
2652
+ }
2653
+
2654
+ #root-container .Toastify__toast {
2655
+ background: #1f1f1f;
2656
+ border-radius: 12px;
2657
+ font-size: 14px;
2658
+ }
2659
+
2660
+ #root-container .Toastify__toast--error {
2661
+ color: #fff;
2662
+ background: #2a2a2a;
2663
+ }
2664
+
2665
+ @property --tw-translate-x {
2666
+ syntax: "*";
2667
+ inherits: false;
2668
+ initial-value: 0;
2669
+ }
2670
+
2671
+ @property --tw-translate-y {
2672
+ syntax: "*";
2673
+ inherits: false;
2674
+ initial-value: 0;
2675
+ }
2676
+
2677
+ @property --tw-translate-z {
2678
+ syntax: "*";
2679
+ inherits: false;
2680
+ initial-value: 0;
2681
+ }
2682
+
2683
+ @property --tw-rotate-x {
2684
+ syntax: "*";
2685
+ inherits: false
2686
+ }
2687
+
2688
+ @property --tw-rotate-y {
2689
+ syntax: "*";
2690
+ inherits: false
2691
+ }
2692
+
2693
+ @property --tw-rotate-z {
2694
+ syntax: "*";
2695
+ inherits: false
2696
+ }
2697
+
2698
+ @property --tw-skew-x {
2699
+ syntax: "*";
2700
+ inherits: false
2701
+ }
2702
+
2703
+ @property --tw-skew-y {
2704
+ syntax: "*";
2705
+ inherits: false
2706
+ }
2707
+
2708
+ @property --tw-pan-x {
2709
+ syntax: "*";
2710
+ inherits: false
2711
+ }
2712
+
2713
+ @property --tw-pan-y {
2714
+ syntax: "*";
2715
+ inherits: false
2716
+ }
2717
+
2718
+ @property --tw-pinch-zoom {
2719
+ syntax: "*";
2720
+ inherits: false
2721
+ }
2722
+
2723
+ @property --tw-space-y-reverse {
2724
+ syntax: "*";
2725
+ inherits: false;
2726
+ initial-value: 0;
2727
+ }
2728
+
2729
+ @property --tw-border-style {
2730
+ syntax: "*";
2731
+ inherits: false;
2732
+ initial-value: solid;
2733
+ }
2734
+
2735
+ @property --tw-leading {
2736
+ syntax: "*";
2737
+ inherits: false
2738
+ }
2739
+
2740
+ @property --tw-font-weight {
2741
+ syntax: "*";
2742
+ inherits: false
2743
+ }
2744
+
2745
+ @property --tw-tracking {
2746
+ syntax: "*";
2747
+ inherits: false
2748
+ }
2749
+
2750
+ @property --tw-shadow {
2751
+ syntax: "*";
2752
+ inherits: false;
2753
+ initial-value: 0 0 #0000;
2754
+ }
2755
+
2756
+ @property --tw-shadow-color {
2757
+ syntax: "*";
2758
+ inherits: false
2759
+ }
2760
+
2761
+ @property --tw-shadow-alpha {
2762
+ syntax: "<percentage>";
2763
+ inherits: false;
2764
+ initial-value: 100%;
2765
+ }
2766
+
2767
+ @property --tw-inset-shadow {
2768
+ syntax: "*";
2769
+ inherits: false;
2770
+ initial-value: 0 0 #0000;
2771
+ }
2772
+
2773
+ @property --tw-inset-shadow-color {
2774
+ syntax: "*";
2775
+ inherits: false
2776
+ }
2777
+
2778
+ @property --tw-inset-shadow-alpha {
2779
+ syntax: "<percentage>";
2780
+ inherits: false;
2781
+ initial-value: 100%;
2782
+ }
2783
+
2784
+ @property --tw-ring-color {
2785
+ syntax: "*";
2786
+ inherits: false
2787
+ }
2788
+
2789
+ @property --tw-ring-shadow {
2790
+ syntax: "*";
2791
+ inherits: false;
2792
+ initial-value: 0 0 #0000;
2793
+ }
2794
+
2795
+ @property --tw-inset-ring-color {
2796
+ syntax: "*";
2797
+ inherits: false
2798
+ }
2799
+
2800
+ @property --tw-inset-ring-shadow {
2801
+ syntax: "*";
2802
+ inherits: false;
2803
+ initial-value: 0 0 #0000;
2804
+ }
2805
+
2806
+ @property --tw-ring-inset {
2807
+ syntax: "*";
2808
+ inherits: false
2809
+ }
2810
+
2811
+ @property --tw-ring-offset-width {
2812
+ syntax: "<length>";
2813
+ inherits: false;
2814
+ initial-value: 0;
2815
+ }
2816
+
2817
+ @property --tw-ring-offset-color {
2818
+ syntax: "*";
2819
+ inherits: false;
2820
+ initial-value: #fff;
2821
+ }
2822
+
2823
+ @property --tw-ring-offset-shadow {
2824
+ syntax: "*";
2825
+ inherits: false;
2826
+ initial-value: 0 0 #0000;
2827
+ }
2828
+
2829
+ @property --tw-blur {
2830
+ syntax: "*";
2831
+ inherits: false
2832
+ }
2833
+
2834
+ @property --tw-brightness {
2835
+ syntax: "*";
2836
+ inherits: false
2837
+ }
2838
+
2839
+ @property --tw-contrast {
2840
+ syntax: "*";
2841
+ inherits: false
2842
+ }
2843
+
2844
+ @property --tw-grayscale {
2845
+ syntax: "*";
2846
+ inherits: false
2847
+ }
2848
+
2849
+ @property --tw-hue-rotate {
2850
+ syntax: "*";
2851
+ inherits: false
2852
+ }
2853
+
2854
+ @property --tw-invert {
2855
+ syntax: "*";
2856
+ inherits: false
2857
+ }
2858
+
2859
+ @property --tw-opacity {
2860
+ syntax: "*";
2861
+ inherits: false
2862
+ }
2863
+
2864
+ @property --tw-saturate {
2865
+ syntax: "*";
2866
+ inherits: false
2867
+ }
2868
+
2869
+ @property --tw-sepia {
2870
+ syntax: "*";
2871
+ inherits: false
2872
+ }
2873
+
2874
+ @property --tw-drop-shadow {
2875
+ syntax: "*";
2876
+ inherits: false
2877
+ }
2878
+
2879
+ @property --tw-drop-shadow-color {
2880
+ syntax: "*";
2881
+ inherits: false
2882
+ }
2883
+
2884
+ @property --tw-drop-shadow-alpha {
2885
+ syntax: "<percentage>";
2886
+ inherits: false;
2887
+ initial-value: 100%;
2888
+ }
2889
+
2890
+ @property --tw-drop-shadow-size {
2891
+ syntax: "*";
2892
+ inherits: false
2893
+ }
2894
+
2895
+ @property --tw-backdrop-blur {
2896
+ syntax: "*";
2897
+ inherits: false
2898
+ }
2899
+
2900
+ @property --tw-backdrop-brightness {
2901
+ syntax: "*";
2902
+ inherits: false
2903
+ }
2904
+
2905
+ @property --tw-backdrop-contrast {
2906
+ syntax: "*";
2907
+ inherits: false
2908
+ }
2909
+
2910
+ @property --tw-backdrop-grayscale {
2911
+ syntax: "*";
2912
+ inherits: false
2913
+ }
2914
+
2915
+ @property --tw-backdrop-hue-rotate {
2916
+ syntax: "*";
2917
+ inherits: false
2918
+ }
2919
+
2920
+ @property --tw-backdrop-invert {
2921
+ syntax: "*";
2922
+ inherits: false
2923
+ }
2924
+
2925
+ @property --tw-backdrop-opacity {
2926
+ syntax: "*";
2927
+ inherits: false
2928
+ }
2929
+
2930
+ @property --tw-backdrop-saturate {
2931
+ syntax: "*";
2932
+ inherits: false
2933
+ }
2934
+
2935
+ @property --tw-backdrop-sepia {
2936
+ syntax: "*";
2937
+ inherits: false
2938
+ }
2939
+
2940
+ @property --tw-duration {
2941
+ syntax: "*";
2942
+ inherits: false
2943
+ }
2944
+
2945
+ @property --tw-ease {
2946
+ syntax: "*";
2947
+ inherits: false
2948
+ }
2949
+
2950
+ @property --tw-space-x-reverse {
2951
+ syntax: "*";
2952
+ inherits: false;
2953
+ initial-value: 0;
2954
+ }
2955
+
2956
+ @keyframes spin {
2957
+ to {
2958
+ transform: rotate(360deg);
2959
+ }
2960
+ }
2961
+
2962
+ @keyframes enter {
2963
+ from {
2964
+ opacity: var(--tw-enter-opacity, 1);
2965
+ 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));
2966
+ filter: blur(var(--tw-enter-blur, 0));
2967
+ }
2968
+ }
2969
+
2970
+ @keyframes exit {
2971
+ to {
2972
+ opacity: var(--tw-exit-opacity, 1);
2973
+ 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));
2974
+ filter: blur(var(--tw-exit-blur, 0));
2975
+ }
2976
+ }
2977
+ ._prose_1l8lv_1 {
2978
+ color: #e5e5e5;
2979
+ }
2980
+ ._prose_1l8lv_1 h1,
2981
+ ._prose_1l8lv_1 h2,
2982
+ ._prose_1l8lv_1 h3,
2983
+ ._prose_1l8lv_1 h4,
2984
+ ._prose_1l8lv_1 h5,
2985
+ ._prose_1l8lv_1 h6 {
2986
+ color: #fff;
2987
+ font-size: 1.1rem;
2988
+ font-weight: 600;
2989
+ margin: 0 0 0.3rem 0;
2990
+ }
2991
+
2992
+ ._mdAccordion_1l8lv_16 {
2993
+ border-radius: 0.8rem;
2994
+ margin: 0.8rem 0;
2995
+ background: transparent;
2996
+ color: #fff;
2997
+ }
2998
+ ._mdAccordion_1l8lv_16 > summary {
2999
+ cursor: pointer;
3000
+ font-weight: 600;
3001
+ padding: 0.6rem 1rem;
3002
+ border-radius: 0.8rem;
3003
+ background: #1f1f1f;
3004
+ color: #f5f5f5;
3005
+ transition: background 0.2s ease;
3006
+ }
3007
+ ._mdAccordion_1l8lv_16 > summary:hover {
3008
+ background: #2d2d2d;
3009
+ }
3010
+ ._mdAccordion_1l8lv_16 > summary::-webkit-details-marker {
3011
+ display: none;
3012
+ }
3013
+ ._mdAccordion_1l8lv_16[open] > summary {
3014
+ border-radius: 0.8rem 0.8rem 0 0;
3015
+ background: #2b2b2b;
3016
+ }
3017
+ ._mdAccordion_1l8lv_16[open] > *:not(summary) {
3018
+ border-radius: 0 0 0.8rem 0.8rem;
3019
+ background: #2b2b2b;
3020
+ color: #e5e5e5;
3021
+ line-height: 1.45;
3022
+ }
3023
+
3024
+ ._prose_1l8lv_1 a {
3025
+ color: #4ea1f3;
3026
+ font-weight: 500;
3027
+ text-decoration: none;
3028
+ }
3029
+ ._prose_1l8lv_1 a:hover {
3030
+ color: #76c0ff;
3031
+ text-decoration: underline;
3032
+ }._overlay_1aet8_1 {
3033
+ position: fixed;
3034
+ inset: 0;
3035
+ background: var(--sidebar-overlay);
3036
+ display: flex;
3037
+ z-index: 9999999999999;
3038
+ transition: opacity var(--sidebar-transition);
3039
+ }
3040
+
3041
+ ._panel_1aet8_10 {
3042
+ position: absolute;
3043
+ top: 0;
3044
+ bottom: 0;
3045
+ right: 0;
3046
+ width: var(--sidebar-width);
3047
+ box-shadow: var(--sidebar-shadow);
3048
+ display: flex;
3049
+ flex-direction: column;
3050
+ transition: transform var(--sidebar-transition);
3051
+ transform: translateX(100%);
3052
+ }
3053
+ @media (max-width: 640px) {
3054
+ ._panel_1aet8_10 {
3055
+ width: 500px;
3056
+ }
3057
+ }
3058
+ @media (max-width: 500px) {
3059
+ ._panel_1aet8_10 {
3060
+ width: 400px;
3061
+ }
3062
+ }
3063
+ @media (max-width: 400px) {
3064
+ ._panel_1aet8_10 {
3065
+ width: 320px;
3066
+ }
3067
+ }
3068
+
3069
+ ._enter_1aet8_38 {
3070
+ transform: translateX(0);
3071
+ }
3072
+
3073
+ ._exit_1aet8_42 {
3074
+ transform: translateX(100%);
3075
+ }
3076
+
3077
+ ._title_1aet8_46 {
3078
+ margin: 0;
3079
+ font-size: 16px;
3080
+ line-height: 1.6;
3081
+ font-weight: 500;
3082
+ }
3083
+
3084
+ ._closeBtn_1aet8_53 {
3085
+ width: 30px;
3086
+ height: 30px;
3087
+ background: var(--background-grey);
3088
+ border: none;
3089
+ cursor: pointer;
3090
+ border-radius: 100px;
3091
+ -webkit-border-radius: 100px;
3092
+ -moz-border-radius: 100px;
3093
+ -ms-border-radius: 100px;
3094
+ -o-border-radius: 100px;
3095
+ }
3096
+ ._closeBtn_1aet8_53 svg path {
3097
+ stroke: var(--svg-dark);
3098
+ }
3099
+
3100
+ ._content_1aet8_69 {
3101
+ flex: 1 1 auto;
3102
+ overflow-y: auto;
3103
+ }