@bagelink/vue 1.15.34 → 1.15.36

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,18 +1,18 @@
1
1
  .grid {
2
- display: grid !important;
2
+ display: grid;
3
3
  }
4
4
 
5
5
  .inline-grid {
6
- display: inline-grid !important;
6
+ display: inline-grid;
7
7
  }
8
8
 
9
9
  .fill {
10
- width: 100vw !important;
11
- height: 100vh !important;
10
+ width: 100vw;
11
+ height: 100vh;
12
12
  }
13
13
 
14
14
  .round {
15
- border-radius: 1000px !important;
15
+ border-radius: 1000px;
16
16
  }
17
17
 
18
18
  .rounded,
@@ -104,91 +104,89 @@
104
104
  }
105
105
 
106
106
  .oval {
107
- border-radius: 100% !important;
107
+ border-radius: 100%;
108
108
  }
109
109
 
110
110
  .aspect-ratio-1,
111
111
  .ratio-1 {
112
- aspect-ratio: 1 !important;
112
+ aspect-ratio: 1;
113
113
  }
114
114
 
115
115
  .aspect-ratio-4-3,
116
116
  .ratio-4-3 {
117
- aspect-ratio: 4 / 3 !important;
117
+ aspect-ratio: 4 / 3;
118
118
  }
119
119
 
120
120
  .aspect-ratio-3-4,
121
121
  .ratio-3-4 {
122
- aspect-ratio: 3 / 4 !important;
122
+ aspect-ratio: 3 / 4;
123
123
  }
124
124
 
125
125
  .aspect-ratio-16-9,
126
126
  .ratio-16-9 {
127
- aspect-ratio: 16 / 9 !important;
127
+ aspect-ratio: 16 / 9;
128
128
  }
129
129
 
130
130
  .aspect-ratio-9-16,
131
131
  .ratio-9-16 {
132
- aspect-ratio: 9 / 16 !important;
132
+ aspect-ratio: 9 / 16;
133
133
  }
134
134
 
135
135
  .aspect-ratio-3-2,
136
136
  .ratio-3-2 {
137
- aspect-ratio: 3 / 2 !important;
137
+ aspect-ratio: 3 / 2;
138
138
  }
139
139
 
140
140
  .aspect-ratio-2-3,
141
141
  .ratio-2-3 {
142
- aspect-ratio: 2 / 3 !important;
142
+ aspect-ratio: 2 / 3;
143
143
  }
144
144
 
145
145
  .aspect-ratio-5-4,
146
146
  .ratio-5-4 {
147
- aspect-ratio: 5 / 4 !important;
147
+ aspect-ratio: 5 / 4;
148
148
  }
149
149
 
150
150
  .aspect-ratio-4-5,
151
151
  .ratio-4-5 {
152
- aspect-ratio: 4 / 5 !important;
152
+ aspect-ratio: 4 / 5;
153
153
  }
154
154
 
155
155
  .aspect-ratio-2-1,
156
156
  .ratio-2-1 {
157
- aspect-ratio: 2 / 1 !important;
157
+ aspect-ratio: 2 / 1;
158
158
  }
159
159
 
160
160
  .aspect-ratio-1-2,
161
161
  .ratio-1-2 {
162
- aspect-ratio: 1 / 2 !important;
162
+ aspect-ratio: 1 / 2;
163
163
  }
164
164
 
165
165
  .aspect-ratio-21-9,
166
166
  .ratio-21-9 {
167
- aspect-ratio: 21 / 9 !important;
167
+ aspect-ratio: 21 / 9;
168
168
  }
169
169
 
170
170
  .vertical-align-middle,
171
171
  .vertical-middle {
172
- vertical-align: middle !important;
172
+ vertical-align: middle;
173
173
  }
174
174
 
175
175
  .vertical-align-top,
176
176
  .vertical-top {
177
- vertical-align: top !important;
177
+ vertical-align: top;
178
178
  }
179
179
 
180
180
  .vertical-align-bottom,
181
181
  .vertical-bottom {
182
- vertical-align: bottom !important;
182
+ vertical-align: bottom;
183
183
  }
184
184
 
185
185
  .vertical-align-baseline,
186
186
  .vertical-baseline {
187
- vertical-align: baseline !important;
187
+ vertical-align: baseline;
188
188
  }
189
189
 
190
- /* Multi-purpose base class: layout props left non-important so dedicated
191
- modifiers (.align-items-*, .justify-content-*, .none, …) can override them. */
192
190
  .flex-center {
193
191
  justify-content: center;
194
192
  align-items: center;
@@ -196,33 +194,33 @@
196
194
  }
197
195
 
198
196
  .justify-items-center {
199
- justify-items: center !important;
197
+ justify-items: center;
200
198
  }
201
199
 
202
200
  .justify-content,
203
201
  .justify-content-center,
204
202
  .justify-center {
205
- justify-content: center !important;
203
+ justify-content: center;
206
204
  }
207
205
 
208
206
  .justify-content-start {
209
- justify-content: start !important;
207
+ justify-content: start;
210
208
  }
211
209
 
212
210
  .align-content-center {
213
- align-content: center !important;
211
+ align-content: center;
214
212
  }
215
213
 
216
214
  .align-content-start {
217
- align-content: start !important;
215
+ align-content: start;
218
216
  }
219
217
 
220
218
  .align-content-end {
221
- align-content: end !important;
219
+ align-content: end;
222
220
  }
223
221
 
224
222
  .align-content-space-between {
225
- align-content: space-between !important;
223
+ align-content: space-between;
226
224
  }
227
225
 
228
226
  .align-items-top {
@@ -247,8 +245,6 @@
247
245
  margin-block-start: var(--bgl-article-space, 1em) !important;
248
246
  }
249
247
 
250
- /* Multi-purpose base class: layout props left non-important so dedicated
251
- modifiers can override them. */
252
248
  .pile {
253
249
  display: grid;
254
250
  grid-template-areas: 'pile';
@@ -259,920 +255,921 @@
259
255
  place-items: center !important;
260
256
  }
261
257
 
258
+
262
259
  .fit-content {
263
- width: fit-content !important;
264
- height: fit-content !important;
260
+ width: fit-content;
261
+ height: fit-content;
265
262
  }
266
263
 
267
264
  .w-fit-content,
268
265
  .w-fit,
269
266
  .wfit {
270
- width: fit-content !important;
267
+ width: fit-content;
271
268
  }
272
269
 
273
270
  .auto-flow-columns {
274
- grid-auto-flow: column !important;
271
+ grid-auto-flow: column;
275
272
  }
276
273
 
277
274
  .grid-2-col {
278
- grid-template-columns: 1fr 1fr !important;
275
+ grid-template-columns: 1fr 1fr;
279
276
  }
280
277
 
281
278
  .justify-content-between {
282
- justify-content: space-between !important;
279
+ justify-content: space-between;
283
280
  }
284
281
 
285
282
  .justify-self-start {
286
- justify-self: start !important;
283
+ justify-self: start;
287
284
  }
288
285
 
289
286
  .columns-max-content {
290
- grid-auto-columns: max-content !important;
287
+ grid-auto-columns: max-content;
291
288
  }
292
289
 
293
290
  .rows-max-content {
294
- grid-auto-rows: max-content !important;
291
+ grid-auto-rows: max-content;
295
292
  }
296
293
 
297
294
  .grid.overflow>* {
298
- min-width: 0px !important;
299
- overflow: auto !important;
295
+ min-width: 0px;
296
+ overflow: auto;
300
297
  }
301
298
 
302
299
  .justify-content-around {
303
- justify-content: space-around !important;
300
+ justify-content: space-around;
304
301
  }
305
302
 
306
303
  .justify-content-end {
307
- justify-content: end !important;
304
+ justify-content: end;
308
305
  }
309
306
 
310
307
  .justify-self-end {
311
- justify-self: end !important;
308
+ justify-self: end;
312
309
  }
313
310
 
314
311
  .justify-self-center {
315
- justify-self: center !important;
312
+ justify-self: center;
316
313
  }
317
314
 
318
315
  .position-start {
319
- position: absolute !important;
320
- top: 0px !important;
321
- inset-inline-start: 0px !important;
316
+ position: absolute;
317
+ top: 0px;
318
+ inset-inline-start: 0px;
322
319
  }
323
320
 
324
321
  .position-end {
325
- position: absolute !important;
326
- top: 0px !important;
327
- inset-inline-end: 0px !important;
322
+ position: absolute;
323
+ top: 0px;
324
+ inset-inline-end: 0px;
328
325
  }
329
326
 
330
327
  .position-bottom-start {
331
- position: absolute !important;
332
- bottom: 0px !important;
333
- inset-inline-start: 0px !important;
328
+ position: absolute;
329
+ bottom: 0px;
330
+ inset-inline-start: 0px;
334
331
  }
335
332
 
336
333
  .position-bottom-end {
337
- position: absolute !important;
338
- bottom: 0px !important;
339
- inset-inline-end: 0px !important;
334
+ position: absolute;
335
+ bottom: 0px;
336
+ inset-inline-end: 0px;
340
337
  }
341
338
 
342
339
  .position-bottom-center {
343
- position: absolute !important;
344
- bottom: 0px !important;
345
- inset-inline-start: 0px !important;
346
- inset-inline-end: 0px !important;
340
+ position: absolute;
341
+ bottom: 0px;
342
+ inset-inline-start: 0px;
343
+ inset-inline-end: 0px;
347
344
  }
348
345
 
349
346
  .position-center {
350
- position: absolute !important;
351
- top: 0px !important;
352
- inset-inline-start: 0px !important;
353
- inset-inline-end: 0px !important;
347
+ position: absolute;
348
+ top: 0px;
349
+ inset-inline-start: 0px;
350
+ inset-inline-end: 0px;
354
351
  }
355
352
 
356
353
  .positioned-full,
357
354
  .p-all {
358
- top: 0 !important;
359
- bottom: 0 !important;
360
- inset-inline-start: 0 !important;
361
- inset-inline-end: 0 !important;
355
+ top: 0;
356
+ bottom: 0;
357
+ inset-inline-start: 0;
358
+ inset-inline-end: 0;
362
359
  }
363
360
 
364
361
  .inset-inline-start,
365
362
  .start,
366
363
  .start-0 {
367
- inset-inline-start: 0 !important;
364
+ inset-inline-start: 0;
368
365
  }
369
366
 
370
367
  .start-auto {
371
- inset-inline-start: auto !important;
368
+ inset-inline-start: auto;
372
369
  }
373
370
 
374
371
  .start-025 {
375
- inset-inline-start: 0.25rem !important;
372
+ inset-inline-start: 0.25rem;
376
373
  }
377
374
 
378
375
  .start-05 {
379
- inset-inline-start: 0.5rem !important;
376
+ inset-inline-start: 0.5rem;
380
377
  }
381
378
 
382
379
  .start-075 {
383
- inset-inline-start: 0.75rem !important;
380
+ inset-inline-start: 0.75rem;
384
381
  }
385
382
 
386
383
  .start-1 {
387
- inset-inline-start: 1rem !important;
384
+ inset-inline-start: 1rem;
388
385
  }
389
386
 
390
387
  .start-1-25 {
391
- inset-inline-start: 1.25rem !important;
388
+ inset-inline-start: 1.25rem;
392
389
  }
393
390
 
394
391
  .start-1-5 {
395
- inset-inline-start: 1.5rem !important;
392
+ inset-inline-start: 1.5rem;
396
393
  }
397
394
 
398
395
  .start-1-75 {
399
- inset-inline-start: 1.75rem !important;
396
+ inset-inline-start: 1.75rem;
400
397
  }
401
398
 
402
399
  .start-2 {
403
- inset-inline-start: 2rem !important;
400
+ inset-inline-start: 2rem;
404
401
  }
405
402
 
406
403
  .start-2-5 {
407
- inset-inline-start: 2.5rem !important;
404
+ inset-inline-start: 2.5rem;
408
405
  }
409
406
 
410
407
  .start-3 {
411
- inset-inline-start: 3rem !important;
408
+ inset-inline-start: 3rem;
412
409
  }
413
410
 
414
411
  .start-3-5 {
415
- inset-inline-start: 3.5rem !important;
412
+ inset-inline-start: 3.5rem;
416
413
  }
417
414
 
418
415
  .start-4 {
419
- inset-inline-start: 4rem !important;
416
+ inset-inline-start: 4rem;
420
417
  }
421
418
 
422
419
  .start-4-5 {
423
- inset-inline-start: 4.5rem !important;
420
+ inset-inline-start: 4.5rem;
424
421
  }
425
422
 
426
423
  .start-5 {
427
- inset-inline-start: 5rem !important;
424
+ inset-inline-start: 5rem;
428
425
  }
429
426
 
430
427
  .start-5-5 {
431
- inset-inline-start: 5.5rem !important;
428
+ inset-inline-start: 5.5rem;
432
429
  }
433
430
 
434
431
  .start-6 {
435
- inset-inline-start: 6rem !important;
432
+ inset-inline-start: 6rem;
436
433
  }
437
434
 
438
435
  .start-6-5 {
439
- inset-inline-start: 6.5rem !important;
436
+ inset-inline-start: 6.5rem;
440
437
  }
441
438
 
442
439
  .start-7 {
443
- inset-inline-start: 7rem !important;
440
+ inset-inline-start: 7rem;
444
441
  }
445
442
 
446
443
  .start-7-5 {
447
- inset-inline-start: 7.5rem !important;
444
+ inset-inline-start: 7.5rem;
448
445
  }
449
446
 
450
447
  .start-8 {
451
- inset-inline-start: 8rem !important;
448
+ inset-inline-start: 8rem;
452
449
  }
453
450
 
454
451
  .start-8-5 {
455
- inset-inline-start: 8.5rem !important;
452
+ inset-inline-start: 8.5rem;
456
453
  }
457
454
 
458
455
  .start-9 {
459
- inset-inline-start: 9rem !important;
456
+ inset-inline-start: 9rem;
460
457
  }
461
458
 
462
459
  .start-9-5 {
463
- inset-inline-start: 9.5rem !important;
460
+ inset-inline-start: 9.5rem;
464
461
  }
465
462
 
466
463
  .start-10 {
467
- inset-inline-start: 10rem !important;
464
+ inset-inline-start: 10rem;
468
465
  }
469
466
 
470
467
  .-start-025 {
471
- inset-inline-start: -0.25rem !important;
468
+ inset-inline-start: -0.25rem;
472
469
  }
473
470
 
474
471
  .-start-05 {
475
- inset-inline-start: -0.5rem !important;
472
+ inset-inline-start: -0.5rem;
476
473
  }
477
474
 
478
475
  .-start-075 {
479
- inset-inline-start: -0.75rem !important;
476
+ inset-inline-start: -0.75rem;
480
477
  }
481
478
 
482
479
  .-start-1 {
483
- inset-inline-start: -1rem !important;
480
+ inset-inline-start: -1rem;
484
481
  }
485
482
 
486
483
  .-start-1-25 {
487
- inset-inline-start: -1.25rem !important;
484
+ inset-inline-start: -1.25rem;
488
485
  }
489
486
 
490
487
  .-start-1-5 {
491
- inset-inline-start: -1.5rem !important;
488
+ inset-inline-start: -1.5rem;
492
489
  }
493
490
 
494
491
  .-start-1-75 {
495
- inset-inline-start: -1.75rem !important;
492
+ inset-inline-start: -1.75rem;
496
493
  }
497
494
 
498
495
  .-start-2 {
499
- inset-inline-start: -2rem !important;
496
+ inset-inline-start: -2rem;
500
497
  }
501
498
 
502
499
  .-start-2-5 {
503
- inset-inline-start: -2.5rem !important;
500
+ inset-inline-start: -2.5rem;
504
501
  }
505
502
 
506
503
  .-start-3 {
507
- inset-inline-start: -3rem !important;
504
+ inset-inline-start: -3rem;
508
505
  }
509
506
 
510
507
  .-start-3-5 {
511
- inset-inline-start: -3.5rem !important;
508
+ inset-inline-start: -3.5rem;
512
509
  }
513
510
 
514
511
  .-start-4 {
515
- inset-inline-start: -4rem !important;
512
+ inset-inline-start: -4rem;
516
513
  }
517
514
 
518
515
  .-start-4-5 {
519
- inset-inline-start: -4.5rem !important;
516
+ inset-inline-start: -4.5rem;
520
517
  }
521
518
 
522
519
  .-start-5 {
523
- inset-inline-start: -5rem !important;
520
+ inset-inline-start: -5rem;
524
521
  }
525
522
 
526
523
  .-start-5-5 {
527
- inset-inline-start: -5.5rem !important;
524
+ inset-inline-start: -5.5rem;
528
525
  }
529
526
 
530
527
  .-start-6 {
531
- inset-inline-start: -6rem !important;
528
+ inset-inline-start: -6rem;
532
529
  }
533
530
 
534
531
  .-start-6-5 {
535
- inset-inline-start: -6.5rem !important;
532
+ inset-inline-start: -6.5rem;
536
533
  }
537
534
 
538
535
  .-start-7 {
539
- inset-inline-start: -7rem !important;
536
+ inset-inline-start: -7rem;
540
537
  }
541
538
 
542
539
  .-start-7-5 {
543
- inset-inline-start: -7.5rem !important;
540
+ inset-inline-start: -7.5rem;
544
541
  }
545
542
 
546
543
  .-start-8 {
547
- inset-inline-start: -8rem !important;
544
+ inset-inline-start: -8rem;
548
545
  }
549
546
 
550
547
  .-start-8-5 {
551
- inset-inline-start: -8.5rem !important;
548
+ inset-inline-start: -8.5rem;
552
549
  }
553
550
 
554
551
  .-start-9 {
555
- inset-inline-start: -9rem !important;
552
+ inset-inline-start: -9rem;
556
553
  }
557
554
 
558
555
  .-start-9-5 {
559
- inset-inline-start: -9.5rem !important;
556
+ inset-inline-start: -9.5rem;
560
557
  }
561
558
 
562
559
  .-start-10 {
563
- inset-inline-start: -10rem !important;
560
+ inset-inline-start: -10rem;
564
561
  }
565
562
 
566
563
  .inset-inline-end,
567
564
  .end,
568
565
  .end-0 {
569
- inset-inline-end: 0 !important;
566
+ inset-inline-end: 0;
570
567
  }
571
568
 
572
569
  .end-auto {
573
- inset-inline-end: auto !important;
570
+ inset-inline-end: auto;
574
571
  }
575
572
 
576
573
  .end-025 {
577
- inset-inline-end: 0.25rem !important;
574
+ inset-inline-end: 0.25rem;
578
575
  }
579
576
 
580
577
  .end-05 {
581
- inset-inline-end: 0.5rem !important;
578
+ inset-inline-end: 0.5rem;
582
579
  }
583
580
 
584
581
  .end-075 {
585
- inset-inline-end: 0.75rem !important;
582
+ inset-inline-end: 0.75rem;
586
583
  }
587
584
 
588
585
  .end-1 {
589
- inset-inline-end: 1rem !important;
586
+ inset-inline-end: 1rem;
590
587
  }
591
588
 
592
589
  .end-1-25 {
593
- inset-inline-end: 1.25rem !important;
590
+ inset-inline-end: 1.25rem;
594
591
  }
595
592
 
596
593
  .end-1-5 {
597
- inset-inline-end: 1.5rem !important;
594
+ inset-inline-end: 1.5rem;
598
595
  }
599
596
 
600
597
  .end-1-75 {
601
- inset-inline-end: 1.75rem !important;
598
+ inset-inline-end: 1.75rem;
602
599
  }
603
600
 
604
601
  .end-2 {
605
- inset-inline-end: 2rem !important;
602
+ inset-inline-end: 2rem;
606
603
  }
607
604
 
608
605
  .end-2-5 {
609
- inset-inline-end: 2.5rem !important;
606
+ inset-inline-end: 2.5rem;
610
607
  }
611
608
 
612
609
  .end-3 {
613
- inset-inline-end: 3rem !important;
610
+ inset-inline-end: 3rem;
614
611
  }
615
612
 
616
613
  .end-3-5 {
617
- inset-inline-end: 3.5rem !important;
614
+ inset-inline-end: 3.5rem;
618
615
  }
619
616
 
620
617
  .end-4 {
621
- inset-inline-end: 4rem !important;
618
+ inset-inline-end: 4rem;
622
619
  }
623
620
 
624
621
  .end-4-5 {
625
- inset-inline-end: 4.5rem !important;
622
+ inset-inline-end: 4.5rem;
626
623
  }
627
624
 
628
625
  .end-5 {
629
- inset-inline-end: 5rem !important;
626
+ inset-inline-end: 5rem;
630
627
  }
631
628
 
632
629
  .end-5-5 {
633
- inset-inline-end: 5.5rem !important;
630
+ inset-inline-end: 5.5rem;
634
631
  }
635
632
 
636
633
  .end-6 {
637
- inset-inline-end: 6rem !important;
634
+ inset-inline-end: 6rem;
638
635
  }
639
636
 
640
637
  .end-6-5 {
641
- inset-inline-end: 6.5rem !important;
638
+ inset-inline-end: 6.5rem;
642
639
  }
643
640
 
644
641
  .end-7 {
645
- inset-inline-end: 7rem !important;
642
+ inset-inline-end: 7rem;
646
643
  }
