@openeuropa/bcl-theme-default 0.11.0 → 0.15.0
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-default.css +1453 -17
- 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 +53 -21
- 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.min.js.map +1 -1
- package/js/oe-bcl-default.umd.js +61 -24
- 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 +5 -5
- package/src/scss/_badge.scss +2 -1
- package/src/scss/_banners.scss +9 -7
- package/src/scss/_collapse.scss +8 -0
- package/src/scss/_header.scss +1 -0
- package/src/scss/_inpage-navigation.scss +19 -0
- package/src/scss/_tabs.scss +3 -0
- package/src/scss/_timeline.scss +78 -0
- package/src/scss/_utilities.scss +78 -0
- package/src/scss/_variables.scss +16 -9
- package/src/scss/oe-bcl-default.scss +4 -14
- package/templates/bcl-banner/banner.html.twig +64 -0
- package/templates/bcl-base-templates/content-type.html.twig +91 -0
- package/templates/bcl-base-templates/listing-page.html.twig +60 -0
- package/templates/{bcl-search/search-offcanvas.html.twig → bcl-base-templates/sidebar-search.html.twig} +0 -1
- package/templates/bcl-card/card.html.twig +42 -33
- package/templates/bcl-content-banner/content-banner.html.twig +103 -0
- package/templates/bcl-date-block/date-block.html.twig +42 -0
- package/templates/bcl-description-list/description-list.html.twig +110 -0
- package/templates/bcl-event/event.html.twig +41 -0
- package/templates/bcl-fact-figures/fact-figures.html.twig +115 -0
- package/templates/bcl-featured-media/featured-media.html.twig +49 -5
- package/templates/bcl-file/file.html.twig +205 -0
- package/templates/bcl-footer/footer.html.twig +1 -1
- package/templates/bcl-group/group-landing.html.twig +101 -0
- package/templates/bcl-group/group.html.twig +25 -0
- package/templates/bcl-header/header.html.twig +3 -3
- package/templates/bcl-inpage-navigation/inpage-navigation.html.twig +42 -0
- package/templates/bcl-landing-page/landing-page.html.twig +59 -0
- package/templates/bcl-link/link.html.twig +5 -0
- package/templates/bcl-links-block/links-block.html.twig +4 -1
- package/templates/bcl-listing/listing.html.twig +56 -35
- package/templates/bcl-page/page.html.twig +64 -0
- package/templates/bcl-recent-activities/recent-activities.html.twig +57 -0
- package/templates/bcl-timeline/timeline.html.twig +109 -0
- package/templates/bcl-toast/toasts.html.twig +3 -1
- package/templates/bcl-user/user-edit.html.twig +38 -0
- package/templates/{bcl-user-view → bcl-user}/user-view-compact.html.twig +2 -2
- package/templates/bcl-user/user-view.html.twig +96 -0
- package/templates/bcl-search/search.html.twig +0 -52
- package/templates/bcl-user-edit/edit-contents.html.twig +0 -32
- package/templates/bcl-user-edit/user-edit.html.twig +0 -18
- package/templates/bcl-user-listing/user-listing-offcanvas.html.twig +0 -8
- package/templates/bcl-user-listing/user-listing.html.twig +0 -47
- package/templates/bcl-user-view/user-view.html.twig +0 -105
package/css/oe-bcl-default.css
CHANGED
|
@@ -904,6 +904,66 @@ progress {
|
|
|
904
904
|
--bs-gutter-y: 3rem;
|
|
905
905
|
}
|
|
906
906
|
|
|
907
|
+
.g-1-5,
|
|
908
|
+
.gx-1-5 {
|
|
909
|
+
--bs-gutter-x: 0.375rem;
|
|
910
|
+
}
|
|
911
|
+
|
|
912
|
+
.g-1-5,
|
|
913
|
+
.gy-1-5 {
|
|
914
|
+
--bs-gutter-y: 0.375rem;
|
|
915
|
+
}
|
|
916
|
+
|
|
917
|
+
.g-2-5,
|
|
918
|
+
.gx-2-5 {
|
|
919
|
+
--bs-gutter-x: 0.75rem;
|
|
920
|
+
}
|
|
921
|
+
|
|
922
|
+
.g-2-5,
|
|
923
|
+
.gy-2-5 {
|
|
924
|
+
--bs-gutter-y: 0.75rem;
|
|
925
|
+
}
|
|
926
|
+
|
|
927
|
+
.g-3-5,
|
|
928
|
+
.gx-3-5 {
|
|
929
|
+
--bs-gutter-x: 1.25rem;
|
|
930
|
+
}
|
|
931
|
+
|
|
932
|
+
.g-3-5,
|
|
933
|
+
.gy-3-5 {
|
|
934
|
+
--bs-gutter-y: 1.25rem;
|
|
935
|
+
}
|
|
936
|
+
|
|
937
|
+
.g-4-25,
|
|
938
|
+
.gx-4-25 {
|
|
939
|
+
--bs-gutter-x: 1.75rem;
|
|
940
|
+
}
|
|
941
|
+
|
|
942
|
+
.g-4-25,
|
|
943
|
+
.gy-4-25 {
|
|
944
|
+
--bs-gutter-y: 1.75rem;
|
|
945
|
+
}
|
|
946
|
+
|
|
947
|
+
.g-4-5,
|
|
948
|
+
.gx-4-5 {
|
|
949
|
+
--bs-gutter-x: 2rem;
|
|
950
|
+
}
|
|
951
|
+
|
|
952
|
+
.g-4-5,
|
|
953
|
+
.gy-4-5 {
|
|
954
|
+
--bs-gutter-y: 2rem;
|
|
955
|
+
}
|
|
956
|
+
|
|
957
|
+
.g-4-75,
|
|
958
|
+
.gx-4-75 {
|
|
959
|
+
--bs-gutter-x: 2.5rem;
|
|
960
|
+
}
|
|
961
|
+
|
|
962
|
+
.g-4-75,
|
|
963
|
+
.gy-4-75 {
|
|
964
|
+
--bs-gutter-y: 2.5rem;
|
|
965
|
+
}
|
|
966
|
+
|
|
907
967
|
@media (min-width: 576px) {
|
|
908
968
|
.col-sm {
|
|
909
969
|
-ms-flex: 1 0 0%;
|
|
@@ -1137,6 +1197,66 @@ progress {
|
|
|
1137
1197
|
.gy-sm-5 {
|
|
1138
1198
|
--bs-gutter-y: 3rem;
|
|
1139
1199
|
}
|
|
1200
|
+
|
|
1201
|
+
.g-sm-1-5,
|
|
1202
|
+
.gx-sm-1-5 {
|
|
1203
|
+
--bs-gutter-x: 0.375rem;
|
|
1204
|
+
}
|
|
1205
|
+
|
|
1206
|
+
.g-sm-1-5,
|
|
1207
|
+
.gy-sm-1-5 {
|
|
1208
|
+
--bs-gutter-y: 0.375rem;
|
|
1209
|
+
}
|
|
1210
|
+
|
|
1211
|
+
.g-sm-2-5,
|
|
1212
|
+
.gx-sm-2-5 {
|
|
1213
|
+
--bs-gutter-x: 0.75rem;
|
|
1214
|
+
}
|
|
1215
|
+
|
|
1216
|
+
.g-sm-2-5,
|
|
1217
|
+
.gy-sm-2-5 {
|
|
1218
|
+
--bs-gutter-y: 0.75rem;
|
|
1219
|
+
}
|
|
1220
|
+
|
|
1221
|
+
.g-sm-3-5,
|
|
1222
|
+
.gx-sm-3-5 {
|
|
1223
|
+
--bs-gutter-x: 1.25rem;
|
|
1224
|
+
}
|
|
1225
|
+
|
|
1226
|
+
.g-sm-3-5,
|
|
1227
|
+
.gy-sm-3-5 {
|
|
1228
|
+
--bs-gutter-y: 1.25rem;
|
|
1229
|
+
}
|
|
1230
|
+
|
|
1231
|
+
.g-sm-4-25,
|
|
1232
|
+
.gx-sm-4-25 {
|
|
1233
|
+
--bs-gutter-x: 1.75rem;
|
|
1234
|
+
}
|
|
1235
|
+
|
|
1236
|
+
.g-sm-4-25,
|
|
1237
|
+
.gy-sm-4-25 {
|
|
1238
|
+
--bs-gutter-y: 1.75rem;
|
|
1239
|
+
}
|
|
1240
|
+
|
|
1241
|
+
.g-sm-4-5,
|
|
1242
|
+
.gx-sm-4-5 {
|
|
1243
|
+
--bs-gutter-x: 2rem;
|
|
1244
|
+
}
|
|
1245
|
+
|
|
1246
|
+
.g-sm-4-5,
|
|
1247
|
+
.gy-sm-4-5 {
|
|
1248
|
+
--bs-gutter-y: 2rem;
|
|
1249
|
+
}
|
|
1250
|
+
|
|
1251
|
+
.g-sm-4-75,
|
|
1252
|
+
.gx-sm-4-75 {
|
|
1253
|
+
--bs-gutter-x: 2.5rem;
|
|
1254
|
+
}
|
|
1255
|
+
|
|
1256
|
+
.g-sm-4-75,
|
|
1257
|
+
.gy-sm-4-75 {
|
|
1258
|
+
--bs-gutter-y: 2.5rem;
|
|
1259
|
+
}
|
|
1140
1260
|
}
|
|
1141
1261
|
@media (min-width: 768px) {
|
|
1142
1262
|
.col-md {
|
|
@@ -1371,6 +1491,66 @@ progress {
|
|
|
1371
1491
|
.gy-md-5 {
|
|
1372
1492
|
--bs-gutter-y: 3rem;
|
|
1373
1493
|
}
|
|
1494
|
+
|
|
1495
|
+
.g-md-1-5,
|
|
1496
|
+
.gx-md-1-5 {
|
|
1497
|
+
--bs-gutter-x: 0.375rem;
|
|
1498
|
+
}
|
|
1499
|
+
|
|
1500
|
+
.g-md-1-5,
|
|
1501
|
+
.gy-md-1-5 {
|
|
1502
|
+
--bs-gutter-y: 0.375rem;
|
|
1503
|
+
}
|
|
1504
|
+
|
|
1505
|
+
.g-md-2-5,
|
|
1506
|
+
.gx-md-2-5 {
|
|
1507
|
+
--bs-gutter-x: 0.75rem;
|
|
1508
|
+
}
|
|
1509
|
+
|
|
1510
|
+
.g-md-2-5,
|
|
1511
|
+
.gy-md-2-5 {
|
|
1512
|
+
--bs-gutter-y: 0.75rem;
|
|
1513
|
+
}
|
|
1514
|
+
|
|
1515
|
+
.g-md-3-5,
|
|
1516
|
+
.gx-md-3-5 {
|
|
1517
|
+
--bs-gutter-x: 1.25rem;
|
|
1518
|
+
}
|
|
1519
|
+
|
|
1520
|
+
.g-md-3-5,
|
|
1521
|
+
.gy-md-3-5 {
|
|
1522
|
+
--bs-gutter-y: 1.25rem;
|
|
1523
|
+
}
|
|
1524
|
+
|
|
1525
|
+
.g-md-4-25,
|
|
1526
|
+
.gx-md-4-25 {
|
|
1527
|
+
--bs-gutter-x: 1.75rem;
|
|
1528
|
+
}
|
|
1529
|
+
|
|
1530
|
+
.g-md-4-25,
|
|
1531
|
+
.gy-md-4-25 {
|
|
1532
|
+
--bs-gutter-y: 1.75rem;
|
|
1533
|
+
}
|
|
1534
|
+
|
|
1535
|
+
.g-md-4-5,
|
|
1536
|
+
.gx-md-4-5 {
|
|
1537
|
+
--bs-gutter-x: 2rem;
|
|
1538
|
+
}
|
|
1539
|
+
|
|
1540
|
+
.g-md-4-5,
|
|
1541
|
+
.gy-md-4-5 {
|
|
1542
|
+
--bs-gutter-y: 2rem;
|
|
1543
|
+
}
|
|
1544
|
+
|
|
1545
|
+
.g-md-4-75,
|
|
1546
|
+
.gx-md-4-75 {
|
|
1547
|
+
--bs-gutter-x: 2.5rem;
|
|
1548
|
+
}
|
|
1549
|
+
|
|
1550
|
+
.g-md-4-75,
|
|
1551
|
+
.gy-md-4-75 {
|
|
1552
|
+
--bs-gutter-y: 2.5rem;
|
|
1553
|
+
}
|
|
1374
1554
|
}
|
|
1375
1555
|
@media (min-width: 992px) {
|
|
1376
1556
|
.col-lg {
|
|
@@ -1605,6 +1785,66 @@ progress {
|
|
|
1605
1785
|
.gy-lg-5 {
|
|
1606
1786
|
--bs-gutter-y: 3rem;
|
|
1607
1787
|
}
|
|
1788
|
+
|
|
1789
|
+
.g-lg-1-5,
|
|
1790
|
+
.gx-lg-1-5 {
|
|
1791
|
+
--bs-gutter-x: 0.375rem;
|
|
1792
|
+
}
|
|
1793
|
+
|
|
1794
|
+
.g-lg-1-5,
|
|
1795
|
+
.gy-lg-1-5 {
|
|
1796
|
+
--bs-gutter-y: 0.375rem;
|
|
1797
|
+
}
|
|
1798
|
+
|
|
1799
|
+
.g-lg-2-5,
|
|
1800
|
+
.gx-lg-2-5 {
|
|
1801
|
+
--bs-gutter-x: 0.75rem;
|
|
1802
|
+
}
|
|
1803
|
+
|
|
1804
|
+
.g-lg-2-5,
|
|
1805
|
+
.gy-lg-2-5 {
|
|
1806
|
+
--bs-gutter-y: 0.75rem;
|
|
1807
|
+
}
|
|
1808
|
+
|
|
1809
|
+
.g-lg-3-5,
|
|
1810
|
+
.gx-lg-3-5 {
|
|
1811
|
+
--bs-gutter-x: 1.25rem;
|
|
1812
|
+
}
|
|
1813
|
+
|
|
1814
|
+
.g-lg-3-5,
|
|
1815
|
+
.gy-lg-3-5 {
|
|
1816
|
+
--bs-gutter-y: 1.25rem;
|
|
1817
|
+
}
|
|
1818
|
+
|
|
1819
|
+
.g-lg-4-25,
|
|
1820
|
+
.gx-lg-4-25 {
|
|
1821
|
+
--bs-gutter-x: 1.75rem;
|
|
1822
|
+
}
|
|
1823
|
+
|
|
1824
|
+
.g-lg-4-25,
|
|
1825
|
+
.gy-lg-4-25 {
|
|
1826
|
+
--bs-gutter-y: 1.75rem;
|
|
1827
|
+
}
|
|
1828
|
+
|
|
1829
|
+
.g-lg-4-5,
|
|
1830
|
+
.gx-lg-4-5 {
|
|
1831
|
+
--bs-gutter-x: 2rem;
|
|
1832
|
+
}
|
|
1833
|
+
|
|
1834
|
+
.g-lg-4-5,
|
|
1835
|
+
.gy-lg-4-5 {
|
|
1836
|
+
--bs-gutter-y: 2rem;
|
|
1837
|
+
}
|
|
1838
|
+
|
|
1839
|
+
.g-lg-4-75,
|
|
1840
|
+
.gx-lg-4-75 {
|
|
1841
|
+
--bs-gutter-x: 2.5rem;
|
|
1842
|
+
}
|
|
1843
|
+
|
|
1844
|
+
.g-lg-4-75,
|
|
1845
|
+
.gy-lg-4-75 {
|
|
1846
|
+
--bs-gutter-y: 2.5rem;
|
|
1847
|
+
}
|
|
1608
1848
|
}
|
|
1609
1849
|
@media (min-width: 1200px) {
|
|
1610
1850
|
.col-xl {
|
|
@@ -1839,6 +2079,66 @@ progress {
|
|
|
1839
2079
|
.gy-xl-5 {
|
|
1840
2080
|
--bs-gutter-y: 3rem;
|
|
1841
2081
|
}
|
|
2082
|
+
|
|
2083
|
+
.g-xl-1-5,
|
|
2084
|
+
.gx-xl-1-5 {
|
|
2085
|
+
--bs-gutter-x: 0.375rem;
|
|
2086
|
+
}
|
|
2087
|
+
|
|
2088
|
+
.g-xl-1-5,
|
|
2089
|
+
.gy-xl-1-5 {
|
|
2090
|
+
--bs-gutter-y: 0.375rem;
|
|
2091
|
+
}
|
|
2092
|
+
|
|
2093
|
+
.g-xl-2-5,
|
|
2094
|
+
.gx-xl-2-5 {
|
|
2095
|
+
--bs-gutter-x: 0.75rem;
|
|
2096
|
+
}
|
|
2097
|
+
|
|
2098
|
+
.g-xl-2-5,
|
|
2099
|
+
.gy-xl-2-5 {
|
|
2100
|
+
--bs-gutter-y: 0.75rem;
|
|
2101
|
+
}
|
|
2102
|
+
|
|
2103
|
+
.g-xl-3-5,
|
|
2104
|
+
.gx-xl-3-5 {
|
|
2105
|
+
--bs-gutter-x: 1.25rem;
|
|
2106
|
+
}
|
|
2107
|
+
|
|
2108
|
+
.g-xl-3-5,
|
|
2109
|
+
.gy-xl-3-5 {
|
|
2110
|
+
--bs-gutter-y: 1.25rem;
|
|
2111
|
+
}
|
|
2112
|
+
|
|
2113
|
+
.g-xl-4-25,
|
|
2114
|
+
.gx-xl-4-25 {
|
|
2115
|
+
--bs-gutter-x: 1.75rem;
|
|
2116
|
+
}
|
|
2117
|
+
|
|
2118
|
+
.g-xl-4-25,
|
|
2119
|
+
.gy-xl-4-25 {
|
|
2120
|
+
--bs-gutter-y: 1.75rem;
|
|
2121
|
+
}
|
|
2122
|
+
|
|
2123
|
+
.g-xl-4-5,
|
|
2124
|
+
.gx-xl-4-5 {
|
|
2125
|
+
--bs-gutter-x: 2rem;
|
|
2126
|
+
}
|
|
2127
|
+
|
|
2128
|
+
.g-xl-4-5,
|
|
2129
|
+
.gy-xl-4-5 {
|
|
2130
|
+
--bs-gutter-y: 2rem;
|
|
2131
|
+
}
|
|
2132
|
+
|
|
2133
|
+
.g-xl-4-75,
|
|
2134
|
+
.gx-xl-4-75 {
|
|
2135
|
+
--bs-gutter-x: 2.5rem;
|
|
2136
|
+
}
|
|
2137
|
+
|
|
2138
|
+
.g-xl-4-75,
|
|
2139
|
+
.gy-xl-4-75 {
|
|
2140
|
+
--bs-gutter-y: 2.5rem;
|
|
2141
|
+
}
|
|
1842
2142
|
}
|
|
1843
2143
|
@media (min-width: 1400px) {
|
|
1844
2144
|
.col-xxl {
|
|
@@ -2073,6 +2373,66 @@ progress {
|
|
|
2073
2373
|
.gy-xxl-5 {
|
|
2074
2374
|
--bs-gutter-y: 3rem;
|
|
2075
2375
|
}
|
|
2376
|
+
|
|
2377
|
+
.g-xxl-1-5,
|
|
2378
|
+
.gx-xxl-1-5 {
|
|
2379
|
+
--bs-gutter-x: 0.375rem;
|
|
2380
|
+
}
|
|
2381
|
+
|
|
2382
|
+
.g-xxl-1-5,
|
|
2383
|
+
.gy-xxl-1-5 {
|
|
2384
|
+
--bs-gutter-y: 0.375rem;
|
|
2385
|
+
}
|
|
2386
|
+
|
|
2387
|
+
.g-xxl-2-5,
|
|
2388
|
+
.gx-xxl-2-5 {
|
|
2389
|
+
--bs-gutter-x: 0.75rem;
|
|
2390
|
+
}
|
|
2391
|
+
|
|
2392
|
+
.g-xxl-2-5,
|
|
2393
|
+
.gy-xxl-2-5 {
|
|
2394
|
+
--bs-gutter-y: 0.75rem;
|
|
2395
|
+
}
|
|
2396
|
+
|
|
2397
|
+
.g-xxl-3-5,
|
|
2398
|
+
.gx-xxl-3-5 {
|
|
2399
|
+
--bs-gutter-x: 1.25rem;
|
|
2400
|
+
}
|
|
2401
|
+
|
|
2402
|
+
.g-xxl-3-5,
|
|
2403
|
+
.gy-xxl-3-5 {
|
|
2404
|
+
--bs-gutter-y: 1.25rem;
|
|
2405
|
+
}
|
|
2406
|
+
|
|
2407
|
+
.g-xxl-4-25,
|
|
2408
|
+
.gx-xxl-4-25 {
|
|
2409
|
+
--bs-gutter-x: 1.75rem;
|
|
2410
|
+
}
|
|
2411
|
+
|
|
2412
|
+
.g-xxl-4-25,
|
|
2413
|
+
.gy-xxl-4-25 {
|
|
2414
|
+
--bs-gutter-y: 1.75rem;
|
|
2415
|
+
}
|
|
2416
|
+
|
|
2417
|
+
.g-xxl-4-5,
|
|
2418
|
+
.gx-xxl-4-5 {
|
|
2419
|
+
--bs-gutter-x: 2rem;
|
|
2420
|
+
}
|
|
2421
|
+
|
|
2422
|
+
.g-xxl-4-5,
|
|
2423
|
+
.gy-xxl-4-5 {
|
|
2424
|
+
--bs-gutter-y: 2rem;
|
|
2425
|
+
}
|
|
2426
|
+
|
|
2427
|
+
.g-xxl-4-75,
|
|
2428
|
+
.gx-xxl-4-75 {
|
|
2429
|
+
--bs-gutter-x: 2.5rem;
|
|
2430
|
+
}
|
|
2431
|
+
|
|
2432
|
+
.g-xxl-4-75,
|
|
2433
|
+
.gy-xxl-4-75 {
|
|
2434
|
+
--bs-gutter-y: 2.5rem;
|
|
2435
|
+
}
|
|
2076
2436
|
}
|
|
2077
2437
|
.table {
|
|
2078
2438
|
--bs-table-bg: transparent;
|
|
@@ -6895,6 +7255,36 @@ textarea.form-control-lg {
|
|
|
6895
7255
|
opacity: 0.25;
|
|
6896
7256
|
}
|
|
6897
7257
|
|
|
7258
|
+
.text-underline-hover {
|
|
7259
|
+
text-decoration: none;
|
|
7260
|
+
}
|
|
7261
|
+
|
|
7262
|
+
.text-underline-hover:hover {
|
|
7263
|
+
text-decoration: underline;
|
|
7264
|
+
}
|
|
7265
|
+
|
|
7266
|
+
@media (max-width: 767.98px) {
|
|
7267
|
+
.n-mx-container {
|
|
7268
|
+
padding-right: 0.75rem;
|
|
7269
|
+
padding-left: 0.75rem;
|
|
7270
|
+
margin-right: -0.75rem;
|
|
7271
|
+
margin-left: -0.75rem;
|
|
7272
|
+
}
|
|
7273
|
+
}
|
|
7274
|
+
.bg-lighter {
|
|
7275
|
+
background-color: #f8f9fa;
|
|
7276
|
+
}
|
|
7277
|
+
|
|
7278
|
+
.bg-gray-200 {
|
|
7279
|
+
background-color: #e9ecef;
|
|
7280
|
+
}
|
|
7281
|
+
|
|
7282
|
+
.grid-3-9 {
|
|
7283
|
+
-ms-grid-columns: 25% 75%;
|
|
7284
|
+
grid-template-columns: 25% 75%;
|
|
7285
|
+
grid-gap: 0.75rem;
|
|
7286
|
+
}
|
|
7287
|
+
|
|
6898
7288
|
.align-baseline {
|
|
6899
7289
|
vertical-align: baseline !important;
|
|
6900
7290
|
}
|
|
@@ -7230,6 +7620,14 @@ textarea.form-control-lg {
|
|
|
7230
7620
|
max-width: 100% !important;
|
|
7231
7621
|
}
|
|
7232
7622
|
|
|
7623
|
+
.mw-date {
|
|
7624
|
+
max-width: 7.5rem !important;
|
|
7625
|
+
}
|
|
7626
|
+
|
|
7627
|
+
.mw-listing-img {
|
|
7628
|
+
max-width: 10rem !important;
|
|
7629
|
+
}
|
|
7630
|
+
|
|
7233
7631
|
.vw-100 {
|
|
7234
7632
|
width: 100vw !important;
|
|
7235
7633
|
}
|
|
@@ -7926,6 +8324,156 @@ textarea.form-control-lg {
|
|
|
7926
8324
|
margin-left: auto !important;
|
|
7927
8325
|
}
|
|
7928
8326
|
|
|
8327
|
+
.m-n1 {
|
|
8328
|
+
margin: -0.25rem !important;
|
|
8329
|
+
}
|
|
8330
|
+
|
|
8331
|
+
.m-n2 {
|
|
8332
|
+
margin: -0.5rem !important;
|
|
8333
|
+
}
|
|
8334
|
+
|
|
8335
|
+
.m-n3 {
|
|
8336
|
+
margin: -1rem !important;
|
|
8337
|
+
}
|
|
8338
|
+
|
|
8339
|
+
.m-n4 {
|
|
8340
|
+
margin: -1.5rem !important;
|
|
8341
|
+
}
|
|
8342
|
+
|
|
8343
|
+
.m-n5 {
|
|
8344
|
+
margin: -3rem !important;
|
|
8345
|
+
}
|
|
8346
|
+
|
|
8347
|
+
.mx-n1 {
|
|
8348
|
+
margin-right: -0.25rem !important;
|
|
8349
|
+
margin-left: -0.25rem !important;
|
|
8350
|
+
}
|
|
8351
|
+
|
|
8352
|
+
.mx-n2 {
|
|
8353
|
+
margin-right: -0.5rem !important;
|
|
8354
|
+
margin-left: -0.5rem !important;
|
|
8355
|
+
}
|
|
8356
|
+
|
|
8357
|
+
.mx-n3 {
|
|
8358
|
+
margin-right: -1rem !important;
|
|
8359
|
+
margin-left: -1rem !important;
|
|
8360
|
+
}
|
|
8361
|
+
|
|
8362
|
+
.mx-n4 {
|
|
8363
|
+
margin-right: -1.5rem !important;
|
|
8364
|
+
margin-left: -1.5rem !important;
|
|
8365
|
+
}
|
|
8366
|
+
|
|
8367
|
+
.mx-n5 {
|
|
8368
|
+
margin-right: -3rem !important;
|
|
8369
|
+
margin-left: -3rem !important;
|
|
8370
|
+
}
|
|
8371
|
+
|
|
8372
|
+
.my-n1 {
|
|
8373
|
+
margin-top: -0.25rem !important;
|
|
8374
|
+
margin-bottom: -0.25rem !important;
|
|
8375
|
+
}
|
|
8376
|
+
|
|
8377
|
+
.my-n2 {
|
|
8378
|
+
margin-top: -0.5rem !important;
|
|
8379
|
+
margin-bottom: -0.5rem !important;
|
|
8380
|
+
}
|
|
8381
|
+
|
|
8382
|
+
.my-n3 {
|
|
8383
|
+
margin-top: -1rem !important;
|
|
8384
|
+
margin-bottom: -1rem !important;
|
|
8385
|
+
}
|
|
8386
|
+
|
|
8387
|
+
.my-n4 {
|
|
8388
|
+
margin-top: -1.5rem !important;
|
|
8389
|
+
margin-bottom: -1.5rem !important;
|
|
8390
|
+
}
|
|
8391
|
+
|
|
8392
|
+
.my-n5 {
|
|
8393
|
+
margin-top: -3rem !important;
|
|
8394
|
+
margin-bottom: -3rem !important;
|
|
8395
|
+
}
|
|
8396
|
+
|
|
8397
|
+
.mt-n1 {
|
|
8398
|
+
margin-top: -0.25rem !important;
|
|
8399
|
+
}
|
|
8400
|
+
|
|
8401
|
+
.mt-n2 {
|
|
8402
|
+
margin-top: -0.5rem !important;
|
|
8403
|
+
}
|
|
8404
|
+
|
|
8405
|
+
.mt-n3 {
|
|
8406
|
+
margin-top: -1rem !important;
|
|
8407
|
+
}
|
|
8408
|
+
|
|
8409
|
+
.mt-n4 {
|
|
8410
|
+
margin-top: -1.5rem !important;
|
|
8411
|
+
}
|
|
8412
|
+
|
|
8413
|
+
.mt-n5 {
|
|
8414
|
+
margin-top: -3rem !important;
|
|
8415
|
+
}
|
|
8416
|
+
|
|
8417
|
+
.me-n1 {
|
|
8418
|
+
margin-right: -0.25rem !important;
|
|
8419
|
+
}
|
|
8420
|
+
|
|
8421
|
+
.me-n2 {
|
|
8422
|
+
margin-right: -0.5rem !important;
|
|
8423
|
+
}
|
|
8424
|
+
|
|
8425
|
+
.me-n3 {
|
|
8426
|
+
margin-right: -1rem !important;
|
|
8427
|
+
}
|
|
8428
|
+
|
|
8429
|
+
.me-n4 {
|
|
8430
|
+
margin-right: -1.5rem !important;
|
|
8431
|
+
}
|
|
8432
|
+
|
|
8433
|
+
.me-n5 {
|
|
8434
|
+
margin-right: -3rem !important;
|
|
8435
|
+
}
|
|
8436
|
+
|
|
8437
|
+
.mb-n1 {
|
|
8438
|
+
margin-bottom: -0.25rem !important;
|
|
8439
|
+
}
|
|
8440
|
+
|
|
8441
|
+
.mb-n2 {
|
|
8442
|
+
margin-bottom: -0.5rem !important;
|
|
8443
|
+
}
|
|
8444
|
+
|
|
8445
|
+
.mb-n3 {
|
|
8446
|
+
margin-bottom: -1rem !important;
|
|
8447
|
+
}
|
|
8448
|
+
|
|
8449
|
+
.mb-n4 {
|
|
8450
|
+
margin-bottom: -1.5rem !important;
|
|
8451
|
+
}
|
|
8452
|
+
|
|
8453
|
+
.mb-n5 {
|
|
8454
|
+
margin-bottom: -3rem !important;
|
|
8455
|
+
}
|
|
8456
|
+
|
|
8457
|
+
.ms-n1 {
|
|
8458
|
+
margin-left: -0.25rem !important;
|
|
8459
|
+
}
|
|
8460
|
+
|
|
8461
|
+
.ms-n2 {
|
|
8462
|
+
margin-left: -0.5rem !important;
|
|
8463
|
+
}
|
|
8464
|
+
|
|
8465
|
+
.ms-n3 {
|
|
8466
|
+
margin-left: -1rem !important;
|
|
8467
|
+
}
|
|
8468
|
+
|
|
8469
|
+
.ms-n4 {
|
|
8470
|
+
margin-left: -1.5rem !important;
|
|
8471
|
+
}
|
|
8472
|
+
|
|
8473
|
+
.ms-n5 {
|
|
8474
|
+
margin-left: -3rem !important;
|
|
8475
|
+
}
|
|
8476
|
+
|
|
7929
8477
|
.p-0 {
|
|
7930
8478
|
padding: 0 !important;
|
|
7931
8479
|
}
|
|
@@ -8560,6 +9108,11 @@ textarea.form-control-lg {
|
|
|
8560
9108
|
background-color: transparent !important;
|
|
8561
9109
|
}
|
|
8562
9110
|
|
|
9111
|
+
.bg-date {
|
|
9112
|
+
--bs-bg-opacity: 1;
|
|
9113
|
+
background-color: #1698af !important;
|
|
9114
|
+
}
|
|
9115
|
+
|
|
8563
9116
|
.bg-opacity-10 {
|
|
8564
9117
|
--bs-bg-opacity: 0.1;
|
|
8565
9118
|
}
|
|
@@ -8724,6 +9277,14 @@ textarea.form-control-lg {
|
|
|
8724
9277
|
display: none !important;
|
|
8725
9278
|
}
|
|
8726
9279
|
|
|
9280
|
+
.border-sm {
|
|
9281
|
+
border: 1px solid #dee2e6 !important;
|
|
9282
|
+
}
|
|
9283
|
+
|
|
9284
|
+
.border-sm-0 {
|
|
9285
|
+
border: 0 !important;
|
|
9286
|
+
}
|
|
9287
|
+
|
|
8727
9288
|
.flex-sm-fill {
|
|
8728
9289
|
-ms-flex: 1 1 auto !important;
|
|
8729
9290
|
flex: 1 1 auto !important;
|
|
@@ -9380,32 +9941,182 @@ textarea.form-control-lg {
|
|
|
9380
9941
|
margin-left: auto !important;
|
|
9381
9942
|
}
|
|
9382
9943
|
|
|
9383
|
-
.
|
|
9384
|
-
|
|
9944
|
+
.m-sm-n1 {
|
|
9945
|
+
margin: -0.25rem !important;
|
|
9385
9946
|
}
|
|
9386
9947
|
|
|
9387
|
-
.
|
|
9388
|
-
|
|
9948
|
+
.m-sm-n2 {
|
|
9949
|
+
margin: -0.5rem !important;
|
|
9389
9950
|
}
|
|
9390
9951
|
|
|
9391
|
-
.
|
|
9392
|
-
|
|
9952
|
+
.m-sm-n3 {
|
|
9953
|
+
margin: -1rem !important;
|
|
9393
9954
|
}
|
|
9394
9955
|
|
|
9395
|
-
.
|
|
9396
|
-
|
|
9956
|
+
.m-sm-n4 {
|
|
9957
|
+
margin: -1.5rem !important;
|
|
9397
9958
|
}
|
|
9398
9959
|
|
|
9399
|
-
.
|
|
9400
|
-
|
|
9960
|
+
.m-sm-n5 {
|
|
9961
|
+
margin: -3rem !important;
|
|
9401
9962
|
}
|
|
9402
9963
|
|
|
9403
|
-
.
|
|
9404
|
-
|
|
9964
|
+
.mx-sm-n1 {
|
|
9965
|
+
margin-right: -0.25rem !important;
|
|
9966
|
+
margin-left: -0.25rem !important;
|
|
9405
9967
|
}
|
|
9406
9968
|
|
|
9407
|
-
.
|
|
9408
|
-
|
|
9969
|
+
.mx-sm-n2 {
|
|
9970
|
+
margin-right: -0.5rem !important;
|
|
9971
|
+
margin-left: -0.5rem !important;
|
|
9972
|
+
}
|
|
9973
|
+
|
|
9974
|
+
.mx-sm-n3 {
|
|
9975
|
+
margin-right: -1rem !important;
|
|
9976
|
+
margin-left: -1rem !important;
|
|
9977
|
+
}
|
|
9978
|
+
|
|
9979
|
+
.mx-sm-n4 {
|
|
9980
|
+
margin-right: -1.5rem !important;
|
|
9981
|
+
margin-left: -1.5rem !important;
|
|
9982
|
+
}
|
|
9983
|
+
|
|
9984
|
+
.mx-sm-n5 {
|
|
9985
|
+
margin-right: -3rem !important;
|
|
9986
|
+
margin-left: -3rem !important;
|
|
9987
|
+
}
|
|
9988
|
+
|
|
9989
|
+
.my-sm-n1 {
|
|
9990
|
+
margin-top: -0.25rem !important;
|
|
9991
|
+
margin-bottom: -0.25rem !important;
|
|
9992
|
+
}
|
|
9993
|
+
|
|
9994
|
+
.my-sm-n2 {
|
|
9995
|
+
margin-top: -0.5rem !important;
|
|
9996
|
+
margin-bottom: -0.5rem !important;
|
|
9997
|
+
}
|
|
9998
|
+
|
|
9999
|
+
.my-sm-n3 {
|
|
10000
|
+
margin-top: -1rem !important;
|
|
10001
|
+
margin-bottom: -1rem !important;
|
|
10002
|
+
}
|
|
10003
|
+
|
|
10004
|
+
.my-sm-n4 {
|
|
10005
|
+
margin-top: -1.5rem !important;
|
|
10006
|
+
margin-bottom: -1.5rem !important;
|
|
10007
|
+
}
|
|
10008
|
+
|
|
10009
|
+
.my-sm-n5 {
|
|
10010
|
+
margin-top: -3rem !important;
|
|
10011
|
+
margin-bottom: -3rem !important;
|
|
10012
|
+
}
|
|
10013
|
+
|
|
10014
|
+
.mt-sm-n1 {
|
|
10015
|
+
margin-top: -0.25rem !important;
|
|
10016
|
+
}
|
|
10017
|
+
|
|
10018
|
+
.mt-sm-n2 {
|
|
10019
|
+
margin-top: -0.5rem !important;
|
|
10020
|
+
}
|
|
10021
|
+
|
|
10022
|
+
.mt-sm-n3 {
|
|
10023
|
+
margin-top: -1rem !important;
|
|
10024
|
+
}
|
|
10025
|
+
|
|
10026
|
+
.mt-sm-n4 {
|
|
10027
|
+
margin-top: -1.5rem !important;
|
|
10028
|
+
}
|
|
10029
|
+
|
|
10030
|
+
.mt-sm-n5 {
|
|
10031
|
+
margin-top: -3rem !important;
|
|
10032
|
+
}
|
|
10033
|
+
|
|
10034
|
+
.me-sm-n1 {
|
|
10035
|
+
margin-right: -0.25rem !important;
|
|
10036
|
+
}
|
|
10037
|
+
|
|
10038
|
+
.me-sm-n2 {
|
|
10039
|
+
margin-right: -0.5rem !important;
|
|
10040
|
+
}
|
|
10041
|
+
|
|
10042
|
+
.me-sm-n3 {
|
|
10043
|
+
margin-right: -1rem !important;
|
|
10044
|
+
}
|
|
10045
|
+
|
|
10046
|
+
.me-sm-n4 {
|
|
10047
|
+
margin-right: -1.5rem !important;
|
|
10048
|
+
}
|
|
10049
|
+
|
|
10050
|
+
.me-sm-n5 {
|
|
10051
|
+
margin-right: -3rem !important;
|
|
10052
|
+
}
|
|
10053
|
+
|
|
10054
|
+
.mb-sm-n1 {
|
|
10055
|
+
margin-bottom: -0.25rem !important;
|
|
10056
|
+
}
|
|
10057
|
+
|
|
10058
|
+
.mb-sm-n2 {
|
|
10059
|
+
margin-bottom: -0.5rem !important;
|
|
10060
|
+
}
|
|
10061
|
+
|
|
10062
|
+
.mb-sm-n3 {
|
|
10063
|
+
margin-bottom: -1rem !important;
|
|
10064
|
+
}
|
|
10065
|
+
|
|
10066
|
+
.mb-sm-n4 {
|
|
10067
|
+
margin-bottom: -1.5rem !important;
|
|
10068
|
+
}
|
|
10069
|
+
|
|
10070
|
+
.mb-sm-n5 {
|
|
10071
|
+
margin-bottom: -3rem !important;
|
|
10072
|
+
}
|
|
10073
|
+
|
|
10074
|
+
.ms-sm-n1 {
|
|
10075
|
+
margin-left: -0.25rem !important;
|
|
10076
|
+
}
|
|
10077
|
+
|
|
10078
|
+
.ms-sm-n2 {
|
|
10079
|
+
margin-left: -0.5rem !important;
|
|
10080
|
+
}
|
|
10081
|
+
|
|
10082
|
+
.ms-sm-n3 {
|
|
10083
|
+
margin-left: -1rem !important;
|
|
10084
|
+
}
|
|
10085
|
+
|
|
10086
|
+
.ms-sm-n4 {
|
|
10087
|
+
margin-left: -1.5rem !important;
|
|
10088
|
+
}
|
|
10089
|
+
|
|
10090
|
+
.ms-sm-n5 {
|
|
10091
|
+
margin-left: -3rem !important;
|
|
10092
|
+
}
|
|
10093
|
+
|
|
10094
|
+
.p-sm-0 {
|
|
10095
|
+
padding: 0 !important;
|
|
10096
|
+
}
|
|
10097
|
+
|
|
10098
|
+
.p-sm-1 {
|
|
10099
|
+
padding: 0.25rem !important;
|
|
10100
|
+
}
|
|
10101
|
+
|
|
10102
|
+
.p-sm-2 {
|
|
10103
|
+
padding: 0.5rem !important;
|
|
10104
|
+
}
|
|
10105
|
+
|
|
10106
|
+
.p-sm-3 {
|
|
10107
|
+
padding: 1rem !important;
|
|
10108
|
+
}
|
|
10109
|
+
|
|
10110
|
+
.p-sm-4 {
|
|
10111
|
+
padding: 1.5rem !important;
|
|
10112
|
+
}
|
|
10113
|
+
|
|
10114
|
+
.p-sm-5 {
|
|
10115
|
+
padding: 3rem !important;
|
|
10116
|
+
}
|
|
10117
|
+
|
|
10118
|
+
.p-sm-1-5 {
|
|
10119
|
+
padding: 0.375rem !important;
|
|
9409
10120
|
}
|
|
9410
10121
|
|
|
9411
10122
|
.p-sm-2-5 {
|
|
@@ -9808,6 +10519,14 @@ textarea.form-control-lg {
|
|
|
9808
10519
|
display: none !important;
|
|
9809
10520
|
}
|
|
9810
10521
|
|
|
10522
|
+
.border-md {
|
|
10523
|
+
border: 1px solid #dee2e6 !important;
|
|
10524
|
+
}
|
|
10525
|
+
|
|
10526
|
+
.border-md-0 {
|
|
10527
|
+
border: 0 !important;
|
|
10528
|
+
}
|
|
10529
|
+
|
|
9811
10530
|
.flex-md-fill {
|
|
9812
10531
|
-ms-flex: 1 1 auto !important;
|
|
9813
10532
|
flex: 1 1 auto !important;
|
|
@@ -10464,6 +11183,156 @@ textarea.form-control-lg {
|
|
|
10464
11183
|
margin-left: auto !important;
|
|
10465
11184
|
}
|
|
10466
11185
|
|
|
11186
|
+
.m-md-n1 {
|
|
11187
|
+
margin: -0.25rem !important;
|
|
11188
|
+
}
|
|
11189
|
+
|
|
11190
|
+
.m-md-n2 {
|
|
11191
|
+
margin: -0.5rem !important;
|
|
11192
|
+
}
|
|
11193
|
+
|
|
11194
|
+
.m-md-n3 {
|
|
11195
|
+
margin: -1rem !important;
|
|
11196
|
+
}
|
|
11197
|
+
|
|
11198
|
+
.m-md-n4 {
|
|
11199
|
+
margin: -1.5rem !important;
|
|
11200
|
+
}
|
|
11201
|
+
|
|
11202
|
+
.m-md-n5 {
|
|
11203
|
+
margin: -3rem !important;
|
|
11204
|
+
}
|
|
11205
|
+
|
|
11206
|
+
.mx-md-n1 {
|
|
11207
|
+
margin-right: -0.25rem !important;
|
|
11208
|
+
margin-left: -0.25rem !important;
|
|
11209
|
+
}
|
|
11210
|
+
|
|
11211
|
+
.mx-md-n2 {
|
|
11212
|
+
margin-right: -0.5rem !important;
|
|
11213
|
+
margin-left: -0.5rem !important;
|
|
11214
|
+
}
|
|
11215
|
+
|
|
11216
|
+
.mx-md-n3 {
|
|
11217
|
+
margin-right: -1rem !important;
|
|
11218
|
+
margin-left: -1rem !important;
|
|
11219
|
+
}
|
|
11220
|
+
|
|
11221
|
+
.mx-md-n4 {
|
|
11222
|
+
margin-right: -1.5rem !important;
|
|
11223
|
+
margin-left: -1.5rem !important;
|
|
11224
|
+
}
|
|
11225
|
+
|
|
11226
|
+
.mx-md-n5 {
|
|
11227
|
+
margin-right: -3rem !important;
|
|
11228
|
+
margin-left: -3rem !important;
|
|
11229
|
+
}
|
|
11230
|
+
|
|
11231
|
+
.my-md-n1 {
|
|
11232
|
+
margin-top: -0.25rem !important;
|
|
11233
|
+
margin-bottom: -0.25rem !important;
|
|
11234
|
+
}
|
|
11235
|
+
|
|
11236
|
+
.my-md-n2 {
|
|
11237
|
+
margin-top: -0.5rem !important;
|
|
11238
|
+
margin-bottom: -0.5rem !important;
|
|
11239
|
+
}
|
|
11240
|
+
|
|
11241
|
+
.my-md-n3 {
|
|
11242
|
+
margin-top: -1rem !important;
|
|
11243
|
+
margin-bottom: -1rem !important;
|
|
11244
|
+
}
|
|
11245
|
+
|
|
11246
|
+
.my-md-n4 {
|
|
11247
|
+
margin-top: -1.5rem !important;
|
|
11248
|
+
margin-bottom: -1.5rem !important;
|
|
11249
|
+
}
|
|
11250
|
+
|
|
11251
|
+
.my-md-n5 {
|
|
11252
|
+
margin-top: -3rem !important;
|
|
11253
|
+
margin-bottom: -3rem !important;
|
|
11254
|
+
}
|
|
11255
|
+
|
|
11256
|
+
.mt-md-n1 {
|
|
11257
|
+
margin-top: -0.25rem !important;
|
|
11258
|
+
}
|
|
11259
|
+
|
|
11260
|
+
.mt-md-n2 {
|
|
11261
|
+
margin-top: -0.5rem !important;
|
|
11262
|
+
}
|
|
11263
|
+
|
|
11264
|
+
.mt-md-n3 {
|
|
11265
|
+
margin-top: -1rem !important;
|
|
11266
|
+
}
|
|
11267
|
+
|
|
11268
|
+
.mt-md-n4 {
|
|
11269
|
+
margin-top: -1.5rem !important;
|
|
11270
|
+
}
|
|
11271
|
+
|
|
11272
|
+
.mt-md-n5 {
|
|
11273
|
+
margin-top: -3rem !important;
|
|
11274
|
+
}
|
|
11275
|
+
|
|
11276
|
+
.me-md-n1 {
|
|
11277
|
+
margin-right: -0.25rem !important;
|
|
11278
|
+
}
|
|
11279
|
+
|
|
11280
|
+
.me-md-n2 {
|
|
11281
|
+
margin-right: -0.5rem !important;
|
|
11282
|
+
}
|
|
11283
|
+
|
|
11284
|
+
.me-md-n3 {
|
|
11285
|
+
margin-right: -1rem !important;
|
|
11286
|
+
}
|
|
11287
|
+
|
|
11288
|
+
.me-md-n4 {
|
|
11289
|
+
margin-right: -1.5rem !important;
|
|
11290
|
+
}
|
|
11291
|
+
|
|
11292
|
+
.me-md-n5 {
|
|
11293
|
+
margin-right: -3rem !important;
|
|
11294
|
+
}
|
|
11295
|
+
|
|
11296
|
+
.mb-md-n1 {
|
|
11297
|
+
margin-bottom: -0.25rem !important;
|
|
11298
|
+
}
|
|
11299
|
+
|
|
11300
|
+
.mb-md-n2 {
|
|
11301
|
+
margin-bottom: -0.5rem !important;
|
|
11302
|
+
}
|
|
11303
|
+
|
|
11304
|
+
.mb-md-n3 {
|
|
11305
|
+
margin-bottom: -1rem !important;
|
|
11306
|
+
}
|
|
11307
|
+
|
|
11308
|
+
.mb-md-n4 {
|
|
11309
|
+
margin-bottom: -1.5rem !important;
|
|
11310
|
+
}
|
|
11311
|
+
|
|
11312
|
+
.mb-md-n5 {
|
|
11313
|
+
margin-bottom: -3rem !important;
|
|
11314
|
+
}
|
|
11315
|
+
|
|
11316
|
+
.ms-md-n1 {
|
|
11317
|
+
margin-left: -0.25rem !important;
|
|
11318
|
+
}
|
|
11319
|
+
|
|
11320
|
+
.ms-md-n2 {
|
|
11321
|
+
margin-left: -0.5rem !important;
|
|
11322
|
+
}
|
|
11323
|
+
|
|
11324
|
+
.ms-md-n3 {
|
|
11325
|
+
margin-left: -1rem !important;
|
|
11326
|
+
}
|
|
11327
|
+
|
|
11328
|
+
.ms-md-n4 {
|
|
11329
|
+
margin-left: -1.5rem !important;
|
|
11330
|
+
}
|
|
11331
|
+
|
|
11332
|
+
.ms-md-n5 {
|
|
11333
|
+
margin-left: -3rem !important;
|
|
11334
|
+
}
|
|
11335
|
+
|
|
10467
11336
|
.p-md-0 {
|
|
10468
11337
|
padding: 0 !important;
|
|
10469
11338
|
}
|
|
@@ -10892,6 +11761,14 @@ textarea.form-control-lg {
|
|
|
10892
11761
|
display: none !important;
|
|
10893
11762
|
}
|
|
10894
11763
|
|
|
11764
|
+
.border-lg {
|
|
11765
|
+
border: 1px solid #dee2e6 !important;
|
|
11766
|
+
}
|
|
11767
|
+
|
|
11768
|
+
.border-lg-0 {
|
|
11769
|
+
border: 0 !important;
|
|
11770
|
+
}
|
|
11771
|
+
|
|
10895
11772
|
.flex-lg-fill {
|
|
10896
11773
|
-ms-flex: 1 1 auto !important;
|
|
10897
11774
|
flex: 1 1 auto !important;
|
|
@@ -11548,6 +12425,156 @@ textarea.form-control-lg {
|
|
|
11548
12425
|
margin-left: auto !important;
|
|
11549
12426
|
}
|
|
11550
12427
|
|
|
12428
|
+
.m-lg-n1 {
|
|
12429
|
+
margin: -0.25rem !important;
|
|
12430
|
+
}
|
|
12431
|
+
|
|
12432
|
+
.m-lg-n2 {
|
|
12433
|
+
margin: -0.5rem !important;
|
|
12434
|
+
}
|
|
12435
|
+
|
|
12436
|
+
.m-lg-n3 {
|
|
12437
|
+
margin: -1rem !important;
|
|
12438
|
+
}
|
|
12439
|
+
|
|
12440
|
+
.m-lg-n4 {
|
|
12441
|
+
margin: -1.5rem !important;
|
|
12442
|
+
}
|
|
12443
|
+
|
|
12444
|
+
.m-lg-n5 {
|
|
12445
|
+
margin: -3rem !important;
|
|
12446
|
+
}
|
|
12447
|
+
|
|
12448
|
+
.mx-lg-n1 {
|
|
12449
|
+
margin-right: -0.25rem !important;
|
|
12450
|
+
margin-left: -0.25rem !important;
|
|
12451
|
+
}
|
|
12452
|
+
|
|
12453
|
+
.mx-lg-n2 {
|
|
12454
|
+
margin-right: -0.5rem !important;
|
|
12455
|
+
margin-left: -0.5rem !important;
|
|
12456
|
+
}
|
|
12457
|
+
|
|
12458
|
+
.mx-lg-n3 {
|
|
12459
|
+
margin-right: -1rem !important;
|
|
12460
|
+
margin-left: -1rem !important;
|
|
12461
|
+
}
|
|
12462
|
+
|
|
12463
|
+
.mx-lg-n4 {
|
|
12464
|
+
margin-right: -1.5rem !important;
|
|
12465
|
+
margin-left: -1.5rem !important;
|
|
12466
|
+
}
|
|
12467
|
+
|
|
12468
|
+
.mx-lg-n5 {
|
|
12469
|
+
margin-right: -3rem !important;
|
|
12470
|
+
margin-left: -3rem !important;
|
|
12471
|
+
}
|
|
12472
|
+
|
|
12473
|
+
.my-lg-n1 {
|
|
12474
|
+
margin-top: -0.25rem !important;
|
|
12475
|
+
margin-bottom: -0.25rem !important;
|
|
12476
|
+
}
|
|
12477
|
+
|
|
12478
|
+
.my-lg-n2 {
|
|
12479
|
+
margin-top: -0.5rem !important;
|
|
12480
|
+
margin-bottom: -0.5rem !important;
|
|
12481
|
+
}
|
|
12482
|
+
|
|
12483
|
+
.my-lg-n3 {
|
|
12484
|
+
margin-top: -1rem !important;
|
|
12485
|
+
margin-bottom: -1rem !important;
|
|
12486
|
+
}
|
|
12487
|
+
|
|
12488
|
+
.my-lg-n4 {
|
|
12489
|
+
margin-top: -1.5rem !important;
|
|
12490
|
+
margin-bottom: -1.5rem !important;
|
|
12491
|
+
}
|
|
12492
|
+
|
|
12493
|
+
.my-lg-n5 {
|
|
12494
|
+
margin-top: -3rem !important;
|
|
12495
|
+
margin-bottom: -3rem !important;
|
|
12496
|
+
}
|
|
12497
|
+
|
|
12498
|
+
.mt-lg-n1 {
|
|
12499
|
+
margin-top: -0.25rem !important;
|
|
12500
|
+
}
|
|
12501
|
+
|
|
12502
|
+
.mt-lg-n2 {
|
|
12503
|
+
margin-top: -0.5rem !important;
|
|
12504
|
+
}
|
|
12505
|
+
|
|
12506
|
+
.mt-lg-n3 {
|
|
12507
|
+
margin-top: -1rem !important;
|
|
12508
|
+
}
|
|
12509
|
+
|
|
12510
|
+
.mt-lg-n4 {
|
|
12511
|
+
margin-top: -1.5rem !important;
|
|
12512
|
+
}
|
|
12513
|
+
|
|
12514
|
+
.mt-lg-n5 {
|
|
12515
|
+
margin-top: -3rem !important;
|
|
12516
|
+
}
|
|
12517
|
+
|
|
12518
|
+
.me-lg-n1 {
|
|
12519
|
+
margin-right: -0.25rem !important;
|
|
12520
|
+
}
|
|
12521
|
+
|
|
12522
|
+
.me-lg-n2 {
|
|
12523
|
+
margin-right: -0.5rem !important;
|
|
12524
|
+
}
|
|
12525
|
+
|
|
12526
|
+
.me-lg-n3 {
|
|
12527
|
+
margin-right: -1rem !important;
|
|
12528
|
+
}
|
|
12529
|
+
|
|
12530
|
+
.me-lg-n4 {
|
|
12531
|
+
margin-right: -1.5rem !important;
|
|
12532
|
+
}
|
|
12533
|
+
|
|
12534
|
+
.me-lg-n5 {
|
|
12535
|
+
margin-right: -3rem !important;
|
|
12536
|
+
}
|
|
12537
|
+
|
|
12538
|
+
.mb-lg-n1 {
|
|
12539
|
+
margin-bottom: -0.25rem !important;
|
|
12540
|
+
}
|
|
12541
|
+
|
|
12542
|
+
.mb-lg-n2 {
|
|
12543
|
+
margin-bottom: -0.5rem !important;
|
|
12544
|
+
}
|
|
12545
|
+
|
|
12546
|
+
.mb-lg-n3 {
|
|
12547
|
+
margin-bottom: -1rem !important;
|
|
12548
|
+
}
|
|
12549
|
+
|
|
12550
|
+
.mb-lg-n4 {
|
|
12551
|
+
margin-bottom: -1.5rem !important;
|
|
12552
|
+
}
|
|
12553
|
+
|
|
12554
|
+
.mb-lg-n5 {
|
|
12555
|
+
margin-bottom: -3rem !important;
|
|
12556
|
+
}
|
|
12557
|
+
|
|
12558
|
+
.ms-lg-n1 {
|
|
12559
|
+
margin-left: -0.25rem !important;
|
|
12560
|
+
}
|
|
12561
|
+
|
|
12562
|
+
.ms-lg-n2 {
|
|
12563
|
+
margin-left: -0.5rem !important;
|
|
12564
|
+
}
|
|
12565
|
+
|
|
12566
|
+
.ms-lg-n3 {
|
|
12567
|
+
margin-left: -1rem !important;
|
|
12568
|
+
}
|
|
12569
|
+
|
|
12570
|
+
.ms-lg-n4 {
|
|
12571
|
+
margin-left: -1.5rem !important;
|
|
12572
|
+
}
|
|
12573
|
+
|
|
12574
|
+
.ms-lg-n5 {
|
|
12575
|
+
margin-left: -3rem !important;
|
|
12576
|
+
}
|
|
12577
|
+
|
|
11551
12578
|
.p-lg-0 {
|
|
11552
12579
|
padding: 0 !important;
|
|
11553
12580
|
}
|
|
@@ -11976,6 +13003,14 @@ textarea.form-control-lg {
|
|
|
11976
13003
|
display: none !important;
|
|
11977
13004
|
}
|
|
11978
13005
|
|
|
13006
|
+
.border-xl {
|
|
13007
|
+
border: 1px solid #dee2e6 !important;
|
|
13008
|
+
}
|
|
13009
|
+
|
|
13010
|
+
.border-xl-0 {
|
|
13011
|
+
border: 0 !important;
|
|
13012
|
+
}
|
|
13013
|
+
|
|
11979
13014
|
.flex-xl-fill {
|
|
11980
13015
|
-ms-flex: 1 1 auto !important;
|
|
11981
13016
|
flex: 1 1 auto !important;
|
|
@@ -12632,6 +13667,156 @@ textarea.form-control-lg {
|
|
|
12632
13667
|
margin-left: auto !important;
|
|
12633
13668
|
}
|
|
12634
13669
|
|
|
13670
|
+
.m-xl-n1 {
|
|
13671
|
+
margin: -0.25rem !important;
|
|
13672
|
+
}
|
|
13673
|
+
|
|
13674
|
+
.m-xl-n2 {
|
|
13675
|
+
margin: -0.5rem !important;
|
|
13676
|
+
}
|
|
13677
|
+
|
|
13678
|
+
.m-xl-n3 {
|
|
13679
|
+
margin: -1rem !important;
|
|
13680
|
+
}
|
|
13681
|
+
|
|
13682
|
+
.m-xl-n4 {
|
|
13683
|
+
margin: -1.5rem !important;
|
|
13684
|
+
}
|
|
13685
|
+
|
|
13686
|
+
.m-xl-n5 {
|
|
13687
|
+
margin: -3rem !important;
|
|
13688
|
+
}
|
|
13689
|
+
|
|
13690
|
+
.mx-xl-n1 {
|
|
13691
|
+
margin-right: -0.25rem !important;
|
|
13692
|
+
margin-left: -0.25rem !important;
|
|
13693
|
+
}
|
|
13694
|
+
|
|
13695
|
+
.mx-xl-n2 {
|
|
13696
|
+
margin-right: -0.5rem !important;
|
|
13697
|
+
margin-left: -0.5rem !important;
|
|
13698
|
+
}
|
|
13699
|
+
|
|
13700
|
+
.mx-xl-n3 {
|
|
13701
|
+
margin-right: -1rem !important;
|
|
13702
|
+
margin-left: -1rem !important;
|
|
13703
|
+
}
|
|
13704
|
+
|
|
13705
|
+
.mx-xl-n4 {
|
|
13706
|
+
margin-right: -1.5rem !important;
|
|
13707
|
+
margin-left: -1.5rem !important;
|
|
13708
|
+
}
|
|
13709
|
+
|
|
13710
|
+
.mx-xl-n5 {
|
|
13711
|
+
margin-right: -3rem !important;
|
|
13712
|
+
margin-left: -3rem !important;
|
|
13713
|
+
}
|
|
13714
|
+
|
|
13715
|
+
.my-xl-n1 {
|
|
13716
|
+
margin-top: -0.25rem !important;
|
|
13717
|
+
margin-bottom: -0.25rem !important;
|
|
13718
|
+
}
|
|
13719
|
+
|
|
13720
|
+
.my-xl-n2 {
|
|
13721
|
+
margin-top: -0.5rem !important;
|
|
13722
|
+
margin-bottom: -0.5rem !important;
|
|
13723
|
+
}
|
|
13724
|
+
|
|
13725
|
+
.my-xl-n3 {
|
|
13726
|
+
margin-top: -1rem !important;
|
|
13727
|
+
margin-bottom: -1rem !important;
|
|
13728
|
+
}
|
|
13729
|
+
|
|
13730
|
+
.my-xl-n4 {
|
|
13731
|
+
margin-top: -1.5rem !important;
|
|
13732
|
+
margin-bottom: -1.5rem !important;
|
|
13733
|
+
}
|
|
13734
|
+
|
|
13735
|
+
.my-xl-n5 {
|
|
13736
|
+
margin-top: -3rem !important;
|
|
13737
|
+
margin-bottom: -3rem !important;
|
|
13738
|
+
}
|
|
13739
|
+
|
|
13740
|
+
.mt-xl-n1 {
|
|
13741
|
+
margin-top: -0.25rem !important;
|
|
13742
|
+
}
|
|
13743
|
+
|
|
13744
|
+
.mt-xl-n2 {
|
|
13745
|
+
margin-top: -0.5rem !important;
|
|
13746
|
+
}
|
|
13747
|
+
|
|
13748
|
+
.mt-xl-n3 {
|
|
13749
|
+
margin-top: -1rem !important;
|
|
13750
|
+
}
|
|
13751
|
+
|
|
13752
|
+
.mt-xl-n4 {
|
|
13753
|
+
margin-top: -1.5rem !important;
|
|
13754
|
+
}
|
|
13755
|
+
|
|
13756
|
+
.mt-xl-n5 {
|
|
13757
|
+
margin-top: -3rem !important;
|
|
13758
|
+
}
|
|
13759
|
+
|
|
13760
|
+
.me-xl-n1 {
|
|
13761
|
+
margin-right: -0.25rem !important;
|
|
13762
|
+
}
|
|
13763
|
+
|
|
13764
|
+
.me-xl-n2 {
|
|
13765
|
+
margin-right: -0.5rem !important;
|
|
13766
|
+
}
|
|
13767
|
+
|
|
13768
|
+
.me-xl-n3 {
|
|
13769
|
+
margin-right: -1rem !important;
|
|
13770
|
+
}
|
|
13771
|
+
|
|
13772
|
+
.me-xl-n4 {
|
|
13773
|
+
margin-right: -1.5rem !important;
|
|
13774
|
+
}
|
|
13775
|
+
|
|
13776
|
+
.me-xl-n5 {
|
|
13777
|
+
margin-right: -3rem !important;
|
|
13778
|
+
}
|
|
13779
|
+
|
|
13780
|
+
.mb-xl-n1 {
|
|
13781
|
+
margin-bottom: -0.25rem !important;
|
|
13782
|
+
}
|
|
13783
|
+
|
|
13784
|
+
.mb-xl-n2 {
|
|
13785
|
+
margin-bottom: -0.5rem !important;
|
|
13786
|
+
}
|
|
13787
|
+
|
|
13788
|
+
.mb-xl-n3 {
|
|
13789
|
+
margin-bottom: -1rem !important;
|
|
13790
|
+
}
|
|
13791
|
+
|
|
13792
|
+
.mb-xl-n4 {
|
|
13793
|
+
margin-bottom: -1.5rem !important;
|
|
13794
|
+
}
|
|
13795
|
+
|
|
13796
|
+
.mb-xl-n5 {
|
|
13797
|
+
margin-bottom: -3rem !important;
|
|
13798
|
+
}
|
|
13799
|
+
|
|
13800
|
+
.ms-xl-n1 {
|
|
13801
|
+
margin-left: -0.25rem !important;
|
|
13802
|
+
}
|
|
13803
|
+
|
|
13804
|
+
.ms-xl-n2 {
|
|
13805
|
+
margin-left: -0.5rem !important;
|
|
13806
|
+
}
|
|
13807
|
+
|
|
13808
|
+
.ms-xl-n3 {
|
|
13809
|
+
margin-left: -1rem !important;
|
|
13810
|
+
}
|
|
13811
|
+
|
|
13812
|
+
.ms-xl-n4 {
|
|
13813
|
+
margin-left: -1.5rem !important;
|
|
13814
|
+
}
|
|
13815
|
+
|
|
13816
|
+
.ms-xl-n5 {
|
|
13817
|
+
margin-left: -3rem !important;
|
|
13818
|
+
}
|
|
13819
|
+
|
|
12635
13820
|
.p-xl-0 {
|
|
12636
13821
|
padding: 0 !important;
|
|
12637
13822
|
}
|
|
@@ -13060,6 +14245,14 @@ textarea.form-control-lg {
|
|
|
13060
14245
|
display: none !important;
|
|
13061
14246
|
}
|
|
13062
14247
|
|
|
14248
|
+
.border-xxl {
|
|
14249
|
+
border: 1px solid #dee2e6 !important;
|
|
14250
|
+
}
|
|
14251
|
+
|
|
14252
|
+
.border-xxl-0 {
|
|
14253
|
+
border: 0 !important;
|
|
14254
|
+
}
|
|
14255
|
+
|
|
13063
14256
|
.flex-xxl-fill {
|
|
13064
14257
|
-ms-flex: 1 1 auto !important;
|
|
13065
14258
|
flex: 1 1 auto !important;
|
|
@@ -13716,6 +14909,156 @@ textarea.form-control-lg {
|
|
|
13716
14909
|
margin-left: auto !important;
|
|
13717
14910
|
}
|
|
13718
14911
|
|
|
14912
|
+
.m-xxl-n1 {
|
|
14913
|
+
margin: -0.25rem !important;
|
|
14914
|
+
}
|
|
14915
|
+
|
|
14916
|
+
.m-xxl-n2 {
|
|
14917
|
+
margin: -0.5rem !important;
|
|
14918
|
+
}
|
|
14919
|
+
|
|
14920
|
+
.m-xxl-n3 {
|
|
14921
|
+
margin: -1rem !important;
|
|
14922
|
+
}
|
|
14923
|
+
|
|
14924
|
+
.m-xxl-n4 {
|
|
14925
|
+
margin: -1.5rem !important;
|
|
14926
|
+
}
|
|
14927
|
+
|
|
14928
|
+
.m-xxl-n5 {
|
|
14929
|
+
margin: -3rem !important;
|
|
14930
|
+
}
|
|
14931
|
+
|
|
14932
|
+
.mx-xxl-n1 {
|
|
14933
|
+
margin-right: -0.25rem !important;
|
|
14934
|
+
margin-left: -0.25rem !important;
|
|
14935
|
+
}
|
|
14936
|
+
|
|
14937
|
+
.mx-xxl-n2 {
|
|
14938
|
+
margin-right: -0.5rem !important;
|
|
14939
|
+
margin-left: -0.5rem !important;
|
|
14940
|
+
}
|
|
14941
|
+
|
|
14942
|
+
.mx-xxl-n3 {
|
|
14943
|
+
margin-right: -1rem !important;
|
|
14944
|
+
margin-left: -1rem !important;
|
|
14945
|
+
}
|
|
14946
|
+
|
|
14947
|
+
.mx-xxl-n4 {
|
|
14948
|
+
margin-right: -1.5rem !important;
|
|
14949
|
+
margin-left: -1.5rem !important;
|
|
14950
|
+
}
|
|
14951
|
+
|
|
14952
|
+
.mx-xxl-n5 {
|
|
14953
|
+
margin-right: -3rem !important;
|
|
14954
|
+
margin-left: -3rem !important;
|
|
14955
|
+
}
|
|
14956
|
+
|
|
14957
|
+
.my-xxl-n1 {
|
|
14958
|
+
margin-top: -0.25rem !important;
|
|
14959
|
+
margin-bottom: -0.25rem !important;
|
|
14960
|
+
}
|
|
14961
|
+
|
|
14962
|
+
.my-xxl-n2 {
|
|
14963
|
+
margin-top: -0.5rem !important;
|
|
14964
|
+
margin-bottom: -0.5rem !important;
|
|
14965
|
+
}
|
|
14966
|
+
|
|
14967
|
+
.my-xxl-n3 {
|
|
14968
|
+
margin-top: -1rem !important;
|
|
14969
|
+
margin-bottom: -1rem !important;
|
|
14970
|
+
}
|
|
14971
|
+
|
|
14972
|
+
.my-xxl-n4 {
|
|
14973
|
+
margin-top: -1.5rem !important;
|
|
14974
|
+
margin-bottom: -1.5rem !important;
|
|
14975
|
+
}
|
|
14976
|
+
|
|
14977
|
+
.my-xxl-n5 {
|
|
14978
|
+
margin-top: -3rem !important;
|
|
14979
|
+
margin-bottom: -3rem !important;
|
|
14980
|
+
}
|
|
14981
|
+
|
|
14982
|
+
.mt-xxl-n1 {
|
|
14983
|
+
margin-top: -0.25rem !important;
|
|
14984
|
+
}
|
|
14985
|
+
|
|
14986
|
+
.mt-xxl-n2 {
|
|
14987
|
+
margin-top: -0.5rem !important;
|
|
14988
|
+
}
|
|
14989
|
+
|
|
14990
|
+
.mt-xxl-n3 {
|
|
14991
|
+
margin-top: -1rem !important;
|
|
14992
|
+
}
|
|
14993
|
+
|
|
14994
|
+
.mt-xxl-n4 {
|
|
14995
|
+
margin-top: -1.5rem !important;
|
|
14996
|
+
}
|
|
14997
|
+
|
|
14998
|
+
.mt-xxl-n5 {
|
|
14999
|
+
margin-top: -3rem !important;
|
|
15000
|
+
}
|
|
15001
|
+
|
|
15002
|
+
.me-xxl-n1 {
|
|
15003
|
+
margin-right: -0.25rem !important;
|
|
15004
|
+
}
|
|
15005
|
+
|
|
15006
|
+
.me-xxl-n2 {
|
|
15007
|
+
margin-right: -0.5rem !important;
|
|
15008
|
+
}
|
|
15009
|
+
|
|
15010
|
+
.me-xxl-n3 {
|
|
15011
|
+
margin-right: -1rem !important;
|
|
15012
|
+
}
|
|
15013
|
+
|
|
15014
|
+
.me-xxl-n4 {
|
|
15015
|
+
margin-right: -1.5rem !important;
|
|
15016
|
+
}
|
|
15017
|
+
|
|
15018
|
+
.me-xxl-n5 {
|
|
15019
|
+
margin-right: -3rem !important;
|
|
15020
|
+
}
|
|
15021
|
+
|
|
15022
|
+
.mb-xxl-n1 {
|
|
15023
|
+
margin-bottom: -0.25rem !important;
|
|
15024
|
+
}
|
|
15025
|
+
|
|
15026
|
+
.mb-xxl-n2 {
|
|
15027
|
+
margin-bottom: -0.5rem !important;
|
|
15028
|
+
}
|
|
15029
|
+
|
|
15030
|
+
.mb-xxl-n3 {
|
|
15031
|
+
margin-bottom: -1rem !important;
|
|
15032
|
+
}
|
|
15033
|
+
|
|
15034
|
+
.mb-xxl-n4 {
|
|
15035
|
+
margin-bottom: -1.5rem !important;
|
|
15036
|
+
}
|
|
15037
|
+
|
|
15038
|
+
.mb-xxl-n5 {
|
|
15039
|
+
margin-bottom: -3rem !important;
|
|
15040
|
+
}
|
|
15041
|
+
|
|
15042
|
+
.ms-xxl-n1 {
|
|
15043
|
+
margin-left: -0.25rem !important;
|
|
15044
|
+
}
|
|
15045
|
+
|
|
15046
|
+
.ms-xxl-n2 {
|
|
15047
|
+
margin-left: -0.5rem !important;
|
|
15048
|
+
}
|
|
15049
|
+
|
|
15050
|
+
.ms-xxl-n3 {
|
|
15051
|
+
margin-left: -1rem !important;
|
|
15052
|
+
}
|
|
15053
|
+
|
|
15054
|
+
.ms-xxl-n4 {
|
|
15055
|
+
margin-left: -1.5rem !important;
|
|
15056
|
+
}
|
|
15057
|
+
|
|
15058
|
+
.ms-xxl-n5 {
|
|
15059
|
+
margin-left: -3rem !important;
|
|
15060
|
+
}
|
|
15061
|
+
|
|
13719
15062
|
.p-xxl-0 {
|
|
13720
15063
|
padding: 0 !important;
|
|
13721
15064
|
}
|
|
@@ -14149,6 +15492,13 @@ textarea.form-control-lg {
|
|
|
14149
15492
|
display: none !important;
|
|
14150
15493
|
}
|
|
14151
15494
|
}
|
|
15495
|
+
[data-bs-toggle=collapse][aria-expanded=false] .text-collapsed {
|
|
15496
|
+
display: none;
|
|
15497
|
+
}
|
|
15498
|
+
[data-bs-toggle=collapse][aria-expanded=true] .text-not-collapsed {
|
|
15499
|
+
display: none;
|
|
15500
|
+
}
|
|
15501
|
+
|
|
14152
15502
|
body {
|
|
14153
15503
|
overflow-x: hidden;
|
|
14154
15504
|
}
|
|
@@ -14168,6 +15518,7 @@ body {
|
|
|
14168
15518
|
|
|
14169
15519
|
.bcl-header__project {
|
|
14170
15520
|
padding-top: 1rem;
|
|
15521
|
+
min-height: 3rem;
|
|
14171
15522
|
}
|
|
14172
15523
|
|
|
14173
15524
|
.ec__header .bcl-header__project,
|
|
@@ -14395,6 +15746,9 @@ body {
|
|
|
14395
15746
|
border-bottom: 2px solid #0d6efd;
|
|
14396
15747
|
border-left: none;
|
|
14397
15748
|
}
|
|
15749
|
+
.nav.bg-gray {
|
|
15750
|
+
background: #e9ecef;
|
|
15751
|
+
}
|
|
14398
15752
|
|
|
14399
15753
|
@media (max-width: 767.98px) {
|
|
14400
15754
|
.nav-tabs {
|
|
@@ -14644,7 +15998,10 @@ textarea.form-control.is-valid,
|
|
|
14644
15998
|
.badge {
|
|
14645
15999
|
font-size: 1.125rem;
|
|
14646
16000
|
font-weight: 400;
|
|
14647
|
-
|
|
16001
|
+
display: -ms-inline-flexbox;
|
|
16002
|
+
display: inline-flex;
|
|
16003
|
+
-ms-flex-align: center;
|
|
16004
|
+
align-items: center;
|
|
14648
16005
|
}
|
|
14649
16006
|
@media (min-width: 768px) {
|
|
14650
16007
|
.badge {
|
|
@@ -15368,7 +16725,7 @@ select.multi-select {
|
|
|
15368
16725
|
|
|
15369
16726
|
.bcl-banner__content {
|
|
15370
16727
|
padding: 2.5rem 2rem;
|
|
15371
|
-
border-color: #0d6efd
|
|
16728
|
+
border-color: #0d6efd;
|
|
15372
16729
|
}
|
|
15373
16730
|
|
|
15374
16731
|
.bcl-banner__image {
|
|
@@ -15418,11 +16775,14 @@ select.multi-select {
|
|
|
15418
16775
|
border-bottom: 0;
|
|
15419
16776
|
border-left: 4px solid transparent;
|
|
15420
16777
|
}
|
|
15421
|
-
|
|
16778
|
+
|
|
16779
|
+
.bcl-banner.full-width,
|
|
16780
|
+
.bcl-content-banner {
|
|
15422
16781
|
left: 50%;
|
|
15423
16782
|
width: 100vw;
|
|
15424
16783
|
margin-left: -50vw;
|
|
15425
16784
|
border-radius: 0;
|
|
16785
|
+
position: relative;
|
|
15426
16786
|
}
|
|
15427
16787
|
|
|
15428
16788
|
.bcl-banner__content {
|
|
@@ -15477,4 +16837,80 @@ select.multi-select {
|
|
|
15477
16837
|
padding-top: 33.33%;
|
|
15478
16838
|
}
|
|
15479
16839
|
}
|
|
16840
|
+
/* stylelint-disable declaration-no-important */
|
|
16841
|
+
.bcl-timeline {
|
|
16842
|
+
list-style-type: none;
|
|
16843
|
+
position: relative;
|
|
16844
|
+
padding: 0;
|
|
16845
|
+
margin: 0;
|
|
16846
|
+
max-width: 648px;
|
|
16847
|
+
}
|
|
16848
|
+
.bcl-timeline > li {
|
|
16849
|
+
position: relative;
|
|
16850
|
+
padding-bottom: 2rem;
|
|
16851
|
+
padding-left: calc(22px + 1rem);
|
|
16852
|
+
}
|
|
16853
|
+
.bcl-timeline > li::before {
|
|
16854
|
+
content: "";
|
|
16855
|
+
background: #fff;
|
|
16856
|
+
display: inline-block;
|
|
16857
|
+
position: absolute;
|
|
16858
|
+
border-radius: 50%;
|
|
16859
|
+
border: 2px solid #0d6efd;
|
|
16860
|
+
left: 0;
|
|
16861
|
+
width: 22px;
|
|
16862
|
+
height: 22px;
|
|
16863
|
+
}
|
|
16864
|
+
.bcl-timeline > li::after {
|
|
16865
|
+
content: "";
|
|
16866
|
+
background: #dee2e6;
|
|
16867
|
+
display: inline-block;
|
|
16868
|
+
position: absolute;
|
|
16869
|
+
left: 10px;
|
|
16870
|
+
top: 22px;
|
|
16871
|
+
width: 2px;
|
|
16872
|
+
height: 100%;
|
|
16873
|
+
}
|
|
16874
|
+
.bcl-timeline > li.collapsing {
|
|
16875
|
+
transition: none !important;
|
|
16876
|
+
}
|
|
16877
|
+
.bcl-timeline > li.bcl-timeline__item--toggle::before {
|
|
16878
|
+
border-color: #6c757d;
|
|
16879
|
+
top: 7px;
|
|
16880
|
+
}
|
|
16881
|
+
.bcl-timeline > li.bcl-timeline__item--toggle::after {
|
|
16882
|
+
top: 30px;
|
|
16883
|
+
background: repeating-linear-gradient(to bottom, #dee2e6, #dee2e6 3px, #fff 3px, #fff 6px);
|
|
16884
|
+
}
|
|
16885
|
+
.bcl-timeline > li:last-child::after {
|
|
16886
|
+
content: none;
|
|
16887
|
+
}
|
|
16888
|
+
.bcl-timeline button[aria-expanded=false] .label-expanded {
|
|
16889
|
+
display: none;
|
|
16890
|
+
}
|
|
16891
|
+
.bcl-timeline button[aria-expanded=true] .label-collapsed {
|
|
16892
|
+
display: none;
|
|
16893
|
+
}
|
|
16894
|
+
.bcl-timeline button[aria-expanded=true] svg {
|
|
16895
|
+
-webkit-transform: rotate(180deg);
|
|
16896
|
+
transform: rotate(180deg);
|
|
16897
|
+
}
|
|
16898
|
+
|
|
16899
|
+
#bcl-inpage-navigation {
|
|
16900
|
+
top: 1rem;
|
|
16901
|
+
background-color: #f8f9fa;
|
|
16902
|
+
}
|
|
16903
|
+
#bcl-inpage-navigation h5, #bcl-inpage-navigation .h5 {
|
|
16904
|
+
font-weight: bold;
|
|
16905
|
+
margin-bottom: 0;
|
|
16906
|
+
padding: 1.25rem;
|
|
16907
|
+
border-bottom: 1px solid #dee2e6;
|
|
16908
|
+
}
|
|
16909
|
+
#bcl-inpage-navigation ul {
|
|
16910
|
+
padding: 0.75rem;
|
|
16911
|
+
}
|
|
16912
|
+
#bcl-inpage-navigation ul .nav-link {
|
|
16913
|
+
padding: 0.5rem;
|
|
16914
|
+
margin-bottom: 0.5rem;
|
|
16915
|
+
}
|
|
15480
16916
|
/*# sourceMappingURL=oe-bcl-default.css.map */
|