breeze_cms 0.9.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (151) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +24 -0
  4. data/Rakefile +6 -0
  5. data/app/assets/config/breeze_manifest.js +2 -0
  6. data/app/assets/images/breeze/breeze_logo.png +0 -0
  7. data/app/assets/images/breeze/card_preview/card_feature_box.png +0 -0
  8. data/app/assets/images/breeze/card_preview/card_feature_normal.png +0 -0
  9. data/app/assets/images/breeze/card_preview/card_full_image.png +0 -0
  10. data/app/assets/images/breeze/card_preview/card_gap_square.png +0 -0
  11. data/app/assets/images/breeze/card_preview/card_large_image.png +0 -0
  12. data/app/assets/images/breeze/card_preview/card_normal_round.png +0 -0
  13. data/app/assets/images/breeze/card_preview/card_normal_square.png +0 -0
  14. data/app/assets/images/breeze/card_preview/card_wide_square.png +0 -0
  15. data/app/assets/images/breeze/card_preview/form_field.png +0 -0
  16. data/app/assets/images/breeze/home.jpg +0 -0
  17. data/app/assets/images/breeze/section_preview/blog_header.png +0 -0
  18. data/app/assets/images/breeze/section_preview/form_section.png +0 -0
  19. data/app/assets/images/breeze/section_preview/section_cards.png +0 -0
  20. data/app/assets/images/breeze/section_preview/section_feature.png +0 -0
  21. data/app/assets/images/breeze/section_preview/section_full_image.png +0 -0
  22. data/app/assets/images/breeze/section_preview/section_full_up.png +0 -0
  23. data/app/assets/images/breeze/section_preview/section_half_image.png +0 -0
  24. data/app/assets/images/breeze/section_preview/section_large_image.png +0 -0
  25. data/app/assets/images/breeze/section_preview/section_news.png +0 -0
  26. data/app/assets/images/breeze/section_preview/section_slider.png +0 -0
  27. data/app/assets/images/breeze/section_preview/section_small_image.png +0 -0
  28. data/app/assets/images/breeze/section_preview/section_spacer.png +0 -0
  29. data/app/assets/images/breeze/section_preview/section_text.png +0 -0
  30. data/app/assets/javascript/breeze_application.js.rb +101 -0
  31. data/app/assets/javascript/marked.js +6 -0
  32. data/app/assets/stylesheets/breeze/breeze.css +3633 -0
  33. data/app/assets/stylesheets/breeze/breeze.email.css +1344 -0
  34. data/app/assets/stylesheets/breeze.tailwind.css +2 -0
  35. data/app/assets/stylesheets/breeze_tailwind_styles.css +21 -0
  36. data/app/assets/stylesheets/tailwind_base.css +3 -0
  37. data/app/controllers/breeze/application_controller.rb +4 -0
  38. data/app/controllers/breeze/breeze_controller.rb +16 -0
  39. data/app/controllers/breeze/cards_controller.rb +58 -0
  40. data/app/controllers/breeze/changes_controller.rb +45 -0
  41. data/app/controllers/breeze/form_controller.rb +67 -0
  42. data/app/controllers/breeze/images_controller.rb +100 -0
  43. data/app/controllers/breeze/pages_controller.rb +66 -0
  44. data/app/controllers/breeze/sections_controller.rb +96 -0
  45. data/app/controllers/breeze/styles_controller.rb +11 -0
  46. data/app/controllers/breeze/translations_controller.rb +56 -0
  47. data/app/controllers/breeze/view_controller.rb +10 -0
  48. data/app/helpers/breeze/breeze_helper.rb +54 -0
  49. data/app/helpers/breeze/cards_helper.rb +11 -0
  50. data/app/helpers/breeze/changes_helper.rb +29 -0
  51. data/app/helpers/breeze/form_helper.rb +5 -0
  52. data/app/helpers/breeze/images_helper.rb +57 -0
  53. data/app/helpers/breeze/options_helper.rb +120 -0
  54. data/app/helpers/breeze/pages_helper.rb +5 -0
  55. data/app/helpers/breeze/sections_helper.rb +14 -0
  56. data/app/helpers/breeze/styles_helper.rb +4 -0
  57. data/app/helpers/breeze/translations_helper.rb +14 -0
  58. data/app/helpers/breeze/view_helper.rb +74 -0
  59. data/app/jobs/breeze/application_job.rb +4 -0
  60. data/app/mailers/breeze/application_mailer.rb +6 -0
  61. data/app/models/breeze/active_base.rb +34 -0
  62. data/app/models/breeze/active_yaml.rb +143 -0
  63. data/app/models/breeze/card.rb +90 -0
  64. data/app/models/breeze/card_style.rb +12 -0
  65. data/app/models/breeze/change_set.rb +58 -0
  66. data/app/models/breeze/image.rb +104 -0
  67. data/app/models/breeze/option_definition.rb +43 -0
  68. data/app/models/breeze/page.rb +97 -0
  69. data/app/models/breeze/page_style.rb +12 -0
  70. data/app/models/breeze/section.rb +137 -0
  71. data/app/models/breeze/section_style.rb +17 -0
  72. data/app/models/breeze/shared_base.rb +20 -0
  73. data/app/models/breeze/style.rb +17 -0
  74. data/app/models/breeze/translation.rb +83 -0
  75. data/app/models/breeze/view_base.rb +134 -0
  76. data/app/views/breeze/cards/index.haml +84 -0
  77. data/app/views/breeze/changes/index.haml +52 -0
  78. data/app/views/breeze/form/_editor.haml +33 -0
  79. data/app/views/breeze/form/form.haml +8 -0
  80. data/app/views/breeze/images/_editor.haml +144 -0
  81. data/app/views/breeze/images/index.haml +83 -0
  82. data/app/views/breeze/images/new.haml +12 -0
  83. data/app/views/breeze/images/show.haml +60 -0
  84. data/app/views/breeze/pages/_sections.rabl +4 -0
  85. data/app/views/breeze/pages/index.haml +49 -0
  86. data/app/views/breeze/pages/show.haml +85 -0
  87. data/app/views/breeze/sections/_option_form_date.haml +4 -0
  88. data/app/views/breeze/sections/_option_form_select.haml +4 -0
  89. data/app/views/breeze/sections/_option_form_text.haml +4 -0
  90. data/app/views/breeze/sections/_overlay.haml +33 -0
  91. data/app/views/breeze/sections/_section.rabl +5 -0
  92. data/app/views/breeze/sections/_sections_pagination.haml +29 -0
  93. data/app/views/breeze/sections/index.haml +88 -0
  94. data/app/views/breeze/sections/new.haml +12 -0
  95. data/app/views/breeze/sections/select_card_template.haml +13 -0
  96. data/app/views/breeze/sections/select_template.haml +15 -0
  97. data/app/views/breeze/sections/show.haml +91 -0
  98. data/app/views/breeze/styles/_options.haml +9 -0
  99. data/app/views/breeze/styles/index.haml +84 -0
  100. data/app/views/breeze/translations/_row.haml +29 -0
  101. data/app/views/breeze/translations/show.haml +79 -0
  102. data/app/views/breeze/view/_blog_header.haml +13 -0
  103. data/app/views/breeze/view/_form_section.haml +21 -0
  104. data/app/views/breeze/view/_section_cards.haml +17 -0
  105. data/app/views/breeze/view/_section_feature.haml +13 -0
  106. data/app/views/breeze/view/_section_full_image.haml +10 -0
  107. data/app/views/breeze/view/_section_full_up.haml +11 -0
  108. data/app/views/breeze/view/_section_half_image.haml +13 -0
  109. data/app/views/breeze/view/_section_large_image.haml +13 -0
  110. data/app/views/breeze/view/_section_news.haml +16 -0
  111. data/app/views/breeze/view/_section_slider.haml +51 -0
  112. data/app/views/breeze/view/_section_small_image.haml +11 -0
  113. data/app/views/breeze/view/_section_spacer.haml +1 -0
  114. data/app/views/breeze/view/_section_text.haml +17 -0
  115. data/app/views/breeze/view/cards/_card_feature_box.haml +13 -0
  116. data/app/views/breeze/view/cards/_card_feature_normal.haml +7 -0
  117. data/app/views/breeze/view/cards/_card_full_image.haml +10 -0
  118. data/app/views/breeze/view/cards/_card_gap_square.haml +11 -0
  119. data/app/views/breeze/view/cards/_card_large_image.haml +6 -0
  120. data/app/views/breeze/view/cards/_card_normal_round.haml +8 -0
  121. data/app/views/breeze/view/cards/_card_normal_square.haml +9 -0
  122. data/app/views/breeze/view/cards/_card_wide_square.haml +8 -0
  123. data/app/views/breeze/view/cards/_form_field.haml +8 -0
  124. data/app/views/breeze/view/elements/_button.haml +4 -0
  125. data/app/views/breeze/view/page.haml +2 -0
  126. data/app/views/layouts/breeze/_header.haml +37 -0
  127. data/app/views/layouts/breeze/_messages.haml +28 -0
  128. data/app/views/layouts/breeze/application.haml +20 -0
  129. data/app/views/layouts/mailer.html.haml +8 -0
  130. data/app/views/layouts/mailer.text.erb +1 -0
  131. data/config/breeze/card_styles.yml +129 -0
  132. data/config/breeze/option_definitions.yml +129 -0
  133. data/config/breeze/page_styles.yml +12 -0
  134. data/config/breeze/section_styles.yml +199 -0
  135. data/config/initializers/breeze.rb +13 -0
  136. data/config/initializers/rabl.rb +31 -0
  137. data/config/initializers/simple_form.rb +212 -0
  138. data/config/routes.rb +40 -0
  139. data/config/tailwind.config.js +17 -0
  140. data/config/tailwind.email.js +14 -0
  141. data/lib/breeze/engine.rb +97 -0
  142. data/lib/breeze/shared_helper.rb +44 -0
  143. data/lib/breeze/version.rb +3 -0
  144. data/lib/breeze.rb +104 -0
  145. data/lib/generators/breeze/install/install_generator.rb +19 -0
  146. data/lib/generators/breeze/install/templates/empty.yml +1 -0
  147. data/lib/generators/breeze/install/templates/initializer.rb +70 -0
  148. data/lib/generators/breeze/update/update_generator.rb +11 -0
  149. data/lib/tasks/condense.rake +60 -0
  150. data/lib/tasks/consistency.rake +84 -0
  151. metadata +371 -0