647
644
 
648
645
  .end-7-5 {
649
- inset-inline-end: 7.5rem !important;
646
+ inset-inline-end: 7.5rem;
650
647
  }
651
648
 
652
649
  .end-8 {
653
- inset-inline-end: 8rem !important;
650
+ inset-inline-end: 8rem;
654
651
  }
655
652
 
656
653
  .end-8-5 {
657
- inset-inline-end: 8.5rem !important;
654
+ inset-inline-end: 8.5rem;
658
655
  }
659
656
 
660
657
  .end-9 {
661
- inset-inline-end: 9rem !important;
658
+ inset-inline-end: 9rem;
662
659
  }
663
660
 
664
661
  .end-9-5 {
665
- inset-inline-end: 9.5rem !important;
662
+ inset-inline-end: 9.5rem;
666
663
  }
667
664
 
668
665
  .end-10 {
669
- inset-inline-end: 10rem !important;
666
+ inset-inline-end: 10rem;
670
667
  }
671
668
 
672
669
  .-end-025 {
673
- inset-inline-end: -0.25rem !important;
670
+ inset-inline-end: -0.25rem;
674
671
  }
675
672
 
676
673
  .-end-05 {
677
- inset-inline-end: -0.5rem !important;
674
+ inset-inline-end: -0.5rem;
678
675
  }
679
676
 
680
677
  .-end-075 {
681
- inset-inline-end: -0.75rem !important;
678
+ inset-inline-end: -0.75rem;
682
679
  }
683
680
 
684
681
  .-end-1 {
685
- inset-inline-end: -1rem !important;
682
+ inset-inline-end: -1rem;
686
683
  }
687
684
 
688
685
  .-end-1-25 {
689
- inset-inline-end: -1.25rem !important;
686
+ inset-inline-end: -1.25rem;
690
687
  }
691
688
 
692
689
  .-end-1-5 {
693
- inset-inline-end: -1.5rem !important;
690
+ inset-inline-end: -1.5rem;
694
691
  }
695
692
 
696
693
  .-end-1-75 {
697
- inset-inline-end: -1.75rem !important;
694
+ inset-inline-end: -1.75rem;
698
695
  }
699
696
 
700
697
  .-end-2 {
701
- inset-inline-end: -2rem !important;
698
+ inset-inline-end: -2rem;
702
699
  }
703
700
 
704
701
  .-end-2-5 {
705
- inset-inline-end: -2.5rem !important;
702
+ inset-inline-end: -2.5rem;
706
703
  }
707
704
 
708
705
  .-end-3 {
709
- inset-inline-end: -3rem !important;
706
+ inset-inline-end: -3rem;
710
707
  }
711
708
 
712
709
  .-end-3-5 {
713
- inset-inline-end: -3.5rem !important;
710
+ inset-inline-end: -3.5rem;
714
711
  }
715
712
 
716
713
  .-end-4 {
717
- inset-inline-end: -4rem !important;
714
+ inset-inline-end: -4rem;
718
715
  }
719
716
 
720
717
  .-end-4-5 {
721
- inset-inline-end: -4.5rem !important;
718
+ inset-inline-end: -4.5rem;
722
719
  }
723
720
 
724
721
  .-end-5 {
725
- inset-inline-end: -5rem !important;
722
+ inset-inline-end: -5rem;
726
723
  }
727
724
 
728
725
  .-end-5-5 {
729
- inset-inline-end: -5.5rem !important;
726
+ inset-inline-end: -5.5rem;
730
727
  }
731
728
 
732
729
  .-end-6 {
733
- inset-inline-end: -6rem !important;
730
+ inset-inline-end: -6rem;
734
731
  }
735
732
 
736
733
  .-end-6-5 {
737
- inset-inline-end: -6.5rem !important;
734
+ inset-inline-end: -6.5rem;
738
735
  }
739
736
 
740
737
  .-end-7 {
741
- inset-inline-end: -7rem !important;
738
+ inset-inline-end: -7rem;
742
739
  }
743
740
 
744
741
  .-end-7-5 {
745
- inset-inline-end: -7.5rem !important;
742
+ inset-inline-end: -7.5rem;
746
743
  }
747
744
 
748
745
  .-end-8 {
749
- inset-inline-end: -8rem !important;
746
+ inset-inline-end: -8rem;
750
747
  }
751
748
 
752
749
  .-end-8-5 {
753
- inset-inline-end: -8.5rem !important;
750
+ inset-inline-end: -8.5rem;
754
751
  }
755
752
 
756
753
  .-end-9 {
757
- inset-inline-end: -9rem !important;
754
+ inset-inline-end: -9rem;
758
755
  }
759
756
 
760
757
  .-end-9-5 {
761
- inset-inline-end: -9.5rem !important;
758
+ inset-inline-end: -9.5rem;
762
759
  }
763
760
 
764
761
  .-end-10 {
765
- inset-inline-end: -10rem !important;
762
+ inset-inline-end: -10rem;
766
763
  }
767
764
 
768
765
  .top,
769
766
  .top-0 {
770
- top: 0 !important;
767
+ top: 0;
771
768
  }
772
769
 
773
770
  .top-auto {
774
- top: auto !important;
771
+ top: auto;
775
772
  }
776
773
 
777
774
  .top-025 {
778
- top: 0.25rem !important;
775
+ top: 0.25rem;
779
776
  }
780
777
 
781
778
  .top-05 {
782
- top: 0.5rem !important;
779
+ top: 0.5rem;
783
780
  }
784
781
 
785
782
  .top-075 {
786
- top: 0.75rem !important;
783
+ top: 0.75rem;
787
784
  }
788
785
 
789
786
  .top-1 {
790
- top: 1rem !important;
787
+ top: 1rem;
791
788
  }
792
789
 
793
790
  .top-1-25 {
794
- top: 1.25rem !important;
791
+ top: 1.25rem;
795
792
  }
796
793
 
797
794
  .top-1-5 {
798
- top: 1.5rem !important;
795
+ top: 1.5rem;
799
796
  }
800
797
 
801
798
  .top-1-75 {
802
- top: 1.75rem !important;
799
+ top: 1.75rem;
803
800
  }
804
801
 
805
802
  .top-2 {
806
- top: 2rem !important;
803
+ top: 2rem;
807
804
  }
808
805
 
809
806
  .top-2-5 {
810
- top: 2.5rem !important;
807
+ top: 2.5rem;
811
808
  }
812
809
 
813
810
  .top-3 {
814
- top: 3rem !important;
811
+ top: 3rem;
815
812
  }
816
813
 
817
814
  .top-3-5 {
818
- top: 3.5rem !important;
815
+ top: 3.5rem;
819
816
  }
820
817
 
821
818
  .top-4 {
822
- top: 4rem !important;
819
+ top: 4rem;
823
820
  }
824
821
 
825
822
  .top-4-5 {
826
- top: 4.5rem !important;
823
+ top: 4.5rem;
827
824
  }
828
825
 
829
826
  .top-5 {
830
- top: 5rem !important;
827
+ top: 5rem;
831
828
  }
832
829
 
833
830
  .top-5-5 {
834
- top: 5.5rem !important;
831
+ top: 5.5rem;
835
832
  }
836
833
 
837
834
  .top-6 {
838
- top: 6rem !important;
835
+ top: 6rem;
839
836
  }
840
837
 
841
838
  .top-6-5 {
842
- top: 6.5rem !important;
839
+ top: 6.5rem;
843
840
  }
844
841
 
845
842
  .top-7 {
846
- top: 7rem !important;
843
+ top: 7rem;
847
844
  }
848
845
 
849
846
  .top-7-5 {
850
- top: 7.5rem !important;
847
+ top: 7.5rem;
851
848
  }
852
849
 
853
850
  .top-8 {
854
- top: 8rem !important;
851
+ top: 8rem;
855
852
  }
856
853
 
857
854
  .top-8-5 {
858
- top: 8.5rem !important;
855
+ top: 8.5rem;
859
856
  }
860
857
 
861
858
  .top-9 {
862
- top: 9rem !important;
859
+ top: 9rem;
863
860
  }
864
861
 
865
862
  .top-9-5 {
866
- top: 9.5rem !important;
863
+ top: 9.5rem;
867
864
  }
868
865
 
869
866
  .top-10 {
870
- top: 10rem !important;
867
+ top: 10rem;
871
868
  }
872
869
 
873
870
  .top-50p {
874
- top: 50% !important;
871
+ top: 50%;
875
872
  }
876
873
 
877
874
  .-top-025 {
878
- top: -0.25rem !important;
875
+ top: -0.25rem;
879
876
  }
880
877
 
881
878
  .-top-05 {
882
- top: -0.5rem !important;
879
+ top: -0.5rem;
883
880
  }
884
881
 
885
882
  .-top-075 {
886
- top: -0.75rem !important;
883
+ top: -0.75rem;
887
884
  }
888
885
 
889
886
  .-top-1 {
890
- top: -1rem !important;
887
+ top: -1rem;
891
888
  }
892
889
 
893
890
  .-top-1-25 {
894
- top: -1.25rem !important;
891
+ top: -1.25rem;
895
892
  }
896
893
 
897
894
  .-top-1-5 {
898
- top: -1.5rem !important;
895
+ top: -1.5rem;
899
896
  }
900
897
 
901
898
  .-top-1-75 {
902
- top: -1.75rem !important;
899
+ top: -1.75rem;
903
900
  }
904
901
 
905
902
  .-top-2 {
906
- top: -2rem !important;
903
+ top: -2rem;
907
904
  }
908
905
 
909
906
  .-top-2-5 {
910
- top: -2.5rem !important;
907
+ top: -2.5rem;
911
908
  }
912
909
 
913
910
  .-top-3 {
914
- top: -3rem !important;
911
+ top: -3rem;
915
912
  }
916
913
 
917
914
  .-top-3-5 {
918
- top: -3.5rem !important;
915
+ top: -3.5rem;
919
916
  }
920
917
 
921
918
  .-top-4 {
922
- top: -4rem !important;
919
+ top: -4rem;
923
920
  }
924
921
 
925
922
  .-top-4-5 {
926
- top: -4.5rem !important;
923
+ top: -4.5rem;
927
924
  }
928
925
 
929
926
  .-top-5 {
930
- top: -5rem !important;
927
+ top: -5rem;
931
928
  }
932
929
 
933
930
  .-top-5-5 {
934
- top: -5.5rem !important;
931
+ top: -5.5rem;
935
932
  }
936
933
 
937
934
  .-top-6 {
938
- top: -6rem !important;
935
+ top: -6rem;
939
936
  }
940
937
 
941
938
  .-top-6-5 {
942
- top: -6.5rem !important;
939
+ top: -6.5rem;
943
940
  }
944
941
 
945
942
  .-top-7 {
946
- top: -7rem !important;
943
+ top: -7rem;
947
944
  }
948
945
 
949
946
  .-top-7-5 {
950
- top: -7.5rem !important;
947
+ top: -7.5rem;
951
948
  }
952
949
 
953
950
  .-top-8 {
954
- top: -8rem !important;
951
+ top: -8rem;
955
952
  }
956
953
 
957
954
  .-top-8-5 {
958
- top: -8.5rem !important;
955
+ top: -8.5rem;
959
956
  }
960
957
 
961
958
  .-top-9 {
962
- top: -9rem !important;
959
+ top: -9rem;
963
960
  }
964
961
 
965
962
  .-top-9-5 {
966
- top: -9.5rem !important;
963
+ top: -9.5rem;
967
964
  }
968
965
 
969
966
  .-top-10 {
970
- top: -10rem !important;
967
+ top: -10rem;
971
968
  }
972
969
 
973
970
  .bottom,
974
971
  .bottom-0 {
975
- bottom: 0 !important;
972
+ bottom: 0;
976
973
  }
977
974
 
978
975
  .bottom-auto {
979
- bottom: auto !important;
976
+ bottom: auto;
980
977
  }
981
978
 
982
979
  .bottom-025 {
983
- bottom: 0.25rem !important;
980
+ bottom: 0.25rem;
984
981
  }
985
982
 
986
983
  .bottom-05 {
987
- bottom: 0.5rem !important;
984
+ bottom: 0.5rem;
988
985
  }
989
986
 
990
987
  .bottom-075 {
991
- bottom: 0.75rem !important;
988
+ bottom: 0.75rem;
992
989
  }
993
990
 
994
991
  .bottom-1 {
995
- bottom: 1rem !important;
992
+ bottom: 1rem;
996
993
  }
997
994
 
998
995
  .bottom-1-25 {
999
- bottom: 1.25rem !important;
996
+ bottom: 1.25rem;
1000
997
  }
1001
998
 
1002
999
  .bottom-1-5 {
1003
- bottom: 1.5rem !important;
1000
+ bottom: 1.5rem;
1004
1001
  }
1005
1002
 
1006
1003
  .bottom-1-75 {
1007
- bottom: 1.75rem !important;
1004
+ bottom: 1.75rem;
1008
1005
  }
1009
1006
 
1010
1007
  .bottom-2 {
1011
- bottom: 2rem !important;
1008
+ bottom: 2rem;
1012
1009
  }
1013
1010
 
1014
1011
  .bottom-2-5 {
1015
- bottom: 2.5rem !important;
1012
+ bottom: 2.5rem;
1016
1013
  }
1017
1014
 
1018
1015
  .bottom-3 {
1019
- bottom: 3rem !important;
1016
+ bottom: 3rem;
1020
1017
  }
1021
1018
 
1022
1019
  .bottom-3-5 {
1023
- bottom: 3.5rem !important;
1020
+ bottom: 3.5rem;
1024
1021
  }
1025
1022
 
1026
1023
  .bottom-4 {
1027
- bottom: 4rem !important;
1024
+ bottom: 4rem;
1028
1025
  }
1029
1026
 
1030
1027
  .bottom-4-5 {
1031
- bottom: 4.5rem !important;
1028
+ bottom: 4.5rem;
1032
1029
  }
1033
1030
 
1034
1031
  .bottom-5 {
1035
- bottom: 5rem !important;
1032
+ bottom: 5rem;
1036
1033
  }
1037
1034
 
1038
1035
  .bottom-5-5 {
1039
- bottom: 5.5rem !important;
1036
+ bottom: 5.5rem;
1040
1037
  }
1041
1038
 
1042
1039
  .bottom-6 {
1043
- bottom: 6rem !important;
1040
+ bottom: 6rem;
1044
1041
  }
1045
1042
 
1046
1043
  .bottom-6-5 {
1047
- bottom: 6.5rem !important;
1044
+ bottom: 6.5rem;
1048
1045
  }
1049
1046
 
1050
1047
  .bottom-7 {
1051
- bottom: 7rem !important;
1048
+ bottom: 7rem;
1052
1049
  }
1053
1050
 
1054
1051
  .bottom-7-5 {
1055
- bottom: 7.5rem !important;
1052
+ bottom: 7.5rem;
1056
1053
  }
1057
1054
 
1058
1055
  .bottom-8 {
1059
- bottom: 8rem !important;
1056
+ bottom: 8rem;
1060
1057
  }
1061
1058
 
1062
1059
  .bottom-8-5 {
1063
- bottom: 8.5rem !important;
1060
+ bottom: 8.5rem;
1064
1061
  }
1065
1062
 
1066
1063
  .bottom-9 {
1067
- bottom: 9rem !important;
1064
+ bottom: 9rem;
1068
1065
  }
1069
1066
 
1070
1067
  .bottom-9-5 {
1071
- bottom: 9.5rem !important;
1068
+ bottom: 9.5rem;
1072
1069
  }
1073
1070
 
1074
1071
  .bottom-10 {
1075
- bottom: 10rem !important;
1072
+ bottom: 10rem;
1076
1073
  }
1077
1074
 
1078
1075
  .-bottom-025 {
1079
- bottom: -0.25rem !important;
1076
+ bottom: -0.25rem;
1080
1077
  }
1081
1078
 
1082
1079
  .-bottom-05 {
1083
- bottom: -0.5rem !important;
1080
+ bottom: -0.5rem;
1084
1081
  }
1085
1082
 
1086
1083
  .-bottom-075 {
1087
- bottom: -0.75rem !important;
1084
+ bottom: -0.75rem;
1088
1085
  }
1089
1086
 
1090
1087
  .-bottom-1 {
1091
- bottom: -1rem !important;
1088
+ bottom: -1rem;
1092
1089
  }
1093
1090
 
1094
1091
  .-bottom-1-25 {
1095
- bottom: -1.25rem !important;
1092
+ bottom: -1.25rem;
1096
1093
  }
1097
1094
 
1098
1095
  .-bottom-1-5 {
1099
- bottom: -1.5rem !important;
1096
+ bottom: -1.5rem;
1100
1097
  }
1101
1098
 
1102
1099
  .-bottom-1-75 {
1103
- bottom: -1.75rem !important;
1100
+ bottom: -1.75rem;
1104
1101
  }
1105
1102
 
1106
1103
  .-bottom-2 {
1107
- bottom: -2rem !important;
1104
+ bottom: -2rem;
1108
1105
  }
1109
1106
 
1110
1107
  .-bottom-2-5 {
1111
- bottom: -2.5rem !important;
1108
+ bottom: -2.5rem;
1112
1109
  }
1113
1110
 
1114
1111
  .-bottom-3 {
1115
- bottom: -3rem !important;
1112
+ bottom: -3rem;
1116
1113
  }
1117
1114
 
1118
1115
  .-bottom-3-5 {
1119
- bottom: -3.5rem !important;
1116
+ bottom: -3.5rem;
1120
1117
  }
1121
1118
 
1122
1119
  .-bottom-4 {
1123
- bottom: -4rem !important;
1120
+ bottom: -4rem;
1124
1121
  }
1125
1122
 
1126
1123
  .-bottom-4-5 {
1127
- bottom: -4.5rem !important;
1124
+ bottom: -4.5rem;
1128
1125
  }
1129
1126
 
1130
1127
  .-bottom-5 {
1131
- bottom: -5rem !important;
1128
+ bottom: -5rem;
1132
1129
  }
1133
1130
 
1134
1131
  .-bottom-5-5 {
1135
- bottom: -5.5rem !important;
1132
+ bottom: -5.5rem;
1136
1133
  }
1137
1134
 
1138
1135
  .-bottom-6 {
1139
- bottom: -6rem !important;
1136
+ bottom: -6rem;
1140
1137
  }
1141
1138
 
1142
1139
  .-bottom-6-5 {
1143
- bottom: -6.5rem !important;
1140
+ bottom: -6.5rem;
1144
1141
  }
1145
1142
 
1146
1143
  .-bottom-7 {
1147
- bottom: -7rem !important;
1144
+ bottom: -7rem;
1148
1145
  }
1149
1146
 
1150
1147
  .-bottom-7-5 {
1151
- bottom: -7.5rem !important;
1148
+ bottom: -7.5rem;
1152
1149
  }
1153
1150
 
1154
1151
  .-bottom-8 {
1155
- bottom: -8rem !important;
1152
+ bottom: -8rem;
1156
1153
  }
1157
1154
 
1158
1155
  .-bottom-8-5 {
1159
- bottom: -8.5rem !important;
1156
+ bottom: -8.5rem;
1160
1157
  }
1161
1158
 
1162
1159
  .-bottom-9 {
1163
- bottom: -9rem !important;
1160
+ bottom: -9rem;
1164
1161
  }
1165
1162
 
1166
1163
  .-bottom-9-5 {
1167
- bottom: -9.5rem !important;
1164
+ bottom: -9.5rem;
1168
1165
  }
1169
1166
 
1170
1167
  .-bottom-10 {
1171
- bottom: -10rem !important;
1168
+ bottom: -10rem;
1172
1169
  }
1173
1170
 
1174
1171
  .auto-flow-rows {
1175
- grid-auto-flow: row !important;
1172
+ grid-auto-flow: row;
1176
1173
  }
1177
1174
 
1178
1175
  .align-items-start {
@@ -1180,14 +1177,14 @@
1180
1177
  }
1181
1178
 
1182
1179
  .align-self-end {
1183
- align-self: end !important;
1180
+ align-self: end;
1184
1181
  }
1185
1182
 
1186
1183
  .min-100,
1187
1184
  .min100,
1188
1185
  .hmin100p,
1189
1186
  .h-min100p {
1190
- min-height: 100% !important;
1187
+ min-height: 100%;
1191
1188
  }
1192
1189
 
1193
1190
  .vh-min-100,
@@ -1199,7 +1196,7 @@
1199
1196
 
1200
1197
  .h-min-unset,
1201
1198
  .min-h-unset {
1202
- min-height: unset !important;
1199
+ min-height: unset;
1203
1200
  }
1204
1201
 
1205
1202
  .min-0,
@@ -1210,7 +1207,7 @@
1210
1207
  .w-100,
1211
1208
  .w-100p,
1212
1209
  .w100p {
1213
- width: 100% !important;
1210
+ width: 100%;
1214
1211
  }
1215
1212
 
1216
1213
  .w-100i,
@@ -1221,567 +1218,567 @@
1221
1218
 
1222
1219
  .min-w-100p,
1223
1220
  .min-w100p {
1224
- min-width: 100% !important;
1221
+ min-width: 100%;
1225
1222
  }
1226
1223
 
1227
1224
  .min-w-10px,
1228
1225
  .min-w10px {
1229
- min-width: 10px !important;
1226
+ min-width: 10px;
1230
1227
  }
