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