@mastorscdn/core 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (55) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +475 -0
  3. package/dist/mastors-core.css +4566 -0
  4. package/dist/mastors-core.css.map +1 -0
  5. package/dist/mastors-core.min.css +1 -0
  6. package/package.json +82 -0
  7. package/scss/_index.scss +109 -0
  8. package/scss/abstracts/_index.scss +5 -0
  9. package/scss/abstracts/_placeholders.scss +90 -0
  10. package/scss/accessibility/_a11y.scss +97 -0
  11. package/scss/accessibility/_index.scss +12 -0
  12. package/scss/base/_index.scss +16 -0
  13. package/scss/base/_motion.scss +19 -0
  14. package/scss/base/_reset.scss +178 -0
  15. package/scss/config/_index.scss +5 -0
  16. package/scss/config/_settings.scss +29 -0
  17. package/scss/functions/_index.scss +7 -0
  18. package/scss/functions/_map-helpers.scss +30 -0
  19. package/scss/functions/_math.scss +35 -0
  20. package/scss/functions/_token-accessors.scss +85 -0
  21. package/scss/generators/_colors.scss +30 -0
  22. package/scss/generators/_display.scss +78 -0
  23. package/scss/generators/_index.scss +18 -0
  24. package/scss/generators/_opacity.scss +13 -0
  25. package/scss/generators/_radius.scss +33 -0
  26. package/scss/generators/_shadows.scss +13 -0
  27. package/scss/generators/_transitions.scss +13 -0
  28. package/scss/generators/_zindex.scss +13 -0
  29. package/scss/helpers/_container.scss +34 -0
  30. package/scss/helpers/_index.scss +6 -0
  31. package/scss/helpers/_states.scss +120 -0
  32. package/scss/mastors-core.scss +35 -0
  33. package/scss/mixins/_css-vars.scss +77 -0
  34. package/scss/mixins/_helpers.scss +208 -0
  35. package/scss/mixins/_index.scss +7 -0
  36. package/scss/mixins/_responsive.scss +112 -0
  37. package/scss/themes/_custom.scss +33 -0
  38. package/scss/themes/_dark.scss +53 -0
  39. package/scss/themes/_index.scss +7 -0
  40. package/scss/themes/_light.scss +49 -0
  41. package/scss/tokens/_borders.scss +26 -0
  42. package/scss/tokens/_breakpoints.scss +24 -0
  43. package/scss/tokens/_colors.scss +83 -0
  44. package/scss/tokens/_index.scss +13 -0
  45. package/scss/tokens/_motion.scss +46 -0
  46. package/scss/tokens/_opacity.scss +22 -0
  47. package/scss/tokens/_radius.scss +15 -0
  48. package/scss/tokens/_shadows.scss +27 -0
  49. package/scss/tokens/_zindex.scss +27 -0
  50. package/scss/utilities/_borders.scss +35 -0
  51. package/scss/utilities/_index.scss +14 -0
  52. package/scss/utilities/_sizing.scss +131 -0
  53. package/scss/utilities/_spacing.scss +68 -0
  54. package/scss/vendors/_index.scss +5 -0
  55. package/scss/vendors/_normalize.scss +69 -0
