@ix_waterford/lib 1.0.45 → 1.0.46

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.
@@ -1,651 +0,0 @@
1
- .editor-input {
2
- outline: none;
3
- min-height: 200px;
4
- padding: 12px;
5
- font-size: 16px;
6
- line-height: 1.5;
7
- }
8
-
9
- .editor-placeholder {
10
- color: #aaa;
11
- pointer-events: none;
12
- padding: 12px;
13
- position: absolute;
14
- }
15
-
16
- .editor-textBold {
17
- font-weight: bold;
18
- }
19
-
20
- .editor-textItalic {
21
- font-style: italic;
22
- }
23
-
24
- .editor-textUnderline {
25
- text-decoration: underline;
26
- }
27
-
28
- .editor-textStrikethrough {
29
- text-decoration: line-through;
30
- }
31
-
32
- .editor-textSubscript {
33
- vertical-align: sub;
34
- font-size: .8em;
35
- }
36
-
37
- .editor-textSuperscript {
38
- vertical-align: super;
39
- font-size: .8em;
40
- }
41
-
42
- .editor-heading-h1 {
43
- margin: .67em 0;
44
- font-size: 2em;
45
- font-weight: bold;
46
- }
47
-
48
- .editor-heading-h2 {
49
- margin: .75em 0;
50
- font-size: 1.75em;
51
- font-weight: bold;
52
- }
53
-
54
- .editor-heading-h3 {
55
- margin: .83em 0;
56
- font-size: 1.5em;
57
- font-weight: bold;
58
- }
59
-
60
- .editor-heading-h4 {
61
- margin: 1em 0;
62
- font-size: 1.25em;
63
- font-weight: bold;
64
- }
65
-
66
- .editor-heading-h5 {
67
- margin: 1.17em 0;
68
- font-size: 1.1em;
69
- font-weight: bold;
70
- }
71
-
72
- .editor-heading-h6 {
73
- margin: 1.33em 0;
74
- font-size: 1em;
75
- font-weight: bold;
76
- }
77
-
78
- .editor-list-ol, .editor-list-ul {
79
- margin: .5em 0;
80
- padding-left: 30px;
81
- }
82
-
83
- .editor-list-item {
84
- margin: .25em 0;
85
- }
86
-
87
- .editor-quote {
88
- color: #666;
89
- border-left: 4px solid #ccc;
90
- margin: 0;
91
- padding-left: 20px;
92
- font-style: italic;
93
- }
94
-
95
- :root {
96
- --swiper-theme-color: #007aff;
97
- }
98
-
99
- :host {
100
- z-index: 1;
101
- margin-left: auto;
102
- margin-right: auto;
103
- display: block;
104
- position: relative;
105
- }
106
-
107
- .swiper {
108
- z-index: 1;
109
- margin-left: auto;
110
- margin-right: auto;
111
- padding: 0;
112
- list-style: none;
113
- display: block;
114
- position: relative;
115
- overflow: hidden;
116
- }
117
-
118
- .swiper-vertical > .swiper-wrapper {
119
- flex-direction: column;
120
- }
121
-
122
- .swiper-wrapper {
123
- z-index: 1;
124
- width: 100%;
125
- height: 100%;
126
- transition-property: transform;
127
- transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
128
- box-sizing: content-box;
129
- display: flex;
130
- position: relative;
131
- }
132
-
133
- .swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
134
- transform: translate3d(0, 0, 0);
135
- }
136
-
137
- .swiper-horizontal {
138
- touch-action: pan-y;
139
- }
140
-
141
- .swiper-vertical {
142
- touch-action: pan-x;
143
- }
144
-
145
- .swiper-slide {
146
- flex-shrink: 0;
147
- width: 100%;
148
- height: 100%;
149
- transition-property: transform;
150
- display: block;
151
- position: relative;
152
- }
153
-
154
- .swiper-slide-invisible-blank {
155
- visibility: hidden;
156
- }
157
-
158
- .swiper-autoheight, .swiper-autoheight .swiper-slide {
159
- height: auto;
160
- }
161
-
162
- .swiper-autoheight .swiper-wrapper {
163
- align-items: flex-start;
164
- transition-property: transform, height;
165
- }
166
-
167
- .swiper-backface-hidden .swiper-slide {
168
- -webkit-backface-visibility: hidden;
169
- backface-visibility: hidden;
170
- transform: translateZ(0);
171
- }
172
-
173
- .swiper-3d.swiper-css-mode .swiper-wrapper {
174
- perspective: 1200px;
175
- }
176
-
177
- .swiper-3d .swiper-wrapper {
178
- transform-style: preserve-3d;
179
- }
180
-
181
- .swiper-3d {
182
- perspective: 1200px;
183
- }
184
-
185
- .swiper-3d .swiper-slide {
186
- transform-style: preserve-3d;
187
- }
188
-
189
- .swiper-3d .swiper-cube-shadow {
190
- transform-style: preserve-3d;
191
- }
192
-
193
- .swiper-css-mode > .swiper-wrapper {
194
- scrollbar-width: none;
195
- -ms-overflow-style: none;
196
- overflow: auto;
197
- }
198
-
199
- .swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
200
- display: none;
201
- }
202
-
203
- .swiper-css-mode > .swiper-wrapper > .swiper-slide {
204
- scroll-snap-align: start start;
205
- }
206
-
207
- .swiper-css-mode.swiper-horizontal > .swiper-wrapper {
208
- scroll-snap-type: x mandatory;
209
- }
210
-
211
- .swiper-css-mode.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
212
- margin-inline-start: var(--swiper-slides-offset-before);
213
- scroll-margin-inline-start: var(--swiper-slides-offset-before);
214
- }
215
-
216
- .swiper-css-mode.swiper-horizontal > .swiper-wrapper > .swiper-slide:last-child {
217
- margin-inline-end: var(--swiper-slides-offset-after);
218
- }
219
-
220
- .swiper-css-mode.swiper-vertical > .swiper-wrapper {
221
- scroll-snap-type: y mandatory;
222
- }
223
-
224
- .swiper-css-mode.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
225
- margin-block-start: var(--swiper-slides-offset-before);
226
- scroll-margin-block-start: var(--swiper-slides-offset-before);
227
- }
228
-
229
- .swiper-css-mode.swiper-vertical > .swiper-wrapper > .swiper-slide:last-child {
230
- margin-block-end: var(--swiper-slides-offset-after);
231
- }
232
-
233
- .swiper-css-mode.swiper-free-mode > .swiper-wrapper {
234
- scroll-snap-type: none;
235
- }
236
-
237
- .swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
238
- scroll-snap-align: none;
239
- }
240
-
241
- .swiper-css-mode.swiper-centered > .swiper-wrapper:before {
242
- content: "";
243
- flex-shrink: 0;
244
- order: 9999;
245
- }
246
-
247
- .swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
248
- scroll-snap-align: center center;
249
- scroll-snap-stop: always;
250
- }
251
-
252
- .swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
253
- margin-inline-start: var(--swiper-centered-offset-before);
254
- }
255
-
256
- .swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper:before {
257
- height: 100%;
258
- min-height: 1px;
259
- width: var(--swiper-centered-offset-after);
260
- }
261
-
262
- .swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
263
- margin-block-start: var(--swiper-centered-offset-before);
264
- }
265
-
266
- .swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper:before {
267
- width: 100%;
268
- min-width: 1px;
269
- height: var(--swiper-centered-offset-after);
270
- }
271
-
272
- .swiper-3d .swiper-slide-shadow {
273
- pointer-events: none;
274
- z-index: 10;
275
- width: 100%;
276
- height: 100%;
277
- position: absolute;
278
- top: 0;
279
- left: 0;
280
- }
281
-
282
- .swiper-3d .swiper-slide-shadow-left {
283
- pointer-events: none;
284
- z-index: 10;
285
- width: 100%;
286
- height: 100%;
287
- position: absolute;
288
- top: 0;
289
- left: 0;
290
- }
291
-
292
- .swiper-3d .swiper-slide-shadow-right {
293
- pointer-events: none;
294
- z-index: 10;
295
- width: 100%;
296
- height: 100%;
297
- position: absolute;
298
- top: 0;
299
- left: 0;
300
- }
301
-
302
- .swiper-3d .swiper-slide-shadow-top {
303
- pointer-events: none;
304
- z-index: 10;
305
- width: 100%;
306
- height: 100%;
307
- position: absolute;
308
- top: 0;
309
- left: 0;
310
- }
311
-
312
- .swiper-3d .swiper-slide-shadow-bottom {
313
- pointer-events: none;
314
- z-index: 10;
315
- width: 100%;
316
- height: 100%;
317
- position: absolute;
318
- top: 0;
319
- left: 0;
320
- }
321
-
322
- .swiper-3d .swiper-slide-shadow {
323
- pointer-events: none;
324
- z-index: 10;
325
- width: 100%;
326
- height: 100%;
327
- position: absolute;
328
- top: 0;
329
- left: 0;
330
- }
331
-
332
- .swiper-3d .swiper-slide-shadow-left {
333
- pointer-events: none;
334
- z-index: 10;
335
- width: 100%;
336
- height: 100%;
337
- position: absolute;
338
- top: 0;
339
- left: 0;
340
- }
341
-
342
- .swiper-3d .swiper-slide-shadow-right {
343
- pointer-events: none;
344
- z-index: 10;
345
- width: 100%;
346
- height: 100%;
347
- position: absolute;
348
- top: 0;
349
- left: 0;
350
- }
351
-
352
- .swiper-3d .swiper-slide-shadow-top {
353
- pointer-events: none;
354
- z-index: 10;
355
- width: 100%;
356
- height: 100%;
357
- position: absolute;
358
- top: 0;
359
- left: 0;
360
- }
361
-
362
- .swiper-3d .swiper-slide-shadow-bottom {
363
- pointer-events: none;
364
- z-index: 10;
365
- width: 100%;
366
- height: 100%;
367
- position: absolute;
368
- top: 0;
369
- left: 0;
370
- }
371
-
372
- .swiper-3d .swiper-slide-shadow {
373
- background: #00000026;
374
- }
375
-
376
- .swiper-3d .swiper-slide-shadow-left {
377
- background-image: linear-gradient(to left, #00000080, #0000);
378
- }
379
-
380
- .swiper-3d .swiper-slide-shadow-right {
381
- background-image: linear-gradient(to right, #00000080, #0000);
382
- }
383
-
384
- .swiper-3d .swiper-slide-shadow-top {
385
- background-image: linear-gradient(to top, #00000080, #0000);
386
- }
387
-
388
- .swiper-3d .swiper-slide-shadow-bottom {
389
- background-image: linear-gradient(#00000080, #0000);
390
- }
391
-
392
- .swiper-lazy-preloader {
393
- z-index: 10;
394
- transform-origin: 50%;
395
- box-sizing: border-box;
396
- border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
397
- border-top-color: #0000;
398
- border-radius: 50%;
399
- width: 42px;
400
- height: 42px;
401
- margin-top: -21px;
402
- margin-left: -21px;
403
- position: absolute;
404
- top: 50%;
405
- left: 50%;
406
- }
407
-
408
- :is(.swiper:not(.swiper-watch-progress), .swiper-watch-progress .swiper-slide-visible) .swiper-lazy-preloader {
409
- animation: 1s linear infinite swiper-preloader-spin;
410
- }
411
-
412
- .swiper-lazy-preloader-white {
413
- --swiper-preloader-color: #fff;
414
- }
415
-
416
- .swiper-lazy-preloader-black {
417
- --swiper-preloader-color: #000;
418
- }
419
-
420
- @keyframes swiper-preloader-spin {
421
- 0% {
422
- transform: rotate(0);
423
- }
424
-
425
- 100% {
426
- transform: rotate(360deg);
427
- }
428
- }
429
-
430
-
431
-
432
- .swiper-pagination {
433
- text-align: center;
434
- z-index: 10;
435
- transition: opacity .3s;
436
- position: absolute;
437
- transform: translate3d(0, 0, 0);
438
- }
439
-
440
- .swiper-pagination.swiper-pagination-hidden {
441
- opacity: 0;
442
- }
443
-
444
- .swiper-pagination-disabled > .swiper-pagination {
445
- display: none !important;
446
- }
447
-
448
- .swiper-pagination.swiper-pagination-disabled {
449
- display: none !important;
450
- }
451
-
452
- .swiper-pagination-fraction, .swiper-pagination-custom, .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
453
- bottom: var(--swiper-pagination-bottom, 8px);
454
- top: var(--swiper-pagination-top, auto);
455
- width: 100%;
456
- left: 0;
457
- }
458
-
459
- .swiper-pagination-bullets-dynamic {
460
- font-size: 0;
461
- overflow: hidden;
462
- }
463
-
464
- .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
465
- position: relative;
466
- transform: scale(.33);
467
- }
468
-
469
- .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
470
- transform: scale(1);
471
- }
472
-
473
- .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
474
- transform: scale(1);
475
- }
476
-
477
- .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
478
- transform: scale(.66);
479
- }
480
-
481
- .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
482
- transform: scale(.33);
483
- }
484
-
485
- .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
486
- transform: scale(.66);
487
- }
488
-
489
- .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
490
- transform: scale(.33);
491
- }
492
-
493
- .swiper-pagination-bullet {
494
- width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
495
- height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
496
- border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
497
- background: var(--swiper-pagination-bullet-inactive-color, #000);
498
- opacity: var(--swiper-pagination-bullet-inactive-opacity, .2);
499
- display: inline-block;
500
- }
501
-
502
- button.swiper-pagination-bullet {
503
- box-shadow: none;
504
- -webkit-appearance: none;
505
- -moz-appearance: none;
506
- appearance: none;
507
- border: none;
508
- margin: 0;
509
- padding: 0;
510
- }
511
-
512
- .swiper-pagination-clickable .swiper-pagination-bullet {
513
- cursor: pointer;
514
- }
515
-
516
- .swiper-pagination-bullet:only-child {
517
- display: none !important;
518
- }
519
-
520
- .swiper-pagination-bullet-active {
521
- opacity: var(--swiper-pagination-bullet-opacity, 1);
522
- background: var(--swiper-pagination-color, var(--swiper-theme-color));
523
- }
524
-
525
- .swiper-vertical > .swiper-pagination-bullets, .swiper-pagination-vertical.swiper-pagination-bullets {
526
- right: var(--swiper-pagination-right, 8px);
527
- left: var(--swiper-pagination-left, auto);
528
- top: 50%;
529
- transform: translate3d(0, -50%, 0);
530
- }
531
-
532
- :is(.swiper-vertical > .swiper-pagination-bullets, .swiper-pagination-vertical.swiper-pagination-bullets) .swiper-pagination-bullet {
533
- margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
534
- display: block;
535
- }
536
-
537
- :is(.swiper-vertical > .swiper-pagination-bullets, .swiper-pagination-vertical.swiper-pagination-bullets).swiper-pagination-bullets-dynamic {
538
- width: 8px;
539
- top: 50%;
540
- transform: translateY(-50%);
541
- }
542
-
543
- :is(.swiper-vertical > .swiper-pagination-bullets, .swiper-pagination-vertical.swiper-pagination-bullets).swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
544
- transition: transform .2s, top .2s;
545
- display: inline-block;
546
- }
547
-
548
- :is(.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-horizontal.swiper-pagination-bullets) .swiper-pagination-bullet {
549
- margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
550
- }
551
-
552
- :is(.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-horizontal.swiper-pagination-bullets).swiper-pagination-bullets-dynamic {
553
- white-space: nowrap;
554
- left: 50%;
555
- transform: translateX(-50%);
556
- }
557
-
558
- :is(.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-horizontal.swiper-pagination-bullets).swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
559
- transition: transform .2s, left .2s;
560
- }
561
-
562
- .swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
563
- transition: transform .2s, right .2s;
564
- }
565
-
566
- .swiper-pagination-fraction {
567
- color: var(--swiper-pagination-fraction-color, inherit);
568
- }
569
-
570
- .swiper-pagination-progressbar {
571
- background: var(--swiper-pagination-progressbar-bg-color, #00000040);
572
- position: absolute;
573
- }
574
-
575
- .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
576
- background: var(--swiper-pagination-color, var(--swiper-theme-color));
577
- transform-origin: 0 0;
578
- width: 100%;
579
- height: 100%;
580
- position: absolute;
581
- top: 0;
582
- left: 0;
583
- transform: scale(0);
584
- }
585
-
586
- .swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
587
- transform-origin: 100% 0;
588
- }
589
-
590
- .swiper-horizontal > .swiper-pagination-progressbar {
591
- width: 100%;
592
- height: var(--swiper-pagination-progressbar-size, 4px);
593
- top: 0;
594
- left: 0;
595
- }
596
-
597
- .swiper-pagination-progressbar.swiper-pagination-horizontal {
598
- width: 100%;
599
- height: var(--swiper-pagination-progressbar-size, 4px);
600
- top: 0;
601
- left: 0;
602
- }
603
-
604
- .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
605
- width: 100%;
606
- height: var(--swiper-pagination-progressbar-size, 4px);
607
- top: 0;
608
- left: 0;
609
- }
610
-
611
- .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
612
- width: 100%;
613
- height: var(--swiper-pagination-progressbar-size, 4px);
614
- top: 0;
615
- left: 0;
616
- }
617
-
618
- .swiper-vertical > .swiper-pagination-progressbar {
619
- width: var(--swiper-pagination-progressbar-size, 4px);
620
- height: 100%;
621
- top: 0;
622
- left: 0;
623
- }
624
-
625
- .swiper-pagination-progressbar.swiper-pagination-vertical {
626
- width: var(--swiper-pagination-progressbar-size, 4px);
627
- height: 100%;
628
- top: 0;
629
- left: 0;
630
- }
631
-
632
- .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
633
- width: var(--swiper-pagination-progressbar-size, 4px);
634
- height: 100%;
635
- top: 0;
636
- left: 0;
637
- }
638
-
639
- .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
640
- width: var(--swiper-pagination-progressbar-size, 4px);
641
- height: 100%;
642
- top: 0;
643
- left: 0;
644
- }
645
-
646
- .swiper-pagination-lock {
647
- display: none;
648
- }
649
-
650
-
651
- /*# sourceMappingURL=components.css.map*/
@@ -1 +0,0 @@
1
- {"version":3,"file":"static/css/components.css","sources":["/Users/kirubakaran.r/Documents/projects/hub/components/waterford_library/src/components/textEditor/lexicalStyles.css","/Users/kirubakaran.r/Documents/projects/hub/components/waterford_library/node_modules/swiper/swiper.css","/Users/kirubakaran.r/Documents/projects/hub/components/waterford_library/node_modules/swiper/modules/pagination.css"],"sourcesContent":[".editor-input {\n min-height: 200px;\n padding: 12px;\n outline: none;\n font-size: 16px;\n line-height: 1.5;\n }\n \n.editor-placeholder {\n color: #aaa;\n padding: 12px;\n position: absolute;\n pointer-events: none;\n}\n\n.editor-textBold {\n font-weight: bold;\n}\n\n.editor-textItalic {\n font-style: italic;\n}\n\n.editor-textUnderline {\n text-decoration: underline;\n}\n\n.editor-textStrikethrough {\n text-decoration: line-through;\n}\n\n.editor-textSubscript {\n vertical-align: sub;\n font-size: 0.8em;\n}\n\n.editor-textSuperscript {\n vertical-align: super;\n font-size: 0.8em;\n}\n\n.editor-heading-h1 {\n font-size: 2em;\n font-weight: bold;\n margin: 0.67em 0;\n}\n\n.editor-heading-h2 {\n font-size: 1.75em;\n font-weight: bold;\n margin: 0.75em 0;\n}\n\n.editor-heading-h3 {\n font-size: 1.5em;\n font-weight: bold;\n margin: 0.83em 0;\n}\n\n.editor-heading-h4 {\n font-size: 1.25em;\n font-weight: bold;\n margin: 1em 0;\n}\n\n.editor-heading-h5 {\n font-size: 1.1em;\n font-weight: bold;\n margin: 1.17em 0;\n}\n\n.editor-heading-h6 {\n font-size: 1em;\n font-weight: bold;\n margin: 1.33em 0;\n}\n\n.editor-list-ol {\n padding-left: 30px;\n margin: 0.5em 0;\n}\n\n.editor-list-ul {\n padding-left: 30px;\n margin: 0.5em 0;\n}\n\n.editor-list-item {\n margin: 0.25em 0;\n}\n\n.editor-quote {\n margin: 0;\n padding-left: 20px;\n border-left: 4px solid #ccc;\n color: #666;\n font-style: italic;\n}\n","/**\n * Swiper 12.1.0\n * Most modern mobile touch slider and framework with hardware accelerated transitions\n * https://swiperjs.com\n *\n * Copyright 2014-2026 Vladimir Kharlampidi\n *\n * Released under the MIT License\n *\n * Released on: January 28, 2026\n */\n\n:root {\n --swiper-theme-color: #007aff;\n /*\n --swiper-preloader-color: var(--swiper-theme-color);\n --swiper-wrapper-transition-timing-function: initial;\n */\n}\n:host {\n position: relative;\n display: block;\n margin-left: auto;\n margin-right: auto;\n z-index: 1;\n}\n.swiper {\n margin-left: auto;\n margin-right: auto;\n position: relative;\n overflow: hidden;\n list-style: none;\n padding: 0;\n /* Fix of Webkit flickering */\n z-index: 1;\n display: block;\n}\n.swiper-vertical > .swiper-wrapper {\n flex-direction: column;\n}\n.swiper-wrapper {\n position: relative;\n width: 100%;\n height: 100%;\n z-index: 1;\n display: flex;\n transition-property: transform;\n transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);\n box-sizing: content-box;\n}\n.swiper-android .swiper-slide,\n.swiper-ios .swiper-slide,\n.swiper-wrapper {\n transform: translate3d(0px, 0, 0);\n}\n.swiper-horizontal {\n touch-action: pan-y;\n}\n.swiper-vertical {\n touch-action: pan-x;\n}\n.swiper-slide {\n flex-shrink: 0;\n width: 100%;\n height: 100%;\n position: relative;\n transition-property: transform;\n display: block;\n}\n.swiper-slide-invisible-blank {\n visibility: hidden;\n}\n/* Auto Height */\n.swiper-autoheight,\n.swiper-autoheight .swiper-slide {\n height: auto;\n}\n.swiper-autoheight .swiper-wrapper {\n align-items: flex-start;\n transition-property: transform, height;\n}\n.swiper-backface-hidden .swiper-slide {\n transform: translateZ(0);\n backface-visibility: hidden;\n}\n/* 3D Effects */\n.swiper-3d.swiper-css-mode .swiper-wrapper {\n perspective: 1200px;\n}\n.swiper-3d .swiper-wrapper {\n transform-style: preserve-3d;\n}\n.swiper-3d {\n perspective: 1200px;\n .swiper-slide,\n .swiper-cube-shadow {\n transform-style: preserve-3d;\n }\n}\n\n/* CSS Mode */\n.swiper-css-mode {\n > .swiper-wrapper {\n overflow: auto;\n scrollbar-width: none; /* For Firefox */\n -ms-overflow-style: none; /* For Internet Explorer and Edge */\n &::-webkit-scrollbar {\n display: none;\n }\n }\n > .swiper-wrapper > .swiper-slide {\n scroll-snap-align: start start;\n }\n &.swiper-horizontal {\n > .swiper-wrapper {\n scroll-snap-type: x mandatory;\n }\n > .swiper-wrapper > .swiper-slide:first-child {\n margin-inline-start: var(--swiper-slides-offset-before);\n scroll-margin-inline-start: var(--swiper-slides-offset-before);\n }\n > .swiper-wrapper > .swiper-slide:last-child {\n margin-inline-end: var(--swiper-slides-offset-after);\n }\n }\n &.swiper-vertical {\n > .swiper-wrapper {\n scroll-snap-type: y mandatory;\n }\n > .swiper-wrapper > .swiper-slide:first-child {\n margin-block-start: var(--swiper-slides-offset-before);\n scroll-margin-block-start: var(--swiper-slides-offset-before);\n }\n > .swiper-wrapper > .swiper-slide:last-child {\n margin-block-end: var(--swiper-slides-offset-after);\n }\n }\n &.swiper-free-mode {\n > .swiper-wrapper {\n scroll-snap-type: none;\n }\n > .swiper-wrapper > .swiper-slide {\n scroll-snap-align: none;\n }\n }\n &.swiper-centered {\n > .swiper-wrapper::before {\n content: '';\n flex-shrink: 0;\n order: 9999;\n }\n > .swiper-wrapper > .swiper-slide {\n scroll-snap-align: center center;\n scroll-snap-stop: always;\n }\n }\n &.swiper-centered.swiper-horizontal {\n > .swiper-wrapper > .swiper-slide:first-child {\n margin-inline-start: var(--swiper-centered-offset-before);\n }\n > .swiper-wrapper::before {\n height: 100%;\n min-height: 1px;\n width: var(--swiper-centered-offset-after);\n }\n }\n &.swiper-centered.swiper-vertical {\n > .swiper-wrapper > .swiper-slide:first-child {\n margin-block-start: var(--swiper-centered-offset-before);\n }\n > .swiper-wrapper::before {\n width: 100%;\n min-width: 1px;\n height: var(--swiper-centered-offset-after);\n }\n }\n}\n\n/* Slide styles start */\n/* 3D Shadows */\n.swiper-3d {\n .swiper-slide-shadow,\n .swiper-slide-shadow-left,\n .swiper-slide-shadow-right,\n .swiper-slide-shadow-top,\n .swiper-slide-shadow-bottom,\n .swiper-slide-shadow,\n .swiper-slide-shadow-left,\n .swiper-slide-shadow-right,\n .swiper-slide-shadow-top,\n .swiper-slide-shadow-bottom {\n position: absolute;\n left: 0;\n top: 0;\n width: 100%;\n height: 100%;\n pointer-events: none;\n z-index: 10;\n }\n .swiper-slide-shadow {\n background: rgba(0, 0, 0, 0.15);\n }\n .swiper-slide-shadow-left {\n background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));\n }\n .swiper-slide-shadow-right {\n background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));\n }\n .swiper-slide-shadow-top {\n background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));\n }\n .swiper-slide-shadow-bottom {\n background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));\n }\n}\n.swiper-lazy-preloader {\n width: 42px;\n height: 42px;\n position: absolute;\n left: 50%;\n top: 50%;\n margin-left: -21px;\n margin-top: -21px;\n z-index: 10;\n transform-origin: 50%;\n box-sizing: border-box;\n border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));\n border-radius: 50%;\n border-top-color: transparent;\n}\n.swiper:not(.swiper-watch-progress),\n.swiper-watch-progress .swiper-slide-visible {\n .swiper-lazy-preloader {\n animation: swiper-preloader-spin 1s infinite linear;\n }\n}\n.swiper-lazy-preloader-white {\n --swiper-preloader-color: #fff;\n}\n.swiper-lazy-preloader-black {\n --swiper-preloader-color: #000;\n}\n@keyframes swiper-preloader-spin {\n 0% {\n transform: rotate(0deg);\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n/* Slide styles end */\n",":root {\n /*\n --swiper-pagination-color: var(--swiper-theme-color);\n --swiper-pagination-left: auto;\n --swiper-pagination-right: 8px;\n --swiper-pagination-bottom: 8px;\n --swiper-pagination-top: auto;\n --swiper-pagination-fraction-color: inherit;\n --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);\n --swiper-pagination-progressbar-size: 4px;\n --swiper-pagination-bullet-size: 8px;\n --swiper-pagination-bullet-width: 8px;\n --swiper-pagination-bullet-height: 8px;\n --swiper-pagination-bullet-border-radius: 50%;\n --swiper-pagination-bullet-inactive-color: #000;\n --swiper-pagination-bullet-inactive-opacity: 0.2;\n --swiper-pagination-bullet-opacity: 1;\n --swiper-pagination-bullet-horizontal-gap: 4px;\n --swiper-pagination-bullet-vertical-gap: 6px;\n */\n}\n.swiper-pagination {\n position: absolute;\n text-align: center;\n transition: 300ms opacity;\n transform: translate3d(0, 0, 0);\n z-index: 10;\n &.swiper-pagination-hidden {\n opacity: 0;\n }\n .swiper-pagination-disabled > &,\n &.swiper-pagination-disabled {\n display: none !important;\n }\n}\n/* Common Styles */\n.swiper-pagination-fraction,\n.swiper-pagination-custom,\n.swiper-horizontal > .swiper-pagination-bullets,\n.swiper-pagination-bullets.swiper-pagination-horizontal {\n bottom: var(--swiper-pagination-bottom, 8px);\n top: var(--swiper-pagination-top, auto);\n left: 0;\n width: 100%;\n}\n/* Bullets */\n.swiper-pagination-bullets-dynamic {\n overflow: hidden;\n font-size: 0;\n .swiper-pagination-bullet {\n transform: scale(0.33);\n position: relative;\n }\n .swiper-pagination-bullet-active {\n transform: scale(1);\n }\n .swiper-pagination-bullet-active-main {\n transform: scale(1);\n }\n .swiper-pagination-bullet-active-prev {\n transform: scale(0.66);\n }\n .swiper-pagination-bullet-active-prev-prev {\n transform: scale(0.33);\n }\n .swiper-pagination-bullet-active-next {\n transform: scale(0.66);\n }\n .swiper-pagination-bullet-active-next-next {\n transform: scale(0.33);\n }\n}\n.swiper-pagination-bullet {\n width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));\n height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));\n display: inline-block;\n border-radius: var(--swiper-pagination-bullet-border-radius, 50%);\n background: var(--swiper-pagination-bullet-inactive-color, #000);\n opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);\n button& {\n border: none;\n margin: 0;\n padding: 0;\n box-shadow: none;\n appearance: none;\n }\n .swiper-pagination-clickable & {\n cursor: pointer;\n }\n\n &:only-child {\n display: none !important;\n }\n}\n.swiper-pagination-bullet-active {\n opacity: var(--swiper-pagination-bullet-opacity, 1);\n background: var(--swiper-pagination-color, var(--swiper-theme-color));\n}\n\n.swiper-vertical > .swiper-pagination-bullets,\n.swiper-pagination-vertical.swiper-pagination-bullets {\n right: var(--swiper-pagination-right, 8px);\n left: var(--swiper-pagination-left, auto);\n top: 50%;\n transform: translate3d(0px, -50%, 0);\n .swiper-pagination-bullet {\n margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;\n display: block;\n }\n &.swiper-pagination-bullets-dynamic {\n top: 50%;\n transform: translateY(-50%);\n width: 8px;\n .swiper-pagination-bullet {\n display: inline-block;\n transition:\n 200ms transform,\n 200ms top;\n }\n }\n}\n.swiper-horizontal > .swiper-pagination-bullets,\n.swiper-pagination-horizontal.swiper-pagination-bullets {\n .swiper-pagination-bullet {\n margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);\n }\n &.swiper-pagination-bullets-dynamic {\n left: 50%;\n transform: translateX(-50%);\n white-space: nowrap;\n .swiper-pagination-bullet {\n transition:\n 200ms transform,\n 200ms left;\n }\n }\n}\n.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {\n transition:\n 200ms transform,\n 200ms right;\n}\n/* Fraction */\n.swiper-pagination-fraction {\n color: var(--swiper-pagination-fraction-color, inherit);\n}\n/* Progress */\n.swiper-pagination-progressbar {\n background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));\n position: absolute;\n .swiper-pagination-progressbar-fill {\n background: var(--swiper-pagination-color, var(--swiper-theme-color));\n position: absolute;\n left: 0;\n top: 0;\n width: 100%;\n height: 100%;\n transform: scale(0);\n transform-origin: left top;\n }\n .swiper-rtl & .swiper-pagination-progressbar-fill {\n transform-origin: right top;\n }\n .swiper-horizontal > &,\n &.swiper-pagination-horizontal,\n .swiper-vertical > &.swiper-pagination-progressbar-opposite,\n &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {\n width: 100%;\n height: var(--swiper-pagination-progressbar-size, 4px);\n left: 0;\n top: 0;\n }\n .swiper-vertical > &,\n &.swiper-pagination-vertical,\n .swiper-horizontal > &.swiper-pagination-progressbar-opposite,\n &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {\n width: var(--swiper-pagination-progressbar-size, 4px);\n height: 100%;\n left: 0;\n top: 0;\n }\n}\n.swiper-pagination-lock {\n display: none;\n}\n"],"names":[],"mappings":"AADA;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;ACjFA;AAVA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;;;ACzTA;AAnBA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA"}