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