1231
1228
 
1232
1229
  .min-w-20px,
1233
1230
  .min-w20px {
1234
- min-width: 20px !important;
1231
+ min-width: 20px;
1235
1232
  }
1236
1233
 
1237
1234
  .min-w-30px,
1238
1235
  .min-w30px {
1239
- min-width: 30px !important;
1236
+ min-width: 30px;
1240
1237
  }
1241
1238
 
1242
1239
  .min-w-40px,
1243
1240
  .min-w40px {
1244
- min-width: 40px !important;
1241
+ min-width: 40px;
1245
1242
  }
1246
1243
 
1247
1244
  .min-w-50px,
1248
1245
  .min-w50px {
1249
- min-width: 50px !important;
1246
+ min-width: 50px;
1250
1247
  }
1251
1248
 
1252
1249
  .min-w-60px,
1253
1250
  .min-w60px {
1254
- min-width: 60px !important;
1251
+ min-width: 60px;
1255
1252
  }
1256
1253
 
1257
1254
  .min-w-70px,
1258
1255
  .min-w70px {
1259
- min-width: 70px !important;
1256
+ min-width: 70px;
1260
1257
  }
1261
1258
 
1262
1259
  .min-w-80px,
1263
1260
  .min-w80px {
1264
- min-width: 80px !important;
1261
+ min-width: 80px;
1265
1262
  }
1266
1263
 
1267
1264
  .min-w-90px,
1268
1265
  .min-w90px {
1269
- min-width: 90px !important;
1266
+ min-width: 90px;
1270
1267
  }
1271
1268
 
1272
1269
  .min-w-100px,
1273
1270
  .min-w100px {
1274
- min-width: 100px !important;
1271
+ min-width: 100px;
1275
1272
  }
1276
1273
 
1277
1274
  .min-w-110px,
1278
1275
  .min-w110px {
1279
- min-width: 110px !important;
1276
+ min-width: 110px;
1280
1277
  }
1281
1278
 
1282
1279
  .min-w-120px,
1283
1280
  .min-w120px {
1284
- min-width: 120px !important;
1281
+ min-width: 120px;
1285
1282
  }
1286
1283
 
1287
1284
  .min-w-130px,
1288
1285
  .min-w130px {
1289
- min-width: 130px !important;
1286
+ min-width: 130px;
1290
1287
  }
1291
1288
 
1292
1289
  .min-w-140px,
1293
1290
  .min-w140px {
1294
- min-width: 140px !important;
1291
+ min-width: 140px;
1295
1292
  }
1296
1293
 
1297
1294
  .min-w-150px,
1298
1295
  .min-w150px {
1299
- min-width: 150px !important;
1296
+ min-width: 150px;
1300
1297
  }
1301
1298
 
1302
1299
  .min-w-160px,
1303
1300
  .min-w160px {
1304
- min-width: 160px !important;
1301
+ min-width: 160px;
1305
1302
  }
1306
1303
 
1307
1304
  .min-w-170px,
1308
1305
  .min-w170px {
1309
- min-width: 170px !important;
1306
+ min-width: 170px;
1310
1307
  }
1311
1308
 
1312
1309
  .min-w-180px,
1313
1310
  .min-w180px {
1314
- min-width: 180px !important;
1311
+ min-width: 180px;
1315
1312
  }
1316
1313
 
1317
1314
  .min-w-190px,
1318
1315
  .min-w190px {
1319
- min-width: 190px !important;
1316
+ min-width: 190px;
1320
1317
  }
1321
1318
 
1322
1319
  .min-w-200px,
1323
1320
  .min-w200px {
1324
- min-width: 200px !important;
1321
+ min-width: 200px;
1325
1322
  }
1326
1323
 
1327
1324
  .min-w-210px,
1328
1325
  .min-w210px {
1329
- min-width: 210px !important;
1326
+ min-width: 210px;
1330
1327
  }
1331
1328
 
1332
1329
  .min-w-220px,
1333
1330
  .min-w220px {
1334
- min-width: 220px !important;
1331
+ min-width: 220px;
1335
1332
  }
1336
1333
 
1337
1334
  .min-w-230px,
1338
1335
  .min-w230px {
1339
- min-width: 230px !important;
1336
+ min-width: 230px;
1340
1337
  }
1341
1338
 
1342
1339
  .min-w-240px,
1343
1340
  .min-w240px {
1344
- min-width: 240px !important;
1341
+ min-width: 240px;
1345
1342
  }
1346
1343
 
1347
1344
  .min-w-250px,
1348
1345
  .min-w250px {
1349
- min-width: 250px !important;
1346
+ min-width: 250px;
1350
1347
  }
1351
1348
 
1352
1349
  .min-w-260px,
1353
1350
  .min-w260px {
1354
- min-width: 260px !important;
1351
+ min-width: 260px;
1355
1352
  }
1356
1353
 
1357
1354
  .min-w-270px,
1358
1355
  .min-w270px {
1359
- min-width: 270px !important;
1356
+ min-width: 270px;
1360
1357
  }
1361
1358
 
1362
1359
  .min-w-280px,
1363
1360
  .min-w280px {
1364
- min-width: 280px !important;
1361
+ min-width: 280px;
1365
1362
  }
1366
1363
 
1367
1364
  .min-w-290px,
1368
1365
  .min-w290px {
1369
- min-width: 290px !important;
1366
+ min-width: 290px;
1370
1367
  }
1371
1368
 
1372
1369
  .min-w-300px,
1373
1370
  .min-w300px {
1374
- min-width: 300px !important;
1371
+ min-width: 300px;
1375
1372
  }
1376
1373
 
1377
1374
  .min-w-310px,
1378
1375
  .min-w310px {
1379
- min-width: 310px !important;
1376
+ min-width: 310px;
1380
1377
  }
1381
1378
 
1382
1379
  .min-w-320px,
1383
1380
  .min-w320px {
1384
- min-width: 320px !important;
1381
+ min-width: 320px;
1385
1382
  }
1386
1383
 
1387
1384
  .min-w-330px,
1388
1385
  .min-w330px {
1389
- min-width: 330px !important;
1386
+ min-width: 330px;
1390
1387
  }
1391
1388
 
1392
1389
  .min-w-340px,
1393
1390
  .min-w340px {
1394
- min-width: 340px !important;
1391
+ min-width: 340px;
1395
1392
  }
1396
1393
 
1397
1394
  .min-w-350px,
1398
1395
  .min-w350px {
1399
- min-width: 350px !important;
1396
+ min-width: 350px;
1400
1397
  }
1401
1398
 
1402
1399
  .min-w-360px,
1403
1400
  .min-w360px {
1404
- min-width: 360px !important;
1401
+ min-width: 360px;
1405
1402
  }
1406
1403
 
1407
1404
  .min-w-370px,
1408
1405
  .min-w370px {
1409
- min-width: 370px !important;
1406
+ min-width: 370px;
1410
1407
  }
1411
1408
 
1412
1409
  .min-w-380px,
1413
1410
  .min-w380px {
1414
- min-width: 380px !important;
1411
+ min-width: 380px;
1415
1412
  }
1416
1413
 
1417
1414
  .min-w-390px,
1418
1415
  .min-w390px {
1419
- min-width: 390px !important;
1416
+ min-width: 390px;
1420
1417
  }
1421
1418
 
1422
1419
  .min-w-400px,
1423
1420
  .min-w400px {
1424
- min-width: 400px !important;
1421
+ min-width: 400px;
1425
1422
  }
1426
1423
 
1427
1424
  .min-w-410px,
1428
1425
  .min-w410px {
1429
- min-width: 410px !important;
1426
+ min-width: 410px;
1430
1427
  }
1431
1428
 
1432
1429
  .min-w-420px,
1433
1430
  .min-w420px {
1434
- min-width: 420px !important;
1431
+ min-width: 420px;
1435
1432
  }
1436
1433
 
1437
1434
  .min-w-430px,
1438
1435
  .min-w430px {
1439
- min-width: 430px !important;
1436
+ min-width: 430px;
1440
1437
  }
1441
1438
 
1442
1439
  .min-w-440px,
1443
1440
  .min-w440px {
1444
- min-width: 440px !important;
1441
+ min-width: 440px;
1445
1442
  }
1446
1443
 
1447
1444
  .min-w-450px,
1448
1445
  .min-w450px {
1449
- min-width: 450px !important;
1446
+ min-width: 450px;
1450
1447
  }
1451
1448
 
1452
1449
  .min-w-460px,
1453
1450
  .min-w460px {
1454
- min-width: 460px !important;
1451
+ min-width: 460px;
1455
1452
  }
1456
1453
 
1457
1454
  .min-w-470px,
1458
1455
  .min-w470px {
1459
- min-width: 470px !important;
1456
+ min-width: 470px;
1460
1457
  }
1461
1458
 
1462
1459
  .min-w-480px,
1463
1460
  .min-w480px {
1464
- min-width: 480px !important;
1461
+ min-width: 480px;
1465
1462
  }
1466
1463
 
1467
1464
  .min-w-490px,
1468
1465
  .min-w490px {
1469
- min-width: 490px !important;
1466
+ min-width: 490px;
1470
1467
  }
1471
1468
 
1472
1469
  .min-w-500px,
1473
1470
  .min-w500px {
1474
- min-width: 500px !important;
1471
+ min-width: 500px;
1475
1472
  }
1476
1473
 
1477
1474
  .min-w-510px,
1478
1475
  .min-w510px {
1479
- min-width: 510px !important;
1476
+ min-width: 510px;
1480
1477
  }
1481
1478
 
1482
1479
  .min-w-520px,
1483
1480
  .min-w520px {
1484
- min-width: 520px !important;
1481
+ min-width: 520px;
1485
1482
  }
1486
1483
 
1487
1484
  .min-w-530px,
1488
1485
  .min-w530px {
1489
- min-width: 530px !important;
1486
+ min-width: 530px;
1490
1487
  }
1491
1488
 
1492
1489
  .min-w-540px,
1493
1490
  .min-w540px {
1494
- min-width: 540px !important;
1491
+ min-width: 540px;
1495
1492
  }
1496
1493
 
1497
1494
  .min-w-550px,
1498
1495
  .min-w550px {
1499
- min-width: 550px !important;
1496
+ min-width: 550px;
1500
1497
  }
1501
1498
 
1502
1499
  .min-w-560px,
1503
1500
  .min-w560px {
1504
- min-width: 560px !important;
1501
+ min-width: 560px;
1505
1502
  }
1506
1503
 
1507
1504
  .min-w-570px,
1508
1505
  .min-w570px {
1509
- min-width: 570px !important;
1506
+ min-width: 570px;
1510
1507
  }
1511
1508
 
1512
1509
  .min-w-580px,
1513
1510
  .min-w580px {
1514
- min-width: 580px !important;
1511
+ min-width: 580px;
1515
1512
  }
1516
1513
 
1517
1514
  .min-w-590px,
1518
1515
  .min-w590px {
1519
- min-width: 590px !important;
1516
+ min-width: 590px;
1520
1517
  }
1521
1518
 
1522
1519
  .min-w-600px,
1523
1520
  .min-w600px {
1524
- min-width: 600px !important;
1521
+ min-width: 600px;
1525
1522
  }
1526
1523
 
1527
1524
  .min-w-610px,
1528
1525
  .min-w610px {
1529
- min-width: 610px !important;
1526
+ min-width: 610px;
1530
1527
  }
1531
1528
 
1532
1529
  .min-w-620px,
1533
1530
  .min-w620px {
1534
- min-width: 620px !important;
1531
+ min-width: 620px;
1535
1532
  }
1536
1533
 
1537
1534
  .min-w-630px,
1538
1535
  .min-w630px {
1539
- min-width: 630px !important;
1536
+ min-width: 630px;
1540
1537
  }
1541
1538
 
1542
1539
  .min-w-640px,
1543
1540
  .min-w640px {
1544
- min-width: 640px !important;
1541
+ min-width: 640px;
1545
1542
  }
1546
1543
 
1547
1544
  .min-w-650px,
1548
1545
  .min-w650px {
1549
- min-width: 650px !important;
1546
+ min-width: 650px;
1550
1547
  }
1551
1548
 
1552
1549
  .min-w-660px,
1553
1550
  .min-w660px {
1554
- min-width: 660px !important;
1551
+ min-width: 660px;
1555
1552
  }
1556
1553
 
1557
1554
  .min-w-670px,
1558
1555
  .min-w670px {
1559
- min-width: 670px !important;
1556
+ min-width: 670px;
1560
1557
  }
1561
1558
 
1562
1559
  .min-w-680px,
1563
1560
  .min-w680px {
1564
- min-width: 680px !important;
1561
+ min-width: 680px;
1565
1562
  }
1566
1563
 
1567
1564
  .min-w-690px,
1568
1565
  .min-w690px {
1569
- min-width: 690px !important;
1566
+ min-width: 690px;
1570
1567
  }
1571
1568
 
1572
1569
  .min-w-700px,
1573
1570
  .min-w700px {
1574
- min-width: 700px !important;
1571
+ min-width: 700px;
1575
1572
  }
1576
1573
 
1577
1574
  .min-w-710px,
1578
1575
  .min-w710px {
1579
- min-width: 710px !important;
1576
+ min-width: 710px;
1580
1577
  }
1581
1578
 
1582
1579
  .min-w-720px,
1583
1580
  .min-w720px {
1584
- min-width: 720px !important;
1581
+ min-width: 720px;
1585
1582
  }
1586
1583
 
1587
1584
  .min-w-730px,
1588
1585
  .min-w730px {
1589
- min-width: 730px !important;
1586
+ min-width: 730px;
1590
1587
  }
1591
1588
 
1592
1589
  .min-w-740px,
1593
1590
  .min-w740px {
1594
- min-width: 740px !important;
1591
+ min-width: 740px;
1595
1592
  }
1596
1593
 
1597
1594
  .min-w-750px,
1598
1595
  .min-w750px {
1599
- min-width: 750px !important;
1596
+ min-width: 750px;
1600
1597
  }
1601
1598
 
1602
1599
  .min-w-760px,
1603
1600
  .min-w760px {
1604
- min-width: 760px !important;
1601
+ min-width: 760px;
1605
1602
  }
1606
1603
 
1607
1604
  .min-w-770px,
1608
1605
  .min-w770px {
1609
- min-width: 770px !important;
1606
+ min-width: 770px;
1610
1607
  }
1611
1608
 
1612
1609
  .min-w-780px,
1613
1610
  .min-w780px {
1614
- min-width: 780px !important;
1611
+ min-width: 780px;
1615
1612
  }
1616
1613
 
1617
1614
  .min-w-790px,
1618
1615
  .min-w790px {
1619
- min-width: 790px !important;
1616
+ min-width: 790px;
1620
1617
  }
1621
1618
 
1622
1619
  .min-w-800px,
1623
1620
  .min-w800px {
1624
- min-width: 800px !important;
1621
+ min-width: 800px;
1625
1622
  }
1626
1623
 
1627
1624
  .min-w-810px,
1628
1625
  .min-w810px {
1629
- min-width: 810px !important;
1626
+ min-width: 810px;
1630
1627
  }
1631
1628
 
1632
1629
  .min-w-820px,
1633
1630
  .min-w820px {
1634
- min-width: 820px !important;
1631
+ min-width: 820px;
1635
1632
  }
1636
1633
 
1637
1634
  .min-w-830px,
1638
1635
  .min-w830px {
1639
- min-width: 830px !important;
1636
+ min-width: 830px;
1640
1637
  }
1641
1638
 
1642
1639
  .min-w-840px,
1643
1640
  .min-w840px {
1644
- min-width: 840px !important;
1641
+ min-width: 840px;
1645
1642
  }
1646
1643
 
1647
1644
  .min-w-850px,
1648
1645
  .min-w850px {
1649
- min-width: 850px !important;
1646
+ min-width: 850px;
1650
1647
  }
1651
1648
 
1652
1649
  .min-w-860px,
1653
1650
  .min-w860px {
1654
- min-width: 860px !important;
1651
+ min-width: 860px;
1655
1652
  }
1656
1653
 
1657
1654
  .min-w-870px,
1658
1655
  .min-w870px {
1659
- min-width: 870px !important;
1656
+ min-width: 870px;
1660
1657
  }
1661
1658
 
1662
1659
  .min-w-880px,
1663
1660
  .min-w880px {
1664
- min-width: 880px !important;
1661
+ min-width: 880px;
1665
1662
  }
1666
1663
 
1667
1664
  .min-w-890px,
1668
1665
  .min-w890px {
1669
- min-width: 890px !important;
1666
+ min-width: 890px;
1670
1667
  }
1671
1668
 
1672
1669
  .min-w-900px,
1673
1670
  .min-w900px {
1674
- min-width: 900px !important;
1671
+ min-width: 900px;
1675
1672
  }
1676
1673
 
1677
1674
  .min-w-910px,
1678
1675
  .min-w910px {
1679
- min-width: 910px !important;
1676
+ min-width: 910px;
1680
1677
  }
1681
1678
 
1682
1679
  .min-w-920px,
1683
1680
  .min-w920px {
1684
- min-width: 920px !important;
1681
+ min-width: 920px;
1685
1682
  }
1686
1683
 
1687
1684
  .min-w-930px,
1688
1685
  .min-w930px {
1689
- min-width: 930px !important;
1686
+ min-width: 930px;
1690
1687
  }
1691
1688
 
1692
1689
  .min-w-940px,
1693
1690
  .min-w940px {
1694
- min-width: 940px !important;
1691
+ min-width: 940px;
1695
1692
  }
1696
1693
 
1697
1694
  .min-w-950px,
1698
1695
  .min-w950px {
1699
- min-width: 950px !important;
1696
+ min-width: 950px;
1700
1697
  }
1701
1698
 
1702
1699
  .min-w-960px,
1703
1700
  .min-w960px {
1704
- min-width: 960px !important;
1701
+ min-width: 960px;
1705
1702
  }
1706
1703
 
1707
1704
  .min-w-970px,
1708
1705
  .min-w970px {
1709
- min-width: 970px !important;
1706
+ min-width: 970px;
1710
1707
  }
1711
1708
 
1712
1709
  .min-w-980px,
1713
1710
  .min-w980px {
1714
- min-width: 980px !important;
1711
+ min-width: 980px;
1715
1712
  }
1716
1713
 
1717
1714
  .min-w-990px,
1718
1715
  .min-w990px {
1719
- min-width: 990px !important;
1716
+ min-width: 990px;
1720
1717
  }
1721
1718
 
1722
1719
  .min-w-1000px,
1723
1720
  .min-w1000px {
1724
- min-width: 1000px !important;
1721
+ min-width: 1000px;
1725
1722
  }
1726
1723
 
1727
1724
  .min-w-1050px,
1728
1725
  .min-w1050px {
1729
- min-width: 1050px !important;
1726
+ min-width: 1050px;
1730
1727
  }
1731
1728
 
1732
1729
  .min-w-1100px,
1733
1730
  .min-w1100px {
1734
- min-width: 1100px !important;
1731
+ min-width: 1100px;
1735
1732
  }
1736
1733
 
1737
1734
  .min-w-1150px,
1738
1735
  .min-w1150px {
1739
- min-width: 1150px !important;
1736
+ min-width: 1150px;
1740
1737
  }
1741
1738
 
1742
1739
  .min-w-1200px,
1743
1740
  .min-w1200px {
1744
- min-width: 1200px !important;
1741
+ min-width: 1200px;
1745
1742
  }
1746
1743
 
1747
1744
  .min-w-1250px,
1748
1745
  .min-w1250px {
1749
- min-width: 1250px !important;
1746
+ min-width: 1250px;
1750
1747
  }
1751
1748
 
1752
1749
  .min-w-1300px,
1753
1750
  .min-w1300px {
1754
- min-width: 1300px !important;
1751
+ min-width: 1300px;
1755
1752
  }
1756
1753
 
1757
1754
  .min-w-1350px,
1758
1755
  .min-w1350px {
1759
- min-width: 1350px !important;
1756
+ min-width: 1350px;
1760
1757
  }
1761
1758
 
1762
1759
  .min-w-1400px,
1763
1760
  .min-w1400px {
1764
- min-width: 1400px !important;
1761
+ min-width: 1400px;
1765
1762
  }
1766
1763
 
1767
1764
  .min-w-1450px,
1768
1765
  .min-w1450px {
1769
- min-width: 1450px !important;
1766
+ min-width: 1450px;
1770
1767
  }
1771
1768
 
1772
1769
  .min-w-1500px,
1773
1770
  .min-w1500px {
1774
- min-width: 1500px !important;
1771
+ min-width: 1500px;
1775
1772
  }
1776
1773
 
1777
1774
  .min-w-1550px,
1778
1775
  .min-w1550px {
1779
- min-width: 1550px !important;
1776
+ min-width: 1550px;
1780
1777
  }
1781
1778
 
1782
1779
  .min-w-1600px,
1783
1780
  .min-w1600px {
1784
- min-width: 1600px !important;
1781
+ min-width: 1600px;
1785
1782
  }
1786
1783
 
1787
1784
  .w-300px,
@@ -1846,674 +1843,674 @@
1846
1843
  .w1550px,
1847
1844
  .w-1600px,
