@kompasid/lit-web-components 0.1.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 (76) hide show
  1. package/.editorconfig +29 -0
  2. package/.github/workflows/npm-publish.yml +35 -0
  3. package/LICENSE +21 -0
  4. package/README.md +62 -0
  5. package/assets/font-awesome.ts +21 -0
  6. package/components.d.ts +4 -0
  7. package/demo/index.html +137 -0
  8. package/dist/assets/font-awesome.d.ts +2 -0
  9. package/dist/assets/font-awesome.js +20 -0
  10. package/dist/assets/font-awesome.js.map +1 -0
  11. package/dist/src/components/kompas-footer/KompasFooter.d.ts +13 -0
  12. package/dist/src/components/kompas-footer/KompasFooter.js +304 -0
  13. package/dist/src/components/kompas-footer/KompasFooter.js.map +1 -0
  14. package/dist/src/components/kompas-footer/types.d.ts +47 -0
  15. package/dist/src/components/kompas-footer/types.js +2 -0
  16. package/dist/src/components/kompas-footer/types.js.map +1 -0
  17. package/dist/src/components/kompas-metered-paywall/KompasMeteredPaywall.d.ts +50 -0
  18. package/dist/src/components/kompas-metered-paywall/KompasMeteredPaywall.js +225 -0
  19. package/dist/src/components/kompas-metered-paywall/KompasMeteredPaywall.js.map +1 -0
  20. package/dist/src/components/kompas-paywall/KompasPaywall.d.ts +73 -0
  21. package/dist/src/components/kompas-paywall/KompasPaywall.js +470 -0
  22. package/dist/src/components/kompas-paywall/KompasPaywall.js.map +1 -0
  23. package/dist/src/components/kompas-paywall/types.d.ts +53 -0
  24. package/dist/src/components/kompas-paywall/types.js +2 -0
  25. package/dist/src/components/kompas-paywall/types.js.map +1 -0
  26. package/dist/src/components/kompas-paywall-banner-registration/KompasPaywallBannerRegistration.d.ts +11 -0
  27. package/dist/src/components/kompas-paywall-banner-registration/KompasPaywallBannerRegistration.js +100 -0
  28. package/dist/src/components/kompas-paywall-banner-registration/KompasPaywallBannerRegistration.js.map +1 -0
  29. package/dist/src/components/kompas-paywall-body/KompasPaywallBody.d.ts +107 -0
  30. package/dist/src/components/kompas-paywall-body/KompasPaywallBody.js +843 -0
  31. package/dist/src/components/kompas-paywall-body/KompasPaywallBody.js.map +1 -0
  32. package/dist/src/components/kompas-paywall-information-header/KompasPaywallInformationHeader.d.ts +8 -0
  33. package/dist/src/components/kompas-paywall-information-header/KompasPaywallInformationHeader.js +39 -0
  34. package/dist/src/components/kompas-paywall-information-header/KompasPaywallInformationHeader.js.map +1 -0
  35. package/dist/src/components/kompas-paywall-video/KompasPaywallVideo.d.ts +53 -0
  36. package/dist/src/components/kompas-paywall-video/KompasPaywallVideo.js +245 -0
  37. package/dist/src/components/kompas-paywall-video/KompasPaywallVideo.js.map +1 -0
  38. package/dist/src/index.d.ts +10 -0
  39. package/dist/src/index.js +5 -0
  40. package/dist/src/index.js.map +1 -0
  41. package/dist/src/utils/deviceType.d.ts +2 -0
  42. package/dist/src/utils/deviceType.js +11 -0
  43. package/dist/src/utils/deviceType.js.map +1 -0
  44. package/dist/src/utils/fontawesome-setup.d.ts +1 -0
  45. package/dist/src/utils/fontawesome-setup.js +25 -0
  46. package/dist/src/utils/fontawesome-setup.js.map +1 -0
  47. package/dist/tailwind/tailwind.d.ts +1 -0
  48. package/dist/tailwind/tailwind.js +1654 -0
  49. package/dist/tailwind/tailwind.js.map +1 -0
  50. package/dist/tsconfig.tsbuildinfo +1 -0
  51. package/package.json +94 -0
  52. package/src/components/kompas-footer/KompasFooter.ts +331 -0
  53. package/src/components/kompas-footer/types.ts +54 -0
  54. package/src/components/kompas-metered-paywall/KompasMeteredPaywall.ts +174 -0
  55. package/src/components/kompas-metered-paywall/readme.md +32 -0
  56. package/src/components/kompas-paywall/KompasPaywall.ts +398 -0
  57. package/src/components/kompas-paywall/readme.md +166 -0
  58. package/src/components/kompas-paywall/types.ts +53 -0
  59. package/src/components/kompas-paywall-banner-registration/KompasPaywallBannerRegistration.ts +92 -0
  60. package/src/components/kompas-paywall-banner-registration/readme.md +31 -0
  61. package/src/components/kompas-paywall-body/KompasPaywallBody.ts +844 -0
  62. package/src/components/kompas-paywall-body/readme.md +54 -0
  63. package/src/components/kompas-paywall-information-header/KompasPaywallInformationHeader.ts +29 -0
  64. package/src/components/kompas-paywall-information-header/readme.md +30 -0
  65. package/src/components/kompas-paywall-video/KompasPaywallVideo.ts +194 -0
  66. package/src/components/kompas-paywall-video/readme.md +46 -0
  67. package/src/index.ts +11 -0
  68. package/src/utils/deviceType.ts +11 -0
  69. package/src/utils/fontawesome-setup.ts +40 -0
  70. package/tailwind/tailwind.css +1635 -0
  71. package/tailwind/tailwind.ts +1654 -0
  72. package/tailwind/tailwindlib.css +3 -0
  73. package/tailwind.config.js +96 -0
  74. package/tsconfig.json +21 -0
  75. package/web-dev-server.config.mjs +27 -0
  76. package/web-test-runner.config.mjs +41 -0
