@openeuropa/bcl-theme-default 1.10.0 → 1.10.1
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.
- package/css/oe-bcl-ckeditor5.min.css +1 -1
- package/css/oe-bcl-ckeditor5.min.css.map +1 -1
- package/css/oe-bcl-default.css +896 -1
- package/css/oe-bcl-default.css.map +1 -1
- package/css/oe-bcl-default.min.css +1 -1
- package/css/oe-bcl-default.min.css.map +1 -1
- package/js/oe-bcl-default.bundle.js +107 -60
- package/js/oe-bcl-default.bundle.js.map +1 -1
- package/js/oe-bcl-default.bundle.min.js +1 -1
- package/js/oe-bcl-default.bundle.min.js.map +1 -1
- package/js/oe-bcl-default.esm.js +107 -60
- package/js/oe-bcl-default.esm.js.map +1 -1
- package/js/oe-bcl-default.esm.min.js +1 -1
- package/js/oe-bcl-default.esm.min.js.map +1 -1
- package/js/oe-bcl-default.umd.js +107 -60
- package/js/oe-bcl-default.umd.js.map +1 -1
- package/js/oe-bcl-default.umd.min.js +1 -1
- package/js/oe-bcl-default.umd.min.js.map +1 -1
- package/package.json +8 -7
- package/src/js/accessible-toggle/accessible-toggle.js +11 -3
- package/src/js/gallery/gallery.js +118 -62
- package/src/scss/_accordion.scss +4 -0
- package/src/scss/_multiselect-2.scss +1 -1
- package/src/scss/_multiselect.scss +21 -0
- package/src/scss/_timeline.scss +2 -0
- package/src/scss/base/_variables.scss +2 -3
- package/templates/bcl-accordion/accordion.html.twig +8 -3
- package/templates/bcl-dropdown/dropdown.html.twig +1 -1
- package/templates/bcl-file/file-translations.html.twig +2 -2
- package/templates/bcl-gallery/gallery-item.html.twig +1 -0
- package/templates/bcl-gallery/gallery.html.twig +2 -2
- package/templates/bcl-inpage-navigation/inpage-navigation.html.twig +4 -4
- package/templates/bcl-language-switcher/language-switcher.html.twig +2 -2
- package/templates/bcl-modal/modal.html.twig +2 -2
- package/templates/bcl-timeline/timeline.html.twig +2 -2
package/css/oe-bcl-default.css
CHANGED
|
@@ -9232,6 +9232,30 @@ svg {
|
|
|
9232
9232
|
margin: -3rem !important;
|
|
9233
9233
|
}
|
|
9234
9234
|
|
|
9235
|
+
.m-n1-5 {
|
|
9236
|
+
margin: -0.375rem !important;
|
|
9237
|
+
}
|
|
9238
|
+
|
|
9239
|
+
.m-n2-5 {
|
|
9240
|
+
margin: -0.75rem !important;
|
|
9241
|
+
}
|
|
9242
|
+
|
|
9243
|
+
.m-n3-5 {
|
|
9244
|
+
margin: -1.25rem !important;
|
|
9245
|
+
}
|
|
9246
|
+
|
|
9247
|
+
.m-n4-25 {
|
|
9248
|
+
margin: -1.75rem !important;
|
|
9249
|
+
}
|
|
9250
|
+
|
|
9251
|
+
.m-n4-5 {
|
|
9252
|
+
margin: -2rem !important;
|
|
9253
|
+
}
|
|
9254
|
+
|
|
9255
|
+
.m-n4-75 {
|
|
9256
|
+
margin: -2.5rem !important;
|
|
9257
|
+
}
|
|
9258
|
+
|
|
9235
9259
|
.mx-n1 {
|
|
9236
9260
|
margin-right: -0.25rem !important;
|
|
9237
9261
|
margin-left: -0.25rem !important;
|
|
@@ -9257,6 +9281,36 @@ svg {
|
|
|
9257
9281
|
margin-left: -3rem !important;
|
|
9258
9282
|
}
|
|
9259
9283
|
|
|
9284
|
+
.mx-n1-5 {
|
|
9285
|
+
margin-right: -0.375rem !important;
|
|
9286
|
+
margin-left: -0.375rem !important;
|
|
9287
|
+
}
|
|
9288
|
+
|
|
9289
|
+
.mx-n2-5 {
|
|
9290
|
+
margin-right: -0.75rem !important;
|
|
9291
|
+
margin-left: -0.75rem !important;
|
|
9292
|
+
}
|
|
9293
|
+
|
|
9294
|
+
.mx-n3-5 {
|
|
9295
|
+
margin-right: -1.25rem !important;
|
|
9296
|
+
margin-left: -1.25rem !important;
|
|
9297
|
+
}
|
|
9298
|
+
|
|
9299
|
+
.mx-n4-25 {
|
|
9300
|
+
margin-right: -1.75rem !important;
|
|
9301
|
+
margin-left: -1.75rem !important;
|
|
9302
|
+
}
|
|
9303
|
+
|
|
9304
|
+
.mx-n4-5 {
|
|
9305
|
+
margin-right: -2rem !important;
|
|
9306
|
+
margin-left: -2rem !important;
|
|
9307
|
+
}
|
|
9308
|
+
|
|
9309
|
+
.mx-n4-75 {
|
|
9310
|
+
margin-right: -2.5rem !important;
|
|
9311
|
+
margin-left: -2.5rem !important;
|
|
9312
|
+
}
|
|
9313
|
+
|
|
9260
9314
|
.my-n1 {
|
|
9261
9315
|
margin-top: -0.25rem !important;
|
|
9262
9316
|
margin-bottom: -0.25rem !important;
|
|
@@ -9282,6 +9336,36 @@ svg {
|
|
|
9282
9336
|
margin-bottom: -3rem !important;
|
|
9283
9337
|
}
|
|
9284
9338
|
|
|
9339
|
+
.my-n1-5 {
|
|
9340
|
+
margin-top: -0.375rem !important;
|
|
9341
|
+
margin-bottom: -0.375rem !important;
|
|
9342
|
+
}
|
|
9343
|
+
|
|
9344
|
+
.my-n2-5 {
|
|
9345
|
+
margin-top: -0.75rem !important;
|
|
9346
|
+
margin-bottom: -0.75rem !important;
|
|
9347
|
+
}
|
|
9348
|
+
|
|
9349
|
+
.my-n3-5 {
|
|
9350
|
+
margin-top: -1.25rem !important;
|
|
9351
|
+
margin-bottom: -1.25rem !important;
|
|
9352
|
+
}
|
|
9353
|
+
|
|
9354
|
+
.my-n4-25 {
|
|
9355
|
+
margin-top: -1.75rem !important;
|
|
9356
|
+
margin-bottom: -1.75rem !important;
|
|
9357
|
+
}
|
|
9358
|
+
|
|
9359
|
+
.my-n4-5 {
|
|
9360
|
+
margin-top: -2rem !important;
|
|
9361
|
+
margin-bottom: -2rem !important;
|
|
9362
|
+
}
|
|
9363
|
+
|
|
9364
|
+
.my-n4-75 {
|
|
9365
|
+
margin-top: -2.5rem !important;
|
|
9366
|
+
margin-bottom: -2.5rem !important;
|
|
9367
|
+
}
|
|
9368
|
+
|
|
9285
9369
|
.mt-n1 {
|
|
9286
9370
|
margin-top: -0.25rem !important;
|
|
9287
9371
|
}
|
|
@@ -9302,6 +9386,30 @@ svg {
|
|
|
9302
9386
|
margin-top: -3rem !important;
|
|
9303
9387
|
}
|
|
9304
9388
|
|
|
9389
|
+
.mt-n1-5 {
|
|
9390
|
+
margin-top: -0.375rem !important;
|
|
9391
|
+
}
|
|
9392
|
+
|
|
9393
|
+
.mt-n2-5 {
|
|
9394
|
+
margin-top: -0.75rem !important;
|
|
9395
|
+
}
|
|
9396
|
+
|
|
9397
|
+
.mt-n3-5 {
|
|
9398
|
+
margin-top: -1.25rem !important;
|
|
9399
|
+
}
|
|
9400
|
+
|
|
9401
|
+
.mt-n4-25 {
|
|
9402
|
+
margin-top: -1.75rem !important;
|
|
9403
|
+
}
|
|
9404
|
+
|
|
9405
|
+
.mt-n4-5 {
|
|
9406
|
+
margin-top: -2rem !important;
|
|
9407
|
+
}
|
|
9408
|
+
|
|
9409
|
+
.mt-n4-75 {
|
|
9410
|
+
margin-top: -2.5rem !important;
|
|
9411
|
+
}
|
|
9412
|
+
|
|
9305
9413
|
.me-n1 {
|
|
9306
9414
|
margin-right: -0.25rem !important;
|
|
9307
9415
|
}
|
|
@@ -9322,6 +9430,30 @@ svg {
|
|
|
9322
9430
|
margin-right: -3rem !important;
|
|
9323
9431
|
}
|
|
9324
9432
|
|
|
9433
|
+
.me-n1-5 {
|
|
9434
|
+
margin-right: -0.375rem !important;
|
|
9435
|
+
}
|
|
9436
|
+
|
|
9437
|
+
.me-n2-5 {
|
|
9438
|
+
margin-right: -0.75rem !important;
|
|
9439
|
+
}
|
|
9440
|
+
|
|
9441
|
+
.me-n3-5 {
|
|
9442
|
+
margin-right: -1.25rem !important;
|
|
9443
|
+
}
|
|
9444
|
+
|
|
9445
|
+
.me-n4-25 {
|
|
9446
|
+
margin-right: -1.75rem !important;
|
|
9447
|
+
}
|
|
9448
|
+
|
|
9449
|
+
.me-n4-5 {
|
|
9450
|
+
margin-right: -2rem !important;
|
|
9451
|
+
}
|
|
9452
|
+
|
|
9453
|
+
.me-n4-75 {
|
|
9454
|
+
margin-right: -2.5rem !important;
|
|
9455
|
+
}
|
|
9456
|
+
|
|
9325
9457
|
.mb-n1 {
|
|
9326
9458
|
margin-bottom: -0.25rem !important;
|
|
9327
9459
|
}
|
|
@@ -9342,6 +9474,30 @@ svg {
|
|
|
9342
9474
|
margin-bottom: -3rem !important;
|
|
9343
9475
|
}
|
|
9344
9476
|
|
|
9477
|
+
.mb-n1-5 {
|
|
9478
|
+
margin-bottom: -0.375rem !important;
|
|
9479
|
+
}
|
|
9480
|
+
|
|
9481
|
+
.mb-n2-5 {
|
|
9482
|
+
margin-bottom: -0.75rem !important;
|
|
9483
|
+
}
|
|
9484
|
+
|
|
9485
|
+
.mb-n3-5 {
|
|
9486
|
+
margin-bottom: -1.25rem !important;
|
|
9487
|
+
}
|
|
9488
|
+
|
|
9489
|
+
.mb-n4-25 {
|
|
9490
|
+
margin-bottom: -1.75rem !important;
|
|
9491
|
+
}
|
|
9492
|
+
|
|
9493
|
+
.mb-n4-5 {
|
|
9494
|
+
margin-bottom: -2rem !important;
|
|
9495
|
+
}
|
|
9496
|
+
|
|
9497
|
+
.mb-n4-75 {
|
|
9498
|
+
margin-bottom: -2.5rem !important;
|
|
9499
|
+
}
|
|
9500
|
+
|
|
9345
9501
|
.ms-n1 {
|
|
9346
9502
|
margin-left: -0.25rem !important;
|
|
9347
9503
|
}
|
|
@@ -9362,6 +9518,30 @@ svg {
|
|
|
9362
9518
|
margin-left: -3rem !important;
|
|
9363
9519
|
}
|
|
9364
9520
|
|
|
9521
|
+
.ms-n1-5 {
|
|
9522
|
+
margin-left: -0.375rem !important;
|
|
9523
|
+
}
|
|
9524
|
+
|
|
9525
|
+
.ms-n2-5 {
|
|
9526
|
+
margin-left: -0.75rem !important;
|
|
9527
|
+
}
|
|
9528
|
+
|
|
9529
|
+
.ms-n3-5 {
|
|
9530
|
+
margin-left: -1.25rem !important;
|
|
9531
|
+
}
|
|
9532
|
+
|
|
9533
|
+
.ms-n4-25 {
|
|
9534
|
+
margin-left: -1.75rem !important;
|
|
9535
|
+
}
|
|
9536
|
+
|
|
9537
|
+
.ms-n4-5 {
|
|
9538
|
+
margin-left: -2rem !important;
|
|
9539
|
+
}
|
|
9540
|
+
|
|
9541
|
+
.ms-n4-75 {
|
|
9542
|
+
margin-left: -2.5rem !important;
|
|
9543
|
+
}
|
|
9544
|
+
|
|
9365
9545
|
.p-0 {
|
|
9366
9546
|
padding: 0 !important;
|
|
9367
9547
|
}
|
|
@@ -11310,6 +11490,24 @@ svg {
|
|
|
11310
11490
|
.m-sm-n5 {
|
|
11311
11491
|
margin: -3rem !important;
|
|
11312
11492
|
}
|
|
11493
|
+
.m-sm-n1-5 {
|
|
11494
|
+
margin: -0.375rem !important;
|
|
11495
|
+
}
|
|
11496
|
+
.m-sm-n2-5 {
|
|
11497
|
+
margin: -0.75rem !important;
|
|
11498
|
+
}
|
|
11499
|
+
.m-sm-n3-5 {
|
|
11500
|
+
margin: -1.25rem !important;
|
|
11501
|
+
}
|
|
11502
|
+
.m-sm-n4-25 {
|
|
11503
|
+
margin: -1.75rem !important;
|
|
11504
|
+
}
|
|
11505
|
+
.m-sm-n4-5 {
|
|
11506
|
+
margin: -2rem !important;
|
|
11507
|
+
}
|
|
11508
|
+
.m-sm-n4-75 {
|
|
11509
|
+
margin: -2.5rem !important;
|
|
11510
|
+
}
|
|
11313
11511
|
.mx-sm-n1 {
|
|
11314
11512
|
margin-right: -0.25rem !important;
|
|
11315
11513
|
margin-left: -0.25rem !important;
|
|
@@ -11330,6 +11528,30 @@ svg {
|
|
|
11330
11528
|
margin-right: -3rem !important;
|
|
11331
11529
|
margin-left: -3rem !important;
|
|
11332
11530
|
}
|
|
11531
|
+
.mx-sm-n1-5 {
|
|
11532
|
+
margin-right: -0.375rem !important;
|
|
11533
|
+
margin-left: -0.375rem !important;
|
|
11534
|
+
}
|
|
11535
|
+
.mx-sm-n2-5 {
|
|
11536
|
+
margin-right: -0.75rem !important;
|
|
11537
|
+
margin-left: -0.75rem !important;
|
|
11538
|
+
}
|
|
11539
|
+
.mx-sm-n3-5 {
|
|
11540
|
+
margin-right: -1.25rem !important;
|
|
11541
|
+
margin-left: -1.25rem !important;
|
|
11542
|
+
}
|
|
11543
|
+
.mx-sm-n4-25 {
|
|
11544
|
+
margin-right: -1.75rem !important;
|
|
11545
|
+
margin-left: -1.75rem !important;
|
|
11546
|
+
}
|
|
11547
|
+
.mx-sm-n4-5 {
|
|
11548
|
+
margin-right: -2rem !important;
|
|
11549
|
+
margin-left: -2rem !important;
|
|
11550
|
+
}
|
|
11551
|
+
.mx-sm-n4-75 {
|
|
11552
|
+
margin-right: -2.5rem !important;
|
|
11553
|
+
margin-left: -2.5rem !important;
|
|
11554
|
+
}
|
|
11333
11555
|
.my-sm-n1 {
|
|
11334
11556
|
margin-top: -0.25rem !important;
|
|
11335
11557
|
margin-bottom: -0.25rem !important;
|
|
@@ -11350,6 +11572,30 @@ svg {
|
|
|
11350
11572
|
margin-top: -3rem !important;
|
|
11351
11573
|
margin-bottom: -3rem !important;
|
|
11352
11574
|
}
|
|
11575
|
+
.my-sm-n1-5 {
|
|
11576
|
+
margin-top: -0.375rem !important;
|
|
11577
|
+
margin-bottom: -0.375rem !important;
|
|
11578
|
+
}
|
|
11579
|
+
.my-sm-n2-5 {
|
|
11580
|
+
margin-top: -0.75rem !important;
|
|
11581
|
+
margin-bottom: -0.75rem !important;
|
|
11582
|
+
}
|
|
11583
|
+
.my-sm-n3-5 {
|
|
11584
|
+
margin-top: -1.25rem !important;
|
|
11585
|
+
margin-bottom: -1.25rem !important;
|
|
11586
|
+
}
|
|
11587
|
+
.my-sm-n4-25 {
|
|
11588
|
+
margin-top: -1.75rem !important;
|
|
11589
|
+
margin-bottom: -1.75rem !important;
|
|
11590
|
+
}
|
|
11591
|
+
.my-sm-n4-5 {
|
|
11592
|
+
margin-top: -2rem !important;
|
|
11593
|
+
margin-bottom: -2rem !important;
|
|
11594
|
+
}
|
|
11595
|
+
.my-sm-n4-75 {
|
|
11596
|
+
margin-top: -2.5rem !important;
|
|
11597
|
+
margin-bottom: -2.5rem !important;
|
|
11598
|
+
}
|
|
11353
11599
|
.mt-sm-n1 {
|
|
11354
11600
|
margin-top: -0.25rem !important;
|
|
11355
11601
|
}
|
|
@@ -11365,6 +11611,24 @@ svg {
|
|
|
11365
11611
|
.mt-sm-n5 {
|
|
11366
11612
|
margin-top: -3rem !important;
|
|
11367
11613
|
}
|
|
11614
|
+
.mt-sm-n1-5 {
|
|
11615
|
+
margin-top: -0.375rem !important;
|
|
11616
|
+
}
|
|
11617
|
+
.mt-sm-n2-5 {
|
|
11618
|
+
margin-top: -0.75rem !important;
|
|
11619
|
+
}
|
|
11620
|
+
.mt-sm-n3-5 {
|
|
11621
|
+
margin-top: -1.25rem !important;
|
|
11622
|
+
}
|
|
11623
|
+
.mt-sm-n4-25 {
|
|
11624
|
+
margin-top: -1.75rem !important;
|
|
11625
|
+
}
|
|
11626
|
+
.mt-sm-n4-5 {
|
|
11627
|
+
margin-top: -2rem !important;
|
|
11628
|
+
}
|
|
11629
|
+
.mt-sm-n4-75 {
|
|
11630
|
+
margin-top: -2.5rem !important;
|
|
11631
|
+
}
|
|
11368
11632
|
.me-sm-n1 {
|
|
11369
11633
|
margin-right: -0.25rem !important;
|
|
11370
11634
|
}
|
|
@@ -11380,6 +11644,24 @@ svg {
|
|
|
11380
11644
|
.me-sm-n5 {
|
|
11381
11645
|
margin-right: -3rem !important;
|
|
11382
11646
|
}
|
|
11647
|
+
.me-sm-n1-5 {
|
|
11648
|
+
margin-right: -0.375rem !important;
|
|
11649
|
+
}
|
|
11650
|
+
.me-sm-n2-5 {
|
|
11651
|
+
margin-right: -0.75rem !important;
|
|
11652
|
+
}
|
|
11653
|
+
.me-sm-n3-5 {
|
|
11654
|
+
margin-right: -1.25rem !important;
|
|
11655
|
+
}
|
|
11656
|
+
.me-sm-n4-25 {
|
|
11657
|
+
margin-right: -1.75rem !important;
|
|
11658
|
+
}
|
|
11659
|
+
.me-sm-n4-5 {
|
|
11660
|
+
margin-right: -2rem !important;
|
|
11661
|
+
}
|
|
11662
|
+
.me-sm-n4-75 {
|
|
11663
|
+
margin-right: -2.5rem !important;
|
|
11664
|
+
}
|
|
11383
11665
|
.mb-sm-n1 {
|
|
11384
11666
|
margin-bottom: -0.25rem !important;
|
|
11385
11667
|
}
|
|
@@ -11395,6 +11677,24 @@ svg {
|
|
|
11395
11677
|
.mb-sm-n5 {
|
|
11396
11678
|
margin-bottom: -3rem !important;
|
|
11397
11679
|
}
|
|
11680
|
+
.mb-sm-n1-5 {
|
|
11681
|
+
margin-bottom: -0.375rem !important;
|
|
11682
|
+
}
|
|
11683
|
+
.mb-sm-n2-5 {
|
|
11684
|
+
margin-bottom: -0.75rem !important;
|
|
11685
|
+
}
|
|
11686
|
+
.mb-sm-n3-5 {
|
|
11687
|
+
margin-bottom: -1.25rem !important;
|
|
11688
|
+
}
|
|
11689
|
+
.mb-sm-n4-25 {
|
|
11690
|
+
margin-bottom: -1.75rem !important;
|
|
11691
|
+
}
|
|
11692
|
+
.mb-sm-n4-5 {
|
|
11693
|
+
margin-bottom: -2rem !important;
|
|
11694
|
+
}
|
|
11695
|
+
.mb-sm-n4-75 {
|
|
11696
|
+
margin-bottom: -2.5rem !important;
|
|
11697
|
+
}
|
|
11398
11698
|
.ms-sm-n1 {
|
|
11399
11699
|
margin-left: -0.25rem !important;
|
|
11400
11700
|
}
|
|
@@ -11410,6 +11710,24 @@ svg {
|
|
|
11410
11710
|
.ms-sm-n5 {
|
|
11411
11711
|
margin-left: -3rem !important;
|
|
11412
11712
|
}
|
|
11713
|
+
.ms-sm-n1-5 {
|
|
11714
|
+
margin-left: -0.375rem !important;
|
|
11715
|
+
}
|
|
11716
|
+
.ms-sm-n2-5 {
|
|
11717
|
+
margin-left: -0.75rem !important;
|
|
11718
|
+
}
|
|
11719
|
+
.ms-sm-n3-5 {
|
|
11720
|
+
margin-left: -1.25rem !important;
|
|
11721
|
+
}
|
|
11722
|
+
.ms-sm-n4-25 {
|
|
11723
|
+
margin-left: -1.75rem !important;
|
|
11724
|
+
}
|
|
11725
|
+
.ms-sm-n4-5 {
|
|
11726
|
+
margin-left: -2rem !important;
|
|
11727
|
+
}
|
|
11728
|
+
.ms-sm-n4-75 {
|
|
11729
|
+
margin-left: -2.5rem !important;
|
|
11730
|
+
}
|
|
11413
11731
|
.p-sm-0 {
|
|
11414
11732
|
padding: 0 !important;
|
|
11415
11733
|
}
|
|
@@ -12410,6 +12728,24 @@ svg {
|
|
|
12410
12728
|
.m-md-n5 {
|
|
12411
12729
|
margin: -3rem !important;
|
|
12412
12730
|
}
|
|
12731
|
+
.m-md-n1-5 {
|
|
12732
|
+
margin: -0.375rem !important;
|
|
12733
|
+
}
|
|
12734
|
+
.m-md-n2-5 {
|
|
12735
|
+
margin: -0.75rem !important;
|
|
12736
|
+
}
|
|
12737
|
+
.m-md-n3-5 {
|
|
12738
|
+
margin: -1.25rem !important;
|
|
12739
|
+
}
|
|
12740
|
+
.m-md-n4-25 {
|
|
12741
|
+
margin: -1.75rem !important;
|
|
12742
|
+
}
|
|
12743
|
+
.m-md-n4-5 {
|
|
12744
|
+
margin: -2rem !important;
|
|
12745
|
+
}
|
|
12746
|
+
.m-md-n4-75 {
|
|
12747
|
+
margin: -2.5rem !important;
|
|
12748
|
+
}
|
|
12413
12749
|
.mx-md-n1 {
|
|
12414
12750
|
margin-right: -0.25rem !important;
|
|
12415
12751
|
margin-left: -0.25rem !important;
|
|
@@ -12430,6 +12766,30 @@ svg {
|
|
|
12430
12766
|
margin-right: -3rem !important;
|
|
12431
12767
|
margin-left: -3rem !important;
|
|
12432
12768
|
}
|
|
12769
|
+
.mx-md-n1-5 {
|
|
12770
|
+
margin-right: -0.375rem !important;
|
|
12771
|
+
margin-left: -0.375rem !important;
|
|
12772
|
+
}
|
|
12773
|
+
.mx-md-n2-5 {
|
|
12774
|
+
margin-right: -0.75rem !important;
|
|
12775
|
+
margin-left: -0.75rem !important;
|
|
12776
|
+
}
|
|
12777
|
+
.mx-md-n3-5 {
|
|
12778
|
+
margin-right: -1.25rem !important;
|
|
12779
|
+
margin-left: -1.25rem !important;
|
|
12780
|
+
}
|
|
12781
|
+
.mx-md-n4-25 {
|
|
12782
|
+
margin-right: -1.75rem !important;
|
|
12783
|
+
margin-left: -1.75rem !important;
|
|
12784
|
+
}
|
|
12785
|
+
.mx-md-n4-5 {
|
|
12786
|
+
margin-right: -2rem !important;
|
|
12787
|
+
margin-left: -2rem !important;
|
|
12788
|
+
}
|
|
12789
|
+
.mx-md-n4-75 {
|
|
12790
|
+
margin-right: -2.5rem !important;
|
|
12791
|
+
margin-left: -2.5rem !important;
|
|
12792
|
+
}
|
|
12433
12793
|
.my-md-n1 {
|
|
12434
12794
|
margin-top: -0.25rem !important;
|
|
12435
12795
|
margin-bottom: -0.25rem !important;
|
|
@@ -12450,6 +12810,30 @@ svg {
|
|
|
12450
12810
|
margin-top: -3rem !important;
|
|
12451
12811
|
margin-bottom: -3rem !important;
|
|
12452
12812
|
}
|
|
12813
|
+
.my-md-n1-5 {
|
|
12814
|
+
margin-top: -0.375rem !important;
|
|
12815
|
+
margin-bottom: -0.375rem !important;
|
|
12816
|
+
}
|
|
12817
|
+
.my-md-n2-5 {
|
|
12818
|
+
margin-top: -0.75rem !important;
|
|
12819
|
+
margin-bottom: -0.75rem !important;
|
|
12820
|
+
}
|
|
12821
|
+
.my-md-n3-5 {
|
|
12822
|
+
margin-top: -1.25rem !important;
|
|
12823
|
+
margin-bottom: -1.25rem !important;
|
|
12824
|
+
}
|
|
12825
|
+
.my-md-n4-25 {
|
|
12826
|
+
margin-top: -1.75rem !important;
|
|
12827
|
+
margin-bottom: -1.75rem !important;
|
|
12828
|
+
}
|
|
12829
|
+
.my-md-n4-5 {
|
|
12830
|
+
margin-top: -2rem !important;
|
|
12831
|
+
margin-bottom: -2rem !important;
|
|
12832
|
+
}
|
|
12833
|
+
.my-md-n4-75 {
|
|
12834
|
+
margin-top: -2.5rem !important;
|
|
12835
|
+
margin-bottom: -2.5rem !important;
|
|
12836
|
+
}
|
|
12453
12837
|
.mt-md-n1 {
|
|
12454
12838
|
margin-top: -0.25rem !important;
|
|
12455
12839
|
}
|
|
@@ -12465,6 +12849,24 @@ svg {
|
|
|
12465
12849
|
.mt-md-n5 {
|
|
12466
12850
|
margin-top: -3rem !important;
|
|
12467
12851
|
}
|
|
12852
|
+
.mt-md-n1-5 {
|
|
12853
|
+
margin-top: -0.375rem !important;
|
|
12854
|
+
}
|
|
12855
|
+
.mt-md-n2-5 {
|
|
12856
|
+
margin-top: -0.75rem !important;
|
|
12857
|
+
}
|
|
12858
|
+
.mt-md-n3-5 {
|
|
12859
|
+
margin-top: -1.25rem !important;
|
|
12860
|
+
}
|
|
12861
|
+
.mt-md-n4-25 {
|
|
12862
|
+
margin-top: -1.75rem !important;
|
|
12863
|
+
}
|
|
12864
|
+
.mt-md-n4-5 {
|
|
12865
|
+
margin-top: -2rem !important;
|
|
12866
|
+
}
|
|
12867
|
+
.mt-md-n4-75 {
|
|
12868
|
+
margin-top: -2.5rem !important;
|
|
12869
|
+
}
|
|
12468
12870
|
.me-md-n1 {
|
|
12469
12871
|
margin-right: -0.25rem !important;
|
|
12470
12872
|
}
|
|
@@ -12480,6 +12882,24 @@ svg {
|
|
|
12480
12882
|
.me-md-n5 {
|
|
12481
12883
|
margin-right: -3rem !important;
|
|
12482
12884
|
}
|
|
12885
|
+
.me-md-n1-5 {
|
|
12886
|
+
margin-right: -0.375rem !important;
|
|
12887
|
+
}
|
|
12888
|
+
.me-md-n2-5 {
|
|
12889
|
+
margin-right: -0.75rem !important;
|
|
12890
|
+
}
|
|
12891
|
+
.me-md-n3-5 {
|
|
12892
|
+
margin-right: -1.25rem !important;
|
|
12893
|
+
}
|
|
12894
|
+
.me-md-n4-25 {
|
|
12895
|
+
margin-right: -1.75rem !important;
|
|
12896
|
+
}
|
|
12897
|
+
.me-md-n4-5 {
|
|
12898
|
+
margin-right: -2rem !important;
|
|
12899
|
+
}
|
|
12900
|
+
.me-md-n4-75 {
|
|
12901
|
+
margin-right: -2.5rem !important;
|
|
12902
|
+
}
|
|
12483
12903
|
.mb-md-n1 {
|
|
12484
12904
|
margin-bottom: -0.25rem !important;
|
|
12485
12905
|
}
|
|
@@ -12495,6 +12915,24 @@ svg {
|
|
|
12495
12915
|
.mb-md-n5 {
|
|
12496
12916
|
margin-bottom: -3rem !important;
|
|
12497
12917
|
}
|
|
12918
|
+
.mb-md-n1-5 {
|
|
12919
|
+
margin-bottom: -0.375rem !important;
|
|
12920
|
+
}
|
|
12921
|
+
.mb-md-n2-5 {
|
|
12922
|
+
margin-bottom: -0.75rem !important;
|
|
12923
|
+
}
|
|
12924
|
+
.mb-md-n3-5 {
|
|
12925
|
+
margin-bottom: -1.25rem !important;
|
|
12926
|
+
}
|
|
12927
|
+
.mb-md-n4-25 {
|
|
12928
|
+
margin-bottom: -1.75rem !important;
|
|
12929
|
+
}
|
|
12930
|
+
.mb-md-n4-5 {
|
|
12931
|
+
margin-bottom: -2rem !important;
|
|
12932
|
+
}
|
|
12933
|
+
.mb-md-n4-75 {
|
|
12934
|
+
margin-bottom: -2.5rem !important;
|
|
12935
|
+
}
|
|
12498
12936
|
.ms-md-n1 {
|
|
12499
12937
|
margin-left: -0.25rem !important;
|
|
12500
12938
|
}
|
|
@@ -12510,6 +12948,24 @@ svg {
|
|
|
12510
12948
|
.ms-md-n5 {
|
|
12511
12949
|
margin-left: -3rem !important;
|
|
12512
12950
|
}
|
|
12951
|
+
.ms-md-n1-5 {
|
|
12952
|
+
margin-left: -0.375rem !important;
|
|
12953
|
+
}
|
|
12954
|
+
.ms-md-n2-5 {
|
|
12955
|
+
margin-left: -0.75rem !important;
|
|
12956
|
+
}
|
|
12957
|
+
.ms-md-n3-5 {
|
|
12958
|
+
margin-left: -1.25rem !important;
|
|
12959
|
+
}
|
|
12960
|
+
.ms-md-n4-25 {
|
|
12961
|
+
margin-left: -1.75rem !important;
|
|
12962
|
+
}
|
|
12963
|
+
.ms-md-n4-5 {
|
|
12964
|
+
margin-left: -2rem !important;
|
|
12965
|
+
}
|
|
12966
|
+
.ms-md-n4-75 {
|
|
12967
|
+
margin-left: -2.5rem !important;
|
|
12968
|
+
}
|
|
12513
12969
|
.p-md-0 {
|
|
12514
12970
|
padding: 0 !important;
|
|
12515
12971
|
}
|
|
@@ -13510,6 +13966,24 @@ svg {
|
|
|
13510
13966
|
.m-lg-n5 {
|
|
13511
13967
|
margin: -3rem !important;
|
|
13512
13968
|
}
|
|
13969
|
+
.m-lg-n1-5 {
|
|
13970
|
+
margin: -0.375rem !important;
|
|
13971
|
+
}
|
|
13972
|
+
.m-lg-n2-5 {
|
|
13973
|
+
margin: -0.75rem !important;
|
|
13974
|
+
}
|
|
13975
|
+
.m-lg-n3-5 {
|
|
13976
|
+
margin: -1.25rem !important;
|
|
13977
|
+
}
|
|
13978
|
+
.m-lg-n4-25 {
|
|
13979
|
+
margin: -1.75rem !important;
|
|
13980
|
+
}
|
|
13981
|
+
.m-lg-n4-5 {
|
|
13982
|
+
margin: -2rem !important;
|
|
13983
|
+
}
|
|
13984
|
+
.m-lg-n4-75 {
|
|
13985
|
+
margin: -2.5rem !important;
|
|
13986
|
+
}
|
|
13513
13987
|
.mx-lg-n1 {
|
|
13514
13988
|
margin-right: -0.25rem !important;
|
|
13515
13989
|
margin-left: -0.25rem !important;
|
|
@@ -13530,6 +14004,30 @@ svg {
|
|
|
13530
14004
|
margin-right: -3rem !important;
|
|
13531
14005
|
margin-left: -3rem !important;
|
|
13532
14006
|
}
|
|
14007
|
+
.mx-lg-n1-5 {
|
|
14008
|
+
margin-right: -0.375rem !important;
|
|
14009
|
+
margin-left: -0.375rem !important;
|
|
14010
|
+
}
|
|
14011
|
+
.mx-lg-n2-5 {
|
|
14012
|
+
margin-right: -0.75rem !important;
|
|
14013
|
+
margin-left: -0.75rem !important;
|
|
14014
|
+
}
|
|
14015
|
+
.mx-lg-n3-5 {
|
|
14016
|
+
margin-right: -1.25rem !important;
|
|
14017
|
+
margin-left: -1.25rem !important;
|
|
14018
|
+
}
|
|
14019
|
+
.mx-lg-n4-25 {
|
|
14020
|
+
margin-right: -1.75rem !important;
|
|
14021
|
+
margin-left: -1.75rem !important;
|
|
14022
|
+
}
|
|
14023
|
+
.mx-lg-n4-5 {
|
|
14024
|
+
margin-right: -2rem !important;
|
|
14025
|
+
margin-left: -2rem !important;
|
|
14026
|
+
}
|
|
14027
|
+
.mx-lg-n4-75 {
|
|
14028
|
+
margin-right: -2.5rem !important;
|
|
14029
|
+
margin-left: -2.5rem !important;
|
|
14030
|
+
}
|
|
13533
14031
|
.my-lg-n1 {
|
|
13534
14032
|
margin-top: -0.25rem !important;
|
|
13535
14033
|
margin-bottom: -0.25rem !important;
|
|
@@ -13550,6 +14048,30 @@ svg {
|
|
|
13550
14048
|
margin-top: -3rem !important;
|
|
13551
14049
|
margin-bottom: -3rem !important;
|
|
13552
14050
|
}
|
|
14051
|
+
.my-lg-n1-5 {
|
|
14052
|
+
margin-top: -0.375rem !important;
|
|
14053
|
+
margin-bottom: -0.375rem !important;
|
|
14054
|
+
}
|
|
14055
|
+
.my-lg-n2-5 {
|
|
14056
|
+
margin-top: -0.75rem !important;
|
|
14057
|
+
margin-bottom: -0.75rem !important;
|
|
14058
|
+
}
|
|
14059
|
+
.my-lg-n3-5 {
|
|
14060
|
+
margin-top: -1.25rem !important;
|
|
14061
|
+
margin-bottom: -1.25rem !important;
|
|
14062
|
+
}
|
|
14063
|
+
.my-lg-n4-25 {
|
|
14064
|
+
margin-top: -1.75rem !important;
|
|
14065
|
+
margin-bottom: -1.75rem !important;
|
|
14066
|
+
}
|
|
14067
|
+
.my-lg-n4-5 {
|
|
14068
|
+
margin-top: -2rem !important;
|
|
14069
|
+
margin-bottom: -2rem !important;
|
|
14070
|
+
}
|
|
14071
|
+
.my-lg-n4-75 {
|
|
14072
|
+
margin-top: -2.5rem !important;
|
|
14073
|
+
margin-bottom: -2.5rem !important;
|
|
14074
|
+
}
|
|
13553
14075
|
.mt-lg-n1 {
|
|
13554
14076
|
margin-top: -0.25rem !important;
|
|
13555
14077
|
}
|
|
@@ -13565,6 +14087,24 @@ svg {
|
|
|
13565
14087
|
.mt-lg-n5 {
|
|
13566
14088
|
margin-top: -3rem !important;
|
|
13567
14089
|
}
|
|
14090
|
+
.mt-lg-n1-5 {
|
|
14091
|
+
margin-top: -0.375rem !important;
|
|
14092
|
+
}
|
|
14093
|
+
.mt-lg-n2-5 {
|
|
14094
|
+
margin-top: -0.75rem !important;
|
|
14095
|
+
}
|
|
14096
|
+
.mt-lg-n3-5 {
|
|
14097
|
+
margin-top: -1.25rem !important;
|
|
14098
|
+
}
|
|
14099
|
+
.mt-lg-n4-25 {
|
|
14100
|
+
margin-top: -1.75rem !important;
|
|
14101
|
+
}
|
|
14102
|
+
.mt-lg-n4-5 {
|
|
14103
|
+
margin-top: -2rem !important;
|
|
14104
|
+
}
|
|
14105
|
+
.mt-lg-n4-75 {
|
|
14106
|
+
margin-top: -2.5rem !important;
|
|
14107
|
+
}
|
|
13568
14108
|
.me-lg-n1 {
|
|
13569
14109
|
margin-right: -0.25rem !important;
|
|
13570
14110
|
}
|
|
@@ -13580,6 +14120,24 @@ svg {
|
|
|
13580
14120
|
.me-lg-n5 {
|
|
13581
14121
|
margin-right: -3rem !important;
|
|
13582
14122
|
}
|
|
14123
|
+
.me-lg-n1-5 {
|
|
14124
|
+
margin-right: -0.375rem !important;
|
|
14125
|
+
}
|
|
14126
|
+
.me-lg-n2-5 {
|
|
14127
|
+
margin-right: -0.75rem !important;
|
|
14128
|
+
}
|
|
14129
|
+
.me-lg-n3-5 {
|
|
14130
|
+
margin-right: -1.25rem !important;
|
|
14131
|
+
}
|
|
14132
|
+
.me-lg-n4-25 {
|
|
14133
|
+
margin-right: -1.75rem !important;
|
|
14134
|
+
}
|
|
14135
|
+
.me-lg-n4-5 {
|
|
14136
|
+
margin-right: -2rem !important;
|
|
14137
|
+
}
|
|
14138
|
+
.me-lg-n4-75 {
|
|
14139
|
+
margin-right: -2.5rem !important;
|
|
14140
|
+
}
|
|
13583
14141
|
.mb-lg-n1 {
|
|
13584
14142
|
margin-bottom: -0.25rem !important;
|
|
13585
14143
|
}
|
|
@@ -13595,6 +14153,24 @@ svg {
|
|
|
13595
14153
|
.mb-lg-n5 {
|
|
13596
14154
|
margin-bottom: -3rem !important;
|
|
13597
14155
|
}
|
|
14156
|
+
.mb-lg-n1-5 {
|
|
14157
|
+
margin-bottom: -0.375rem !important;
|
|
14158
|
+
}
|
|
14159
|
+
.mb-lg-n2-5 {
|
|
14160
|
+
margin-bottom: -0.75rem !important;
|
|
14161
|
+
}
|
|
14162
|
+
.mb-lg-n3-5 {
|
|
14163
|
+
margin-bottom: -1.25rem !important;
|
|
14164
|
+
}
|
|
14165
|
+
.mb-lg-n4-25 {
|
|
14166
|
+
margin-bottom: -1.75rem !important;
|
|
14167
|
+
}
|
|
14168
|
+
.mb-lg-n4-5 {
|
|
14169
|
+
margin-bottom: -2rem !important;
|
|
14170
|
+
}
|
|
14171
|
+
.mb-lg-n4-75 {
|
|
14172
|
+
margin-bottom: -2.5rem !important;
|
|
14173
|
+
}
|
|
13598
14174
|
.ms-lg-n1 {
|
|
13599
14175
|
margin-left: -0.25rem !important;
|
|
13600
14176
|
}
|
|
@@ -13610,6 +14186,24 @@ svg {
|
|
|
13610
14186
|
.ms-lg-n5 {
|
|
13611
14187
|
margin-left: -3rem !important;
|
|
13612
14188
|
}
|
|
14189
|
+
.ms-lg-n1-5 {
|
|
14190
|
+
margin-left: -0.375rem !important;
|
|
14191
|
+
}
|
|
14192
|
+
.ms-lg-n2-5 {
|
|
14193
|
+
margin-left: -0.75rem !important;
|
|
14194
|
+
}
|
|
14195
|
+
.ms-lg-n3-5 {
|
|
14196
|
+
margin-left: -1.25rem !important;
|
|
14197
|
+
}
|
|
14198
|
+
.ms-lg-n4-25 {
|
|
14199
|
+
margin-left: -1.75rem !important;
|
|
14200
|
+
}
|
|
14201
|
+
.ms-lg-n4-5 {
|
|
14202
|
+
margin-left: -2rem !important;
|
|
14203
|
+
}
|
|
14204
|
+
.ms-lg-n4-75 {
|
|
14205
|
+
margin-left: -2.5rem !important;
|
|
14206
|
+
}
|
|
13613
14207
|
.p-lg-0 {
|
|
13614
14208
|
padding: 0 !important;
|
|
13615
14209
|
}
|
|
@@ -14610,6 +15204,24 @@ svg {
|
|
|
14610
15204
|
.m-xl-n5 {
|
|
14611
15205
|
margin: -3rem !important;
|
|
14612
15206
|
}
|
|
15207
|
+
.m-xl-n1-5 {
|
|
15208
|
+
margin: -0.375rem !important;
|
|
15209
|
+
}
|
|
15210
|
+
.m-xl-n2-5 {
|
|
15211
|
+
margin: -0.75rem !important;
|
|
15212
|
+
}
|
|
15213
|
+
.m-xl-n3-5 {
|
|
15214
|
+
margin: -1.25rem !important;
|
|
15215
|
+
}
|
|
15216
|
+
.m-xl-n4-25 {
|
|
15217
|
+
margin: -1.75rem !important;
|
|
15218
|
+
}
|
|
15219
|
+
.m-xl-n4-5 {
|
|
15220
|
+
margin: -2rem !important;
|
|
15221
|
+
}
|
|
15222
|
+
.m-xl-n4-75 {
|
|
15223
|
+
margin: -2.5rem !important;
|
|
15224
|
+
}
|
|
14613
15225
|
.mx-xl-n1 {
|
|
14614
15226
|
margin-right: -0.25rem !important;
|
|
14615
15227
|
margin-left: -0.25rem !important;
|
|
@@ -14630,6 +15242,30 @@ svg {
|
|
|
14630
15242
|
margin-right: -3rem !important;
|
|
14631
15243
|
margin-left: -3rem !important;
|
|
14632
15244
|
}
|
|
15245
|
+
.mx-xl-n1-5 {
|
|
15246
|
+
margin-right: -0.375rem !important;
|
|
15247
|
+
margin-left: -0.375rem !important;
|
|
15248
|
+
}
|
|
15249
|
+
.mx-xl-n2-5 {
|
|
15250
|
+
margin-right: -0.75rem !important;
|
|
15251
|
+
margin-left: -0.75rem !important;
|
|
15252
|
+
}
|
|
15253
|
+
.mx-xl-n3-5 {
|
|
15254
|
+
margin-right: -1.25rem !important;
|
|
15255
|
+
margin-left: -1.25rem !important;
|
|
15256
|
+
}
|
|
15257
|
+
.mx-xl-n4-25 {
|
|
15258
|
+
margin-right: -1.75rem !important;
|
|
15259
|
+
margin-left: -1.75rem !important;
|
|
15260
|
+
}
|
|
15261
|
+
.mx-xl-n4-5 {
|
|
15262
|
+
margin-right: -2rem !important;
|
|
15263
|
+
margin-left: -2rem !important;
|
|
15264
|
+
}
|
|
15265
|
+
.mx-xl-n4-75 {
|
|
15266
|
+
margin-right: -2.5rem !important;
|
|
15267
|
+
margin-left: -2.5rem !important;
|
|
15268
|
+
}
|
|
14633
15269
|
.my-xl-n1 {
|
|
14634
15270
|
margin-top: -0.25rem !important;
|
|
14635
15271
|
margin-bottom: -0.25rem !important;
|
|
@@ -14650,6 +15286,30 @@ svg {
|
|
|
14650
15286
|
margin-top: -3rem !important;
|
|
14651
15287
|
margin-bottom: -3rem !important;
|
|
14652
15288
|
}
|
|
15289
|
+
.my-xl-n1-5 {
|
|
15290
|
+
margin-top: -0.375rem !important;
|
|
15291
|
+
margin-bottom: -0.375rem !important;
|
|
15292
|
+
}
|
|
15293
|
+
.my-xl-n2-5 {
|
|
15294
|
+
margin-top: -0.75rem !important;
|
|
15295
|
+
margin-bottom: -0.75rem !important;
|
|
15296
|
+
}
|
|
15297
|
+
.my-xl-n3-5 {
|
|
15298
|
+
margin-top: -1.25rem !important;
|
|
15299
|
+
margin-bottom: -1.25rem !important;
|
|
15300
|
+
}
|
|
15301
|
+
.my-xl-n4-25 {
|
|
15302
|
+
margin-top: -1.75rem !important;
|
|
15303
|
+
margin-bottom: -1.75rem !important;
|
|
15304
|
+
}
|
|
15305
|
+
.my-xl-n4-5 {
|
|
15306
|
+
margin-top: -2rem !important;
|
|
15307
|
+
margin-bottom: -2rem !important;
|
|
15308
|
+
}
|
|
15309
|
+
.my-xl-n4-75 {
|
|
15310
|
+
margin-top: -2.5rem !important;
|
|
15311
|
+
margin-bottom: -2.5rem !important;
|
|
15312
|
+
}
|
|
14653
15313
|
.mt-xl-n1 {
|
|
14654
15314
|
margin-top: -0.25rem !important;
|
|
14655
15315
|
}
|
|
@@ -14665,6 +15325,24 @@ svg {
|
|
|
14665
15325
|
.mt-xl-n5 {
|
|
14666
15326
|
margin-top: -3rem !important;
|
|
14667
15327
|
}
|
|
15328
|
+
.mt-xl-n1-5 {
|
|
15329
|
+
margin-top: -0.375rem !important;
|
|
15330
|
+
}
|
|
15331
|
+
.mt-xl-n2-5 {
|
|
15332
|
+
margin-top: -0.75rem !important;
|
|
15333
|
+
}
|
|
15334
|
+
.mt-xl-n3-5 {
|
|
15335
|
+
margin-top: -1.25rem !important;
|
|
15336
|
+
}
|
|
15337
|
+
.mt-xl-n4-25 {
|
|
15338
|
+
margin-top: -1.75rem !important;
|
|
15339
|
+
}
|
|
15340
|
+
.mt-xl-n4-5 {
|
|
15341
|
+
margin-top: -2rem !important;
|
|
15342
|
+
}
|
|
15343
|
+
.mt-xl-n4-75 {
|
|
15344
|
+
margin-top: -2.5rem !important;
|
|
15345
|
+
}
|
|
14668
15346
|
.me-xl-n1 {
|
|
14669
15347
|
margin-right: -0.25rem !important;
|
|
14670
15348
|
}
|
|
@@ -14680,6 +15358,24 @@ svg {
|
|
|
14680
15358
|
.me-xl-n5 {
|
|
14681
15359
|
margin-right: -3rem !important;
|
|
14682
15360
|
}
|
|
15361
|
+
.me-xl-n1-5 {
|
|
15362
|
+
margin-right: -0.375rem !important;
|
|
15363
|
+
}
|
|
15364
|
+
.me-xl-n2-5 {
|
|
15365
|
+
margin-right: -0.75rem !important;
|
|
15366
|
+
}
|
|
15367
|
+
.me-xl-n3-5 {
|
|
15368
|
+
margin-right: -1.25rem !important;
|
|
15369
|
+
}
|
|
15370
|
+
.me-xl-n4-25 {
|
|
15371
|
+
margin-right: -1.75rem !important;
|
|
15372
|
+
}
|
|
15373
|
+
.me-xl-n4-5 {
|
|
15374
|
+
margin-right: -2rem !important;
|
|
15375
|
+
}
|
|
15376
|
+
.me-xl-n4-75 {
|
|
15377
|
+
margin-right: -2.5rem !important;
|
|
15378
|
+
}
|
|
14683
15379
|
.mb-xl-n1 {
|
|
14684
15380
|
margin-bottom: -0.25rem !important;
|
|
14685
15381
|
}
|
|
@@ -14695,6 +15391,24 @@ svg {
|
|
|
14695
15391
|
.mb-xl-n5 {
|
|
14696
15392
|
margin-bottom: -3rem !important;
|
|
14697
15393
|
}
|
|
15394
|
+
.mb-xl-n1-5 {
|
|
15395
|
+
margin-bottom: -0.375rem !important;
|
|
15396
|
+
}
|
|
15397
|
+
.mb-xl-n2-5 {
|
|
15398
|
+
margin-bottom: -0.75rem !important;
|
|
15399
|
+
}
|
|
15400
|
+
.mb-xl-n3-5 {
|
|
15401
|
+
margin-bottom: -1.25rem !important;
|
|
15402
|
+
}
|
|
15403
|
+
.mb-xl-n4-25 {
|
|
15404
|
+
margin-bottom: -1.75rem !important;
|
|
15405
|
+
}
|
|
15406
|
+
.mb-xl-n4-5 {
|
|
15407
|
+
margin-bottom: -2rem !important;
|
|
15408
|
+
}
|
|
15409
|
+
.mb-xl-n4-75 {
|
|
15410
|
+
margin-bottom: -2.5rem !important;
|
|
15411
|
+
}
|
|
14698
15412
|
.ms-xl-n1 {
|
|
14699
15413
|
margin-left: -0.25rem !important;
|
|
14700
15414
|
}
|
|
@@ -14710,6 +15424,24 @@ svg {
|
|
|
14710
15424
|
.ms-xl-n5 {
|
|
14711
15425
|
margin-left: -3rem !important;
|
|
14712
15426
|
}
|
|
15427
|
+
.ms-xl-n1-5 {
|
|
15428
|
+
margin-left: -0.375rem !important;
|
|
15429
|
+
}
|
|
15430
|
+
.ms-xl-n2-5 {
|
|
15431
|
+
margin-left: -0.75rem !important;
|
|
15432
|
+
}
|
|
15433
|
+
.ms-xl-n3-5 {
|
|
15434
|
+
margin-left: -1.25rem !important;
|
|
15435
|
+
}
|
|
15436
|
+
.ms-xl-n4-25 {
|
|
15437
|
+
margin-left: -1.75rem !important;
|
|
15438
|
+
}
|
|
15439
|
+
.ms-xl-n4-5 {
|
|
15440
|
+
margin-left: -2rem !important;
|
|
15441
|
+
}
|
|
15442
|
+
.ms-xl-n4-75 {
|
|
15443
|
+
margin-left: -2.5rem !important;
|
|
15444
|
+
}
|
|
14713
15445
|
.p-xl-0 {
|
|
14714
15446
|
padding: 0 !important;
|
|
14715
15447
|
}
|
|
@@ -15710,6 +16442,24 @@ svg {
|
|
|
15710
16442
|
.m-xxl-n5 {
|
|
15711
16443
|
margin: -3rem !important;
|
|
15712
16444
|
}
|
|
16445
|
+
.m-xxl-n1-5 {
|
|
16446
|
+
margin: -0.375rem !important;
|
|
16447
|
+
}
|
|
16448
|
+
.m-xxl-n2-5 {
|
|
16449
|
+
margin: -0.75rem !important;
|
|
16450
|
+
}
|
|
16451
|
+
.m-xxl-n3-5 {
|
|
16452
|
+
margin: -1.25rem !important;
|
|
16453
|
+
}
|
|
16454
|
+
.m-xxl-n4-25 {
|
|
16455
|
+
margin: -1.75rem !important;
|
|
16456
|
+
}
|
|
16457
|
+
.m-xxl-n4-5 {
|
|
16458
|
+
margin: -2rem !important;
|
|
16459
|
+
}
|
|
16460
|
+
.m-xxl-n4-75 {
|
|
16461
|
+
margin: -2.5rem !important;
|
|
16462
|
+
}
|
|
15713
16463
|
.mx-xxl-n1 {
|
|
15714
16464
|
margin-right: -0.25rem !important;
|
|
15715
16465
|
margin-left: -0.25rem !important;
|
|
@@ -15730,6 +16480,30 @@ svg {
|
|
|
15730
16480
|
margin-right: -3rem !important;
|
|
15731
16481
|
margin-left: -3rem !important;
|
|
15732
16482
|
}
|
|
16483
|
+
.mx-xxl-n1-5 {
|
|
16484
|
+
margin-right: -0.375rem !important;
|
|
16485
|
+
margin-left: -0.375rem !important;
|
|
16486
|
+
}
|
|
16487
|
+
.mx-xxl-n2-5 {
|
|
16488
|
+
margin-right: -0.75rem !important;
|
|
16489
|
+
margin-left: -0.75rem !important;
|
|
16490
|
+
}
|
|
16491
|
+
.mx-xxl-n3-5 {
|
|
16492
|
+
margin-right: -1.25rem !important;
|
|
16493
|
+
margin-left: -1.25rem !important;
|
|
16494
|
+
}
|
|
16495
|
+
.mx-xxl-n4-25 {
|
|
16496
|
+
margin-right: -1.75rem !important;
|
|
16497
|
+
margin-left: -1.75rem !important;
|
|
16498
|
+
}
|
|
16499
|
+
.mx-xxl-n4-5 {
|
|
16500
|
+
margin-right: -2rem !important;
|
|
16501
|
+
margin-left: -2rem !important;
|
|
16502
|
+
}
|
|
16503
|
+
.mx-xxl-n4-75 {
|
|
16504
|
+
margin-right: -2.5rem !important;
|
|
16505
|
+
margin-left: -2.5rem !important;
|
|
16506
|
+
}
|
|
15733
16507
|
.my-xxl-n1 {
|
|
15734
16508
|
margin-top: -0.25rem !important;
|
|
15735
16509
|
margin-bottom: -0.25rem !important;
|
|
@@ -15750,6 +16524,30 @@ svg {
|
|
|
15750
16524
|
margin-top: -3rem !important;
|
|
15751
16525
|
margin-bottom: -3rem !important;
|
|
15752
16526
|
}
|
|
16527
|
+
.my-xxl-n1-5 {
|
|
16528
|
+
margin-top: -0.375rem !important;
|
|
16529
|
+
margin-bottom: -0.375rem !important;
|
|
16530
|
+
}
|
|
16531
|
+
.my-xxl-n2-5 {
|
|
16532
|
+
margin-top: -0.75rem !important;
|
|
16533
|
+
margin-bottom: -0.75rem !important;
|
|
16534
|
+
}
|
|
16535
|
+
.my-xxl-n3-5 {
|
|
16536
|
+
margin-top: -1.25rem !important;
|
|
16537
|
+
margin-bottom: -1.25rem !important;
|
|
16538
|
+
}
|
|
16539
|
+
.my-xxl-n4-25 {
|
|
16540
|
+
margin-top: -1.75rem !important;
|
|
16541
|
+
margin-bottom: -1.75rem !important;
|
|
16542
|
+
}
|
|
16543
|
+
.my-xxl-n4-5 {
|
|
16544
|
+
margin-top: -2rem !important;
|
|
16545
|
+
margin-bottom: -2rem !important;
|
|
16546
|
+
}
|
|
16547
|
+
.my-xxl-n4-75 {
|
|
16548
|
+
margin-top: -2.5rem !important;
|
|
16549
|
+
margin-bottom: -2.5rem !important;
|
|
16550
|
+
}
|
|
15753
16551
|
.mt-xxl-n1 {
|
|
15754
16552
|
margin-top: -0.25rem !important;
|
|
15755
16553
|
}
|
|
@@ -15765,6 +16563,24 @@ svg {
|
|
|
15765
16563
|
.mt-xxl-n5 {
|
|
15766
16564
|
margin-top: -3rem !important;
|
|
15767
16565
|
}
|
|
16566
|
+
.mt-xxl-n1-5 {
|
|
16567
|
+
margin-top: -0.375rem !important;
|
|
16568
|
+
}
|
|
16569
|
+
.mt-xxl-n2-5 {
|
|
16570
|
+
margin-top: -0.75rem !important;
|
|
16571
|
+
}
|
|
16572
|
+
.mt-xxl-n3-5 {
|
|
16573
|
+
margin-top: -1.25rem !important;
|
|
16574
|
+
}
|
|
16575
|
+
.mt-xxl-n4-25 {
|
|
16576
|
+
margin-top: -1.75rem !important;
|
|
16577
|
+
}
|
|
16578
|
+
.mt-xxl-n4-5 {
|
|
16579
|
+
margin-top: -2rem !important;
|
|
16580
|
+
}
|
|
16581
|
+
.mt-xxl-n4-75 {
|
|
16582
|
+
margin-top: -2.5rem !important;
|
|
16583
|
+
}
|
|
15768
16584
|
.me-xxl-n1 {
|
|
15769
16585
|
margin-right: -0.25rem !important;
|
|
15770
16586
|
}
|
|
@@ -15780,6 +16596,24 @@ svg {
|
|
|
15780
16596
|
.me-xxl-n5 {
|
|
15781
16597
|
margin-right: -3rem !important;
|
|
15782
16598
|
}
|
|
16599
|
+
.me-xxl-n1-5 {
|
|
16600
|
+
margin-right: -0.375rem !important;
|
|
16601
|
+
}
|
|
16602
|
+
.me-xxl-n2-5 {
|
|
16603
|
+
margin-right: -0.75rem !important;
|
|
16604
|
+
}
|
|
16605
|
+
.me-xxl-n3-5 {
|
|
16606
|
+
margin-right: -1.25rem !important;
|
|
16607
|
+
}
|
|
16608
|
+
.me-xxl-n4-25 {
|
|
16609
|
+
margin-right: -1.75rem !important;
|
|
16610
|
+
}
|
|
16611
|
+
.me-xxl-n4-5 {
|
|
16612
|
+
margin-right: -2rem !important;
|
|
16613
|
+
}
|
|
16614
|
+
.me-xxl-n4-75 {
|
|
16615
|
+
margin-right: -2.5rem !important;
|
|
16616
|
+
}
|
|
15783
16617
|
.mb-xxl-n1 {
|
|
15784
16618
|
margin-bottom: -0.25rem !important;
|
|
15785
16619
|
}
|
|
@@ -15795,6 +16629,24 @@ svg {
|
|
|
15795
16629
|
.mb-xxl-n5 {
|
|
15796
16630
|
margin-bottom: -3rem !important;
|
|
15797
16631
|
}
|
|
16632
|
+
.mb-xxl-n1-5 {
|
|
16633
|
+
margin-bottom: -0.375rem !important;
|
|
16634
|
+
}
|
|
16635
|
+
.mb-xxl-n2-5 {
|
|
16636
|
+
margin-bottom: -0.75rem !important;
|
|
16637
|
+
}
|
|
16638
|
+
.mb-xxl-n3-5 {
|
|
16639
|
+
margin-bottom: -1.25rem !important;
|
|
16640
|
+
}
|
|
16641
|
+
.mb-xxl-n4-25 {
|
|
16642
|
+
margin-bottom: -1.75rem !important;
|
|
16643
|
+
}
|
|
16644
|
+
.mb-xxl-n4-5 {
|
|
16645
|
+
margin-bottom: -2rem !important;
|
|
16646
|
+
}
|
|
16647
|
+
.mb-xxl-n4-75 {
|
|
16648
|
+
margin-bottom: -2.5rem !important;
|
|
16649
|
+
}
|
|
15798
16650
|
.ms-xxl-n1 {
|
|
15799
16651
|
margin-left: -0.25rem !important;
|
|
15800
16652
|
}
|
|
@@ -15810,6 +16662,24 @@ svg {
|
|
|
15810
16662
|
.ms-xxl-n5 {
|
|
15811
16663
|
margin-left: -3rem !important;
|
|
15812
16664
|
}
|
|
16665
|
+
.ms-xxl-n1-5 {
|
|
16666
|
+
margin-left: -0.375rem !important;
|
|
16667
|
+
}
|
|
16668
|
+
.ms-xxl-n2-5 {
|
|
16669
|
+
margin-left: -0.75rem !important;
|
|
16670
|
+
}
|
|
16671
|
+
.ms-xxl-n3-5 {
|
|
16672
|
+
margin-left: -1.25rem !important;
|
|
16673
|
+
}
|
|
16674
|
+
.ms-xxl-n4-25 {
|
|
16675
|
+
margin-left: -1.75rem !important;
|
|
16676
|
+
}
|
|
16677
|
+
.ms-xxl-n4-5 {
|
|
16678
|
+
margin-left: -2rem !important;
|
|
16679
|
+
}
|
|
16680
|
+
.ms-xxl-n4-75 {
|
|
16681
|
+
margin-left: -2.5rem !important;
|
|
16682
|
+
}
|
|
15813
16683
|
.p-xxl-0 {
|
|
15814
16684
|
padding: 0 !important;
|
|
15815
16685
|
}
|
|
@@ -16287,6 +17157,11 @@ svg {
|
|
|
16287
17157
|
outline: 2px solid #253ebe;
|
|
16288
17158
|
}
|
|
16289
17159
|
|
|
17160
|
+
.accordion-button > span,
|
|
17161
|
+
.accordion-body {
|
|
17162
|
+
max-width: 80ch;
|
|
17163
|
+
}
|
|
17164
|
+
|
|
16290
17165
|
.alert-light {
|
|
16291
17166
|
border-color: #f8f9fa;
|
|
16292
17167
|
background: #fff;
|
|
@@ -18300,6 +19175,24 @@ select.multi-select {
|
|
|
18300
19175
|
color: #6c757d;
|
|
18301
19176
|
}
|
|
18302
19177
|
|
|
19178
|
+
.ss-main.ss-1.form-select.is-invalid, .ss-main.ss-1.form-select.is-valid {
|
|
19179
|
+
background: none;
|
|
19180
|
+
padding: 0;
|
|
19181
|
+
}
|
|
19182
|
+
.ss-main.ss-1.form-select {
|
|
19183
|
+
border: none;
|
|
19184
|
+
background: none;
|
|
19185
|
+
padding: 0.075rem 0 0.075rem 0.3rem;
|
|
19186
|
+
}
|
|
19187
|
+
.ss-main.ss-1 .ss-single-selected {
|
|
19188
|
+
min-height: 37px;
|
|
19189
|
+
}
|
|
19190
|
+
.ss-main.ss-1 .ss-single-selected .placeholder {
|
|
19191
|
+
background: none;
|
|
19192
|
+
cursor: pointer;
|
|
19193
|
+
opacity: 1;
|
|
19194
|
+
}
|
|
19195
|
+
|
|
18303
19196
|
.ss-main.multi-select.is-invalid .ss-multi-selected,
|
|
18304
19197
|
.ss-main.multi-select.is-valid .ss-multi-selected,
|
|
18305
19198
|
.was-validated .multi-select:invalid + .ss-main.multi-select .ss-multi-selected,
|
|
@@ -18359,7 +19252,7 @@ select.multi-select {
|
|
|
18359
19252
|
:root {
|
|
18360
19253
|
--ss-bg-color: #ffffff;
|
|
18361
19254
|
--ss-font-color: #4d4d4d;
|
|
18362
|
-
--ss-font-placeholder-color:
|
|
19255
|
+
--ss-font-placeholder-color: $form-select-color;
|
|
18363
19256
|
--ss-disabled-color: #dcdee2;
|
|
18364
19257
|
--ss-border-color: #dcdee2;
|
|
18365
19258
|
--ss-highlight-color: #fffb8c;
|
|
@@ -19145,9 +20038,11 @@ select.multi-select {
|
|
|
19145
20038
|
position: absolute;
|
|
19146
20039
|
border-radius: 50%;
|
|
19147
20040
|
border: 2px solid var(--bs-primary);
|
|
20041
|
+
top: 6px;
|
|
19148
20042
|
left: 0;
|
|
19149
20043
|
width: 22px;
|
|
19150
20044
|
height: 22px;
|
|
20045
|
+
z-index: 1;
|
|
19151
20046
|
}
|
|
19152
20047
|
.bcl-timeline > li::after {
|
|
19153
20048
|
content: "";
|