1848
1845
  .w1600px {
1849
- margin-inline-start: auto !important;
1850
- margin-inline-end: auto !important;
1851
- width: 98% !important;
1846
+ margin-inline-start: auto;
1847
+ margin-inline-end: auto;
1848
+ width: 98%;
1852
1849
  }
1853
1850
 
1854
1851
  .w-1px,
1855
1852
  .w1px {
1856
- max-width: 1px !important;
1853
+ max-width: 1px;
1857
1854
  }
1858
1855
 
1859
1856
  .w-2px,
1860
1857
  .w2px {
1861
- max-width: 2px !important;
1858
+ max-width: 2px;
1862
1859
  }
1863
1860
 
1864
1861
  .w-3px,
1865
1862
  .w3px {
1866
- max-width: 3px !important;
1863
+ max-width: 3px;
1867
1864
  }
1868
1865
 
1869
1866
  .w-4px,
1870
1867
  .w4px {
1871
- max-width: 4px !important;
1868
+ max-width: 4px;
1872
1869
  }
1873
1870
 
1874
1871
  .w-5px,
1875
1872
  .w5px {
1876
- max-width: 5px !important;
1873
+ max-width: 5px;
1877
1874
  }
1878
1875
 
1879
1876
  .w-6px,
1880
1877
  .w6px {
1881
- max-width: 6px !important;
1878
+ max-width: 6px;
1882
1879
  }
1883
1880
 
1884
1881
  .w-7px,
1885
1882
  .w7px {
1886
- max-width: 7px !important;
1883
+ max-width: 7px;
1887
1884
  }
1888
1885
 
1889
1886
  .w-8px,
1890
1887
  .w8px {
1891
- max-width: 8px !important;
1888
+ max-width: 8px;
1892
1889
  }
1893
1890
 
1894
1891
  .w-9px,
1895
1892
  .w9px {
1896
- max-width: 9px !important;
1893
+ max-width: 9px;
1897
1894
  }
1898
1895
 
1899
1896
  .w-10px,
1900
1897
  .w10px {
1901
- max-width: 10px !important;
1898
+ max-width: 10px;
1902
1899
  }
1903
1900
 
1904
1901
  .w-20px,
1905
1902
  .w20px {
1906
- max-width: 20px !important;
1903
+ max-width: 20px;
1907
1904
  }
1908
1905
 
1909
1906
  .w-30px,
1910
1907
  .w30px {
1911
- max-width: 30px !important;
1908
+ max-width: 30px;
1912
1909
  }
1913
1910
 
1914
1911
  .w-40px,
1915
1912
  .w40px {
1916
- max-width: 40px !important;
1913
+ max-width: 40px;
1917
1914
  }
1918
1915
 
1919
1916
  .w-50px,
1920
1917
  .w50px {
1921
- max-width: 50px !important;
1918
+ max-width: 50px;
1922
1919
  }
1923
1920
 
1924
1921
  .w-60px,
1925
1922
  .w60px {
1926
- max-width: 60px !important;
1923
+ max-width: 60px;
1927
1924
  }
1928
1925
 
1929
1926
  .w-70px,
1930
1927
  .w70px {
1931
- max-width: 70px !important;
1928
+ max-width: 70px;
1932
1929
  }
1933
1930
 
1934
1931
  .w-80px,
1935
1932
  .w80px {
1936
- max-width: 80px !important;
1933
+ max-width: 80px;
1937
1934
  }
1938
1935
 
1939
1936
  .w-90px,
1940
1937
  .w90px {
1941
- max-width: 90px !important;
1938
+ max-width: 90px;
1942
1939
  }
1943
1940
 
1944
1941
  .w-100px,
1945
1942
  .w100px {
1946
- max-width: 100px !important;
1943
+ max-width: 100px;
1947
1944
  }
1948
1945
 
1949
1946
  .w-110px,
1950
1947
  .w110px {
1951
- max-width: 110px !important;
1948
+ max-width: 110px;
1952
1949
  }
1953
1950
 
1954
1951
  .w-120px,
1955
1952
  .w120px {
1956
- max-width: 120px !important;
1953
+ max-width: 120px;
1957
1954
  }
1958
1955
 
1959
1956
  .w-130px,
1960
1957
  .w130px {
1961
- max-width: 130px !important;
1958
+ max-width: 130px;
1962
1959
  }
1963
1960
 
1964
1961
  .w-140px,
1965
1962
  .w140px {
1966
- max-width: 140px !important;
1963
+ max-width: 140px;
1967
1964
  }
1968
1965
 
1969
1966
  .w-150px,
1970
1967
  .w150px {
1971
- max-width: 150px !important;
1968
+ max-width: 150px;
1972
1969
  }
1973
1970
 
1974
1971
  .w-160px,
1975
1972
  .w160px {
1976
- max-width: 160px !important;
1973
+ max-width: 160px;
1977
1974
  }
1978
1975
 
1979
1976
  .w-170px,
1980
1977
  .w170px {
1981
- max-width: 170px !important;
1978
+ max-width: 170px;
1982
1979
  }
1983
1980
 
1984
1981
  .w-180px,
1985
1982
  .w180px {
1986
- max-width: 180px !important;
1983
+ max-width: 180px;
1987
1984
  }
1988
1985
 
1989
1986
  .w-190px,
1990
1987
  .w190px {
1991
- max-width: 190px !important;
1988
+ max-width: 190px;
1992
1989
  }
1993
1990
 
1994
1991
  .w-200px,
1995
1992
  .w200px {
1996
- max-width: 200px !important;
1993
+ max-width: 200px;
1997
1994
  }
1998
1995
 
1999
1996
  .w-210px,
2000
1997
  .w210px {
2001
- max-width: 210px !important;
1998
+ max-width: 210px;
2002
1999
  }
2003
2000
 
2004
2001
  .w-220px,
2005
2002
  .w220px {
2006
- max-width: 220px !important;
2003
+ max-width: 220px;
2007
2004
  }
2008
2005
 
2009
2006
  .w-230px,
2010
2007
  .w230px {
2011
- max-width: 230px !important;
2008
+ max-width: 230px;
2012
2009
  }
2013
2010
 
2014
2011
  .w-240px,
2015
2012
  .w240px {
2016
- max-width: 240px !important;
2013
+ max-width: 240px;
2017
2014
  }
2018
2015
 
2019
2016
  .w-250px,
2020
2017
  .w250px {
2021
- max-width: 250px !important;
2018
+ max-width: 250px;
2022
2019
  }
2023
2020
 
2024
2021
  .w-260px,
2025
2022
  .w260px {
2026
- max-width: 260px !important;
2023
+ max-width: 260px;
2027
2024
  }
2028
2025
 
2029
2026
  .w-270px,
2030
2027
  .w270px {
2031
- max-width: 270px !important;
2028
+ max-width: 270px;
2032
2029
  }
2033
2030
 
2034
2031
  .w-280px,
2035
2032
  .w280px {
2036
- max-width: 280px !important;
2033
+ max-width: 280px;
2037
2034
  }
2038
2035
 
2039
2036
  .w-290px,
2040
2037
  .w290px {
2041
- max-width: 290px !important;
2038
+ max-width: 290px;
2042
2039
  }
2043
2040
 
2044
2041
  .w-300px,
2045
2042
  .w300px {
2046
- max-width: 300px !important;
2043
+ max-width: 300px;
2047
2044
  }
2048
2045
 
2049
2046
  .w-310px,
2050
2047
  .w310px {
2051
- max-width: 310px !important;
2048
+ max-width: 310px;
2052
2049
  }
2053
2050
 
2054
2051
  .w-320px,
2055
2052
  .w320px {
2056
- max-width: 320px !important;
2053
+ max-width: 320px;
2057
2054
  }
2058
2055
 
2059
2056
  .w-330px,
2060
2057
  .w330px {
2061
- max-width: 330px !important;
2058
+ max-width: 330px;
2062
2059
  }
2063
2060
 
2064
2061
  .w-340px,
2065
2062
  .w340px {
2066
- max-width: 340px !important;
2063
+ max-width: 340px;
2067
2064
  }
2068
2065
 
2069
2066
  .w-350px,
2070
2067
  .w350px {
2071
- max-width: 350px !important;
2068
+ max-width: 350px;
2072
2069
  }
2073
2070
 
2074
2071
  .w-360px,
2075
2072
  .w360px {
2076
- max-width: 360px !important;
2073
+ max-width: 360px;
2077
2074
  }
2078
2075
 
2079
2076
  .w-370px,
2080
2077
  .w370px {
2081
- max-width: 370px !important;
2078
+ max-width: 370px;
2082
2079
  }
2083
2080
 
2084
2081
  .w-380px,
2085
2082
  .w380px {
2086
- max-width: 380px !important;
2083
+ max-width: 380px;
2087
2084
  }
2088
2085
 
2089
2086
  .w-390px,
2090
2087
  .w390px {
2091
- max-width: 390px !important;
2088
+ max-width: 390px;
2092
2089
  }
2093
2090
 
2094
2091
  .w-400px,
2095
2092
  .w400px {
2096
- max-width: 400px !important;
2093
+ max-width: 400px;
2097
2094
  }
2098
2095
 
2099
2096
  .w-410px,
2100
2097
  .w410px {
2101
- max-width: 410px !important;
2098
+ max-width: 410px;
2102
2099
  }
2103
2100
 
2104
2101
  .w-420px,
2105
2102
  .w420px {
2106
- max-width: 420px !important;
2103
+ max-width: 420px;
2107
2104
  }
2108
2105
 
2109
2106
  .w-430px,
2110
2107
  .w430px {
2111
- max-width: 430px !important;
2108
+ max-width: 430px;
2112
2109
  }
2113
2110
 
2114
2111
  .w-440px,
2115
2112
  .w440px {
2116
- max-width: 440px !important;
2113
+ max-width: 440px;
2117
2114
  }
2118
2115
 
2119
2116
  .w-450px,
2120
2117
  .w450px {
2121
- max-width: 450px !important;
2118
+ max-width: 450px;
2122
2119
  }
2123
2120
 
2124
2121
  .w-460px,
2125
2122
  .w460px {
2126
- max-width: 460px !important;
2123
+ max-width: 460px;
2127
2124
  }
2128
2125
 
2129
2126
  .w-470px,
2130
2127
  .w470px {
2131
- max-width: 470px !important;
2128
+ max-width: 470px;
2132
2129
  }
2133
2130
 
2134
2131
  .w-480px,
2135
2132
  .w480px {
2136
- max-width: 480px !important;
2133
+ max-width: 480px;
2137
2134
  }
2138
2135
 
2139
2136
  .w-490px,
2140
2137
  .w490px {
2141
- max-width: 490px !important;
2138
+ max-width: 490px;
2142
2139
  }
2143
2140
 
2144
2141
  .w-500px,
2145
2142
  .w500px {
2146
- max-width: 500px !important;
2143
+ max-width: 500px;
2147
2144
  }
2148
2145
 
2149
2146
  .w-510px,
2150
2147
  .w510px {
2151
- max-width: 510px !important;
2148
+ max-width: 510px;
2152
2149
  }
2153
2150
 
2154
2151
  .w-520px,
2155
2152
  .w520px {
2156
- max-width: 520px !important;
2153
+ max-width: 520px;
2157
2154
  }
2158
2155
 
2159
2156
  .w-530px,
2160
2157
  .w530px {
2161
- max-width: 530px !important;
2158
+ max-width: 530px;
2162
2159
  }
2163
2160
 
2164
2161
  .w-540px,
2165
2162
  .w540px {
2166
- max-width: 540px !important;
2163
+ max-width: 540px;
2167
2164
  }
2168
2165
 
2169
2166
  .w-550px,
2170
2167
  .w550px {
2171
- max-width: 550px !important;
2168
+ max-width: 550px;
2172
2169
  }
2173
2170
 
2174
2171
  .w-560px,
2175
2172
  .w560px {
2176
- max-width: 560px !important;
2173
+ max-width: 560px;
2177
2174
  }
2178
2175
 
2179
2176
  .w-570px,
2180
2177
  .w570px {
2181
- max-width: 570px !important;
2178
+ max-width: 570px;
2182
2179
  }
2183
2180
 
2184
2181
  .w-580px,
2185
2182
  .w580px {
2186
- max-width: 580px !important;
2183
+ max-width: 580px;
2187
2184
  }
2188
2185
 
2189
2186
  .w-590px,
2190
2187
  .w590px {
2191
- max-width: 590px !important;
2188
+ max-width: 590px;
2192
2189
  }
2193
2190
 
2194
2191
  .w-600px,
2195
2192
  .w600px {
2196
- max-width: 600px !important;
2193
+ max-width: 600px;
2197
2194
  }
2198
2195
 
2199
2196
  .w-610px,
2200
2197
  .w610px {
2201
- max-width: 610px !important;
2198
+ max-width: 610px;
2202
2199
  }
2203
2200
 
2204
2201
  .w-620px,
2205
2202
  .w620px {
2206
- max-width: 620px !important;
2203
+ max-width: 620px;
2207
2204
  }
2208
2205
 
2209
2206
  .w-630px,
2210
2207
  .w630px {
2211
- max-width: 630px !important;
2208
+ max-width: 630px;
2212
2209
  }
2213
2210
 
2214
2211
  .w-640px,
2215
2212
  .w640px {
2216
- max-width: 640px !important;
2213
+ max-width: 640px;
2217
2214
  }
2218
2215
 
2219
2216
  .w-650px,
2220
2217
  .w650px {
2221
- max-width: 650px !important;
2218
+ max-width: 650px;
2222
2219
  }
2223
2220
 
2224
2221
  .w-660px,
2225
2222
  .w660px {
2226
- max-width: 660px !important;
2223
+ max-width: 660px;
2227
2224
  }
2228
2225
 
2229
2226
  .w-670px,
2230
2227
  .w670px {
2231
- max-width: 670px !important;
2228
+ max-width: 670px;
2232
2229
  }
2233
2230
 
2234
2231
  .w-680px,
2235
2232
  .w680px {
2236
- max-width: 680px !important;
2233
+ max-width: 680px;
2237
2234
  }
2238
2235
 
2239
2236
  .w-690px,
2240
2237
  .w690px {
2241
- max-width: 690px !important;
2238
+ max-width: 690px;
2242
2239
  }
2243
2240
 
2244
2241
  .w-700px,
2245
2242
  .w700px {
2246
- max-width: 700px !important;
2243
+ max-width: 700px;
2247
2244
  }
2248
2245
 
2249
2246
  .w-710px,
2250
2247
  .w710px {
2251
- max-width: 710px !important;
2248
+ max-width: 710px;
2252
2249
  }
2253
2250
 
2254
2251
  .w-720px,
2255
2252
  .w720px {
2256
- max-width: 720px !important;
2253
+ max-width: 720px;
2257
2254
  }
2258
2255
 
2259
2256
  .w-730px,
2260
2257
  .w730px {
2261
- max-width: 730px !important;
2258
+ max-width: 730px;
2262
2259
  }
2263
2260
 
2264
2261
  .w-740px,
2265
2262
  .w740px {
2266
- max-width: 740px !important;
2263
+ max-width: 740px;
2267
2264
  }
2268
2265
 
2269
2266
  .w-750px,
2270
2267
  .w750px {
2271
- max-width: 750px !important;
2268
+ max-width: 750px;
2272
2269
  }
2273
2270
 
2274
2271
  .w-760px,
2275
2272
  .w760px {
2276
- max-width: 760px !important;
2273
+ max-width: 760px;
2277
2274
  }
2278
2275
 
2279
2276
  .w-770px,
2280
2277
  .w770px {
2281
- max-width: 770px !important;
2278
+ max-width: 770px;
2282
2279
  }
2283
2280
 
2284
2281
  .w-780px,
2285
2282
  .w780px {
2286
- max-width: 780px !important;
2283
+ max-width: 780px;
2287
2284
  }
2288
2285
 
2289
2286
  .w-790px,
2290
2287
  .w790px {
2291
- max-width: 790px !important;
2288
+ max-width: 790px;
2292
2289
  }
2293
2290
 
2294
2291
  .w-800px,
2295
2292
  .w800px {
2296
- max-width: 800px !important;
2293
+ max-width: 800px;
2297
2294
  }
2298
2295
 
2299
2296
  .w-810px,
2300
2297
  .w810px {
2301
- max-width: 810px !important;
2298
+ max-width: 810px;
2302
2299
  }
2303
2300
 
2304
2301
  .w-820px,
2305
2302
  .w820px {
2306
- max-width: 820px !important;
2303
+ max-width: 820px;
2307
2304
  }
2308
2305
 
2309
2306
  .w-830px,
2310
2307
  .w830px {
2311
- max-width: 830px !important;
2308
+ max-width: 830px;
2312
2309
  }
2313
2310
 
2314
2311
  .w-840px,
2315
2312
  .w840px {
2316
- max-width: 840px !important;
2313
+ max-width: 840px;
2317
2314
  }
2318
2315
 
2319
2316
  .w-850px,
2320
2317
  .w850px {
2321
- max-width: 850px !important;
2318
+ max-width: 850px;
2322
2319
  }
2323
2320
 
2324
2321
  .w-860px,
2325
2322
  .w860px {
2326
- max-width: 860px !important;
2323
+ max-width: 860px;
2327
2324
  }
2328
2325
 
2329
2326
  .w-870px,
2330
2327
  .w870px {
2331
- max-width: 870px !important;
2328
+ max-width: 870px;
2332
2329
  }
2333
2330
 
2334
2331
  .w-880px,
2335
2332
  .w880px {
2336
- max-width: 880px !important;
2333
+ max-width: 880px;
2337
2334
  }
2338
2335
 
2339
2336
  .w-890px,
2340
2337
  .w890px {
2341
- max-width: 890px !important;
2338
+ max-width: 890px;
2342
2339
  }
2343
2340
 
2344
2341
  .w-900px,
2345
2342
  .w900px {
2346
- max-width: 900px !important;
2343
+ max-width: 900px;
2347
2344
  }
2348
2345
 
2349
2346
  .w-910px,
2350
2347
  .w910px {
2351
- max-width: 910px !important;
2348
+ max-width: 910px;
2352
2349
  }
2353
2350
 
2354
2351
  .w-920px,
2355
2352
  .w920px {
2356
- max-width: 920px !important;
2353
+ max-width: 920px;
2357
2354
  }
2358
2355
 
2359
2356
  .w-930px,
2360
2357
  .w930px {
2361
- max-width: 930px !important;
2358
+ max-width: 930px;
2362
2359
  }
2363
2360
 
2364
2361
  .w-940px,
2365
2362
  .w940px {
2366
- max-width: 940px !important;
2363
+ max-width: 940px;
2367
2364
  }
2368
2365
 
2369
2366
  .w-950px,
2370
2367
  .w950px {
2371
- max-width: 950px !important;
2368
+ max-width: 950px;
2372
2369
  }
2373
2370
 
2374
2371
  .w-960px,
2375
2372
  .w960px {
2376
- max-width: 960px !important;
2373
+ max-width: 960px;
2377
2374
  }
2378
2375
 
2379
2376
  .w-970px,
2380
2377
  .w970px {
2381
- max-width: 970px !important;
2378
+ max-width: 970px;
2382
2379
  }
2383
2380
 
2384
2381
  .w-980px,
2385
2382
  .w980px {
2386
- max-width: 980px !important;
2383
+ max-width: 980px;
2387
2384
  }
2388
2385
 
2389
2386
  .w-990px,
2390
2387
  .w990px {
2391
- max-width: 990px !important;
2388
+ max-width: 990px;
2392
2389
  }
2393
2390
 
2394
2391
  .w-1000px,
2395
2392
  .w1000px {
2396
- max-width: 1000px !important;
2393
+ max-width: 1000px;
2397
2394
  }
2398
2395
 
2399
2396
  .w-1030px,
2400
2397
  .w1030px {
2401
- max-width: 1030px !important;
2398
+ max-width: 1030px;
2402
2399
  }
2403
2400
 
2404
2401
  .w-1050px,
2405
2402
  .w1050px {
2406
- max-width: 1050px !important;
2403
+ max-width: 1050px;
2407
2404
  }
2408
2405
 
2409
2406
  .w-1100px,
2410
2407
  .w1100px {
2411
- max-width: 1100px !important;
2408
+ max-width: 1100px;
2412
2409
  }
2413
2410
 
2414
2411
  .w-1150px,
2415
2412
  .w1150px {
2416
- max-width: 1150px !important;
2413
+ max-width: 1150px;
2417
2414
  }
2418
2415
 
2419
2416
  .w-1170px,
2420
2417
  .w1170px {
2421
- max-width: 1170px !important;
2418
+ max-width: 1170px;
2422
2419
  }
2423
2420
 
2424
2421
  .w-1200px,
2425
2422
  .w1200px {
2426
- max-width: 1200px !important;
2423
+ max-width: 1200px;
2427
2424
  }
2428
2425
 
2429
2426
  .w-1250px,
2430
2427
  .w1250px {
2431
- max-width: 1250px !important;
2428
+ max-width: 1250px;
2432
2429
  }
2433
2430
 
2434
2431
  .w-1300px,
2435
2432
  .w1300px {
2436
- max-width: 1300px !important;
2433
+ max-width: 1300px;
2437
2434
  }
2438
2435
 
2439
2436
  .w-1350px,
2440
2437
  .w1350px {
2441
- max-width: 1350px !important;
2438
+ max-width: 1350px;
2442
2439
  }
