lau-ecom-design-system 1.0.0

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