@ix_waterford/lib 1.0.96 → 1.0.97

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 +1 @@
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
+ .editor-input{outline:none;min-height:200px;padding:12px;font-size:16px;line-height:1.5}.editor-placeholder{color:#aaa;pointer-events:none;padding:12px;position:absolute}.editor-textBold{font-weight:700}.editor-textItalic{font-style:italic}.editor-textUnderline{text-decoration:underline}.editor-textStrikethrough{text-decoration:line-through}.editor-textSubscript{vertical-align:sub;font-size:.8em}.editor-textSuperscript{vertical-align:super;font-size:.8em}.editor-heading-h1{margin:.67em 0;font-size:2em;font-weight:700}.editor-heading-h2{margin:.75em 0;font-size:1.75em;font-weight:700}.editor-heading-h3{margin:.83em 0;font-size:1.5em;font-weight:700}.editor-heading-h4{margin:1em 0;font-size:1.25em;font-weight:700}.editor-heading-h5{margin:1.17em 0;font-size:1.1em;font-weight:700}.editor-heading-h6{margin:1.33em 0;font-size:1em;font-weight:700}.editor-list-ol,.editor-list-ul{margin:.5em 0;padding-left:30px}.editor-list-item{margin:.25em 0}.editor-quote{color:#666;border-left:4px solid #ccc;margin:0;padding-left:20px;font-style:italic}:root{--swiper-theme-color:#007aff}:host{z-index:1;margin-left:auto;margin-right:auto;display:block;position:relative}.swiper{z-index:1;margin-left:auto;margin-right:auto;padding:0;list-style:none;display:block;position:relative;overflow:hidden}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{z-index:1;width:100%;height:100%;transition-property:transform;transition-timing-function:var(--swiper-wrapper-transition-timing-function,initial);box-sizing:content-box;display:flex;position:relative}.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper{transform:translate(0,0)}.swiper-horizontal{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;transition-property:transform;display:block;position:relative}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;transform:translateZ(0)}.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d{perspective:1200px}.swiper-3d .swiper-slide,.swiper-3d .swiper-cube-shadow{transform-style:preserve-3d}.swiper-css-mode>.swiper-wrapper{scrollbar-width:none;-ms-overflow-style:none;overflow:auto}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-css-mode.swiper-horizontal>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-css-mode.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-slides-offset-before);scroll-margin-inline-start:var(--swiper-slides-offset-before)}.swiper-css-mode.swiper-horizontal>.swiper-wrapper>.swiper-slide:last-child{margin-inline-end:var(--swiper-slides-offset-after)}.swiper-css-mode.swiper-vertical>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-css-mode.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-slides-offset-before);scroll-margin-block-start:var(--swiper-slides-offset-before)}.swiper-css-mode.swiper-vertical>.swiper-wrapper>.swiper-slide:last-child{margin-block-end:var(--swiper-slides-offset-after)}.swiper-css-mode.swiper-free-mode>.swiper-wrapper{scroll-snap-type:none}.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:none}.swiper-css-mode.swiper-centered>.swiper-wrapper:before{content:"";flex-shrink:0;order:9999}.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper:before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper:before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-slide-shadow-bottom{pointer-events:none;z-index:10;width:100%;height:100%;position:absolute;top:0;left:0}.swiper-3d .swiper-slide-shadow{background:#00000026}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(270deg,#00000080,#0000)}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(90deg,#00000080,#0000)}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(#0000,#00000080)}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(#00000080,#0000)}.swiper-lazy-preloader{z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-top-color:#0000;border-radius:50%;width:42px;height:42px;margin-top:-21px;margin-left:-21px;position:absolute;top:50%;left:50%}:is(.swiper:not(.swiper-watch-progress),.swiper-watch-progress .swiper-slide-visible) .swiper-lazy-preloader{animation:1s linear infinite swiper-preloader-spin}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.swiper-pagination{text-align:center;z-index:10;transition:opacity .3s;position:absolute;transform:translate(0,0)}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-pagination-fraction,.swiper-pagination-custom,.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal{bottom:var(--swiper-pagination-bottom,8px);top:var(--swiper-pagination-top,auto);width:100%;left:0}.swiper-pagination-bullets-dynamic{font-size:0;overflow:hidden}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{position:relative;transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));border-radius:var(--swiper-pagination-bullet-border-radius,50%);background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity,.2);display:inline-block}button.swiper-pagination-bullet{box-shadow:none;-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;margin:0;padding:0}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity,1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-vertical>.swiper-pagination-bullets,.swiper-pagination-vertical.swiper-pagination-bullets{right:var(--swiper-pagination-right,8px);left:var(--swiper-pagination-left,auto);top:50%;transform:translateY(-50%)}:is(.swiper-vertical>.swiper-pagination-bullets,.swiper-pagination-vertical.swiper-pagination-bullets) .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px)0;display:block}:is(.swiper-vertical>.swiper-pagination-bullets,.swiper-pagination-vertical.swiper-pagination-bullets).swiper-pagination-bullets-dynamic{width:8px;top:50%;transform:translateY(-50%)}:is(.swiper-vertical>.swiper-pagination-bullets,.swiper-pagination-vertical.swiper-pagination-bullets).swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:transform .2s,top .2s;display:inline-block}:is(.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-horizontal.swiper-pagination-bullets) .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}:is(.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-horizontal.swiper-pagination-bullets).swiper-pagination-bullets-dynamic{white-space:nowrap;left:50%;transform:translate(-50%)}:is(.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-horizontal.swiper-pagination-bullets).swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:transform .2s,left .2s}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:transform .2s,right .2s}.swiper-pagination-fraction{color:var(--swiper-pagination-fraction-color,inherit)}.swiper-pagination-progressbar{background:var(--swiper-pagination-progressbar-bg-color,#00000040);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));transform-origin:0 0;width:100%;height:100%;position:absolute;top:0;left:0;transform:scale(0)}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:100% 0}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite{width:100%;height:var(--swiper-pagination-progressbar-size,4px);top:0;left:0}.swiper-vertical>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite{width:var(--swiper-pagination-progressbar-size,4px);height:100%;top:0;left:0}.swiper-pagination-lock{display:none}