@swisspost/design-system-components 1.3.0 → 1.3.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.
@@ -180,20 +180,6 @@
180
180
  --bs-body-line-height: 1.4;
181
181
  --bs-body-color: #000;
182
182
  --bs-body-bg: #fff;
183
- --bs-border-width: 1px;
184
- --bs-border-style: solid;
185
- --bs-border-color: #cccccc;
186
- --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
187
- --bs-border-radius: 3px;
188
- --bs-border-radius-sm: 3px;
189
- --bs-border-radius-lg: 3px;
190
- --bs-border-radius-xl: 1rem;
191
- --bs-border-radius-2xl: 2rem;
192
- --bs-border-radius-pill: 50rem;
193
- --bs-link-color: #333333;
194
- --bs-link-hover-color: #292929;
195
- --bs-code-color: #d63384;
196
- --bs-highlight-bg: #fcf8e3;
197
183
  }
198
184
 
199
185
  @font-face {
@@ -247,11 +233,15 @@ body {
247
233
  hr {
248
234
  margin: 1rem 0;
249
235
  color: inherit;
236
+ background-color: currentColor;
250
237
  border: 0;
251
- border-top: 1px solid rgba(0, 0, 0, 0.1);
252
238
  opacity: 0.25;
253
239
  }
254
240
 
241
+ hr:not([size]) {
242
+ height: 1px;
243
+ }
244
+
255
245
  h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
256
246
  margin-top: 0;
257
247
  margin-bottom: 0.5rem;
@@ -310,7 +300,8 @@ p {
310
300
  margin-bottom: 0.8em;
311
301
  }
312
302
 
313
- abbr[title] {
303
+ abbr[title],
304
+ abbr[data-bs-original-title] {
314
305
  text-decoration: underline dotted;
315
306
  cursor: help;
316
307
  text-decoration-skip-ink: none;
@@ -365,7 +356,7 @@ small, .small {
365
356
 
366
357
  mark, .mark {
367
358
  padding: 0.2em;
368
- background-color: var(--bs-highlight-bg);
359
+ background-color: #fcf8e3;
369
360
  }
370
361
 
371
362
  sub,
@@ -385,11 +376,11 @@ sup {
385
376
  }
386
377
 
387
378
  a {
388
- color: var(--bs-link-color);
379
+ color: #333333;
389
380
  text-decoration: underline;
390
381
  }
391
382
  a:hover {
392
- color: var(--bs-link-hover-color);
383
+ color: #292929;
393
384
  }
394
385
 
395
386
  a:not([href]):not([class]), a:not([href]):not([class]):hover {
@@ -403,6 +394,8 @@ kbd,
403
394
  samp {
404
395
  font-family: var(--bs-font-monospace);
405
396
  font-size: 1em;
397
+ direction: ltr /* rtl:ignore */;
398
+ unicode-bidi: bidi-override;
406
399
  }
407
400
 
408
401
  pre {
@@ -420,7 +413,7 @@ pre code {
420
413
 
421
414
  code {
422
415
  font-size: 80%;
423
- color: var(--bs-code-color);
416
+ color: #d63384;
424
417
  word-wrap: break-word;
425
418
  }
426
419
  a > code {
@@ -428,10 +421,10 @@ a > code {
428
421
  }
429
422
 
430
423
  kbd {
431
- padding: 0.1875rem 0.375rem;
424
+ padding: 0.2rem 0.4rem;
432
425
  font-size: 80%;
433
- color: var(--bs-body-bg);
434
- background-color: var(--bs-body-color);
426
+ color: #fff;
427
+ background-color: #212529;
435
428
  border-radius: 3px;
436
429
  }
437
430
  kbd kbd {
@@ -516,8 +509,8 @@ select:disabled {
516
509
  opacity: 1;
517
510
  }
518
511
 
519
- [list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
520
- display: none !important;
512
+ [list]::-webkit-calendar-picker-indicator {
513
+ display: none;
521
514
  }
522
515
 
523
516
  button,
@@ -603,6 +596,10 @@ legend + * {
603
596
 
604
597
  ::file-selector-button {
605
598
  font: inherit;
599
+ }
600
+
601
+ ::-webkit-file-upload-button {
602
+ font: inherit;
606
603
  -webkit-appearance: button;
607
604
  }
608
605
 
@@ -1133,100 +1130,60 @@ code {
1133
1130
  content: "";
1134
1131
  }
1135
1132
 
1136
- .text-bg-primary {
1137
- color: #fff !important;
1138
- background-color: RGBA(51, 51, 51, var(--bs-bg-opacity, 1)) !important;
1139
- }
1140
-
1141
- .text-bg-secondary {
1142
- color: #fff !important;
1143
- background-color: RGBA(102, 102, 102, var(--bs-bg-opacity, 1)) !important;
1144
- }
1145
-
1146
- .text-bg-light {
1147
- color: #000 !important;
1148
- background-color: RGBA(250, 249, 248, var(--bs-bg-opacity, 1)) !important;
1149
- }
1150
-
1151
- .text-bg-dark {
1152
- color: #fff !important;
1153
- background-color: RGBA(51, 51, 51, var(--bs-bg-opacity, 1)) !important;
1154
- }
1155
-
1156
- .text-bg-success {
1157
- color: #000 !important;
1158
- background-color: RGBA(44, 145, 28, var(--bs-bg-opacity, 1)) !important;
1159
- }
1160
-
1161
- .text-bg-info {
1162
- color: #000 !important;
1163
- background-color: RGBA(255, 204, 0, var(--bs-bg-opacity, 1)) !important;
1164
- }
1165
-
1166
- .text-bg-warning {
1167
- color: #000 !important;
1168
- background-color: RGBA(244, 158, 0, var(--bs-bg-opacity, 1)) !important;
1169
- }
1170
-
1171
- .text-bg-danger {
1172
- color: #fff !important;
1173
- background-color: RGBA(165, 23, 40, var(--bs-bg-opacity, 1)) !important;
1174
- }
1175
-
1176
1133
  .link-primary {
1177
- color: #333333 !important;
1134
+ color: #333333;
1178
1135
  }
1179
1136
  .link-primary:hover, .link-primary:focus {
1180
- color: #292929 !important;
1137
+ color: #292929;
1181
1138
  }
1182
1139
 
1183
1140
  .link-secondary {
1184
- color: #666666 !important;
1141
+ color: #666666;
1185
1142
  }
1186
1143
  .link-secondary:hover, .link-secondary:focus {
1187
- color: #525252 !important;
1144
+ color: #525252;
1188
1145
  }
1189
1146
 
1190
1147
  .link-light {
1191
- color: #faf9f8 !important;
1148
+ color: #faf9f8;
1192
1149
  }
1193
1150
  .link-light:hover, .link-light:focus {
1194
- color: #fbfaf9 !important;
1151
+ color: #fbfaf9;
1195
1152
  }
1196
1153
 
1197
1154
  .link-dark {
1198
- color: #333333 !important;
1155
+ color: #333333;
1199
1156
  }
1200
1157
  .link-dark:hover, .link-dark:focus {
1201
- color: #292929 !important;
1158
+ color: #292929;
1202
1159
  }
1203
1160
 
1204
1161
  .link-success {
1205
- color: #2c911c !important;
1162
+ color: #2c911c;
1206
1163
  }
1207
1164
  .link-success:hover, .link-success:focus {
1208
- color: #56a749 !important;
1165
+ color: #56a749;
1209
1166
  }
1210
1167
 
1211
1168
  .link-info {
1212
- color: #fc0 !important;
1169
+ color: #fc0;
1213
1170
  }
1214
1171
  .link-info:hover, .link-info:focus {
1215
- color: #ffd633 !important;
1172
+ color: #ffd633;
1216
1173
  }
1217
1174
 
1218
1175
  .link-warning {
1219
- color: #f49e00 !important;
1176
+ color: #f49e00;
1220
1177
  }
1221
1178
  .link-warning:hover, .link-warning:focus {
1222
- color: #f6b133 !important;
1179
+ color: #f6b133;
1223
1180
  }
1224
1181
 
1225
1182
  .link-danger {
1226
- color: #a51728 !important;
1183
+ color: #a51728;
1227
1184
  }
1228
1185
  .link-danger:hover, .link-danger:focus {
1229
- color: #841220 !important;
1186
+ color: #841220;
1230
1187
  }
1231
1188
 
1232
1189
  .ratio {
@@ -1284,24 +1241,12 @@ code {
1284
1241
  z-index: 1020;
1285
1242
  }
1286
1243
 
1287
- .sticky-bottom {
1288
- position: sticky;
1289
- bottom: 0;
1290
- z-index: 1020;
1291
- }
1292
-
1293
1244
  @media (min-width: 400px) {
1294
1245
  .sticky-sm-top {
1295
1246
  position: sticky;
1296
1247
  top: 0;
1297
1248
  z-index: 1020;
1298
1249
  }
1299
-
1300
- .sticky-sm-bottom {
1301
- position: sticky;
1302
- bottom: 0;
1303
- z-index: 1020;
1304
- }
1305
1250
  }
1306
1251
  @media (min-width: 600px) {
1307
1252
  .sticky-rg-top {
@@ -1309,12 +1254,6 @@ code {
1309
1254
  top: 0;
1310
1255
  z-index: 1020;
1311
1256
  }
1312
-
1313
- .sticky-rg-bottom {
1314
- position: sticky;
1315
- bottom: 0;
1316
- z-index: 1020;
1317
- }
1318
1257
  }
1319
1258
  @media (min-width: 780px) {
1320
1259
  .sticky-md-top {
@@ -1322,12 +1261,6 @@ code {
1322
1261
  top: 0;
1323
1262
  z-index: 1020;
1324
1263
  }
1325
-
1326
- .sticky-md-bottom {
1327
- position: sticky;
1328
- bottom: 0;
1329
- z-index: 1020;
1330
- }
1331
1264
  }
1332
1265
  @media (min-width: 1024px) {
1333
1266
  .sticky-lg-top {
@@ -1335,12 +1268,6 @@ code {
1335
1268
  top: 0;
1336
1269
  z-index: 1020;
1337
1270
  }
1338
-
1339
- .sticky-lg-bottom {
1340
- position: sticky;
1341
- bottom: 0;
1342
- z-index: 1020;
1343
- }
1344
1271
  }
1345
1272
  @media (min-width: 1280px) {
1346
1273
  .sticky-xl-top {
@@ -1348,12 +1275,6 @@ code {
1348
1275
  top: 0;
1349
1276
  z-index: 1020;
1350
1277
  }
1351
-
1352
- .sticky-xl-bottom {
1353
- position: sticky;
1354
- bottom: 0;
1355
- z-index: 1020;
1356
- }
1357
1278
  }
1358
1279
  @media (min-width: 1441px) {
1359
1280
  .sticky-xxl-top {
@@ -1361,12 +1282,6 @@ code {
1361
1282
  top: 0;
1362
1283
  z-index: 1020;
1363
1284
  }
1364
-
1365
- .sticky-xxl-bottom {
1366
- position: sticky;
1367
- bottom: 0;
1368
- z-index: 1020;
1369
- }
1370
1285
  }
1371
1286
  .hstack {
1372
1287
  display: flex;
@@ -1416,7 +1331,7 @@ code {
1416
1331
  align-self: stretch;
1417
1332
  width: 1px;
1418
1333
  min-height: 1em;
1419
- background-color: currentcolor;
1334
+ background-color: currentColor;
1420
1335
  opacity: 0.25;
1421
1336
  }
1422
1337
 
@@ -1629,7 +1544,7 @@ code {
1629
1544
  }
1630
1545
 
1631
1546
  .border {
1632
- border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
1547
+ border: 1px solid #cccccc !important;
1633
1548
  }
1634
1549
 
1635
1550
  .border-0 {
@@ -1637,7 +1552,7 @@ code {
1637
1552
  }
1638
1553
 
1639
1554
  .border-top {
1640
- border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
1555
+ border-top: 1px solid #cccccc !important;
1641
1556
  }
1642
1557
 
1643
1558
  .border-top-0 {
@@ -1645,7 +1560,7 @@ code {
1645
1560
  }
1646
1561
 
1647
1562
  .border-end {
1648
- border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
1563
+ border-right: 1px solid #cccccc !important;
1649
1564
  }
1650
1565
 
1651
1566
  .border-end-0 {
@@ -1653,7 +1568,7 @@ code {
1653
1568
  }
1654
1569
 
1655
1570
  .border-bottom {
1656
- border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
1571
+ border-bottom: 1px solid #cccccc !important;
1657
1572
  }
1658
1573
 
1659
1574
  .border-bottom-0 {
@@ -1661,7 +1576,7 @@ code {
1661
1576
  }
1662
1577
 
1663
1578
  .border-start {
1664
- border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
1579
+ border-left: 1px solid #cccccc !important;
1665
1580
  }
1666
1581
 
1667
1582
  .border-start-0 {
@@ -1669,88 +1584,59 @@ code {
1669
1584
  }
1670
1585
 
1671
1586
  .border-primary {
1672
- --bs-border-opacity: 1;
1673
- border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
1587
+ border-color: #333333 !important;
1674
1588
  }
1675
1589
 
1676
1590
  .border-secondary {
1677
- --bs-border-opacity: 1;
1678
- border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
1591
+ border-color: #666666 !important;
1679
1592
  }
1680
1593
 
1681
1594
  .border-light {
1682
- --bs-border-opacity: 1;
1683
- border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
1595
+ border-color: #faf9f8 !important;
1684
1596
  }
1685
1597
 
1686
1598
  .border-dark {
1687
- --bs-border-opacity: 1;
1688
- border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
1599
+ border-color: #333333 !important;
1689
1600
  }
1690
1601
 
1691
1602
  .border-success {
1692
- --bs-border-opacity: 1;
1693
- border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
1603
+ border-color: #2c911c !important;
1694
1604
  }
1695
1605
 
1696
1606
  .border-info {
1697
- --bs-border-opacity: 1;
1698
- border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
1607
+ border-color: #fc0 !important;
1699
1608
  }
1700
1609
 
1701
1610
  .border-warning {
1702
- --bs-border-opacity: 1;
1703
- border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
1611
+ border-color: #f49e00 !important;
1704
1612
  }
1705
1613
 
1706
1614
  .border-danger {
1707
- --bs-border-opacity: 1;
1708
- border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
1615
+ border-color: #a51728 !important;
1709
1616
  }
1710
1617
 
1711
1618
  .border-white {
1712
- --bs-border-opacity: 1;
1713
- border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
1619
+ border-color: #fff !important;
1714
1620
  }
1715
1621
 
1716
1622
  .border-1 {
1717
- --bs-border-width: 1px;
1623
+ border-width: 1px !important;
1718
1624
  }
1719
1625
 
1720
1626
  .border-2 {
1721
- --bs-border-width: 2px;
1627
+ border-width: 2px !important;
1722
1628
  }
1723
1629
 
1724
1630
  .border-3 {
1725
- --bs-border-width: 3px;
1631
+ border-width: 3px !important;
1726
1632
  }
1727
1633
 
1728
1634
  .border-4 {
1729
- --bs-border-width: 4px;
1635
+ border-width: 4px !important;
1730
1636
  }
1731
1637
 
1732
1638
  .border-5 {
1733
- --bs-border-width: 5px;
1734
- }
1735
-
1736
- .border-opacity-10 {
1737
- --bs-border-opacity: 0.1;
1738
- }
1739
-
1740
- .border-opacity-25 {
1741
- --bs-border-opacity: 0.25;
1742
- }
1743
-
1744
- .border-opacity-50 {
1745
- --bs-border-opacity: 0.5;
1746
- }
1747
-
1748
- .border-opacity-75 {
1749
- --bs-border-opacity: 0.75;
1750
- }
1751
-
1752
- .border-opacity-100 {
1753
- --bs-border-opacity: 1;
1639
+ border-width: 5px !important;
1754
1640
  }
1755
1641
 
1756
1642
  .w-25 {
@@ -1865,6 +1751,30 @@ code {
1865
1751
  flex-wrap: wrap-reverse !important;
1866
1752
  }
1867
1753
 
1754
+ .gap-0 {
1755
+ gap: 0 !important;
1756
+ }
1757
+
1758
+ .gap-1 {
1759
+ gap: 0.25rem !important;
1760
+ }
1761
+
1762
+ .gap-2 {
1763
+ gap: 0.5rem !important;
1764
+ }
1765
+
1766
+ .gap-3 {
1767
+ gap: 1rem !important;
1768
+ }
1769
+
1770
+ .gap-4 {
1771
+ gap: 1.5rem !important;
1772
+ }
1773
+
1774
+ .gap-5 {
1775
+ gap: 3rem !important;
1776
+ }
1777
+
1868
1778
  .justify-content-start {
1869
1779
  justify-content: flex-start !important;
1870
1780
  }
@@ -2379,30 +2289,6 @@ code {
2379
2289
  padding-left: 3rem !important;
2380
2290
  }
2381
2291
 
2382
- .gap-0 {
2383
- gap: 0 !important;
2384
- }
2385
-
2386
- .gap-1 {
2387
- gap: 0.25rem !important;
2388
- }
2389
-
2390
- .gap-2 {
2391
- gap: 0.5rem !important;
2392
- }
2393
-
2394
- .gap-3 {
2395
- gap: 1rem !important;
2396
- }
2397
-
2398
- .gap-4 {
2399
- gap: 1.5rem !important;
2400
- }
2401
-
2402
- .gap-5 {
2403
- gap: 3rem !important;
2404
- }
2405
-
2406
2292
  .font-monospace {
2407
2293
  font-family: var(--bs-font-monospace) !important;
2408
2294
  }
@@ -2475,10 +2361,6 @@ code {
2475
2361
  font-weight: 700 !important;
2476
2362
  }
2477
2363
 
2478
- .fw-semibold {
2479
- font-weight: 600 !important;
2480
- }
2481
-
2482
2364
  .fw-bolder {
2483
2365
  font-weight: bolder !important;
2484
2366
  }
@@ -2686,7 +2568,7 @@ code {
2686
2568
  }
2687
2569
 
2688
2570
  .rounded {
2689
- border-radius: var(--bs-border-radius) !important;
2571
+ border-radius: 3px !important;
2690
2572
  }
2691
2573
 
2692
2574
  .rounded-0 {
@@ -2694,23 +2576,15 @@ code {
2694
2576
  }
2695
2577
 
2696
2578
  .rounded-1 {
2697
- border-radius: var(--bs-border-radius-sm) !important;
2579
+ border-radius: 3px !important;
2698
2580
  }
2699
2581
 
2700
2582
  .rounded-2 {
2701
- border-radius: var(--bs-border-radius) !important;
2583
+ border-radius: 3px !important;
2702
2584
  }
2703
2585
 
2704
2586
  .rounded-3 {
2705
- border-radius: var(--bs-border-radius-lg) !important;
2706
- }
2707
-
2708
- .rounded-4 {
2709
- border-radius: var(--bs-border-radius-xl) !important;
2710
- }
2711
-
2712
- .rounded-5 {
2713
- border-radius: var(--bs-border-radius-2xl) !important;
2587
+ border-radius: 3px !important;
2714
2588
  }
2715
2589
 
2716
2590
  .rounded-circle {
@@ -2718,27 +2592,27 @@ code {
2718
2592
  }
2719
2593
 
2720
2594
  .rounded-pill {
2721
- border-radius: var(--bs-border-radius-pill) !important;
2595
+ border-radius: 50rem !important;
2722
2596
  }
2723
2597
 
2724
2598
  .rounded-top {
2725
- border-top-left-radius: var(--bs-border-radius) !important;
2726
- border-top-right-radius: var(--bs-border-radius) !important;
2599
+ border-top-left-radius: 3px !important;
2600
+ border-top-right-radius: 3px !important;
2727
2601
  }
2728
2602
 
2729
2603
  .rounded-end {
2730
- border-top-right-radius: var(--bs-border-radius) !important;
2731
- border-bottom-right-radius: var(--bs-border-radius) !important;
2604
+ border-top-right-radius: 3px !important;
2605
+ border-bottom-right-radius: 3px !important;
2732
2606
  }
2733
2607
 
2734
2608
  .rounded-bottom {
2735
- border-bottom-right-radius: var(--bs-border-radius) !important;
2736
- border-bottom-left-radius: var(--bs-border-radius) !important;
2609
+ border-bottom-right-radius: 3px !important;
2610
+ border-bottom-left-radius: 3px !important;
2737
2611
  }
2738
2612
 
2739
2613
  .rounded-start {
2740
- border-bottom-left-radius: var(--bs-border-radius) !important;
2741
- border-top-left-radius: var(--bs-border-radius) !important;
2614
+ border-bottom-left-radius: 3px !important;
2615
+ border-top-left-radius: 3px !important;
2742
2616
  }
2743
2617
 
2744
2618
  .visible {
@@ -2850,6 +2724,30 @@ code {
2850
2724
  flex-wrap: wrap-reverse !important;
2851
2725
  }
2852
2726
 
2727
+ .gap-sm-0 {
2728
+ gap: 0 !important;
2729
+ }
2730
+
2731
+ .gap-sm-1 {
2732
+ gap: 0.25rem !important;
2733
+ }
2734
+
2735
+ .gap-sm-2 {
2736
+ gap: 0.5rem !important;
2737
+ }
2738
+
2739
+ .gap-sm-3 {
2740
+ gap: 1rem !important;
2741
+ }
2742
+
2743
+ .gap-sm-4 {
2744
+ gap: 1.5rem !important;
2745
+ }
2746
+
2747
+ .gap-sm-5 {
2748
+ gap: 3rem !important;
2749
+ }
2750
+
2853
2751
  .justify-content-sm-start {
2854
2752
  justify-content: flex-start !important;
2855
2753
  }
@@ -3364,30 +3262,6 @@ code {
3364
3262
  padding-left: 3rem !important;
3365
3263
  }
3366
3264
 
3367
- .gap-sm-0 {
3368
- gap: 0 !important;
3369
- }
3370
-
3371
- .gap-sm-1 {
3372
- gap: 0.25rem !important;
3373
- }
3374
-
3375
- .gap-sm-2 {
3376
- gap: 0.5rem !important;
3377
- }
3378
-
3379
- .gap-sm-3 {
3380
- gap: 1rem !important;
3381
- }
3382
-
3383
- .gap-sm-4 {
3384
- gap: 1.5rem !important;
3385
- }
3386
-
3387
- .gap-sm-5 {
3388
- gap: 3rem !important;
3389
- }
3390
-
3391
3265
  .text-sm-start {
3392
3266
  text-align: left !important;
3393
3267
  }
@@ -3501,6 +3375,30 @@ code {
3501
3375
  flex-wrap: wrap-reverse !important;
3502
3376
  }
3503
3377
 
3378
+ .gap-rg-0 {
3379
+ gap: 0 !important;
3380
+ }
3381
+
3382
+ .gap-rg-1 {
3383
+ gap: 0.25rem !important;
3384
+ }
3385
+
3386
+ .gap-rg-2 {
3387
+ gap: 0.5rem !important;
3388
+ }
3389
+
3390
+ .gap-rg-3 {
3391
+ gap: 1rem !important;
3392
+ }
3393
+
3394
+ .gap-rg-4 {
3395
+ gap: 1.5rem !important;
3396
+ }
3397
+
3398
+ .gap-rg-5 {
3399
+ gap: 3rem !important;
3400
+ }
3401
+
3504
3402
  .justify-content-rg-start {
3505
3403
  justify-content: flex-start !important;
3506
3404
  }
@@ -4015,30 +3913,6 @@ code {
4015
3913
  padding-left: 3rem !important;
4016
3914
  }
4017
3915
 
4018
- .gap-rg-0 {
4019
- gap: 0 !important;
4020
- }
4021
-
4022
- .gap-rg-1 {
4023
- gap: 0.25rem !important;
4024
- }
4025
-
4026
- .gap-rg-2 {
4027
- gap: 0.5rem !important;
4028
- }
4029
-
4030
- .gap-rg-3 {
4031
- gap: 1rem !important;
4032
- }
4033
-
4034
- .gap-rg-4 {
4035
- gap: 1.5rem !important;
4036
- }
4037
-
4038
- .gap-rg-5 {
4039
- gap: 3rem !important;
4040
- }
4041
-
4042
3916
  .text-rg-start {
4043
3917
  text-align: left !important;
4044
3918
  }
@@ -4152,6 +4026,30 @@ code {
4152
4026
  flex-wrap: wrap-reverse !important;
4153
4027
  }
4154
4028
 
4029
+ .gap-md-0 {
4030
+ gap: 0 !important;
4031
+ }
4032
+
4033
+ .gap-md-1 {
4034
+ gap: 0.25rem !important;
4035
+ }
4036
+
4037
+ .gap-md-2 {
4038
+ gap: 0.5rem !important;
4039
+ }
4040
+
4041
+ .gap-md-3 {
4042
+ gap: 1rem !important;
4043
+ }
4044
+
4045
+ .gap-md-4 {
4046
+ gap: 1.5rem !important;
4047
+ }
4048
+
4049
+ .gap-md-5 {
4050
+ gap: 3rem !important;
4051
+ }
4052
+
4155
4053
  .justify-content-md-start {
4156
4054
  justify-content: flex-start !important;
4157
4055
  }
@@ -4666,30 +4564,6 @@ code {
4666
4564
  padding-left: 3rem !important;
4667
4565
  }
4668
4566
 
4669
- .gap-md-0 {
4670
- gap: 0 !important;
4671
- }
4672
-
4673
- .gap-md-1 {
4674
- gap: 0.25rem !important;
4675
- }
4676
-
4677
- .gap-md-2 {
4678
- gap: 0.5rem !important;
4679
- }
4680
-
4681
- .gap-md-3 {
4682
- gap: 1rem !important;
4683
- }
4684
-
4685
- .gap-md-4 {
4686
- gap: 1.5rem !important;
4687
- }
4688
-
4689
- .gap-md-5 {
4690
- gap: 3rem !important;
4691
- }
4692
-
4693
4567
  .text-md-start {
4694
4568
  text-align: left !important;
4695
4569
  }
@@ -4803,6 +4677,30 @@ code {
4803
4677
  flex-wrap: wrap-reverse !important;
4804
4678
  }
4805
4679
 
4680
+ .gap-lg-0 {
4681
+ gap: 0 !important;
4682
+ }
4683
+
4684
+ .gap-lg-1 {
4685
+ gap: 0.25rem !important;
4686
+ }
4687
+
4688
+ .gap-lg-2 {
4689
+ gap: 0.5rem !important;
4690
+ }
4691
+
4692
+ .gap-lg-3 {
4693
+ gap: 1rem !important;
4694
+ }
4695
+
4696
+ .gap-lg-4 {
4697
+ gap: 1.5rem !important;
4698
+ }
4699
+
4700
+ .gap-lg-5 {
4701
+ gap: 3rem !important;
4702
+ }
4703
+
4806
4704
  .justify-content-lg-start {
4807
4705
  justify-content: flex-start !important;
4808
4706
  }
@@ -5317,30 +5215,6 @@ code {
5317
5215
  padding-left: 3rem !important;
5318
5216
  }
5319
5217
 
5320
- .gap-lg-0 {
5321
- gap: 0 !important;
5322
- }
5323
-
5324
- .gap-lg-1 {
5325
- gap: 0.25rem !important;
5326
- }
5327
-
5328
- .gap-lg-2 {
5329
- gap: 0.5rem !important;
5330
- }
5331
-
5332
- .gap-lg-3 {
5333
- gap: 1rem !important;
5334
- }
5335
-
5336
- .gap-lg-4 {
5337
- gap: 1.5rem !important;
5338
- }
5339
-
5340
- .gap-lg-5 {
5341
- gap: 3rem !important;
5342
- }
5343
-
5344
5218
  .text-lg-start {
5345
5219
  text-align: left !important;
5346
5220
  }
@@ -5454,6 +5328,30 @@ code {
5454
5328
  flex-wrap: wrap-reverse !important;
5455
5329
  }
5456
5330
 
5331
+ .gap-xl-0 {
5332
+ gap: 0 !important;
5333
+ }
5334
+
5335
+ .gap-xl-1 {
5336
+ gap: 0.25rem !important;
5337
+ }
5338
+
5339
+ .gap-xl-2 {
5340
+ gap: 0.5rem !important;
5341
+ }
5342
+
5343
+ .gap-xl-3 {
5344
+ gap: 1rem !important;
5345
+ }
5346
+
5347
+ .gap-xl-4 {
5348
+ gap: 1.5rem !important;
5349
+ }
5350
+
5351
+ .gap-xl-5 {
5352
+ gap: 3rem !important;
5353
+ }
5354
+
5457
5355
  .justify-content-xl-start {
5458
5356
  justify-content: flex-start !important;
5459
5357
  }
@@ -5968,30 +5866,6 @@ code {
5968
5866
  padding-left: 3rem !important;
5969
5867
  }
5970
5868
 
5971
- .gap-xl-0 {
5972
- gap: 0 !important;
5973
- }
5974
-
5975
- .gap-xl-1 {
5976
- gap: 0.25rem !important;
5977
- }
5978
-
5979
- .gap-xl-2 {
5980
- gap: 0.5rem !important;
5981
- }
5982
-
5983
- .gap-xl-3 {
5984
- gap: 1rem !important;
5985
- }
5986
-
5987
- .gap-xl-4 {
5988
- gap: 1.5rem !important;
5989
- }
5990
-
5991
- .gap-xl-5 {
5992
- gap: 3rem !important;
5993
- }
5994
-
5995
5869
  .text-xl-start {
5996
5870
  text-align: left !important;
5997
5871
  }
@@ -6105,6 +5979,30 @@ code {
6105
5979
  flex-wrap: wrap-reverse !important;
6106
5980
  }
6107
5981
 
5982
+ .gap-xxl-0 {
5983
+ gap: 0 !important;
5984
+ }
5985
+
5986
+ .gap-xxl-1 {
5987
+ gap: 0.25rem !important;
5988
+ }
5989
+
5990
+ .gap-xxl-2 {
5991
+ gap: 0.5rem !important;
5992
+ }
5993
+
5994
+ .gap-xxl-3 {
5995
+ gap: 1rem !important;
5996
+ }
5997
+
5998
+ .gap-xxl-4 {
5999
+ gap: 1.5rem !important;
6000
+ }
6001
+
6002
+ .gap-xxl-5 {
6003
+ gap: 3rem !important;
6004
+ }
6005
+
6108
6006
  .justify-content-xxl-start {
6109
6007
  justify-content: flex-start !important;
6110
6008
  }
@@ -6619,30 +6517,6 @@ code {
6619
6517
  padding-left: 3rem !important;
6620
6518
  }
6621
6519
 
6622
- .gap-xxl-0 {
6623
- gap: 0 !important;
6624
- }
6625
-
6626
- .gap-xxl-1 {
6627
- gap: 0.25rem !important;
6628
- }
6629
-
6630
- .gap-xxl-2 {
6631
- gap: 0.5rem !important;
6632
- }
6633
-
6634
- .gap-xxl-3 {
6635
- gap: 1rem !important;
6636
- }
6637
-
6638
- .gap-xxl-4 {
6639
- gap: 1.5rem !important;
6640
- }
6641
-
6642
- .gap-xxl-5 {
6643
- gap: 3rem !important;
6644
- }
6645
-
6646
6520
  .text-xxl-start {
6647
6521
  text-align: left !important;
6648
6522
  }
@@ -16822,11 +16696,9 @@ a:focus, a:hover {
16822
16696
  .container,
16823
16697
  .container-fluid,
16824
16698
  .container-xs {
16825
- --bs-gutter-x: 30px;
16826
- --bs-gutter-y: 0;
16827
16699
  width: 100%;
16828
- padding-right: calc(var(--bs-gutter-x) * 0.5);
16829
- padding-left: calc(var(--bs-gutter-x) * 0.5);
16700
+ padding-right: var(--bs-gutter-x, 15px);
16701
+ padding-left: var(--bs-gutter-x, 15px);
16830
16702
  margin-right: auto;
16831
16703
  margin-left: auto;
16832
16704
  }
@@ -17026,45 +16898,20 @@ a:focus, a:hover {
17026
16898
  }
17027
16899
  }
17028
16900
 
17029
- .accordion {
17030
- --bs-accordion-color: #000;
17031
- --bs-accordion-bg: #fff;
17032
- --bs-accordion-transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1), border-radius 0.15s ease;
17033
- --bs-accordion-border-color: #e6e6e6;
17034
- --bs-accordion-border-width: 2px;
17035
- --bs-accordion-border-radius: 0;
17036
- --bs-accordion-inner-border-radius: -2px;
17037
- --bs-accordion-btn-padding-x: 1rem;
17038
- --bs-accordion-btn-padding-y: 1rem;
17039
- --bs-accordion-btn-color: #000;
17040
- --bs-accordion-btn-bg: var(--bs-accordion-bg);
17041
- --bs-accordion-btn-icon: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath opacity='1' fill='%23000000' d='M23.6,13.2l-7.5,7.6l-7.6-7.6l0.9-0.9l6.6,6.6l6.6-6.6L23.6,13.2z'%3E%3C/path%3E%3C/svg%3E");
17042
- --bs-accordion-btn-icon-width: 1.5rem;
17043
- --bs-accordion-btn-icon-transform: rotate(180deg);
17044
- --bs-accordion-btn-icon-transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
17045
- --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath opacity='1' fill='%23000000' d='M23.6,13.2l-7.5,7.6l-7.6-7.6l0.9-0.9l6.6,6.6l6.6-6.6L23.6,13.2z'%3E%3C/path%3E%3C/svg%3E");
17046
- --bs-accordion-btn-focus-border-color: #000;
17047
- --bs-accordion-btn-focus-box-shadow: 0 0 0 0.125rem rgba(51, 51, 51, 0.25);
17048
- --bs-accordion-body-padding-x: 1rem;
17049
- --bs-accordion-body-padding-y: 1rem;
17050
- --bs-accordion-active-color: #000;
17051
- --bs-accordion-active-bg: transparent;
17052
- }
17053
-
17054
16901
  .accordion-button {
17055
16902
  position: relative;
17056
16903
  display: flex;
17057
16904
  align-items: center;
17058
16905
  width: 100%;
17059
- padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
16906
+ padding: 1rem 1rem;
17060
16907
  font-size: 1rem;
17061
- color: var(--bs-accordion-btn-color);
16908
+ color: #000;
17062
16909
  text-align: left;
17063
- background-color: var(--bs-accordion-btn-bg);
16910
+ background-color: #fff;
17064
16911
  border: 0;
17065
16912
  border-radius: 0;
17066
16913
  overflow-anchor: none;
17067
- transition: var(--bs-accordion-transition);
16914
+ transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1), border-radius 0.15s ease;
17068
16915
  }
17069
16916
  @media (prefers-reduced-motion: reduce) {
17070
16917
  .accordion-button {
@@ -17072,24 +16919,24 @@ a:focus, a:hover {
17072
16919
  }
17073
16920
  }
17074
16921
  .accordion-button:not(.collapsed) {
17075
- color: var(--bs-accordion-active-color);
17076
- background-color: var(--bs-accordion-active-bg);
17077
- box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
16922
+ color: #000;
16923
+ background-color: transparent;
16924
+ box-shadow: inset 0 -2px 0 #e6e6e6;
17078
16925
  }
17079
16926
  .accordion-button:not(.collapsed)::after {
17080
- background-image: var(--bs-accordion-btn-active-icon);
17081
- transform: var(--bs-accordion-btn-icon-transform);
16927
+ background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath opacity='1' fill='%23000000' d='M23.6,13.2l-7.5,7.6l-7.6-7.6l0.9-0.9l6.6,6.6l6.6-6.6L23.6,13.2z'%3E%3C/path%3E%3C/svg%3E");
16928
+ transform: rotate(180deg);
17082
16929
  }
17083
16930
  .accordion-button::after {
17084
16931
  flex-shrink: 0;
17085
- width: var(--bs-accordion-btn-icon-width);
17086
- height: var(--bs-accordion-btn-icon-width);
16932
+ width: 1.5rem;
16933
+ height: 1.5rem;
17087
16934
  margin-left: auto;
17088
16935
  content: "";
17089
- background-image: var(--bs-accordion-btn-icon);
16936
+ background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath opacity='1' fill='%23000000' d='M23.6,13.2l-7.5,7.6l-7.6-7.6l0.9-0.9l6.6,6.6l6.6-6.6L23.6,13.2z'%3E%3C/path%3E%3C/svg%3E");
17090
16937
  background-repeat: no-repeat;
17091
- background-size: var(--bs-accordion-btn-icon-width);
17092
- transition: var(--bs-accordion-btn-icon-transition);
16938
+ background-size: 1.5rem;
16939
+ transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
17093
16940
  }
17094
16941
  @media (prefers-reduced-motion: reduce) {
17095
16942
  .accordion-button::after {
@@ -17101,9 +16948,9 @@ a:focus, a:hover {
17101
16948
  }
17102
16949
  .accordion-button:focus {
17103
16950
  z-index: 3;
17104
- border-color: var(--bs-accordion-btn-focus-border-color);
16951
+ border-color: #000;
17105
16952
  outline: 0;
17106
- box-shadow: var(--bs-accordion-btn-focus-box-shadow);
16953
+ box-shadow: 0 0 0 0.125rem rgba(51, 51, 51, 0.25);
17107
16954
  }
17108
16955
 
17109
16956
  .accordion-header {
@@ -17111,36 +16958,35 @@ a:focus, a:hover {
17111
16958
  }
17112
16959
 
17113
16960
  .accordion-item {
17114
- color: var(--bs-accordion-color);
17115
- background-color: var(--bs-accordion-bg);
17116
- border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
16961
+ background-color: #fff;
16962
+ border: 2px solid #e6e6e6;
17117
16963
  }
17118
16964
  .accordion-item:first-of-type {
17119
- border-top-left-radius: var(--bs-accordion-border-radius);
17120
- border-top-right-radius: var(--bs-accordion-border-radius);
16965
+ border-top-left-radius: 0;
16966
+ border-top-right-radius: 0;
17121
16967
  }
17122
16968
  .accordion-item:first-of-type .accordion-button {
17123
- border-top-left-radius: var(--bs-accordion-inner-border-radius);
17124
- border-top-right-radius: var(--bs-accordion-inner-border-radius);
16969
+ border-top-left-radius: 0;
16970
+ border-top-right-radius: 0;
17125
16971
  }
17126
16972
  .accordion-item:not(:first-of-type) {
17127
16973
  border-top: 0;
17128
16974
  }
17129
16975
  .accordion-item:last-of-type {
17130
- border-bottom-right-radius: var(--bs-accordion-border-radius);
17131
- border-bottom-left-radius: var(--bs-accordion-border-radius);
16976
+ border-bottom-right-radius: 0;
16977
+ border-bottom-left-radius: 0;
17132
16978
  }
17133
16979
  .accordion-item:last-of-type .accordion-button.collapsed {
17134
- border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
17135
- border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
16980
+ border-bottom-right-radius: 0;
16981
+ border-bottom-left-radius: 0;
17136
16982
  }
17137
16983
  .accordion-item:last-of-type .accordion-collapse {
17138
- border-bottom-right-radius: var(--bs-accordion-border-radius);
17139
- border-bottom-left-radius: var(--bs-accordion-border-radius);
16984
+ border-bottom-right-radius: 0;
16985
+ border-bottom-left-radius: 0;
17140
16986
  }
17141
16987
 
17142
16988
  .accordion-body {
17143
- padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
16989
+ padding: 1rem 1rem;
17144
16990
  }
17145
16991
 
17146
16992
  .accordion-flush .accordion-collapse {
@@ -17157,7 +17003,7 @@ a:focus, a:hover {
17157
17003
  .accordion-flush .accordion-item:last-child {
17158
17004
  border-bottom: 0;
17159
17005
  }
17160
- .accordion-flush .accordion-item .accordion-button, .accordion-flush .accordion-item .accordion-button.collapsed {
17006
+ .accordion-flush .accordion-item .accordion-button {
17161
17007
  border-radius: 0;
17162
17008
  }
17163
17009