@@ -0,0 +1,4566 @@
1
+ button::-moz-focus-inner,
2
+ [type=button]::-moz-focus-inner,
3
+ [type=reset]::-moz-focus-inner,
4
+ [type=submit]::-moz-focus-inner {
5
+ border-style: none;
6
+ padding: 0;
7
+ }
8
+
9
+ [type=number]::-webkit-inner-spin-button,
10
+ [type=number]::-webkit-outer-spin-button {
11
+ height: auto;
12
+ }
13
+
14
+ [type=search] {
15
+ -webkit-appearance: textfield;
16
+ outline-offset: -2px;
17
+ }
18
+
19
+ [type=search]::-webkit-search-decoration {
20
+ -webkit-appearance: none;
21
+ }
22
+
23
+ ::-webkit-file-upload-button {
24
+ -webkit-appearance: button;
25
+ font: inherit;
26
+ }
27
+
28
+ details {
29
+ display: block;
30
+ }
31
+
32
+ summary {
33
+ display: list-item;
34
+ }
35
+
36
+ template {
37
+ display: none;
38
+ }
39
+
40
+ sub,
41
+ sup {
42
+ font-size: 75%;
43
+ line-height: 0;
44
+ position: relative;
45
+ vertical-align: baseline;
46
+ }
47
+
48
+ sub {
49
+ bottom: -0.25em;
50
+ }
51
+
52
+ sup {
53
+ top: -0.5em;
54
+ }
55
+
56
+ abbr[title] {
57
+ text-decoration: underline dotted;
58
+ cursor: help;
59
+ border-bottom: none;
60
+ }
61
+
62
+ address {
63
+ font-style: normal;
64
+ }
65
+
66
+ blockquote,
67
+ figure {
68
+ margin: 0;
69
+ }
70
+
71
+ *,
72
+ *::before,
73
+ *::after {
74
+ box-sizing: border-box;
75
+ }
76
+
77
+ html {
78
+ line-height: 1.5;
79
+ -webkit-text-size-adjust: 100%;
80
+ -moz-tab-size: 4;
81
+ tab-size: 4;
82
+ font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
83
+ scroll-behavior: smooth;
84
+ }
85
+
86
+ @media (prefers-reduced-motion: reduce) {
87
+ html {
88
+ scroll-behavior: auto;
89
+ }
90
+ }
91
+ body {
92
+ margin: 0;
93
+ min-height: 100vh;
94
+ background-color: var(--mastors-bg-body, #ffffff);
95
+ color: var(--mastors-text-primary, #111827);
96
+ line-height: inherit;
97
+ -webkit-font-smoothing: antialiased;
98
+ -moz-osx-font-smoothing: grayscale;
99
+ }
100
+
101
+ h1, h2, h3, h4, h5, h6 {
102
+ font-size: inherit;
103
+ font-weight: inherit;
104
+ margin: 0;
105
+ }
106
+
107
+ p {
108
+ margin: 0;
109
+ }
110
+
111
+ a {
112
+ color: inherit;
113
+ text-decoration: inherit;
114
+ }
115
+
116
+ ol, ul, menu {
117
+ list-style: none;
118
+ margin: 0;
119
+ padding: 0;
120
+ }
121
+
122
+ img, svg, video, canvas, audio, iframe, embed, object {
123
+ display: block;
124
+ vertical-align: middle;
125
+ }
126
+
127
+ img, video {
128
+ max-width: 100%;
129
+ height: auto;
130
+ }
131
+
132
+ button, input, optgroup, select, textarea {
133
+ font-family: inherit;
134
+ font-size: 100%;
135
+ font-weight: inherit;
136
+ line-height: inherit;
137
+ color: inherit;
138
+ margin: 0;
139
+ padding: 0;
140
+ }
141
+
142
+ button, select {
143
+ text-transform: none;
144
+ }
145
+
146
+ button,
147
+ [type=button],
148
+ [type=reset],
149
+ [type=submit] {
150
+ -webkit-appearance: button;
151
+ background-color: transparent;
152
+ background-image: none;
153
+ cursor: pointer;
154
+ border: 0;
155
+ }
156
+
157
+ [disabled] {
158
+ cursor: not-allowed;
159
+ pointer-events: none;
160
+ }
161
+
162
+ input::-moz-placeholder,
163
+ textarea::-moz-placeholder {
164
+ opacity: 1;
165
+ color: var(--mastors-text-muted, #6b7280);
166
+ }
167
+
168
+ input::placeholder,
169
+ textarea::placeholder {
170
+ opacity: 1;
171
+ color: var(--mastors-text-muted, #6b7280);
172
+ }
173
+
174
+ textarea {
175
+ resize: vertical;
176
+ }
177
+
178
+ fieldset {
179
+ margin: 0;
180
+ padding: 0;
181
+ border: 0;
182
+ }
183
+
184
+ legend {
185
+ padding: 0;
186
+ }
187
+
188
+ table {
189
+ border-collapse: collapse;
190
+ border-spacing: 0;
191
+ width: 100%;
192
+ }
193
+
194
+ th {
195
+ font-weight: inherit;
196
+ text-align: left;
197
+ }
198
+
199
+ td, th {
200
+ padding: 0;
201
+ }
202
+
203
+ hr {
204
+ height: 0;
205
+ color: inherit;
206
+ border-top-width: 1px;
207
+ border-color: var(--mastors-border-default, #e5e7eb);
208
+ margin: 0;
209
+ }
210
+
211
+ pre, code, kbd, samp {
212
+ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
213
+ font-size: 1em;
214
+ }
215
+
216
+ summary {
217
+ display: list-item;
218
+ }
219
+
220
+ [hidden] {
221
+ display: none !important;
222
+ }
223
+
224
+ svg {
225
+ fill: currentColor;
226
+ }
227
+
228
+ ::selection {
229
+ background-color: var(--mastors-color-primary, #2563eb);
230
+ color: #ffffff;
231
+ }
232
+
233
+ @media (prefers-reduced-motion: reduce) {
234
+ *,
235
+ *::before,
236
+ *::after {
237
+ animation-duration: 0.01ms !important;
238
+ animation-iteration-count: 1 !important;
239
+ transition-duration: 0.01ms !important;
240
+ scroll-behavior: auto !important;
241
+ }
242
+ }
243
+ :root {
244
+ --mastors-text-primary: #111827;
245
+ --mastors-text-secondary: #374151;
246
+ --mastors-text-muted: #6b7280;
247
+ --mastors-text-disabled: #9ca3af;
248
+ --mastors-text-inverse: #ffffff;
249
+ --mastors-bg-body: #ffffff;
250
+ --mastors-bg-subtle: #f9fafb;
251
+ --mastors-bg-muted: #f3f4f6;
252
+ --mastors-bg-inverse: #111827;
253
+ --mastors-border-default: #e5e7eb;
254
+ --mastors-border-strong: #d1d5db;
255
+ --mastors-border-focus: #2563eb;
256
+ --mastors-surface: #ffffff;
257
+ --mastors-surface-raised: #f9fafb;
258
+ --mastors-surface-overlay: rgba(255, 255, 255, 0.95);
259
+ --mastors-shadow-ambient: 0 1px 3px rgba(0, 0, 0, 0.10);
260
+ --mastors-color-primary: #2563eb;
261
+ --mastors-color-secondary: #7c3aed;
262
+ --mastors-color-accent: #0ea5e9;
263
+ --mastors-color-success: #16a34a;
264
+ --mastors-color-warning: #d97706;
265
+ --mastors-color-danger: #dc2626;
266
+ --mastors-color-info: #0891b2;
267
+ --mastors-scrollbar-thumb: rgba(0, 0, 0, 0.2);
268
+ --mastors-scrollbar-track: transparent;
269
+ }
270
+
271
+ [data-theme=light] {
272
+ --mastors-text-primary: #111827;
273
+ --mastors-text-secondary: #374151;
274
+ --mastors-text-muted: #6b7280;
275
+ --mastors-text-disabled: #9ca3af;
276
+ --mastors-text-inverse: #ffffff;
277
+ --mastors-bg-body: #ffffff;
278
+ --mastors-bg-subtle: #f9fafb;
279
+ --mastors-bg-muted: #f3f4f6;
280
+ --mastors-bg-inverse: #111827;
281
+ --mastors-border-default: #e5e7eb;
282
+ --mastors-border-strong: #d1d5db;
283
+ --mastors-border-focus: #2563eb;
284
+ --mastors-surface: #ffffff;
285
+ --mastors-surface-raised: #f9fafb;
286
+ --mastors-surface-overlay: rgba(255, 255, 255, 0.95);
287
+ --mastors-shadow-ambient: 0 1px 3px rgba(0, 0, 0, 0.10);
288
+ --mastors-color-primary: #2563eb;
289
+ --mastors-color-secondary: #7c3aed;
290
+ --mastors-color-accent: #0ea5e9;
291
+ --mastors-color-success: #16a34a;
292
+ --mastors-color-warning: #d97706;
293
+ --mastors-color-danger: #dc2626;
294
+ --mastors-color-info: #0891b2;
295
+ --mastors-scrollbar-thumb: rgba(0, 0, 0, 0.2);
296
+ --mastors-scrollbar-track: transparent;
297
+ }
298
+
299
+ [data-theme=dark] {
300
+ --mastors-text-primary: #f9fafb;
301
+ --mastors-text-secondary: #e5e7eb;
302
+ --mastors-text-muted: #9ca3af;
303
+ --mastors-text-disabled: #6b7280;
304
+ --mastors-text-inverse: #111827;
305
+ --mastors-bg-body: #0f172a;
306
+ --mastors-bg-subtle: #1e293b;
307
+ --mastors-bg-muted: #334155;
308
+ --mastors-bg-inverse: #f9fafb;
309
+ --mastors-border-default: #334155;
310
+ --mastors-border-strong: #475569;
311
+ --mastors-border-focus: #60a5fa;
312
+ --mastors-surface: #1e293b;
313
+ --mastors-surface-raised: #334155;
314
+ --mastors-surface-overlay: rgba(15, 23, 42, 0.95);
315
+ --mastors-shadow-ambient: 0 1px 3px rgba(0, 0, 0, 0.50);
316
+ --mastors-color-primary: #60a5fa;
317
+ --mastors-color-secondary: #a78bfa;
318
+ --mastors-color-accent: #38bdf8;
319
+ --mastors-color-success: #4ade80;
320
+ --mastors-color-warning: #fbbf24;
321
+ --mastors-color-danger: #f87171;
322
+ --mastors-color-info: #22d3ee;
323
+ --mastors-scrollbar-thumb: rgba(255, 255, 255, 0.2);
324
+ --mastors-scrollbar-track: transparent;
325
+ }
326
+
327
+ @media (prefers-color-scheme: dark) {
328
+ :root:not([data-theme=light]) {
329
+ --mastors-text-primary: #f9fafb;
330
+ --mastors-text-secondary: #e5e7eb;
331
+ --mastors-text-muted: #9ca3af;
332
+ --mastors-text-disabled: #6b7280;
333
+ --mastors-text-inverse: #111827;
334
+ --mastors-bg-body: #0f172a;
335
+ --mastors-bg-subtle: #1e293b;
336
+ --mastors-bg-muted: #334155;
337
+ --mastors-bg-inverse: #f9fafb;
338
+ --mastors-border-default: #334155;
339
+ --mastors-border-strong: #475569;
340
+ --mastors-border-focus: #60a5fa;
341
+ --mastors-surface: #1e293b;
342
+ --mastors-surface-raised: #334155;
343
+ --mastors-surface-overlay: rgba(15, 23, 42, 0.95);
344
+ --mastors-shadow-ambient: 0 1px 3px rgba(0, 0, 0, 0.50);
345
+ --mastors-color-primary: #60a5fa;
346
+ --mastors-color-secondary: #a78bfa;
347
+ --mastors-color-accent: #38bdf8;
348
+ --mastors-color-success: #4ade80;
349
+ --mastors-color-warning: #fbbf24;
350
+ --mastors-color-danger: #f87171;
351
+ --mastors-color-info: #22d3ee;
352
+ --mastors-scrollbar-thumb: rgba(255, 255, 255, 0.2);
353
+ --mastors-scrollbar-track: transparent;
354
+ }
355
+ }
356
+ .mastors-sr-only, .mastors-sr-only-focusable {
357
+ position: absolute;
358
+ width: 1px;
359
+ height: 1px;
360
+ padding: 0;
361
+ margin: -1px;
362
+ overflow: hidden;
363
+ clip: rect(0, 0, 0, 0);
364
+ white-space: nowrap;
365
+ border-width: 0;
366
+ }
367
+
368
+ .mastors-sr-only-focusable:focus, .mastors-sr-only-focusable:focus-within {
369
+ position: static;
370
+ width: auto;
371
+ height: auto;
372
+ padding: 0;
373
+ margin: 0;
374
+ overflow: visible;
375
+ clip: auto;
376
+ white-space: normal;
377
+ }
378
+
379
+ .mastors-skip-link {
380
+ position: absolute;
381
+ top: -9999px;
382
+ left: 1rem;
383
+ z-index: 9999;
384
+ padding: 0.5rem 1rem;
385
+ background: var(--mastors-color-primary, #2563eb);
386
+ color: #ffffff;
387
+ border-radius: 0 0 8px 8px;
388
+ font-weight: 600;
389
+ text-decoration: none;
390
+ transition: top 200ms cubic-bezier(0.4, 0, 0.2, 1);
391
+ }
392
+
393
+ .mastors-skip-link:focus {
394
+ top: 0;
395
+ outline: 3px solid #ffffff;
396
+ outline-offset: 2px;
397
+ }
398
+
399
+ :focus-visible {
400
+ outline: 3px solid var(--mastors-border-focus, #2563eb);
401
+ outline-offset: 2px;
402
+ border-radius: 2px;
403
+ }
404
+
405
+ :focus:not(:focus-visible) {
406
+ outline: none;
407
+ }
408
+
409
+ @media (forced-colors: active) {
410
+ *:focus-visible {
411
+ outline: 3px solid ButtonText;
412
+ }
413
+ }
414
+ [aria-hidden=true] {
415
+ pointer-events: none;
416
+ }
417
+
418
+ @media (prefers-reduced-motion: reduce) {
419
+ .mastors-animate {
420
+ animation: none !important;
421
+ transition: none !important;
422
+ }
423
+ }
424
+ .mastors-keyboard-nav *:focus {
425
+ outline: 3px solid var(--mastors-border-focus, #2563eb);
426
+ outline-offset: 2px;
427
+ }
428
+
429
+ .mastors-container {
430
+ width: 100%;
431
+ margin-left: auto;
432
+ margin-right: auto;
433
+ padding-left: 1rem;
434
+ padding-right: 1rem;
435
+ }
436
+ @media (min-width: 576px) {
437
+ .mastors-container {
438
+ max-width: 540px;
439
+ }
440
+ }
441
+ @media (min-width: 768px) {
442
+ .mastors-container {
443
+ max-width: 720px;
444
+ }
445
+ }
446
+ @media (min-width: 992px) {
447
+ .mastors-container {
448
+ max-width: 960px;
449
+ }
450
+ }
451
+ @media (min-width: 1200px) {
452
+ .mastors-container {
453
+ max-width: 1140px;
454
+ }
455
+ }
456
+ @media (min-width: 1400px) {
457
+ .mastors-container {
458
+ max-width: 1320px;
459
+ }
460
+ }
461
+ @media (min-width: 1600px) {
462
+ .mastors-container {
463
+ max-width: 1520px;
464
+ }
465
+ }
466
+
467
+ .mastors-container-fluid {
468
+ width: 100%;
469
+ padding-left: 1rem;
470
+ padding-right: 1rem;
471
+ margin-left: auto;
472
+ margin-right: auto;
473
+ }
474
+
475
+ .mastors-interactive {
476
+ cursor: pointer;
477
+ transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
478
+ user-select: none;
479
+ }
480
+ @media (hover: hover) and (pointer: fine) {
481
+ .mastors-interactive:hover {
482
+ opacity: 0.85;
483
+ }
484
+ }
485
+ .mastors-interactive:active {
486
+ transform: scale(0.98);
487
+ }
488
+ .mastors-interactive:disabled, .mastors-interactive[aria-disabled=true] {
489
+ opacity: 0.5;
490
+ cursor: not-allowed;
491
+ pointer-events: none;
492
+ }
493
+
494
+ @media (hover: hover) and (pointer: fine) {
495
+ .mastors-hover-opacity:hover {
496
+ opacity: 0.8;
497
+ }
498
+ }
499
+
500
+ .mastors-hover-lift {
501
+ transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1);
502
+ }
503
+ @media (hover: hover) and (pointer: fine) {
504
+ .mastors-hover-lift:hover {
505
+ transform: translateY(-4px);
506
+ box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
507
+ }
508
+ }
509
+
510
+ .mastors-hover-scale {
511
+ transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1);
512
+ }
513
+ @media (hover: hover) and (pointer: fine) {
514
+ .mastors-hover-scale:hover {
515
+ transform: scale(1.02);
516
+ }
517
+ }
518
+ .mastors-hover-scale:active {
519
+ transform: scale(0.98);
520
+ }
521
+
522
+ .mastors-skeleton {
523
+ background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
524
+ background-size: 200% 100%;
525
+ animation: mastors-skeleton-pulse 1.5s ease-in-out infinite;
526
+ border-radius: 4px;
527
+ }
528
+ @keyframes mastors-skeleton-pulse {
529
+ 0% {
530
+ background-position: 200% 0;
531
+ }
532
+ 100% {
533
+ background-position: -200% 0;
534
+ }
535
+ }
536
+ [data-theme=dark] .mastors-skeleton {
537
+ background: linear-gradient(90deg, #374151 25%, #4b5563 50%, #374151 75%);
538
+ background-size: 200% 100%;
539
+ }
540
+
541
+ .mastors-pulse {
542
+ animation: mastors-pulse-anim 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
543
+ }
544
+ @keyframes mastors-pulse-anim {
545
+ 0%, 100% {
546
+ opacity: 1;
547
+ }
548
+ 50% {
549
+ opacity: 0.5;
550
+ }
551
+ }
552
+
553
+ .mastors-spin {
554
+ animation: mastors-spin-anim 1s linear infinite;
555
+ }
556
+ @keyframes mastors-spin-anim {
557
+ from {
558
+ transform: rotate(0deg);
559
+ }
560
+ to {
561
+ transform: rotate(360deg);
562
+ }
563
+ }
564
+
565
+ .mastors-ping {
566
+ animation: mastors-ping-anim 1s cubic-bezier(0, 0, 0.2, 1) infinite;
567
+ }
568
+ @keyframes mastors-ping-anim {
569
+ 75%, 100% {
570
+ transform: scale(2);
571
+ opacity: 0;
572
+ }
573
+ }
574
+
575
+ .mastors-bounce {
576
+ animation: mastors-bounce-anim 1s infinite;
577
+ }
578
+ @keyframes mastors-bounce-anim {
579
+ 0%, 100% {
580
+ transform: translateY(-25%);
581
+ animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
582
+ }
583
+ 50% {
584
+ transform: none;
585
+ animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
586
+ }
587
+ }
588
+
589
+ .text-primary {
590
+ color: #2563eb !important;
591
+ }
592
+
593
+ .text-primary-light {
594
+ color: #60a5fa !important;
595
+ }
596
+
597
+ .text-primary-dark {
598
+ color: #1d4ed8 !important;
599
+ }
600
+
601
+ .text-secondary {
602
+ color: #7c3aed !important;
603
+ }
604
+
605
+ .text-secondary-light {
606
+ color: #a78bfa !important;
607
+ }
608
+
609
+ .text-secondary-dark {
610
+ color: #5b21b6 !important;
611
+ }
612
+
613
+ .text-accent {
614
+ color: #0ea5e9 !important;
615
+ }
616
+
617
+ .text-accent-light {
618
+ color: #38bdf8 !important;
619
+ }
620
+
621
+ .text-accent-dark {
622
+ color: #0284c7 !important;
623
+ }
624
+
625
+ .text-success {
626
+ color: #16a34a !important;
627
+ }
628
+
629
+ .text-success-light {
630
+ color: #4ade80 !important;
631
+ }
632
+
633
+ .text-success-dark {
634
+ color: #15803d !important;
635
+ }
636
+
637
+ .text-warning {
638
+ color: #d97706 !important;
639
+ }
640
+
641
+ .text-warning-light {
642
+ color: #fbbf24 !important;
643
+ }
644
+
645
+ .text-warning-dark {
646
+ color: #b45309 !important;
647
+ }
648
+
649
+ .text-danger {
650
+ color: #dc2626 !important;
651
+ }
652
+
653
+ .text-danger-light {
654
+ color: #f87171 !important;
655
+ }
656
+
657
+ .text-danger-dark {
658
+ color: #b91c1c !important;
659
+ }
660
+
661
+ .text-info {
662
+ color: #0891b2 !important;
663
+ }
664
+
665
+ .text-info-light {
666
+ color: #22d3ee !important;
667
+ }
668
+
669
+ .text-info-dark {
670
+ color: #0e7490 !important;
671
+ }
672
+
673
+ .text-white {
674
+ color: #ffffff !important;
675
+ }
676
+
677
+ .text-black {
678
+ color: #000000 !important;
679
+ }
680
+
681
+ .text-neutral-50 {
682
+ color: #f9fafb !important;
683
+ }
684
+
685
+ .text-neutral-100 {
686
+ color: #f3f4f6 !important;
687
+ }
688
+
689
+ .text-neutral-200 {
690
+ color: #e5e7eb !important;
691
+ }
692
+
693
+ .text-neutral-300 {
694
+ color: #d1d5db !important;
695
+ }
696
+
697
+ .text-neutral-400 {
698
+ color: #9ca3af !important;
699
+ }
700
+
701
+ .text-neutral-500 {
702
+ color: #6b7280 !important;
703
+ }
704
+
705
+ .text-neutral-600 {
706
+ color: #4b5563 !important;
707
+ }
708
+
709
+ .text-neutral-700 {
710
+ color: #374151 !important;
711
+ }
712
+
713
+ .text-neutral-800 {
714
+ color: #1f2937 !important;
715
+ }
716
+
717
+ .text-neutral-900 {
718
+ color: #111827 !important;
719
+ }
720
+
721
+ .text-neutral-950 {
722
+ color: #030712 !important;
723
+ }
724
+
725
+ .text-surface {
726
+ color: #ffffff !important;
727
+ }
728
+
729
+ .text-surface-raised {
730
+ color: #f9fafb !important;
731
+ }
732
+
733
+ .text-surface-overlay {
734
+ color: #f3f4f6 !important;
735
+ }
736
+
737
+ .text-surface-sunken {
738
+ color: #e5e7eb !important;
739
+ }
740
+
741
+ .text-transparent {
742
+ color: transparent !important;
743
+ }
744
+
745
+ .bg-primary {
746
+ background-color: #2563eb !important;
747
+ }
748
+
749
+ .bg-primary-light {
750
+ background-color: #60a5fa !important;
751
+ }
752
+
753
+ .bg-primary-dark {
754
+ background-color: #1d4ed8 !important;
755
+ }
756
+
757
+ .bg-secondary {
758
+ background-color: #7c3aed !important;
759
+ }
760
+
761
+ .bg-secondary-light {
762
+ background-color: #a78bfa !important;
763
+ }
764
+
765
+ .bg-secondary-dark {
766
+ background-color: #5b21b6 !important;
767
+ }
768
+
769
+ .bg-accent {
770
+ background-color: #0ea5e9 !important;
771
+ }
772
+
773
+ .bg-accent-light {
774
+ background-color: #38bdf8 !important;
775
+ }
776
+
777
+ .bg-accent-dark {
778
+ background-color: #0284c7 !important;
779
+ }
780
+
781
+ .bg-success {
782
+ background-color: #16a34a !important;
783
+ }
784
+
785
+ .bg-success-light {
786
+ background-color: #4ade80 !important;
787
+ }
788
+
789
+ .bg-success-dark {
790
+ background-color: #15803d !important;
791
+ }
792
+
793
+ .bg-warning {
794
+ background-color: #d97706 !important;
795
+ }
796
+
797
+ .bg-warning-light {
798
+ background-color: #fbbf24 !important;
799
+ }
800
+
801
+ .bg-warning-dark {
802
+ background-color: #b45309 !important;
803
+ }
804
+
805
+ .bg-danger {
806
+ background-color: #dc2626 !important;
807
+ }
808
+
809
+ .bg-danger-light {
810
+ background-color: #f87171 !important;
811
+ }
812
+
813
+ .bg-danger-dark {
814
+ background-color: #b91c1c !important;
815
+ }
816
+
817
+ .bg-info {
818
+ background-color: #0891b2 !important;
819
+ }
820
+
821
+ .bg-info-light {
822
+ background-color: #22d3ee !important;
823
+ }
824
+
825
+ .bg-info-dark {
826
+ background-color: #0e7490 !important;
827
+ }
828
+
829
+ .bg-white {
830
+ background-color: #ffffff !important;
831
+ }
832
+
833
+ .bg-black {
834
+ background-color: #000000 !important;
835
+ }
836
+
837
+ .bg-neutral-50 {
838
+ background-color: #f9fafb !important;
839
+ }
840
+
841
+ .bg-neutral-100 {
842
+ background-color: #f3f4f6 !important;
843
+ }
844
+
845
+ .bg-neutral-200 {
846
+ background-color: #e5e7eb !important;
847
+ }
848
+
849
+ .bg-neutral-300 {
850
+ background-color: #d1d5db !important;
851
+ }
852
+
853
+ .bg-neutral-400 {
854
+ background-color: #9ca3af !important;
855
+ }
856
+
857
+ .bg-neutral-500 {
858
+ background-color: #6b7280 !important;
859
+ }
860
+
861
+ .bg-neutral-600 {
862
+ background-color: #4b5563 !important;
863
+ }
864
+
865
+ .bg-neutral-700 {
866
+ background-color: #374151 !important;
867
+ }
868
+
869
+ .bg-neutral-800 {
870
+ background-color: #1f2937 !important;
871
+ }
872
+
873
+ .bg-neutral-900 {
874
+ background-color: #111827 !important;
875
+ }
876
+
877
+ .bg-neutral-950 {
878
+ background-color: #030712 !important;
879
+ }
880
+
881
+ .bg-surface {
882
+ background-color: #ffffff !important;
883
+ }
884
+
885
+ .bg-surface-raised {
886
+ background-color: #f9fafb !important;
887
+ }
888
+
889
+ .bg-surface-overlay {
890
+ background-color: #f3f4f6 !important;
891
+ }
892
+
893
+ .bg-surface-sunken {
894
+ background-color: #e5e7eb !important;
895
+ }
896
+
897
+ .bg-transparent {
898
+ background-color: transparent !important;
899
+ }
900
+
901
+ .border-color-primary {
902
+ border-color: #2563eb !important;
903
+ }
904
+
905
+ .border-color-primary-light {
906
+ border-color: #60a5fa !important;
907
+ }
908
+
909
+ .border-color-primary-dark {
910
+ border-color: #1d4ed8 !important;
911
+ }
912
+
913
+ .border-color-secondary {
914
+ border-color: #7c3aed !important;
915
+ }
916
+
917
+ .border-color-secondary-light {
918
+ border-color: #a78bfa !important;
919
+ }
920
+
921
+ .border-color-secondary-dark {
922
+ border-color: #5b21b6 !important;
923
+ }
924
+
925
+ .border-color-accent {
926
+ border-color: #0ea5e9 !important;
927
+ }
928
+
929
+ .border-color-accent-light {
930
+ border-color: #38bdf8 !important;
931
+ }
932
+
933
+ .border-color-accent-dark {
934
+ border-color: #0284c7 !important;
935
+ }
936
+
937
+ .border-color-success {
938
+ border-color: #16a34a !important;
939
+ }
940
+
941
+ .border-color-success-light {
942
+ border-color: #4ade80 !important;
943
+ }
944
+
945
+ .border-color-success-dark {
946
+ border-color: #15803d !important;
947
+ }
948
+
949
+ .border-color-warning {
950
+ border-color: #d97706 !important;
951
+ }
952
+
953
+ .border-color-warning-light {
954
+ border-color: #fbbf24 !important;
955
+ }
956
+
957
+ .border-color-warning-dark {
958
+ border-color: #b45309 !important;
959
+ }
960
+
961
+ .border-color-danger {
962
+ border-color: #dc2626 !important;
963
+ }
964
+
965
+ .border-color-danger-light {
966
+ border-color: #f87171 !important;
967
+ }
968
+
969
+ .border-color-danger-dark {
970
+ border-color: #b91c1c !important;
971
+ }
972
+
973
+ .border-color-info {
974
+ border-color: #0891b2 !important;
975
+ }
976
+
977
+ .border-color-info-light {
978
+ border-color: #22d3ee !important;
979
+ }
980
+
981
+ .border-color-info-dark {
982
+ border-color: #0e7490 !important;
983
+ }
984
+
985
+ .border-color-white {
986
+ border-color: #ffffff !important;
987
+ }
988
+
989
+ .border-color-black {
990
+ border-color: #000000 !important;
991
+ }
992
+
993
+ .border-color-neutral-50 {
994
+ border-color: #f9fafb !important;
995
+ }
996
+
997
+ .border-color-neutral-100 {
998
+ border-color: #f3f4f6 !important;
999
+ }
1000
+
1001
+ .border-color-neutral-200 {
1002
+ border-color: #e5e7eb !important;
1003
+ }
1004
+
1005
+ .border-color-neutral-300 {
1006
+ border-color: #d1d5db !important;
1007
+ }
1008
+
1009
+ .border-color-neutral-400 {
1010
+ border-color: #9ca3af !important;
1011
+ }
1012
+
1013
+ .border-color-neutral-500 {
1014
+ border-color: #6b7280 !important;
1015
+ }
1016
+
1017
+ .border-color-neutral-600 {
1018
+ border-color: #4b5563 !important;
1019
+ }
1020
+
1021
+ .border-color-neutral-700 {
1022
+ border-color: #374151 !important;
1023
+ }
1024
+
1025
+ .border-color-neutral-800 {
1026
+ border-color: #1f2937 !important;
1027
+ }
1028
+
1029
+ .border-color-neutral-900 {
1030
+ border-color: #111827 !important;
1031
+ }
1032
+
1033
+ .border-color-neutral-950 {
1034
+ border-color: #030712 !important;
1035
+ }
1036
+
1037
+ .border-color-surface {
1038
+ border-color: #ffffff !important;
1039
+ }
1040
+
1041
+ .border-color-surface-raised {
1042
+ border-color: #f9fafb !important;
1043
+ }
1044
+
1045
+ .border-color-surface-overlay {
1046
+ border-color: #f3f4f6 !important;
1047
+ }
1048
+
1049
+ .border-color-surface-sunken {
1050
+ border-color: #e5e7eb !important;
1051
+ }
1052
+
1053
+ .border-color-transparent {
1054
+ border-color: transparent !important;
1055
+ }
1056
+
1057
+ .text-text-primary {
1058
+ color: #111827 !important;
1059
+ }
1060
+
1061
+ .text-text-secondary {
1062
+ color: #374151 !important;
1063
+ }
1064
+
1065
+ .text-text-muted {
1066
+ color: #6b7280 !important;
1067
+ }
1068
+
1069
+ .text-text-disabled {
1070
+ color: #9ca3af !important;
1071
+ }
1072
+
1073
+ .text-text-inverse {
1074
+ color: #ffffff !important;
1075
+ }
1076
+
1077
+ .text-bg-body {
1078
+ color: #ffffff !important;
1079
+ }
1080
+
1081
+ .text-bg-subtle {
1082
+ color: #f9fafb !important;
1083
+ }
1084
+
1085
+ .text-bg-muted {
1086
+ color: #f3f4f6 !important;
1087
+ }
1088
+
1089
+ .text-bg-inverse {
1090
+ color: #111827 !important;
1091
+ }
1092
+
1093
+ .text-border-default {
1094
+ color: #e5e7eb !important;
1095
+ }
1096
+
1097
+ .text-border-strong {
1098
+ color: #d1d5db !important;
1099
+ }
1100
+
1101
+ .text-border-focus {
1102
+ color: #2563eb !important;
1103
+ }
1104
+
1105
+ .text-link {
1106
+ color: #2563eb !important;
1107
+ }
1108
+
1109
+ .text-link-hover {
1110
+ color: #1d4ed8 !important;
1111
+ }
1112
+
1113
+ .text-link-visited {
1114
+ color: #7c3aed !important;
1115
+ }
1116
+
1117
+ .shadow-none {
1118
+ box-shadow: none !important;
1119
+ }
1120
+
1121
+ .shadow-xs {
1122
+ box-shadow: "0 1px 2px 0 rgba(0, 0, 0, 0.05)" !important;
1123
+ }
1124
+
1125
+ .shadow-sm {
1126
+ box-shadow: "0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10)" !important;
1127
+ }
1128
+
1129
+ .shadow-md {
1130
+ box-shadow: "0 4px 6px -1px rgba(0, 0, 0, 0.10), 0 2px 4px -2px rgba(0, 0, 0, 0.10)" !important;
1131
+ }
1132
+
1133
+ .shadow-lg {
1134
+ box-shadow: "0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10)" !important;
1135
+ }
1136
+
1137
+ .shadow-xl {
1138
+ box-shadow: "0 20px 25px -5px rgba(0, 0, 0, 0.10), 0 8px 10px -6px rgba(0, 0, 0, 0.10)" !important;
1139
+ }
1140
+
1141
+ .shadow-2xl {
1142
+ box-shadow: "0 25px 50px -12px rgba(0, 0, 0, 0.25)" !important;
1143
+ }
1144
+
1145
+ .shadow-inner {
1146
+ box-shadow: "inset 0 2px 4px 0 rgba(0, 0, 0, 0.06)" !important;
1147
+ }
1148
+
1149
+ .shadow-primary {
1150
+ box-shadow: "0 4px 14px 0 rgba(37, 99, 235, 0.35)" !important;
1151
+ }
1152
+
1153
+ .shadow-success {
1154
+ box-shadow: "0 4px 14px 0 rgba(22, 163, 74, 0.35)" !important;
1155
+ }
1156
+
1157
+ .shadow-danger {
1158
+ box-shadow: "0 4px 14px 0 rgba(220, 38, 38, 0.35)" !important;
1159
+ }
1160
+
1161
+ .shadow-warning {
1162
+ box-shadow: "0 4px 14px 0 rgba(217, 119, 6, 0.35)" !important;
1163
+ }
1164
+
1165
+ .shadow-dark-sm {
1166
+ box-shadow: "0 1px 3px 0 rgba(0, 0, 0, 0.40)" !important;
1167
+ }
1168
+
1169
+ .shadow-dark-md {
1170
+ box-shadow: "0 4px 6px -1px rgba(0, 0, 0, 0.40)" !important;
1171
+ }
1172
+
1173
+ .shadow-dark-lg {
1174
+ box-shadow: "0 10px 15px -3px rgba(0, 0, 0, 0.50)" !important;
1175
+ }
1176
+
1177
+ .rounded-none {
1178
+ border-radius: 0 !important;
1179
+ }
1180
+
1181
+ .rounded-xs {
1182
+ border-radius: 2px !important;
1183
+ }
1184
+
1185
+ .rounded-sm {
1186
+ border-radius: 4px !important;
1187
+ }
1188
+
1189
+ .rounded-md {
1190
+ border-radius: 8px !important;
1191
+ }
1192
+
1193
+ .rounded-lg {
1194
+ border-radius: 12px !important;
1195
+ }
1196
+
1197
+ .rounded-xl {
1198
+ border-radius: 16px !important;
1199
+ }
1200
+
1201
+ .rounded-2xl {
1202
+ border-radius: 24px !important;
1203
+ }
1204
+
1205
+ .rounded-3xl {
1206
+ border-radius: 32px !important;
1207
+ }
1208
+
1209
+ .rounded-full {
1210
+ border-radius: 9999px !important;
1211
+ }
1212
+
1213
+ .rounded-t-none {
1214
+ border-top-left-radius: 0 !important;
1215
+ border-top-right-radius: 0 !important;
1216
+ }
1217
+
1218
+ .rounded-b-none {
1219
+ border-bottom-left-radius: 0 !important;
1220
+ border-bottom-right-radius: 0 !important;
1221
+ }
1222
+
1223
+ .rounded-l-none {
1224
+ border-top-left-radius: 0 !important;
1225
+ border-bottom-left-radius: 0 !important;
1226
+ }
1227
+
1228
+ .rounded-r-none {
1229
+ border-top-right-radius: 0 !important;
1230
+ border-bottom-right-radius: 0 !important;
1231
+ }
1232
+
1233
+ .rounded-t-xs {
1234
+ border-top-left-radius: 2px !important;
1235
+ border-top-right-radius: 2px !important;
1236
+ }
1237
+
1238
+ .rounded-b-xs {
1239
+ border-bottom-left-radius: 2px !important;
1240
+ border-bottom-right-radius: 2px !important;
1241
+ }
1242
+
1243
+ .rounded-l-xs {
1244
+ border-top-left-radius: 2px !important;
1245
+ border-bottom-left-radius: 2px !important;
1246
+ }
1247
+
1248
+ .rounded-r-xs {
1249
+ border-top-right-radius: 2px !important;
1250
+ border-bottom-right-radius: 2px !important;
1251
+ }
1252
+
1253
+ .rounded-t-sm {
1254
+ border-top-left-radius: 4px !important;
1255
+ border-top-right-radius: 4px !important;
1256
+ }
1257
+
1258
+ .rounded-b-sm {
1259
+ border-bottom-left-radius: 4px !important;
1260
+ border-bottom-right-radius: 4px !important;
1261
+ }
1262
+
1263
+ .rounded-l-sm {
1264
+ border-top-left-radius: 4px !important;
1265
+ border-bottom-left-radius: 4px !important;
1266
+ }
1267
+
1268
+ .rounded-r-sm {
1269
+ border-top-right-radius: 4px !important;
1270
+ border-bottom-right-radius: 4px !important;
1271
+ }
1272
+
1273
+ .rounded-t-md {
1274
+ border-top-left-radius: 8px !important;
1275
+ border-top-right-radius: 8px !important;
1276
+ }
1277
+
1278
+ .rounded-b-md {
1279
+ border-bottom-left-radius: 8px !important;
1280
+ border-bottom-right-radius: 8px !important;
1281
+ }
1282
+
1283
+ .rounded-l-md {
1284
+ border-top-left-radius: 8px !important;
1285
+ border-bottom-left-radius: 8px !important;
1286
+ }
1287
+
1288
+ .rounded-r-md {
1289
+ border-top-right-radius: 8px !important;
1290
+ border-bottom-right-radius: 8px !important;
1291
+ }
1292
+
1293
+ .rounded-t-lg {
1294
+ border-top-left-radius: 12px !important;
1295
+ border-top-right-radius: 12px !important;
1296
+ }
1297
+
1298
+ .rounded-b-lg {
1299
+ border-bottom-left-radius: 12px !important;
1300
+ border-bottom-right-radius: 12px !important;
1301
+ }
1302
+
1303
+ .rounded-l-lg {
1304
+ border-top-left-radius: 12px !important;
1305
+ border-bottom-left-radius: 12px !important;
1306
+ }
1307
+
1308
+ .rounded-r-lg {
1309
+ border-top-right-radius: 12px !important;
1310
+ border-bottom-right-radius: 12px !important;
1311
+ }
1312
+
1313
+ .rounded-t-xl {
1314
+ border-top-left-radius: 16px !important;
1315
+ border-top-right-radius: 16px !important;
1316
+ }
1317
+
1318
+ .rounded-b-xl {
1319
+ border-bottom-left-radius: 16px !important;
1320
+ border-bottom-right-radius: 16px !important;
1321
+ }
1322
+
1323
+ .rounded-l-xl {
1324
+ border-top-left-radius: 16px !important;
1325
+ border-bottom-left-radius: 16px !important;
1326
+ }
1327
+
1328
+ .rounded-r-xl {
1329
+ border-top-right-radius: 16px !important;
1330
+ border-bottom-right-radius: 16px !important;
1331
+ }
1332
+
1333
+ .rounded-t-2xl {
1334
+ border-top-left-radius: 24px !important;
1335
+ border-top-right-radius: 24px !important;
1336
+ }
1337
+
1338
+ .rounded-b-2xl {
1339
+ border-bottom-left-radius: 24px !important;
1340
+ border-bottom-right-radius: 24px !important;
1341
+ }
1342
+
1343
+ .rounded-l-2xl {
1344
+ border-top-left-radius: 24px !important;
1345
+ border-bottom-left-radius: 24px !important;
1346
+ }
1347
+
1348
+ .rounded-r-2xl {
1349
+ border-top-right-radius: 24px !important;
1350
+ border-bottom-right-radius: 24px !important;
1351
+ }
1352
+
1353
+ .rounded-t-3xl {
1354
+ border-top-left-radius: 32px !important;
1355
+ border-top-right-radius: 32px !important;
1356
+ }
1357
+
1358
+ .rounded-b-3xl {
1359
+ border-bottom-left-radius: 32px !important;
1360
+ border-bottom-right-radius: 32px !important;
1361
+ }
1362
+
1363
+ .rounded-l-3xl {
1364
+ border-top-left-radius: 32px !important;
1365
+ border-bottom-left-radius: 32px !important;
1366
+ }
1367
+
1368
+ .rounded-r-3xl {
1369
+ border-top-right-radius: 32px !important;
1370
+ border-bottom-right-radius: 32px !important;
1371
+ }
1372
+
1373
+ .rounded-t-full {
1374
+ border-top-left-radius: 9999px !important;
1375
+ border-top-right-radius: 9999px !important;
1376
+ }
1377
+
1378
+ .rounded-b-full {
1379
+ border-bottom-left-radius: 9999px !important;
1380
+ border-bottom-right-radius: 9999px !important;
1381
+ }
1382
+
1383
+ .rounded-l-full {
1384
+ border-top-left-radius: 9999px !important;
1385
+ border-bottom-left-radius: 9999px !important;
1386
+ }
1387
+
1388
+ .rounded-r-full {
1389
+ border-top-right-radius: 9999px !important;
1390
+ border-bottom-right-radius: 9999px !important;
1391
+ }
1392
+
1393
+ .opacity-0 {
1394
+ opacity: 0 !important;
1395
+ }
1396
+
1397
+ .opacity-5 {
1398
+ opacity: 0.05 !important;
1399
+ }
1400
+
1401
+ .opacity-10 {
1402
+ opacity: 0.1 !important;
1403
+ }
1404
+
1405
+ .opacity-15 {
1406
+ opacity: 0.15 !important;
1407
+ }
1408
+
1409
+ .opacity-20 {
1410
+ opacity: 0.2 !important;
1411
+ }
1412
+
1413
+ .opacity-25 {
1414
+ opacity: 0.25 !important;
1415
+ }
1416
+
1417
+ .opacity-30 {
1418
+ opacity: 0.3 !important;
1419
+ }
1420
+
1421
+ .opacity-40 {
1422
+ opacity: 0.4 !important;
1423
+ }
1424
+
1425
+ .opacity-50 {
1426
+ opacity: 0.5 !important;
1427
+ }
1428
+
1429
+ .opacity-60 {
1430
+ opacity: 0.6 !important;
1431
+ }
1432
+
1433
+ .opacity-70 {
1434
+ opacity: 0.7 !important;
1435
+ }
1436
+
1437
+ .opacity-75 {
1438
+ opacity: 0.75 !important;
1439
+ }
1440
+
1441
+ .opacity-80 {
1442
+ opacity: 0.8 !important;
1443
+ }
1444
+
1445
+ .opacity-90 {
1446
+ opacity: 0.9 !important;
1447
+ }
1448
+
1449
+ .opacity-95 {
1450
+ opacity: 0.95 !important;
1451
+ }
1452
+
1453
+ .opacity-100 {
1454
+ opacity: 1 !important;
1455
+ }
1456
+
1457
+ .transition-none {
1458
+ transition: none !important;
1459
+ }
1460
+
1461
+ .transition-all {
1462
+ transition: "all 200ms cubic-bezier(0.4, 0, 0.2, 1)" !important;
1463
+ }
1464
+
1465
+ .transition-fast {
1466
+ transition: "all 100ms cubic-bezier(0.4, 0, 0.2, 1)" !important;
1467
+ }
1468
+
1469
+ .transition-colors {
1470
+ transition: "color 200ms cubic-bezier(0.4, 0, 0.2, 1), background-color 200ms cubic-bezier(0.4, 0, 0.2, 1), border-color 200ms cubic-bezier(0.4, 0, 0.2, 1)" !important;
1471
+ }
1472
+
1473
+ .transition-opacity {
1474
+ transition: "opacity 200ms cubic-bezier(0.4, 0, 0.2, 1)" !important;
1475
+ }
1476
+
1477
+ .transition-shadow {
1478
+ transition: "box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1)" !important;
1479
+ }
1480
+
1481
+ .transition-transform {
1482
+ transition: "transform 200ms cubic-bezier(0.4, 0, 0.2, 1)" !important;
1483
+ }
1484
+
1485
+ .z-base {
1486
+ z-index: 0 !important;
1487
+ }
1488
+
1489
+ .z-raised {
1490
+ z-index: 10 !important;
1491
+ }
1492
+
1493
+ .z-dropdown {
1494
+ z-index: 100 !important;
1495
+ }
1496
+
1497
+ .z-sticky {
1498
+ z-index: 200 !important;
1499
+ }
1500
+
1501
+ .z-fixed {
1502
+ z-index: 300 !important;
1503
+ }
1504
+
1505
+ .z-overlay {
1506
+ z-index: 400 !important;
1507
+ }
1508
+
1509
+ .z-modal {
1510
+ z-index: 500 !important;
1511
+ }
1512
+
1513
+ .z-popover {
1514
+ z-index: 600 !important;
1515
+ }
1516
+
1517
+ .z-tooltip {
1518
+ z-index: 700 !important;
1519
+ }
1520
+
1521
+ .z-toast {
1522
+ z-index: 800 !important;
1523
+ }
1524
+
1525
+ .z-spinner {
1526
+ z-index: 900 !important;
1527
+ }
1528
+
1529
+ .z-max {
1530
+ z-index: 9999 !important;
1531
+ }
1532
+
1533
+ .d-none {
1534
+ display: none !important;
1535
+ }
1536
+
1537
+ .d-block {
1538
+ display: block !important;
1539
+ }
1540
+
1541
+ .d-inline {
1542
+ display: inline !important;
1543
+ }
1544
+
1545
+ .d-inline-block {
1546
+ display: inline-block !important;
1547
+ }
1548
+
1549
+ .d-contents {
1550
+ display: contents !important;
1551
+ }
1552
+
1553
+ .d-table {
1554
+ display: table !important;
1555
+ }
1556
+
1557
+ .d-table-cell {
1558
+ display: table-cell !important;
1559
+ }
1560
+
1561
+ .d-table-row {
1562
+ display: table-row !important;
1563
+ }
1564
+
1565
+ .visible {
1566
+ visibility: visible !important;
1567
+ }
1568
+
1569
+ .invisible {
1570
+ visibility: hidden !important;
1571
+ }
1572
+
1573
+ .overflow-auto {
1574
+ overflow: auto !important;
1575
+ }
1576
+
1577
+ .overflow-hidden {
1578
+ overflow: hidden !important;
1579
+ }
1580
+
1581
+ .overflow-visible {
1582
+ overflow: visible !important;
1583
+ }
1584
+
1585
+ .overflow-scroll {
1586
+ overflow: scroll !important;
1587
+ }
1588
+
1589
+ .overflow-x-auto {
1590
+ overflow-x: auto !important;
1591
+ }
1592
+
1593
+ .overflow-x-hidden {
1594
+ overflow-x: hidden !important;
1595
+ }
1596
+
1597
+ .overflow-y-auto {
1598
+ overflow-y: auto !important;
1599
+ }
1600
+
1601
+ .overflow-y-hidden {
1602
+ overflow-y: hidden !important;
1603
+ }
1604
+
1605
+ .position-static {
1606
+ position: static !important;
1607
+ }
1608
+
1609
+ .position-relative {
1610
+ position: relative !important;
1611
+ }
1612
+
1613
+ .position-absolute {
1614
+ position: absolute !important;
1615
+ }
1616
+
1617
+ .position-fixed {
1618
+ position: fixed !important;
1619
+ }
1620
+
1621
+ .position-sticky {
1622
+ position: sticky !important;
1623
+ }
1624
+
1625
+ .top-0 {
1626
+ top: 0 !important;
1627
+ }
1628
+
1629
+ .right-0 {
1630
+ right: 0 !important;
1631
+ }
1632
+
1633
+ .bottom-0 {
1634
+ bottom: 0 !important;
1635
+ }
1636
+
1637
+ .left-0 {
1638
+ left: 0 !important;
1639
+ }
1640
+
1641
+ .inset-0 {
1642
+ inset: 0 !important;
1643
+ }
1644
+
1645
+ .cursor-auto {
1646
+ cursor: auto !important;
1647
+ }
1648
+
1649
+ .cursor-default {
1650
+ cursor: default !important;
1651
+ }
1652
+
1653
+ .cursor-pointer {
1654
+ cursor: pointer !important;
1655
+ }
1656
+
1657
+ .cursor-wait {
1658
+ cursor: wait !important;
1659
+ }
1660
+
1661
+ .cursor-text {
1662
+ cursor: text !important;
1663
+ }
1664
+
1665
+ .cursor-move {
1666
+ cursor: move !important;
1667
+ }
1668
+
1669
+ .cursor-not-allowed {
1670
+ cursor: not-allowed !important;
1671
+ }
1672
+
1673
+ .cursor-grab {
1674
+ cursor: grab !important;
1675
+ }
1676
+
1677
+ .cursor-grabbing {
1678
+ cursor: grabbing !important;
1679
+ }
1680
+
1681
+ .object-contain {
1682
+ object-fit: contain !important;
1683
+ }
1684
+
1685
+ .object-cover {
1686
+ object-fit: cover !important;
1687
+ }
1688
+
1689
+ .object-fill {
1690
+ object-fit: fill !important;
1691
+ }
1692
+
1693
+ .object-none {
1694
+ object-fit: none !important;
1695
+ }
1696
+
1697
+ .object-scale-down {
1698
+ object-fit: scale-down !important;
1699
+ }
1700
+
1701
+ .aspect-square {
1702
+ aspect-ratio: 1/1 !important;
1703
+ }
1704
+
1705
+ .aspect-video {
1706
+ aspect-ratio: 16/9 !important;
1707
+ }
1708
+
1709
+ .aspect-cinema {
1710
+ aspect-ratio: 21/9 !important;
1711
+ }
1712
+
1713
+ .aspect-portrait {
1714
+ aspect-ratio: 3/4 !important;
1715
+ }
1716
+
1717
+ .aspect-landscape {
1718
+ aspect-ratio: 4/3 !important;
1719
+ }
1720
+
1721
+ .pointer-events-none {
1722
+ pointer-events: none !important;
1723
+ }
1724
+
1725
+ .pointer-events-auto {
1726
+ pointer-events: auto !important;
1727
+ }
1728
+
1729
+ .select-none {
1730
+ user-select: none !important;
1731
+ }
1732
+
1733
+ .select-text {
1734
+ user-select: text !important;
1735
+ }
1736
+
1737
+ .select-all {
1738
+ user-select: all !important;
1739
+ }
1740
+
1741
+ .select-auto {
1742
+ user-select: auto !important;
1743
+ }
1744
+
1745
+ .m-0 {
1746
+ margin: 0 !important;
1747
+ }
1748
+
1749
+ .mt-0 {
1750
+ margin-top: 0 !important;
1751
+ }
1752
+
1753
+ .mr-0 {
1754
+ margin-right: 0 !important;
1755
+ }
1756
+
1757
+ .mb-0 {
1758
+ margin-bottom: 0 !important;
1759
+ }
1760
+
1761
+ .ml-0 {
1762
+ margin-left: 0 !important;
1763
+ }
1764
+
1765
+ .mx-0 {
1766
+ margin-left: 0 !important;
1767
+ margin-right: 0 !important;
1768
+ }
1769
+
1770
+ .my-0 {
1771
+ margin-top: 0 !important;
1772
+ margin-bottom: 0 !important;
1773
+ }
1774
+
1775
+ .p-0 {
1776
+ padding: 0 !important;
1777
+ }
1778
+
1779
+ .pt-0 {
1780
+ padding-top: 0 !important;
1781
+ }
1782
+
1783
+ .pr-0 {
1784
+ padding-right: 0 !important;
1785
+ }
1786
+
1787
+ .pb-0 {
1788
+ padding-bottom: 0 !important;
1789
+ }
1790
+
1791
+ .pl-0 {
1792
+ padding-left: 0 !important;
1793
+ }
1794
+
1795
+ .px-0 {
1796
+ padding-left: 0 !important;
1797
+ padding-right: 0 !important;
1798
+ }
1799
+
1800
+ .py-0 {
1801
+ padding-top: 0 !important;
1802
+ padding-bottom: 0 !important;
1803
+ }
1804
+
1805
+ .m-px {
1806
+ margin: 1px !important;
1807
+ }
1808
+
1809
+ .mt-px {
1810
+ margin-top: 1px !important;
1811
+ }
1812
+
1813
+ .mr-px {
1814
+ margin-right: 1px !important;
1815
+ }
1816
+
1817
+ .mb-px {
1818
+ margin-bottom: 1px !important;
1819
+ }
1820
+
1821
+ .ml-px {
1822
+ margin-left: 1px !important;
1823
+ }
1824
+
1825
+ .mx-px {
1826
+ margin-left: 1px !important;
1827
+ margin-right: 1px !important;
1828
+ }
1829
+
1830
+ .my-px {
1831
+ margin-top: 1px !important;
1832
+ margin-bottom: 1px !important;
1833
+ }
1834
+
1835
+ .p-px {
1836
+ padding: 1px !important;
1837
+ }
1838
+
1839
+ .pt-px {
1840
+ padding-top: 1px !important;
1841
+ }
1842
+
1843
+ .pr-px {
1844
+ padding-right: 1px !important;
1845
+ }
1846
+
1847
+ .pb-px {
1848
+ padding-bottom: 1px !important;
1849
+ }
1850
+
1851
+ .pl-px {
1852
+ padding-left: 1px !important;
1853
+ }
1854
+
1855
+ .px-px {
1856
+ padding-left: 1px !important;
1857
+ padding-right: 1px !important;
1858
+ }
1859
+
1860
+ .py-px {
1861
+ padding-top: 1px !important;
1862
+ padding-bottom: 1px !important;
1863
+ }
1864
+
1865
+ .m-0-5 {
1866
+ margin: 0.125rem !important;
1867
+ }
1868
+
1869
+ .mt-0-5 {
1870
+ margin-top: 0.125rem !important;
1871
+ }
1872
+
1873
+ .mr-0-5 {
1874
+ margin-right: 0.125rem !important;
1875
+ }
1876
+
1877
+ .mb-0-5 {
1878
+ margin-bottom: 0.125rem !important;
1879
+ }
1880
+
1881
+ .ml-0-5 {
1882
+ margin-left: 0.125rem !important;
1883
+ }
1884
+
1885
+ .mx-0-5 {
1886
+ margin-left: 0.125rem !important;
1887
+ margin-right: 0.125rem !important;
1888
+ }
1889
+
1890
+ .my-0-5 {
1891
+ margin-top: 0.125rem !important;
1892
+ margin-bottom: 0.125rem !important;
1893
+ }
1894
+
1895
+ .p-0-5 {
1896
+ padding: 0.125rem !important;
1897
+ }
1898
+
1899
+ .pt-0-5 {
1900
+ padding-top: 0.125rem !important;
1901
+ }
1902
+
1903
+ .pr-0-5 {
1904
+ padding-right: 0.125rem !important;
1905
+ }
1906
+
1907
+ .pb-0-5 {
1908
+ padding-bottom: 0.125rem !important;
1909
+ }
1910
+
1911
+ .pl-0-5 {
1912
+ padding-left: 0.125rem !important;
1913
+ }
1914
+
1915
+ .px-0-5 {
1916
+ padding-left: 0.125rem !important;
1917
+ padding-right: 0.125rem !important;
1918
+ }
1919
+
1920
+ .py-0-5 {
1921
+ padding-top: 0.125rem !important;
1922
+ padding-bottom: 0.125rem !important;
1923
+ }
1924
+
1925
+ .m-1 {
1926
+ margin: 0.25rem !important;
1927
+ }
1928
+
1929
+ .mt-1 {
1930
+ margin-top: 0.25rem !important;
1931
+ }
1932
+
1933
+ .mr-1 {
1934
+ margin-right: 0.25rem !important;
1935
+ }
1936
+
1937
+ .mb-1 {
1938
+ margin-bottom: 0.25rem !important;
1939
+ }
1940
+
1941
+ .ml-1 {
1942
+ margin-left: 0.25rem !important;
1943
+ }
1944
+
1945
+ .mx-1 {
1946
+ margin-left: 0.25rem !important;
1947
+ margin-right: 0.25rem !important;
1948
+ }
1949
+
1950
+ .my-1 {
1951
+ margin-top: 0.25rem !important;
1952
+ margin-bottom: 0.25rem !important;
1953
+ }
1954
+
1955
+ .p-1 {
1956
+ padding: 0.25rem !important;
1957
+ }
1958
+
1959
+ .pt-1 {
1960
+ padding-top: 0.25rem !important;
1961
+ }
1962
+
1963
+ .pr-1 {
1964
+ padding-right: 0.25rem !important;
1965
+ }
1966
+
1967
+ .pb-1 {
1968
+ padding-bottom: 0.25rem !important;
1969
+ }
1970
+
1971
+ .pl-1 {
1972
+ padding-left: 0.25rem !important;
1973
+ }
1974
+
1975
+ .px-1 {
1976
+ padding-left: 0.25rem !important;
1977
+ padding-right: 0.25rem !important;
1978
+ }
1979
+
1980
+ .py-1 {
1981
+ padding-top: 0.25rem !important;
1982
+ padding-bottom: 0.25rem !important;
1983
+ }
1984
+
1985
+ .m-1-5 {
1986
+ margin: 0.375rem !important;
1987
+ }
1988
+
1989
+ .mt-1-5 {
1990
+ margin-top: 0.375rem !important;
1991
+ }
1992
+
1993
+ .mr-1-5 {
1994
+ margin-right: 0.375rem !important;
1995
+ }
1996
+
1997
+ .mb-1-5 {
1998
+ margin-bottom: 0.375rem !important;
1999
+ }
2000
+
2001
+ .ml-1-5 {
2002
+ margin-left: 0.375rem !important;
2003
+ }
2004
+
2005
+ .mx-1-5 {
2006
+ margin-left: 0.375rem !important;
2007
+ margin-right: 0.375rem !important;
2008
+ }
2009
+
2010
+ .my-1-5 {
2011
+ margin-top: 0.375rem !important;
2012
+ margin-bottom: 0.375rem !important;
2013
+ }
2014
+
2015
+ .p-1-5 {
2016
+ padding: 0.375rem !important;
2017
+ }
2018
+
2019
+ .pt-1-5 {
2020
+ padding-top: 0.375rem !important;
2021
+ }
2022
+
2023
+ .pr-1-5 {
2024
+ padding-right: 0.375rem !important;
2025
+ }
2026
+
2027
+ .pb-1-5 {
2028
+ padding-bottom: 0.375rem !important;
2029
+ }
2030
+
2031
+ .pl-1-5 {
2032
+ padding-left: 0.375rem !important;
2033
+ }
2034
+
2035
+ .px-1-5 {
2036
+ padding-left: 0.375rem !important;
2037
+ padding-right: 0.375rem !important;
2038
+ }
2039
+
2040
+ .py-1-5 {
2041
+ padding-top: 0.375rem !important;
2042
+ padding-bottom: 0.375rem !important;
2043
+ }
2044
+
2045
+ .m-2 {
2046
+ margin: 0.5rem !important;
2047
+ }
2048
+
2049
+ .mt-2 {
2050
+ margin-top: 0.5rem !important;
2051
+ }
2052
+
2053
+ .mr-2 {
2054
+ margin-right: 0.5rem !important;
2055
+ }
2056
+
2057
+ .mb-2 {
2058
+ margin-bottom: 0.5rem !important;
2059
+ }
2060
+
2061
+ .ml-2 {
2062
+ margin-left: 0.5rem !important;
2063
+ }
2064
+
2065
+ .mx-2 {
2066
+ margin-left: 0.5rem !important;
2067
+ margin-right: 0.5rem !important;
2068
+ }
2069
+
2070
+ .my-2 {
2071
+ margin-top: 0.5rem !important;
2072
+ margin-bottom: 0.5rem !important;
2073
+ }
2074
+
2075
+ .p-2 {
2076
+ padding: 0.5rem !important;
2077
+ }
2078
+
2079
+ .pt-2 {
2080
+ padding-top: 0.5rem !important;
2081
+ }
2082
+
2083
+ .pr-2 {
2084
+ padding-right: 0.5rem !important;
2085
+ }
2086
+
2087
+ .pb-2 {
2088
+ padding-bottom: 0.5rem !important;
2089
+ }
2090
+
2091
+ .pl-2 {
2092
+ padding-left: 0.5rem !important;
2093
+ }
2094
+
2095
+ .px-2 {
2096
+ padding-left: 0.5rem !important;
2097
+ padding-right: 0.5rem !important;
2098
+ }
2099
+
2100
+ .py-2 {
2101
+ padding-top: 0.5rem !important;
2102
+ padding-bottom: 0.5rem !important;
2103
+ }
2104
+
2105
+ .m-2-5 {
2106
+ margin: 0.625rem !important;
2107
+ }
2108
+
2109
+ .mt-2-5 {
2110
+ margin-top: 0.625rem !important;
2111
+ }
2112
+
2113
+ .mr-2-5 {
2114
+ margin-right: 0.625rem !important;
2115
+ }
2116
+
2117
+ .mb-2-5 {
2118
+ margin-bottom: 0.625rem !important;
2119
+ }
2120
+
2121
+ .ml-2-5 {
2122
+ margin-left: 0.625rem !important;
2123
+ }
2124
+
2125
+ .mx-2-5 {
2126
+ margin-left: 0.625rem !important;
2127
+ margin-right: 0.625rem !important;
2128
+ }
2129
+
2130
+ .my-2-5 {
2131
+ margin-top: 0.625rem !important;
2132
+ margin-bottom: 0.625rem !important;
2133
+ }
2134
+
2135
+ .p-2-5 {
2136
+ padding: 0.625rem !important;
2137
+ }
2138
+
2139
+ .pt-2-5 {
2140
+ padding-top: 0.625rem !important;
2141
+ }
2142
+
2143
+ .pr-2-5 {
2144
+ padding-right: 0.625rem !important;
2145
+ }
2146
+
2147
+ .pb-2-5 {
2148
+ padding-bottom: 0.625rem !important;
2149
+ }
2150
+
2151
+ .pl-2-5 {
2152
+ padding-left: 0.625rem !important;
2153
+ }
2154
+
2155
+ .px-2-5 {
2156
+ padding-left: 0.625rem !important;
2157
+ padding-right: 0.625rem !important;
2158
+ }
2159
+
2160
+ .py-2-5 {
2161
+ padding-top: 0.625rem !important;
2162
+ padding-bottom: 0.625rem !important;
2163
+ }
2164
+
2165
+ .m-3 {
2166
+ margin: 0.75rem !important;
2167
+ }
2168
+
2169
+ .mt-3 {
2170
+ margin-top: 0.75rem !important;
2171
+ }
2172
+
2173
+ .mr-3 {
2174
+ margin-right: 0.75rem !important;
2175
+ }
2176
+
2177
+ .mb-3 {
2178
+ margin-bottom: 0.75rem !important;
2179
+ }
2180
+
2181
+ .ml-3 {
2182
+ margin-left: 0.75rem !important;
2183
+ }
2184
+
2185
+ .mx-3 {
2186
+ margin-left: 0.75rem !important;
2187
+ margin-right: 0.75rem !important;
2188
+ }
2189
+
2190
+ .my-3 {
2191
+ margin-top: 0.75rem !important;
2192
+ margin-bottom: 0.75rem !important;
2193
+ }
2194
+
2195
+ .p-3 {
2196
+ padding: 0.75rem !important;
2197
+ }
2198
+
2199
+ .pt-3 {
2200
+ padding-top: 0.75rem !important;
2201
+ }
2202
+
2203
+ .pr-3 {
2204
+ padding-right: 0.75rem !important;
2205
+ }
2206
+
2207
+ .pb-3 {
2208
+ padding-bottom: 0.75rem !important;
2209
+ }
2210
+
2211
+ .pl-3 {
2212
+ padding-left: 0.75rem !important;
2213
+ }
2214
+
2215
+ .px-3 {
2216
+ padding-left: 0.75rem !important;
2217
+ padding-right: 0.75rem !important;
2218
+ }
2219
+
2220
+ .py-3 {
2221
+ padding-top: 0.75rem !important;
2222
+ padding-bottom: 0.75rem !important;
2223
+ }
2224
+
2225
+ .m-3-5 {
2226
+ margin: 0.875rem !important;
2227
+ }
2228
+
2229
+ .mt-3-5 {
2230
+ margin-top: 0.875rem !important;
2231
+ }
2232
+
2233
+ .mr-3-5 {
2234
+ margin-right: 0.875rem !important;
2235
+ }
2236
+
2237
+ .mb-3-5 {
2238
+ margin-bottom: 0.875rem !important;
2239
+ }
2240
+
2241
+ .ml-3-5 {
2242
+ margin-left: 0.875rem !important;
2243
+ }
2244
+
2245
+ .mx-3-5 {
2246
+ margin-left: 0.875rem !important;
2247
+ margin-right: 0.875rem !important;
2248
+ }
2249
+
2250
+ .my-3-5 {
2251
+ margin-top: 0.875rem !important;
2252
+ margin-bottom: 0.875rem !important;
2253
+ }
2254
+
2255
+ .p-3-5 {
2256
+ padding: 0.875rem !important;
2257
+ }
2258
+
2259
+ .pt-3-5 {
2260
+ padding-top: 0.875rem !important;
2261
+ }
2262
+
2263
+ .pr-3-5 {
2264
+ padding-right: 0.875rem !important;
2265
+ }
2266
+
2267
+ .pb-3-5 {
2268
+ padding-bottom: 0.875rem !important;
2269
+ }
2270
+
2271
+ .pl-3-5 {
2272
+ padding-left: 0.875rem !important;
2273
+ }
2274
+
2275
+ .px-3-5 {
2276
+ padding-left: 0.875rem !important;
2277
+ padding-right: 0.875rem !important;
2278
+ }
2279
+
2280
+ .py-3-5 {
2281
+ padding-top: 0.875rem !important;
2282
+ padding-bottom: 0.875rem !important;
2283
+ }
2284
+
2285
+ .m-4 {
2286
+ margin: 1rem !important;
2287
+ }
2288
+
2289
+ .mt-4 {
2290
+ margin-top: 1rem !important;
2291
+ }
2292
+
2293
+ .mr-4 {
2294
+ margin-right: 1rem !important;
2295
+ }
2296
+
2297
+ .mb-4 {
2298
+ margin-bottom: 1rem !important;
2299
+ }
2300
+
2301
+ .ml-4 {
2302
+ margin-left: 1rem !important;
2303
+ }
2304
+
2305
+ .mx-4 {
2306
+ margin-left: 1rem !important;
2307
+ margin-right: 1rem !important;
2308
+ }
2309
+
2310
+ .my-4 {
2311
+ margin-top: 1rem !important;
2312
+ margin-bottom: 1rem !important;
2313
+ }
2314
+
2315
+ .p-4 {
2316
+ padding: 1rem !important;
2317
+ }
2318
+
2319
+ .pt-4 {
2320
+ padding-top: 1rem !important;
2321
+ }
2322
+
2323
+ .pr-4 {
2324
+ padding-right: 1rem !important;
2325
+ }
2326
+
2327
+ .pb-4 {
2328
+ padding-bottom: 1rem !important;
2329
+ }
2330
+
2331
+ .pl-4 {
2332
+ padding-left: 1rem !important;
2333
+ }
2334
+
2335
+ .px-4 {
2336
+ padding-left: 1rem !important;
2337
+ padding-right: 1rem !important;
2338
+ }
2339
+
2340
+ .py-4 {
2341
+ padding-top: 1rem !important;
2342
+ padding-bottom: 1rem !important;
2343
+ }
2344
+
2345
+ .m-5 {
2346
+ margin: 1.25rem !important;
2347
+ }
2348
+
2349
+ .mt-5 {
2350
+ margin-top: 1.25rem !important;
2351
+ }
2352
+
2353
+ .mr-5 {
2354
+ margin-right: 1.25rem !important;
2355
+ }
2356
+
2357
+ .mb-5 {
2358
+ margin-bottom: 1.25rem !important;
2359
+ }
2360
+
2361
+ .ml-5 {
2362
+ margin-left: 1.25rem !important;
2363
+ }
2364
+
2365
+ .mx-5 {
2366
+ margin-left: 1.25rem !important;
2367
+ margin-right: 1.25rem !important;
2368
+ }
2369
+
2370
+ .my-5 {
2371
+ margin-top: 1.25rem !important;
2372
+ margin-bottom: 1.25rem !important;
2373
+ }
2374
+
2375
+ .p-5 {
2376
+ padding: 1.25rem !important;
2377
+ }
2378
+
2379
+ .pt-5 {
2380
+ padding-top: 1.25rem !important;
2381
+ }
2382
+
2383
+ .pr-5 {
2384
+ padding-right: 1.25rem !important;
2385
+ }
2386
+
2387
+ .pb-5 {
2388
+ padding-bottom: 1.25rem !important;
2389
+ }
2390
+
2391
+ .pl-5 {
2392
+ padding-left: 1.25rem !important;
2393
+ }
2394
+
2395
+ .px-5 {
2396
+ padding-left: 1.25rem !important;
2397
+ padding-right: 1.25rem !important;
2398
+ }
2399
+
2400
+ .py-5 {
2401
+ padding-top: 1.25rem !important;
2402
+ padding-bottom: 1.25rem !important;
2403
+ }
2404
+
2405
+ .m-6 {
2406
+ margin: 1.5rem !important;
2407
+ }
2408
+
2409
+ .mt-6 {
2410
+ margin-top: 1.5rem !important;
2411
+ }
2412
+
2413
+ .mr-6 {
2414
+ margin-right: 1.5rem !important;
2415
+ }
2416
+
2417
+ .mb-6 {
2418
+ margin-bottom: 1.5rem !important;
2419
+ }
2420
+
2421
+ .ml-6 {
2422
+ margin-left: 1.5rem !important;
2423
+ }
2424
+
2425
+ .mx-6 {
2426
+ margin-left: 1.5rem !important;
2427
+ margin-right: 1.5rem !important;
2428
+ }
2429
+
2430
+ .my-6 {
2431
+ margin-top: 1.5rem !important;
2432
+ margin-bottom: 1.5rem !important;
2433
+ }
2434
+
2435
+ .p-6 {
2436
+ padding: 1.5rem !important;
2437
+ }
2438
+
2439
+ .pt-6 {
2440
+ padding-top: 1.5rem !important;
2441
+ }
2442
+
2443
+ .pr-6 {
2444
+ padding-right: 1.5rem !important;
2445
+ }
2446
+
2447
+ .pb-6 {
2448
+ padding-bottom: 1.5rem !important;
2449
+ }
2450
+
2451
+ .pl-6 {
2452
+ padding-left: 1.5rem !important;
2453
+ }
2454
+
2455
+ .px-6 {
2456
+ padding-left: 1.5rem !important;
2457
+ padding-right: 1.5rem !important;
2458
+ }
2459
+
2460
+ .py-6 {
2461
+ padding-top: 1.5rem !important;
2462
+ padding-bottom: 1.5rem !important;
2463
+ }
2464
+
2465
+ .m-7 {
2466
+ margin: 1.75rem !important;
2467
+ }
2468
+
2469
+ .mt-7 {
2470
+ margin-top: 1.75rem !important;
2471
+ }
2472
+
2473
+ .mr-7 {
2474
+ margin-right: 1.75rem !important;
2475
+ }
2476
+
2477
+ .mb-7 {
2478
+ margin-bottom: 1.75rem !important;
2479
+ }
2480
+
2481
+ .ml-7 {
2482
+ margin-left: 1.75rem !important;
2483
+ }
2484
+
2485
+ .mx-7 {
2486
+ margin-left: 1.75rem !important;
2487
+ margin-right: 1.75rem !important;
2488
+ }
2489
+
2490
+ .my-7 {
2491
+ margin-top: 1.75rem !important;
2492
+ margin-bottom: 1.75rem !important;
2493
+ }
2494
+
2495
+ .p-7 {
2496
+ padding: 1.75rem !important;
2497
+ }
2498
+
2499
+ .pt-7 {
2500
+ padding-top: 1.75rem !important;
2501
+ }
2502
+
2503
+ .pr-7 {
2504
+ padding-right: 1.75rem !important;
2505
+ }
2506
+
2507
+ .pb-7 {
2508
+ padding-bottom: 1.75rem !important;
2509
+ }
2510
+
2511
+ .pl-7 {
2512
+ padding-left: 1.75rem !important;
2513
+ }
2514
+
2515
+ .px-7 {
2516
+ padding-left: 1.75rem !important;
2517
+ padding-right: 1.75rem !important;
2518
+ }
2519
+
2520
+ .py-7 {
2521
+ padding-top: 1.75rem !important;
2522
+ padding-bottom: 1.75rem !important;
2523
+ }
2524
+
2525
+ .m-8 {
2526
+ margin: 2rem !important;
2527
+ }
2528
+
2529
+ .mt-8 {
2530
+ margin-top: 2rem !important;
2531
+ }
2532
+
2533
+ .mr-8 {
2534
+ margin-right: 2rem !important;
2535
+ }
2536
+
2537
+ .mb-8 {
2538
+ margin-bottom: 2rem !important;
2539
+ }
2540
+
2541
+ .ml-8 {
2542
+ margin-left: 2rem !important;
2543
+ }
2544
+
2545
+ .mx-8 {
2546
+ margin-left: 2rem !important;
2547
+ margin-right: 2rem !important;
2548
+ }
2549
+
2550
+ .my-8 {
2551
+ margin-top: 2rem !important;
2552
+ margin-bottom: 2rem !important;
2553
+ }
2554
+
2555
+ .p-8 {
2556
+ padding: 2rem !important;
2557
+ }
2558
+
2559
+ .pt-8 {
2560
+ padding-top: 2rem !important;
2561
+ }
2562
+
2563
+ .pr-8 {
2564
+ padding-right: 2rem !important;
2565
+ }
2566
+
2567
+ .pb-8 {
2568
+ padding-bottom: 2rem !important;
2569
+ }
2570
+
2571
+ .pl-8 {
2572
+ padding-left: 2rem !important;
2573
+ }
2574
+
2575
+ .px-8 {
2576
+ padding-left: 2rem !important;
2577
+ padding-right: 2rem !important;
2578
+ }
2579
+
2580
+ .py-8 {
2581
+ padding-top: 2rem !important;
2582
+ padding-bottom: 2rem !important;
2583
+ }
2584
+
2585
+ .m-9 {
2586
+ margin: 2.25rem !important;
2587
+ }
2588
+
2589
+ .mt-9 {
2590
+ margin-top: 2.25rem !important;
2591
+ }
2592
+
2593
+ .mr-9 {
2594
+ margin-right: 2.25rem !important;
2595
+ }
2596
+
2597
+ .mb-9 {
2598
+ margin-bottom: 2.25rem !important;
2599
+ }
2600
+
2601
+ .ml-9 {
2602
+ margin-left: 2.25rem !important;
2603
+ }
2604
+
2605
+ .mx-9 {
2606
+ margin-left: 2.25rem !important;
2607
+ margin-right: 2.25rem !important;
2608
+ }
2609
+
2610
+ .my-9 {
2611
+ margin-top: 2.25rem !important;
2612
+ margin-bottom: 2.25rem !important;
2613
+ }
2614
+
2615
+ .p-9 {
2616
+ padding: 2.25rem !important;
2617
+ }
2618
+
2619
+ .pt-9 {
2620
+ padding-top: 2.25rem !important;
2621
+ }
2622
+
2623
+ .pr-9 {
2624
+ padding-right: 2.25rem !important;
2625
+ }
2626
+
2627
+ .pb-9 {
2628
+ padding-bottom: 2.25rem !important;
2629
+ }
2630
+
2631
+ .pl-9 {
2632
+ padding-left: 2.25rem !important;
2633
+ }
2634
+
2635
+ .px-9 {
2636
+ padding-left: 2.25rem !important;
2637
+ padding-right: 2.25rem !important;
2638
+ }
2639
+
2640
+ .py-9 {
2641
+ padding-top: 2.25rem !important;
2642
+ padding-bottom: 2.25rem !important;
2643
+ }
2644
+
2645
+ .m-10 {
2646
+ margin: 2.5rem !important;
2647
+ }
2648
+
2649
+ .mt-10 {
2650
+ margin-top: 2.5rem !important;
2651
+ }
2652
+
2653
+ .mr-10 {
2654
+ margin-right: 2.5rem !important;
2655
+ }
2656
+
2657
+ .mb-10 {
2658
+ margin-bottom: 2.5rem !important;
2659
+ }
2660
+
2661
+ .ml-10 {
2662
+ margin-left: 2.5rem !important;
2663
+ }
2664
+
2665
+ .mx-10 {
2666
+ margin-left: 2.5rem !important;
2667
+ margin-right: 2.5rem !important;
2668
+ }
2669
+
2670
+ .my-10 {
2671
+ margin-top: 2.5rem !important;
2672
+ margin-bottom: 2.5rem !important;
2673
+ }
2674
+
2675
+ .p-10 {
2676
+ padding: 2.5rem !important;
2677
+ }
2678
+
2679
+ .pt-10 {
2680
+ padding-top: 2.5rem !important;
2681
+ }
2682
+
2683
+ .pr-10 {
2684
+ padding-right: 2.5rem !important;
2685
+ }
2686
+
2687
+ .pb-10 {
2688
+ padding-bottom: 2.5rem !important;
2689
+ }
2690
+
2691
+ .pl-10 {
2692
+ padding-left: 2.5rem !important;
2693
+ }
2694
+
2695
+ .px-10 {
2696
+ padding-left: 2.5rem !important;
2697
+ padding-right: 2.5rem !important;
2698
+ }
2699
+
2700
+ .py-10 {
2701
+ padding-top: 2.5rem !important;
2702
+ padding-bottom: 2.5rem !important;
2703
+ }
2704
+
2705
+ .m-11 {
2706
+ margin: 2.75rem !important;
2707
+ }
2708
+
2709
+ .mt-11 {
2710
+ margin-top: 2.75rem !important;
2711
+ }
2712
+
2713
+ .mr-11 {
2714
+ margin-right: 2.75rem !important;
2715
+ }
2716
+
2717
+ .mb-11 {
2718
+ margin-bottom: 2.75rem !important;
2719
+ }
2720
+
2721
+ .ml-11 {
2722
+ margin-left: 2.75rem !important;
2723
+ }
2724
+
2725
+ .mx-11 {
2726
+ margin-left: 2.75rem !important;
2727
+ margin-right: 2.75rem !important;
2728
+ }
2729
+
2730
+ .my-11 {
2731
+ margin-top: 2.75rem !important;
2732
+ margin-bottom: 2.75rem !important;
2733
+ }
2734
+
2735
+ .p-11 {
2736
+ padding: 2.75rem !important;
2737
+ }
2738
+
2739
+ .pt-11 {
2740
+ padding-top: 2.75rem !important;
2741
+ }
2742
+
2743
+ .pr-11 {
2744
+ padding-right: 2.75rem !important;
2745
+ }
2746
+
2747
+ .pb-11 {
2748
+ padding-bottom: 2.75rem !important;
2749
+ }
2750
+
2751
+ .pl-11 {
2752
+ padding-left: 2.75rem !important;
2753
+ }
2754
+
2755
+ .px-11 {
2756
+ padding-left: 2.75rem !important;
2757
+ padding-right: 2.75rem !important;
2758
+ }
2759
+
2760
+ .py-11 {
2761
+ padding-top: 2.75rem !important;
2762
+ padding-bottom: 2.75rem !important;
2763
+ }
2764
+
2765
+ .m-12 {
2766
+ margin: 3rem !important;
2767
+ }
2768
+
2769
+ .mt-12 {
2770
+ margin-top: 3rem !important;
2771
+ }
2772
+
2773
+ .mr-12 {
2774
+ margin-right: 3rem !important;
2775
+ }
2776
+
2777
+ .mb-12 {
2778
+ margin-bottom: 3rem !important;
2779
+ }
2780
+
2781
+ .ml-12 {
2782
+ margin-left: 3rem !important;
2783
+ }
2784
+
2785
+ .mx-12 {
2786
+ margin-left: 3rem !important;
2787
+ margin-right: 3rem !important;
2788
+ }
2789
+
2790
+ .my-12 {
2791
+ margin-top: 3rem !important;
2792
+ margin-bottom: 3rem !important;
2793
+ }
2794
+
2795
+ .p-12 {
2796
+ padding: 3rem !important;
2797
+ }
2798
+
2799
+ .pt-12 {
2800
+ padding-top: 3rem !important;
2801
+ }
2802
+
2803
+ .pr-12 {
2804
+ padding-right: 3rem !important;
2805
+ }
2806
+
2807
+ .pb-12 {
2808
+ padding-bottom: 3rem !important;
2809
+ }
2810
+
2811
+ .pl-12 {
2812
+ padding-left: 3rem !important;
2813
+ }
2814
+
2815
+ .px-12 {
2816
+ padding-left: 3rem !important;
2817
+ padding-right: 3rem !important;
2818
+ }
2819
+
2820
+ .py-12 {
2821
+ padding-top: 3rem !important;
2822
+ padding-bottom: 3rem !important;
2823
+ }
2824
+
2825
+ .m-14 {
2826
+ margin: 3.5rem !important;
2827
+ }
2828
+
2829
+ .mt-14 {
2830
+ margin-top: 3.5rem !important;
2831
+ }
2832
+
2833
+ .mr-14 {
2834
+ margin-right: 3.5rem !important;
2835
+ }
2836
+
2837
+ .mb-14 {
2838
+ margin-bottom: 3.5rem !important;
2839
+ }
2840
+
2841
+ .ml-14 {
2842
+ margin-left: 3.5rem !important;
2843
+ }
2844
+
2845
+ .mx-14 {
2846
+ margin-left: 3.5rem !important;
2847
+ margin-right: 3.5rem !important;
2848
+ }
2849
+
2850
+ .my-14 {
2851
+ margin-top: 3.5rem !important;
2852
+ margin-bottom: 3.5rem !important;
2853
+ }
2854
+
2855
+ .p-14 {
2856
+ padding: 3.5rem !important;
2857
+ }
2858
+
2859
+ .pt-14 {
2860
+ padding-top: 3.5rem !important;
2861
+ }
2862
+
2863
+ .pr-14 {
2864
+ padding-right: 3.5rem !important;
2865
+ }
2866
+
2867
+ .pb-14 {
2868
+ padding-bottom: 3.5rem !important;
2869
+ }
2870
+
2871
+ .pl-14 {
2872
+ padding-left: 3.5rem !important;
2873
+ }
2874
+
2875
+ .px-14 {
2876
+ padding-left: 3.5rem !important;
2877
+ padding-right: 3.5rem !important;
2878
+ }
2879
+
2880
+ .py-14 {
2881
+ padding-top: 3.5rem !important;
2882
+ padding-bottom: 3.5rem !important;
2883
+ }
2884
+
2885
+ .m-16 {
2886
+ margin: 4rem !important;
2887
+ }
2888
+
2889
+ .mt-16 {
2890
+ margin-top: 4rem !important;
2891
+ }
2892
+
2893
+ .mr-16 {
2894
+ margin-right: 4rem !important;
2895
+ }
2896
+
2897
+ .mb-16 {
2898
+ margin-bottom: 4rem !important;
2899
+ }
2900
+
2901
+ .ml-16 {
2902
+ margin-left: 4rem !important;
2903
+ }
2904
+
2905
+ .mx-16 {
2906
+ margin-left: 4rem !important;
2907
+ margin-right: 4rem !important;
2908
+ }
2909
+
2910
+ .my-16 {
2911
+ margin-top: 4rem !important;
2912
+ margin-bottom: 4rem !important;
2913
+ }
2914
+
2915
+ .p-16 {
2916
+ padding: 4rem !important;
2917
+ }
2918
+
2919
+ .pt-16 {
2920
+ padding-top: 4rem !important;
2921
+ }
2922
+
2923
+ .pr-16 {
2924
+ padding-right: 4rem !important;
2925
+ }
2926
+
2927
+ .pb-16 {
2928
+ padding-bottom: 4rem !important;
2929
+ }
2930
+
2931
+ .pl-16 {
2932
+ padding-left: 4rem !important;
2933
+ }
2934
+
2935
+ .px-16 {
2936
+ padding-left: 4rem !important;
2937
+ padding-right: 4rem !important;
2938
+ }
2939
+
2940
+ .py-16 {
2941
+ padding-top: 4rem !important;
2942
+ padding-bottom: 4rem !important;
2943
+ }
2944
+
2945
+ .m-20 {
2946
+ margin: 5rem !important;
2947
+ }
2948
+
2949
+ .mt-20 {
2950
+ margin-top: 5rem !important;
2951
+ }
2952
+
2953
+ .mr-20 {
2954
+ margin-right: 5rem !important;
2955
+ }
2956
+
2957
+ .mb-20 {
2958
+ margin-bottom: 5rem !important;
2959
+ }
2960
+
2961
+ .ml-20 {
2962
+ margin-left: 5rem !important;
2963
+ }
2964
+
2965
+ .mx-20 {
2966
+ margin-left: 5rem !important;
2967
+ margin-right: 5rem !important;
2968
+ }
2969
+
2970
+ .my-20 {
2971
+ margin-top: 5rem !important;
2972
+ margin-bottom: 5rem !important;
2973
+ }
2974
+
2975
+ .p-20 {
2976
+ padding: 5rem !important;
2977
+ }
2978
+
2979
+ .pt-20 {
2980
+ padding-top: 5rem !important;
2981
+ }
2982
+
2983
+ .pr-20 {
2984
+ padding-right: 5rem !important;
2985
+ }
2986
+
2987
+ .pb-20 {
2988
+ padding-bottom: 5rem !important;
2989
+ }
2990
+
2991
+ .pl-20 {
2992
+ padding-left: 5rem !important;
2993
+ }
2994
+
2995
+ .px-20 {
2996
+ padding-left: 5rem !important;
2997
+ padding-right: 5rem !important;
2998
+ }
2999
+
3000
+ .py-20 {
3001
+ padding-top: 5rem !important;
3002
+ padding-bottom: 5rem !important;
3003
+ }
3004
+
3005
+ .m-24 {
3006
+ margin: 6rem !important;
3007
+ }
3008
+
3009
+ .mt-24 {
3010
+ margin-top: 6rem !important;
3011
+ }
3012
+
3013
+ .mr-24 {
3014
+ margin-right: 6rem !important;
3015
+ }
3016
+
3017
+ .mb-24 {
3018
+ margin-bottom: 6rem !important;
3019
+ }
3020
+
3021
+ .ml-24 {
3022
+ margin-left: 6rem !important;
3023
+ }
3024
+
3025
+ .mx-24 {
3026
+ margin-left: 6rem !important;
3027
+ margin-right: 6rem !important;
3028
+ }
3029
+
3030
+ .my-24 {
3031
+ margin-top: 6rem !important;
3032
+ margin-bottom: 6rem !important;
3033
+ }
3034
+
3035
+ .p-24 {
3036
+ padding: 6rem !important;
3037
+ }
3038
+
3039
+ .pt-24 {
3040
+ padding-top: 6rem !important;
3041
+ }
3042
+
3043
+ .pr-24 {
3044
+ padding-right: 6rem !important;
3045
+ }
3046
+
3047
+ .pb-24 {
3048
+ padding-bottom: 6rem !important;
3049
+ }
3050
+
3051
+ .pl-24 {
3052
+ padding-left: 6rem !important;
3053
+ }
3054
+
3055
+ .px-24 {
3056
+ padding-left: 6rem !important;
3057
+ padding-right: 6rem !important;
3058
+ }
3059
+
3060
+ .py-24 {
3061
+ padding-top: 6rem !important;
3062
+ padding-bottom: 6rem !important;
3063
+ }
3064
+
3065
+ .m-28 {
3066
+ margin: 7rem !important;
3067
+ }
3068
+
3069
+ .mt-28 {
3070
+ margin-top: 7rem !important;
3071
+ }
3072
+
3073
+ .mr-28 {
3074
+ margin-right: 7rem !important;
3075
+ }
3076
+
3077
+ .mb-28 {
3078
+ margin-bottom: 7rem !important;
3079
+ }
3080
+
3081
+ .ml-28 {
3082
+ margin-left: 7rem !important;
3083
+ }
3084
+
3085
+ .mx-28 {
3086
+ margin-left: 7rem !important;
3087
+ margin-right: 7rem !important;
3088
+ }
3089
+
3090
+ .my-28 {
3091
+ margin-top: 7rem !important;
3092
+ margin-bottom: 7rem !important;
3093
+ }
3094
+
3095
+ .p-28 {
3096
+ padding: 7rem !important;
3097
+ }
3098
+
3099
+ .pt-28 {
3100
+ padding-top: 7rem !important;
3101
+ }
3102
+
3103
+ .pr-28 {
3104
+ padding-right: 7rem !important;
3105
+ }
3106
+
3107
+ .pb-28 {
3108
+ padding-bottom: 7rem !important;
3109
+ }
3110
+
3111
+ .pl-28 {
3112
+ padding-left: 7rem !important;
3113
+ }
3114
+
3115
+ .px-28 {
3116
+ padding-left: 7rem !important;
3117
+ padding-right: 7rem !important;
3118
+ }
3119
+
3120
+ .py-28 {
3121
+ padding-top: 7rem !important;
3122
+ padding-bottom: 7rem !important;
3123
+ }
3124
+
3125
+ .m-32 {
3126
+ margin: 8rem !important;
3127
+ }
3128
+
3129
+ .mt-32 {
3130
+ margin-top: 8rem !important;
3131
+ }
3132
+
3133
+ .mr-32 {
3134
+ margin-right: 8rem !important;
3135
+ }
3136
+
3137
+ .mb-32 {
3138
+ margin-bottom: 8rem !important;
3139
+ }
3140
+
3141
+ .ml-32 {
3142
+ margin-left: 8rem !important;
3143
+ }
3144
+
3145
+ .mx-32 {
3146
+ margin-left: 8rem !important;
3147
+ margin-right: 8rem !important;
3148
+ }
3149
+
3150
+ .my-32 {
3151
+ margin-top: 8rem !important;
3152
+ margin-bottom: 8rem !important;
3153
+ }
3154
+
3155
+ .p-32 {
3156
+ padding: 8rem !important;
3157
+ }
3158
+
3159
+ .pt-32 {
3160
+ padding-top: 8rem !important;
3161
+ }
3162
+
3163
+ .pr-32 {
3164
+ padding-right: 8rem !important;
3165
+ }
3166
+
3167
+ .pb-32 {
3168
+ padding-bottom: 8rem !important;
3169
+ }
3170
+
3171
+ .pl-32 {
3172
+ padding-left: 8rem !important;
3173
+ }
3174
+
3175
+ .px-32 {
3176
+ padding-left: 8rem !important;
3177
+ padding-right: 8rem !important;
3178
+ }
3179
+
3180
+ .py-32 {
3181
+ padding-top: 8rem !important;
3182
+ padding-bottom: 8rem !important;
3183
+ }
3184
+
3185
+ .m-36 {
3186
+ margin: 9rem !important;
3187
+ }
3188
+
3189
+ .mt-36 {
3190
+ margin-top: 9rem !important;
3191
+ }
3192
+
3193
+ .mr-36 {
3194
+ margin-right: 9rem !important;
3195
+ }
3196
+
3197
+ .mb-36 {
3198
+ margin-bottom: 9rem !important;
3199
+ }
3200
+
3201
+ .ml-36 {
3202
+ margin-left: 9rem !important;
3203
+ }
3204
+
3205
+ .mx-36 {
3206
+ margin-left: 9rem !important;
3207
+ margin-right: 9rem !important;
3208
+ }
3209
+
3210
+ .my-36 {
3211
+ margin-top: 9rem !important;
3212
+ margin-bottom: 9rem !important;
3213
+ }
3214
+
3215
+ .p-36 {
3216
+ padding: 9rem !important;
3217
+ }
3218
+
3219
+ .pt-36 {
3220
+ padding-top: 9rem !important;
3221
+ }
3222
+
3223
+ .pr-36 {
3224
+ padding-right: 9rem !important;
3225
+ }
3226
+
3227
+ .pb-36 {
3228
+ padding-bottom: 9rem !important;
3229
+ }
3230
+
3231
+ .pl-36 {
3232
+ padding-left: 9rem !important;
3233
+ }
3234
+
3235
+ .px-36 {
3236
+ padding-left: 9rem !important;
3237
+ padding-right: 9rem !important;
3238
+ }
3239
+
3240
+ .py-36 {
3241
+ padding-top: 9rem !important;
3242
+ padding-bottom: 9rem !important;
3243
+ }
3244
+
3245
+ .m-40 {
3246
+ margin: 10rem !important;
3247
+ }
3248
+
3249
+ .mt-40 {
3250
+ margin-top: 10rem !important;
3251
+ }
3252
+
3253
+ .mr-40 {
3254
+ margin-right: 10rem !important;
3255
+ }
3256
+
3257
+ .mb-40 {
3258
+ margin-bottom: 10rem !important;
3259
+ }
3260
+
3261
+ .ml-40 {
3262
+ margin-left: 10rem !important;
3263
+ }
3264
+
3265
+ .mx-40 {
3266
+ margin-left: 10rem !important;
3267
+ margin-right: 10rem !important;
3268
+ }
3269
+
3270
+ .my-40 {
3271
+ margin-top: 10rem !important;
3272
+ margin-bottom: 10rem !important;
3273
+ }
3274
+
3275
+ .p-40 {
3276
+ padding: 10rem !important;
3277
+ }
3278
+
3279
+ .pt-40 {
3280
+ padding-top: 10rem !important;
3281
+ }
3282
+
3283
+ .pr-40 {
3284
+ padding-right: 10rem !important;
3285
+ }
3286
+
3287
+ .pb-40 {
3288
+ padding-bottom: 10rem !important;
3289
+ }
3290
+
3291
+ .pl-40 {
3292
+ padding-left: 10rem !important;
3293
+ }
3294
+
3295
+ .px-40 {
3296
+ padding-left: 10rem !important;
3297
+ padding-right: 10rem !important;
3298
+ }
3299
+
3300
+ .py-40 {
3301
+ padding-top: 10rem !important;
3302
+ padding-bottom: 10rem !important;
3303
+ }
3304
+
3305
+ .m-44 {
3306
+ margin: 11rem !important;
3307
+ }
3308
+
3309
+ .mt-44 {
3310
+ margin-top: 11rem !important;
3311
+ }
3312
+
3313
+ .mr-44 {
3314
+ margin-right: 11rem !important;
3315
+ }
3316
+
3317
+ .mb-44 {
3318
+ margin-bottom: 11rem !important;
3319
+ }
3320
+
3321
+ .ml-44 {
3322
+ margin-left: 11rem !important;
3323
+ }
3324
+
3325
+ .mx-44 {
3326
+ margin-left: 11rem !important;
3327
+ margin-right: 11rem !important;
3328
+ }
3329
+
3330
+ .my-44 {
3331
+ margin-top: 11rem !important;
3332
+ margin-bottom: 11rem !important;
3333
+ }
3334
+
3335
+ .p-44 {
3336
+ padding: 11rem !important;
3337
+ }
3338
+
3339
+ .pt-44 {
3340
+ padding-top: 11rem !important;
3341
+ }
3342
+
3343
+ .pr-44 {
3344
+ padding-right: 11rem !important;
3345
+ }
3346
+
3347
+ .pb-44 {
3348
+ padding-bottom: 11rem !important;
3349
+ }
3350
+
3351
+ .pl-44 {
3352
+ padding-left: 11rem !important;
3353
+ }
3354
+
3355
+ .px-44 {
3356
+ padding-left: 11rem !important;
3357
+ padding-right: 11rem !important;
3358
+ }
3359
+
3360
+ .py-44 {
3361
+ padding-top: 11rem !important;
3362
+ padding-bottom: 11rem !important;
3363
+ }
3364
+
3365
+ .m-48 {
3366
+ margin: 12rem !important;
3367
+ }
3368
+
3369
+ .mt-48 {
3370
+ margin-top: 12rem !important;
3371
+ }
3372
+
3373
+ .mr-48 {
3374
+ margin-right: 12rem !important;
3375
+ }
3376
+
3377
+ .mb-48 {
3378
+ margin-bottom: 12rem !important;
3379
+ }
3380
+
3381
+ .ml-48 {
3382
+ margin-left: 12rem !important;
3383
+ }
3384
+
3385
+ .mx-48 {
3386
+ margin-left: 12rem !important;
3387
+ margin-right: 12rem !important;
3388
+ }
3389
+
3390
+ .my-48 {
3391
+ margin-top: 12rem !important;
3392
+ margin-bottom: 12rem !important;
3393
+ }
3394
+
3395
+ .p-48 {
3396
+ padding: 12rem !important;
3397
+ }
3398
+
3399
+ .pt-48 {
3400
+ padding-top: 12rem !important;
3401
+ }
3402
+
3403
+ .pr-48 {
3404
+ padding-right: 12rem !important;
3405
+ }
3406
+
3407
+ .pb-48 {
3408
+ padding-bottom: 12rem !important;
3409
+ }
3410
+
3411
+ .pl-48 {
3412
+ padding-left: 12rem !important;
3413
+ }
3414
+
3415
+ .px-48 {
3416
+ padding-left: 12rem !important;
3417
+ padding-right: 12rem !important;
3418
+ }
3419
+
3420
+ .py-48 {
3421
+ padding-top: 12rem !important;
3422
+ padding-bottom: 12rem !important;
3423
+ }
3424
+
3425
+ .m-52 {
3426
+ margin: 13rem !important;
3427
+ }
3428
+
3429
+ .mt-52 {
3430
+ margin-top: 13rem !important;
3431
+ }
3432
+
3433
+ .mr-52 {
3434
+ margin-right: 13rem !important;
3435
+ }
3436
+
3437
+ .mb-52 {
3438
+ margin-bottom: 13rem !important;
3439
+ }
3440
+
3441
+ .ml-52 {
3442
+ margin-left: 13rem !important;
3443
+ }
3444
+
3445
+ .mx-52 {
3446
+ margin-left: 13rem !important;
3447
+ margin-right: 13rem !important;
3448
+ }
3449
+
3450
+ .my-52 {
3451
+ margin-top: 13rem !important;
3452
+ margin-bottom: 13rem !important;
3453
+ }
3454
+
3455
+ .p-52 {
3456
+ padding: 13rem !important;
3457
+ }
3458
+
3459
+ .pt-52 {
3460
+ padding-top: 13rem !important;
3461
+ }
3462
+
3463
+ .pr-52 {
3464
+ padding-right: 13rem !important;
3465
+ }
3466
+
3467
+ .pb-52 {
3468
+ padding-bottom: 13rem !important;
3469
+ }
3470
+
3471
+ .pl-52 {
3472
+ padding-left: 13rem !important;
3473
+ }
3474
+
3475
+ .px-52 {
3476
+ padding-left: 13rem !important;
3477
+ padding-right: 13rem !important;
3478
+ }
3479
+
3480
+ .py-52 {
3481
+ padding-top: 13rem !important;
3482
+ padding-bottom: 13rem !important;
3483
+ }
3484
+
3485
+ .m-56 {
3486
+ margin: 14rem !important;
3487
+ }
3488
+
3489
+ .mt-56 {
3490
+ margin-top: 14rem !important;
3491
+ }
3492
+
3493
+ .mr-56 {
3494
+ margin-right: 14rem !important;
3495
+ }
3496
+
3497
+ .mb-56 {
3498
+ margin-bottom: 14rem !important;
3499
+ }
3500
+
3501
+ .ml-56 {
3502
+ margin-left: 14rem !important;
3503
+ }
3504
+
3505
+ .mx-56 {
3506
+ margin-left: 14rem !important;
3507
+ margin-right: 14rem !important;
3508
+ }
3509
+
3510
+ .my-56 {
3511
+ margin-top: 14rem !important;
3512
+ margin-bottom: 14rem !important;
3513
+ }
3514
+
3515
+ .p-56 {
3516
+ padding: 14rem !important;
3517
+ }
3518
+
3519
+ .pt-56 {
3520
+ padding-top: 14rem !important;
3521
+ }
3522
+
3523
+ .pr-56 {
3524
+ padding-right: 14rem !important;
3525
+ }
3526
+
3527
+ .pb-56 {
3528
+ padding-bottom: 14rem !important;
3529
+ }
3530
+
3531
+ .pl-56 {
3532
+ padding-left: 14rem !important;
3533
+ }
3534
+
3535
+ .px-56 {
3536
+ padding-left: 14rem !important;
3537
+ padding-right: 14rem !important;
3538
+ }
3539
+
3540
+ .py-56 {
3541
+ padding-top: 14rem !important;
3542
+ padding-bottom: 14rem !important;
3543
+ }
3544
+
3545
+ .m-60 {
3546
+ margin: 15rem !important;
3547
+ }
3548
+
3549
+ .mt-60 {
3550
+ margin-top: 15rem !important;
3551
+ }
3552
+
3553
+ .mr-60 {
3554
+ margin-right: 15rem !important;
3555
+ }
3556
+
3557
+ .mb-60 {
3558
+ margin-bottom: 15rem !important;
3559
+ }
3560
+
3561
+ .ml-60 {
3562
+ margin-left: 15rem !important;
3563
+ }
3564
+
3565
+ .mx-60 {
3566
+ margin-left: 15rem !important;
3567
+ margin-right: 15rem !important;
3568
+ }
3569
+
3570
+ .my-60 {
3571
+ margin-top: 15rem !important;
3572
+ margin-bottom: 15rem !important;
3573
+ }
3574
+
3575
+ .p-60 {
3576
+ padding: 15rem !important;
3577
+ }
3578
+
3579
+ .pt-60 {
3580
+ padding-top: 15rem !important;
3581
+ }
3582
+
3583
+ .pr-60 {
3584
+ padding-right: 15rem !important;
3585
+ }
3586
+
3587
+ .pb-60 {
3588
+ padding-bottom: 15rem !important;
3589
+ }
3590
+
3591
+ .pl-60 {
3592
+ padding-left: 15rem !important;
3593
+ }
3594
+
3595
+ .px-60 {
3596
+ padding-left: 15rem !important;
3597
+ padding-right: 15rem !important;
3598
+ }
3599
+
3600
+ .py-60 {
3601
+ padding-top: 15rem !important;
3602
+ padding-bottom: 15rem !important;
3603
+ }
3604
+
3605
+ .m-64 {
3606
+ margin: 16rem !important;
3607
+ }
3608
+
3609
+ .mt-64 {
3610
+ margin-top: 16rem !important;
3611
+ }
3612
+
3613
+ .mr-64 {
3614
+ margin-right: 16rem !important;
3615
+ }
3616
+
3617
+ .mb-64 {
3618
+ margin-bottom: 16rem !important;
3619
+ }
3620
+
3621
+ .ml-64 {
3622
+ margin-left: 16rem !important;
3623
+ }
3624
+
3625
+ .mx-64 {
3626
+ margin-left: 16rem !important;
3627
+ margin-right: 16rem !important;
3628
+ }
3629
+
3630
+ .my-64 {
3631
+ margin-top: 16rem !important;
3632
+ margin-bottom: 16rem !important;
3633
+ }
3634
+
3635
+ .p-64 {
3636
+ padding: 16rem !important;
3637
+ }
3638
+
3639
+ .pt-64 {
3640
+ padding-top: 16rem !important;
3641
+ }
3642
+
3643
+ .pr-64 {
3644
+ padding-right: 16rem !important;
3645
+ }
3646
+
3647
+ .pb-64 {
3648
+ padding-bottom: 16rem !important;
3649
+ }
3650
+
3651
+ .pl-64 {
3652
+ padding-left: 16rem !important;
3653
+ }
3654
+
3655
+ .px-64 {
3656
+ padding-left: 16rem !important;
3657
+ padding-right: 16rem !important;
3658
+ }
3659
+
3660
+ .py-64 {
3661
+ padding-top: 16rem !important;
3662
+ padding-bottom: 16rem !important;
3663
+ }
3664
+
3665
+ .m-72 {
3666
+ margin: 18rem !important;
3667
+ }
3668
+
3669
+ .mt-72 {
3670
+ margin-top: 18rem !important;
3671
+ }
3672
+
3673
+ .mr-72 {
3674
+ margin-right: 18rem !important;
3675
+ }
3676
+
3677
+ .mb-72 {
3678
+ margin-bottom: 18rem !important;
3679
+ }
3680
+
3681
+ .ml-72 {
3682
+ margin-left: 18rem !important;
3683
+ }
3684
+
3685
+ .mx-72 {
3686
+ margin-left: 18rem !important;
3687
+ margin-right: 18rem !important;
3688
+ }
3689
+
3690
+ .my-72 {
3691
+ margin-top: 18rem !important;
3692
+ margin-bottom: 18rem !important;
3693
+ }
3694
+
3695
+ .p-72 {
3696
+ padding: 18rem !important;
3697
+ }
3698
+
3699
+ .pt-72 {
3700
+ padding-top: 18rem !important;
3701
+ }
3702
+
3703
+ .pr-72 {
3704
+ padding-right: 18rem !important;
3705
+ }
3706
+
3707
+ .pb-72 {
3708
+ padding-bottom: 18rem !important;
3709
+ }
3710
+
3711
+ .pl-72 {
3712
+ padding-left: 18rem !important;
3713
+ }
3714
+
3715
+ .px-72 {
3716
+ padding-left: 18rem !important;
3717
+ padding-right: 18rem !important;
3718
+ }
3719
+
3720
+ .py-72 {
3721
+ padding-top: 18rem !important;
3722
+ padding-bottom: 18rem !important;
3723
+ }
3724
+
3725
+ .m-80 {
3726
+ margin: 20rem !important;
3727
+ }
3728
+
3729
+ .mt-80 {
3730
+ margin-top: 20rem !important;
3731
+ }
3732
+
3733
+ .mr-80 {
3734
+ margin-right: 20rem !important;
3735
+ }
3736
+
3737
+ .mb-80 {
3738
+ margin-bottom: 20rem !important;
3739
+ }
3740
+
3741
+ .ml-80 {
3742
+ margin-left: 20rem !important;
3743
+ }
3744
+
3745
+ .mx-80 {
3746
+ margin-left: 20rem !important;
3747
+ margin-right: 20rem !important;
3748
+ }
3749
+
3750
+ .my-80 {
3751
+ margin-top: 20rem !important;
3752
+ margin-bottom: 20rem !important;
3753
+ }
3754
+
3755
+ .p-80 {
3756
+ padding: 20rem !important;
3757
+ }
3758
+
3759
+ .pt-80 {
3760
+ padding-top: 20rem !important;
3761
+ }
3762
+
3763
+ .pr-80 {
3764
+ padding-right: 20rem !important;
3765
+ }
3766
+
3767
+ .pb-80 {
3768
+ padding-bottom: 20rem !important;
3769
+ }
3770
+
3771
+ .pl-80 {
3772
+ padding-left: 20rem !important;
3773
+ }
3774
+
3775
+ .px-80 {
3776
+ padding-left: 20rem !important;
3777
+ padding-right: 20rem !important;
3778
+ }
3779
+
3780
+ .py-80 {
3781
+ padding-top: 20rem !important;
3782
+ padding-bottom: 20rem !important;
3783
+ }
3784
+
3785
+ .m-96 {
3786
+ margin: 24rem !important;
3787
+ }
3788
+
3789
+ .mt-96 {
3790
+ margin-top: 24rem !important;
3791
+ }
3792
+
3793
+ .mr-96 {
3794
+ margin-right: 24rem !important;
3795
+ }
3796
+
3797
+ .mb-96 {
3798
+ margin-bottom: 24rem !important;
3799
+ }
3800
+
3801
+ .ml-96 {
3802
+ margin-left: 24rem !important;
3803
+ }
3804
+
3805
+ .mx-96 {
3806
+ margin-left: 24rem !important;
3807
+ margin-right: 24rem !important;
3808
+ }
3809
+
3810
+ .my-96 {
3811
+ margin-top: 24rem !important;
3812
+ margin-bottom: 24rem !important;
3813
+ }
3814
+
3815
+ .p-96 {
3816
+ padding: 24rem !important;
3817
+ }
3818
+
3819
+ .pt-96 {
3820
+ padding-top: 24rem !important;
3821
+ }
3822
+
3823
+ .pr-96 {
3824
+ padding-right: 24rem !important;
3825
+ }
3826
+
3827
+ .pb-96 {
3828
+ padding-bottom: 24rem !important;
3829
+ }
3830
+
3831
+ .pl-96 {
3832
+ padding-left: 24rem !important;
3833
+ }
3834
+
3835
+ .px-96 {
3836
+ padding-left: 24rem !important;
3837
+ padding-right: 24rem !important;
3838
+ }
3839
+
3840
+ .py-96 {
3841
+ padding-top: 24rem !important;
3842
+ padding-bottom: 24rem !important;
3843
+ }
3844
+
3845
+ .m-auto {
3846
+ margin: auto !important;
3847
+ }
3848
+
3849
+ .mt-auto {
3850
+ margin-top: auto !important;
3851
+ }
3852
+
3853
+ .mr-auto {
3854
+ margin-right: auto !important;
3855
+ }
3856
+
3857
+ .mb-auto {
3858
+ margin-bottom: auto !important;
3859
+ }
3860
+
3861
+ .ml-auto {
3862
+ margin-left: auto !important;
3863
+ }
3864
+
3865
+ .mx-auto {
3866
+ margin-left: auto !important;
3867
+ margin-right: auto !important;
3868
+ }
3869
+
3870
+ .my-auto {
3871
+ margin-top: auto !important;
3872
+ margin-bottom: auto !important;
3873
+ }
3874
+
3875
+ .p-auto {
3876
+ padding: auto !important;
3877
+ }
3878
+
3879
+ .pt-auto {
3880
+ padding-top: auto !important;
3881
+ }
3882
+
3883
+ .pr-auto {
3884
+ padding-right: auto !important;
3885
+ }
3886
+
3887
+ .pb-auto {
3888
+ padding-bottom: auto !important;
3889
+ }
3890
+
3891
+ .pl-auto {
3892
+ padding-left: auto !important;
3893
+ }
3894
+
3895
+ .px-auto {
3896
+ padding-left: auto !important;
3897
+ padding-right: auto !important;
3898
+ }
3899
+
3900
+ .py-auto {
3901
+ padding-top: auto !important;
3902
+ padding-bottom: auto !important;
3903
+ }
3904
+
3905
+ .w-0 {
3906
+ width: 0 !important;
3907
+ }
3908
+
3909
+ .w-px {
3910
+ width: 1px !important;
3911
+ }
3912
+
3913
+ .w-1 {
3914
+ width: 0.25rem !important;
3915
+ }
3916
+
3917
+ .w-2 {
3918
+ width: 0.5rem !important;
3919
+ }
3920
+
3921
+ .w-3 {
3922
+ width: 0.75rem !important;
3923
+ }
3924
+
3925
+ .w-4 {
3926
+ width: 1rem !important;
3927
+ }
3928
+
3929
+ .w-5 {
3930
+ width: 1.25rem !important;
3931
+ }
3932
+
3933
+ .w-6 {
3934
+ width: 1.5rem !important;
3935
+ }
3936
+
3937
+ .w-8 {
3938
+ width: 2rem !important;
3939
+ }
3940
+
3941
+ .w-10 {
3942
+ width: 2.5rem !important;
3943
+ }
3944
+
3945
+ .w-12 {
3946
+ width: 3rem !important;
3947
+ }
3948
+
3949
+ .w-16 {
3950
+ width: 4rem !important;
3951
+ }
3952
+
3953
+ .w-20 {
3954
+ width: 5rem !important;
3955
+ }
3956
+
3957
+ .w-24 {
3958
+ width: 6rem !important;
3959
+ }
3960
+
3961
+ .w-32 {
3962
+ width: 8rem !important;
3963
+ }
3964
+
3965
+ .w-40 {
3966
+ width: 10rem !important;
3967
+ }
3968
+
3969
+ .w-48 {
3970
+ width: 12rem !important;
3971
+ }
3972
+
3973
+ .w-56 {
3974
+ width: 14rem !important;
3975
+ }
3976
+
3977
+ .w-64 {
3978
+ width: 16rem !important;
3979
+ }
3980
+
3981
+ .w-72 {
3982
+ width: 18rem !important;
3983
+ }
3984
+
3985
+ .w-80 {
3986
+ width: 20rem !important;
3987
+ }
3988
+
3989
+ .w-96 {
3990
+ width: 24rem !important;
3991
+ }
3992
+
3993
+ .w-1-2 {
3994
+ width: 50% !important;
3995
+ }
3996
+
3997
+ .w-1-3 {
3998
+ width: 33.333333% !important;
3999
+ }
4000
+
4001
+ .w-2-3 {
4002
+ width: 66.666667% !important;
4003
+ }
4004
+
4005
+ .w-1-4 {
4006
+ width: 25% !important;
4007
+ }
4008
+
4009
+ .w-3-4 {
4010
+ width: 75% !important;
4011
+ }
4012
+
4013
+ .w-1-5 {
4014
+ width: 20% !important;
4015
+ }
4016
+
4017
+ .w-4-5 {
4018
+ width: 80% !important;
4019
+ }
4020
+
4021
+ .w-full {
4022
+ width: 100% !important;
4023
+ }
4024
+
4025
+ .w-screen {
4026
+ width: 100vw !important;
4027
+ }
4028
+
4029
+ .w-svw {
4030
+ width: 100svw !important;
4031
+ }
4032
+
4033
+ .w-dvw {
4034
+ width: 100dvw !important;
4035
+ }
4036
+
4037
+ .w-auto {
4038
+ width: auto !important;
4039
+ }
4040
+
4041
+ .w-fit {
4042
+ width: fit-content !important;
4043
+ }
4044
+
4045
+ .w-min {
4046
+ width: min-content !important;
4047
+ }
4048
+
4049
+ .w-max {
4050
+ width: max-content !important;
4051
+ }
4052
+
4053
+ .h-0 {
4054
+ height: 0 !important;
4055
+ }
4056
+
4057
+ .h-px {
4058
+ height: 1px !important;
4059
+ }
4060
+
4061
+ .h-1 {
4062
+ height: 0.25rem !important;
4063
+ }
4064
+
4065
+ .h-2 {
4066
+ height: 0.5rem !important;
4067
+ }
4068
+
4069
+ .h-3 {
4070
+ height: 0.75rem !important;
4071
+ }
4072
+
4073
+ .h-4 {
4074
+ height: 1rem !important;
4075
+ }
4076
+
4077
+ .h-5 {
4078
+ height: 1.25rem !important;
4079
+ }
4080
+
4081
+ .h-6 {
4082
+ height: 1.5rem !important;
4083
+ }
4084
+
4085
+ .h-8 {
4086
+ height: 2rem !important;
4087
+ }
4088
+
4089
+ .h-10 {
4090
+ height: 2.5rem !important;
4091
+ }
4092
+
4093
+ .h-12 {
4094
+ height: 3rem !important;
4095
+ }
4096
+
4097
+ .h-16 {
4098
+ height: 4rem !important;
4099
+ }
4100
+
4101
+ .h-20 {
4102
+ height: 5rem !important;
4103
+ }
4104
+
4105
+ .h-24 {
4106
+ height: 6rem !important;
4107
+ }
4108
+
4109
+ .h-32 {
4110
+ height: 8rem !important;
4111
+ }
4112
+
4113
+ .h-40 {
4114
+ height: 10rem !important;
4115
+ }
4116
+
4117
+ .h-48 {
4118
+ height: 12rem !important;
4119
+ }
4120
+
4121
+ .h-56 {
4122
+ height: 14rem !important;
4123
+ }
4124
+
4125
+ .h-64 {
4126
+ height: 16rem !important;
4127
+ }
4128
+
4129
+ .h-72 {
4130
+ height: 18rem !important;
4131
+ }
4132
+
4133
+ .h-80 {
4134
+ height: 20rem !important;
4135
+ }
4136
+
4137
+ .h-96 {
4138
+ height: 24rem !important;
4139
+ }
4140
+
4141
+ .h-1-2 {
4142
+ height: 50% !important;
4143
+ }
4144
+
4145
+ .h-1-3 {
4146
+ height: 33.333333% !important;
4147
+ }
4148
+
4149
+ .h-2-3 {
4150
+ height: 66.666667% !important;
4151
+ }
4152
+
4153
+ .h-1-4 {
4154
+ height: 25% !important;
4155
+ }
4156
+
4157
+ .h-3-4 {
4158
+ height: 75% !important;
4159
+ }
4160
+
4161
+ .h-full {
4162
+ height: 100% !important;
4163
+ }
4164
+
4165
+ .h-screen {
4166
+ height: 100vh !important;
4167
+ }
4168
+
4169
+ .h-svh {
4170
+ height: 100svh !important;
4171
+ }
4172
+
4173
+ .h-dvh {
4174
+ height: 100dvh !important;
4175
+ }
4176
+
4177
+ .h-auto {
4178
+ height: auto !important;
4179
+ }
4180
+
4181
+ .h-fit {
4182
+ height: fit-content !important;
4183
+ }
4184
+
4185
+ .h-min {
4186
+ height: min-content !important;
4187
+ }
4188
+
4189
+ .h-max {
4190
+ height: max-content !important;
4191
+ }
4192
+
4193
+ .min-w-0 {
4194
+ min-width: 0 !important;
4195
+ }
4196
+
4197
+ .min-w-full {
4198
+ min-width: 100% !important;
4199
+ }
4200
+
4201
+ .min-w-min {
4202
+ min-width: min-content !important;
4203
+ }
4204
+
4205
+ .min-w-max {
4206
+ min-width: max-content !important;
4207
+ }
4208
+
4209
+ .max-w-none {
4210
+ max-width: none !important;
4211
+ }
4212
+
4213
+ .max-w-xs {
4214
+ max-width: 20rem !important;
4215
+ }
4216
+
4217
+ .max-w-sm {
4218
+ max-width: 24rem !important;
4219
+ }
4220
+
4221
+ .max-w-md {
4222
+ max-width: 28rem !important;
4223
+ }
4224
+
4225
+ .max-w-lg {
4226
+ max-width: 32rem !important;
4227
+ }
4228
+
4229
+ .max-w-xl {
4230
+ max-width: 36rem !important;
4231
+ }
4232
+
4233
+ .max-w-2xl {
4234
+ max-width: 42rem !important;
4235
+ }
4236
+
4237
+ .max-w-3xl {
4238
+ max-width: 48rem !important;
4239
+ }
4240
+
4241
+ .max-w-4xl {
4242
+ max-width: 56rem !important;
4243
+ }
4244
+
4245
+ .max-w-5xl {
4246
+ max-width: 64rem !important;
4247
+ }
4248
+
4249
+ .max-w-6xl {
4250
+ max-width: 72rem !important;
4251
+ }
4252
+
4253
+ .max-w-7xl {
4254
+ max-width: 80rem !important;
4255
+ }
4256
+
4257
+ .max-w-full {
4258
+ max-width: 100% !important;
4259
+ }
4260
+
4261
+ .max-w-screen {
4262
+ max-width: 100vw !important;
4263
+ }
4264
+
4265
+ .min-h-0 {
4266
+ min-height: 0 !important;
4267
+ }
4268
+
4269
+ .min-h-full {
4270
+ min-height: 100% !important;
4271
+ }
4272
+
4273
+ .min-h-screen {
4274
+ min-height: 100vh !important;
4275
+ }
4276
+
4277
+ .min-h-svh {
4278
+ min-height: 100svh !important;
4279
+ }
4280
+
4281
+ .min-h-dvh {
4282
+ min-height: 100dvh !important;
4283
+ }
4284
+
4285
+ .max-h-none {
4286
+ max-height: none !important;
4287
+ }
4288
+
4289
+ .max-h-full {
4290
+ max-height: 100% !important;
4291
+ }
4292
+
4293
+ .max-h-screen {
4294
+ max-height: 100vh !important;
4295
+ }
4296
+
4297
+ .border-0 {
4298
+ border-width: 0 !important;
4299
+ }
4300
+
4301
+ .border-t-0 {
4302
+ border-top-width: 0 !important;
4303
+ }
4304
+
4305
+ .border-r-0 {
4306
+ border-right-width: 0 !important;
4307
+ }
4308
+
4309
+ .border-b-0 {
4310
+ border-bottom-width: 0 !important;
4311
+ }
4312
+
4313
+ .border-l-0 {
4314
+ border-left-width: 0 !important;
4315
+ }
4316
+
4317
+ .border-1 {
4318
+ border-width: 1px !important;
4319
+ }
4320
+
4321
+ .border-t-1 {
4322
+ border-top-width: 1px !important;
4323
+ }
4324
+
4325
+ .border-r-1 {
4326
+ border-right-width: 1px !important;
4327
+ }
4328
+
4329
+ .border-b-1 {
4330
+ border-bottom-width: 1px !important;
4331
+ }
4332
+
4333
+ .border-l-1 {
4334
+ border-left-width: 1px !important;
4335
+ }
4336
+
4337
+ .border-2 {
4338
+ border-width: 2px !important;
4339
+ }
4340
+
4341
+ .border-t-2 {
4342
+ border-top-width: 2px !important;
4343
+ }
4344
+
4345
+ .border-r-2 {
4346
+ border-right-width: 2px !important;
4347
+ }
4348
+
4349
+ .border-b-2 {
4350
+ border-bottom-width: 2px !important;
4351
+ }
4352
+
4353
+ .border-l-2 {
4354
+ border-left-width: 2px !important;
4355
+ }
4356
+
4357
+ .border-4 {
4358
+ border-width: 4px !important;
4359
+ }
4360
+
4361
+ .border-t-4 {
4362
+ border-top-width: 4px !important;
4363
+ }
4364
+
4365
+ .border-r-4 {
4366
+ border-right-width: 4px !important;
4367
+ }
4368
+
4369
+ .border-b-4 {
4370
+ border-bottom-width: 4px !important;
4371
+ }
4372
+
4373
+ .border-l-4 {
4374
+ border-left-width: 4px !important;
4375
+ }
4376
+
4377
+ .border-8 {
4378
+ border-width: 8px !important;
4379
+ }
4380
+
4381
+ .border-t-8 {
4382
+ border-top-width: 8px !important;
4383
+ }
4384
+
4385
+ .border-r-8 {
4386
+ border-right-width: 8px !important;
4387
+ }
4388
+
4389
+ .border-b-8 {
4390
+ border-bottom-width: 8px !important;
4391
+ }
4392
+
4393
+ .border-l-8 {
4394
+ border-left-width: 8px !important;
4395
+ }
4396
+
4397
+ .border-solid {
4398
+ border-style: solid !important;
4399
+ }
4400
+
4401
+ .border-dashed {
4402
+ border-style: dashed !important;
4403
+ }
4404
+
4405
+ .border-dotted {
4406
+ border-style: dotted !important;
4407
+ }
4408
+
4409
+ .border-none {
4410
+ border-style: none !important;
4411
+ }
4412
+
4413
+ .border {
4414
+ border: 1px solid var(--mastors-border-default) !important;
4415
+ }
4416
+
4417
+ .border-t {
4418
+ border-top: 1px solid var(--mastors-border-default) !important;
4419
+ }
4420
+
4421
+ .border-r {
4422
+ border-right: 1px solid var(--mastors-border-default) !important;
4423
+ }
4424
+
4425
+ .border-b {
4426
+ border-bottom: 1px solid var(--mastors-border-default) !important;
4427
+ }
4428
+
4429
+ .border-l {
4430
+ border-left: 1px solid var(--mastors-border-default) !important;
4431
+ }
4432
+
4433
+ .outline-none {
4434
+ outline: none !important;
4435
+ }
4436
+
4437
+ .outline {
4438
+ outline: 2px solid var(--mastors-border-focus) !important;
4439
+ }
4440
+
4441
+ :root {
4442
+ --mastors-color-primary: #2563eb;
4443
+ --mastors-color-primary-light: #60a5fa;
4444
+ --mastors-color-primary-dark: #1d4ed8;
4445
+ --mastors-color-secondary: #7c3aed;
4446
+ --mastors-color-secondary-light: #a78bfa;
4447
+ --mastors-color-secondary-dark: #5b21b6;
4448
+ --mastors-color-accent: #0ea5e9;
4449
+ --mastors-color-accent-light: #38bdf8;
4450
+ --mastors-color-accent-dark: #0284c7;
4451
+ --mastors-color-success: #16a34a;
4452
+ --mastors-color-success-light: #4ade80;
4453
+ --mastors-color-success-dark: #15803d;
4454
+ --mastors-color-warning: #d97706;
4455
+ --mastors-color-warning-light: #fbbf24;
4456
+ --mastors-color-warning-dark: #b45309;
4457
+ --mastors-color-danger: #dc2626;
4458
+ --mastors-color-danger-light: #f87171;
4459
+ --mastors-color-danger-dark: #b91c1c;
4460
+ --mastors-color-info: #0891b2;
4461
+ --mastors-color-info-light: #22d3ee;
4462
+ --mastors-color-info-dark: #0e7490;
4463
+ --mastors-color-white: #ffffff;
4464
+ --mastors-color-black: #000000;
4465
+ --mastors-color-neutral-50: #f9fafb;
4466
+ --mastors-color-neutral-100: #f3f4f6;
4467
+ --mastors-color-neutral-200: #e5e7eb;
4468
+ --mastors-color-neutral-300: #d1d5db;
4469
+ --mastors-color-neutral-400: #9ca3af;
4470
+ --mastors-color-neutral-500: #6b7280;
4471
+ --mastors-color-neutral-600: #4b5563;
4472
+ --mastors-color-neutral-700: #374151;
4473
+ --mastors-color-neutral-800: #1f2937;
4474
+ --mastors-color-neutral-900: #111827;
4475
+ --mastors-color-neutral-950: #030712;
4476
+ --mastors-color-surface: #ffffff;
4477
+ --mastors-color-surface-raised: #f9fafb;
4478
+ --mastors-color-surface-overlay: #f3f4f6;
4479
+ --mastors-color-surface-sunken: #e5e7eb;
4480
+ --mastors-color-transparent: transparent;
4481
+ --mastors-text-primary: #111827;
4482
+ --mastors-text-secondary: #374151;
4483
+ --mastors-text-muted: #6b7280;
4484
+ --mastors-text-disabled: #9ca3af;
4485
+ --mastors-text-inverse: #ffffff;
4486
+ --mastors-bg-body: #ffffff;
4487
+ --mastors-bg-subtle: #f9fafb;
4488
+ --mastors-bg-muted: #f3f4f6;
4489
+ --mastors-bg-inverse: #111827;
4490
+ --mastors-border-default: #e5e7eb;
4491
+ --mastors-border-strong: #d1d5db;
4492
+ --mastors-border-focus: #2563eb;
4493
+ --mastors-link: #2563eb;
4494
+ --mastors-link-hover: #1d4ed8;
4495
+ --mastors-link-visited: #7c3aed;
4496
+ --mastors-shadow-none: none;
4497
+ --mastors-shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
4498
+ --mastors-shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
4499
+ --mastors-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.10), 0 2px 4px -2px rgba(0, 0, 0, 0.10);
4500
+ --mastors-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
4501
+ --mastors-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.10), 0 8px 10px -6px rgba(0, 0, 0, 0.10);
4502
+ --mastors-shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
4503
+ --mastors-shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
4504
+ --mastors-shadow-primary: 0 4px 14px 0 rgba(37, 99, 235, 0.35);
4505
+ --mastors-shadow-success: 0 4px 14px 0 rgba(22, 163, 74, 0.35);
4506
+ --mastors-shadow-danger: 0 4px 14px 0 rgba(220, 38, 38, 0.35);
4507
+ --mastors-shadow-warning: 0 4px 14px 0 rgba(217, 119, 6, 0.35);
4508
+ --mastors-shadow-dark-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.40);
4509
+ --mastors-shadow-dark-md: 0 4px 6px -1px rgba(0, 0, 0, 0.40);
4510
+ --mastors-shadow-dark-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.50);
4511
+ --mastors-radius-none: 0;
4512
+ --mastors-radius-xs: 2px;
4513
+ --mastors-radius-sm: 4px;
4514
+ --mastors-radius-md: 8px;
4515
+ --mastors-radius-lg: 12px;
4516
+ --mastors-radius-xl: 16px;
4517
+ --mastors-radius-2xl: 24px;
4518
+ --mastors-radius-3xl: 32px;
4519
+ --mastors-radius-full: 9999px;
4520
+ --mastors-z-base: 0;
4521
+ --mastors-z-raised: 10;
4522
+ --mastors-z-dropdown: 100;
4523
+ --mastors-z-sticky: 200;
4524
+ --mastors-z-fixed: 300;
4525
+ --mastors-z-overlay: 400;
4526
+ --mastors-z-modal: 500;
4527
+ --mastors-z-popover: 600;
4528
+ --mastors-z-tooltip: 700;
4529
+ --mastors-z-toast: 800;
4530
+ --mastors-z-spinner: 900;
4531
+ --mastors-z-max: 9999;
4532
+ --mastors-opacity-0: 0;
4533
+ --mastors-opacity-5: 0.05;
4534
+ --mastors-opacity-10: 0.1;
4535
+ --mastors-opacity-15: 0.15;
4536
+ --mastors-opacity-20: 0.2;
4537
+ --mastors-opacity-25: 0.25;
4538
+ --mastors-opacity-30: 0.3;
4539
+ --mastors-opacity-40: 0.4;
4540
+ --mastors-opacity-50: 0.5;
4541
+ --mastors-opacity-60: 0.6;
4542
+ --mastors-opacity-70: 0.7;
4543
+ --mastors-opacity-75: 0.75;
4544
+ --mastors-opacity-80: 0.8;
4545
+ --mastors-opacity-90: 0.9;
4546
+ --mastors-opacity-95: 0.95;
4547
+ --mastors-opacity-100: 1;
4548
+ --mastors-duration-instant: 0ms;
4549
+ --mastors-duration-fast: 100ms;
4550
+ --mastors-duration-normal: 200ms;
4551
+ --mastors-duration-moderate: 300ms;
4552
+ --mastors-duration-slow: 500ms;
4553
+ --mastors-duration-slower: 700ms;
4554
+ --mastors-duration-slowest: 1000ms;
4555
+ --mastors-easing-linear: cubic-bezier(0, 0, 1, 1);
4556
+ --mastors-easing-ease: cubic-bezier(0.25, 0.1, 0.25, 1);
4557
+ --mastors-easing-ease-in: cubic-bezier(0.4, 0, 1, 1);
4558
+ --mastors-easing-ease-out: cubic-bezier(0, 0, 0.2, 1);
4559
+ --mastors-easing-ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
4560
+ --mastors-easing-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
4561
+ --mastors-easing-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
4562
+ --mastors-easing-smooth: cubic-bezier(0.23, 1, 0.32, 1);
4563
+ --mastors-easing-sharp: cubic-bezier(0.4, 0, 0.6, 1);
4564
+ }
4565
+
4566
+ /*# sourceMappingURL=mastors-core.css.map */