2443
2440
 
2444
2441
  .w-1400px,
2445
2442
  .w1400px {
2446
- max-width: 1400px !important;
2443
+ max-width: 1400px;
2447
2444
  }
2448
2445
 
2449
2446
  .w-1450px,
2450
2447
  .w1450px {
2451
- max-width: 1450px !important;
2448
+ max-width: 1450px;
2452
2449
  }
2453
2450
 
2454
2451
  .w-1500px,
2455
2452
  .w1500px {
2456
- max-width: 1500px !important;
2453
+ max-width: 1500px;
2457
2454
  }
2458
2455
 
2459
2456
  .w-1550px,
2460
2457
  .w1550px {
2461
- max-width: 1550px !important;
2458
+ max-width: 1550px;
2462
2459
  }
2463
2460
 
2464
2461
  .w-1600px,
2465
2462
  .w1600px {
2466
- max-width: 1600px !important;
2463
+ max-width: 1600px;
2467
2464
  }
2468
2465
 
2469
2466
  .w-10vw,
2470
2467
  .w10vw {
2471
- width: 10vw !important;
2468
+ width: 10vw;
2472
2469
  }
2473
2470
 
2474
2471
  .w-20vw,
2475
2472
  .w20vw {
2476
- width: 20vw !important;
2473
+ width: 20vw;
2477
2474
  }
2478
2475
 
2479
2476
  .w-30vw,
2480
2477
  .w30vw {
2481
- width: 30vw !important;
2478
+ width: 30vw;
2482
2479
  }
2483
2480
 
2484
2481
  .w-40vw,
2485
2482
  .w40vw {
2486
- width: 40vw !important;
2483
+ width: 40vw;
2487
2484
  }
2488
2485
 
2489
2486
  .w-50vw,
2490
2487
  .w50vw {
2491
- width: 50vw !important;
2488
+ width: 50vw;
2492
2489
  }
2493
2490
 
2494
2491
  .w-60vw,
2495
2492
  .w60vw {
2496
- width: 60vw !important;
2493
+ width: 60vw;
2497
2494
  }
2498
2495
 
2499
2496
  .w-70vw,
2500
2497
  .w70vw {
2501
- width: 70vw !important;
2498
+ width: 70vw;
2502
2499
  }
2503
2500
 
2504
2501
  .w-80vw,
2505
2502
  .w80vw {
2506
- width: 80vw !important;
2503
+ width: 80vw;
2507
2504
  }
2508
2505
 
2509
2506
  .w-90vw,
2510
2507
  .w90vw {
2511
- width: 90vw !important;
2508
+ width: 90vw;
2512
2509
  }
2513
2510
 
2514
2511
  .w-100vw,
2515
2512
  .w100vw {
2516
- width: 100vw !important;
2513
+ width: 100vw;
2517
2514
  }
2518
2515
 
2519
2516
  .h-10,
@@ -2534,53 +2531,53 @@
2534
2531
  }
2535
2532
 
2536
2533
  .max-h-10p {
2537
- max-height: 10% !important;
2534
+ max-height: 10%;
2538
2535
  }
2539
2536
 
2540
2537
  .max-h-20p {
2541
- max-height: 20% !important;
2538
+ max-height: 20%;
2542
2539
  }
2543
2540
 
2544
2541
  .max-h-30p {
2545
- max-height: 30% !important;
2542
+ max-height: 30%;
2546
2543
  }
2547
2544
 
2548
2545
  .max-h-40p {
2549
- max-height: 40% !important;
2546
+ max-height: 40%;
2550
2547
  }
2551
2548
 
2552
2549
  .max-h-50p {
2553
- max-height: 50% !important;
2550
+ max-height: 50%;
2554
2551
  }
2555
2552
 
2556
2553
  .max-h-60p {
2557
- max-height: 60% !important;
2554
+ max-height: 60%;
2558
2555
  }
2559
2556
 
2560
2557
  .max-h-70p {
2561
- max-height: 70% !important;
2558
+ max-height: 70%;
2562
2559
  }
2563
2560
 
2564
2561
  .max-h-80p {
2565
- max-height: 80% !important;
2562
+ max-height: 80%;
2566
2563
  }
2567
2564
 
2568
2565
  .max-h-90p {
2569
- max-height: 90% !important;
2566
+ max-height: 90%;
2570
2567
  }
2571
2568
 
2572
2569
  .max-h-100p {
2573
- max-height: 100% !important;
2570
+ max-height: 100%;
2574
2571
  }
2575
2572
 
2576
2573
  .max-h-10px,
2577
2574
  .max-h10px {
2578
- max-height: 10px !important;
2575
+ max-height: 10px;
2579
2576
  }
2580
2577
 
2581
2578
  .min-h-10px,
2582
2579
  .min-h10px {
2583
- min-height: 10px !important;
2580
+ min-height: 10px;
2584
2581
  }
2585
2582
 
2586
2583
  .h-20,
@@ -2602,12 +2599,12 @@
2602
2599
 
2603
2600
  .max-h-20px,
2604
2601
  .max-h20px {
2605
- max-height: 20px !important;
2602
+ max-height: 20px;
2606
2603
  }
2607
2604
 
2608
2605
  .min-h-20px,
2609
2606
  .min-h20px {
2610
- min-height: 20px !important;
2607
+ min-height: 20px;
2611
2608
  }
2612
2609
 
2613
2610
  .h-30,
@@ -2634,12 +2631,12 @@
2634
2631
 
2635
2632
  .max-h-30px,
2636
2633
  .max-h30px {
2637
- max-height: 30px !important;
2634
+ max-height: 30px;
2638
2635
  }
2639
2636
 
2640
2637
  .min-h-30px,
2641
2638
  .min-h30px {
2642
- min-height: 30px !important;
2639
+ min-height: 30px;
2643
2640
  }
2644
2641
 
2645
2642
  .h-40,
@@ -2661,12 +2658,12 @@
2661
2658
 
2662
2659
  .max-h-40px,
2663
2660
  .max-h40px {
2664
- max-height: 40px !important;
2661
+ max-height: 40px;
2665
2662
  }
2666
2663
 
2667
2664
  .min-h-40px,
2668
2665
  .min-h40px {
2669
- min-height: 40px !important;
2666
+ min-height: 40px;
2670
2667
  }
2671
2668
 
2672
2669
  .h-50,
@@ -2688,12 +2685,12 @@
2688
2685
 
2689
2686
  .max-h-50px,
2690
2687
  .max-h50px {
2691
- max-height: 50px !important;
2688
+ max-height: 50px;
2692
2689
  }
2693
2690
 
2694
2691
  .min-h-50px,
2695
2692
  .min-h50px {
2696
- min-height: 50px !important;
2693
+ min-height: 50px;
2697
2694
  }
2698
2695
 
2699
2696
  .h-60,
@@ -2715,12 +2712,12 @@
2715
2712
 
2716
2713
  .max-h-60px,
2717
2714
  .max-h60px {
2718
- max-height: 60px !important;
2715
+ max-height: 60px;
2719
2716
  }
2720
2717
 
2721
2718
  .min-h-60px,
2722
2719
  .min-h60px {
2723
- min-height: 60px !important;
2720
+ min-height: 60px;
2724
2721
  }
2725
2722
 
2726
2723
  .h-70,
@@ -2742,12 +2739,12 @@
2742
2739
 
2743
2740
  .max-h-70px,
2744
2741
  .max-h70px {
2745
- max-height: 70px !important;
2742
+ max-height: 70px;
2746
2743
  }
2747
2744
 
2748
2745
  .min-h-70px,
2749
2746
  .min-h70px {
2750
- min-height: 70px !important;
2747
+ min-height: 70px;
2751
2748
  }
2752
2749
 
2753
2750
  .h-80,
@@ -2769,12 +2766,12 @@
2769
2766
 
2770
2767
  .max-h-80px,
2771
2768
  .max-h80px {
2772
- max-height: 80px !important;
2769
+ max-height: 80px;
2773
2770
  }
2774
2771
 
2775
2772
  .min-h-80px,
2776
2773
  .min-h80px {
2777
- min-height: 80px !important;
2774
+ min-height: 80px;
2778
2775
  }
2779
2776
 
2780
2777
  .h-90,
@@ -2796,12 +2793,12 @@
2796
2793
 
2797
2794
  .max-h-90px,
2798
2795
  .max-h90px {
2799
- max-height: 90px !important;
2796
+ max-height: 90px;
2800
2797
  }
2801
2798
 
2802
2799
  .min-h-90px,
2803
2800
  .min-h90px {
2804
- min-height: 90px !important;
2801
+ min-height: 90px;
2805
2802
  }
2806
2803
 
2807
2804
  .h-100,
@@ -2828,11 +2825,11 @@
2828
2825
 
2829
2826
  .max-h-100px,
2830
2827
  .max-h100px {
2831
- max-height: 100px !important;
2828
+ max-height: 100px;
2832
2829
  }
2833
2830
 
2834
2831
  .max-h-100p {
2835
- max-height: 100% !important;
2832
+ max-height: 100%;
2836
2833
  }
2837
2834
 
2838
2835
  .max-h-100vh,
@@ -2840,9 +2837,10 @@
2840
2837
  max-height: 100vh !important;
2841
2838
  }
2842
2839
 
2840
+
2843
2841
  .min-h-100px,
2844
2842
  .min-h100px {
2845
- min-height: 100px !important;
2843
+ min-height: 100px;
2846
2844
  }
2847
2845
 
2848
2846
  .h-110,
@@ -2864,12 +2862,12 @@
2864
2862
 
2865
2863
  .max-h-110px,
2866
2864
  .max-h110px {
2867
- max-height: 110px !important;
2865
+ max-height: 110px;
2868
2866
  }
2869
2867
 
2870
2868
  .min-h-110px,
2871
2869
  .min-h110px {
2872
- min-height: 110px !important;
2870
+ min-height: 110px;
2873
2871
  }
2874
2872
 
2875
2873
  .h-120,
@@ -2891,12 +2889,12 @@
2891
2889
 
2892
2890
  .max-h-120px,
2893
2891
  .max-h120px {
2894
- max-height: 120px !important;
2892
+ max-height: 120px;
2895
2893
  }
2896
2894
 
2897
2895
  .min-h-120px,
2898
2896
  .min-h120px {
2899
- min-height: 120px !important;
2897
+ min-height: 120px;
2900
2898
  }
2901
2899
 
2902
2900
  .h-130,
@@ -2918,12 +2916,12 @@
2918
2916
 
2919
2917
  .max-h-130px,
2920
2918
  .max-h130px {
2921
- max-height: 130px !important;
2919
+ max-height: 130px;
2922
2920
  }
2923
2921
 
2924
2922
  .min-h-130px,
2925
2923
  .min-h130px {
2926
- min-height: 130px !important;
2924
+ min-height: 130px;
2927
2925
  }
2928
2926
 
2929
2927
  .h-140,
@@ -2945,12 +2943,12 @@
2945
2943
 
2946
2944
  .max-h-140px,
2947
2945
  .max-h140px {
2948
- max-height: 140px !important;
2946
+ max-height: 140px;
2949
2947
  }
2950
2948
 
2951
2949
  .min-h-140px,
2952
2950
  .min-h140px {
2953
- min-height: 140px !important;
2951
+ min-height: 140px;
2954
2952
  }
2955
2953
 
2956
2954
  .h-150,
@@ -2972,12 +2970,12 @@
2972
2970
 
2973
2971
  .max-h-150px,
2974
2972
  .max-h150px {
2975
- max-height: 150px !important;
2973
+ max-height: 150px;
2976
2974
  }
2977
2975
 
2978
2976
  .min-h-150px,
2979
2977
  .min-h150px {
2980
- min-height: 150px !important;
2978
+ min-height: 150px;
2981
2979
  }
2982
2980
 
2983
2981
  .h-200,
@@ -2999,12 +2997,12 @@
2999
2997
 
3000
2998
  .max-h-200px,
3001
2999
  .max-h200px {
3002
- max-height: 200px !important;
3000
+ max-height: 200px;
3003
3001
  }
3004
3002
 
3005
3003
  .min-h-200px,
3006
3004
  .min-h200px {
3007
- min-height: 200px !important;
3005
+ min-height: 200px;
3008
3006
  }
3009
3007
 
3010
3008
  .h-250,
@@ -3026,12 +3024,12 @@
3026
3024
 
3027
3025
  .max-h-250px,
3028
3026
  .max-h250px {
3029
- max-height: 250px !important;
3027
+ max-height: 250px;
3030
3028
  }
3031
3029
 
3032
3030
  .min-h-250px,
3033
3031
  .min-h250px {
3034
- min-height: 250px !important;
3032
+ min-height: 250px;
3035
3033
  }
3036
3034
 
3037
3035
  .h-300,
@@ -3053,12 +3051,12 @@
3053
3051
 
3054
3052
  .max-h-300px,
3055
3053
  .max-h300px {
3056
- max-height: 300px !important;
3054
+ max-height: 300px;
3057
3055
  }
3058
3056
 
3059
3057
  .min-h-300px,
3060
3058
  .min-h300px {
3061
- min-height: 300px !important;
3059
+ min-height: 300px;
3062
3060
  }
3063
3061
 
3064
3062
  .h-350,
@@ -3080,12 +3078,12 @@
3080
3078
 
3081
3079
  .max-h-350px,
3082
3080
  .max-h350px {
3083
- max-height: 350px !important;
3081
+ max-height: 350px;
3084
3082
  }
3085
3083
 
3086
3084
  .min-h-350px,
3087
3085
  .min-h350px {
3088
- min-height: 350px !important;
3086
+ min-height: 350px;
3089
3087
  }
3090
3088
 
3091
3089
  .h-400,
@@ -3107,12 +3105,12 @@
3107
3105
 
3108
3106
  .max-h-400px,
3109
3107
  .max-h400px {
3110
- max-height: 400px !important;
3108
+ max-height: 400px;
3111
3109
  }
3112
3110
 
3113
3111
  .min-h-400px,
3114
3112
  .min-h400px {
3115
- min-height: 400px !important;
3113
+ min-height: 400px;
3116
3114
  }
3117
3115
 
3118
3116
  .h-450,
@@ -3134,12 +3132,12 @@
3134
3132
 
3135
3133
  .max-h-450px,
3136
3134
  .max-h450px {
3137
- max-height: 450px !important;
3135
+ max-height: 450px;
3138
3136
  }
3139
3137
 
3140
3138
  .min-h-450px,
3141
3139
  .min-h450px {
3142
- min-height: 450px !important;
3140
+ min-height: 450px;
3143
3141
  }
3144
3142
 
3145
3143
  .h-500,
@@ -3161,12 +3159,12 @@
3161
3159
 
3162
3160
  .max-h-500px,
3163
3161
  .max-h500px {
3164
- max-height: 500px !important;
3162
+ max-height: 500px;
3165
3163
  }
3166
3164
 
3167
3165
  .min-h-500px,
3168
3166
  .min-h500px {
3169
- min-height: 500px !important;
3167
+ min-height: 500px;
3170
3168
  }
3171
3169
 
3172
3170
  .h-550,
@@ -3188,12 +3186,12 @@
3188
3186
 
3189
3187
  .max-h-550px,
3190
3188
  .max-h550px {
3191
- max-height: 550px !important;
3189
+ max-height: 550px;
3192
3190
  }
3193
3191
 
3194
3192
  .min-h-550px,
3195
3193
  .min-h550px {
3196
- min-height: 550px !important;
3194
+ min-height: 550px;
3197
3195
  }
3198
3196
 
3199
3197
  .h-600,
@@ -3215,12 +3213,12 @@
3215
3213
 
3216
3214
  .max-h-600px,
3217
3215
  .max-h600px {
3218
- max-height: 600px !important;
3216
+ max-height: 600px;
3219
3217
  }
3220
3218
 
3221
3219
  .min-h-600px,
3222
3220
  .min-h600px {
3223
- min-height: 600px !important;
3221
+ min-height: 600px;
3224
3222
  }
3225
3223
 
3226
3224
  .h-650,
@@ -3242,12 +3240,12 @@
3242
3240
 
3243
3241
  .max-h-650px,
3244
3242
  .max-h650px {
3245
- max-height: 650px !important;
3243
+ max-height: 650px;
3246
3244
  }
3247
3245
 
3248
3246
  .min-h-650px,
3249
3247
  .min-h650px {
3250
- min-height: 650px !important;
3248
+ min-height: 650px;
3251
3249
  }
3252
3250
 
3253
3251
  .h-700,
@@ -3269,12 +3267,12 @@
3269
3267
 
3270
3268
  .max-h-700px,
3271
3269
  .max-h700px {
3272
- max-height: 700px !important;
3270
+ max-height: 700px;
3273
3271
  }
3274
3272
 
3275
3273
  .min-h-700px,
3276
3274
  .min-h700px {
3277
- min-height: 700px !important;
3275
+ min-height: 700px;
3278
3276
  }
3279
3277
 
3280
3278
  .h-750,
@@ -3296,12 +3294,12 @@
3296
3294
 
3297
3295
  .max-h-750px,
3298
3296
  .max-h750px {
3299
- max-height: 750px !important;
3297
+ max-height: 750px;
3300
3298
  }
3301
3299
 
3302
3300
  .min-h-750px,
3303
3301
  .min-h750px {
3304
- min-height: 750px !important;
3302
+ min-height: 750px;
3305
3303
  }
3306
3304
 
3307
3305
  .h-800,
@@ -3323,12 +3321,12 @@
3323
3321
 
3324
3322
  .max-h-800px,
3325
3323
  .max-h800px {
3326
- max-height: 800px !important;
3324
+ max-height: 800px;
3327
3325
  }
3328
3326
 
3329
3327
  .min-h-800px,
3330
3328
  .min-h800px {
3331
- min-height: 800px !important;
3329
+ min-height: 800px;
3332
3330
  }
3333
3331
 
3334
3332
  .h-850,
@@ -3350,12 +3348,12 @@
3350
3348
 
3351
3349
  .max-h-850px,
3352
3350
  .max-h850px {
3353
- max-height: 850px !important;
3351
+ max-height: 850px;
3354
3352
  }
3355
3353
 
3356
3354
  .min-h-850px,
3357
3355
  .min-h850px {
3358
- min-height: 850px !important;
3356
+ min-height: 850px;
3359
3357
  }
3360
3358
 
3361
3359
  .h-900,
@@ -3377,12 +3375,12 @@
3377
3375
 
3378
3376
  .max-h-900px,
3379
3377
  .max-h900px {
3380
- max-height: 900px !important;
3378
+ max-height: 900px;
3381
3379
  }
3382
3380
 
3383
3381
  .min-h-900px,
3384
3382
  .min-h900px {
3385
- min-height: 900px !important;
3383
+ min-height: 900px;
3386
3384
  }
3387
3385
 
3388
3386
  .h-950,
@@ -3404,12 +3402,12 @@
3404
3402
 
3405
3403
  .max-h-950px,
3406
3404
  .max-h950px {
3407
- max-height: 950px !important;
3405
+ max-height: 950px;
3408
3406
  }
3409
3407
 
3410
3408
  .min-h-950px,
3411
3409
  .min-h950px {
3412
- min-height: 950px !important;
3410
+ min-height: 950px;
3413
3411
  }
3414
3412
 
3415
3413
  .h-1000,
@@ -3431,22 +3429,22 @@
3431
3429
 
3432
3430
  .max-h-1000px,
3433
3431
  .max-h1000px {
3434
- max-height: 1000px !important;
3432
+ max-height: 1000px;
3435
3433
  }
3436
3434
 
3437
3435
  .min-h-1000px,
3438
3436
  .min-h1000px {
3439
- min-height: 1000px !important;
3437
+ min-height: 1000px;
3440
3438
  }
3441
3439
 
3442
3440
  .w-all,
3443
3441
  .wall {
3444
- width: -webkit-fill-available !important;
3442
+ width: -webkit-fill-available;
3445
3443
  }
3446
3444
 
3447
3445
  .h-all,
3448
3446
  .hall {
3449
- height: -webkit-fill-available !important;
3447
+ height: -webkit-fill-available;
3450
3448
  }
3451
3449
 
3452
3450
  .w-auto,
@@ -3468,471 +3466,472 @@
3468
3466
  }
3469
3467
 
3470
3468
  .gap-0 {
3471
- gap: 0 !important;
3469
+ gap: 0;
3472
3470
  }
3473
3471
 
3474
3472
  .gap-025 {
3475
- gap: 0.25rem !important;
3473
+ gap: 0.25rem;
3476
3474
  }
3477
3475
 
3478
3476
  .gap-05 {
3479
- gap: 0.5rem !important;
3477
+ gap: 0.5rem;
3480
3478
  }
3481
3479
 
3482
3480
  .gap-075 {
3483
- gap: 0.75rem !important;
3481
+ gap: 0.75rem;
3484
3482
  }
3485
3483
 
3486
3484
  .gap-1 {
3487
- gap: 1rem !important;
3485
+ gap: 1rem;
3488
3486
  }
3489
3487
 
3490
3488
  .gap-2 {
3491
- gap: 2rem !important;
3489
+ gap: 2rem;
3492
3490
  }
3493
3491
 
3494
3492
  .gap-3 {
3495
- gap: 3rem !important;
3493
+ gap: 3rem;
3496
3494
  }
