@designcrowd/fe-shared-lib 1.4.7 → 1.4.8-promocardv0

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