@@ -0,0 +1,3633 @@
1
+ /*
2
+ ! tailwindcss v3.4.1 | MIT License | https://tailwindcss.com
3
+ */
4
+
5
+ /*
6
+ 1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
7
+ 2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
8
+ */
9
+
10
+ *,
11
+ ::before,
12
+ ::after {
13
+ box-sizing: border-box;
14
+ /* 1 */
15
+ border-width: 0;
16
+ /* 2 */
17
+ border-style: solid;
18
+ /* 2 */
19
+ border-color: #e5e7eb;
20
+ /* 2 */
21
+ }
22
+
23
+ ::before,
24
+ ::after {
25
+ --tw-content: '';
26
+ }
27
+
28
+ /*
29
+ 1. Use a consistent sensible line-height in all browsers.
30
+ 2. Prevent adjustments of font size after orientation changes in iOS.
31
+ 3. Use a more readable tab size.
32
+ 4. Use the user's configured `sans` font-family by default.
33
+ 5. Use the user's configured `sans` font-feature-settings by default.
34
+ 6. Use the user's configured `sans` font-variation-settings by default.
35
+ 7. Disable tap highlights on iOS
36
+ */
37
+
38
+ html,
39
+ :host {
40
+ line-height: 1.5;
41
+ /* 1 */
42
+ -webkit-text-size-adjust: 100%;
43
+ /* 2 */
44
+ -moz-tab-size: 4;
45
+ /* 3 */
46
+ -o-tab-size: 4;
47
+ tab-size: 4;
48
+ /* 3 */
49
+ font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
50
+ /* 4 */
51
+ font-feature-settings: normal;
52
+ /* 5 */
53
+ font-variation-settings: normal;
54
+ /* 6 */
55
+ -webkit-tap-highlight-color: transparent;
56
+ /* 7 */
57
+ }
58
+
59
+ /*
60
+ 1. Remove the margin in all browsers.
61
+ 2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
62
+ */
63
+
64
+ body {
65
+ margin: 0;
66
+ /* 1 */
67
+ line-height: inherit;
68
+ /* 2 */
69
+ }
70
+
71
+ /*
72
+ 1. Add the correct height in Firefox.
73
+ 2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
74
+ 3. Ensure horizontal rules are visible by default.
75
+ */
76
+
77
+ hr {
78
+ height: 0;
79
+ /* 1 */
80
+ color: inherit;
81
+ /* 2 */
82
+ border-top-width: 1px;
83
+ /* 3 */
84
+ }
85
+
86
+ /*
87
+ Add the correct text decoration in Chrome, Edge, and Safari.
88
+ */
89
+
90
+ abbr:where([title]) {
91
+ -webkit-text-decoration: underline dotted;
92
+ text-decoration: underline dotted;
93
+ }
94
+
95
+ /*
96
+ Remove the default font size and weight for headings.
97
+ */
98
+
99
+ h1,
100
+ h2,
101
+ h3,
102
+ h4,
103
+ h5,
104
+ h6 {
105
+ font-size: inherit;
106
+ font-weight: inherit;
107
+ }
108
+
109
+ /*
110
+ Reset links to optimize for opt-in styling instead of opt-out.
111
+ */
112
+
113
+ a {
114
+ color: inherit;
115
+ text-decoration: inherit;
116
+ }
117
+
118
+ /*
119
+ Add the correct font weight in Edge and Safari.
120
+ */
121
+
122
+ b,
123
+ strong {
124
+ font-weight: bolder;
125
+ }
126
+
127
+ /*
128
+ 1. Use the user's configured `mono` font-family by default.
129
+ 2. Use the user's configured `mono` font-feature-settings by default.
130
+ 3. Use the user's configured `mono` font-variation-settings by default.
131
+ 4. Correct the odd `em` font sizing in all browsers.
132
+ */
133
+
134
+ code,
135
+ kbd,
136
+ samp,
137
+ pre {
138
+ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
139
+ /* 1 */
140
+ font-feature-settings: normal;
141
+ /* 2 */
142
+ font-variation-settings: normal;
143
+ /* 3 */
144
+ font-size: 1em;
145
+ /* 4 */
146
+ }
147
+
148
+ /*
149
+ Add the correct font size in all browsers.
150
+ */
151
+
152
+ small {
153
+ font-size: 80%;
154
+ }
155
+
156
+ /*
157
+ Prevent `sub` and `sup` elements from affecting the line height in all browsers.
158
+ */
159
+
160
+ sub,
161
+ sup {
162
+ font-size: 75%;
163
+ line-height: 0;
164
+ position: relative;
165
+ vertical-align: baseline;
166
+ }
167
+
168
+ sub {
169
+ bottom: -0.25em;
170
+ }
171
+
172
+ sup {
173
+ top: -0.5em;
174
+ }
175
+
176
+ /*
177
+ 1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
178
+ 2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
179
+ 3. Remove gaps between table borders by default.
180
+ */
181
+
182
+ table {
183
+ text-indent: 0;
184
+ /* 1 */
185
+ border-color: inherit;
186
+ /* 2 */
187
+ border-collapse: collapse;
188
+ /* 3 */
189
+ }
190
+
191
+ /*
192
+ 1. Change the font styles in all browsers.
193
+ 2. Remove the margin in Firefox and Safari.
194
+ 3. Remove default padding in all browsers.
195
+ */
196
+
197
+ button,
198
+ input,
199
+ optgroup,
200
+ select,
201
+ textarea {
202
+ font-family: inherit;
203
+ /* 1 */
204
+ font-feature-settings: inherit;
205
+ /* 1 */
206
+ font-variation-settings: inherit;
207
+ /* 1 */
208
+ font-size: 100%;
209
+ /* 1 */
210
+ font-weight: inherit;
211
+ /* 1 */
212
+ line-height: inherit;
213
+ /* 1 */
214
+ color: inherit;
215
+ /* 1 */
216
+ margin: 0;
217
+ /* 2 */
218
+ padding: 0;
219
+ /* 3 */
220
+ }
221
+
222
+ /*
223
+ Remove the inheritance of text transform in Edge and Firefox.
224
+ */
225
+
226
+ button,
227
+ select {
228
+ text-transform: none;
229
+ }
230
+
231
+ /*
232
+ 1. Correct the inability to style clickable types in iOS and Safari.
233
+ 2. Remove default button styles.
234
+ */
235
+
236
+ button,
237
+ [type='button'],
238
+ [type='reset'],
239
+ [type='submit'] {
240
+ -webkit-appearance: button;
241
+ /* 1 */
242
+ background-color: transparent;
243
+ /* 2 */
244
+ background-image: none;
245
+ /* 2 */
246
+ }
247
+
248
+ /*
249
+ Use the modern Firefox focus style for all focusable elements.
250
+ */
251
+
252
+ :-moz-focusring {
253
+ outline: auto;
254
+ }
255
+
256
+ /*
257
+ Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
258
+ */
259
+
260
+ :-moz-ui-invalid {
261
+ box-shadow: none;
262
+ }
263
+
264
+ /*
265
+ Add the correct vertical alignment in Chrome and Firefox.
266
+ */
267
+
268
+ progress {
269
+ vertical-align: baseline;
270
+ }
271
+
272
+ /*
273
+ Correct the cursor style of increment and decrement buttons in Safari.
274
+ */
275
+
276
+ ::-webkit-inner-spin-button,
277
+ ::-webkit-outer-spin-button {
278
+ height: auto;
279
+ }
280
+
281
+ /*
282
+ 1. Correct the odd appearance in Chrome and Safari.
283
+ 2. Correct the outline style in Safari.
284
+ */
285
+
286
+ [type='search'] {
287
+ -webkit-appearance: textfield;
288
+ /* 1 */
289
+ outline-offset: -2px;
290
+ /* 2 */
291
+ }
292
+
293
+ /*
294
+ Remove the inner padding in Chrome and Safari on macOS.
295
+ */
296
+
297
+ ::-webkit-search-decoration {
298
+ -webkit-appearance: none;
299
+ }
300
+
301
+ /*
302
+ 1. Correct the inability to style clickable types in iOS and Safari.
303
+ 2. Change font properties to `inherit` in Safari.
304
+ */
305
+
306
+ ::-webkit-file-upload-button {
307
+ -webkit-appearance: button;
308
+ /* 1 */
309
+ font: inherit;
310
+ /* 2 */
311
+ }
312
+
313
+ /*
314
+ Add the correct display in Chrome and Safari.
315
+ */
316
+
317
+ summary {
318
+ display: list-item;
319
+ }
320
+
321
+ /*
322
+ Removes the default spacing and border for appropriate elements.
323
+ */
324
+
325
+ blockquote,
326
+ dl,
327
+ dd,
328
+ h1,
329
+ h2,
330
+ h3,
331
+ h4,
332
+ h5,
333
+ h6,
334
+ hr,
335
+ figure,
336
+ p,
337
+ pre {
338
+ margin: 0;
339
+ }
340
+
341
+ fieldset {
342
+ margin: 0;
343
+ padding: 0;
344
+ }
345
+
346
+ legend {
347
+ padding: 0;
348
+ }
349
+
350
+ ol,
351
+ ul,
352
+ menu {
353
+ list-style: none;
354
+ margin: 0;
355
+ padding: 0;
356
+ }
357
+
358
+ /*
359
+ Reset default styling for dialogs.
360
+ */
361
+
362
+ dialog {
363
+ padding: 0;
364
+ }
365
+
366
+ /*
367
+ Prevent resizing textareas horizontally by default.
368
+ */
369
+
370
+ textarea {
371
+ resize: vertical;
372
+ }
373
+
374
+ /*
375
+ 1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
376
+ 2. Set the default placeholder color to the user's configured gray 400 color.
377
+ */
378
+
379
+ input::-moz-placeholder, textarea::-moz-placeholder {
380
+ opacity: 1;
381
+ /* 1 */
382
+ color: #9ca3af;
383
+ /* 2 */
384
+ }
385
+
386
+ input::placeholder,
387
+ textarea::placeholder {
388
+ opacity: 1;
389
+ /* 1 */
390
+ color: #9ca3af;
391
+ /* 2 */
392
+ }
393
+
394
+ /*
395
+ Set the default cursor for buttons.
396
+ */
397
+
398
+ button,
399
+ [role="button"] {
400
+ cursor: pointer;
401
+ }
402
+
403
+ /*
404
+ Make sure disabled buttons don't get the pointer cursor.
405
+ */
406
+
407
+ :disabled {
408
+ cursor: default;
409
+ }
410
+
411
+ /*
412
+ 1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
413
+ 2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
414
+ This can trigger a poorly considered lint error in some tools but is included by design.
415
+ */
416
+
417
+ img,
418
+ svg,
419
+ video,
420
+ canvas,
421
+ audio,
422
+ iframe,
423
+ embed,
424
+ object {
425
+ display: block;
426
+ /* 1 */
427
+ vertical-align: middle;
428
+ /* 2 */
429
+ }
430
+
431
+ /*
432
+ Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
433
+ */
434
+
435
+ img,
436
+ video {
437
+ max-width: 100%;
438
+ height: auto;
439
+ }
440
+
441
+ /* Make elements with the HTML hidden attribute stay hidden by default */
442
+
443
+ [hidden] {
444
+ display: none;
445
+ }
446
+
447
+ [type='text'],[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select {
448
+ -webkit-appearance: none;
449
+ -moz-appearance: none;
450
+ appearance: none;
451
+ background-color: #fff;
452
+ border-color: #6b7280;
453
+ border-width: 1px;
454
+ border-radius: 0px;
455
+ padding-top: 0.5rem;
456
+ padding-right: 0.75rem;
457
+ padding-bottom: 0.5rem;
458
+ padding-left: 0.75rem;
459
+ font-size: 1rem;
460
+ line-height: 1.5rem;
461
+ --tw-shadow: 0 0 #0000;
462
+ }
463
+
464
+ [type='text']:focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus {
465
+ outline: 2px solid transparent;
466
+ outline-offset: 2px;
467
+ --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
468
+ --tw-ring-offset-width: 0px;
469
+ --tw-ring-offset-color: #fff;
470
+ --tw-ring-color: #2563eb;
471
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
472
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
473
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
474
+ border-color: #2563eb;
475
+ }
476
+
477
+ input::-moz-placeholder, textarea::-moz-placeholder {
478
+ color: #6b7280;
479
+ opacity: 1;
480
+ }
481
+
482
+ input::placeholder,textarea::placeholder {
483
+ color: #6b7280;
484
+ opacity: 1;
485
+ }
486
+
487
+ ::-webkit-datetime-edit-fields-wrapper {
488
+ padding: 0;
489
+ }
490
+
491
+ ::-webkit-date-and-time-value {
492
+ min-height: 1.5em;
493
+ }
494
+
495
+ ::-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 {
496
+ padding-top: 0;
497
+ padding-bottom: 0;
498
+ }
499
+
500
+ select {
501
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
502
+ background-position: right 0.5rem center;
503
+ background-repeat: no-repeat;
504
+ background-size: 1.5em 1.5em;
505
+ padding-right: 2.5rem;
506
+ -webkit-print-color-adjust: exact;
507
+ print-color-adjust: exact;
508
+ }
509
+
510
+ [multiple] {
511
+ background-image: initial;
512
+ background-position: initial;
513
+ background-repeat: unset;
514
+ background-size: initial;
515
+ padding-right: 0.75rem;
516
+ -webkit-print-color-adjust: unset;
517
+ print-color-adjust: unset;
518
+ }
519
+
520
+ [type='checkbox'],[type='radio'] {
521
+ -webkit-appearance: none;
522
+ -moz-appearance: none;
523
+ appearance: none;
524
+ padding: 0;
525
+ -webkit-print-color-adjust: exact;
526
+ print-color-adjust: exact;
527
+ display: inline-block;
528
+ vertical-align: middle;
529
+ background-origin: border-box;
530
+ -webkit-user-select: none;
531
+ -moz-user-select: none;
532
+ user-select: none;
533
+ flex-shrink: 0;
534
+ height: 1rem;
535
+ width: 1rem;
536
+ color: #2563eb;
537
+ background-color: #fff;
538
+ border-color: #6b7280;
539
+ border-width: 1px;
540
+ --tw-shadow: 0 0 #0000;
541
+ }
542
+
543
+ [type='checkbox'] {
544
+ border-radius: 0px;
545
+ }
546
+
547
+ [type='radio'] {
548
+ border-radius: 100%;
549
+ }
550
+
551
+ [type='checkbox']:focus,[type='radio']:focus {
552
+ outline: 2px solid transparent;
553
+ outline-offset: 2px;
554
+ --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
555
+ --tw-ring-offset-width: 2px;
556
+ --tw-ring-offset-color: #fff;
557
+ --tw-ring-color: #2563eb;
558
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
559
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
560
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
561
+ }
562
+
563
+ [type='checkbox']:checked,[type='radio']:checked {
564
+ border-color: transparent;
565
+ background-color: currentColor;
566
+ background-size: 100% 100%;
567
+ background-position: center;
568
+ background-repeat: no-repeat;
569
+ }
570
+
571
+ [type='checkbox']:checked {
572
+ background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
573
+ }
574
+
575
+ [type='radio']:checked {
576
+ background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
577
+ }
578
+
579
+ [type='checkbox']:checked:hover,[type='checkbox']:checked:focus,[type='radio']:checked:hover,[type='radio']:checked:focus {
580
+ border-color: transparent;
581
+ background-color: currentColor;
582
+ }
583
+
584
+ [type='checkbox']:indeterminate {
585
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
586
+ border-color: transparent;
587
+ background-color: currentColor;
588
+ background-size: 100% 100%;
589
+ background-position: center;
590
+ background-repeat: no-repeat;
591
+ }
592
+
593
+ [type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus {
594
+ border-color: transparent;
595
+ background-color: currentColor;
596
+ }
597
+
598
+ [type='file'] {
599
+ background: unset;
600
+ border-color: inherit;
601
+ border-width: 0;
602
+ border-radius: 0;
603
+ padding: 0;
604
+ font-size: unset;
605
+ line-height: inherit;
606
+ }
607
+
608
+ [type='file']:focus {
609
+ outline: 1px solid ButtonText;
610
+ outline: 1px auto -webkit-focus-ring-color;
611
+ }
612
+
613
+ *, ::before, ::after {
614
+ --tw-border-spacing-x: 0;
615
+ --tw-border-spacing-y: 0;
616
+ --tw-translate-x: 0;
617
+ --tw-translate-y: 0;
618
+ --tw-rotate: 0;
619
+ --tw-skew-x: 0;
620
+ --tw-skew-y: 0;
621
+ --tw-scale-x: 1;
622
+ --tw-scale-y: 1;
623
+ --tw-pan-x: ;
624
+ --tw-pan-y: ;
625
+ --tw-pinch-zoom: ;
626
+ --tw-scroll-snap-strictness: proximity;
627
+ --tw-gradient-from-position: ;
628
+ --tw-gradient-via-position: ;
629
+ --tw-gradient-to-position: ;
630
+ --tw-ordinal: ;
631
+ --tw-slashed-zero: ;
632
+ --tw-numeric-figure: ;
633
+ --tw-numeric-spacing: ;
634
+ --tw-numeric-fraction: ;
635
+ --tw-ring-inset: ;
636
+ --tw-ring-offset-width: 0px;
637
+ --tw-ring-offset-color: #fff;
638
+ --tw-ring-color: rgb(59 130 246 / 0.5);
639
+ --tw-ring-offset-shadow: 0 0 #0000;
640
+ --tw-ring-shadow: 0 0 #0000;
641
+ --tw-shadow: 0 0 #0000;
642
+ --tw-shadow-colored: 0 0 #0000;
643
+ --tw-blur: ;
644
+ --tw-brightness: ;
645
+ --tw-contrast: ;
646
+ --tw-grayscale: ;
647
+ --tw-hue-rotate: ;
648
+ --tw-invert: ;
649
+ --tw-saturate: ;
650
+ --tw-sepia: ;
651
+ --tw-drop-shadow: ;
652
+ --tw-backdrop-blur: ;
653
+ --tw-backdrop-brightness: ;
654
+ --tw-backdrop-contrast: ;
655
+ --tw-backdrop-grayscale: ;
656
+ --tw-backdrop-hue-rotate: ;
657
+ --tw-backdrop-invert: ;
658
+ --tw-backdrop-opacity: ;
659
+ --tw-backdrop-saturate: ;
660
+ --tw-backdrop-sepia: ;
661
+ }
662
+
663
+ ::backdrop {
664
+ --tw-border-spacing-x: 0;
665
+ --tw-border-spacing-y: 0;
666
+ --tw-translate-x: 0;
667
+ --tw-translate-y: 0;
668
+ --tw-rotate: 0;
669
+ --tw-skew-x: 0;
670
+ --tw-skew-y: 0;
671
+ --tw-scale-x: 1;
672
+ --tw-scale-y: 1;
673
+ --tw-pan-x: ;
674
+ --tw-pan-y: ;
675
+ --tw-pinch-zoom: ;
676
+ --tw-scroll-snap-strictness: proximity;
677
+ --tw-gradient-from-position: ;
678
+ --tw-gradient-via-position: ;
679
+ --tw-gradient-to-position: ;
680
+ --tw-ordinal: ;
681
+ --tw-slashed-zero: ;
682
+ --tw-numeric-figure: ;
683
+ --tw-numeric-spacing: ;
684
+ --tw-numeric-fraction: ;
685
+ --tw-ring-inset: ;
686
+ --tw-ring-offset-width: 0px;
687
+ --tw-ring-offset-color: #fff;
688
+ --tw-ring-color: rgb(59 130 246 / 0.5);
689
+ --tw-ring-offset-shadow: 0 0 #0000;
690
+ --tw-ring-shadow: 0 0 #0000;
691
+ --tw-shadow: 0 0 #0000;
692
+ --tw-shadow-colored: 0 0 #0000;
693
+ --tw-blur: ;
694
+ --tw-brightness: ;
695
+ --tw-contrast: ;
696
+ --tw-grayscale: ;
697
+ --tw-hue-rotate: ;
698
+ --tw-invert: ;
699
+ --tw-saturate: ;
700
+ --tw-sepia: ;
701
+ --tw-drop-shadow: ;
702
+ --tw-backdrop-blur: ;
703
+ --tw-backdrop-brightness: ;
704
+ --tw-backdrop-contrast: ;
705
+ --tw-backdrop-grayscale: ;
706
+ --tw-backdrop-hue-rotate: ;
707
+ --tw-backdrop-invert: ;
708
+ --tw-backdrop-opacity: ;
709
+ --tw-backdrop-saturate: ;
710
+ --tw-backdrop-sepia: ;
711
+ }
712
+
713
+ .prose {
714
+ color: var(--tw-prose-body);
715
+ max-width: 65ch;
716
+ }
717
+
718
+ .prose :where([class~="lead"]):not(:where([class~="not-prose"] *)) {
719
+ color: var(--tw-prose-lead);
720
+ font-size: 1.25em;
721
+ line-height: 1.6;
722
+ margin-top: 1.2em;
723
+ margin-bottom: 1.2em;
724
+ }
725
+
726
+ .prose :where(a):not(:where([class~="not-prose"] *)) {
727
+ color: var(--tw-prose-links);
728
+ text-decoration: underline;
729
+ font-weight: 500;
730
+ }
731
+
732
+ .prose :where(strong):not(:where([class~="not-prose"] *)) {
733
+ color: var(--tw-prose-bold);
734
+ font-weight: 600;
735
+ }
736
+
737
+ .prose :where(a strong):not(:where([class~="not-prose"] *)) {
738
+ color: inherit;
739
+ }
740
+
741
+ .prose :where(blockquote strong):not(:where([class~="not-prose"] *)) {
742
+ color: inherit;
743
+ }
744
+
745
+ .prose :where(thead th strong):not(:where([class~="not-prose"] *)) {
746
+ color: inherit;
747
+ }
748
+
749
+ .prose :where(ol):not(:where([class~="not-prose"] *)) {
750
+ list-style-type: decimal;
751
+ margin-top: 1.25em;
752
+ margin-bottom: 1.25em;
753
+ padding-left: 1.625em;
754
+ }
755
+
756
+ .prose :where(ol[type="A"]):not(:where([class~="not-prose"] *)) {
757
+ list-style-type: upper-alpha;
758
+ }
759
+
760
+ .prose :where(ol[type="a"]):not(:where([class~="not-prose"] *)) {
761
+ list-style-type: lower-alpha;
762
+ }
763
+
764
+ .prose :where(ol[type="A" s]):not(:where([class~="not-prose"] *)) {
765
+ list-style-type: upper-alpha;
766
+ }
767
+
768
+ .prose :where(ol[type="a" s]):not(:where([class~="not-prose"] *)) {
769
+ list-style-type: lower-alpha;
770
+ }
771
+
772
+ .prose :where(ol[type="I"]):not(:where([class~="not-prose"] *)) {
773
+ list-style-type: upper-roman;
774
+ }
775
+
776
+ .prose :where(ol[type="i"]):not(:where([class~="not-prose"] *)) {
777
+ list-style-type: lower-roman;
778
+ }
779
+
780
+ .prose :where(ol[type="I" s]):not(:where([class~="not-prose"] *)) {
781
+ list-style-type: upper-roman;
782
+ }
783
+
784
+ .prose :where(ol[type="i" s]):not(:where([class~="not-prose"] *)) {
785
+ list-style-type: lower-roman;
786
+ }
787
+
788
+ .prose :where(ol[type="1"]):not(:where([class~="not-prose"] *)) {
789
+ list-style-type: decimal;
790
+ }
791
+
792
+ .prose :where(ul):not(:where([class~="not-prose"] *)) {
793
+ list-style-type: disc;
794
+ margin-top: 1.25em;
795
+ margin-bottom: 1.25em;
796
+ padding-left: 1.625em;
797
+ }
798
+
799
+ .prose :where(ol > li):not(:where([class~="not-prose"] *))::marker {
800
+ font-weight: 400;
801
+ color: var(--tw-prose-counters);
802
+ }
803
+
804
+ .prose :where(ul > li):not(:where([class~="not-prose"] *))::marker {
805
+ color: var(--tw-prose-bullets);
806
+ }
807
+
808
+ .prose :where(hr):not(:where([class~="not-prose"] *)) {
809
+ border-color: var(--tw-prose-hr);
810
+ border-top-width: 1px;
811
+ margin-top: 3em;
812
+ margin-bottom: 3em;
813
+ }
814
+
815
+ .prose :where(blockquote):not(:where([class~="not-prose"] *)) {
816
+ font-weight: 500;
817
+ font-style: italic;
818
+ color: var(--tw-prose-quotes);
819
+ border-left-width: 0.25rem;
820
+ border-left-color: var(--tw-prose-quote-borders);
821
+ quotes: "\201C""\201D""\2018""\2019";
822
+ margin-top: 1.6em;
823
+ margin-bottom: 1.6em;
824
+ padding-left: 1em;
825
+ }
826
+
827
+ .prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"] *))::before {
828
+ content: open-quote;
829
+ }
830
+
831
+ .prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"] *))::after {
832
+ content: close-quote;
833
+ }
834
+
835
+ .prose :where(h1):not(:where([class~="not-prose"] *)) {
836
+ color: var(--tw-prose-headings);
837
+ font-weight: 800;
838
+ font-size: 2.25em;
839
+ margin-top: 0;
840
+ margin-bottom: 0.8888889em;
841
+ line-height: 1.1111111;
842
+ }
843
+
844
+ .prose :where(h1 strong):not(:where([class~="not-prose"] *)) {
845
+ font-weight: 900;
846
+ color: inherit;
847
+ }
848
+
849
+ .prose :where(h2):not(:where([class~="not-prose"] *)) {
850
+ color: var(--tw-prose-headings);
851
+ font-weight: 700;
852
+ font-size: 1.5em;
853
+ margin-top: 2em;
854
+ margin-bottom: 1em;
855
+ line-height: 1.3333333;
856
+ }
857
+
858
+ .prose :where(h2 strong):not(:where([class~="not-prose"] *)) {
859
+ font-weight: 800;
860
+ color: inherit;
861
+ }
862
+
863
+ .prose :where(h3):not(:where([class~="not-prose"] *)) {
864
+ color: var(--tw-prose-headings);
865
+ font-weight: 600;
866
+ font-size: 1.25em;
867
+ margin-top: 1.6em;
868
+ margin-bottom: 0.6em;
869
+ line-height: 1.6;
870
+ }
871
+
872
+ .prose :where(h3 strong):not(:where([class~="not-prose"] *)) {
873
+ font-weight: 700;
874
+ color: inherit;
875
+ }
876
+
877
+ .prose :where(h4):not(:where([class~="not-prose"] *)) {
878
+ color: var(--tw-prose-headings);
879
+ font-weight: 600;
880
+ margin-top: 1.5em;
881
+ margin-bottom: 0.5em;
882
+ line-height: 1.5;
883
+ }
884
+
885
+ .prose :where(h4 strong):not(:where([class~="not-prose"] *)) {
886
+ font-weight: 700;
887
+ color: inherit;
888
+ }
889
+
890
+ .prose :where(img):not(:where([class~="not-prose"] *)) {
891
+ margin-top: 2em;
892
+ margin-bottom: 2em;
893
+ }
894
+
895
+ .prose :where(figure > *):not(:where([class~="not-prose"] *)) {
896
+ margin-top: 0;
897
+ margin-bottom: 0;
898
+ }
899
+
900
+ .prose :where(figcaption):not(:where([class~="not-prose"] *)) {
901
+ color: var(--tw-prose-captions);
902
+ font-size: 0.875em;
903
+ line-height: 1.4285714;
904
+ margin-top: 0.8571429em;
905
+ }
906
+
907
+ .prose :where(code):not(:where([class~="not-prose"] *)) {
908
+ color: var(--tw-prose-code);
909
+ font-weight: 600;
910
+ font-size: 0.875em;
911
+ }
912
+
913
+ .prose :where(code):not(:where([class~="not-prose"] *))::before {
914
+ content: "`";
915
+ }
916
+
917
+ .prose :where(code):not(:where([class~="not-prose"] *))::after {
918
+ content: "`";
919
+ }
920
+
921
+ .prose :where(a code):not(:where([class~="not-prose"] *)) {
922
+ color: inherit;
923
+ }
924
+
925
+ .prose :where(h1 code):not(:where([class~="not-prose"] *)) {
926
+ color: inherit;
927
+ }
928
+
929
+ .prose :where(h2 code):not(:where([class~="not-prose"] *)) {
930
+ color: inherit;
931
+ font-size: 0.875em;
932
+ }
933
+
934
+ .prose :where(h3 code):not(:where([class~="not-prose"] *)) {
935
+ color: inherit;
936
+ font-size: 0.9em;
937
+ }
938
+
939
+ .prose :where(h4 code):not(:where([class~="not-prose"] *)) {
940
+ color: inherit;
941
+ }
942
+
943
+ .prose :where(blockquote code):not(:where([class~="not-prose"] *)) {
944
+ color: inherit;
945
+ }
946
+
947
+ .prose :where(thead th code):not(:where([class~="not-prose"] *)) {
948
+ color: inherit;
949
+ }
950
+
951
+ .prose :where(pre):not(:where([class~="not-prose"] *)) {
952
+ color: var(--tw-prose-pre-code);
953
+ background-color: var(--tw-prose-pre-bg);
954
+ overflow-x: auto;
955
+ font-weight: 400;
956
+ font-size: 0.875em;
957
+ line-height: 1.7142857;
958
+ margin-top: 1.7142857em;
959
+ margin-bottom: 1.7142857em;
960
+ border-radius: 0.375rem;
961
+ padding-top: 0.8571429em;
962
+ padding-right: 1.1428571em;
963
+ padding-bottom: 0.8571429em;
964
+ padding-left: 1.1428571em;
965
+ }
966
+
967
+ .prose :where(pre code):not(:where([class~="not-prose"] *)) {
968
+ background-color: transparent;
969
+ border-width: 0;
970
+ border-radius: 0;
971
+ padding: 0;
972
+ font-weight: inherit;
973
+ color: inherit;
974
+ font-size: inherit;
975
+ font-family: inherit;
976
+ line-height: inherit;
977
+ }
978
+
979
+ .prose :where(pre code):not(:where([class~="not-prose"] *))::before {
980
+ content: none;
981
+ }
982
+
983
+ .prose :where(pre code):not(:where([class~="not-prose"] *))::after {
984
+ content: none;
985
+ }
986
+
987
+ .prose :where(table):not(:where([class~="not-prose"] *)) {
988
+ width: 100%;
989
+ table-layout: auto;
990
+ text-align: left;
991
+ margin-top: 2em;
992
+ margin-bottom: 2em;
993
+ font-size: 0.875em;
994
+ line-height: 1.7142857;
995
+ }
996
+
997
+ .prose :where(thead):not(:where([class~="not-prose"] *)) {
998
+ border-bottom-width: 1px;
999
+ border-bottom-color: var(--tw-prose-th-borders);
1000
+ }
1001
+
1002
+ .prose :where(thead th):not(:where([class~="not-prose"] *)) {
1003
+ color: var(--tw-prose-headings);
1004
+ font-weight: 600;
1005
+ vertical-align: bottom;
1006
+ padding-right: 0.5714286em;
1007
+ padding-bottom: 0.5714286em;
1008
+ padding-left: 0.5714286em;
1009
+ }
1010
+
1011
+ .prose :where(tbody tr):not(:where([class~="not-prose"] *)) {
1012
+ border-bottom-width: 1px;
1013
+ border-bottom-color: var(--tw-prose-td-borders);
1014
+ }
1015
+
1016
+ .prose :where(tbody tr:last-child):not(:where([class~="not-prose"] *)) {
1017
+ border-bottom-width: 0;
1018
+ }
1019
+
1020
+ .prose :where(tbody td):not(:where([class~="not-prose"] *)) {
1021
+ vertical-align: baseline;
1022
+ }
1023
+
1024
+ .prose :where(tfoot):not(:where([class~="not-prose"] *)) {
1025
+ border-top-width: 1px;
1026
+ border-top-color: var(--tw-prose-th-borders);
1027
+ }
1028
+
1029
+ .prose :where(tfoot td):not(:where([class~="not-prose"] *)) {
1030
+ vertical-align: top;
1031
+ }
1032
+
1033
+ .prose {
1034
+ --tw-prose-body: #374151;
1035
+ --tw-prose-headings: #111827;
1036
+ --tw-prose-lead: #4b5563;
1037
+ --tw-prose-links: #111827;
1038
+ --tw-prose-bold: #111827;
1039
+ --tw-prose-counters: #6b7280;
1040
+ --tw-prose-bullets: #d1d5db;
1041
+ --tw-prose-hr: #e5e7eb;
1042
+ --tw-prose-quotes: #111827;
1043
+ --tw-prose-quote-borders: #e5e7eb;
1044
+ --tw-prose-captions: #6b7280;
1045
+ --tw-prose-code: #111827;
1046
+ --tw-prose-pre-code: #e5e7eb;
1047
+ --tw-prose-pre-bg: #1f2937;
1048
+ --tw-prose-th-borders: #d1d5db;
1049
+ --tw-prose-td-borders: #e5e7eb;
1050
+ --tw-prose-invert-body: #d1d5db;
1051
+ --tw-prose-invert-headings: #fff;
1052
+ --tw-prose-invert-lead: #9ca3af;
1053
+ --tw-prose-invert-links: #fff;
1054
+ --tw-prose-invert-bold: #fff;
1055
+ --tw-prose-invert-counters: #9ca3af;
1056
+ --tw-prose-invert-bullets: #4b5563;
1057
+ --tw-prose-invert-hr: #374151;
1058
+ --tw-prose-invert-quotes: #f3f4f6;
1059
+ --tw-prose-invert-quote-borders: #374151;
1060
+ --tw-prose-invert-captions: #9ca3af;
1061
+ --tw-prose-invert-code: #fff;
1062
+ --tw-prose-invert-pre-code: #d1d5db;
1063
+ --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
1064
+ --tw-prose-invert-th-borders: #4b5563;
1065
+ --tw-prose-invert-td-borders: #374151;
1066
+ font-size: 1rem;
1067
+ line-height: 1.75;
1068
+ }
1069
+
1070
+ .prose :where(p):not(:where([class~="not-prose"] *)) {
1071
+ margin-top: 1.25em;
1072
+ margin-bottom: 1.25em;
1073
+ }
1074
+
1075
+ .prose :where(video):not(:where([class~="not-prose"] *)) {
1076
+ margin-top: 2em;
1077
+ margin-bottom: 2em;
1078
+ }
1079
+
1080
+ .prose :where(figure):not(:where([class~="not-prose"] *)) {
1081
+ margin-top: 2em;
1082
+ margin-bottom: 2em;
1083
+ }
1084
+
1085
+ .prose :where(li):not(:where([class~="not-prose"] *)) {
1086
+ margin-top: 0.5em;
1087
+ margin-bottom: 0.5em;
1088
+ }
1089
+
1090
+ .prose :where(ol > li):not(:where([class~="not-prose"] *)) {
1091
+ padding-left: 0.375em;
1092
+ }
1093
+
1094
+ .prose :where(ul > li):not(:where([class~="not-prose"] *)) {
1095
+ padding-left: 0.375em;
1096
+ }
1097
+
1098
+ .prose :where(.prose > ul > li p):not(:where([class~="not-prose"] *)) {
1099
+ margin-top: 0.75em;
1100
+ margin-bottom: 0.75em;
1101
+ }
1102
+
1103
+ .prose :where(.prose > ul > li > *:first-child):not(:where([class~="not-prose"] *)) {
1104
+ margin-top: 1.25em;
1105
+ }
1106
+
1107
+ .prose :where(.prose > ul > li > *:last-child):not(:where([class~="not-prose"] *)) {
1108
+ margin-bottom: 1.25em;
1109
+ }
1110
+
1111
+ .prose :where(.prose > ol > li > *:first-child):not(:where([class~="not-prose"] *)) {
1112
+ margin-top: 1.25em;
1113
+ }
1114
+
1115
+ .prose :where(.prose > ol > li > *:last-child):not(:where([class~="not-prose"] *)) {
1116
+ margin-bottom: 1.25em;
1117
+ }
1118
+
1119
+ .prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"] *)) {
1120
+ margin-top: 0.75em;
1121
+ margin-bottom: 0.75em;
1122
+ }
1123
+
1124
+ .prose :where(hr + *):not(:where([class~="not-prose"] *)) {
1125
+ margin-top: 0;
1126
+ }
1127
+
1128
+ .prose :where(h2 + *):not(:where([class~="not-prose"] *)) {
1129
+ margin-top: 0;
1130
+ }
1131
+
1132
+ .prose :where(h3 + *):not(:where([class~="not-prose"] *)) {
1133
+ margin-top: 0;
1134
+ }
1135
+
1136
+ .prose :where(h4 + *):not(:where([class~="not-prose"] *)) {
1137
+ margin-top: 0;
1138
+ }
1139
+
1140
+ .prose :where(thead th:first-child):not(:where([class~="not-prose"] *)) {
1141
+ padding-left: 0;
1142
+ }
1143
+
1144
+ .prose :where(thead th:last-child):not(:where([class~="not-prose"] *)) {
1145
+ padding-right: 0;
1146
+ }
1147
+
1148
+ .prose :where(tbody td, tfoot td):not(:where([class~="not-prose"] *)) {
1149
+ padding-top: 0.5714286em;
1150
+ padding-right: 0.5714286em;
1151
+ padding-bottom: 0.5714286em;
1152
+ padding-left: 0.5714286em;
1153
+ }
1154
+
1155
+ .prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"] *)) {
1156
+ padding-left: 0;
1157
+ }
1158
+
1159
+ .prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"] *)) {
1160
+ padding-right: 0;
1161
+ }
1162
+
1163
+ .prose :where(.prose > :first-child):not(:where([class~="not-prose"] *)) {
1164
+ margin-top: 0;
1165
+ }
1166
+
1167
+ .prose :where(.prose > :last-child):not(:where([class~="not-prose"] *)) {
1168
+ margin-bottom: 0;
1169
+ }
1170
+
1171
+ .prose-sm :where(.prose > ul > li p):not(:where([class~="not-prose"] *)) {
1172
+ margin-top: 0.5714286em;
1173
+ margin-bottom: 0.5714286em;
1174
+ }
1175
+
1176
+ .prose-sm :where(.prose > ul > li > *:first-child):not(:where([class~="not-prose"] *)) {
1177
+ margin-top: 1.1428571em;
1178
+ }
1179
+
1180
+ .prose-sm :where(.prose > ul > li > *:last-child):not(:where([class~="not-prose"] *)) {
1181
+ margin-bottom: 1.1428571em;
1182
+ }
1183
+
1184
+ .prose-sm :where(.prose > ol > li > *:first-child):not(:where([class~="not-prose"] *)) {
1185
+ margin-top: 1.1428571em;
1186
+ }
1187
+
1188
+ .prose-sm :where(.prose > ol > li > *:last-child):not(:where([class~="not-prose"] *)) {
1189
+ margin-bottom: 1.1428571em;
1190
+ }
1191
+
1192
+ .prose-sm :where(.prose > :first-child):not(:where([class~="not-prose"] *)) {
1193
+ margin-top: 0;
1194
+ }
1195
+
1196
+ .prose-sm :where(.prose > :last-child):not(:where([class~="not-prose"] *)) {
1197
+ margin-bottom: 0;
1198
+ }
1199
+
1200
+ .prose-base :where(.prose > ul > li p):not(:where([class~="not-prose"] *)) {
1201
+ margin-top: 0.75em;
1202
+ margin-bottom: 0.75em;
1203
+ }
1204
+
1205
+ .prose-base :where(.prose > ul > li > *:first-child):not(:where([class~="not-prose"] *)) {
1206
+ margin-top: 1.25em;
1207
+ }
1208
+
1209
+ .prose-base :where(.prose > ul > li > *:last-child):not(:where([class~="not-prose"] *)) {
1210
+ margin-bottom: 1.25em;
1211
+ }
1212
+
1213
+ .prose-base :where(.prose > ol > li > *:first-child):not(:where([class~="not-prose"] *)) {
1214
+ margin-top: 1.25em;
1215
+ }
1216
+
1217
+ .prose-base :where(.prose > ol > li > *:last-child):not(:where([class~="not-prose"] *)) {
1218
+ margin-bottom: 1.25em;
1219
+ }
1220
+
1221
+ .prose-base :where(.prose > :first-child):not(:where([class~="not-prose"] *)) {
1222
+ margin-top: 0;
1223
+ }
1224
+
1225
+ .prose-base :where(.prose > :last-child):not(:where([class~="not-prose"] *)) {
1226
+ margin-bottom: 0;
1227
+ }
1228
+
1229
+ .prose-lg :where(.prose > ul > li p):not(:where([class~="not-prose"] *)) {
1230
+ margin-top: 0.8888889em;
1231
+ margin-bottom: 0.8888889em;
1232
+ }
1233
+
1234
+ .prose-lg :where(.prose > ul > li > *:first-child):not(:where([class~="not-prose"] *)) {
1235
+ margin-top: 1.3333333em;
1236
+ }
1237
+
1238
+ .prose-lg :where(.prose > ul > li > *:last-child):not(:where([class~="not-prose"] *)) {
1239
+ margin-bottom: 1.3333333em;
1240
+ }
1241
+
1242
+ .prose-lg :where(.prose > ol > li > *:first-child):not(:where([class~="not-prose"] *)) {
1243
+ margin-top: 1.3333333em;
1244
+ }
1245
+
1246
+ .prose-lg :where(.prose > ol > li > *:last-child):not(:where([class~="not-prose"] *)) {
1247
+ margin-bottom: 1.3333333em;
1248
+ }
1249
+
1250
+ .prose-lg :where(.prose > :first-child):not(:where([class~="not-prose"] *)) {
1251
+ margin-top: 0;
1252
+ }
1253
+
1254
+ .prose-lg :where(.prose > :last-child):not(:where([class~="not-prose"] *)) {
1255
+ margin-bottom: 0;
1256
+ }
1257
+
1258
+ .prose-xl :where(.prose > ul > li p):not(:where([class~="not-prose"] *)) {
1259
+ margin-top: 0.8em;
1260
+ margin-bottom: 0.8em;
1261
+ }
1262
+
1263
+ .prose-xl :where(.prose > ul > li > *:first-child):not(:where([class~="not-prose"] *)) {
1264
+ margin-top: 1.2em;
1265
+ }
1266
+
1267
+ .prose-xl :where(.prose > ul > li > *:last-child):not(:where([class~="not-prose"] *)) {
1268
+ margin-bottom: 1.2em;
1269
+ }
1270
+
1271
+ .prose-xl :where(.prose > ol > li > *:first-child):not(:where([class~="not-prose"] *)) {
1272
+ margin-top: 1.2em;
1273
+ }
1274
+
1275
+ .prose-xl :where(.prose > ol > li > *:last-child):not(:where([class~="not-prose"] *)) {
1276
+ margin-bottom: 1.2em;
1277
+ }
1278
+
1279
+ .prose-xl :where(.prose > :first-child):not(:where([class~="not-prose"] *)) {
1280
+ margin-top: 0;
1281
+ }
1282
+
1283
+ .prose-xl :where(.prose > :last-child):not(:where([class~="not-prose"] *)) {
1284
+ margin-bottom: 0;
1285
+ }
1286
+
1287
+ .prose-2xl :where(.prose > ul > li p):not(:where([class~="not-prose"] *)) {
1288
+ margin-top: 0.8333333em;
1289
+ margin-bottom: 0.8333333em;
1290
+ }
1291
+
1292
+ .prose-2xl :where(.prose > ul > li > *:first-child):not(:where([class~="not-prose"] *)) {
1293
+ margin-top: 1.3333333em;
1294
+ }
1295
+
1296
+ .prose-2xl :where(.prose > ul > li > *:last-child):not(:where([class~="not-prose"] *)) {
1297
+ margin-bottom: 1.3333333em;
1298
+ }
1299
+
1300
+ .prose-2xl :where(.prose > ol > li > *:first-child):not(:where([class~="not-prose"] *)) {
1301
+ margin-top: 1.3333333em;
1302
+ }
1303
+
1304
+ .prose-2xl :where(.prose > ol > li > *:last-child):not(:where([class~="not-prose"] *)) {
1305
+ margin-bottom: 1.3333333em;
1306
+ }
1307
+
1308
+ .prose-2xl :where(.prose > :first-child):not(:where([class~="not-prose"] *)) {
1309
+ margin-top: 0;
1310
+ }
1311
+
1312
+ .prose-2xl :where(.prose > :last-child):not(:where([class~="not-prose"] *)) {
1313
+ margin-bottom: 0;
1314
+ }
1315
+
1316
+ .button {
1317
+ display: inline-block;
1318
+ border-radius: 0.5rem;
1319
+ border-width: 1px;
1320
+ --tw-border-opacity: 1;
1321
+ border-color: rgb(107 114 128 / var(--tw-border-opacity));
1322
+ padding-left: 0.75rem;
1323
+ padding-right: 0.75rem;
1324
+ padding-top: 0.5rem;
1325
+ padding-bottom: 0.5rem;
1326
+ font-size: 1rem;
1327
+ line-height: 1.5rem;
1328
+ font-weight: 500;
1329
+ }
1330
+
1331
+ .button:hover {
1332
+ --tw-border-opacity: 1;
1333
+ border-color: rgb(0 0 0 / var(--tw-border-opacity));
1334
+ }
1335
+
1336
+ .change {
1337
+ --tw-bg-opacity: 1;
1338
+ background-color: rgb(165 243 252 / var(--tw-bg-opacity));
1339
+ }
1340
+
1341
+ .remove {
1342
+ --tw-bg-opacity: 1;
1343
+ background-color: rgb(254 202 202 / var(--tw-bg-opacity));
1344
+ }
1345
+
1346
+ .action {
1347
+ --tw-bg-opacity: 1;
1348
+ background-color: rgb(187 247 208 / var(--tw-bg-opacity));
1349
+ }
1350
+
1351
+ .sr-only {
1352
+ position: absolute;
1353
+ width: 1px;
1354
+ height: 1px;
1355
+ padding: 0;
1356
+ margin: -1px;
1357
+ overflow: hidden;
1358
+ clip: rect(0, 0, 0, 0);
1359
+ white-space: nowrap;
1360
+ border-width: 0;
1361
+ }
1362
+
1363
+ .fixed {
1364
+ position: fixed;
1365
+ }
1366
+
1367
+ .absolute {
1368
+ position: absolute;
1369
+ }
1370
+
1371
+ .relative {
1372
+ position: relative;
1373
+ }
1374
+
1375
+ .inset-0 {
1376
+ inset: 0px;
1377
+ }
1378
+
1379
+ .bottom-0 {
1380
+ bottom: 0px;
1381
+ }
1382
+
1383
+ .left-0 {
1384
+ left: 0px;
1385
+ }
1386
+
1387
+ .right-0 {
1388
+ right: 0px;
1389
+ }
1390
+
1391
+ .top-0 {
1392
+ top: 0px;
1393
+ }
1394
+
1395
+ .top-3 {
1396
+ top: 0.75rem;
1397
+ }
1398
+
1399
+ .-z-10 {
1400
+ z-index: -10;
1401
+ }
1402
+
1403
+ .z-0 {
1404
+ z-index: 0;
1405
+ }
1406
+
1407
+ .order-last {
1408
+ order: 9999;
1409
+ }
1410
+
1411
+ .col-span-2 {
1412
+ grid-column: span 2 / span 2;
1413
+ }
1414
+
1415
+ .col-span-3 {
1416
+ grid-column: span 3 / span 3;
1417
+ }
1418
+
1419
+ .m-0 {
1420
+ margin: 0px;
1421
+ }
1422
+
1423
+ .m-10 {
1424
+ margin: 2.5rem;
1425
+ }
1426
+
1427
+ .m-2 {
1428
+ margin: 0.5rem;
1429
+ }
1430
+
1431
+ .m-20 {
1432
+ margin: 5rem;
1433
+ }
1434
+
1435
+ .m-3 {
1436
+ margin: 0.75rem;
1437
+ }
1438
+
1439
+ .m-5 {
1440
+ margin: 1.25rem;
1441
+ }
1442
+
1443
+ .m-6 {
1444
+ margin: 1.5rem;
1445
+ }
1446
+
1447
+ .m-8 {
1448
+ margin: 2rem;
1449
+ }
1450
+
1451
+ .mx-0 {
1452
+ margin-left: 0px;
1453
+ margin-right: 0px;
1454
+ }
1455
+
1456
+ .mx-10 {
1457
+ margin-left: 2.5rem;
1458
+ margin-right: 2.5rem;
1459
+ }
1460
+
1461
+ .mx-2 {
1462
+ margin-left: 0.5rem;
1463
+ margin-right: 0.5rem;
1464
+ }
1465
+
1466
+ .mx-20 {
1467
+ margin-left: 5rem;
1468
+ margin-right: 5rem;
1469
+ }
1470
+
1471
+ .mx-3 {
1472
+ margin-left: 0.75rem;
1473
+ margin-right: 0.75rem;
1474
+ }
1475
+
1476
+ .mx-4 {
1477
+ margin-left: 1rem;
1478
+ margin-right: 1rem;
1479
+ }
1480
+
1481
+ .mx-40 {
1482
+ margin-left: 10rem;
1483
+ margin-right: 10rem;
1484
+ }
1485
+
1486
+ .mx-5 {
1487
+ margin-left: 1.25rem;
1488
+ margin-right: 1.25rem;
1489
+ }
1490
+
1491
+ .mx-6 {
1492
+ margin-left: 1.5rem;
1493
+ margin-right: 1.5rem;
1494
+ }
1495
+
1496
+ .mx-auto {
1497
+ margin-left: auto;
1498
+ margin-right: auto;
1499
+ }
1500
+
1501
+ .my-10 {
1502
+ margin-top: 2.5rem;
1503
+ margin-bottom: 2.5rem;
1504
+ }
1505
+
1506
+ .my-2 {
1507
+ margin-top: 0.5rem;
1508
+ margin-bottom: 0.5rem;
1509
+ }
1510
+
1511
+ .my-20 {
1512
+ margin-top: 5rem;
1513
+ margin-bottom: 5rem;
1514
+ }
1515
+
1516
+ .my-3 {
1517
+ margin-top: 0.75rem;
1518
+ margin-bottom: 0.75rem;
1519
+ }
1520
+
1521
+ .my-4 {
1522
+ margin-top: 1rem;
1523
+ margin-bottom: 1rem;
1524
+ }
1525
+
1526
+ .my-5 {
1527
+ margin-top: 1.25rem;
1528
+ margin-bottom: 1.25rem;
1529
+ }
1530
+
1531
+ .my-6 {
1532
+ margin-top: 1.5rem;
1533
+ margin-bottom: 1.5rem;
1534
+ }
1535
+
1536
+ .mb-0 {
1537
+ margin-bottom: 0px;
1538
+ }
1539
+
1540
+ .mb-1 {
1541
+ margin-bottom: 0.25rem;
1542
+ }
1543
+
1544
+ .mb-10 {
1545
+ margin-bottom: 2.5rem;
1546
+ }
1547
+
1548
+ .mb-2 {
1549
+ margin-bottom: 0.5rem;
1550
+ }
1551
+
1552
+ .mb-3 {
1553
+ margin-bottom: 0.75rem;
1554
+ }
1555
+
1556
+ .mb-4 {
1557
+ margin-bottom: 1rem;
1558
+ }
1559
+
1560
+ .mb-5 {
1561
+ margin-bottom: 1.25rem;
1562
+ }
1563
+
1564
+ .mb-6 {
1565
+ margin-bottom: 1.5rem;
1566
+ }
1567
+
1568
+ .mb-8 {
1569
+ margin-bottom: 2rem;
1570
+ }
1571
+
1572
+ .ml-0 {
1573
+ margin-left: 0px;
1574
+ }
1575
+
1576
+ .ml-10 {
1577
+ margin-left: 2.5rem;
1578
+ }
1579
+
1580
+ .ml-2 {
1581
+ margin-left: 0.5rem;
1582
+ }
1583
+
1584
+ .ml-20 {
1585
+ margin-left: 5rem;
1586
+ }
1587
+
1588
+ .ml-3 {
1589
+ margin-left: 0.75rem;
1590
+ }
1591
+
1592
+ .ml-32 {
1593
+ margin-left: 8rem;
1594
+ }
1595
+
1596
+ .mr-10 {
1597
+ margin-right: 2.5rem;
1598
+ }
1599
+
1600
+ .mr-2 {
1601
+ margin-right: 0.5rem;
1602
+ }
1603
+
1604
+ .mr-20 {
1605
+ margin-right: 5rem;
1606
+ }
1607
+
1608
+ .mr-3 {
1609
+ margin-right: 0.75rem;
1610
+ }
1611
+
1612
+ .mt-1 {
1613
+ margin-top: 0.25rem;
1614
+ }
1615
+
1616
+ .mt-10 {
1617
+ margin-top: 2.5rem;
1618
+ }
1619
+
1620
+ .mt-16 {
1621
+ margin-top: 4rem;
1622
+ }
1623
+
1624
+ .mt-2 {
1625
+ margin-top: 0.5rem;
1626
+ }
1627
+
1628
+ .mt-20 {
1629
+ margin-top: 5rem;
1630
+ }
1631
+
1632
+ .mt-3 {
1633
+ margin-top: 0.75rem;
1634
+ }
1635
+
1636
+ .mt-4 {
1637
+ margin-top: 1rem;
1638
+ }
1639
+
1640
+ .mt-6 {
1641
+ margin-top: 1.5rem;
1642
+ }
1643
+
1644
+ .mt-8 {
1645
+ margin-top: 2rem;
1646
+ }
1647
+
1648
+ .line-clamp-3 {
1649
+ overflow: hidden;
1650
+ display: -webkit-box;
1651
+ -webkit-box-orient: vertical;
1652
+ -webkit-line-clamp: 3;
1653
+ }
1654
+
1655
+ .block {
1656
+ display: block;
1657
+ }
1658
+
1659
+ .inline-block {
1660
+ display: inline-block;
1661
+ }
1662
+
1663
+ .inline {
1664
+ display: inline;
1665
+ }
1666
+
1667
+ .flex {
1668
+ display: flex;
1669
+ }
1670
+
1671
+ .inline-flex {
1672
+ display: inline-flex;
1673
+ }
1674
+
1675
+ .table {
1676
+ display: table;
1677
+ }
1678
+
1679
+ .grid {
1680
+ display: grid;
1681
+ }
1682
+
1683
+ .hidden {
1684
+ display: none;
1685
+ }
1686
+
1687
+ .h-0 {
1688
+ height: 0px;
1689
+ }
1690
+
1691
+ .h-1 {
1692
+ height: 0.25rem;
1693
+ }
1694
+
1695
+ .h-10 {
1696
+ height: 2.5rem;
1697
+ }
1698
+
1699
+ .h-16 {
1700
+ height: 4rem;
1701
+ }
1702
+
1703
+ .h-20 {
1704
+ height: 5rem;
1705
+ }
1706
+
1707
+ .h-24 {
1708
+ height: 6rem;
1709
+ }
1710
+
1711
+ .h-3 {
1712
+ height: 0.75rem;
1713
+ }
1714
+
1715
+ .h-4 {
1716
+ height: 1rem;
1717
+ }
1718
+
1719
+ .h-40 {
1720
+ height: 10rem;
1721
+ }
1722
+
1723
+ .h-56 {
1724
+ height: 14rem;
1725
+ }
1726
+
1727
+ .h-6 {
1728
+ height: 1.5rem;
1729
+ }
1730
+
1731
+ .h-60 {
1732
+ height: 15rem;
1733
+ }
1734
+
1735
+ .h-72 {
1736
+ height: 18rem;
1737
+ }
1738
+
1739
+ .h-8 {
1740
+ height: 2rem;
1741
+ }
1742
+
1743
+ .h-96 {
1744
+ height: 24rem;
1745
+ }
1746
+
1747
+ .h-full {
1748
+ height: 100%;
1749
+ }
1750
+
1751
+ .w-1 {
1752
+ width: 0.25rem;
1753
+ }
1754
+
1755
+ .w-16 {
1756
+ width: 4rem;
1757
+ }
1758
+
1759
+ .w-20 {
1760
+ width: 5rem;
1761
+ }
1762
+
1763
+ .w-3 {
1764
+ width: 0.75rem;
1765
+ }
1766
+
1767
+ .w-4 {
1768
+ width: 1rem;
1769
+ }
1770
+
1771
+ .w-40 {
1772
+ width: 10rem;
1773
+ }
1774
+
1775
+ .w-6 {
1776
+ width: 1.5rem;
1777
+ }
1778
+
1779
+ .w-8 {
1780
+ width: 2rem;
1781
+ }
1782
+
1783
+ .w-full {
1784
+ width: 100%;
1785
+ }
1786
+
1787
+ .min-w-full {
1788
+ min-width: 100%;
1789
+ }
1790
+
1791
+ .max-w-4xl {
1792
+ max-width: 56rem;
1793
+ }
1794
+
1795
+ .max-w-\[1920px\] {
1796
+ max-width: 1920px;
1797
+ }
1798
+
1799
+ .max-w-\[50\%\] {
1800
+ max-width: 50%;
1801
+ }
1802
+
1803
+ .max-w-full {
1804
+ max-width: 100%;
1805
+ }
1806
+
1807
+ .max-w-md {
1808
+ max-width: 28rem;
1809
+ }
1810
+
1811
+ .max-w-none {
1812
+ max-width: none;
1813
+ }
1814
+
1815
+ .max-w-prose {
1816
+ max-width: 65ch;
1817
+ }
1818
+
1819
+ .max-w-xl {
1820
+ max-width: 36rem;
1821
+ }
1822
+
1823
+ .flex-1 {
1824
+ flex: 1 1 0%;
1825
+ }
1826
+
1827
+ .grow {
1828
+ flex-grow: 1;
1829
+ }
1830
+
1831
+ .basis-10 {
1832
+ flex-basis: 2.5rem;
1833
+ }
1834
+
1835
+ .basis-52 {
1836
+ flex-basis: 13rem;
1837
+ }
1838
+
1839
+ .basis-60 {
1840
+ flex-basis: 15rem;
1841
+ }
1842
+
1843
+ .basis-72 {
1844
+ flex-basis: 18rem;
1845
+ }
1846
+
1847
+ .basis-80 {
1848
+ flex-basis: 20rem;
1849
+ }
1850
+
1851
+ .basis-96 {
1852
+ flex-basis: 24rem;
1853
+ }
1854
+
1855
+ .basis-full {
1856
+ flex-basis: 100%;
1857
+ }
1858
+
1859
+ .origin-\[0\] {
1860
+ transform-origin: 0;
1861
+ }
1862
+
1863
+ .origin-bottom {
1864
+ transform-origin: bottom;
1865
+ }
1866
+
1867
+ .origin-left {
1868
+ transform-origin: left;
1869
+ }
1870
+
1871
+ .origin-right {
1872
+ transform-origin: right;
1873
+ }
1874
+
1875
+ .origin-top {
1876
+ transform-origin: top;
1877
+ }
1878
+
1879
+ .-translate-y-6 {
1880
+ --tw-translate-y: -1.5rem;
1881
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1882
+ }
1883
+
1884
+ .scale-75 {
1885
+ --tw-scale-x: .75;
1886
+ --tw-scale-y: .75;
1887
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1888
+ }
1889
+
1890
+ .scale-x-0 {
1891
+ --tw-scale-x: 0;
1892
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1893
+ }
1894
+
1895
+ .scale-y-0 {
1896
+ --tw-scale-y: 0;
1897
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1898
+ }
1899
+
1900
+ .transform {
1901
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1902
+ }
1903
+
1904
+ .resize {
1905
+ resize: both;
1906
+ }
1907
+
1908
+ .appearance-none {
1909
+ -webkit-appearance: none;
1910
+ -moz-appearance: none;
1911
+ appearance: none;
1912
+ }
1913
+
1914
+ .columns-1 {
1915
+ -moz-columns: 1;
1916
+ columns: 1;
1917
+ }
1918
+
1919
+ .grid-cols-1 {
1920
+ grid-template-columns: repeat(1, minmax(0, 1fr));
1921
+ }
1922
+
1923
+ .grid-cols-2 {
1924
+ grid-template-columns: repeat(2, minmax(0, 1fr));
1925
+ }
1926
+
1927
+ .grid-cols-3 {
1928
+ grid-template-columns: repeat(3, minmax(0, 1fr));
1929
+ }
1930
+
1931
+ .grid-cols-4 {
1932
+ grid-template-columns: repeat(4, minmax(0, 1fr));
1933
+ }
1934
+
1935
+ .grid-cols-5 {
1936
+ grid-template-columns: repeat(5, minmax(0, 1fr));
1937
+ }
1938
+
1939
+ .flex-col {
1940
+ flex-direction: column;
1941
+ }
1942
+
1943
+ .flex-wrap {
1944
+ flex-wrap: wrap;
1945
+ }
1946
+
1947
+ .items-start {
1948
+ align-items: flex-start;
1949
+ }
1950
+
1951
+ .items-end {
1952
+ align-items: flex-end;
1953
+ }
1954
+
1955
+ .items-center {
1956
+ align-items: center;
1957
+ }
1958
+
1959
+ .justify-start {
1960
+ justify-content: flex-start;
1961
+ }
1962
+
1963
+ .justify-end {
1964
+ justify-content: flex-end;
1965
+ }
1966
+
1967
+ .justify-center {
1968
+ justify-content: center;
1969
+ }
1970
+
1971
+ .justify-between {
1972
+ justify-content: space-between;
1973
+ }
1974
+
1975
+ .gap-10 {
1976
+ gap: 2.5rem;
1977
+ }
1978
+
1979
+ .gap-16 {
1980
+ gap: 4rem;
1981
+ }
1982
+
1983
+ .gap-2 {
1984
+ gap: 0.5rem;
1985
+ }
1986
+
1987
+ .gap-20 {
1988
+ gap: 5rem;
1989
+ }
1990
+
1991
+ .gap-3 {
1992
+ gap: 0.75rem;
1993
+ }
1994
+
1995
+ .gap-4 {
1996
+ gap: 1rem;
1997
+ }
1998
+
1999
+ .gap-6 {
2000
+ gap: 1.5rem;
2001
+ }
2002
+
2003
+ .gap-8 {
2004
+ gap: 2rem;
2005
+ }
2006
+
2007
+ .space-y-4 > :not([hidden]) ~ :not([hidden]) {
2008
+ --tw-space-y-reverse: 0;
2009
+ margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
2010
+ margin-bottom: calc(1rem * var(--tw-space-y-reverse));
2011
+ }
2012
+
2013
+ .divide-y > :not([hidden]) ~ :not([hidden]) {
2014
+ --tw-divide-y-reverse: 0;
2015
+ border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
2016
+ border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
2017
+ }
2018
+
2019
+ .divide-gray-200 > :not([hidden]) ~ :not([hidden]) {
2020
+ --tw-divide-opacity: 1;
2021
+ border-color: rgb(229 231 235 / var(--tw-divide-opacity));
2022
+ }
2023
+
2024
+ .justify-self-start {
2025
+ justify-self: start;
2026
+ }
2027
+
2028
+ .overflow-hidden {
2029
+ overflow: hidden;
2030
+ }
2031
+
2032
+ .overflow-x-auto {
2033
+ overflow-x: auto;
2034
+ }
2035
+
2036
+ .whitespace-nowrap {
2037
+ white-space: nowrap;
2038
+ }
2039
+
2040
+ .rounded {
2041
+ border-radius: 0.25rem;
2042
+ }
2043
+
2044
+ .rounded-full {
2045
+ border-radius: 9999px;
2046
+ }
2047
+
2048
+ .rounded-lg {
2049
+ border-radius: 0.5rem;
2050
+ }
2051
+
2052
+ .rounded-md {
2053
+ border-radius: 0.375rem;
2054
+ }
2055
+
2056
+ .rounded-sm {
2057
+ border-radius: 0.125rem;
2058
+ }
2059
+
2060
+ .rounded-xl {
2061
+ border-radius: 0.75rem;
2062
+ }
2063
+
2064
+ .border {
2065
+ border-width: 1px;
2066
+ }
2067
+
2068
+ .border-0 {
2069
+ border-width: 0px;
2070
+ }
2071
+
2072
+ .border-2 {
2073
+ border-width: 2px;
2074
+ }
2075
+
2076
+ .border-4 {
2077
+ border-width: 4px;
2078
+ }
2079
+
2080
+ .border-b {
2081
+ border-bottom-width: 1px;
2082
+ }
2083
+
2084
+ .border-b-2 {
2085
+ border-bottom-width: 2px;
2086
+ }
2087
+
2088
+ .border-b-8 {
2089
+ border-bottom-width: 8px;
2090
+ }
2091
+
2092
+ .border-l {
2093
+ border-left-width: 1px;
2094
+ }
2095
+
2096
+ .border-l-4 {
2097
+ border-left-width: 4px;
2098
+ }
2099
+
2100
+ .border-r {
2101
+ border-right-width: 1px;
2102
+ }
2103
+
2104
+ .border-t {
2105
+ border-top-width: 1px;
2106
+ }
2107
+
2108
+ .border-solid {
2109
+ border-style: solid;
2110
+ }
2111
+
2112
+ .border-black {
2113
+ --tw-border-opacity: 1;
2114
+ border-color: rgb(0 0 0 / var(--tw-border-opacity));
2115
+ }
2116
+
2117
+ .border-blue-800 {
2118
+ --tw-border-opacity: 1;
2119
+ border-color: rgb(30 64 175 / var(--tw-border-opacity));
2120
+ }
2121
+
2122
+ .border-gray-100 {
2123
+ --tw-border-opacity: 1;
2124
+ border-color: rgb(243 244 246 / var(--tw-border-opacity));
2125
+ }
2126
+
2127
+ .border-gray-200 {
2128
+ --tw-border-opacity: 1;
2129
+ border-color: rgb(229 231 235 / var(--tw-border-opacity));
2130
+ }
2131
+
2132
+ .border-gray-300 {
2133
+ --tw-border-opacity: 1;
2134
+ border-color: rgb(209 213 219 / var(--tw-border-opacity));
2135
+ }
2136
+
2137
+ .border-gray-400 {
2138
+ --tw-border-opacity: 1;
2139
+ border-color: rgb(156 163 175 / var(--tw-border-opacity));
2140
+ }
2141
+
2142
+ .border-gray-500 {
2143
+ --tw-border-opacity: 1;
2144
+ border-color: rgb(107 114 128 / var(--tw-border-opacity));
2145
+ }
2146
+
2147
+ .border-gray-600 {
2148
+ --tw-border-opacity: 1;
2149
+ border-color: rgb(75 85 99 / var(--tw-border-opacity));
2150
+ }
2151
+
2152
+ .border-green-500 {
2153
+ --tw-border-opacity: 1;
2154
+ border-color: rgb(34 197 94 / var(--tw-border-opacity));
2155
+ }
2156
+
2157
+ .border-red-500 {
2158
+ --tw-border-opacity: 1;
2159
+ border-color: rgb(239 68 68 / var(--tw-border-opacity));
2160
+ }
2161
+
2162
+ .border-slate-400 {
2163
+ --tw-border-opacity: 1;
2164
+ border-color: rgb(148 163 184 / var(--tw-border-opacity));
2165
+ }
2166
+
2167
+ .border-yellow-400 {
2168
+ --tw-border-opacity: 1;
2169
+ border-color: rgb(250 204 21 / var(--tw-border-opacity));
2170
+ }
2171
+
2172
+ .bg-amber-100 {
2173
+ --tw-bg-opacity: 1;
2174
+ background-color: rgb(254 243 199 / var(--tw-bg-opacity));
2175
+ }
2176
+
2177
+ .bg-amber-600 {
2178
+ --tw-bg-opacity: 1;
2179
+ background-color: rgb(217 119 6 / var(--tw-bg-opacity));
2180
+ }
2181
+
2182
+ .bg-black\/25 {
2183
+ background-color: rgb(0 0 0 / 0.25);
2184
+ }
2185
+
2186
+ .bg-blue-100 {
2187
+ --tw-bg-opacity: 1;
2188
+ background-color: rgb(219 234 254 / var(--tw-bg-opacity));
2189
+ }
2190
+
2191
+ .bg-blue-200 {
2192
+ --tw-bg-opacity: 1;
2193
+ background-color: rgb(191 219 254 / var(--tw-bg-opacity));
2194
+ }
2195
+
2196
+ .bg-cyan-100 {
2197
+ --tw-bg-opacity: 1;
2198
+ background-color: rgb(207 250 254 / var(--tw-bg-opacity));
2199
+ }
2200
+
2201
+ .bg-cyan-100\/25 {
2202
+ background-color: rgb(207 250 254 / 0.25);
2203
+ }
2204
+
2205
+ .bg-cyan-200 {
2206
+ --tw-bg-opacity: 1;
2207
+ background-color: rgb(165 243 252 / var(--tw-bg-opacity));
2208
+ }
2209
+
2210
+ .bg-cyan-700 {
2211
+ --tw-bg-opacity: 1;
2212
+ background-color: rgb(14 116 144 / var(--tw-bg-opacity));
2213
+ }
2214
+
2215
+ .bg-cyan-700\/25 {
2216
+ background-color: rgb(14 116 144 / 0.25);
2217
+ }
2218
+
2219
+ .bg-cyan-900 {
2220
+ --tw-bg-opacity: 1;
2221
+ background-color: rgb(22 78 99 / var(--tw-bg-opacity));
2222
+ }
2223
+
2224
+ .bg-gray-100 {
2225
+ --tw-bg-opacity: 1;
2226
+ background-color: rgb(243 244 246 / var(--tw-bg-opacity));
2227
+ }
2228
+
2229
+ .bg-gray-200 {
2230
+ --tw-bg-opacity: 1;
2231
+ background-color: rgb(229 231 235 / var(--tw-bg-opacity));
2232
+ }
2233
+
2234
+ .bg-gray-50 {
2235
+ --tw-bg-opacity: 1;
2236
+ background-color: rgb(249 250 251 / var(--tw-bg-opacity));
2237
+ }
2238
+
2239
+ .bg-green-100 {
2240
+ --tw-bg-opacity: 1;
2241
+ background-color: rgb(220 252 231 / var(--tw-bg-opacity));
2242
+ }
2243
+
2244
+ .bg-green-700 {
2245
+ --tw-bg-opacity: 1;
2246
+ background-color: rgb(21 128 61 / var(--tw-bg-opacity));
2247
+ }
2248
+
2249
+ .bg-neutral-50 {
2250
+ --tw-bg-opacity: 1;
2251
+ background-color: rgb(250 250 250 / var(--tw-bg-opacity));
2252
+ }
2253
+
2254
+ .bg-orange-200 {
2255
+ --tw-bg-opacity: 1;
2256
+ background-color: rgb(254 215 170 / var(--tw-bg-opacity));
2257
+ }
2258
+
2259
+ .bg-orange-300\/25 {
2260
+ background-color: rgb(253 186 116 / 0.25);
2261
+ }
2262
+
2263
+ .bg-orange-50 {
2264
+ --tw-bg-opacity: 1;
2265
+ background-color: rgb(255 247 237 / var(--tw-bg-opacity));
2266
+ }
2267
+
2268
+ .bg-orange-800\/25 {
2269
+ background-color: rgb(154 52 18 / 0.25);
2270
+ }
2271
+
2272
+ .bg-red-100 {
2273
+ --tw-bg-opacity: 1;
2274
+ background-color: rgb(254 226 226 / var(--tw-bg-opacity));
2275
+ }
2276
+
2277
+ .bg-red-200 {
2278
+ --tw-bg-opacity: 1;
2279
+ background-color: rgb(254 202 202 / var(--tw-bg-opacity));
2280
+ }
2281
+
2282
+ .bg-red-400 {
2283
+ --tw-bg-opacity: 1;
2284
+ background-color: rgb(248 113 113 / var(--tw-bg-opacity));
2285
+ }
2286
+
2287
+ .bg-red-50 {
2288
+ --tw-bg-opacity: 1;
2289
+ background-color: rgb(254 242 242 / var(--tw-bg-opacity));
2290
+ }
2291
+
2292
+ .bg-red-500 {
2293
+ --tw-bg-opacity: 1;
2294
+ background-color: rgb(239 68 68 / var(--tw-bg-opacity));
2295
+ }
2296
+
2297
+ .bg-red-600 {
2298
+ --tw-bg-opacity: 1;
2299
+ background-color: rgb(220 38 38 / var(--tw-bg-opacity));
2300
+ }
2301
+
2302
+ .bg-red-700 {
2303
+ --tw-bg-opacity: 1;
2304
+ background-color: rgb(185 28 28 / var(--tw-bg-opacity));
2305
+ }
2306
+
2307
+ .bg-red-900 {
2308
+ --tw-bg-opacity: 1;
2309
+ background-color: rgb(127 29 29 / var(--tw-bg-opacity));
2310
+ }
2311
+
2312
+ .bg-slate-200 {
2313
+ --tw-bg-opacity: 1;
2314
+ background-color: rgb(226 232 240 / var(--tw-bg-opacity));
2315
+ }
2316
+
2317
+ .bg-slate-900 {
2318
+ --tw-bg-opacity: 1;
2319
+ background-color: rgb(15 23 42 / var(--tw-bg-opacity));
2320
+ }
2321
+
2322
+ .bg-teal-700 {
2323
+ --tw-bg-opacity: 1;
2324
+ background-color: rgb(15 118 110 / var(--tw-bg-opacity));
2325
+ }
2326
+
2327
+ .bg-transparent {
2328
+ background-color: transparent;
2329
+ }
2330
+
2331
+ .bg-white {
2332
+ --tw-bg-opacity: 1;
2333
+ background-color: rgb(255 255 255 / var(--tw-bg-opacity));
2334
+ }
2335
+
2336
+ .bg-white\/25 {
2337
+ background-color: rgb(255 255 255 / 0.25);
2338
+ }
2339
+
2340
+ .bg-cover {
2341
+ background-size: cover;
2342
+ }
2343
+
2344
+ .bg-fixed {
2345
+ background-attachment: fixed;
2346
+ }
2347
+
2348
+ .bg-clip-padding {
2349
+ background-clip: padding-box;
2350
+ }
2351
+
2352
+ .bg-bottom {
2353
+ background-position: bottom;
2354
+ }
2355
+
2356
+ .bg-center {
2357
+ background-position: center;
2358
+ }
2359
+
2360
+ .bg-left {
2361
+ background-position: left;
2362
+ }
2363
+
2364
+ .bg-left-bottom {
2365
+ background-position: left bottom;
2366
+ }
2367
+
2368
+ .bg-left-top {
2369
+ background-position: left top;
2370
+ }
2371
+
2372
+ .bg-right {
2373
+ background-position: right;
2374
+ }
2375
+
2376
+ .bg-right-bottom {
2377
+ background-position: right bottom;
2378
+ }
2379
+
2380
+ .bg-right-top {
2381
+ background-position: right top;
2382
+ }
2383
+
2384
+ .bg-top {
2385
+ background-position: top;
2386
+ }
2387
+
2388
+ .bg-no-repeat {
2389
+ background-repeat: no-repeat;
2390
+ }
2391
+
2392
+ .object-contain {
2393
+ -o-object-fit: contain;
2394
+ object-fit: contain;
2395
+ }
2396
+
2397
+ .object-cover {
2398
+ -o-object-fit: cover;
2399
+ object-fit: cover;
2400
+ }
2401
+
2402
+ .p-2 {
2403
+ padding: 0.5rem;
2404
+ }
2405
+
2406
+ .p-20 {
2407
+ padding: 5rem;
2408
+ }
2409
+
2410
+ .p-4 {
2411
+ padding: 1rem;
2412
+ }
2413
+
2414
+ .p-5 {
2415
+ padding: 1.25rem;
2416
+ }
2417
+
2418
+ .p-6 {
2419
+ padding: 1.5rem;
2420
+ }
2421
+
2422
+ .p-8 {
2423
+ padding: 2rem;
2424
+ }
2425
+
2426
+ .p-px {
2427
+ padding: 1px;
2428
+ }
2429
+
2430
+ .px-0 {
2431
+ padding-left: 0px;
2432
+ padding-right: 0px;
2433
+ }
2434
+
2435
+ .px-2 {
2436
+ padding-left: 0.5rem;
2437
+ padding-right: 0.5rem;
2438
+ }
2439
+
2440
+ .px-20 {
2441
+ padding-left: 5rem;
2442
+ padding-right: 5rem;
2443
+ }
2444
+
2445
+ .px-3 {
2446
+ padding-left: 0.75rem;
2447
+ padding-right: 0.75rem;
2448
+ }
2449
+
2450
+ .px-4 {
2451
+ padding-left: 1rem;
2452
+ padding-right: 1rem;
2453
+ }
2454
+
2455
+ .px-5 {
2456
+ padding-left: 1.25rem;
2457
+ padding-right: 1.25rem;
2458
+ }
2459
+
2460
+ .px-6 {
2461
+ padding-left: 1.5rem;
2462
+ padding-right: 1.5rem;
2463
+ }
2464
+
2465
+ .py-1 {
2466
+ padding-top: 0.25rem;
2467
+ padding-bottom: 0.25rem;
2468
+ }
2469
+
2470
+ .py-1\.5 {
2471
+ padding-top: 0.375rem;
2472
+ padding-bottom: 0.375rem;
2473
+ }
2474
+
2475
+ .py-2 {
2476
+ padding-top: 0.5rem;
2477
+ padding-bottom: 0.5rem;
2478
+ }
2479
+
2480
+ .py-2\.5 {
2481
+ padding-top: 0.625rem;
2482
+ padding-bottom: 0.625rem;
2483
+ }
2484
+
2485
+ .py-24 {
2486
+ padding-top: 6rem;
2487
+ padding-bottom: 6rem;
2488
+ }
2489
+
2490
+ .py-3 {
2491
+ padding-top: 0.75rem;
2492
+ padding-bottom: 0.75rem;
2493
+ }
2494
+
2495
+ .py-4 {
2496
+ padding-top: 1rem;
2497
+ padding-bottom: 1rem;
2498
+ }
2499
+
2500
+ .py-8 {
2501
+ padding-top: 2rem;
2502
+ padding-bottom: 2rem;
2503
+ }
2504
+
2505
+ .pb-2 {
2506
+ padding-bottom: 0.5rem;
2507
+ }
2508
+
2509
+ .pb-4 {
2510
+ padding-bottom: 1rem;
2511
+ }
2512
+
2513
+ .pb-6 {
2514
+ padding-bottom: 1.5rem;
2515
+ }
2516
+
2517
+ .pr-12 {
2518
+ padding-right: 3rem;
2519
+ }
2520
+
2521
+ .pr-16 {
2522
+ padding-right: 4rem;
2523
+ }
2524
+
2525
+ .pr-2 {
2526
+ padding-right: 0.5rem;
2527
+ }
2528
+
2529
+ .pt-10 {
2530
+ padding-top: 2.5rem;
2531
+ }
2532
+
2533
+ .pt-4 {
2534
+ padding-top: 1rem;
2535
+ }
2536
+
2537
+ .text-left {
2538
+ text-align: left;
2539
+ }
2540
+
2541
+ .text-center {
2542
+ text-align: center;
2543
+ }
2544
+
2545
+ .text-right {
2546
+ text-align: right;
2547
+ }
2548
+
2549
+ .align-top {
2550
+ vertical-align: top;
2551
+ }
2552
+
2553
+ .align-bottom {
2554
+ vertical-align: bottom;
2555
+ }
2556
+
2557
+ .text-2xl {
2558
+ font-size: 1.5rem;
2559
+ line-height: 2rem;
2560
+ }
2561
+
2562
+ .text-3xl {
2563
+ font-size: 1.875rem;
2564
+ line-height: 2.25rem;
2565
+ }
2566
+
2567
+ .text-4xl {
2568
+ font-size: 2.25rem;
2569
+ line-height: 2.5rem;
2570
+ }
2571
+
2572
+ .text-base {
2573
+ font-size: 1rem;
2574
+ line-height: 1.5rem;
2575
+ }
2576
+
2577
+ .text-lg {
2578
+ font-size: 1.125rem;
2579
+ line-height: 1.75rem;
2580
+ }
2581
+
2582
+ .text-sm {
2583
+ font-size: 0.875rem;
2584
+ line-height: 1.25rem;
2585
+ }
2586
+
2587
+ .text-xl {
2588
+ font-size: 1.25rem;
2589
+ line-height: 1.75rem;
2590
+ }
2591
+
2592
+ .text-xs {
2593
+ font-size: 0.75rem;
2594
+ line-height: 1rem;
2595
+ }
2596
+
2597
+ .font-bold {
2598
+ font-weight: 700;
2599
+ }
2600
+
2601
+ .font-extrabold {
2602
+ font-weight: 800;
2603
+ }
2604
+
2605
+ .font-medium {
2606
+ font-weight: 500;
2607
+ }
2608
+
2609
+ .font-normal {
2610
+ font-weight: 400;
2611
+ }
2612
+
2613
+ .font-semibold {
2614
+ font-weight: 600;
2615
+ }
2616
+
2617
+ .capitalize {
2618
+ text-transform: capitalize;
2619
+ }
2620
+
2621
+ .leading-5 {
2622
+ line-height: 1.25rem;
2623
+ }
2624
+
2625
+ .leading-none {
2626
+ line-height: 1;
2627
+ }
2628
+
2629
+ .leading-relaxed {
2630
+ line-height: 1.625;
2631
+ }
2632
+
2633
+ .tracking-tight {
2634
+ letter-spacing: -0.025em;
2635
+ }
2636
+
2637
+ .tracking-widest {
2638
+ letter-spacing: 0.1em;
2639
+ }
2640
+
2641
+ .text-amber-700 {
2642
+ --tw-text-opacity: 1;
2643
+ color: rgb(180 83 9 / var(--tw-text-opacity));
2644
+ }
2645
+
2646
+ .text-black {
2647
+ --tw-text-opacity: 1;
2648
+ color: rgb(0 0 0 / var(--tw-text-opacity));
2649
+ }
2650
+
2651
+ .text-blue-700 {
2652
+ --tw-text-opacity: 1;
2653
+ color: rgb(29 78 216 / var(--tw-text-opacity));
2654
+ }
2655
+
2656
+ .text-cyan-100 {
2657
+ --tw-text-opacity: 1;
2658
+ color: rgb(207 250 254 / var(--tw-text-opacity));
2659
+ }
2660
+
2661
+ .text-cyan-700 {
2662
+ --tw-text-opacity: 1;
2663
+ color: rgb(14 116 144 / var(--tw-text-opacity));
2664
+ }
2665
+
2666
+ .text-gray-100 {
2667
+ --tw-text-opacity: 1;
2668
+ color: rgb(243 244 246 / var(--tw-text-opacity));
2669
+ }
2670
+
2671
+ .text-gray-500 {
2672
+ --tw-text-opacity: 1;
2673
+ color: rgb(107 114 128 / var(--tw-text-opacity));
2674
+ }
2675
+
2676
+ .text-gray-700 {
2677
+ --tw-text-opacity: 1;
2678
+ color: rgb(55 65 81 / var(--tw-text-opacity));
2679
+ }
2680
+
2681
+ .text-gray-800 {
2682
+ --tw-text-opacity: 1;
2683
+ color: rgb(31 41 55 / var(--tw-text-opacity));
2684
+ }
2685
+
2686
+ .text-gray-900 {
2687
+ --tw-text-opacity: 1;
2688
+ color: rgb(17 24 39 / var(--tw-text-opacity));
2689
+ }
2690
+
2691
+ .text-green-600 {
2692
+ --tw-text-opacity: 1;
2693
+ color: rgb(22 163 74 / var(--tw-text-opacity));
2694
+ }
2695
+
2696
+ .text-green-700 {
2697
+ --tw-text-opacity: 1;
2698
+ color: rgb(21 128 61 / var(--tw-text-opacity));
2699
+ }
2700
+
2701
+ .text-indigo-800 {
2702
+ --tw-text-opacity: 1;
2703
+ color: rgb(55 48 163 / var(--tw-text-opacity));
2704
+ }
2705
+
2706
+ .text-orange-800 {
2707
+ --tw-text-opacity: 1;
2708
+ color: rgb(154 52 18 / var(--tw-text-opacity));
2709
+ }
2710
+
2711
+ .text-red-700 {
2712
+ --tw-text-opacity: 1;
2713
+ color: rgb(185 28 28 / var(--tw-text-opacity));
2714
+ }
2715
+
2716
+ .text-slate-800 {
2717
+ --tw-text-opacity: 1;
2718
+ color: rgb(30 41 59 / var(--tw-text-opacity));
2719
+ }
2720
+
2721
+ .text-teal-700 {
2722
+ --tw-text-opacity: 1;
2723
+ color: rgb(15 118 110 / var(--tw-text-opacity));
2724
+ }
2725
+
2726
+ .text-white {
2727
+ --tw-text-opacity: 1;
2728
+ color: rgb(255 255 255 / var(--tw-text-opacity));
2729
+ }
2730
+
2731
+ .underline {
2732
+ text-decoration-line: underline;
2733
+ }
2734
+
2735
+ .shadow-sm {
2736
+ --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
2737
+ --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
2738
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
2739
+ }
2740
+
2741
+ .shadow-xl {
2742
+ --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
2743
+ --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
2744
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
2745
+ }
2746
+
2747
+ .filter {
2748
+ 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);
2749
+ }
2750
+
2751
+ .transition {
2752
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
2753
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
2754
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
2755
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
2756
+ transition-duration: 150ms;
2757
+ }
2758
+
2759
+ .transition-colors {
2760
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
2761
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
2762
+ transition-duration: 150ms;
2763
+ }
2764
+
2765
+ .duration-300 {
2766
+ transition-duration: 300ms;
2767
+ }
2768
+
2769
+ .duration-700 {
2770
+ transition-duration: 700ms;
2771
+ }
2772
+
2773
+ .ease-in {
2774
+ transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
2775
+ }
2776
+
2777
+ .prose {
2778
+ max-width: 100%;
2779
+ color: inherit;
2780
+ --tw-prose-bullets: #6b7280;
2781
+ --tw-prose-headings: inherit;
2782
+ }
2783
+
2784
+ @media (min-width: 768px) {
2785
+ .md\:prose-lg {
2786
+ font-size: 1.125rem;
2787
+ line-height: 1.7777778;
2788
+ }
2789
+
2790
+ .md\:prose-lg :where(p):not(:where([class~="not-prose"] *)) {
2791
+ margin-top: 1.3333333em;
2792
+ margin-bottom: 1.3333333em;
2793
+ }
2794
+
2795
+ .md\:prose-lg :where([class~="lead"]):not(:where([class~="not-prose"] *)) {
2796
+ font-size: 1.2222222em;
2797
+ line-height: 1.4545455;
2798
+ margin-top: 1.0909091em;
2799
+ margin-bottom: 1.0909091em;
2800
+ }
2801
+
2802
+ .md\:prose-lg :where(blockquote):not(:where([class~="not-prose"] *)) {
2803
+ margin-top: 1.6666667em;
2804
+ margin-bottom: 1.6666667em;
2805
+ padding-left: 1em;
2806
+ }
2807
+
2808
+ .md\:prose-lg :where(h1):not(:where([class~="not-prose"] *)) {
2809
+ font-size: 2.6666667em;
2810
+ margin-top: 0;
2811
+ margin-bottom: 0.8333333em;
2812
+ line-height: 1;
2813
+ }
2814
+
2815
+ .md\:prose-lg :where(h2):not(:where([class~="not-prose"] *)) {
2816
+ font-size: 1.6666667em;
2817
+ margin-top: 1.8666667em;
2818
+ margin-bottom: 1.0666667em;
2819
+ line-height: 1.3333333;
2820
+ }
2821
+
2822
+ .md\:prose-lg :where(h3):not(:where([class~="not-prose"] *)) {
2823
+ font-size: 1.3333333em;
2824
+ margin-top: 1.6666667em;
2825
+ margin-bottom: 0.6666667em;
2826
+ line-height: 1.5;
2827
+ }
2828
+
2829
+ .md\:prose-lg :where(h4):not(:where([class~="not-prose"] *)) {
2830
+ margin-top: 1.7777778em;
2831
+ margin-bottom: 0.4444444em;
2832
+ line-height: 1.5555556;
2833
+ }
2834
+
2835
+ .md\:prose-lg :where(img):not(:where([class~="not-prose"] *)) {
2836
+ margin-top: 1.7777778em;
2837
+ margin-bottom: 1.7777778em;
2838
+ }
2839
+
2840
+ .md\:prose-lg :where(video):not(:where([class~="not-prose"] *)) {
2841
+ margin-top: 1.7777778em;
2842
+ margin-bottom: 1.7777778em;
2843
+ }
2844
+
2845
+ .md\:prose-lg :where(figure):not(:where([class~="not-prose"] *)) {
2846
+ margin-top: 1.7777778em;
2847
+ margin-bottom: 1.7777778em;
2848
+ }
2849
+
2850
+ .md\:prose-lg :where(figure > *):not(:where([class~="not-prose"] *)) {
2851
+ margin-top: 0;
2852
+ margin-bottom: 0;
2853
+ }
2854
+
2855
+ .md\:prose-lg :where(figcaption):not(:where([class~="not-prose"] *)) {
2856
+ font-size: 0.8888889em;
2857
+ line-height: 1.5;
2858
+ margin-top: 1em;
2859
+ }
2860
+
2861
+ .md\:prose-lg :where(code):not(:where([class~="not-prose"] *)) {
2862
+ font-size: 0.8888889em;
2863
+ }
2864
+
2865
+ .md\:prose-lg :where(h2 code):not(:where([class~="not-prose"] *)) {
2866
+ font-size: 0.8666667em;
2867
+ }
2868
+
2869
+ .md\:prose-lg :where(h3 code):not(:where([class~="not-prose"] *)) {
2870
+ font-size: 0.875em;
2871
+ }
2872
+
2873
+ .md\:prose-lg :where(pre):not(:where([class~="not-prose"] *)) {
2874
+ font-size: 0.8888889em;
2875
+ line-height: 1.75;
2876
+ margin-top: 2em;
2877
+ margin-bottom: 2em;
2878
+ border-radius: 0.375rem;
2879
+ padding-top: 1em;
2880
+ padding-right: 1.5em;
2881
+ padding-bottom: 1em;
2882
+ padding-left: 1.5em;
2883
+ }
2884
+
2885
+ .md\:prose-lg :where(ol):not(:where([class~="not-prose"] *)) {
2886
+ margin-top: 1.3333333em;
2887
+ margin-bottom: 1.3333333em;
2888
+ padding-left: 1.5555556em;
2889
+ }
2890
+
2891
+ .md\:prose-lg :where(ul):not(:where([class~="not-prose"] *)) {
2892
+ margin-top: 1.3333333em;
2893
+ margin-bottom: 1.3333333em;
2894
+ padding-left: 1.5555556em;
2895
+ }
2896
+
2897
+ .md\:prose-lg :where(li):not(:where([class~="not-prose"] *)) {
2898
+ margin-top: 0.6666667em;
2899
+ margin-bottom: 0.6666667em;
2900
+ }
2901
+
2902
+ .md\:prose-lg :where(ol > li):not(:where([class~="not-prose"] *)) {
2903
+ padding-left: 0.4444444em;
2904
+ }
2905
+
2906
+ .md\:prose-lg :where(ul > li):not(:where([class~="not-prose"] *)) {
2907
+ padding-left: 0.4444444em;
2908
+ }
2909
+
2910
+ .md\:prose-lg :where(.prose > ul > li p):not(:where([class~="not-prose"] *)) {
2911
+ margin-top: 0.8888889em;
2912
+ margin-bottom: 0.8888889em;
2913
+ }
2914
+
2915
+ .md\:prose-lg :where(.prose > ul > li > *:first-child):not(:where([class~="not-prose"] *)) {
2916
+ margin-top: 1.3333333em;
2917
+ }
2918
+
2919
+ .md\:prose-lg :where(.prose > ul > li > *:last-child):not(:where([class~="not-prose"] *)) {
2920
+ margin-bottom: 1.3333333em;
2921
+ }
2922
+
2923
+ .md\:prose-lg :where(.prose > ol > li > *:first-child):not(:where([class~="not-prose"] *)) {
2924
+ margin-top: 1.3333333em;
2925
+ }
2926
+
2927
+ .md\:prose-lg :where(.prose > ol > li > *:last-child):not(:where([class~="not-prose"] *)) {
2928
+ margin-bottom: 1.3333333em;
2929
+ }
2930
+
2931
+ .md\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"] *)) {
2932
+ margin-top: 0.8888889em;
2933
+ margin-bottom: 0.8888889em;
2934
+ }
2935
+
2936
+ .md\:prose-lg :where(hr):not(:where([class~="not-prose"] *)) {
2937
+ margin-top: 3.1111111em;
2938
+ margin-bottom: 3.1111111em;
2939
+ }
2940
+
2941
+ .md\:prose-lg :where(hr + *):not(:where([class~="not-prose"] *)) {
2942
+ margin-top: 0;
2943
+ }
2944
+
2945
+ .md\:prose-lg :where(h2 + *):not(:where([class~="not-prose"] *)) {
2946
+ margin-top: 0;
2947
+ }
2948
+
2949
+ .md\:prose-lg :where(h3 + *):not(:where([class~="not-prose"] *)) {
2950
+ margin-top: 0;
2951
+ }
2952
+
2953
+ .md\:prose-lg :where(h4 + *):not(:where([class~="not-prose"] *)) {
2954
+ margin-top: 0;
2955
+ }
2956
+
2957
+ .md\:prose-lg :where(table):not(:where([class~="not-prose"] *)) {
2958
+ font-size: 0.8888889em;
2959
+ line-height: 1.5;
2960
+ }
2961
+
2962
+ .md\:prose-lg :where(thead th):not(:where([class~="not-prose"] *)) {
2963
+ padding-right: 0.75em;
2964
+ padding-bottom: 0.75em;
2965
+ padding-left: 0.75em;
2966
+ }
2967
+
2968
+ .md\:prose-lg :where(thead th:first-child):not(:where([class~="not-prose"] *)) {
2969
+ padding-left: 0;
2970
+ }
2971
+
2972
+ .md\:prose-lg :where(thead th:last-child):not(:where([class~="not-prose"] *)) {
2973
+ padding-right: 0;
2974
+ }
2975
+
2976
+ .md\:prose-lg :where(tbody td, tfoot td):not(:where([class~="not-prose"] *)) {
2977
+ padding-top: 0.75em;
2978
+ padding-right: 0.75em;
2979
+ padding-bottom: 0.75em;
2980
+ padding-left: 0.75em;
2981
+ }
2982
+
2983
+ .md\:prose-lg :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"] *)) {
2984
+ padding-left: 0;
2985
+ }
2986
+
2987
+ .md\:prose-lg :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"] *)) {
2988
+ padding-right: 0;
2989
+ }
2990
+
2991
+ .md\:prose-lg :where(.prose > :first-child):not(:where([class~="not-prose"] *)) {
2992
+ margin-top: 0;
2993
+ }
2994
+
2995
+ .md\:prose-lg :where(.prose > :last-child):not(:where([class~="not-prose"] *)) {
2996
+ margin-bottom: 0;
2997
+ }
2998
+ }
2999
+
3000
+ @media (min-width: 1024px) {
3001
+ .lg\:prose-xl {
3002
+ font-size: 1.25rem;
3003
+ line-height: 1.8;
3004
+ }
3005
+
3006
+ .lg\:prose-xl :where(p):not(:where([class~="not-prose"] *)) {
3007
+ margin-top: 1.2em;
3008
+ margin-bottom: 1.2em;
3009
+ }
3010
+
3011
+ .lg\:prose-xl :where([class~="lead"]):not(:where([class~="not-prose"] *)) {
3012
+ font-size: 1.2em;
3013
+ line-height: 1.5;
3014
+ margin-top: 1em;
3015
+ margin-bottom: 1em;
3016
+ }
3017
+
3018
+ .lg\:prose-xl :where(blockquote):not(:where([class~="not-prose"] *)) {
3019
+ margin-top: 1.6em;
3020
+ margin-bottom: 1.6em;
3021
+ padding-left: 1.0666667em;
3022
+ }
3023
+
3024
+ .lg\:prose-xl :where(h1):not(:where([class~="not-prose"] *)) {
3025
+ font-size: 2.8em;
3026
+ margin-top: 0;
3027
+ margin-bottom: 0.8571429em;
3028
+ line-height: 1;
3029
+ }
3030
+
3031
+ .lg\:prose-xl :where(h2):not(:where([class~="not-prose"] *)) {
3032
+ font-size: 1.8em;
3033
+ margin-top: 1.5555556em;
3034
+ margin-bottom: 0.8888889em;
3035
+ line-height: 1.1111111;
3036
+ }
3037
+
3038
+ .lg\:prose-xl :where(h3):not(:where([class~="not-prose"] *)) {
3039
+ font-size: 1.5em;
3040
+ margin-top: 1.6em;
3041
+ margin-bottom: 0.6666667em;
3042
+ line-height: 1.3333333;
3043
+ }
3044
+
3045
+ .lg\:prose-xl :where(h4):not(:where([class~="not-prose"] *)) {
3046
+ margin-top: 1.8em;
3047
+ margin-bottom: 0.6em;
3048
+ line-height: 1.6;
3049
+ }
3050
+
3051
+ .lg\:prose-xl :where(img):not(:where([class~="not-prose"] *)) {
3052
+ margin-top: 2em;
3053
+ margin-bottom: 2em;
3054
+ }
3055
+
3056
+ .lg\:prose-xl :where(video):not(:where([class~="not-prose"] *)) {
3057
+ margin-top: 2em;
3058
+ margin-bottom: 2em;
3059
+ }
3060
+
3061
+ .lg\:prose-xl :where(figure):not(:where([class~="not-prose"] *)) {
3062
+ margin-top: 2em;
3063
+ margin-bottom: 2em;
3064
+ }
3065
+
3066
+ .lg\:prose-xl :where(figure > *):not(:where([class~="not-prose"] *)) {
3067
+ margin-top: 0;
3068
+ margin-bottom: 0;
3069
+ }
3070
+
3071
+ .lg\:prose-xl :where(figcaption):not(:where([class~="not-prose"] *)) {
3072
+ font-size: 0.9em;
3073
+ line-height: 1.5555556;
3074
+ margin-top: 1em;
3075
+ }
3076
+
3077
+ .lg\:prose-xl :where(code):not(:where([class~="not-prose"] *)) {
3078
+ font-size: 0.9em;
3079
+ }
3080
+
3081
+ .lg\:prose-xl :where(h2 code):not(:where([class~="not-prose"] *)) {
3082
+ font-size: 0.8611111em;
3083
+ }
3084
+
3085
+ .lg\:prose-xl :where(h3 code):not(:where([class~="not-prose"] *)) {
3086
+ font-size: 0.9em;
3087
+ }
3088
+
3089
+ .lg\:prose-xl :where(pre):not(:where([class~="not-prose"] *)) {
3090
+ font-size: 0.9em;
3091
+ line-height: 1.7777778;
3092
+ margin-top: 2em;
3093
+ margin-bottom: 2em;
3094
+ border-radius: 0.5rem;
3095
+ padding-top: 1.1111111em;
3096
+ padding-right: 1.3333333em;
3097
+ padding-bottom: 1.1111111em;
3098
+ padding-left: 1.3333333em;
3099
+ }
3100
+
3101
+ .lg\:prose-xl :where(ol):not(:where([class~="not-prose"] *)) {
3102
+ margin-top: 1.2em;
3103
+ margin-bottom: 1.2em;
3104
+ padding-left: 1.6em;
3105
+ }
3106
+
3107
+ .lg\:prose-xl :where(ul):not(:where([class~="not-prose"] *)) {
3108
+ margin-top: 1.2em;
3109
+ margin-bottom: 1.2em;
3110
+ padding-left: 1.6em;
3111
+ }
3112
+
3113
+ .lg\:prose-xl :where(li):not(:where([class~="not-prose"] *)) {
3114
+ margin-top: 0.6em;
3115
+ margin-bottom: 0.6em;
3116
+ }
3117
+
3118
+ .lg\:prose-xl :where(ol > li):not(:where([class~="not-prose"] *)) {
3119
+ padding-left: 0.4em;
3120
+ }
3121
+
3122
+ .lg\:prose-xl :where(ul > li):not(:where([class~="not-prose"] *)) {
3123
+ padding-left: 0.4em;
3124
+ }
3125
+
3126
+ .lg\:prose-xl :where(.prose > ul > li p):not(:where([class~="not-prose"] *)) {
3127
+ margin-top: 0.8em;
3128
+ margin-bottom: 0.8em;
3129
+ }
3130
+
3131
+ .lg\:prose-xl :where(.prose > ul > li > *:first-child):not(:where([class~="not-prose"] *)) {
3132
+ margin-top: 1.2em;
3133
+ }
3134
+
3135
+ .lg\:prose-xl :where(.prose > ul > li > *:last-child):not(:where([class~="not-prose"] *)) {
3136
+ margin-bottom: 1.2em;
3137
+ }
3138
+
3139
+ .lg\:prose-xl :where(.prose > ol > li > *:first-child):not(:where([class~="not-prose"] *)) {
3140
+ margin-top: 1.2em;
3141
+ }
3142
+
3143
+ .lg\:prose-xl :where(.prose > ol > li > *:last-child):not(:where([class~="not-prose"] *)) {
3144
+ margin-bottom: 1.2em;
3145
+ }
3146
+
3147
+ .lg\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"] *)) {
3148
+ margin-top: 0.8em;
3149
+ margin-bottom: 0.8em;
3150
+ }
3151
+
3152
+ .lg\:prose-xl :where(hr):not(:where([class~="not-prose"] *)) {
3153
+ margin-top: 2.8em;
3154
+ margin-bottom: 2.8em;
3155
+ }
3156
+
3157
+ .lg\:prose-xl :where(hr + *):not(:where([class~="not-prose"] *)) {
3158
+ margin-top: 0;
3159
+ }
3160
+
3161
+ .lg\:prose-xl :where(h2 + *):not(:where([class~="not-prose"] *)) {
3162
+ margin-top: 0;
3163
+ }
3164
+
3165
+ .lg\:prose-xl :where(h3 + *):not(:where([class~="not-prose"] *)) {
3166
+ margin-top: 0;
3167
+ }
3168
+
3169
+ .lg\:prose-xl :where(h4 + *):not(:where([class~="not-prose"] *)) {
3170
+ margin-top: 0;
3171
+ }
3172
+
3173
+ .lg\:prose-xl :where(table):not(:where([class~="not-prose"] *)) {
3174
+ font-size: 0.9em;
3175
+ line-height: 1.5555556;
3176
+ }
3177
+
3178
+ .lg\:prose-xl :where(thead th):not(:where([class~="not-prose"] *)) {
3179
+ padding-right: 0.6666667em;
3180
+ padding-bottom: 0.8888889em;
3181
+ padding-left: 0.6666667em;
3182
+ }
3183
+
3184
+ .lg\:prose-xl :where(thead th:first-child):not(:where([class~="not-prose"] *)) {
3185
+ padding-left: 0;
3186
+ }
3187
+
3188
+ .lg\:prose-xl :where(thead th:last-child):not(:where([class~="not-prose"] *)) {
3189
+ padding-right: 0;
3190
+ }
3191
+
3192
+ .lg\:prose-xl :where(tbody td, tfoot td):not(:where([class~="not-prose"] *)) {
3193
+ padding-top: 0.8888889em;
3194
+ padding-right: 0.6666667em;
3195
+ padding-bottom: 0.8888889em;
3196
+ padding-left: 0.6666667em;
3197
+ }
3198
+
3199
+ .lg\:prose-xl :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"] *)) {
3200
+ padding-left: 0;
3201
+ }
3202
+
3203
+ .lg\:prose-xl :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"] *)) {
3204
+ padding-right: 0;
3205
+ }
3206
+
3207
+ .lg\:prose-xl :where(.prose > :first-child):not(:where([class~="not-prose"] *)) {
3208
+ margin-top: 0;
3209
+ }
3210
+
3211
+ .lg\:prose-xl :where(.prose > :last-child):not(:where([class~="not-prose"] *)) {
3212
+ margin-bottom: 0;
3213
+ }
3214
+ }
3215
+
3216
+ .hover\:scale-105:hover {
3217
+ --tw-scale-x: 1.05;
3218
+ --tw-scale-y: 1.05;
3219
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
3220
+ }
3221
+
3222
+ .hover\:scale-110:hover {
3223
+ --tw-scale-x: 1.1;
3224
+ --tw-scale-y: 1.1;
3225
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
3226
+ }
3227
+
3228
+ .hover\:border-black:hover {
3229
+ --tw-border-opacity: 1;
3230
+ border-color: rgb(0 0 0 / var(--tw-border-opacity));
3231
+ }
3232
+
3233
+ .hover\:bg-blue-800:hover {
3234
+ --tw-bg-opacity: 1;
3235
+ background-color: rgb(30 64 175 / var(--tw-bg-opacity));
3236
+ }
3237
+
3238
+ .hover\:bg-red-50:hover {
3239
+ --tw-bg-opacity: 1;
3240
+ background-color: rgb(254 242 242 / var(--tw-bg-opacity));
3241
+ }
3242
+
3243
+ .hover\:bg-sky-100:hover {
3244
+ --tw-bg-opacity: 1;
3245
+ background-color: rgb(224 242 254 / var(--tw-bg-opacity));
3246
+ }
3247
+
3248
+ .hover\:text-gray-500:hover {
3249
+ --tw-text-opacity: 1;
3250
+ color: rgb(107 114 128 / var(--tw-text-opacity));
3251
+ }
3252
+
3253
+ .hover\:text-gray-500\/75:hover {
3254
+ color: rgb(107 114 128 / 0.75);
3255
+ }
3256
+
3257
+ .hover\:shadow-xl:hover {
3258
+ --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
3259
+ --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
3260
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
3261
+ }
3262
+
3263
+ .focus\:border-blue-600:focus {
3264
+ --tw-border-opacity: 1;
3265
+ border-color: rgb(37 99 235 / var(--tw-border-opacity));
3266
+ }
3267
+
3268
+ .focus\:outline-none:focus {
3269
+ outline: 2px solid transparent;
3270
+ outline-offset: 2px;
3271
+ }
3272
+
3273
+ .focus\:ring-0:focus {
3274
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
3275
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
3276
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
3277
+ }
3278
+
3279
+ .group:hover .group-hover\:translate-x-1 {
3280
+ --tw-translate-x: 0.25rem;
3281
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
3282
+ }
3283
+
3284
+ .group:hover .group-hover\:scale-x-100 {
3285
+ --tw-scale-x: 1;
3286
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
3287
+ }
3288
+
3289
+ .group:hover .group-hover\:scale-y-100 {
3290
+ --tw-scale-y: 1;
3291
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
3292
+ }
3293
+
3294
+ .group:hover .group-hover\:bg-black {
3295
+ --tw-bg-opacity: 1;
3296
+ background-color: rgb(0 0 0 / var(--tw-bg-opacity));
3297
+ }
3298
+
3299
+ .group:hover .group-hover\:text-white {
3300
+ --tw-text-opacity: 1;
3301
+ color: rgb(255 255 255 / var(--tw-text-opacity));
3302
+ }
3303
+
3304
+ .peer:-moz-placeholder-shown ~ .peer-placeholder-shown\:translate-y-0 {
3305
+ --tw-translate-y: 0px;
3306
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
3307
+ }
3308
+
3309
+ .peer:placeholder-shown ~ .peer-placeholder-shown\:translate-y-0 {
3310
+ --tw-translate-y: 0px;
3311
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
3312
+ }
3313
+
3314
+ .peer:-moz-placeholder-shown ~ .peer-placeholder-shown\:scale-100 {
3315
+ --tw-scale-x: 1;
3316
+ --tw-scale-y: 1;
3317
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
3318
+ }
3319
+
3320
+ .peer:placeholder-shown ~ .peer-placeholder-shown\:scale-100 {
3321
+ --tw-scale-x: 1;
3322
+ --tw-scale-y: 1;
3323
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
3324
+ }
3325
+
3326
+ .peer:focus ~ .peer-focus\:left-0 {
3327
+ left: 0px;
3328
+ }
3329
+
3330
+ .peer:focus ~ .peer-focus\:-translate-y-6 {
3331
+ --tw-translate-y: -1.5rem;
3332
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
3333
+ }
3334
+
3335
+ .peer:focus ~ .peer-focus\:scale-75 {
3336
+ --tw-scale-x: .75;
3337
+ --tw-scale-y: .75;
3338
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
3339
+ }
3340
+
3341
+ .peer:focus ~ .peer-focus\:text-blue-600 {
3342
+ --tw-text-opacity: 1;
3343
+ color: rgb(37 99 235 / var(--tw-text-opacity));
3344
+ }
3345
+
3346
+ .prose-headings\:text-inherit :is(:where(h1, h2, h3, h4, h5, h6, th):not(:where([class~="not-prose"] *))) {
3347
+ color: inherit;
3348
+ }
3349
+
3350
+ @media (min-width: 640px) {
3351
+ .sm\:mx-auto {
3352
+ margin-left: auto;
3353
+ margin-right: auto;
3354
+ }
3355
+
3356
+ .sm\:my-2 {
3357
+ margin-top: 0.5rem;
3358
+ margin-bottom: 0.5rem;
3359
+ }
3360
+
3361
+ .sm\:mt-4 {
3362
+ margin-top: 1rem;
3363
+ }
3364
+
3365
+ .sm\:h-full {
3366
+ height: 100%;
3367
+ }
3368
+
3369
+ .sm\:w-1\/2 {
3370
+ width: 50%;
3371
+ }
3372
+
3373
+ .sm\:px-6 {
3374
+ padding-left: 1.5rem;
3375
+ padding-right: 1.5rem;
3376
+ }
3377
+
3378
+ .sm\:text-center {
3379
+ text-align: center;
3380
+ }
3381
+
3382
+ .sm\:text-2xl {
3383
+ font-size: 1.5rem;
3384
+ line-height: 2rem;
3385
+ }
3386
+
3387
+ .sm\:text-4xl {
3388
+ font-size: 2.25rem;
3389
+ line-height: 2.5rem;
3390
+ }
3391
+
3392
+ .sm\:text-sm {
3393
+ font-size: 0.875rem;
3394
+ line-height: 1.25rem;
3395
+ }
3396
+ }
3397
+
3398
+ @media (min-width: 768px) {
3399
+ .md\:m-12 {
3400
+ margin: 3rem;
3401
+ }
3402
+
3403
+ .md\:m-20 {
3404
+ margin: 5rem;
3405
+ }
3406
+
3407
+ .md\:m-4 {
3408
+ margin: 1rem;
3409
+ }
3410
+
3411
+ .md\:m-8 {
3412
+ margin: 2rem;
3413
+ }
3414
+
3415
+ .md\:mx-12 {
3416
+ margin-left: 3rem;
3417
+ margin-right: 3rem;
3418
+ }
3419
+
3420
+ .md\:my-10 {
3421
+ margin-top: 2.5rem;
3422
+ margin-bottom: 2.5rem;
3423
+ }
3424
+
3425
+ .md\:grid {
3426
+ display: grid;
3427
+ }
3428
+
3429
+ .md\:h-60 {
3430
+ height: 15rem;
3431
+ }
3432
+
3433
+ .md\:columns-2 {
3434
+ -moz-columns: 2;
3435
+ columns: 2;
3436
+ }
3437
+
3438
+ .md\:grid-cols-2 {
3439
+ grid-template-columns: repeat(2, minmax(0, 1fr));
3440
+ }
3441
+
3442
+ .md\:grid-cols-3 {
3443
+ grid-template-columns: repeat(3, minmax(0, 1fr));
3444
+ }
3445
+
3446
+ .md\:grid-cols-4 {
3447
+ grid-template-columns: repeat(4, minmax(0, 1fr));
3448
+ }
3449
+
3450
+ .md\:flex-row {
3451
+ flex-direction: row;
3452
+ }
3453
+
3454
+ .md\:gap-12 {
3455
+ gap: 3rem;
3456
+ }
3457
+
3458
+ .md\:gap-8 {
3459
+ gap: 2rem;
3460
+ }
3461
+
3462
+ .md\:p-12 {
3463
+ padding: 3rem;
3464
+ }
3465
+
3466
+ .md\:py-10 {
3467
+ padding-top: 2.5rem;
3468
+ padding-bottom: 2.5rem;
3469
+ }
3470
+
3471
+ .md\:text-2xl {
3472
+ font-size: 1.5rem;
3473
+ line-height: 2rem;
3474
+ }
3475
+
3476
+ .md\:text-4xl {
3477
+ font-size: 2.25rem;
3478
+ line-height: 2.5rem;
3479
+ }
3480
+
3481
+ .md\:text-5xl {
3482
+ font-size: 3rem;
3483
+ line-height: 1;
3484
+ }
3485
+ }
3486
+
3487
+ @media (min-width: 1024px) {
3488
+ .lg\:m-20 {
3489
+ margin: 5rem;
3490
+ }
3491
+
3492
+ .lg\:mx-20 {
3493
+ margin-left: 5rem;
3494
+ margin-right: 5rem;
3495
+ }
3496
+
3497
+ .lg\:my-0 {
3498
+ margin-top: 0px;
3499
+ margin-bottom: 0px;
3500
+ }
3501
+
3502
+ .lg\:mb-0 {
3503
+ margin-bottom: 0px;
3504
+ }
3505
+
3506
+ .lg\:mb-8 {
3507
+ margin-bottom: 2rem;
3508
+ }
3509
+
3510
+ .lg\:ml-10 {
3511
+ margin-left: 2.5rem;
3512
+ }
3513
+
3514
+ .lg\:mt-0 {
3515
+ margin-top: 0px;
3516
+ }
3517
+
3518
+ .lg\:mt-8 {
3519
+ margin-top: 2rem;
3520
+ }
3521
+
3522
+ .lg\:h-96 {
3523
+ height: 24rem;
3524
+ }
3525
+
3526
+ .lg\:w-1\/3 {
3527
+ width: 33.333333%;
3528
+ }
3529
+
3530
+ .lg\:w-2\/3 {
3531
+ width: 66.666667%;
3532
+ }
3533
+
3534
+ .lg\:w-2\/5 {
3535
+ width: 40%;
3536
+ }
3537
+
3538
+ .lg\:w-3\/5 {
3539
+ width: 60%;
3540
+ }
3541
+
3542
+ .lg\:columns-3 {
3543
+ -moz-columns: 3;
3544
+ columns: 3;
3545
+ }
3546
+
3547
+ .lg\:grid-cols-3 {
3548
+ grid-template-columns: repeat(3, minmax(0, 1fr));
3549
+ }
3550
+
3551
+ .lg\:grid-cols-4 {
3552
+ grid-template-columns: repeat(4, minmax(0, 1fr));
3553
+ }
3554
+
3555
+ .lg\:grid-cols-5 {
3556
+ grid-template-columns: repeat(5, minmax(0, 1fr));
3557
+ }
3558
+
3559
+ .lg\:grid-cols-6 {
3560
+ grid-template-columns: repeat(6, minmax(0, 1fr));
3561
+ }
3562
+
3563
+ .lg\:flex-row {
3564
+ flex-direction: row;
3565
+ }
3566
+
3567
+ .lg\:items-center {
3568
+ align-items: center;
3569
+ }
3570
+
3571
+ .lg\:gap-12 {
3572
+ gap: 3rem;
3573
+ }
3574
+
3575
+ .lg\:gap-16 {
3576
+ gap: 4rem;
3577
+ }
3578
+
3579
+ .lg\:px-16 {
3580
+ padding-left: 4rem;
3581
+ padding-right: 4rem;
3582
+ }
3583
+
3584
+ .lg\:px-8 {
3585
+ padding-left: 2rem;
3586
+ padding-right: 2rem;
3587
+ }
3588
+
3589
+ .lg\:py-16 {
3590
+ padding-top: 4rem;
3591
+ padding-bottom: 4rem;
3592
+ }
3593
+
3594
+ .lg\:py-24 {
3595
+ padding-top: 6rem;
3596
+ padding-bottom: 6rem;
3597
+ }
3598
+ }
3599
+
3600
+ @media (min-width: 1280px) {
3601
+ .xl\:m-14 {
3602
+ margin: 3.5rem;
3603
+ }
3604
+
3605
+ .xl\:m-20 {
3606
+ margin: 5rem;
3607
+ }
3608
+
3609
+ .xl\:m-8 {
3610
+ margin: 2rem;
3611
+ }
3612
+
3613
+ .xl\:mx-auto {
3614
+ margin-left: auto;
3615
+ margin-right: auto;
3616
+ }
3617
+
3618
+ .xl\:columns-4 {
3619
+ -moz-columns: 4;
3620
+ columns: 4;
3621
+ }
3622
+
3623
+ .xl\:grid-cols-6 {
3624
+ grid-template-columns: repeat(6, minmax(0, 1fr));
3625
+ }
3626
+ }
3627
+
3628
+ @media (prefers-color-scheme: dark) {
3629
+ .peer:focus ~ .peer-focus\:dark\:text-blue-500 {
3630
+ --tw-text-opacity: 1;
3631
+ color: rgb(59 130 246 / var(--tw-text-opacity));
3632
+ }
3633
+ }