3497
3495
 
3498
3496
  .gap-4 {
3499
- gap: 4rem !important;
3497
+ gap: 4rem;
3500
3498
  }
3501
3499
 
3502
3500
  .gap-5 {
3503
- gap: 5rem !important;
3501
+ gap: 5rem;
3504
3502
  }
3505
3503
 
3506
3504
  .gap-6 {
3507
- gap: 6rem !important;
3505
+ gap: 6rem;
3508
3506
  }
3509
3507
 
3510
3508
  .gap-7 {
3511
- gap: 7rem !important;
3509
+ gap: 7rem;
3512
3510
  }
3513
3511
 
3514
3512
  .gap-8 {
3515
- gap: 8rem !important;
3513
+ gap: 8rem;
3516
3514
  }
3517
3515
 
3518
3516
  .gap-9 {
3519
- gap: 9rem !important;
3517
+ gap: 9rem;
3520
3518
  }
3521
3519
 
3522
3520
  .gap-10 {
3523
- gap: 10rem !important;
3521
+ gap: 10rem;
3524
3522
  }
3525
3523
 
3526
3524
  .gap-11 {
3527
- gap: 11rem !important;
3525
+ gap: 11rem;
3528
3526
  }
3529
3527
 
3530
3528
  .gap-12 {
3531
- gap: 12rem !important;
3529
+ gap: 12rem;
3532
3530
  }
3533
3531
 
3534
3532
  .gap-13 {
3535
- gap: 13rem !important;
3533
+ gap: 13rem;
3536
3534
  }
3537
3535
 
3538
3536
  .gap-14 {
3539
- gap: 14rem !important;
3537
+ gap: 14rem;
3540
3538
  }
3541
3539
 
3542
3540
  .gap-15 {
3543
- gap: 15rem !important;
3541
+ gap: 15rem;
3544
3542
  }
3545
3543
 
3546
3544
  .gap-16 {
3547
- gap: 16rem !important;
3545
+ gap: 16rem;
3548
3546
  }
3549
3547
 
3550
3548
  .gap-17 {
3551
- gap: 17rem !important;
3549
+ gap: 17rem;
3552
3550
  }
3553
3551
 
3554
3552
  .gap-18 {
3555
- gap: 18rem !important;
3553
+ gap: 18rem;
3556
3554
  }
3557
3555
 
3558
3556
  .gap-19 {
3559
- gap: 19rem !important;
3557
+ gap: 19rem;
3560
3558
  }
3561
3559
 
3562
3560
  .gap-20 {
3563
- gap: 20rem !important;
3561
+ gap: 20rem;
3564
3562
  }
3565
3563
 
3566
3564
  .gap-1-25 {
3567
- gap: 1.25rem !important;
3565
+ gap: 1.25rem;
3568
3566
  }
3569
3567
 
3570
3568
  .gap-1-5 {
3571
- gap: 1.5rem !important;
3569
+ gap: 1.5rem;
3572
3570
  }
3573
3571
 
3574
3572
  .gap-1-75 {
3575
- gap: 1.75rem !important;
3573
+ gap: 1.75rem;
3576
3574
  }
3577
3575
 
3578
3576
  .gap-2-5 {
3579
- gap: 2.5rem !important;
3577
+ gap: 2.5rem;
3580
3578
  }
3581
3579
 
3582
3580
  .gap-3-5 {
3583
- gap: 3.5rem !important;
3581
+ gap: 3.5rem;
3584
3582
  }
3585
3583
 
3586
3584
  .gap-4-5 {
3587
- gap: 4.5rem !important;
3585
+ gap: 4.5rem;
3588
3586
  }
3589
3587
 
3590
3588
  .gap-5-5 {
3591
- gap: 5.5rem !important;
3589
+ gap: 5.5rem;
3592
3590
  }
3593
3591
 
3594
3592
  .gap-6-5 {
3595
- gap: 6.5rem !important;
3593
+ gap: 6.5rem;
3596
3594
  }
3597
3595
 
3598
3596
  .gap-7-5 {
3599
- gap: 7.5rem !important;
3597
+ gap: 7.5rem;
3600
3598
  }
3601
3599
 
3602
3600
  .gap-8-5 {
3603
- gap: 8.5rem !important;
3601
+ gap: 8.5rem;
3604
3602
  }
3605
3603
 
3606
3604
  .gap-9-5 {
3607
- gap: 9.5rem !important;
3605
+ gap: 9.5rem;
3608
3606
  }
3609
3607
 
3610
3608
  .gap-col-0,
3611
3609
  .col-gap-0 {
3612
- column-gap: 0rem !important;
3610
+ column-gap: 0rem;
3613
3611
  }
3614
3612
 
3615
3613
  .gap-col-025,
3616
3614
  .col-gap-025 {
3617
- column-gap: 0.25rem !important;
3615
+ column-gap: 0.25rem;
3618
3616
  }
3619
3617
 
3620
3618
  .gap-col-05,
3621
3619
  .col-gap-05 {
3622
- column-gap: 0.5rem !important;
3620
+ column-gap: 0.5rem;
3623
3621
  }
3624
3622
 
3625
3623
  .gap-col-075,
3626
3624
  .col-gap-075 {
3627
- column-gap: 0.75rem !important;
3625
+ column-gap: 0.75rem;
3628
3626
  }
3629
3627
 
3630
3628
  .gap-col-1,
3631
3629
  .col-gap-1 {
3632
- column-gap: 1rem !important;
3630
+ column-gap: 1rem;
3633
3631
  }
3634
3632
 
3635
3633
  .gap-col-2,
3636
3634
  .col-gap-2 {
3637
- column-gap: 2rem !important;
3635
+ column-gap: 2rem;
3638
3636
  }
3639
3637
 
3640
3638
  .gap-col-3,
3641
3639
  .col-gap-3 {
3642
- column-gap: 3rem !important;
3640
+ column-gap: 3rem;
3643
3641
  }
3644
3642
 
3645
3643
  .gap-col-4,
3646
3644
  .col-gap-4 {
3647
- column-gap: 4rem !important;
3645
+ column-gap: 4rem;
3648
3646
  }
3649
3647
 
3650
3648
  .gap-col-5,
3651
3649
  .col-gap-5 {
3652
- column-gap: 5rem !important;
3650
+ column-gap: 5rem;
3653
3651
  }
3654
3652
 
3655
3653
  .gap-col-6,
3656
3654
  .col-gap-6 {
3657
- column-gap: 6rem !important;
3655
+ column-gap: 6rem;
3658
3656
  }
3659
3657
 
3660
3658
  .gap-col-7,
3661
3659
  .col-gap-7 {
3662
- column-gap: 7rem !important;
3660
+ column-gap: 7rem;
3663
3661
  }
3664
3662
 
3665
3663
  .gap-col-8,
3666
3664
  .col-gap-8 {
3667
- column-gap: 8rem !important;
3665
+ column-gap: 8rem;
3668
3666
  }
3669
3667
 
3670
3668
  .gap-col-9,
3671
3669
  .col-gap-9 {
3672
- column-gap: 9rem !important;
3670
+ column-gap: 9rem;
3673
3671
  }
3674
3672
 
3675
3673
  .gap-col-10,
3676
3674
  .col-gap-10 {
3677
- column-gap: 10rem !important;
3675
+ column-gap: 10rem;
3678
3676
  }
3679
3677
 
3680
3678
  .gap-col-1-25,
3681
3679
  .col-gap-1-25 {
3682
- column-gap: 1.25rem !important;
3680
+ column-gap: 1.25rem;
3683
3681
  }
3684
3682
 
3685
3683
  .gap-col-1-5,
3686
3684
  .col-gap-1-5 {
3687
- column-gap: 1.5rem !important;
3685
+ column-gap: 1.5rem;
3688
3686
  }
3689
3687
 
3690
3688
  .gap-col-1-75,
3691
3689
  .col-gap-1-75 {
3692
- column-gap: 1.75rem !important;
3690
+ column-gap: 1.75rem;
3693
3691
  }
3694
3692
 
3695
3693
  .gap-col-2-5,
3696
3694
  .col-gap-2-5 {
3697
- column-gap: 2.5rem !important;
3695
+ column-gap: 2.5rem;
3698
3696
  }
3699
3697
 
3700
3698
  .gap-col-3-5,
3701
3699
  .col-gap-3-5 {
3702
- column-gap: 3.5rem !important;
3700
+ column-gap: 3.5rem;
3703
3701
  }
3704
3702
 
3705
3703
  .gap-col-4-5,
3706
3704
  .col-gap-4-5 {
3707
- column-gap: 4.5rem !important;
3705
+ column-gap: 4.5rem;
3708
3706
  }
3709
3707
 
3710
3708
  .gap-col-5-5,
3711
3709
  .col-gap-5-5 {
3712
- column-gap: 5.5rem !important;
3710
+ column-gap: 5.5rem;
3713
3711
  }
3714
3712
 
3715
3713
  .gap-col-6-5,
3716
3714
  .col-gap-6-5 {
3717
- column-gap: 6.5rem !important;
3715
+ column-gap: 6.5rem;
3718
3716
  }
3719
3717
 
3720
3718
  .gap-col-7-5,
3721
3719
  .col-gap-7-5 {
3722
- column-gap: 7.5rem !important;
3720
+ column-gap: 7.5rem;
3723
3721
  }
3724
3722
 
3725
3723
  .gap-col-8-5,
3726
3724
  .col-gap-8-5 {
3727
- column-gap: 8.5rem !important;
3725
+ column-gap: 8.5rem;
3728
3726
  }
3729
3727
 
3730
3728
  .gap-col-9-5,
3731
3729
  .col-gap-9-5 {
3732
- column-gap: 9.5rem !important;
3730
+ column-gap: 9.5rem;
3733
3731
  }
3734
3732
 
3735
3733
  .gap-row-0,
3736
3734
  .row-gap-0 {
3737
- row-gap: 0rem !important;
3735
+ row-gap: 0rem;
3738
3736
  }
3739
3737
 
3740
3738
  .gap-row-025,
3741
3739
  .row-gap-025 {
3742
- row-gap: 0.25rem !important;
3740
+ row-gap: 0.25rem;
3743
3741
  }
3744
3742
 
3745
3743
  .gap-row-05,
3746
3744
  .row-gap-05 {
3747
- row-gap: 0.5rem !important;
3745
+ row-gap: 0.5rem;
3748
3746
  }
3749
3747
 
3750
3748
  .gap-row-075,
3751
3749
  .row-gap-075 {
3752
- row-gap: 0.75rem !important;
3750
+ row-gap: 0.75rem;
3753
3751
  }
3754
3752
 
3755
3753
  .gap-row-1,
3756
3754
  .row-gap-1 {
3757
- row-gap: 1rem !important;
3755
+ row-gap: 1rem;
3758
3756
  }
3759
3757
 
3760
3758
  .gap-row-2,
3761
3759
  .row-gap-2 {
3762
- row-gap: 2rem !important;
3760
+ row-gap: 2rem;
3763
3761
  }
3764
3762
 
3765
3763
  .gap-row-3,
3766
3764
  .row-gap-3 {
3767
- row-gap: 3rem !important;
3765
+ row-gap: 3rem;
3768
3766
  }
3769
3767
 
3770
3768
  .gap-row-4,
3771
3769
  .row-gap-4 {
3772
- row-gap: 4rem !important;
3770
+ row-gap: 4rem;
3773
3771
  }
3774
3772
 
3775
3773
  .gap-row-5,
3776
3774
  .row-gap-5 {
3777
- row-gap: 5rem !important;
3775
+ row-gap: 5rem;
3778
3776
  }
3779
3777
 
3780
3778
  .gap-row-6,
3781
3779
  .row-gap-6 {
3782
- row-gap: 6rem !important;
3780
+ row-gap: 6rem;
3783
3781
  }
3784
3782
 
3785
3783
  .gap-row-7,
3786
3784
  .row-gap-7 {
3787
- row-gap: 7rem !important;
3785
+ row-gap: 7rem;
3788
3786
  }
3789
3787
 
3790
3788
  .gap-row-8,
3791
3789
  .row-gap-8 {
3792
- row-gap: 8rem !important;
3790
+ row-gap: 8rem;
3793
3791
  }
3794
3792
 
3795
3793
  .gap-row-9,
3796
3794
  .row-gap-9 {
3797
- row-gap: 9rem !important;
3795
+ row-gap: 9rem;
3798
3796
  }
3799
3797
 
3800
3798
  .gap-row-10,
3801
3799
  .row-gap-10 {
3802
- row-gap: 10rem !important;
3800
+ row-gap: 10rem;
3803
3801
  }
3804
3802
 
3805
3803
  .gap-1-25,
3806
3804
  .row-gap-1-25 {
3807
- row-gap: 1.25rem !important;
3805
+ row-gap: 1.25rem;
3808
3806
  }
3809
3807
 
3810
3808
  .gap-row-1-5,
3811
3809
  .row-gap-1-5 {
3812
- row-gap: 1.5rem !important;
3810
+ row-gap: 1.5rem;
3813
3811
  }
3814
3812
 
3815
3813
  .gap-row-1-75,
3816
3814
  .row-gap-1-75 {
3817
- row-gap: 1.75rem !important;
3815
+ row-gap: 1.75rem;
3818
3816
  }
3819
3817
 
3820
3818
  .gap-row-2-5,
3821
3819
  .row-gap-2-5 {
3822
- row-gap: 2.5rem !important;
3820
+ row-gap: 2.5rem;
3823
3821
  }
3824
3822
 
3825
3823
  .gap-row-3-5,
3826
3824
  .row-gap-3-5 {
3827
- row-gap: 3.5rem !important;
3825
+ row-gap: 3.5rem;
3828
3826
  }
3829
3827
 
3830
3828
  .gap-row-4-5,
3831
3829
  .row-gap-4-5 {
3832
- row-gap: 4.5rem !important;
3830
+ row-gap: 4.5rem;
3833
3831
  }
3834
3832
 
3835
3833
  .gap-row-5-5,
3836
3834
  .row-gap-5-5 {
3837
- row-gap: 5.5rem !important;
3835
+ row-gap: 5.5rem;
3838
3836
  }
3839
3837
 
3840
3838
  .gap-row-6-5,
3841
3839
  .row-gap-6-5 {
3842
- row-gap: 6.5rem !important;
3840
+ row-gap: 6.5rem;
3843
3841
  }
3844
3842
 
3845
3843
  .gap-row-7-5,
3846
3844
  .row-gap-7-5 {
3847
- row-gap: 7.5rem !important;
3845
+ row-gap: 7.5rem;
3848
3846
  }
3849
3847
 
3850
3848
  .gap-row-8-5,
3851
3849
  .row-gap-8-5 {
3852
- row-gap: 8.5rem !important;
3850
+ row-gap: 8.5rem;
3853
3851
  }
3854
3852
 
3855
3853
  .gap-row-9-5,
3856
3854
  .row-gap-9-5 {
3857
- row-gap: 9.5rem !important;
3855
+ row-gap: 9.5rem;
3858
3856
  }
3859
3857
 
3860
3858
  .flex-wrap {
3861
- flex-wrap: wrap !important;
3859
+ flex-wrap: wrap;
3862
3860
  }
3863
3861
 
3864
3862
  .flex-reverse {
3865
- flex-direction: row-reverse !important;
3863
+ flex-direction: row-reverse;
3866
3864
  }
3867
3865
 
3866
+
3868
3867
  .column,
3869
3868
  .flex-column {
3870
- flex-direction: column !important;
3869
+ flex-direction: column;
3871
3870
  }
3872
3871
 
3873
3872
  .column-reverse {
3874
- flex-direction: column-reverse !important;
3873
+ flex-direction: column-reverse;
3875
3874
  }
3876
3875
 
3877
3876
  .row {
3878
- flex-direction: row !important;
3877
+ flex-direction: row;
3879
3878
  }
3880
3879
 
3881
3880
  .flex-grow,
3882
3881
  .flex-grow-1 {
3883
- flex-grow: 1 !important;
3882
+ flex-grow: 1;
3884
3883
  }
3885
3884
 
3886
3885
  .flex-shrink,
3887
3886
  .flex-shrink-1 {
3888
- flex-shrink: 1 !important;
3887
+ flex-shrink: 1;
3889
3888
  }
3890
3889
 
3891
3890
  .flex-no-grow,
3892
3891
  .flex-grow-0 {
3893
- flex-grow: 0 !important;
3892
+ flex-grow: 0;
3894
3893
  }
3895
3894
 
3896
3895
  .flex-no-shrink,
3897
3896
  .flex-shrink-0 {
3898
- flex-shrink: 0 !important;
3897
+ flex-shrink: 0;
3899
3898
  }
3900
3899
 
3901
3900
  .flex-grow-2 {
3902
- flex-grow: 2 !important;
3901
+ flex-grow: 2;
3903
3902
  }
3904
3903
 
3905
3904
  .flex-shrink-2 {
3906
- flex-shrink: 2 !important;
3905
+ flex-shrink: 2;
3907
3906
  }
3908
3907
 
3909
3908
  .flex-grow-3 {
3910
- flex-grow: 3 !important;
3909
+ flex-grow: 3;
3911
3910
  }
3912
3911
 
3913
3912
  .flex-shrink-3 {
3914
- flex-shrink: 3 !important;
3913
+ flex-shrink: 3;
3915
3914
  }
3916
3915
 
3917
3916
  .flex-grow-4 {
3918
- flex-grow: 4 !important;
3917
+ flex-grow: 4;
3919
3918
  }
3920
3919
 
3921
3920
  .flex-grow-9999 {
3922
- flex-grow: 9999 !important;
3921
+ flex-grow: 9999;
3923
3922
  }
3924
3923
 
3925
3924
  .flex-shrink-4 {
3926
- flex-shrink: 4 !important;
3925
+ flex-shrink: 4;
3927
3926
  }
3928
3927
 
3929
3928
  .flex-2-col {
3930
- max-width: 50% !important;
3931
- flex: 1 1 calc(50% - 2rem) !important;
3929
+ max-width: 50%;
3930
+ flex: 1 1 calc(50% - 2rem);
3932
3931
  }
3933
3932
 
3934
3933
  .flex-3-col {
3935
- flex: 1 1 33.33333% !important;
3934
+ flex: 1 1 33.33333%;
3936
3935
  }
3937
3936
 