@@ -0,0 +1,1654 @@
1
+ import { css } from 'lit'
2
+
3
+ export const TWStyles = css`
4
+ /*
5
+ ! tailwindcss v3.3.3 | MIT License | https://tailwindcss.com
6
+ */
7
+
8
+ /*
9
+ 1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
10
+ 2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
11
+ */
12
+
13
+ *,
14
+ ::before,
15
+ ::after {
16
+ box-sizing: border-box;
17
+ /* 1 */
18
+ border-width: 0;
19
+ /* 2 */
20
+ border-style: solid;
21
+ /* 2 */
22
+ border-color: currentColor;
23
+ /* 2 */
24
+ }
25
+
26
+ ::before,
27
+ ::after {
28
+ --tw-content: '';
29
+ }
30
+
31
+ /*
32
+ 1. Use a consistent sensible line-height in all browsers.
33
+ 2. Prevent adjustments of font size after orientation changes in iOS.
34
+ 3. Use a more readable tab size.
35
+ 4. Use the user's configured sans font-family by default.
36
+ 5. Use the user's configured sans font-feature-settings by default.
37
+ 6. Use the user's configured sans font-variation-settings by default.
38
+ */
39
+
40
+ html {
41
+ line-height: 1.5;
42
+ /* 1 */
43
+ -webkit-text-size-adjust: 100%;
44
+ /* 2 */
45
+ -moz-tab-size: 4;
46
+ /* 3 */
47
+ -o-tab-size: 4;
48
+ tab-size: 4;
49
+ /* 3 */
50
+ font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
51
+ 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif,
52
+ 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
53
+ 'Noto Color Emoji';
54
+ /* 4 */
55
+ font-feature-settings: normal;
56
+ /* 5 */
57
+ font-variation-settings: normal;
58
+ /* 6 */
59
+ }
60
+
61
+ /*
62
+ 1. Remove the margin in all browsers.
63
+ 2. Inherit line-height from html so users can set them as a class directly on the html element.
64
+ */
65
+
66
+ body {
67
+ margin: 0;
68
+ /* 1 */
69
+ line-height: inherit;
70
+ /* 2 */
71
+ }
72
+
73
+ /*
74
+ 1. Add the correct height in Firefox.
75
+ 2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
76
+ 3. Ensure horizontal rules are visible by default.
77
+ */
78
+
79
+ hr {
80
+ height: 0;
81
+ /* 1 */
82
+ color: inherit;
83
+ /* 2 */
84
+ border-top-width: 1px;
85
+ /* 3 */
86
+ }
87
+
88
+ /*
89
+ Add the correct text decoration in Chrome, Edge, and Safari.
90
+ */
91
+
92
+ abbr:where([title]) {
93
+ -webkit-text-decoration: underline dotted;
94
+ text-decoration: underline dotted;
95
+ }
96
+
97
+ /*
98
+ Remove the default font size and weight for headings.
99
+ */
100
+
101
+ h1,
102
+ h2,
103
+ h3,
104
+ h4,
105
+ h5,
106
+ h6 {
107
+ font-size: inherit;
108
+ font-weight: inherit;
109
+ }
110
+
111
+ /*
112
+ Reset links to optimize for opt-in styling instead of opt-out.
113
+ */
114
+
115
+ a {
116
+ color: inherit;
117
+ text-decoration: inherit;
118
+ }
119
+
120
+ /*
121
+ Add the correct font weight in Edge and Safari.
122
+ */
123
+
124
+ b,
125
+ strong {
126
+ font-weight: bolder;
127
+ }
128
+
129
+ /*
130
+ 1. Use the user's configured mono font family by default.
131
+ 2. Correct the odd em font sizing in all browsers.
132
+ */
133
+
134
+ code,
135
+ kbd,
136
+ samp,
137
+ pre {
138
+ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
139
+ 'Liberation Mono', 'Courier New', monospace;
140
+ /* 1 */
141
+ font-size: 1em;
142
+ /* 2 */
143
+ }
144
+
145
+ /*
146
+ Add the correct font size in all browsers.
147
+ */
148
+
149
+ small {
150
+ font-size: 80%;
151
+ }
152
+
153
+ /*
154
+ Prevent sub and sup elements from affecting the line height in all browsers.
155
+ */
156
+
157
+ sub,
158
+ sup {
159
+ font-size: 75%;
160
+ line-height: 0;
161
+ position: relative;
162
+ vertical-align: baseline;
163
+ }
164
+
165
+ sub {
166
+ bottom: -0.25em;
167
+ }
168
+
169
+ sup {
170
+ top: -0.5em;
171
+ }
172
+
173
+ /*
174
+ 1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
175
+ 2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
176
+ 3. Remove gaps between table borders by default.
177
+ */
178
+
179
+ table {
180
+ text-indent: 0;
181
+ /* 1 */
182
+ border-color: inherit;
183
+ /* 2 */
184
+ border-collapse: collapse;
185
+ /* 3 */
186
+ }
187
+
188
+ /*
189
+ 1. Change the font styles in all browsers.
190
+ 2. Remove the margin in Firefox and Safari.
191
+ 3. Remove default padding in all browsers.
192
+ */
193
+
194
+ button,
195
+ input,
196
+ optgroup,
197
+ select,
198
+ textarea {
199
+ font-family: inherit;
200
+ /* 1 */
201
+ font-feature-settings: inherit;
202
+ /* 1 */
203
+ font-variation-settings: inherit;
204
+ /* 1 */
205
+ font-size: 100%;
206
+ /* 1 */
207
+ font-weight: inherit;
208
+ /* 1 */
209
+ line-height: inherit;
210
+ /* 1 */
211
+ color: inherit;
212
+ /* 1 */
213
+ margin: 0;
214
+ /* 2 */
215
+ padding: 0;
216
+ /* 3 */
217
+ }
218
+
219
+ /*
220
+ Remove the inheritance of text transform in Edge and Firefox.
221
+ */
222
+
223
+ button,
224
+ select {
225
+ text-transform: none;
226
+ }
227
+
228
+ /*
229
+ 1. Correct the inability to style clickable types in iOS and Safari.
230
+ 2. Remove default button styles.
231
+ */
232
+
233
+ button,
234
+ [type='button'],
235
+ [type='reset'],
236
+ [type='submit'] {
237
+ -webkit-appearance: button;
238
+ /* 1 */
239
+ background-color: transparent;
240
+ /* 2 */
241
+ background-image: none;
242
+ /* 2 */
243
+ }
244
+
245
+ /*
246
+ Use the modern Firefox focus style for all focusable elements.
247
+ */
248
+
249
+ :-moz-focusring {
250
+ outline: auto;
251
+ }
252
+
253
+ /*
254
+ Remove the additional :invalid styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
255
+ */
256
+
257
+ :-moz-ui-invalid {
258
+ box-shadow: none;
259
+ }
260
+
261
+ /*
262
+ Add the correct vertical alignment in Chrome and Firefox.
263
+ */
264
+
265
+ progress {
266
+ vertical-align: baseline;
267
+ }
268
+
269
+ /*
270
+ Correct the cursor style of increment and decrement buttons in Safari.
271
+ */
272
+
273
+ ::-webkit-inner-spin-button,
274
+ ::-webkit-outer-spin-button {
275
+ height: auto;
276
+ }
277
+
278
+ /*
279
+ 1. Correct the odd appearance in Chrome and Safari.
280
+ 2. Correct the outline style in Safari.
281
+ */
282
+
283
+ [type='search'] {
284
+ -webkit-appearance: textfield;
285
+ /* 1 */
286
+ outline-offset: -2px;
287
+ /* 2 */
288
+ }
289
+
290
+ /*
291
+ Remove the inner padding in Chrome and Safari on macOS.
292
+ */
293
+
294
+ ::-webkit-search-decoration {
295
+ -webkit-appearance: none;
296
+ }
297
+
298
+ /*
299
+ 1. Correct the inability to style clickable types in iOS and Safari.
300
+ 2. Change font properties to inherit in Safari.
301
+ */
302
+
303
+ ::-webkit-file-upload-button {
304
+ -webkit-appearance: button;
305
+ /* 1 */
306
+ font: inherit;
307
+ /* 2 */
308
+ }
309
+
310
+ /*
311
+ Add the correct display in Chrome and Safari.
312
+ */
313
+
314
+ summary {
315
+ display: list-item;
316
+ }
317
+
318
+ /*
319
+ Removes the default spacing and border for appropriate elements.
320
+ */
321
+
322
+ blockquote,
323
+ dl,
324
+ dd,
325
+ h1,
326
+ h2,
327
+ h3,
328
+ h4,
329
+ h5,
330
+ h6,
331
+ hr,
332
+ figure,
333
+ p,
334
+ pre {
335
+ margin: 0;
336
+ }
337
+
338
+ fieldset {
339
+ margin: 0;
340
+ padding: 0;
341
+ }
342
+
343
+ legend {
344
+ padding: 0;
345
+ }
346
+
347
+ ol,
348
+ ul,
349
+ menu {
350
+ list-style: none;
351
+ margin: 0;
352
+ padding: 0;
353
+ }
354
+
355
+ /*
356
+ Reset default styling for dialogs.
357
+ */
358
+
359
+ dialog {
360
+ padding: 0;
361
+ }
362
+
363
+ /*
364
+ Prevent resizing textareas horizontally by default.
365
+ */
366
+
367
+ textarea {
368
+ resize: vertical;
369
+ }
370
+
371
+ /*
372
+ 1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
373
+ 2. Set the default placeholder color to the user's configured gray 400 color.
374
+ */
375
+
376
+ input::-moz-placeholder,
377
+ textarea::-moz-placeholder {
378
+ opacity: 1;
379
+ /* 1 */
380
+ color: #9ca3af;
381
+ /* 2 */
382
+ }
383
+
384
+ input::placeholder,
385
+ textarea::placeholder {
386
+ opacity: 1;
387
+ /* 1 */
388
+ color: #9ca3af;
389
+ /* 2 */
390
+ }
391
+
392
+ /*
393
+ Set the default cursor for buttons.
394
+ */
395
+
396
+ button,
397
+ [role='button'] {
398
+ cursor: pointer;
399
+ }
400
+
401
+ /*
402
+ Make sure disabled buttons don't get the pointer cursor.
403
+ */
404
+
405
+ :disabled {
406
+ cursor: default;
407
+ }
408
+
409
+ /*
410
+ 1. Make replaced elements display: block by default. (https://github.com/mozdevs/cssremedy/issues/14)
411
+ 2. Add vertical-align: middle to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
412
+ This can trigger a poorly considered lint error in some tools but is included by design.
413
+ */
414
+
415
+ img,
416
+ svg,
417
+ video,
418
+ canvas,
419
+ audio,
420
+ iframe,
421
+ embed,
422
+ object {
423
+ display: block;
424
+ /* 1 */
425
+ vertical-align: middle;
426
+ /* 2 */
427
+ }
428
+
429
+ /*
430
+ Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
431
+ */
432
+
433
+ img,
434
+ video {
435
+ max-width: 100%;
436
+ height: auto;
437
+ }
438
+
439
+ /* Make elements with the HTML hidden attribute stay hidden by default */
440
+
441
+ [hidden] {
442
+ display: none;
443
+ }
444
+
445
+ *,
446
+ ::before,
447
+ ::after {
448
+ --tw-border-spacing-x: 0;
449
+ --tw-border-spacing-y: 0;
450
+ --tw-translate-x: 0;
451
+ --tw-translate-y: 0;
452
+ --tw-rotate: 0;
453
+ --tw-skew-x: 0;
454
+ --tw-skew-y: 0;
455
+ --tw-scale-x: 1;
456
+ --tw-scale-y: 1;
457
+ --tw-pan-x: ;
458
+ --tw-pan-y: ;
459
+ --tw-pinch-zoom: ;
460
+ --tw-scroll-snap-strictness: proximity;
461
+ --tw-gradient-from-position: ;
462
+ --tw-gradient-via-position: ;
463
+ --tw-gradient-to-position: ;
464
+ --tw-ordinal: ;
465
+ --tw-slashed-zero: ;
466
+ --tw-numeric-figure: ;
467
+ --tw-numeric-spacing: ;
468
+ --tw-numeric-fraction: ;
469
+ --tw-ring-inset: ;
470
+ --tw-ring-offset-width: 0px;
471
+ --tw-ring-offset-color: #fff;
472
+ --tw-ring-color: rgb(4 104 203 / 0.5);
473
+ --tw-ring-offset-shadow: 0 0 #0000;
474
+ --tw-ring-shadow: 0 0 #0000;
475
+ --tw-shadow: 0 0 #0000;
476
+ --tw-shadow-colored: 0 0 #0000;
477
+ --tw-blur: ;
478
+ --tw-brightness: ;
479
+ --tw-contrast: ;
480
+ --tw-grayscale: ;
481
+ --tw-hue-rotate: ;
482
+ --tw-invert: ;
483
+ --tw-saturate: ;
484
+ --tw-sepia: ;
485
+ --tw-drop-shadow: ;
486
+ --tw-backdrop-blur: ;
487
+ --tw-backdrop-brightness: ;
488
+ --tw-backdrop-contrast: ;
489
+ --tw-backdrop-grayscale: ;
490
+ --tw-backdrop-hue-rotate: ;
491
+ --tw-backdrop-invert: ;
492
+ --tw-backdrop-opacity: ;
493
+ --tw-backdrop-saturate: ;
494
+ --tw-backdrop-sepia: ;
495
+ }
496
+
497
+ ::backdrop {
498
+ --tw-border-spacing-x: 0;
499
+ --tw-border-spacing-y: 0;
500
+ --tw-translate-x: 0;
501
+ --tw-translate-y: 0;
502
+ --tw-rotate: 0;
503
+ --tw-skew-x: 0;
504
+ --tw-skew-y: 0;
505
+ --tw-scale-x: 1;
506
+ --tw-scale-y: 1;
507
+ --tw-pan-x: ;
508
+ --tw-pan-y: ;
509
+ --tw-pinch-zoom: ;
510
+ --tw-scroll-snap-strictness: proximity;
511
+ --tw-gradient-from-position: ;
512
+ --tw-gradient-via-position: ;
513
+ --tw-gradient-to-position: ;
514
+ --tw-ordinal: ;
515
+ --tw-slashed-zero: ;
516
+ --tw-numeric-figure: ;
517
+ --tw-numeric-spacing: ;
518
+ --tw-numeric-fraction: ;
519
+ --tw-ring-inset: ;
520
+ --tw-ring-offset-width: 0px;
521
+ --tw-ring-offset-color: #fff;
522
+ --tw-ring-color: rgb(4 104 203 / 0.5);
523
+ --tw-ring-offset-shadow: 0 0 #0000;
524
+ --tw-ring-shadow: 0 0 #0000;
525
+ --tw-shadow: 0 0 #0000;
526
+ --tw-shadow-colored: 0 0 #0000;
527
+ --tw-blur: ;
528
+ --tw-brightness: ;
529
+ --tw-contrast: ;
530
+ --tw-grayscale: ;
531
+ --tw-hue-rotate: ;
532
+ --tw-invert: ;
533
+ --tw-saturate: ;
534
+ --tw-sepia: ;
535
+ --tw-drop-shadow: ;
536
+ --tw-backdrop-blur: ;
537
+ --tw-backdrop-brightness: ;
538
+ --tw-backdrop-contrast: ;
539
+ --tw-backdrop-grayscale: ;
540
+ --tw-backdrop-hue-rotate: ;
541
+ --tw-backdrop-invert: ;
542
+ --tw-backdrop-opacity: ;
543
+ --tw-backdrop-saturate: ;
544
+ --tw-backdrop-sepia: ;
545
+ }
546
+
547
+ .static {
548
+ position: static;
549
+ }
550
+
551
+ .absolute {
552
+ position: absolute;
553
+ }
554
+
555
+ .relative {
556
+ position: relative;
557
+ }
558
+
559
+ .sticky {
560
+ position: sticky;
561
+ }
562
+
563
+ .-bottom-6 {
564
+ bottom: -1.5rem;
565
+ }
566
+
567
+ .-top-2 {
568
+ top: -0.5rem;
569
+ }
570
+
571
+ .bottom-0 {
572
+ bottom: 0px;
573
+ }
574
+
575
+ .left-0 {
576
+ left: 0px;
577
+ }
578
+
579
+ .left-4 {
580
+ left: 1rem;
581
+ }
582
+
583
+ .right-0 {
584
+ right: 0px;
585
+ }
586
+
587
+ .top-0 {
588
+ top: 0px;
589
+ }
590
+
591
+ .z-0 {
592
+ z-index: 0;
593
+ }
594
+
595
+ .z-20 {
596
+ z-index: 20;
597
+ }
598
+
599
+ .col-span-2 {
600
+ grid-column: span 2 / span 2;
601
+ }
602
+
603
+ .col-span-4 {
604
+ grid-column: span 4 / span 4;
605
+ }
606
+
607
+ .mx-2 {
608
+ margin-left: 0.5rem;
609
+ margin-right: 0.5rem;
610
+ }
611
+
612
+ .mx-4 {
613
+ margin-left: 1rem;
614
+ margin-right: 1rem;
615
+ }
616
+
617
+ .mx-auto {
618
+ margin-left: auto;
619
+ margin-right: auto;
620
+ }
621
+
622
+ .my-4 {
623
+ margin-top: 1rem;
624
+ margin-bottom: 1rem;
625
+ }
626
+
627
+ .my-5 {
628
+ margin-top: 1.25rem;
629
+ margin-bottom: 1.25rem;
630
+ }
631
+
632
+ .my-6 {
633
+ margin-top: 1.5rem;
634
+ margin-bottom: 1.5rem;
635
+ }
636
+
637
+ .-mt-24 {
638
+ margin-top: -6rem;
639
+ }
640
+
641
+ .-mt-7 {
642
+ margin-top: -1.75rem;
643
+ }
644
+
645
+ .mb-1 {
646
+ margin-bottom: 0.25rem;
647
+ }
648
+
649
+ .mb-2 {
650
+ margin-bottom: 0.5rem;
651
+ }
652
+
653
+ .mb-4 {
654
+ margin-bottom: 1rem;
655
+ }
656
+
657
+ .ml-0 {
658
+ margin-left: 0px;
659
+ }
660
+
661
+ .ml-0\\.5 {
662
+ margin-left: 0.125rem;
663
+ }
664
+
665
+ .ml-8 {
666
+ margin-left: 2rem;
667
+ }
668
+
669
+ .mr-10 {
670
+ margin-right: 2.5rem;
671
+ }
672
+
673
+ .mr-3 {
674
+ margin-right: 0.75rem;
675
+ }
676
+
677
+ .mr-3\\.5 {
678
+ margin-right: 0.875rem;
679
+ }
680
+
681
+ .mr-4 {
682
+ margin-right: 1rem;
683
+ }
684
+
685
+ .mt-1 {
686
+ margin-top: 0.25rem;
687
+ }
688
+
689
+ .mt-2 {
690
+ margin-top: 0.5rem;
691
+ }
692
+
693
+ .mt-2\\.5 {
694
+ margin-top: 0.625rem;
695
+ }
696
+
697
+ .mt-3 {
698
+ margin-top: 0.75rem;
699
+ }
700
+
701
+ .mt-4 {
702
+ margin-top: 1rem;
703
+ }
704
+
705
+ .mt-6 {
706
+ margin-top: 1.5rem;
707
+ }
708
+
709
+ .mt-8 {
710
+ margin-top: 2rem;
711
+ }
712
+
713
+ .block {
714
+ display: block;
715
+ }
716
+
717
+ .flex {
718
+ display: flex;
719
+ }
720
+
721
+ .grid {
722
+ display: grid;
723
+ }
724
+
725
+ .hidden {
726
+ display: none;
727
+ }
728
+
729
+ .h-10 {
730
+ height: 2.5rem;
731
+ }
732
+
733
+ .h-20 {
734
+ height: 5rem;
735
+ }
736
+
737
+ .h-3 {
738
+ height: 0.75rem;
739
+ }
740
+
741
+ .h-4 {
742
+ height: 1rem;
743
+ }
744
+
745
+ .h-5 {
746
+ height: 1.25rem;
747
+ }
748
+
749
+ .h-8 {
750
+ height: 2rem;
751
+ }
752
+
753
+ .h-9 {
754
+ height: 2.25rem;
755
+ }
756
+
757
+ .h-auto {
758
+ height: auto;
759
+ }
760
+
761
+ .h-full {
762
+ height: 100%;
763
+ }
764
+
765
+ .w-1\\/4 {
766
+ width: 25%;
767
+ }
768
+
769
+ .w-16 {
770
+ width: 4rem;
771
+ }
772
+
773
+ .w-20 {
774
+ width: 5rem;
775
+ }
776
+
777
+ .w-32 {
778
+ width: 8rem;
779
+ }
780
+
781
+ .w-4 {
782
+ width: 1rem;
783
+ }
784
+
785
+ .w-40 {
786
+ width: 10rem;
787
+ }
788
+
789
+ .w-5 {
790
+ width: 1.25rem;
791
+ }
792
+
793
+ .w-8 {
794
+ width: 2rem;
795
+ }
796
+
797
+ .w-\\[120px\\] {
798
+ width: 120px;
799
+ }
800
+
801
+ .w-\\[138px\\] {
802
+ width: 138px;
803
+ }
804
+
805
+ .w-auto {
806
+ width: auto;
807
+ }
808
+
809
+ .w-full {
810
+ width: 100%;
811
+ }
812
+
813
+ .max-w-2xl {
814
+ max-width: 42rem;
815
+ }
816
+
817
+ .max-w-7xl {
818
+ max-width: 80rem;
819
+ }
820
+
821
+ .max-w-screen-md {
822
+ max-width: 768px;
823
+ }
824
+
825
+ .max-w-screen-sm {
826
+ max-width: 640px;
827
+ }
828
+
829
+ .max-w-xl {
830
+ max-width: 36rem;
831
+ }
832
+
833
+ .max-w-xs {
834
+ max-width: 20rem;
835
+ }
836
+
837
+ .flex-none {
838
+ flex: none;
839
+ }
840
+
841
+ .shrink-0 {
842
+ flex-shrink: 0;
843
+ }
844
+
845
+ .flex-grow {
846
+ flex-grow: 1;
847
+ }
848
+
849
+ .rotate-180 {
850
+ --tw-rotate: 180deg;
851
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y))
852
+ rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
853
+ scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
854
+ }
855
+
856
+ .transform {
857
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y))
858
+ rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
859
+ scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
860
+ }
861
+
862
+ .cursor-pointer {
863
+ cursor: pointer;
864
+ }
865
+
866
+ .grid-flow-row {
867
+ grid-auto-flow: row;
868
+ }
869
+
870
+ .grid-flow-col {
871
+ grid-auto-flow: column;
872
+ }
873
+
874
+ .grid-cols-1 {
875
+ grid-template-columns: repeat(1, minmax(0, 1fr));
876
+ }
877
+
878
+ .grid-cols-2 {
879
+ grid-template-columns: repeat(2, minmax(0, 1fr));
880
+ }
881
+
882
+ .grid-cols-4 {
883
+ grid-template-columns: repeat(4, minmax(0, 1fr));
884
+ }
885
+
886
+ .grid-cols-5 {
887
+ grid-template-columns: repeat(5, minmax(0, 1fr));
888
+ }
889
+
890
+ .grid-rows-1 {
891
+ grid-template-rows: repeat(1, minmax(0, 1fr));
892
+ }
893
+
894
+ .grid-rows-2 {
895
+ grid-template-rows: repeat(2, minmax(0, 1fr));
896
+ }
897
+
898
+ .flex-row {
899
+ flex-direction: row;
900
+ }
901
+
902
+ .flex-col {
903
+ flex-direction: column;
904
+ }
905
+
906
+ .flex-wrap {
907
+ flex-wrap: wrap;
908
+ }
909
+
910
+ .place-items-center {
911
+ place-items: center;
912
+ }
913
+
914
+ .items-center {
915
+ align-items: center;
916
+ }
917
+
918
+ .justify-start {
919
+ justify-content: flex-start;
920
+ }
921
+
922
+ .justify-center {
923
+ justify-content: center;
924
+ }
925
+
926
+ .justify-between {
927
+ justify-content: space-between;
928
+ }
929
+
930
+ .justify-evenly {
931
+ justify-content: space-evenly;
932
+ }
933
+
934
+ .gap-4 {
935
+ gap: 1rem;
936
+ }
937
+
938
+ .gap-6 {
939
+ gap: 1.5rem;
940
+ }
941
+
942
+ .gap-8 {
943
+ gap: 2rem;
944
+ }
945
+
946
+ .gap-y-4 {
947
+ row-gap: 1rem;
948
+ }
949
+
950
+ .space-x-3 > :not([hidden]) ~ :not([hidden]) {
951
+ --tw-space-x-reverse: 0;
952
+ margin-right: calc(0.75rem * var(--tw-space-x-reverse));
953
+ margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
954
+ }
955
+
956
+ .space-x-4 > :not([hidden]) ~ :not([hidden]) {
957
+ --tw-space-x-reverse: 0;
958
+ margin-right: calc(1rem * var(--tw-space-x-reverse));
959
+ margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
960
+ }
961
+
962
+ .space-y-2 > :not([hidden]) ~ :not([hidden]) {
963
+ --tw-space-y-reverse: 0;
964
+ margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
965
+ margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
966
+ }
967
+
968
+ .self-center {
969
+ align-self: center;
970
+ }
971
+
972
+ .rounded {
973
+ border-radius: 0.25rem;
974
+ }
975
+
976
+ .rounded-lg {
977
+ border-radius: 0.5rem;
978
+ }
979
+
980
+ .rounded-md {
981
+ border-radius: 0.375rem;
982
+ }
983
+
984
+ .rounded-b {
985
+ border-bottom-right-radius: 0.25rem;
986
+ border-bottom-left-radius: 0.25rem;
987
+ }
988
+
989
+ .border {
990
+ border-width: 1px;
991
+ }
992
+
993
+ .border-2 {
994
+ border-width: 2px;
995
+ }
996
+
997
+ .border-b-2 {
998
+ border-bottom-width: 2px;
999
+ }
1000
+
1001
+ .border-t {
1002
+ border-top-width: 1px;
1003
+ }
1004
+
1005
+ .border-blue-200 {
1006
+ --tw-border-opacity: 1;
1007
+ border-color: rgb(147 200 253 / var(--tw-border-opacity));
1008
+ }
1009
+
1010
+ .border-dark-2 {
1011
+ --tw-border-opacity: 1;
1012
+ border-color: rgb(56 56 56 / var(--tw-border-opacity));
1013
+ }
1014
+
1015
+ .border-dark-6 {
1016
+ --tw-border-opacity: 1;
1017
+ border-color: rgb(46 46 46 / var(--tw-border-opacity));
1018
+ }
1019
+
1020
+ .border-green-400 {
1021
+ --tw-border-opacity: 1;
1022
+ border-color: rgb(106 195 34 / var(--tw-border-opacity));
1023
+ }
1024
+
1025
+ .border-green-500 {
1026
+ --tw-border-opacity: 1;
1027
+ border-color: rgb(80 167 24 / var(--tw-border-opacity));
1028
+ }
1029
+
1030
+ .border-grey-100 {
1031
+ --tw-border-opacity: 1;
1032
+ border-color: rgb(255 255 255 / var(--tw-border-opacity));
1033
+ }
1034
+
1035
+ .border-grey-200 {
1036
+ --tw-border-opacity: 1;
1037
+ border-color: rgb(238 238 238 / var(--tw-border-opacity));
1038
+ }
1039
+
1040
+ .border-white {
1041
+ --tw-border-opacity: 1;
1042
+ border-color: rgb(255 255 255 / var(--tw-border-opacity));
1043
+ }
1044
+
1045
+ .border-yellow-400 {
1046
+ --tw-border-opacity: 1;
1047
+ border-color: rgb(255 204 0 / var(--tw-border-opacity));
1048
+ }
1049
+
1050
+ .bg-\\[\\#2C2C2C\\] {
1051
+ --tw-bg-opacity: 1;
1052
+ background-color: rgb(44 44 44 / var(--tw-bg-opacity));
1053
+ }
1054
+
1055
+ .bg-black {
1056
+ --tw-bg-opacity: 1;
1057
+ background-color: rgb(0 0 0 / var(--tw-bg-opacity));
1058
+ }
1059
+
1060
+ .bg-blue-100 {
1061
+ --tw-bg-opacity: 1;
1062
+ background-color: rgb(225 240 255 / var(--tw-bg-opacity));
1063
+ }
1064
+
1065
+ .bg-blue-300 {
1066
+ --tw-bg-opacity: 1;
1067
+ background-color: rgb(90 171 252 / var(--tw-bg-opacity));
1068
+ }
1069
+
1070
+ .bg-blue-600 {
1071
+ --tw-bg-opacity: 1;
1072
+ background-color: rgb(3 86 168 / var(--tw-bg-opacity));
1073
+ }
1074
+
1075
+ .bg-brand-1 {
1076
+ --tw-bg-opacity: 1;
1077
+ background-color: rgb(0 85 154 / var(--tw-bg-opacity));
1078
+ }
1079
+
1080
+ .bg-dark-3 {
1081
+ --tw-bg-opacity: 1;
1082
+ background-color: rgb(37 37 37 / var(--tw-bg-opacity));
1083
+ }
1084
+
1085
+ .bg-dark-4 {
1086
+ --tw-bg-opacity: 1;
1087
+ background-color: rgb(30 30 30 / var(--tw-bg-opacity));
1088
+ }
1089
+
1090
+ .bg-dark-5 {
1091
+ --tw-bg-opacity: 1;
1092
+ background-color: rgb(18 18 18 / var(--tw-bg-opacity));
1093
+ }
1094
+
1095
+ .bg-dark-6 {
1096
+ --tw-bg-opacity: 1;
1097
+ background-color: rgb(46 46 46 / var(--tw-bg-opacity));
1098
+ }
1099
+
1100
+ .bg-green-300 {
1101
+ --tw-bg-opacity: 1;
1102
+ background-color: rgb(151 219 83 / var(--tw-bg-opacity));
1103
+ }
1104
+
1105
+ .bg-green-400 {
1106
+ --tw-bg-opacity: 1;
1107
+ background-color: rgb(106 195 34 / var(--tw-bg-opacity));
1108
+ }
1109
+
1110
+ .bg-green-500 {
1111
+ --tw-bg-opacity: 1;
1112
+ background-color: rgb(80 167 24 / var(--tw-bg-opacity));
1113
+ }
1114
+
1115
+ .bg-grey-100 {
1116
+ --tw-bg-opacity: 1;
1117
+ background-color: rgb(255 255 255 / var(--tw-bg-opacity));
1118
+ }
1119
+
1120
+ .bg-grey-600 {
1121
+ --tw-bg-opacity: 1;
1122
+ background-color: rgb(51 51 51 / var(--tw-bg-opacity));
1123
+ }
1124
+
1125
+ .bg-white {
1126
+ --tw-bg-opacity: 1;
1127
+ background-color: rgb(255 255 255 / var(--tw-bg-opacity));
1128
+ }
1129
+
1130
+ .bg-yellow-300 {
1131
+ --tw-bg-opacity: 1;
1132
+ background-color: rgb(255 220 63 / var(--tw-bg-opacity));
1133
+ }
1134
+
1135
+ .bg-red-100 {
1136
+ --tw-bg-opacity: 1;
1137
+ background-color: rgb(254 225 207 / var(--tw-bg-opacity));
1138
+ }
1139
+
1140
+ .bg-opacity-50 {
1141
+ --tw-bg-opacity: 0.5;
1142
+ }
1143
+
1144
+ .object-cover {
1145
+ -o-object-fit: cover;
1146
+ object-fit: cover;
1147
+ }
1148
+
1149
+ .object-scale-down {
1150
+ -o-object-fit: scale-down;
1151
+ object-fit: scale-down;
1152
+ }
1153
+
1154
+ .p-2 {
1155
+ padding: 0.5rem;
1156
+ }
1157
+
1158
+ .p-3 {
1159
+ padding: 0.75rem;
1160
+ }
1161
+
1162
+ .p-4 {
1163
+ padding: 1rem;
1164
+ }
1165
+
1166
+ .px-2 {
1167
+ padding-left: 0.5rem;
1168
+ padding-right: 0.5rem;
1169
+ }
1170
+
1171
+ .px-4 {
1172
+ padding-left: 1rem;
1173
+ padding-right: 1rem;
1174
+ }
1175
+
1176
+ .px-6 {
1177
+ padding-left: 1.5rem;
1178
+ padding-right: 1.5rem;
1179
+ }
1180
+
1181
+ .py-0 {
1182
+ padding-top: 0px;
1183
+ padding-bottom: 0px;
1184
+ }
1185
+
1186
+ .py-0\\.5 {
1187
+ padding-top: 0.125rem;
1188
+ padding-bottom: 0.125rem;
1189
+ }
1190
+
1191
+ .py-1 {
1192
+ padding-top: 0.25rem;
1193
+ padding-bottom: 0.25rem;
1194
+ }
1195
+
1196
+ .py-1\\.5 {
1197
+ padding-top: 0.375rem;
1198
+ padding-bottom: 0.375rem;
1199
+ }
1200
+
1201
+ .py-2 {
1202
+ padding-top: 0.5rem;
1203
+ padding-bottom: 0.5rem;
1204
+ }
1205
+
1206
+ .py-2\\.5 {
1207
+ padding-top: 0.625rem;
1208
+ padding-bottom: 0.625rem;
1209
+ }
1210
+
1211
+ .py-3 {
1212
+ padding-top: 0.75rem;
1213
+ padding-bottom: 0.75rem;
1214
+ }
1215
+
1216
+ .py-4 {
1217
+ padding-top: 1rem;
1218
+ padding-bottom: 1rem;
1219
+ }
1220
+
1221
+ .pb-1 {
1222
+ padding-bottom: 0.25rem;
1223
+ }
1224
+
1225
+ .pb-2 {
1226
+ padding-bottom: 0.5rem;
1227
+ }
1228
+
1229
+ .pb-3 {
1230
+ padding-bottom: 0.75rem;
1231
+ }
1232
+
1233
+ .pb-32 {
1234
+ padding-bottom: 8rem;
1235
+ }
1236
+
1237
+ .pb-4 {
1238
+ padding-bottom: 1rem;
1239
+ }
1240
+
1241
+ .pb-6 {
1242
+ padding-bottom: 1.5rem;
1243
+ }
1244
+
1245
+ .pb-8 {
1246
+ padding-bottom: 2rem;
1247
+ }
1248
+
1249
+ .pl-1 {
1250
+ padding-left: 0.25rem;
1251
+ }
1252
+
1253
+ .pl-2 {
1254
+ padding-left: 0.5rem;
1255
+ }
1256
+
1257
+ .pl-4 {
1258
+ padding-left: 1rem;
1259
+ }
1260
+
1261
+ .pr-2 {
1262
+ padding-right: 0.5rem;
1263
+ }
1264
+
1265
+ .pt-0 {
1266
+ padding-top: 0px;
1267
+ }
1268
+
1269
+ .pt-0\\.5 {
1270
+ padding-top: 0.125rem;
1271
+ }
1272
+
1273
+ .pt-1 {
1274
+ padding-top: 0.25rem;
1275
+ }
1276
+
1277
+ .pt-10 {
1278
+ padding-top: 2.5rem;
1279
+ }
1280
+
1281
+ .pt-6 {
1282
+ padding-top: 1.5rem;
1283
+ }
1284
+
1285
+ .text-left {
1286
+ text-align: left;
1287
+ }
1288
+
1289
+ .text-center {
1290
+ text-align: center;
1291
+ }
1292
+
1293
+ .font-serif {
1294
+ font-family: ui-serif, Georgia, Cambria, 'Times New Roman', Times, serif;
1295
+ }
1296
+
1297
+ .text-base {
1298
+ font-size: 1rem;
1299
+ line-height: 1.5rem;
1300
+ }
1301
+
1302
+ .text-sm {
1303
+ font-size: 0.875rem;
1304
+ line-height: 1.25rem;
1305
+ }
1306
+
1307
+ .text-xs {
1308
+ font-size: 0.75rem;
1309
+ line-height: 1rem;
1310
+ }
1311
+
1312
+ .font-bold {
1313
+ font-weight: 700;
1314
+ }
1315
+
1316
+ .leading-4 {
1317
+ line-height: 1rem;
1318
+ }
1319
+
1320
+ .leading-6 {
1321
+ line-height: 1.5rem;
1322
+ }
1323
+
1324
+ .leading-none {
1325
+ line-height: 1;
1326
+ }
1327
+
1328
+ .leading-normal {
1329
+ line-height: 1.5;
1330
+ }
1331
+
1332
+ .tracking-wide {
1333
+ letter-spacing: 0.025em;
1334
+ }
1335
+
1336
+ .text-\\[\\#00559a\\] {
1337
+ --tw-text-opacity: 1;
1338
+ color: rgb(0 85 154 / var(--tw-text-opacity));
1339
+ }
1340
+
1341
+ .text-\\[\\#FFFFFF\\] {
1342
+ --tw-text-opacity: 1;
1343
+ color: rgb(255 255 255 / var(--tw-text-opacity));
1344
+ }
1345
+
1346
+ .text-black {
1347
+ --tw-text-opacity: 1;
1348
+ color: rgb(0 0 0 / var(--tw-text-opacity));
1349
+ }
1350
+
1351
+ .text-blue-300 {
1352
+ --tw-text-opacity: 1;
1353
+ color: rgb(90 171 252 / var(--tw-text-opacity));
1354
+ }
1355
+
1356
+ .text-blue-600 {
1357
+ --tw-text-opacity: 1;
1358
+ color: rgb(3 86 168 / var(--tw-text-opacity));
1359
+ }
1360
+
1361
+ .text-brand-1 {
1362
+ --tw-text-opacity: 1;
1363
+ color: rgb(0 85 154 / var(--tw-text-opacity));
1364
+ }
1365
+
1366
+ .text-dark-1 {
1367
+ --tw-text-opacity: 1;
1368
+ color: rgb(160 160 160 / var(--tw-text-opacity));
1369
+ }
1370
+
1371
+ .text-dark-6 {
1372
+ --tw-text-opacity: 1;
1373
+ color: rgb(46 46 46 / var(--tw-text-opacity));
1374
+ }
1375
+
1376
+ .text-green-300 {
1377
+ --tw-text-opacity: 1;
1378
+ color: rgb(151 219 83 / var(--tw-text-opacity));
1379
+ }
1380
+
1381
+ .text-green-500 {
1382
+ --tw-text-opacity: 1;
1383
+ color: rgb(80 167 24 / var(--tw-text-opacity));
1384
+ }
1385
+
1386
+ .text-grey-100 {
1387
+ --tw-text-opacity: 1;
1388
+ color: rgb(255 255 255 / var(--tw-text-opacity));
1389
+ }
1390
+
1391
+ .text-grey-600 {
1392
+ --tw-text-opacity: 1;
1393
+ color: rgb(51 51 51 / var(--tw-text-opacity));
1394
+ }
1395
+
1396
+ .text-orange-400 {
1397
+ --tw-text-opacity: 1;
1398
+ color: rgb(255 122 0 / var(--tw-text-opacity));
1399
+ }
1400
+
1401
+ .text-white {
1402
+ --tw-text-opacity: 1;
1403
+ color: rgb(255 255 255 / var(--tw-text-opacity));
1404
+ }
1405
+
1406
+ .underline {
1407
+ text-decoration-line: underline;
1408
+ }
1409
+
1410
+ .shadow-sm {
1411
+ --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
1412
+ --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
1413
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
1414
+ var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
1415
+ }
1416
+
1417
+ .ring-1 {
1418
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0
1419
+ var(--tw-ring-offset-width) var(--tw-ring-offset-color);
1420
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0
1421
+ calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
1422
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow),
1423
+ var(--tw-shadow, 0 0 #0000);
1424
+ }
1425
+
1426
+ .ring-grey-100 {
1427
+ --tw-ring-opacity: 1;
1428
+ --tw-ring-color: rgb(255 255 255 / var(--tw-ring-opacity));
1429
+ }
1430
+
1431
+ @media (min-width: 640px) {
1432
+ .sm\\:grid-cols-4 {
1433
+ grid-template-columns: repeat(4, minmax(0, 1fr));
1434
+ }
1435
+ }
1436
+
1437
+ @media (min-width: 768px) {
1438
+ .md\\:mx-0 {
1439
+ margin-left: 0px;
1440
+ margin-right: 0px;
1441
+ }
1442
+
1443
+ .md\\:my-8 {
1444
+ margin-top: 2rem;
1445
+ margin-bottom: 2rem;
1446
+ }
1447
+
1448
+ .md\\:ml-1 {
1449
+ margin-left: 0.25rem;
1450
+ }
1451
+
1452
+ .md\\:ml-6 {
1453
+ margin-left: 1.5rem;
1454
+ }
1455
+
1456
+ .md\\:mr-5 {
1457
+ margin-right: 1.25rem;
1458
+ }
1459
+
1460
+ .md\\:mt-3 {
1461
+ margin-top: 0.75rem;
1462
+ }
1463
+
1464
+ .md\\:mt-4 {
1465
+ margin-top: 1rem;
1466
+ }
1467
+
1468
+ .md\\:mt-8 {
1469
+ margin-top: 2rem;
1470
+ }
1471
+
1472
+ .md\\:flex {
1473
+ display: flex;
1474
+ }
1475
+
1476
+ .md\\:hidden {
1477
+ display: none;
1478
+ }
1479
+
1480
+ .md\\:w-3\\/5 {
1481
+ width: 60%;
1482
+ }
1483
+
1484
+ .md\\:w-40 {
1485
+ width: 10rem;
1486
+ }
1487
+
1488
+ .md\\:w-52 {
1489
+ width: 13rem;
1490
+ }
1491
+
1492
+ .md\\:max-w-none {
1493
+ max-width: none;
1494
+ }
1495
+
1496
+ .md\\:max-w-sm {
1497
+ max-width: 24rem;
1498
+ }
1499
+
1500
+ .md\\:grid-cols-1 {
1501
+ grid-template-columns: repeat(1, minmax(0, 1fr));
1502
+ }
1503
+
1504
+ .md\\:flex-row {
1505
+ flex-direction: row;
1506
+ }
1507
+
1508
+ .md\\:space-x-8 > :not([hidden]) ~ :not([hidden]) {
1509
+ --tw-space-x-reverse: 0;
1510
+ margin-right: calc(2rem * var(--tw-space-x-reverse));
1511
+ margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
1512
+ }
1513
+
1514
+ .md\\:self-end {
1515
+ align-self: flex-end;
1516
+ }
1517
+
1518
+ .md\\:px-0 {
1519
+ padding-left: 0px;
1520
+ padding-right: 0px;
1521
+ }
1522
+
1523
+ .md\\:px-20 {
1524
+ padding-left: 5rem;
1525
+ padding-right: 5rem;
1526
+ }
1527
+
1528
+ .md\\:pt-8 {
1529
+ padding-top: 2rem;
1530
+ }
1531
+
1532
+ .md\\:text-left {
1533
+ text-align: left;
1534
+ }
1535
+
1536
+ .md\\:text-base {
1537
+ font-size: 1rem;
1538
+ line-height: 1.5rem;
1539
+ }
1540
+
1541
+ .md\\:text-lg {
1542
+ font-size: 1.125rem;
1543
+ line-height: 1.75rem;
1544
+ }
1545
+
1546
+ .md\\:text-sm {
1547
+ font-size: 0.875rem;
1548
+ line-height: 1.25rem;
1549
+ }
1550
+
1551
+ .md\\:text-xl {
1552
+ font-size: 1.25rem;
1553
+ line-height: 1.75rem;
1554
+ }
1555
+
1556
+ .md\\:tracking-normal {
1557
+ letter-spacing: 0em;
1558
+ }
1559
+ }
1560
+
1561
+ @media (min-width: 1024px) {
1562
+ .lg\\:col-span-2 {
1563
+ grid-column: span 2 / span 2;
1564
+ }
1565
+
1566
+ .lg\\:col-span-3 {
1567
+ grid-column: span 3 / span 3;
1568
+ }
1569
+
1570
+ .lg\\:col-span-5 {
1571
+ grid-column: span 5 / span 5;
1572
+ }
1573
+
1574
+ .lg\\:col-start-10 {
1575
+ grid-column-start: 10;
1576
+ }
1577
+
1578
+ .lg\\:mx-auto {
1579
+ margin-left: auto;
1580
+ margin-right: auto;
1581
+ }
1582
+
1583
+ .lg\\:mb-0 {
1584
+ margin-bottom: 0px;
1585
+ }
1586
+
1587
+ .lg\\:mt-2 {
1588
+ margin-top: 0.5rem;
1589
+ }
1590
+
1591
+ .lg\\:block {
1592
+ display: block;
1593
+ }
1594
+
1595
+ .lg\\:hidden {
1596
+ display: none;
1597
+ }
1598
+
1599
+ .lg\\:grid-cols-12 {
1600
+ grid-template-columns: repeat(12, minmax(0, 1fr));
1601
+ }
1602
+
1603
+ .lg\\:grid-cols-2 {
1604
+ grid-template-columns: repeat(2, minmax(0, 1fr));
1605
+ }
1606
+
1607
+ .lg\\:flex-row {
1608
+ flex-direction: row;
1609
+ }
1610
+
1611
+ .lg\\:flex-col {
1612
+ flex-direction: column;
1613
+ }
1614
+
1615
+ .lg\\:justify-end {
1616
+ justify-content: flex-end;
1617
+ }
1618
+
1619
+ .lg\\:justify-between {
1620
+ justify-content: space-between;
1621
+ }
1622
+
1623
+ .lg\\:gap-0 {
1624
+ gap: 0px;
1625
+ }
1626
+
1627
+ .lg\\:gap-8 {
1628
+ gap: 2rem;
1629
+ }
1630
+
1631
+ .lg\\:gap-x-6 {
1632
+ -moz-column-gap: 1.5rem;
1633
+ column-gap: 1.5rem;
1634
+ }
1635
+
1636
+ .lg\\:px-0 {
1637
+ padding-left: 0px;
1638
+ padding-right: 0px;
1639
+ }
1640
+
1641
+ .lg\\:py-10 {
1642
+ padding-top: 2.5rem;
1643
+ padding-bottom: 2.5rem;
1644
+ }
1645
+
1646
+ .lg\\:pb-0 {
1647
+ padding-bottom: 0px;
1648
+ }
1649
+
1650
+ .lg\\:pb-6 {
1651
+ padding-bottom: 1.5rem;
1652
+ }
1653
+ }
1654
+ `