3938
3937
  .mb-auto {
@@ -6365,331 +6364,325 @@
6365
6364
  .sticky-0,
6366
6365
  .position-sticky-0 {
6367
6366
  position: sticky !important;
6368
- top: 0 !important;
6369
- align-self: start !important;
6367
+ top: 0;
6368
+ align-self: start;
6370
6369
  }
6371
6370
 
6372
6371
  .sticky-025,
6373
6372
  .position-sticky-025 {
6374
6373
  position: sticky !important;
6375
- top: 0.25rem !important;
6376
- align-self: start !important;
6374
+ top: 0.25rem;
6375
+ align-self: start;
6377
6376
  }
6378
6377
 
6379
6378
  .sticky-05,
6380
6379
  .position-sticky-05 {
6381
6380
  position: sticky !important;
6382
- top: 0.5rem !important;
6383
- align-self: start !important;
6381
+ top: 0.5rem;
6382
+ align-self: start;
6384
6383
  }
6385
6384
 
6386
6385
  .sticky-075,
6387
6386
  .position-sticky-075 {
6388
6387
  position: sticky !important;
6389
- top: 0.75rem !important;
6390
- align-self: start !important;
6388
+ top: 0.75rem;
6389
+ align-self: start;
6391
6390
  }
6392
6391
 
6393
6392
  .sticky-1,
6394
6393
  .position-sticky-1 {
6395
6394
  position: sticky !important;
6396
- top: 1rem !important;
6397
- align-self: start !important;
6395
+ top: 1rem;
6396
+ align-self: start;
6398
6397
  }
6399
6398
 
6400
6399
  .sticky-1-25,
6401
6400
  .position-sticky-1-25 {
6402
6401
  position: sticky !important;
6403
- top: 1.25rem !important;
6404
- align-self: start !important;
6402
+ top: 1.25rem;
6403
+ align-self: start;
6405
6404
  }
6406
6405
 
6407
6406
  .sticky-1-5,
6408
6407
  .position-sticky-1-5 {
6409
6408
  position: sticky !important;
6410
- top: 1.5rem !important;
6411
- align-self: start !important;
6409
+ top: 1.5rem;
6410
+ align-self: start;
6412
6411
  }
6413
6412
 
6414
6413
  .sticky-1-75,
6415
6414
  .position-sticky-1-75 {
6416
6415
  position: sticky !important;
6417
- top: 1.75rem !important;
6418
- align-self: start !important;
6416
+ top: 1.75rem;
6417
+ align-self: start;
6419
6418
  }
6420
6419
 
6421
6420
  .sticky-2,
6422
6421
  .position-sticky-2 {
6423
6422
  position: sticky !important;
6424
- top: 2rem !important;
6425
- align-self: start !important;
6423
+ top: 2rem;
6424
+ align-self: start;
6426
6425
  }
6427
6426
 
6428
6427
  .sticky-2-25,
6429
6428
  .position-sticky-2-25 {
6430
6429
  position: sticky !important;
6431
- top: 2.25rem !important;
6432
- align-self: start !important;
6430
+ top: 2.25rem;
6431
+ align-self: start;
6433
6432
  }
6434
6433
 
6435
6434
  .sticky-2-5,
6436
6435
  .position-sticky-2-5 {
6437
6436
  position: sticky !important;
6438
- top: 2.5rem !important;
6439
- align-self: start !important;
6437
+ top: 2.5rem;
6438
+ align-self: start;
6440
6439
  }
6441
6440
 
6442
6441
  .sticky-2-75,
6443
6442
  .position-sticky-2-75 {
6444
6443
  position: sticky !important;
6445
- top: 2.75rem !important;
6446
- align-self: start !important;
6444
+ top: 2.75rem;
6445
+ align-self: start;
6447
6446
  }
6448
6447
 
6449
6448
  .sticky-3,
6450
6449
  .position-sticky-3 {
6451
6450
  position: sticky !important;
6452
- top: 3rem !important;
6453
- align-self: start !important;
6451
+ top: 3rem;
6452
+ align-self: start;
6454
6453
  }
6455
6454
 
6456
6455
  .sticky-3-25,
6457
6456
  .position-sticky-3-25 {
6458
6457
  position: sticky !important;
6459
- top: 3.25rem !important;
6460
- align-self: start !important;
6458
+ top: 3.25rem;
6459
+ align-self: start;
6461
6460
  }
6462
6461
 
6463
6462
  .sticky-3-5,
6464
6463
  .position-sticky-3-5 {
6465
6464
  position: sticky !important;
6466
- top: 3.5rem !important;
6467
- align-self: start !important;
6465
+ top: 3.5rem;
6466
+ align-self: start;
6468
6467
  }
6469
6468
 
6470
6469
  .sticky-3-75,
6471
6470
  .position-sticky-3-75 {
6472
6471
  position: sticky !important;
6473
- top: 3.75rem !important;
6474
- align-self: start !important;
6472
+ top: 3.75rem;
6473
+ align-self: start;
6475
6474
  }
6476
6475
 
6477
6476
  .sticky-4,
6478
6477
  .position-sticky-4 {
6479
6478
  position: sticky !important;
6480
- top: 4rem !important;
6481
- align-self: start !important;
6479
+ top: 4rem;
6480
+ align-self: start;
6482
6481
  }
6483
6482
 
6484
6483
  .sticky-4-25,
6485
6484
  .position-sticky-4-25 {
6486
6485
  position: sticky !important;
6487
- top: 4.25rem !important;
6488
- align-self: start !important;
6486
+ top: 4.25rem;
6487
+ align-self: start;
6489
6488
  }
6490
6489
 
6491
6490
  .sticky-4-5,
6492
6491
  .position-sticky-4-5 {
6493
6492
  position: sticky !important;
6494
- top: 4.5rem !important;
6495
- align-self: start !important;
6493
+ top: 4.5rem;
6494
+ align-self: start;
6496
6495
  }
6497
6496
 
6498
6497
  .sticky-4-75,
6499
6498
  .position-sticky-4-75 {
6500
6499
  position: sticky !important;
6501
- top: 4.75rem !important;
6502
- align-self: start !important;
6500
+ top: 4.75rem;
6501
+ align-self: start;
6503
6502
  }
6504
6503
 
6505
6504
  .sticky-5,
6506
6505
  .position-sticky-5 {
6507
6506
  position: sticky !important;
6508
- top: 5rem !important;
6509
- align-self: start !important;
6507
+ top: 5rem;
6508
+ align-self: start;
6510
6509
  }
6511
6510
 
6512
6511
  .sticky-5-25,
6513
6512
  .position-sticky-5-25 {
6514
6513
  position: sticky !important;
6515
- top: 5.25rem !important;
6516
- align-self: start !important;
6514
+ top: 5.25rem;
6515
+ align-self: start;
6517
6516
  }
6518
6517
 
6519
6518
  .sticky-5-5,
6520
6519
  .position-sticky-5-5 {
6521
6520
  position: sticky !important;
6522
- top: 5.5rem !important;
6523
- align-self: start !important;
6521
+ top: 5.5rem;
6522
+ align-self: start;
6524
6523
  }
6525
6524
 
6526
6525
  .sticky-5-75,
6527
6526
  .position-sticky-5-75 {
6528
6527
  position: sticky !important;
6529
- top: 5.75rem !important;
6530
- align-self: start !important;
6528
+ top: 5.75rem;
6529
+ align-self: start;
6531
6530
  }
6532
6531
 
6533
6532
  .sticky-6,
6534
6533
  .position-sticky-6 {
6535
6534
  position: sticky !important;
6536
- top: 6rem !important;
6537
- align-self: start !important;
6535
+ top: 6rem;
6536
+ align-self: start;
6538
6537
  }
6539
6538
 
6540
6539
  .sticky-6-25,
6541
6540
  .position-sticky-6-25 {
6542
6541
  position: sticky !important;
6543
- top: 6.25rem !important;
6544
- align-self: start !important;
6542
+ top: 6.25rem;
6543
+ align-self: start;
6545
6544
  }
6546
6545
 
6547
6546
  .sticky-6-5,
6548
6547
  .position-sticky-6-5 {
6549
6548
  position: sticky !important;
6550
- top: 6.5rem !important;
6551
- align-self: start !important;
6549
+ top: 6.5rem;
6550
+ align-self: start;
6552
6551
  }
6553
6552
 
6554
6553
  .sticky-6-75,
6555
6554
  .position-sticky-6-75 {
6556
6555
  position: sticky !important;
6557
- top: 6.75rem !important;
6558
- align-self: start !important;
6556
+ top: 6.75rem;
6557
+ align-self: start;
6559
6558
  }
6560
6559
 
6561
6560
  .sticky-7,
6562
6561
  .position-sticky-7 {
6563
6562
  position: sticky !important;
6564
- top: 7rem !important;
6565
- align-self: start !important;
6563
+ top: 7rem;
6564
+ align-self: start;
6566
6565
  }
6567
6566
 
6568
6567
  .sticky-7-25,
6569
6568
  .position-sticky-7-25 {
6570
6569
  position: sticky !important;
6571
- top: 7.25rem !important;
6572
- align-self: start !important;
6570
+ top: 7.25rem;
6571
+ align-self: start;
6573
6572
  }
6574
6573
 
6575
6574
  .sticky-7-5,
6576
6575
  .position-sticky-7-5 {
6577
6576
  position: sticky !important;
6578
- top: 7.5rem !important;
6579
- align-self: start !important;
6577
+ top: 7.5rem;
6578
+ align-self: start;
6580
6579
  }
6581
6580
 
6582
6581
  .sticky-7-75,
6583
6582
  .position-sticky-7-75 {
6584
6583
  position: sticky !important;
6585
- top: 7.75rem !important;
6586
- align-self: start !important;
6584
+ top: 7.75rem;
6585
+ align-self: start;
6587
6586
  }
6588
6587
 
6589
6588
  .sticky-8,
6590
6589
  .position-sticky-8 {
6591
6590
  position: sticky !important;
6592
- top: 8rem !important;
6593
- align-self: start !important;
6591
+ top: 8rem;
6592
+ align-self: start;
6594
6593
  }
6595
6594
 
6596
6595
  .sticky-8-25,
6597
6596
  .position-sticky-8-25 {
6598
6597
  position: sticky !important;
6599
- top: 8.25rem !important;
6600
- align-self: start !important;
6598
+ top: 8.25rem;
6599
+ align-self: start;
6601
6600
  }
6602
6601
 
6603
6602
  .sticky-8-5,
6604
6603
  .position-sticky-8-5 {
6605
6604
  position: sticky !important;
6606
- top: 8.5rem !important;
6607
- align-self: start !important;
6605
+ top: 8.5rem;
6606
+ align-self: start;
6608
6607
  }
6609
6608
 
6610
6609
  .sticky-8-75,
6611
6610
  .position-sticky-8-75 {
6612
6611
  position: sticky !important;
6613
- top: 8.75rem !important;
6614
- align-self: start !important;
6612
+ top: 8.75rem;
6613
+ align-self: start;
6615
6614
  }
6616
6615
 
6617
6616
  .sticky-9,
6618
6617
  .position-sticky-9 {
6619
6618
  position: sticky !important;
6620
- top: 9rem !important;
6621
- align-self: start !important;
6619
+ top: 9rem;
6620
+ align-self: start;
6622
6621
  }
6623
6622
 
6624
6623
  .sticky-9-25,
6625
6624
  .position-sticky-9-25 {
6626
6625
  position: sticky !important;
6627
- top: 9.25rem !important;
6628
- align-self: start !important;
6626
+ top: 9.25rem;
6627
+ align-self: start;
6629
6628
  }
6630
6629
 
6631
6630
  .sticky-9-5,
6632
6631
  .position-sticky-9-5 {
6633
6632
  position: sticky !important;
6634
- top: 9.5rem !important;
6635
- align-self: start !important;
6633
+ top: 9.5rem;
6634
+ align-self: start;
6636
6635
  }
6637
6636
 
6638
6637
  .sticky-9-75,
6639
6638
  .position-sticky-9-75 {
6640
6639
  position: sticky !important;
6641
- top: 9.75rem !important;
6642
- align-self: start !important;
6640
+ top: 9.75rem;
6641
+ align-self: start;
6643
6642
  }
6644
6643
 
6645
6644
  .sticky-10,
6646
6645
  .position-sticky-10 {
6647
6646
  position: sticky !important;
6648
- top: 10rem !important;
6649
- align-self: start !important;
6647
+ top: 10rem;
6648
+ align-self: start;
6650
6649
  }
6651
6650
 
6652
6651
  .sticky-10-25,
6653
6652
  .position-sticky-10-25 {
6654
6653
  position: sticky !important;
6655
- top: 10.25rem !important;
6656
- align-self: start !important;
6654
+ top: 10.25rem;
6655
+ align-self: start;
6657
6656
  }
6658
6657
 
6659
6658
  .sticky-10-5,
6660
6659
  .position-sticky-10-5 {
6661
6660
  position: sticky !important;
6662
- top: 10.5rem !important;
6663
- align-self: start !important;
6661
+ top: 10.5rem;
6662
+ align-self: start;
6664
6663
  }
6665
6664
 
6666
6665
  .sticky-10-75,
6667
6666
  .position-sticky-10-75 {
6668
6667
  position: sticky !important;
6669
- top: 10.75rem !important;
6670
- align-self: start !important;
6668
+ top: 10.75rem;
6669
+ align-self: start;
6671
6670
  }
6672
6671
 
6673
- /* Multi-purpose base class: layout props left non-important so dedicated
6674
- modifiers (.align-items-*, .none, …) can override them. */
6675
6672
  .flex {
6676
6673
  display: flex;
6677
6674
  align-items: center;
6678
6675
  }
6679
6676
 
6680
6677
  .display-flex {
6681
- display: flex !important;
6678
+ display: flex;
6682
6679
  }
6683
6680
 
6684
- /* Multi-purpose base class: layout props left non-important so dedicated
6685
- modifiers (.align-items-*, .none, …) can override them. */
6686
6681
  .inline-flex {
6687
6682
  display: inline-flex;
6688
6683
  align-items: center;
6689
6684
  }
6690
6685
 
6691
- /* Multi-purpose base class: layout props left non-important so dedicated
6692
- modifiers (.align-items-*, .none, …) can override them. */
6693
6686
  .flex-stretch {
6694
6687
  display: flex;
6695
6688
  align-items: stretch;
@@ -6724,604 +6717,605 @@
6724
6717
  }
6725
6718
 
6726
6719
  .flex-end {
6727
- justify-content: flex-end !important;
6720
+ justify-content: flex-end;
6728
6721
  }
6729
6722
 
6730
6723
  .space-between {
6731
- justify-content: space-between !important;
6724
+ justify-content: space-between;
6732
6725
  }
6733
6726
 
6734
6727
  .space-evenly {
6735
- justify-content: space-evenly !important;
6728
+ justify-content: space-evenly;
6736
6729
  }
6737
6730
 
6738
6731
  .label {
6739
- display: block !important;
6740
- font-size: var(--bgl-label-font-size) !important;
6741
- margin-bottom: 2px !important;
6742
- line-height: 1.3 !important;
6743
- color: var(--bgl-label-color) !important;
6732
+ display: block;
6733
+ font-size: var(--bgl-label-font-size);
6734
+ margin-bottom: 2px;
6735
+ line-height: 1.3;
6736
+ color: var(--bgl-label-color);
6744
6737
  }
6745
6738
 
6746
6739
  .layout-h-100 {
6747
- height: 100vh !important;
6748
- overflow-y: hidden !important;
6740
+ height: 100vh;
6741
+ overflow-y: hidden;
6749
6742
  }
6750
6743
 
6751
6744
  .grid-list-wrapper {
6752
- grid-template-rows: auto 1fr !important;
6745
+ grid-template-rows: auto 1fr;
6753
6746
  }
6754
6747
 
6755
6748
  .grid-list-wrapper-reverse,
6756
6749
  .grid-list-wrapper-rev {
6757
- grid-template-rows: 1fr auto !important;
6750
+ grid-template-rows: 1fr auto;
6758
6751
  }
6759
6752
 
6753
+
6760
6754
  .grid-rows-1fr-auto-auto {
6761
- grid-template-rows: 1fr auto auto !important;
6755
+ grid-template-rows: 1fr auto auto;
6762
6756
  }
6763
6757
 
6764
6758
  .grid-rows-auto-1fr-auto {
6765
- grid-template-rows: auto 1fr auto !important;
6759
+ grid-template-rows: auto 1fr auto;
6766
6760
  }
6767
6761
 
6768
6762
  .grid-rows-auto-auto-1fr {
6769
- grid-template-rows: auto auto 1fr !important;
6763
+ grid-template-rows: auto auto 1fr;
6770
6764
  }
6771
6765
 
6772
6766
  .grid-rows-1fr-auto {
6773
- grid-template-rows: 1fr auto !important;
6767
+ grid-template-rows: 1fr auto;
6774
6768
  }
6775
6769
 
6776
6770
  .grid-rows-auto-1fr {
6777
- grid-template-rows: auto 1fr !important;
6771
+ grid-template-rows: auto 1fr;
6778
6772
  }
6779
6773
 
6780
6774
  .grid-overlap {
6781
- display: grid !important;
6782
- grid-template-columns: 1fr !important;
6783
- grid-template-rows: 1fr !important;
6775
+ display: grid;
6776
+ grid-template-columns: 1fr;
6777
+ grid-template-rows: 1fr;
6784
6778
  }
6785
6779
 
6786
6780
  .grid-wrap-50,
6787
6781
  .grid-wrap-50-fit {
6788
- grid-template-columns: repeat(auto-fit, minmax(min(50px, 100%), 1fr)) !important;
6789
- height: max-content !important;
6790
- width: 100% !important;
6782
+ grid-template-columns: repeat(auto-fit, minmax(min(50px, 100%), 1fr));
6783
+ height: max-content;
6784
+ width: 100%;
6791
6785
  }
6792
6786
 
6793
6787
  .grid-wrap-100,
6794
6788
  .grid-wrap-100-fit {
6795
- grid-template-columns: repeat(auto-fit, minmax(min(100px, 100%), 1fr)) !important;
6796
- height: max-content !important;
6797
- width: 100% !important;
6789
+ grid-template-columns: repeat(auto-fit, minmax(min(100px, 100%), 1fr));
6790
+ height: max-content;
6791
+ width: 100%;
6798
6792
  }
6799
6793
 
6800
6794
  .grid-wrap-150,
6801
6795
  .grid-wrap-150-fit {
6802
- grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr)) !important;
6803
- height: max-content !important;
6804
- width: 100% !important;
6796
+ grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));
6797
+ height: max-content;
6798
+ width: 100%;
6805
6799
  }
6806
6800
 
6807
6801
  .grid-wrap-200,
6808
6802
  .grid-wrap-200-fit {
6809
- grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr)) !important;
6810
- height: max-content !important;
6811
- width: 100% !important;
6803
+ grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
6804
+ height: max-content;
6805
+ width: 100%;
6812
6806
  }
6813
6807
 
6814
6808
  .grid-wrap-250,
6815
6809
  .grid-wrap-250-fit {
6816
- grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr)) !important;
6817
- height: max-content !important;
6818
- width: 100% !important;
6810
+ grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
6811
+ height: max-content;
6812
+ width: 100%;
6819
6813
  }
6820
6814
 
6821
6815
  .grid-wrap-300,
6822
6816
  .grid-wrap-300-fit {
6823
- grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)) !important;
6824
- height: max-content !important;
6825
- width: 100% !important;
6817
+ grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
6818
+ height: max-content;
6819
+ width: 100%;
6826
6820
  }
6827
6821
 
6828
6822
  .grid-wrap-350,
6829
6823
  .grid-wrap-350-fit {
6830
- grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr)) !important;
6831
- height: max-content !important;
6832
- width: 100% !important;
6824
+ grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
6825
+ height: max-content;
6826
+ width: 100%;
6833
6827
  }
6834
6828
 
6835
6829
  .grid-wrap-400,
6836
6830
  .grid-wrap-400-fit {
6837
- grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr)) !important;
6838
- height: max-content !important;
6839
- width: 100% !important;
6831
+ grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
6832
+ height: max-content;
6833
+ width: 100%;
6840
6834
  }
6841
6835
 
6842
6836
  .grid-wrap-450,
6843
6837
  .grid-wrap-450-fit {
6844
- grid-template-columns: repeat(auto-fit, minmax(min(450px, 100%), 1fr)) !important;
6845
- height: max-content !important;
6846
- width: 100% !important;
6838
+ grid-template-columns: repeat(auto-fit, minmax(min(450px, 100%), 1fr));
6839
+ height: max-content;
6840
+ width: 100%;
6847
6841
  }
6848
6842
 
6849
6843
  .grid-wrap-500,
6850
6844
  .grid-wrap-500-fit {
6851
- grid-template-columns: repeat(auto-fit, minmax(min(500px, 100%), 1fr)) !important;
6852
- height: max-content !important;
6853
- width: 100% !important;
6845
+ grid-template-columns: repeat(auto-fit, minmax(min(500px, 100%), 1fr));
6846
+ height: max-content;
6847
+ width: 100%;
6854
6848
  }
6855
6849
 
6856
6850
  .grid-wrap-550,
6857
6851
  .grid-wrap-550-fit {
6858
- grid-template-columns: repeat(auto-fit, minmax(min(550px, 100%), 1fr)) !important;
6859
- height: max-content !important;
6860
- width: 100% !important;
6852
+ grid-template-columns: repeat(auto-fit, minmax(min(550px, 100%), 1fr));
6853
+ height: max-content;
6854
+ width: 100%;
6861
6855
  }
6862
6856
 
6863
6857
  .grid-wrap-600,
6864
6858
  .grid-wrap-600-fit {
6865
- grid-template-columns: repeat(auto-fit, minmax(min(600px, 100%), 1fr)) !important;
6866
- height: max-content !important;
6867
- width: 100% !important;
6859
+ grid-template-columns: repeat(auto-fit, minmax(min(600px, 100%), 1fr));
6860
+ height: max-content;
6861
+ width: 100%;
6868
6862
  }
6869
6863
 
6870
6864
  .grid-wrap-650,
6871
6865
  .grid-wrap-650-fit {
6872
- grid-template-columns: repeat(auto-fit, minmax(min(650px, 100%), 1fr)) !important;
6873
- height: max-content !important;
6874
- width: 100% !important;
6866
+ grid-template-columns: repeat(auto-fit, minmax(min(650px, 100%), 1fr));
6867
+ height: max-content;
6868
+ width: 100%;
6875
6869
  }
6876
6870
 
6877
6871
  .grid-wrap-700,
6878
6872
  .grid-wrap-700-fit {
6879
- grid-template-columns: repeat(auto-fit, minmax(min(700px, 100%), 1fr)) !important;
6880
- height: max-content !important;
6881
- width: 100% !important;
6873
+ grid-template-columns: repeat(auto-fit, minmax(min(700px, 100%), 1fr));
6874
+ height: max-content;
6875
+ width: 100%;
6882
6876
  }
6883
6877
 
6884
6878
  .grid-wrap-750,
6885
6879
  .grid-wrap-750-fit {
6886
- grid-template-columns: repeat(auto-fit, minmax(min(750px, 100%), 1fr)) !important;
6887
- height: max-content !important;
6888
- width: 100% !important;
6880
+ grid-template-columns: repeat(auto-fit, minmax(min(750px, 100%), 1fr));
6881
+ height: max-content;
6882
+ width: 100%;
6889
6883
  }
6890
6884
 
6891
6885
  .grid-wrap-800,
6892
6886
  .grid-wrap-800-fit {
6893
- grid-template-columns: repeat(auto-fit, minmax(min(800px, 100%), 1fr)) !important;
6894
- height: max-content !important;
6895
- width: 100% !important;
6887
+ grid-template-columns: repeat(auto-fit, minmax(min(800px, 100%), 1fr));
6888
+ height: max-content;
6889
+ width: 100%;
6896
6890
  }
6897
6891
 
6898
6892
  .grid-wrap-850,
6899
6893
  .grid-wrap-850-fit {
6900
- grid-template-columns: repeat(auto-fit, minmax(min(850px, 100%), 1fr)) !important;
6901
- height: max-content !important;
6902
- width: 100% !important;
6894
+ grid-template-columns: repeat(auto-fit, minmax(min(850px, 100%), 1fr));
6895
+ height: max-content;
6896
+ width: 100%;
6903
6897
  }
6904
6898
 
6905
6899
  .grid-wrap-900,
6906
6900
  .grid-wrap-900-fit {
6907
- grid-template-columns: repeat(auto-fit, minmax(min(900px, 100%), 1fr)) !important;
6908
- height: max-content !important;
6909
- width: 100% !important;
6901
+ grid-template-columns: repeat(auto-fit, minmax(min(900px, 100%), 1fr));
6902
+ height: max-content;
6903
+ width: 100%;
6910
6904
  }
6911
6905
 
6912
6906
  .grid-wrap-950,
6913
6907
  .grid-wrap-950-fit {
6914
- grid-template-columns: repeat(auto-fit, minmax(min(950px, 100%), 1fr)) !important;
6915
- height: max-content !important;
6916
- width: 100% !important;
6908
+ grid-template-columns: repeat(auto-fit, minmax(min(950px, 100%), 1fr));
6909
+ height: max-content;
6910
+ width: 100%;
6917
6911
  }
6918
6912
 
6919
6913
  .grid-wrap-1000,
6920
6914
  .grid-wrap-1000-fit {
6921
- grid-template-columns: repeat(auto-fit, minmax(min(1000px, 100%), 1fr)) !important;
6922
- height: max-content !important;
6923
- width: 100% !important;
6915
+ grid-template-columns: repeat(auto-fit, minmax(min(1000px, 100%), 1fr));
6916
+ height: max-content;
6917
+ width: 100%;
6924
6918
  }
6925
6919
 
6926
6920
  .grid-wrap-50-fill {
6927
- grid-template-columns: repeat(auto-fill, minmax(min(50px, 100%), 1fr)) !important;
6921
+ grid-template-columns: repeat(auto-fill, minmax(min(50px, 100%), 1fr));
6928
6922
  }
6929
6923
 
6930
6924
  .grid-wrap-100-fill {
6931
- grid-template-columns: repeat(auto-fill, minmax(min(100px, 100%), 1fr)) !important;
6925
+ grid-template-columns: repeat(auto-fill, minmax(min(100px, 100%), 1fr));
6932
6926
  }
6933
6927
 
6934
6928
  .grid-wrap-150-fill {
6935
- grid-template-columns: repeat(auto-fill, minmax(min(150px, 100%), 1fr)) !important;
6929
+ grid-template-columns: repeat(auto-fill, minmax(min(150px, 100%), 1fr));
6936
6930
  }
6937
6931
 
6938
6932
  .grid-wrap-200-fill {
6939
- grid-template-columns: repeat(auto-fill, minmax(min(200px, 100%), 1fr)) !important;
6933
+ grid-template-columns: repeat(auto-fill, minmax(min(200px, 100%), 1fr));
6940
6934
  }
6941
6935
 
6942
6936
  .grid-wrap-250-fill {
6943
- grid-template-columns: repeat(auto-fill, minmax(min(250px, 100%), 1fr)) !important;
6937
+ grid-template-columns: repeat(auto-fill, minmax(min(250px, 100%), 1fr));
6944
6938
  }
6945
6939
 
6946
6940
  .grid-wrap-300-fill {
6947
- grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr)) !important;
6941
+ grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
6948
6942
  }
6949
6943
 
6950
6944
  .grid-wrap-350-fill {
6951
- grid-template-columns: repeat(auto-fill, minmax(min(350px, 100%), 1fr)) !important;
6945
+ grid-template-columns: repeat(auto-fill, minmax(min(350px, 100%), 1fr));
6952
6946
  }
6953
6947
 
6954
6948
  .grid-wrap-400-fill {
6955
- grid-template-columns: repeat(auto-fill, minmax(min(400px, 100%), 1fr)) !important;
6949
+ grid-template-columns: repeat(auto-fill, minmax(min(400px, 100%), 1fr));
6956
6950
  }
6957
6951
 
6958
6952
  .grid-wrap-450-fill {
6959
- grid-template-columns: repeat(auto-fill, minmax(min(450px, 100%), 1fr)) !important;
6953
+ grid-template-columns: repeat(auto-fill, minmax(min(450px, 100%), 1fr));
6960
6954
  }
6961
6955
 
6962
6956
  .grid-wrap-500-fill {
6963
- grid-template-columns: repeat(auto-fill, minmax(min(500px, 100%), 1fr)) !important;
6957
+ grid-template-columns: repeat(auto-fill, minmax(min(500px, 100%), 1fr));
6964
6958
  }
6965
6959
 
6966
6960
  .grid-wrap-550-fill {
6967
- grid-template-columns: repeat(auto-fill, minmax(min(550px, 100%), 1fr)) !important;
6961
+ grid-template-columns: repeat(auto-fill, minmax(min(550px, 100%), 1fr));
6968
6962
  }
6969
6963
 
6970
6964
  .grid-wrap-600-fill {
6971
- grid-template-columns: repeat(auto-fill, minmax(min(600px, 100%), 1fr)) !important;
6965
+ grid-template-columns: repeat(auto-fill, minmax(min(600px, 100%), 1fr));
6972
6966
  }
6973
6967
 
6974
6968
  .grid-wrap-650-fill {
6975
- grid-template-columns: repeat(auto-fill, minmax(min(650px, 100%), 1fr)) !important;
6969
+ grid-template-columns: repeat(auto-fill, minmax(min(650px, 100%), 1fr));
6976
6970
  }
6977
6971
 
6978
6972
  .grid-wrap-700-fill {
6979
- grid-template-columns: repeat(auto-fill, minmax(min(700px, 100%), 1fr)) !important;
6973
+ grid-template-columns: repeat(auto-fill, minmax(min(700px, 100%), 1fr));
6980
6974
  }
6981
6975
 
6982
6976
  .grid-wrap-750-fill {
6983
- grid-template-columns: repeat(auto-fill, minmax(min(750px, 100%), 1fr)) !important;
6977
+ grid-template-columns: repeat(auto-fill, minmax(min(750px, 100%), 1fr));
6984
6978
  }
6985
6979
 
6986
6980
  .grid-wrap-800-fill {
6987
- grid-template-columns: repeat(auto-fill, minmax(min(800px, 100%), 1fr)) !important;
6981
+ grid-template-columns: repeat(auto-fill, minmax(min(800px, 100%), 1fr));
6988
6982
  }
6989
6983
 
6990
6984
  .grid-wrap-850-fill {
6991
- grid-template-columns: repeat(auto-fill, minmax(min(850px, 100%), 1fr)) !important;
6985
+ grid-template-columns: repeat(auto-fill, minmax(min(850px, 100%), 1fr));
6992
6986
  }
6993
6987
 
6994
6988
  .grid-wrap-900-fill {
6995
- grid-template-columns: repeat(auto-fill, minmax(min(900px, 100%), 1fr)) !important;
6989
+ grid-template-columns: repeat(auto-fill, minmax(min(900px, 100%), 1fr));
6996
6990
  }
6997
6991
 
6998
6992
  .grid-wrap-950-fill {
6999
- grid-template-columns: repeat(auto-fill, minmax(min(950px, 100%), 1fr)) !important;
6993
+ grid-template-columns: repeat(auto-fill, minmax(min(950px, 100%), 1fr));
7000
6994
  }
7001
6995
 
7002
6996
  .grid-wrap-1000-fill {
7003
- grid-template-columns: repeat(auto-fill, minmax(min(1000px, 100%), 1fr)) !important;
6997
+ grid-template-columns: repeat(auto-fill, minmax(min(1000px, 100%), 1fr));
7004
6998
  }
7005
6999
 
7006
7000
  .grid-wrap-1 {
7007
- grid-template-columns: repeat(1, 1fr) !important;
7008
- height: max-content !important;
7001
+ grid-template-columns: repeat(1, 1fr);
7002
+ height: max-content;
7009
7003
  }
7010
7004
 
7011
7005
  .grid-wrap-2 {
7012
- grid-template-columns: repeat(2, 1fr) !important;
7006
+ grid-template-columns: repeat(2, 1fr);
7013
7007
  height: max-content;
7014
7008
  }
7015
7009
 
7016
7010
  .grid-wrap-3 {
7017
- grid-template-columns: repeat(3, 1fr) !important;
7011
+ grid-template-columns: repeat(3, 1fr);
7018
7012
  height: max-content;
7019
7013
  }
7020
7014
 
7021
7015
  .grid-wrap-4 {
7022
- grid-template-columns: repeat(4, 1fr) !important;
7016
+ grid-template-columns: repeat(4, 1fr);
7023
7017
  height: max-content;
7024
7018
  }
7025
7019
 
7026
7020
  .grid-wrap-5 {
7027
- grid-template-columns: repeat(5, 1fr) !important;
7021
+ grid-template-columns: repeat(5, 1fr);
7028
7022
  height: max-content;
7029
7023
  }
7030
7024
 
7031
7025
  .grid-wrap-6 {
7032
- grid-template-columns: repeat(6, 1fr) !important;
7026
+ grid-template-columns: repeat(6, 1fr);
7033
7027
  height: max-content;
7034
7028
  }
7035
7029
 
7036
7030
  .grid-wrap-7 {
7037
- grid-template-columns: repeat(7, 1fr) !important;
7031
+ grid-template-columns: repeat(7, 1fr);
7038
7032
  height: max-content;
7039
7033
  }
7040
7034
 
7041
7035
  .grid-wrap-8 {
7042
- grid-template-columns: repeat(8, 1fr) !important;
7036
+ grid-template-columns: repeat(8, 1fr);
7043
7037
  height: max-content;
7044
7038
  }
7045
7039
 
7046
7040
  .grid-wrap-9 {
7047
- grid-template-columns: repeat(9, 1fr) !important;
7041
+ grid-template-columns: repeat(9, 1fr);
7048
7042
  height: max-content;
7049
7043
  }
7050
7044
 
7051
7045
  .grid-wrap-10 {
7052
- grid-template-columns: repeat(10, 1fr) !important;
7046
+ grid-template-columns: repeat(10, 1fr);
7053
7047
  height: max-content;
7054
7048
  }
7055
7049
 
7056
7050
  .grid-wrap-11 {
7057
- grid-template-columns: repeat(11, 1fr) !important;
7051
+ grid-template-columns: repeat(11, 1fr);
7058
7052
  height: max-content;
7059
7053
  }
7060
7054
 
7061
7055
  .grid-wrap-12 {
7062
- grid-template-columns: repeat(12, 1fr) !important;
7056
+ grid-template-columns: repeat(12, 1fr);
7063
7057
  height: max-content;
7064
7058
  }
7065
7059
 
7066
7060
  .grid-span-all,
7067
7061
  .span-all {
7068
- grid-column: 1 / -1 !important;
7062
+ grid-column: 1 / -1;
7069
7063
  }
7070
7064
 
7071
7065
  .grid-span-1,
7072
7066
  .span-1 {
7073
- grid-column: span 1 !important;
7067
+ grid-column: span 1;
7074
7068
  }
7075
7069
 
7076
7070
  .grid-span-2,
7077
7071
  .span-2 {
7078
- grid-column: span 2 !important;
7072
+ grid-column: span 2;
7079
7073
  }
7080
7074
 
7081
7075
  .grid-span-3,
7082
7076
  .span-3 {
7083
- grid-column: span 3 !important;
7077
+ grid-column: span 3;
7084
7078
  }
7085
7079
 
7086
7080
  .grid-span-4,
7087
7081
  .span-4 {
7088
- grid-column: span 4 !important;
7082
+ grid-column: span 4;
7089
7083
  }
7090
7084
 
7091
7085
  .grid-span-5,
7092
7086
  .span-5 {
7093
- grid-column: span 5 !important;
7087
+ grid-column: span 5;
7094
7088
  }
7095
7089
 
7096
7090
  .grid-span-6,
7097
7091
  .span-6 {
7098
- grid-column: span 6 !important;
7092
+ grid-column: span 6;
7099
7093
  }
7100
7094
 
7101
7095
  .grid-span-7,
7102
7096
  .span-7 {
7103
- grid-column: span 7 !important;
7097
+ grid-column: span 7;
7104
7098
  }
7105
7099
 
7106
7100
  .grid-span-8,
7107
7101
  .span-8 {
7108
- grid-column: span 8 !important;
7102
+ grid-column: span 8;
7109
7103
  }
7110
7104
 
7111
7105
  .grid-span-9,
7112
7106
  .span-9 {
7113
- grid-column: span 9 !important;
7107
+ grid-column: span 9;
7114
7108
  }
7115
7109
 
7116
7110
  .grid-span-10,
7117
7111
  .span-10 {
7118
- grid-column: span 10 !important;
7112
+ grid-column: span 10;
7119
7113
  }
7120
7114
 
7121
7115
  .grid-span-11,
7122
7116
  .span-11 {
7123
- grid-column: span 11 !important;
7117
+ grid-column: span 11;
7124
7118
  }
7125
7119
 
7126
7120
  .grid-span-12,
7127
7121
  .span-12 {
7128
- grid-column: span 12 !important;
7122
+ grid-column: span 12;
7129
7123
  }
7130
7124
 
7131
7125
  .grid-span-row-1,
7132
7126
  .span-row-1 {
7133
- grid-row: span 1 !important;
7127
+ grid-row: span 1;
7134
7128
  }
7135
7129
 
7136
7130
  .grid-span-row-2,
7137
7131
  .span-row-2 {
7138
- grid-row: span 2 !important;
7132
+ grid-row: span 2;
7139
7133
  }
7140
7134
 
7141
7135
  .grid-span-row-3,
7142
7136
  .span-row-3 {
7143
- grid-row: span 3 !important;
7137
+ grid-row: span 3;
7144
7138
  }
7145
7139
 
7146
7140
  .grid-span-row-4,
7147
7141
  .span-row-4 {
7148
- grid-row: span 4 !important;
7142
+ grid-row: span 4;
7149
7143
  }
7150
7144
 
7151
7145
  .grid-span-row-5,
7152
7146
  .span-row-5 {
7153
- grid-row: span 5 !important;
7147
+ grid-row: span 5;
7154
7148
  }
7155
7149
 
7156
7150
  .grid-span-row-6,
7157
7151
  .span-row-6 {
7158
- grid-row: span 6 !important;
7152
+ grid-row: span 6;
7159
7153
  }
7160
7154
 
7161
7155
  .grid-span-row-7,
7162
7156
  .span-row-7 {
7163
- grid-row: span 7 !important;
7157
+ grid-row: span 7;
7164
7158
  }
7165
7159
 
7166
7160
  .grid-span-row-8,
7167
7161
  .span-row-8 {
7168
- grid-row: span 8 !important;
7162
+ grid-row: span 8;
7169
7163
  }
7170
7164
 
7171
7165
  .grid-span-row-9,
7172
7166
  .span-row-9 {
7173
- grid-row: span 9 !important;
7167
+ grid-row: span 9;
7174
7168
  }
7175
7169
 
7176
7170
  .grid-span-row-10 {
7177
- grid-row: span 10 !important;
7171
+ grid-row: span 10;
7178
7172
  }
7179
7173
 
7180
7174
  .grid-span-row-11,
7181
7175
  .span-row-11 {
7182
- grid-row: span 11 !important;
7176
+ grid-row: span 11;
7183
7177
  }
7184
7178
 
7185
7179
  .grid-span-row-12,
7186
7180
  .span-row-12 {
7187
- grid-row: span 12 !important;
7181
+ grid-row: span 12;
7188
7182
  }
7189
7183
 
7190
7184
  .overflow-hidden {
7191
- overflow: hidden !important;
7185
+ overflow: hidden;
7192
7186
  }
7193
7187
 
7194
7188
  .overflow,
7195
7189
  .overflow-auto {
7196
- overflow: auto !important;
7190
+ overflow: auto;
7197
7191
  }
7198
7192
 
7199
7193
  .overflow-unset {
7200
- overflow: unset !important;
7194
+ overflow: unset;
7201
7195
  }
7202
7196
 
7203
7197
  .overflow-scroll {
7204
- overflow: scroll !important;
7198
+ overflow: scroll;
7205
7199
  }
7206
7200
 
7207
7201
  .overflow-x-scroll {
7208
- overflow-x: scroll !important;
7202
+ overflow-x: scroll;
7209
7203
  }
7210
7204
 
7211
7205
  .overflow-y-scroll {
7212
- overflow-y: scroll !important;
7206
+ overflow-y: scroll;
7213
7207
  }
7214
7208
 
7215
7209
  .overflow-x {
7216
- overflow-x: auto !important;
7210
+ overflow-x: auto;
7217
7211
  }
7218
7212
 
7219
7213
  .overflow-y {
7220
- overflow-y: auto !important;
7214
+ overflow-y: auto;
7221
7215
  }
7222
7216
 
7223
7217
  .overflow-x-hidden {
7224
- overflow-x: hidden !important;
7218
+ overflow-x: hidden;
7225
7219
  }
7226
7220
 
7227
7221
  .overflow-y-hidden {
7228
- overflow-y: hidden !important;
7222
+ overflow-y: hidden;
7229
7223
  }
7230
7224
 
7231
7225
  .line {
7232
- background: var(--bgl-border-color) !important;
7233
- height: 1px !important;
7234
- width: 100% !important;
7226
+ background: var(--bgl-border-color);
7227
+ height: 1px;
7228
+ width: 100%;
7235
7229
  }
7236
7230
 
7237
7231
  .var-line {
7238
- background: var(--bgl-border-color) !important;
7239
- width: 1px !important;
7240
- height: 100% !important;
7232
+ background: var(--bgl-border-color);
7233
+ width: 1px;
7234
+ height: 100%;
7241
7235
  }
7242
7236
 
7243
7237
  .ltr,
7244
7238
  .direction-ltr {
7245
- direction: ltr !important;
7239
+ direction: ltr;
7246
7240
  }
7247
7241
 
7248
7242
  .rtl,
7249
7243
  .direction-rtl {
7250
- direction: rtl !important;
7244
+ direction: rtl;
7251
7245
  }
7252
7246
 
7253
7247
  .inset-0,
7254
7248
  .inset {
7255
- inset: 0 !important;
7249
+ inset: 0;
7256
7250
  }
7257
7251
 
7258
7252
  .inset-1 {
7259
- inset: 1rem !important;
7253
+ inset: 1rem;
7260
7254
  }
7261
7255
 
7262
7256
  .inset-2 {
7263
- inset: 2rem !important;
7257
+ inset: 2rem;
7264
7258
  }
7265
7259
 
7266
7260
  .inset-3 {
7267
- inset: 3rem !important;
7261
+ inset: 3rem;
7268
7262
  }
7269
7263
 
7270
7264
  .inset-4 {
7271
- inset: 4rem !important;
7265
+ inset: 4rem;
7272
7266
  }
7273
7267
 
7274
7268
  .inset-5 {
7275
- inset: 5rem !important;
7269
+ inset: 5rem;
7276
7270
  }
7277
7271
 
7278
7272
  .inset-6 {
7279
- inset: 6rem !important;
7273
+ inset: 6rem;
7280
7274
  }
7281
7275
 
7282
7276
  .inset-7 {
7283
- inset: 7rem !important;
7277
+ inset: 7rem;
7284
7278
  }
7285
7279
 
7286
7280
  .inset-8 {
7287
- inset: 8rem !important;
7281
+ inset: 8rem;
7288
7282
  }
7289
7283
 
7290
7284
  .inset-9 {
7291
- inset: 9rem !important;
7285
+ inset: 9rem;
7292
7286
  }
7293
7287
 
7294
7288
  .inset-10 {
7295
- inset: 10rem !important;
7289
+ inset: 10rem;
7296
7290
  }
7297
7291
 
7298
7292
  @media screen and (max-width: 910px) {
7299
7293
  .grid-wrap-2 {
7300
- grid-template-columns: repeat(1, 1fr) !important;
7294
+ grid-template-columns: repeat(1, 1fr);
7301
7295
  }
7302
7296
 
7303
7297
  .grid-wrap-3 {
7304
- grid-template-columns: repeat(1, 1fr) !important;
7298
+ grid-template-columns: repeat(1, 1fr);
7305
7299
  }
7306
7300
 
7307
7301
  .grid-wrap-4 {
7308
- grid-template-columns: repeat(1, 1fr) !important;
7302
+ grid-template-columns: repeat(1, 1fr);
7309
7303
  }
7310
7304
 
7311
7305
  .grid-wrap-5 {
7312
- grid-template-columns: repeat(1, 1fr) !important;
7306
+ grid-template-columns: repeat(1, 1fr);
7313
7307
  }
7314
7308
 
7315
7309
  .grid-wrap-6 {
7316
- grid-template-columns: repeat(2, 1fr) !important;
7310
+ grid-template-columns: repeat(2, 1fr);
7317
7311
  }
7318
7312
 
7319
7313
  .grid-wrap-7 {
7320
- grid-template-columns: repeat(3, 1fr) !important;
7314
+ grid-template-columns: repeat(3, 1fr);
7321
7315
  }
7322
7316
 
7323
7317
  .grid-wrap-8 {
7324
- grid-template-columns: repeat(4, 1fr) !important;
7318
+ grid-template-columns: repeat(4, 1fr);
7325
7319
  }
7326
7320
  }
7327
7321