bitwrench 2.0.10 → 2.0.12
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/README.md +3 -2
- package/dist/bitwrench-code-edit.cjs.js +1 -1
- package/dist/bitwrench-code-edit.es5.js +1 -1
- package/dist/bitwrench-code-edit.es5.min.js +1 -1
- package/dist/bitwrench-code-edit.esm.js +1 -1
- package/dist/bitwrench-code-edit.esm.min.js +1 -1
- package/dist/bitwrench-code-edit.umd.js +1 -1
- package/dist/bitwrench-code-edit.umd.min.js +1 -1
- package/dist/bitwrench-lean.cjs.js +5880 -0
- package/dist/bitwrench-lean.cjs.min.js +44 -0
- package/dist/bitwrench-lean.es5.js +7547 -0
- package/dist/bitwrench-lean.es5.min.js +13 -0
- package/dist/bitwrench-lean.esm.js +5878 -0
- package/dist/bitwrench-lean.esm.min.js +44 -0
- package/dist/bitwrench-lean.umd.js +5886 -0
- package/dist/bitwrench-lean.umd.min.js +44 -0
- package/dist/bitwrench.cjs.js +1782 -125
- package/dist/bitwrench.cjs.min.js +6 -6
- package/dist/bitwrench.css +1714 -106
- package/dist/bitwrench.es5.js +4222 -2066
- package/dist/bitwrench.es5.min.js +4 -4
- package/dist/bitwrench.esm.js +1782 -125
- package/dist/bitwrench.esm.min.js +6 -6
- package/dist/bitwrench.umd.js +1782 -125
- package/dist/bitwrench.umd.min.js +6 -6
- package/dist/builds.json +137 -49
- package/dist/sri.json +25 -17
- package/package.json +6 -4
- package/readme.html +4 -3
- package/src/bitwrench-components-stub.js +5 -0
- package/src/bitwrench-components-v2.js +1049 -25
- package/src/bitwrench-lean.js +14 -0
- package/src/bitwrench-styles.js +1037 -15
- package/src/bitwrench.js +236 -6
- package/src/generate-css.js +20 -3
- package/src/version.js +4 -4
package/dist/bitwrench.css
CHANGED
|
@@ -135,7 +135,7 @@ h1, h2, h3, h4, h5, h6 {
|
|
|
135
135
|
font-weight: 600;
|
|
136
136
|
line-height: 1.25;
|
|
137
137
|
letter-spacing: -0.01em;
|
|
138
|
-
color:
|
|
138
|
+
color: inherit;
|
|
139
139
|
}
|
|
140
140
|
|
|
141
141
|
h1 {
|
|
@@ -146,6 +146,9 @@ h1 {
|
|
|
146
146
|
.bw-section-title {
|
|
147
147
|
font-size: 2rem;
|
|
148
148
|
}
|
|
149
|
+
.bw-container {
|
|
150
|
+
max-width: 1140px;
|
|
151
|
+
}
|
|
149
152
|
}
|
|
150
153
|
|
|
151
154
|
h2 {
|
|
@@ -1033,7 +1036,7 @@ a:hover {
|
|
|
1033
1036
|
word-wrap: break-word;
|
|
1034
1037
|
background-color: #fff;
|
|
1035
1038
|
background-clip: border-box;
|
|
1036
|
-
border: 1px solid
|
|
1039
|
+
border: 1px solid transparent;
|
|
1037
1040
|
border-radius: 8px;
|
|
1038
1041
|
box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
|
|
1039
1042
|
transition: box-shadow 0.2s cubic-bezier(0.4,0,0.2,1), transform 0.2s cubic-bezier(0.4,0,0.2,1);
|
|
@@ -1050,7 +1053,7 @@ a:hover {
|
|
|
1050
1053
|
word-wrap: break-word;
|
|
1051
1054
|
background-color: #fff;
|
|
1052
1055
|
background-clip: border-box;
|
|
1053
|
-
border: 1px solid
|
|
1056
|
+
border: 1px solid transparent;
|
|
1054
1057
|
border-radius: 8px;
|
|
1055
1058
|
box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
|
|
1056
1059
|
transition: box-shadow 0.2s cubic-bezier(0.4,0,0.2,1), transform 0.2s cubic-bezier(0.4,0,0.2,1);
|
|
@@ -1224,7 +1227,7 @@ a:hover {
|
|
|
1224
1227
|
color: #1a1a1a;
|
|
1225
1228
|
background-color: #fff;
|
|
1226
1229
|
background-clip: padding-box;
|
|
1227
|
-
border: 1px solid
|
|
1230
|
+
border: 1px solid transparent;
|
|
1228
1231
|
appearance: none;
|
|
1229
1232
|
border-radius: 6px;
|
|
1230
1233
|
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
|
@@ -1241,7 +1244,7 @@ a:hover {
|
|
|
1241
1244
|
color: #1a1a1a;
|
|
1242
1245
|
background-color: #fff;
|
|
1243
1246
|
background-clip: padding-box;
|
|
1244
|
-
border: 1px solid
|
|
1247
|
+
border: 1px solid transparent;
|
|
1245
1248
|
appearance: none;
|
|
1246
1249
|
border-radius: 6px;
|
|
1247
1250
|
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
|
@@ -1438,14 +1441,14 @@ textarea.bw_form-control {
|
|
|
1438
1441
|
border-bottom: 1px solid #e5e5e5;
|
|
1439
1442
|
}
|
|
1440
1443
|
|
|
1441
|
-
.bw-navbar > .container {
|
|
1444
|
+
.bw-navbar > .bw-container, .bw-navbar > .container {
|
|
1442
1445
|
display: flex;
|
|
1443
1446
|
flex-wrap: wrap;
|
|
1444
1447
|
align-items: center;
|
|
1445
1448
|
justify-content: space-between;
|
|
1446
1449
|
}
|
|
1447
1450
|
|
|
1448
|
-
.bw-bw_navbar > .container {
|
|
1451
|
+
.bw-bw_navbar > .bw_container, .bw_navbar > .container {
|
|
1449
1452
|
display: flex;
|
|
1450
1453
|
flex-wrap: wrap;
|
|
1451
1454
|
align-items: center;
|
|
@@ -1661,19 +1664,19 @@ textarea.bw_form-control {
|
|
|
1661
1664
|
}
|
|
1662
1665
|
|
|
1663
1666
|
.bw-table-striped > tbody > tr:nth-of-type(odd) > * {
|
|
1664
|
-
background-color: rgba(0, 0, 0, 0.
|
|
1667
|
+
background-color: rgba(0, 0, 0, 0.05);
|
|
1665
1668
|
}
|
|
1666
1669
|
|
|
1667
1670
|
.bw-bw_table-striped > tbody > tr:nth-of-type(odd) > * {
|
|
1668
|
-
background-color: rgba(0, 0, 0, 0.
|
|
1671
|
+
background-color: rgba(0, 0, 0, 0.05);
|
|
1669
1672
|
}
|
|
1670
1673
|
|
|
1671
1674
|
.bw-table-hover > tbody > tr:hover > * {
|
|
1672
|
-
background-color: rgba(0, 102, 102, 0.
|
|
1675
|
+
background-color: rgba(0, 102, 102, 0.1);
|
|
1673
1676
|
}
|
|
1674
1677
|
|
|
1675
1678
|
.bw-bw_table-hover > tbody > tr:hover > * {
|
|
1676
|
-
background-color: rgba(0, 102, 102, 0.
|
|
1679
|
+
background-color: rgba(0, 102, 102, 0.1);
|
|
1677
1680
|
}
|
|
1678
1681
|
|
|
1679
1682
|
.bw-table-bordered {
|
|
@@ -1938,10 +1941,10 @@ textarea.bw_form-control {
|
|
|
1938
1941
|
|
|
1939
1942
|
.bw-badge {
|
|
1940
1943
|
display: inline-block;
|
|
1941
|
-
padding: .
|
|
1942
|
-
font-size: .
|
|
1943
|
-
font-weight:
|
|
1944
|
-
line-height: 1;
|
|
1944
|
+
padding: .4em .75em;
|
|
1945
|
+
font-size: .875em;
|
|
1946
|
+
font-weight: 600;
|
|
1947
|
+
line-height: 1.3;
|
|
1945
1948
|
color: #fff;
|
|
1946
1949
|
text-align: center;
|
|
1947
1950
|
white-space: nowrap;
|
|
@@ -1951,10 +1954,10 @@ textarea.bw_form-control {
|
|
|
1951
1954
|
|
|
1952
1955
|
.bw-bw_badge {
|
|
1953
1956
|
display: inline-block;
|
|
1954
|
-
padding: .
|
|
1955
|
-
font-size: .
|
|
1956
|
-
font-weight:
|
|
1957
|
-
line-height: 1;
|
|
1957
|
+
padding: .4em .75em;
|
|
1958
|
+
font-size: .875em;
|
|
1959
|
+
font-weight: 600;
|
|
1960
|
+
line-height: 1.3;
|
|
1958
1961
|
color: #fff;
|
|
1959
1962
|
text-align: center;
|
|
1960
1963
|
white-space: nowrap;
|
|
@@ -1970,6 +1973,26 @@ textarea.bw_form-control {
|
|
|
1970
1973
|
display: none;
|
|
1971
1974
|
}
|
|
1972
1975
|
|
|
1976
|
+
.bw-badge-sm {
|
|
1977
|
+
font-size: .75em;
|
|
1978
|
+
padding: .25em .5em;
|
|
1979
|
+
}
|
|
1980
|
+
|
|
1981
|
+
.bw-bw_badge-sm {
|
|
1982
|
+
font-size: .75em;
|
|
1983
|
+
padding: .25em .5em;
|
|
1984
|
+
}
|
|
1985
|
+
|
|
1986
|
+
.bw-badge-lg {
|
|
1987
|
+
font-size: 1em;
|
|
1988
|
+
padding: .5em .9em;
|
|
1989
|
+
}
|
|
1990
|
+
|
|
1991
|
+
.bw-bw_badge-lg {
|
|
1992
|
+
font-size: 1em;
|
|
1993
|
+
padding: .5em .9em;
|
|
1994
|
+
}
|
|
1995
|
+
|
|
1973
1996
|
.bw-badge-pill {
|
|
1974
1997
|
border-radius: 50rem;
|
|
1975
1998
|
}
|
|
@@ -2341,6 +2364,36 @@ textarea.bw_form-control {
|
|
|
2341
2364
|
display: block;
|
|
2342
2365
|
}
|
|
2343
2366
|
|
|
2367
|
+
.bw-nav-scrollable {
|
|
2368
|
+
flex-wrap: nowrap;
|
|
2369
|
+
overflow-x: auto;
|
|
2370
|
+
-webkit-overflow-scrolling: touch;
|
|
2371
|
+
scrollbar-width: none;
|
|
2372
|
+
}
|
|
2373
|
+
|
|
2374
|
+
.bw-bw_nav-scrollable {
|
|
2375
|
+
flex-wrap: nowrap;
|
|
2376
|
+
overflow-x: auto;
|
|
2377
|
+
-webkit-overflow-scrolling: touch;
|
|
2378
|
+
scrollbar-width: none;
|
|
2379
|
+
}
|
|
2380
|
+
|
|
2381
|
+
.bw-nav-scrollable::-webkit-scrollbar {
|
|
2382
|
+
display: none;
|
|
2383
|
+
}
|
|
2384
|
+
|
|
2385
|
+
.bw-bw_nav-scrollable::-webkit-scrollbar {
|
|
2386
|
+
display: none;
|
|
2387
|
+
}
|
|
2388
|
+
|
|
2389
|
+
.bw-nav-scrollable .bw-nav-link {
|
|
2390
|
+
white-space: nowrap;
|
|
2391
|
+
}
|
|
2392
|
+
|
|
2393
|
+
.bw-bw_nav-scrollable .bw_nav-link {
|
|
2394
|
+
white-space: nowrap;
|
|
2395
|
+
}
|
|
2396
|
+
|
|
2344
2397
|
.bw-list-group {
|
|
2345
2398
|
display: flex;
|
|
2346
2399
|
flex-direction: column;
|
|
@@ -2750,11 +2803,21 @@ a.bw_list-group-item:hover {
|
|
|
2750
2803
|
.bw-hero-title {
|
|
2751
2804
|
font-weight: 300;
|
|
2752
2805
|
letter-spacing: -0.05rem;
|
|
2806
|
+
color: inherit;
|
|
2753
2807
|
}
|
|
2754
2808
|
|
|
2755
2809
|
.bw-bw_hero-title {
|
|
2756
2810
|
font-weight: 300;
|
|
2757
2811
|
letter-spacing: -0.05rem;
|
|
2812
|
+
color: inherit;
|
|
2813
|
+
}
|
|
2814
|
+
|
|
2815
|
+
.bw-hero-subtitle {
|
|
2816
|
+
color: inherit;
|
|
2817
|
+
}
|
|
2818
|
+
|
|
2819
|
+
.bw-bw_hero-subtitle {
|
|
2820
|
+
color: inherit;
|
|
2758
2821
|
}
|
|
2759
2822
|
|
|
2760
2823
|
.bw-display-4 {
|
|
@@ -3061,7 +3124,7 @@ a.bw_list-group-item:hover {
|
|
|
3061
3124
|
|
|
3062
3125
|
.bw-cta-description {
|
|
3063
3126
|
font-size: 1.125rem;
|
|
3064
|
-
color: #
|
|
3127
|
+
color: #555b62;
|
|
3065
3128
|
max-width: 36rem;
|
|
3066
3129
|
margin-left: auto;
|
|
3067
3130
|
margin-right: auto;
|
|
@@ -3069,7 +3132,7 @@ a.bw_list-group-item:hover {
|
|
|
3069
3132
|
|
|
3070
3133
|
.bw-bw_cta-description {
|
|
3071
3134
|
font-size: 1.125rem;
|
|
3072
|
-
color: #
|
|
3135
|
+
color: #555b62;
|
|
3073
3136
|
max-width: 36rem;
|
|
3074
3137
|
margin-left: auto;
|
|
3075
3138
|
margin-right: auto;
|
|
@@ -3477,173 +3540,1594 @@ a.bw_list-group-item:hover {
|
|
|
3477
3540
|
color: #fff;
|
|
3478
3541
|
}
|
|
3479
3542
|
|
|
3480
|
-
.bw-
|
|
3481
|
-
margin: 0
|
|
3543
|
+
.bw-code-pre {
|
|
3544
|
+
margin: 0;
|
|
3545
|
+
background: #1e293b;
|
|
3546
|
+
border: none;
|
|
3547
|
+
border-radius: 6px;
|
|
3548
|
+
overflow-x: auto;
|
|
3482
3549
|
}
|
|
3483
3550
|
|
|
3484
|
-
.bw-
|
|
3485
|
-
margin: 0
|
|
3551
|
+
.bw-bw_code-pre {
|
|
3552
|
+
margin: 0;
|
|
3553
|
+
background: #1e293b;
|
|
3554
|
+
border: none;
|
|
3555
|
+
border-radius: 6px;
|
|
3556
|
+
overflow-x: auto;
|
|
3486
3557
|
}
|
|
3487
3558
|
|
|
3488
|
-
.bw-
|
|
3489
|
-
|
|
3559
|
+
.bw-code-block {
|
|
3560
|
+
display: block;
|
|
3561
|
+
padding: 1.25rem;
|
|
3562
|
+
font-family: "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
|
|
3563
|
+
font-size: 0.8125rem;
|
|
3564
|
+
line-height: 1.6;
|
|
3565
|
+
color: #e2e8f0;
|
|
3490
3566
|
}
|
|
3491
3567
|
|
|
3492
|
-
.bw-
|
|
3493
|
-
|
|
3568
|
+
.bw-bw_code-block {
|
|
3569
|
+
display: block;
|
|
3570
|
+
padding: 1.25rem;
|
|
3571
|
+
font-family: "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
|
|
3572
|
+
font-size: 0.8125rem;
|
|
3573
|
+
line-height: 1.6;
|
|
3574
|
+
color: #e2e8f0;
|
|
3494
3575
|
}
|
|
3495
3576
|
|
|
3496
|
-
.bw-
|
|
3497
|
-
|
|
3577
|
+
.bw-code-copy-btn {
|
|
3578
|
+
position: absolute;
|
|
3579
|
+
top: 0.5rem;
|
|
3580
|
+
right: 0.5rem;
|
|
3581
|
+
padding: 0.25rem 0.625rem;
|
|
3582
|
+
font-size: 0.6875rem;
|
|
3583
|
+
background: rgba(255,255,255,0.12);
|
|
3584
|
+
color: #aaa;
|
|
3585
|
+
border: 1px solid rgba(255,255,255,0.15);
|
|
3586
|
+
border-radius: 4px;
|
|
3587
|
+
cursor: pointer;
|
|
3588
|
+
font-family: inherit;
|
|
3589
|
+
transition: all 0.15s;
|
|
3498
3590
|
}
|
|
3499
3591
|
|
|
3500
|
-
.bw-
|
|
3501
|
-
|
|
3592
|
+
.bw-bw_code-copy-btn {
|
|
3593
|
+
position: absolute;
|
|
3594
|
+
top: 0.5rem;
|
|
3595
|
+
right: 0.5rem;
|
|
3596
|
+
padding: 0.25rem 0.625rem;
|
|
3597
|
+
font-size: 0.6875rem;
|
|
3598
|
+
background: rgba(255,255,255,0.12);
|
|
3599
|
+
color: #aaa;
|
|
3600
|
+
border: 1px solid rgba(255,255,255,0.15);
|
|
3601
|
+
border-radius: 4px;
|
|
3602
|
+
cursor: pointer;
|
|
3603
|
+
font-family: inherit;
|
|
3604
|
+
transition: all 0.15s;
|
|
3502
3605
|
}
|
|
3503
3606
|
|
|
3504
|
-
.bw-
|
|
3505
|
-
|
|
3607
|
+
.bw-btn-group, .bw-btn-group-vertical {
|
|
3608
|
+
position: relative;
|
|
3609
|
+
display: inline-flex;
|
|
3610
|
+
vertical-align: middle;
|
|
3506
3611
|
}
|
|
3507
3612
|
|
|
3508
|
-
.bw-
|
|
3509
|
-
|
|
3613
|
+
.bw-bw_btn-group, .bw_btn-group-vertical {
|
|
3614
|
+
position: relative;
|
|
3615
|
+
display: inline-flex;
|
|
3616
|
+
vertical-align: middle;
|
|
3510
3617
|
}
|
|
3511
3618
|
|
|
3512
|
-
.bw-
|
|
3513
|
-
|
|
3619
|
+
.bw-btn-group > .bw-btn, .bw-btn-group-vertical > .bw-btn {
|
|
3620
|
+
position: relative;
|
|
3621
|
+
flex: 1 1 auto;
|
|
3622
|
+
border-radius: 0;
|
|
3623
|
+
margin-left: -1px;
|
|
3514
3624
|
}
|
|
3515
3625
|
|
|
3516
|
-
.bw-
|
|
3517
|
-
|
|
3626
|
+
.bw-bw_btn-group > .bw_btn, .bw_btn-group-vertical > .bw_btn {
|
|
3627
|
+
position: relative;
|
|
3628
|
+
flex: 1 1 auto;
|
|
3629
|
+
border-radius: 0;
|
|
3630
|
+
margin-left: -1px;
|
|
3518
3631
|
}
|
|
3519
3632
|
|
|
3520
|
-
.bw-
|
|
3521
|
-
margin:
|
|
3633
|
+
.bw-btn-group > .bw-btn:first-child {
|
|
3634
|
+
margin-left: 0;
|
|
3635
|
+
border-top-left-radius: 6px;
|
|
3636
|
+
border-bottom-left-radius: 6px;
|
|
3522
3637
|
}
|
|
3523
3638
|
|
|
3524
|
-
.bw-
|
|
3525
|
-
margin:
|
|
3639
|
+
.bw-bw_btn-group > .bw_btn:first-child {
|
|
3640
|
+
margin-left: 0;
|
|
3641
|
+
border-top-left-radius: 6px;
|
|
3642
|
+
border-bottom-left-radius: 6px;
|
|
3526
3643
|
}
|
|
3527
3644
|
|
|
3528
|
-
.bw-
|
|
3529
|
-
|
|
3645
|
+
.bw-btn-group > .bw-btn:last-child {
|
|
3646
|
+
border-top-right-radius: 6px;
|
|
3647
|
+
border-bottom-right-radius: 6px;
|
|
3530
3648
|
}
|
|
3531
3649
|
|
|
3532
|
-
.bw-
|
|
3533
|
-
|
|
3650
|
+
.bw-bw_btn-group > .bw_btn:last-child {
|
|
3651
|
+
border-top-right-radius: 6px;
|
|
3652
|
+
border-bottom-right-radius: 6px;
|
|
3534
3653
|
}
|
|
3535
3654
|
|
|
3536
|
-
.bw-
|
|
3537
|
-
|
|
3655
|
+
.bw-btn-group-vertical {
|
|
3656
|
+
flex-direction: column;
|
|
3657
|
+
align-items: flex-start;
|
|
3658
|
+
justify-content: center;
|
|
3538
3659
|
}
|
|
3539
3660
|
|
|
3540
|
-
.bw-
|
|
3541
|
-
|
|
3661
|
+
.bw-bw_btn-group-vertical {
|
|
3662
|
+
flex-direction: column;
|
|
3663
|
+
align-items: flex-start;
|
|
3664
|
+
justify-content: center;
|
|
3542
3665
|
}
|
|
3543
3666
|
|
|
3544
|
-
.bw-
|
|
3545
|
-
|
|
3667
|
+
.bw-btn-group-vertical > .bw-btn {
|
|
3668
|
+
width: 100%;
|
|
3669
|
+
margin-left: 0;
|
|
3670
|
+
margin-top: -1px;
|
|
3546
3671
|
}
|
|
3547
3672
|
|
|
3548
|
-
.bw-
|
|
3549
|
-
|
|
3673
|
+
.bw-bw_btn-group-vertical > .bw_btn {
|
|
3674
|
+
width: 100%;
|
|
3675
|
+
margin-left: 0;
|
|
3676
|
+
margin-top: -1px;
|
|
3550
3677
|
}
|
|
3551
3678
|
|
|
3552
|
-
.bw-
|
|
3553
|
-
margin-top:
|
|
3679
|
+
.bw-btn-group-vertical > .bw-btn:first-child {
|
|
3680
|
+
margin-top: 0;
|
|
3681
|
+
border-top-left-radius: 6px;
|
|
3682
|
+
border-top-right-radius: 6px;
|
|
3683
|
+
border-bottom-left-radius: 0;
|
|
3684
|
+
border-bottom-right-radius: 0;
|
|
3554
3685
|
}
|
|
3555
3686
|
|
|
3556
|
-
.bw-
|
|
3557
|
-
margin-top:
|
|
3687
|
+
.bw-bw_btn-group-vertical > .bw_btn:first-child {
|
|
3688
|
+
margin-top: 0;
|
|
3689
|
+
border-top-left-radius: 6px;
|
|
3690
|
+
border-top-right-radius: 6px;
|
|
3691
|
+
border-bottom-left-radius: 0;
|
|
3692
|
+
border-bottom-right-radius: 0;
|
|
3558
3693
|
}
|
|
3559
3694
|
|
|
3560
|
-
.bw-
|
|
3561
|
-
|
|
3695
|
+
.bw-btn-group-vertical > .bw-btn:last-child {
|
|
3696
|
+
border-top-left-radius: 0;
|
|
3697
|
+
border-top-right-radius: 0;
|
|
3698
|
+
border-bottom-left-radius: 6px;
|
|
3699
|
+
border-bottom-right-radius: 6px;
|
|
3562
3700
|
}
|
|
3563
3701
|
|
|
3564
|
-
.bw-
|
|
3565
|
-
|
|
3702
|
+
.bw-bw_btn-group-vertical > .bw_btn:last-child {
|
|
3703
|
+
border-top-left-radius: 0;
|
|
3704
|
+
border-top-right-radius: 0;
|
|
3705
|
+
border-bottom-left-radius: 6px;
|
|
3706
|
+
border-bottom-right-radius: 6px;
|
|
3566
3707
|
}
|
|
3567
3708
|
|
|
3568
|
-
.bw-
|
|
3569
|
-
|
|
3709
|
+
.bw-btn-group-sm > .bw-btn {
|
|
3710
|
+
padding: 0.25rem 0.75rem;
|
|
3711
|
+
font-size: 0.8125rem;
|
|
3570
3712
|
}
|
|
3571
3713
|
|
|
3572
|
-
.bw-
|
|
3573
|
-
|
|
3714
|
+
.bw-bw_btn-group-sm > .bw_btn {
|
|
3715
|
+
padding: 0.25rem 0.75rem;
|
|
3716
|
+
font-size: 0.8125rem;
|
|
3574
3717
|
}
|
|
3575
3718
|
|
|
3576
|
-
.bw-
|
|
3577
|
-
|
|
3719
|
+
.bw-btn-group-lg > .bw-btn {
|
|
3720
|
+
padding: 0.625rem 1.5rem;
|
|
3721
|
+
font-size: 1rem;
|
|
3578
3722
|
}
|
|
3579
3723
|
|
|
3580
|
-
.bw-
|
|
3581
|
-
|
|
3724
|
+
.bw-bw_btn-group-lg > .bw_btn {
|
|
3725
|
+
padding: 0.625rem 1.5rem;
|
|
3726
|
+
font-size: 1rem;
|
|
3582
3727
|
}
|
|
3583
3728
|
|
|
3584
|
-
.bw-
|
|
3585
|
-
|
|
3729
|
+
.bw-accordion {
|
|
3730
|
+
border-radius: 8px;
|
|
3731
|
+
overflow: hidden;
|
|
3586
3732
|
}
|
|
3587
3733
|
|
|
3588
|
-
.bw-
|
|
3589
|
-
|
|
3734
|
+
.bw-bw_accordion {
|
|
3735
|
+
border-radius: 8px;
|
|
3736
|
+
overflow: hidden;
|
|
3590
3737
|
}
|
|
3591
3738
|
|
|
3592
|
-
.bw-
|
|
3593
|
-
|
|
3739
|
+
.bw-accordion-item {
|
|
3740
|
+
background-color: #fff;
|
|
3741
|
+
border: 1px solid transparent;
|
|
3594
3742
|
}
|
|
3595
3743
|
|
|
3596
|
-
.bw-
|
|
3597
|
-
|
|
3744
|
+
.bw-bw_accordion-item {
|
|
3745
|
+
background-color: #fff;
|
|
3746
|
+
border: 1px solid transparent;
|
|
3598
3747
|
}
|
|
3599
3748
|
|
|
3600
|
-
.bw-
|
|
3601
|
-
|
|
3749
|
+
.bw-accordion-item + .bw-accordion-item {
|
|
3750
|
+
border-top: 0;
|
|
3602
3751
|
}
|
|
3603
3752
|
|
|
3604
|
-
.bw-
|
|
3605
|
-
|
|
3753
|
+
.bw-bw_accordion-item + .bw_accordion-item {
|
|
3754
|
+
border-top: 0;
|
|
3606
3755
|
}
|
|
3607
3756
|
|
|
3608
|
-
.bw-
|
|
3609
|
-
|
|
3757
|
+
.bw-accordion-item:first-child {
|
|
3758
|
+
border-top-left-radius: 8px;
|
|
3759
|
+
border-top-right-radius: 8px;
|
|
3610
3760
|
}
|
|
3611
3761
|
|
|
3612
|
-
.bw-
|
|
3613
|
-
|
|
3762
|
+
.bw-bw_accordion-item:first-child {
|
|
3763
|
+
border-top-left-radius: 8px;
|
|
3764
|
+
border-top-right-radius: 8px;
|
|
3614
3765
|
}
|
|
3615
3766
|
|
|
3616
|
-
.bw-
|
|
3617
|
-
|
|
3767
|
+
.bw-accordion-item:last-child {
|
|
3768
|
+
border-bottom-left-radius: 8px;
|
|
3769
|
+
border-bottom-right-radius: 8px;
|
|
3618
3770
|
}
|
|
3619
3771
|
|
|
3620
|
-
.bw-
|
|
3621
|
-
|
|
3772
|
+
.bw-bw_accordion-item:last-child {
|
|
3773
|
+
border-bottom-left-radius: 8px;
|
|
3774
|
+
border-bottom-right-radius: 8px;
|
|
3622
3775
|
}
|
|
3623
3776
|
|
|
3624
|
-
.bw-
|
|
3625
|
-
margin
|
|
3777
|
+
.bw-accordion-header {
|
|
3778
|
+
margin: 0;
|
|
3626
3779
|
}
|
|
3627
3780
|
|
|
3628
|
-
.bw-
|
|
3629
|
-
margin
|
|
3781
|
+
.bw-bw_accordion-header {
|
|
3782
|
+
margin: 0;
|
|
3630
3783
|
}
|
|
3631
3784
|
|
|
3632
|
-
.bw-
|
|
3633
|
-
|
|
3785
|
+
.bw-accordion-button {
|
|
3786
|
+
position: relative;
|
|
3787
|
+
display: flex;
|
|
3788
|
+
align-items: center;
|
|
3789
|
+
width: 100%;
|
|
3790
|
+
padding: 1rem 1.25rem;
|
|
3791
|
+
font-size: 1rem;
|
|
3792
|
+
font-weight: 500;
|
|
3793
|
+
color: #1a1a1a;
|
|
3794
|
+
text-align: left;
|
|
3795
|
+
background-color: transparent;
|
|
3796
|
+
border: 0;
|
|
3797
|
+
overflow-anchor: none;
|
|
3798
|
+
cursor: pointer;
|
|
3799
|
+
font-family: inherit;
|
|
3800
|
+
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
|
|
3634
3801
|
}
|
|
3635
3802
|
|
|
3636
|
-
.bw-
|
|
3637
|
-
|
|
3803
|
+
.bw-bw_accordion-button {
|
|
3804
|
+
position: relative;
|
|
3805
|
+
display: flex;
|
|
3806
|
+
align-items: center;
|
|
3807
|
+
width: 100%;
|
|
3808
|
+
padding: 1rem 1.25rem;
|
|
3809
|
+
font-size: 1rem;
|
|
3810
|
+
font-weight: 500;
|
|
3811
|
+
color: #1a1a1a;
|
|
3812
|
+
text-align: left;
|
|
3813
|
+
background-color: transparent;
|
|
3814
|
+
border: 0;
|
|
3815
|
+
overflow-anchor: none;
|
|
3816
|
+
cursor: pointer;
|
|
3817
|
+
font-family: inherit;
|
|
3818
|
+
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
|
|
3638
3819
|
}
|
|
3639
3820
|
|
|
3640
|
-
.bw-
|
|
3641
|
-
|
|
3821
|
+
.bw-accordion-button::after {
|
|
3822
|
+
flex-shrink: 0;
|
|
3823
|
+
width: 1.25rem;
|
|
3824
|
+
height: 1.25rem;
|
|
3825
|
+
margin-left: auto;
|
|
3826
|
+
content: "";
|
|
3827
|
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
|
|
3828
|
+
background-repeat: no-repeat;
|
|
3829
|
+
background-size: 1.25rem;
|
|
3830
|
+
transition: transform 0.2s ease-in-out;
|
|
3642
3831
|
}
|
|
3643
3832
|
|
|
3644
|
-
.bw-
|
|
3645
|
-
|
|
3646
|
-
|
|
3833
|
+
.bw-bw_accordion-button::after {
|
|
3834
|
+
flex-shrink: 0;
|
|
3835
|
+
width: 1.25rem;
|
|
3836
|
+
height: 1.25rem;
|
|
3837
|
+
margin-left: auto;
|
|
3838
|
+
content: "";
|
|
3839
|
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
|
|
3840
|
+
background-repeat: no-repeat;
|
|
3841
|
+
background-size: 1.25rem;
|
|
3842
|
+
transition: transform 0.2s ease-in-out;
|
|
3843
|
+
}
|
|
3844
|
+
|
|
3845
|
+
.bw-accordion-button:not(.bw-collapsed) {
|
|
3846
|
+
color: #0a5868;
|
|
3847
|
+
background-color: #e8f6f8;
|
|
3848
|
+
}
|
|
3849
|
+
|
|
3850
|
+
.bw-bw_accordion-button:not(.bw_collapsed) {
|
|
3851
|
+
color: #0a5868;
|
|
3852
|
+
background-color: #e8f6f8;
|
|
3853
|
+
}
|
|
3854
|
+
|
|
3855
|
+
.bw-accordion-button:not(.bw-collapsed)::after {
|
|
3856
|
+
transform: rotate(-180deg);
|
|
3857
|
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230a5868'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
|
|
3858
|
+
}
|
|
3859
|
+
|
|
3860
|
+
.bw-bw_accordion-button:not(.bw_collapsed)::after {
|
|
3861
|
+
transform: rotate(-180deg);
|
|
3862
|
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230a5868'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
|
|
3863
|
+
}
|
|
3864
|
+
|
|
3865
|
+
.bw-accordion-button:hover {
|
|
3866
|
+
background-color: rgba(0,0,0,0.03);
|
|
3867
|
+
}
|
|
3868
|
+
|
|
3869
|
+
.bw-bw_accordion-button:hover {
|
|
3870
|
+
background-color: rgba(0,0,0,0.03);
|
|
3871
|
+
}
|
|
3872
|
+
|
|
3873
|
+
.bw-accordion-button:not(.bw-collapsed):hover {
|
|
3874
|
+
background-color: #daf0f3;
|
|
3875
|
+
}
|
|
3876
|
+
|
|
3877
|
+
.bw-bw_accordion-button:not(.bw_collapsed):hover {
|
|
3878
|
+
background-color: #daf0f3;
|
|
3879
|
+
}
|
|
3880
|
+
|
|
3881
|
+
.bw-accordion-button:focus-visible {
|
|
3882
|
+
z-index: 3;
|
|
3883
|
+
outline: 0;
|
|
3884
|
+
box-shadow: 0 0 0 0.2rem rgba(10, 88, 104, 0.25);
|
|
3885
|
+
}
|
|
3886
|
+
|
|
3887
|
+
.bw-bw_accordion-button:focus-visible {
|
|
3888
|
+
z-index: 3;
|
|
3889
|
+
outline: 0;
|
|
3890
|
+
box-shadow: 0 0 0 0.2rem rgba(10, 88, 104, 0.25);
|
|
3891
|
+
}
|
|
3892
|
+
|
|
3893
|
+
.bw-accordion-collapse {
|
|
3894
|
+
max-height: 0;
|
|
3895
|
+
overflow: hidden;
|
|
3896
|
+
transition: max-height 0.3s ease;
|
|
3897
|
+
}
|
|
3898
|
+
|
|
3899
|
+
.bw-bw_accordion-collapse {
|
|
3900
|
+
max-height: 0;
|
|
3901
|
+
overflow: hidden;
|
|
3902
|
+
transition: max-height 0.3s ease;
|
|
3903
|
+
}
|
|
3904
|
+
|
|
3905
|
+
.bw-accordion-collapse.bw-collapse-show {
|
|
3906
|
+
max-height: none;
|
|
3907
|
+
}
|
|
3908
|
+
|
|
3909
|
+
.bw-bw_accordion-collapse.bw_collapse-show {
|
|
3910
|
+
max-height: none;
|
|
3911
|
+
}
|
|
3912
|
+
|
|
3913
|
+
.bw-accordion-body {
|
|
3914
|
+
padding: 1rem 1.25rem;
|
|
3915
|
+
border-top: 1px solid #d5d5d5;
|
|
3916
|
+
}
|
|
3917
|
+
|
|
3918
|
+
.bw-bw_accordion-body {
|
|
3919
|
+
padding: 1rem 1.25rem;
|
|
3920
|
+
border-top: 1px solid #d5d5d5;
|
|
3921
|
+
}
|
|
3922
|
+
|
|
3923
|
+
.bw-carousel {
|
|
3924
|
+
position: relative;
|
|
3925
|
+
overflow: hidden;
|
|
3926
|
+
border-radius: 8px;
|
|
3927
|
+
background-color: #f0f0f0;
|
|
3928
|
+
}
|
|
3929
|
+
|
|
3930
|
+
.bw-bw_carousel {
|
|
3931
|
+
position: relative;
|
|
3932
|
+
overflow: hidden;
|
|
3933
|
+
border-radius: 8px;
|
|
3934
|
+
background-color: #f0f0f0;
|
|
3935
|
+
}
|
|
3936
|
+
|
|
3937
|
+
.bw-carousel-track {
|
|
3938
|
+
display: flex;
|
|
3939
|
+
transition: transform 0.4s ease;
|
|
3940
|
+
height: 100%;
|
|
3941
|
+
}
|
|
3942
|
+
|
|
3943
|
+
.bw-bw_carousel-track {
|
|
3944
|
+
display: flex;
|
|
3945
|
+
transition: transform 0.4s ease;
|
|
3946
|
+
height: 100%;
|
|
3947
|
+
}
|
|
3948
|
+
|
|
3949
|
+
.bw-carousel-slide {
|
|
3950
|
+
min-width: 100%;
|
|
3951
|
+
flex-shrink: 0;
|
|
3952
|
+
overflow: hidden;
|
|
3953
|
+
position: relative;
|
|
3954
|
+
display: flex;
|
|
3955
|
+
align-items: center;
|
|
3956
|
+
justify-content: center;
|
|
3957
|
+
}
|
|
3958
|
+
|
|
3959
|
+
.bw-bw_carousel-slide {
|
|
3960
|
+
min-width: 100%;
|
|
3961
|
+
flex-shrink: 0;
|
|
3962
|
+
overflow: hidden;
|
|
3963
|
+
position: relative;
|
|
3964
|
+
display: flex;
|
|
3965
|
+
align-items: center;
|
|
3966
|
+
justify-content: center;
|
|
3967
|
+
}
|
|
3968
|
+
|
|
3969
|
+
.bw-carousel-slide img {
|
|
3970
|
+
width: 100%;
|
|
3971
|
+
height: 100%;
|
|
3972
|
+
object-fit: cover;
|
|
3973
|
+
}
|
|
3974
|
+
|
|
3975
|
+
.bw-bw_carousel-slide img {
|
|
3976
|
+
width: 100%;
|
|
3977
|
+
height: 100%;
|
|
3978
|
+
object-fit: cover;
|
|
3979
|
+
}
|
|
3980
|
+
|
|
3981
|
+
.bw-carousel-caption {
|
|
3982
|
+
position: absolute;
|
|
3983
|
+
bottom: 0;
|
|
3984
|
+
left: 0;
|
|
3985
|
+
right: 0;
|
|
3986
|
+
padding: 0.75rem 1rem;
|
|
3987
|
+
background: linear-gradient(transparent, rgba(0,0,0,0.6));
|
|
3988
|
+
color: #fff;
|
|
3989
|
+
font-size: 0.9rem;
|
|
3990
|
+
}
|
|
3991
|
+
|
|
3992
|
+
.bw-bw_carousel-caption {
|
|
3993
|
+
position: absolute;
|
|
3994
|
+
bottom: 0;
|
|
3995
|
+
left: 0;
|
|
3996
|
+
right: 0;
|
|
3997
|
+
padding: 0.75rem 1rem;
|
|
3998
|
+
background: linear-gradient(transparent, rgba(0,0,0,0.6));
|
|
3999
|
+
color: #fff;
|
|
4000
|
+
font-size: 0.9rem;
|
|
4001
|
+
}
|
|
4002
|
+
|
|
4003
|
+
.bw-carousel-control {
|
|
4004
|
+
position: absolute;
|
|
4005
|
+
top: 50%;
|
|
4006
|
+
transform: translateY(-50%);
|
|
4007
|
+
width: 40px;
|
|
4008
|
+
height: 40px;
|
|
4009
|
+
border: none;
|
|
4010
|
+
border-radius: 50%;
|
|
4011
|
+
background-color: rgba(0,0,0,0.4);
|
|
4012
|
+
cursor: pointer;
|
|
4013
|
+
display: flex;
|
|
4014
|
+
align-items: center;
|
|
4015
|
+
justify-content: center;
|
|
4016
|
+
z-index: 2;
|
|
4017
|
+
padding: 0;
|
|
4018
|
+
transition: background-color 0.2s ease;
|
|
4019
|
+
}
|
|
4020
|
+
|
|
4021
|
+
.bw-bw_carousel-control {
|
|
4022
|
+
position: absolute;
|
|
4023
|
+
top: 50%;
|
|
4024
|
+
transform: translateY(-50%);
|
|
4025
|
+
width: 40px;
|
|
4026
|
+
height: 40px;
|
|
4027
|
+
border: none;
|
|
4028
|
+
border-radius: 50%;
|
|
4029
|
+
background-color: rgba(0,0,0,0.4);
|
|
4030
|
+
cursor: pointer;
|
|
4031
|
+
display: flex;
|
|
4032
|
+
align-items: center;
|
|
4033
|
+
justify-content: center;
|
|
4034
|
+
z-index: 2;
|
|
4035
|
+
padding: 0;
|
|
4036
|
+
transition: background-color 0.2s ease;
|
|
4037
|
+
}
|
|
4038
|
+
|
|
4039
|
+
.bw-carousel-control:hover {
|
|
4040
|
+
background-color: rgba(0,0,0,0.6);
|
|
4041
|
+
}
|
|
4042
|
+
|
|
4043
|
+
.bw-bw_carousel-control:hover {
|
|
4044
|
+
background-color: rgba(0,0,0,0.6);
|
|
4045
|
+
}
|
|
4046
|
+
|
|
4047
|
+
.bw-carousel-control img {
|
|
4048
|
+
width: 20px;
|
|
4049
|
+
height: 20px;
|
|
4050
|
+
pointer-events: none;
|
|
4051
|
+
}
|
|
4052
|
+
|
|
4053
|
+
.bw-bw_carousel-control img {
|
|
4054
|
+
width: 20px;
|
|
4055
|
+
height: 20px;
|
|
4056
|
+
pointer-events: none;
|
|
4057
|
+
}
|
|
4058
|
+
|
|
4059
|
+
.bw-carousel-control-prev {
|
|
4060
|
+
left: 10px;
|
|
4061
|
+
}
|
|
4062
|
+
|
|
4063
|
+
.bw-bw_carousel-control-prev {
|
|
4064
|
+
left: 10px;
|
|
4065
|
+
}
|
|
4066
|
+
|
|
4067
|
+
.bw-carousel-control-next {
|
|
4068
|
+
right: 10px;
|
|
4069
|
+
}
|
|
4070
|
+
|
|
4071
|
+
.bw-bw_carousel-control-next {
|
|
4072
|
+
right: 10px;
|
|
4073
|
+
}
|
|
4074
|
+
|
|
4075
|
+
.bw-carousel-indicators {
|
|
4076
|
+
position: absolute;
|
|
4077
|
+
bottom: 12px;
|
|
4078
|
+
left: 50%;
|
|
4079
|
+
transform: translateX(-50%);
|
|
4080
|
+
display: flex;
|
|
4081
|
+
gap: 6px;
|
|
4082
|
+
z-index: 2;
|
|
4083
|
+
}
|
|
4084
|
+
|
|
4085
|
+
.bw-bw_carousel-indicators {
|
|
4086
|
+
position: absolute;
|
|
4087
|
+
bottom: 12px;
|
|
4088
|
+
left: 50%;
|
|
4089
|
+
transform: translateX(-50%);
|
|
4090
|
+
display: flex;
|
|
4091
|
+
gap: 6px;
|
|
4092
|
+
z-index: 2;
|
|
4093
|
+
}
|
|
4094
|
+
|
|
4095
|
+
.bw-carousel-indicator {
|
|
4096
|
+
width: 10px;
|
|
4097
|
+
height: 10px;
|
|
4098
|
+
border-radius: 50%;
|
|
4099
|
+
border: 2px solid transparent;
|
|
4100
|
+
background-color: transparent;
|
|
4101
|
+
opacity: 0.6;
|
|
4102
|
+
cursor: pointer;
|
|
4103
|
+
padding: 0;
|
|
4104
|
+
transition: opacity 0.2s ease, background-color 0.2s ease;
|
|
4105
|
+
}
|
|
4106
|
+
|
|
4107
|
+
.bw-bw_carousel-indicator {
|
|
4108
|
+
width: 10px;
|
|
4109
|
+
height: 10px;
|
|
4110
|
+
border-radius: 50%;
|
|
4111
|
+
border: 2px solid transparent;
|
|
4112
|
+
background-color: transparent;
|
|
4113
|
+
opacity: 0.6;
|
|
4114
|
+
cursor: pointer;
|
|
4115
|
+
padding: 0;
|
|
4116
|
+
transition: opacity 0.2s ease, background-color 0.2s ease;
|
|
4117
|
+
}
|
|
4118
|
+
|
|
4119
|
+
.bw-carousel-indicator:hover {
|
|
4120
|
+
opacity: 0.8;
|
|
4121
|
+
}
|
|
4122
|
+
|
|
4123
|
+
.bw-bw_carousel-indicator:hover {
|
|
4124
|
+
opacity: 0.8;
|
|
4125
|
+
}
|
|
4126
|
+
|
|
4127
|
+
.bw-carousel-indicator.active {
|
|
4128
|
+
opacity: 1;
|
|
4129
|
+
background-color: #fff;
|
|
4130
|
+
}
|
|
4131
|
+
|
|
4132
|
+
.bw-bw_carousel-indicator.active {
|
|
4133
|
+
opacity: 1;
|
|
4134
|
+
background-color: #fff;
|
|
4135
|
+
}
|
|
4136
|
+
|
|
4137
|
+
.bw-modal {
|
|
4138
|
+
display: none;
|
|
4139
|
+
position: fixed;
|
|
4140
|
+
top: 0;
|
|
4141
|
+
left: 0;
|
|
4142
|
+
width: 100%;
|
|
4143
|
+
height: 100%;
|
|
4144
|
+
z-index: 1050;
|
|
4145
|
+
background-color: rgba(0,0,0,0.5);
|
|
4146
|
+
overflow-x: hidden;
|
|
4147
|
+
overflow-y: auto;
|
|
4148
|
+
opacity: 0;
|
|
4149
|
+
transition: opacity 0.15s linear;
|
|
4150
|
+
}
|
|
4151
|
+
|
|
4152
|
+
.bw-bw_modal {
|
|
4153
|
+
display: none;
|
|
4154
|
+
position: fixed;
|
|
4155
|
+
top: 0;
|
|
4156
|
+
left: 0;
|
|
4157
|
+
width: 100%;
|
|
4158
|
+
height: 100%;
|
|
4159
|
+
z-index: 1050;
|
|
4160
|
+
background-color: rgba(0,0,0,0.5);
|
|
4161
|
+
overflow-x: hidden;
|
|
4162
|
+
overflow-y: auto;
|
|
4163
|
+
opacity: 0;
|
|
4164
|
+
transition: opacity 0.15s linear;
|
|
4165
|
+
}
|
|
4166
|
+
|
|
4167
|
+
.bw-modal.bw-modal-show {
|
|
4168
|
+
display: flex;
|
|
4169
|
+
align-items: center;
|
|
4170
|
+
justify-content: center;
|
|
4171
|
+
opacity: 1;
|
|
4172
|
+
}
|
|
4173
|
+
|
|
4174
|
+
.bw-bw_modal.bw_modal-show {
|
|
4175
|
+
display: flex;
|
|
4176
|
+
align-items: center;
|
|
4177
|
+
justify-content: center;
|
|
4178
|
+
opacity: 1;
|
|
4179
|
+
}
|
|
4180
|
+
|
|
4181
|
+
.bw-modal-dialog {
|
|
4182
|
+
position: relative;
|
|
4183
|
+
width: 100%;
|
|
4184
|
+
max-width: 500px;
|
|
4185
|
+
margin: 1.75rem auto;
|
|
4186
|
+
pointer-events: none;
|
|
4187
|
+
transform: translateY(-20px);
|
|
4188
|
+
transition: transform 0.2s ease-out;
|
|
4189
|
+
}
|
|
4190
|
+
|
|
4191
|
+
.bw-bw_modal-dialog {
|
|
4192
|
+
position: relative;
|
|
4193
|
+
width: 100%;
|
|
4194
|
+
max-width: 500px;
|
|
4195
|
+
margin: 1.75rem auto;
|
|
4196
|
+
pointer-events: none;
|
|
4197
|
+
transform: translateY(-20px);
|
|
4198
|
+
transition: transform 0.2s ease-out;
|
|
4199
|
+
}
|
|
4200
|
+
|
|
4201
|
+
.bw-modal.bw-modal-show .bw-modal-dialog {
|
|
4202
|
+
transform: translateY(0);
|
|
4203
|
+
}
|
|
4204
|
+
|
|
4205
|
+
.bw-bw_modal.bw_modal-show .bw_modal-dialog {
|
|
4206
|
+
transform: translateY(0);
|
|
4207
|
+
}
|
|
4208
|
+
|
|
4209
|
+
.bw-modal-sm {
|
|
4210
|
+
max-width: 300px;
|
|
4211
|
+
}
|
|
4212
|
+
|
|
4213
|
+
.bw-bw_modal-sm {
|
|
4214
|
+
max-width: 300px;
|
|
4215
|
+
}
|
|
4216
|
+
|
|
4217
|
+
.bw-modal-lg {
|
|
4218
|
+
max-width: 800px;
|
|
4219
|
+
}
|
|
4220
|
+
|
|
4221
|
+
.bw-bw_modal-lg {
|
|
4222
|
+
max-width: 800px;
|
|
4223
|
+
}
|
|
4224
|
+
|
|
4225
|
+
.bw-modal-xl {
|
|
4226
|
+
max-width: 1140px;
|
|
4227
|
+
}
|
|
4228
|
+
|
|
4229
|
+
.bw-bw_modal-xl {
|
|
4230
|
+
max-width: 1140px;
|
|
4231
|
+
}
|
|
4232
|
+
|
|
4233
|
+
.bw-modal-content {
|
|
4234
|
+
position: relative;
|
|
4235
|
+
display: flex;
|
|
4236
|
+
flex-direction: column;
|
|
4237
|
+
pointer-events: auto;
|
|
4238
|
+
background-color: #fff;
|
|
4239
|
+
background-clip: padding-box;
|
|
4240
|
+
border: 1px solid transparent;
|
|
4241
|
+
border-radius: 8px;
|
|
4242
|
+
box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
|
|
4243
|
+
outline: 0;
|
|
4244
|
+
}
|
|
4245
|
+
|
|
4246
|
+
.bw-bw_modal-content {
|
|
4247
|
+
position: relative;
|
|
4248
|
+
display: flex;
|
|
4249
|
+
flex-direction: column;
|
|
4250
|
+
pointer-events: auto;
|
|
4251
|
+
background-color: #fff;
|
|
4252
|
+
background-clip: padding-box;
|
|
4253
|
+
border: 1px solid transparent;
|
|
4254
|
+
border-radius: 8px;
|
|
4255
|
+
box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
|
|
4256
|
+
outline: 0;
|
|
4257
|
+
}
|
|
4258
|
+
|
|
4259
|
+
.bw-modal-header {
|
|
4260
|
+
display: flex;
|
|
4261
|
+
align-items: center;
|
|
4262
|
+
justify-content: space-between;
|
|
4263
|
+
padding: 1rem 1.5rem;
|
|
4264
|
+
border-bottom: 1px solid #e5e5e5;
|
|
4265
|
+
}
|
|
4266
|
+
|
|
4267
|
+
.bw-bw_modal-header {
|
|
4268
|
+
display: flex;
|
|
4269
|
+
align-items: center;
|
|
4270
|
+
justify-content: space-between;
|
|
4271
|
+
padding: 1rem 1.5rem;
|
|
4272
|
+
border-bottom: 1px solid #e5e5e5;
|
|
4273
|
+
}
|
|
4274
|
+
|
|
4275
|
+
.bw-modal-title {
|
|
4276
|
+
margin: 0;
|
|
4277
|
+
font-size: 1.25rem;
|
|
4278
|
+
font-weight: 600;
|
|
4279
|
+
line-height: 1.3;
|
|
4280
|
+
}
|
|
4281
|
+
|
|
4282
|
+
.bw-bw_modal-title {
|
|
4283
|
+
margin: 0;
|
|
4284
|
+
font-size: 1.25rem;
|
|
4285
|
+
font-weight: 600;
|
|
4286
|
+
line-height: 1.3;
|
|
4287
|
+
}
|
|
4288
|
+
|
|
4289
|
+
.bw-modal-body {
|
|
4290
|
+
position: relative;
|
|
4291
|
+
flex: 1 1 auto;
|
|
4292
|
+
padding: 1.5rem;
|
|
4293
|
+
}
|
|
4294
|
+
|
|
4295
|
+
.bw-bw_modal-body {
|
|
4296
|
+
position: relative;
|
|
4297
|
+
flex: 1 1 auto;
|
|
4298
|
+
padding: 1.5rem;
|
|
4299
|
+
}
|
|
4300
|
+
|
|
4301
|
+
.bw-modal-footer {
|
|
4302
|
+
display: flex;
|
|
4303
|
+
flex-wrap: wrap;
|
|
4304
|
+
align-items: center;
|
|
4305
|
+
justify-content: flex-end;
|
|
4306
|
+
padding: 0.75rem 1.5rem;
|
|
4307
|
+
border-top: 1px solid #e5e5e5;
|
|
4308
|
+
gap: 0.5rem;
|
|
4309
|
+
}
|
|
4310
|
+
|
|
4311
|
+
.bw-bw_modal-footer {
|
|
4312
|
+
display: flex;
|
|
4313
|
+
flex-wrap: wrap;
|
|
4314
|
+
align-items: center;
|
|
4315
|
+
justify-content: flex-end;
|
|
4316
|
+
padding: 0.75rem 1.5rem;
|
|
4317
|
+
border-top: 1px solid #e5e5e5;
|
|
4318
|
+
gap: 0.5rem;
|
|
4319
|
+
}
|
|
4320
|
+
|
|
4321
|
+
.bw-toast-container {
|
|
4322
|
+
position: fixed;
|
|
4323
|
+
z-index: 1080;
|
|
4324
|
+
pointer-events: none;
|
|
4325
|
+
display: flex;
|
|
4326
|
+
flex-direction: column;
|
|
4327
|
+
gap: 0.5rem;
|
|
4328
|
+
padding: 1rem;
|
|
4329
|
+
}
|
|
4330
|
+
|
|
4331
|
+
.bw-bw_toast-container {
|
|
4332
|
+
position: fixed;
|
|
4333
|
+
z-index: 1080;
|
|
4334
|
+
pointer-events: none;
|
|
4335
|
+
display: flex;
|
|
4336
|
+
flex-direction: column;
|
|
4337
|
+
gap: 0.5rem;
|
|
4338
|
+
padding: 1rem;
|
|
4339
|
+
}
|
|
4340
|
+
|
|
4341
|
+
.bw-toast-container.bw-toast-top-right {
|
|
4342
|
+
top: 0;
|
|
4343
|
+
right: 0;
|
|
4344
|
+
}
|
|
4345
|
+
|
|
4346
|
+
.bw-bw_toast-container.bw_toast-top-right {
|
|
4347
|
+
top: 0;
|
|
4348
|
+
right: 0;
|
|
4349
|
+
}
|
|
4350
|
+
|
|
4351
|
+
.bw-toast-container.bw-toast-top-left {
|
|
4352
|
+
top: 0;
|
|
4353
|
+
left: 0;
|
|
4354
|
+
}
|
|
4355
|
+
|
|
4356
|
+
.bw-bw_toast-container.bw_toast-top-left {
|
|
4357
|
+
top: 0;
|
|
4358
|
+
left: 0;
|
|
4359
|
+
}
|
|
4360
|
+
|
|
4361
|
+
.bw-toast-container.bw-toast-bottom-right {
|
|
4362
|
+
bottom: 0;
|
|
4363
|
+
right: 0;
|
|
4364
|
+
}
|
|
4365
|
+
|
|
4366
|
+
.bw-bw_toast-container.bw_toast-bottom-right {
|
|
4367
|
+
bottom: 0;
|
|
4368
|
+
right: 0;
|
|
4369
|
+
}
|
|
4370
|
+
|
|
4371
|
+
.bw-toast-container.bw-toast-bottom-left {
|
|
4372
|
+
bottom: 0;
|
|
4373
|
+
left: 0;
|
|
4374
|
+
}
|
|
4375
|
+
|
|
4376
|
+
.bw-bw_toast-container.bw_toast-bottom-left {
|
|
4377
|
+
bottom: 0;
|
|
4378
|
+
left: 0;
|
|
4379
|
+
}
|
|
4380
|
+
|
|
4381
|
+
.bw-toast-container.bw-toast-top-center {
|
|
4382
|
+
top: 0;
|
|
4383
|
+
left: 50%;
|
|
4384
|
+
transform: translateX(-50%);
|
|
4385
|
+
}
|
|
4386
|
+
|
|
4387
|
+
.bw-bw_toast-container.bw_toast-top-center {
|
|
4388
|
+
top: 0;
|
|
4389
|
+
left: 50%;
|
|
4390
|
+
transform: translateX(-50%);
|
|
4391
|
+
}
|
|
4392
|
+
|
|
4393
|
+
.bw-toast-container.bw-toast-bottom-center {
|
|
4394
|
+
bottom: 0;
|
|
4395
|
+
left: 50%;
|
|
4396
|
+
transform: translateX(-50%);
|
|
4397
|
+
}
|
|
4398
|
+
|
|
4399
|
+
.bw-bw_toast-container.bw_toast-bottom-center {
|
|
4400
|
+
bottom: 0;
|
|
4401
|
+
left: 50%;
|
|
4402
|
+
transform: translateX(-50%);
|
|
4403
|
+
}
|
|
4404
|
+
|
|
4405
|
+
.bw-toast {
|
|
4406
|
+
pointer-events: auto;
|
|
4407
|
+
width: 350px;
|
|
4408
|
+
max-width: 100%;
|
|
4409
|
+
background-color: #fff;
|
|
4410
|
+
background-clip: padding-box;
|
|
4411
|
+
border: 1px solid rgba(0,0,0,0.1);
|
|
4412
|
+
border-radius: 8px;
|
|
4413
|
+
box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
|
|
4414
|
+
opacity: 0;
|
|
4415
|
+
transform: translateY(-10px);
|
|
4416
|
+
transition: opacity 0.3s ease, transform 0.3s ease;
|
|
4417
|
+
}
|
|
4418
|
+
|
|
4419
|
+
.bw-bw_toast {
|
|
4420
|
+
pointer-events: auto;
|
|
4421
|
+
width: 350px;
|
|
4422
|
+
max-width: 100%;
|
|
4423
|
+
background-color: #fff;
|
|
4424
|
+
background-clip: padding-box;
|
|
4425
|
+
border: 1px solid rgba(0,0,0,0.1);
|
|
4426
|
+
border-radius: 8px;
|
|
4427
|
+
box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
|
|
4428
|
+
opacity: 0;
|
|
4429
|
+
transform: translateY(-10px);
|
|
4430
|
+
transition: opacity 0.3s ease, transform 0.3s ease;
|
|
4431
|
+
}
|
|
4432
|
+
|
|
4433
|
+
.bw-toast.bw-toast-show {
|
|
4434
|
+
opacity: 1;
|
|
4435
|
+
transform: translateY(0);
|
|
4436
|
+
}
|
|
4437
|
+
|
|
4438
|
+
.bw-bw_toast.bw_toast-show {
|
|
4439
|
+
opacity: 1;
|
|
4440
|
+
transform: translateY(0);
|
|
4441
|
+
}
|
|
4442
|
+
|
|
4443
|
+
.bw-toast.bw-toast-hiding {
|
|
4444
|
+
opacity: 0;
|
|
4445
|
+
transform: translateY(-10px);
|
|
4446
|
+
}
|
|
4447
|
+
|
|
4448
|
+
.bw-bw_toast.bw_toast-hiding {
|
|
4449
|
+
opacity: 0;
|
|
4450
|
+
transform: translateY(-10px);
|
|
4451
|
+
}
|
|
4452
|
+
|
|
4453
|
+
.bw-toast-header {
|
|
4454
|
+
display: flex;
|
|
4455
|
+
align-items: center;
|
|
4456
|
+
justify-content: space-between;
|
|
4457
|
+
padding: 0.5rem 0.75rem;
|
|
4458
|
+
border-bottom: 1px solid rgba(0,0,0,0.05);
|
|
4459
|
+
font-size: 0.875rem;
|
|
4460
|
+
}
|
|
4461
|
+
|
|
4462
|
+
.bw-bw_toast-header {
|
|
4463
|
+
display: flex;
|
|
4464
|
+
align-items: center;
|
|
4465
|
+
justify-content: space-between;
|
|
4466
|
+
padding: 0.5rem 0.75rem;
|
|
4467
|
+
border-bottom: 1px solid rgba(0,0,0,0.05);
|
|
4468
|
+
font-size: 0.875rem;
|
|
4469
|
+
}
|
|
4470
|
+
|
|
4471
|
+
.bw-toast-body {
|
|
4472
|
+
padding: 0.75rem;
|
|
4473
|
+
font-size: 0.9375rem;
|
|
4474
|
+
}
|
|
4475
|
+
|
|
4476
|
+
.bw-bw_toast-body {
|
|
4477
|
+
padding: 0.75rem;
|
|
4478
|
+
font-size: 0.9375rem;
|
|
4479
|
+
}
|
|
4480
|
+
|
|
4481
|
+
.bw-toast-primary {
|
|
4482
|
+
border-left: 4px solid #006666;
|
|
4483
|
+
}
|
|
4484
|
+
|
|
4485
|
+
.bw-bw_toast-primary {
|
|
4486
|
+
border-left: 4px solid #006666;
|
|
4487
|
+
}
|
|
4488
|
+
|
|
4489
|
+
.bw-toast-secondary {
|
|
4490
|
+
border-left: 4px solid #6c757d;
|
|
4491
|
+
}
|
|
4492
|
+
|
|
4493
|
+
.bw-bw_toast-secondary {
|
|
4494
|
+
border-left: 4px solid #6c757d;
|
|
4495
|
+
}
|
|
4496
|
+
|
|
4497
|
+
.bw-toast-success {
|
|
4498
|
+
border-left: 4px solid #198754;
|
|
4499
|
+
}
|
|
4500
|
+
|
|
4501
|
+
.bw-bw_toast-success {
|
|
4502
|
+
border-left: 4px solid #198754;
|
|
4503
|
+
}
|
|
4504
|
+
|
|
4505
|
+
.bw-toast-danger {
|
|
4506
|
+
border-left: 4px solid #dc3545;
|
|
4507
|
+
}
|
|
4508
|
+
|
|
4509
|
+
.bw-bw_toast-danger {
|
|
4510
|
+
border-left: 4px solid #dc3545;
|
|
4511
|
+
}
|
|
4512
|
+
|
|
4513
|
+
.bw-toast-warning {
|
|
4514
|
+
border-left: 4px solid #ffc107;
|
|
4515
|
+
}
|
|
4516
|
+
|
|
4517
|
+
.bw-bw_toast-warning {
|
|
4518
|
+
border-left: 4px solid #ffc107;
|
|
4519
|
+
}
|
|
4520
|
+
|
|
4521
|
+
.bw-toast-info {
|
|
4522
|
+
border-left: 4px solid #0dcaf0;
|
|
4523
|
+
}
|
|
4524
|
+
|
|
4525
|
+
.bw-bw_toast-info {
|
|
4526
|
+
border-left: 4px solid #0dcaf0;
|
|
4527
|
+
}
|
|
4528
|
+
|
|
4529
|
+
.bw-dropdown {
|
|
4530
|
+
position: relative;
|
|
4531
|
+
display: inline-block;
|
|
4532
|
+
}
|
|
4533
|
+
|
|
4534
|
+
.bw-bw_dropdown {
|
|
4535
|
+
position: relative;
|
|
4536
|
+
display: inline-block;
|
|
4537
|
+
}
|
|
4538
|
+
|
|
4539
|
+
.bw-dropdown-toggle::after {
|
|
4540
|
+
display: inline-block;
|
|
4541
|
+
margin-left: 0.255em;
|
|
4542
|
+
vertical-align: 0.255em;
|
|
4543
|
+
content: "";
|
|
4544
|
+
border-top: 0.3em solid;
|
|
4545
|
+
border-right: 0.3em solid transparent;
|
|
4546
|
+
border-bottom: 0;
|
|
4547
|
+
border-left: 0.3em solid transparent;
|
|
4548
|
+
}
|
|
4549
|
+
|
|
4550
|
+
.bw-bw_dropdown-toggle::after {
|
|
4551
|
+
display: inline-block;
|
|
4552
|
+
margin-left: 0.255em;
|
|
4553
|
+
vertical-align: 0.255em;
|
|
4554
|
+
content: "";
|
|
4555
|
+
border-top: 0.3em solid;
|
|
4556
|
+
border-right: 0.3em solid transparent;
|
|
4557
|
+
border-bottom: 0;
|
|
4558
|
+
border-left: 0.3em solid transparent;
|
|
4559
|
+
}
|
|
4560
|
+
|
|
4561
|
+
.bw-dropdown-menu {
|
|
4562
|
+
position: absolute;
|
|
4563
|
+
top: 100%;
|
|
4564
|
+
left: 0;
|
|
4565
|
+
z-index: 1000;
|
|
4566
|
+
display: none;
|
|
4567
|
+
min-width: 10rem;
|
|
4568
|
+
padding: 0.5rem 0;
|
|
4569
|
+
margin: 0.125rem 0 0;
|
|
4570
|
+
background-color: #fff;
|
|
4571
|
+
background-clip: padding-box;
|
|
4572
|
+
border: 1px solid rgba(0,0,0,0.15);
|
|
4573
|
+
border-radius: 6px;
|
|
4574
|
+
box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
|
|
4575
|
+
}
|
|
4576
|
+
|
|
4577
|
+
.bw-bw_dropdown-menu {
|
|
4578
|
+
position: absolute;
|
|
4579
|
+
top: 100%;
|
|
4580
|
+
left: 0;
|
|
4581
|
+
z-index: 1000;
|
|
4582
|
+
display: none;
|
|
4583
|
+
min-width: 10rem;
|
|
4584
|
+
padding: 0.5rem 0;
|
|
4585
|
+
margin: 0.125rem 0 0;
|
|
4586
|
+
background-color: #fff;
|
|
4587
|
+
background-clip: padding-box;
|
|
4588
|
+
border: 1px solid rgba(0,0,0,0.15);
|
|
4589
|
+
border-radius: 6px;
|
|
4590
|
+
box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
|
|
4591
|
+
}
|
|
4592
|
+
|
|
4593
|
+
.bw-dropdown-menu.bw-dropdown-show {
|
|
4594
|
+
display: block;
|
|
4595
|
+
}
|
|
4596
|
+
|
|
4597
|
+
.bw-bw_dropdown-menu.bw_dropdown-show {
|
|
4598
|
+
display: block;
|
|
4599
|
+
}
|
|
4600
|
+
|
|
4601
|
+
.bw-dropdown-menu-end {
|
|
4602
|
+
left: auto;
|
|
4603
|
+
right: 0;
|
|
4604
|
+
}
|
|
4605
|
+
|
|
4606
|
+
.bw-bw_dropdown-menu-end {
|
|
4607
|
+
left: auto;
|
|
4608
|
+
right: 0;
|
|
4609
|
+
}
|
|
4610
|
+
|
|
4611
|
+
.bw-dropdown-item {
|
|
4612
|
+
display: block;
|
|
4613
|
+
width: 100%;
|
|
4614
|
+
padding: 0.375rem 1rem;
|
|
4615
|
+
clear: both;
|
|
4616
|
+
font-weight: 400;
|
|
4617
|
+
color: #212529;
|
|
4618
|
+
text-align: inherit;
|
|
4619
|
+
text-decoration: none;
|
|
4620
|
+
white-space: nowrap;
|
|
4621
|
+
background-color: transparent;
|
|
4622
|
+
border: 0;
|
|
4623
|
+
font-size: 0.9375rem;
|
|
4624
|
+
transition: background-color 0.15s, color 0.15s;
|
|
4625
|
+
}
|
|
4626
|
+
|
|
4627
|
+
.bw-bw_dropdown-item {
|
|
4628
|
+
display: block;
|
|
4629
|
+
width: 100%;
|
|
4630
|
+
padding: 0.375rem 1rem;
|
|
4631
|
+
clear: both;
|
|
4632
|
+
font-weight: 400;
|
|
4633
|
+
color: #212529;
|
|
4634
|
+
text-align: inherit;
|
|
4635
|
+
text-decoration: none;
|
|
4636
|
+
white-space: nowrap;
|
|
4637
|
+
background-color: transparent;
|
|
4638
|
+
border: 0;
|
|
4639
|
+
font-size: 0.9375rem;
|
|
4640
|
+
transition: background-color 0.15s, color 0.15s;
|
|
4641
|
+
}
|
|
4642
|
+
|
|
4643
|
+
.bw-dropdown-item:hover {
|
|
4644
|
+
color: #1e2125;
|
|
4645
|
+
background-color: #f8f9fa;
|
|
4646
|
+
}
|
|
4647
|
+
|
|
4648
|
+
.bw-bw_dropdown-item:hover {
|
|
4649
|
+
color: #1e2125;
|
|
4650
|
+
background-color: #f8f9fa;
|
|
4651
|
+
}
|
|
4652
|
+
|
|
4653
|
+
.bw-dropdown-item.disabled {
|
|
4654
|
+
color: #adb5bd;
|
|
4655
|
+
pointer-events: none;
|
|
4656
|
+
background-color: transparent;
|
|
4657
|
+
}
|
|
4658
|
+
|
|
4659
|
+
.bw-bw_dropdown-item.disabled {
|
|
4660
|
+
color: #adb5bd;
|
|
4661
|
+
pointer-events: none;
|
|
4662
|
+
background-color: transparent;
|
|
4663
|
+
}
|
|
4664
|
+
|
|
4665
|
+
.bw-dropdown-divider {
|
|
4666
|
+
height: 0;
|
|
4667
|
+
margin: 0.5rem 0;
|
|
4668
|
+
overflow: hidden;
|
|
4669
|
+
border-top: 1px solid #e9ecef;
|
|
4670
|
+
opacity: 1;
|
|
4671
|
+
}
|
|
4672
|
+
|
|
4673
|
+
.bw-bw_dropdown-divider {
|
|
4674
|
+
height: 0;
|
|
4675
|
+
margin: 0.5rem 0;
|
|
4676
|
+
overflow: hidden;
|
|
4677
|
+
border-top: 1px solid #e9ecef;
|
|
4678
|
+
opacity: 1;
|
|
4679
|
+
}
|
|
4680
|
+
|
|
4681
|
+
.bw-form-switch {
|
|
4682
|
+
padding-left: 2.5em;
|
|
4683
|
+
}
|
|
4684
|
+
|
|
4685
|
+
.bw-bw_form-switch {
|
|
4686
|
+
padding-left: 2.5em;
|
|
4687
|
+
}
|
|
4688
|
+
|
|
4689
|
+
.bw-form-switch .bw-switch-input {
|
|
4690
|
+
width: 2em;
|
|
4691
|
+
height: 1.125em;
|
|
4692
|
+
margin-left: -2.5em;
|
|
4693
|
+
border-radius: 2em;
|
|
4694
|
+
appearance: none;
|
|
4695
|
+
background-color: #adb5bd;
|
|
4696
|
+
border: 1px solid #adb5bd;
|
|
4697
|
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba(255,255,255,1)'/%3e%3c/svg%3e");
|
|
4698
|
+
background-position: left center;
|
|
4699
|
+
background-repeat: no-repeat;
|
|
4700
|
+
background-size: contain;
|
|
4701
|
+
transition: background-position 0.15s ease-in-out, background-color 0.15s ease-in-out;
|
|
4702
|
+
cursor: pointer;
|
|
4703
|
+
}
|
|
4704
|
+
|
|
4705
|
+
.bw-bw_form-switch .bw_switch-input {
|
|
4706
|
+
width: 2em;
|
|
4707
|
+
height: 1.125em;
|
|
4708
|
+
margin-left: -2.5em;
|
|
4709
|
+
border-radius: 2em;
|
|
4710
|
+
appearance: none;
|
|
4711
|
+
background-color: #adb5bd;
|
|
4712
|
+
border: 1px solid #adb5bd;
|
|
4713
|
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba(255,255,255,1)'/%3e%3c/svg%3e");
|
|
4714
|
+
background-position: left center;
|
|
4715
|
+
background-repeat: no-repeat;
|
|
4716
|
+
background-size: contain;
|
|
4717
|
+
transition: background-position 0.15s ease-in-out, background-color 0.15s ease-in-out;
|
|
4718
|
+
cursor: pointer;
|
|
4719
|
+
}
|
|
4720
|
+
|
|
4721
|
+
.bw-form-switch .bw-switch-input:checked {
|
|
4722
|
+
background-color: #006666;
|
|
4723
|
+
border-color: #006666;
|
|
4724
|
+
background-position: right center;
|
|
4725
|
+
}
|
|
4726
|
+
|
|
4727
|
+
.bw-bw_form-switch .bw_switch-input:checked {
|
|
4728
|
+
background-color: #006666;
|
|
4729
|
+
border-color: #006666;
|
|
4730
|
+
background-position: right center;
|
|
4731
|
+
}
|
|
4732
|
+
|
|
4733
|
+
.bw-form-switch .bw-switch-input:focus {
|
|
4734
|
+
box-shadow: 0 0 0 0.25rem rgba(0, 102, 102, 0.25);
|
|
4735
|
+
outline: 0;
|
|
4736
|
+
}
|
|
4737
|
+
|
|
4738
|
+
.bw-bw_form-switch .bw_switch-input:focus {
|
|
4739
|
+
box-shadow: 0 0 0 0.25rem rgba(0, 102, 102, 0.25);
|
|
4740
|
+
outline: 0;
|
|
4741
|
+
}
|
|
4742
|
+
|
|
4743
|
+
.bw-form-switch .bw-switch-input:disabled {
|
|
4744
|
+
opacity: 0.5;
|
|
4745
|
+
cursor: not-allowed;
|
|
4746
|
+
}
|
|
4747
|
+
|
|
4748
|
+
.bw-bw_form-switch .bw_switch-input:disabled {
|
|
4749
|
+
opacity: 0.5;
|
|
4750
|
+
cursor: not-allowed;
|
|
4751
|
+
}
|
|
4752
|
+
|
|
4753
|
+
.bw-skeleton {
|
|
4754
|
+
background: linear-gradient(90deg, #dde0e4 25%, #eceef1 37%, #dde0e4 63%);
|
|
4755
|
+
background-size: 400% 100%;
|
|
4756
|
+
border-radius: 4px;
|
|
4757
|
+
animation: bw-skeleton-shimmer 1.4s ease infinite;
|
|
4758
|
+
}
|
|
4759
|
+
|
|
4760
|
+
.bw-bw_skeleton {
|
|
4761
|
+
background: linear-gradient(90deg, #dde0e4 25%, #eceef1 37%, #dde0e4 63%);
|
|
4762
|
+
background-size: 400% 100%;
|
|
4763
|
+
border-radius: 4px;
|
|
4764
|
+
animation: bw-skeleton-shimmer 1.4s ease infinite;
|
|
4765
|
+
}
|
|
4766
|
+
|
|
4767
|
+
.bw-skeleton-text {
|
|
4768
|
+
height: 1em;
|
|
4769
|
+
margin-bottom: 0.5rem;
|
|
4770
|
+
}
|
|
4771
|
+
|
|
4772
|
+
.bw-bw_skeleton-text {
|
|
4773
|
+
height: 1em;
|
|
4774
|
+
margin-bottom: 0.5rem;
|
|
4775
|
+
}
|
|
4776
|
+
|
|
4777
|
+
.bw-skeleton-circle {
|
|
4778
|
+
border-radius: 50%;
|
|
4779
|
+
}
|
|
4780
|
+
|
|
4781
|
+
.bw-bw_skeleton-circle {
|
|
4782
|
+
border-radius: 50%;
|
|
4783
|
+
}
|
|
4784
|
+
|
|
4785
|
+
.bw-skeleton-rect {
|
|
4786
|
+
border-radius: 8px;
|
|
4787
|
+
}
|
|
4788
|
+
|
|
4789
|
+
.bw-bw_skeleton-rect {
|
|
4790
|
+
border-radius: 8px;
|
|
4791
|
+
}
|
|
4792
|
+
|
|
4793
|
+
.bw-skeleton-group {
|
|
4794
|
+
display: flex;
|
|
4795
|
+
flex-direction: column;
|
|
4796
|
+
}
|
|
4797
|
+
|
|
4798
|
+
.bw-bw_skeleton-group {
|
|
4799
|
+
display: flex;
|
|
4800
|
+
flex-direction: column;
|
|
4801
|
+
}
|
|
4802
|
+
|
|
4803
|
+
@keyframes bw-skeleton-shimmer {
|
|
4804
|
+
0% {
|
|
4805
|
+
background-position: 100% 50%;
|
|
4806
|
+
}
|
|
4807
|
+
100% {
|
|
4808
|
+
background-position: 0 50%;
|
|
4809
|
+
}
|
|
4810
|
+
}
|
|
4811
|
+
|
|
4812
|
+
.bw-avatar {
|
|
4813
|
+
display: inline-flex;
|
|
4814
|
+
align-items: center;
|
|
4815
|
+
justify-content: center;
|
|
4816
|
+
border-radius: 50%;
|
|
4817
|
+
overflow: hidden;
|
|
4818
|
+
font-weight: 600;
|
|
4819
|
+
text-transform: uppercase;
|
|
4820
|
+
vertical-align: middle;
|
|
4821
|
+
object-fit: cover;
|
|
4822
|
+
}
|
|
4823
|
+
|
|
4824
|
+
.bw-bw_avatar {
|
|
4825
|
+
display: inline-flex;
|
|
4826
|
+
align-items: center;
|
|
4827
|
+
justify-content: center;
|
|
4828
|
+
border-radius: 50%;
|
|
4829
|
+
overflow: hidden;
|
|
4830
|
+
font-weight: 600;
|
|
4831
|
+
text-transform: uppercase;
|
|
4832
|
+
vertical-align: middle;
|
|
4833
|
+
object-fit: cover;
|
|
4834
|
+
}
|
|
4835
|
+
|
|
4836
|
+
.bw-avatar-sm {
|
|
4837
|
+
width: 2rem;
|
|
4838
|
+
height: 2rem;
|
|
4839
|
+
font-size: 0.75rem;
|
|
4840
|
+
}
|
|
4841
|
+
|
|
4842
|
+
.bw-bw_avatar-sm {
|
|
4843
|
+
width: 2rem;
|
|
4844
|
+
height: 2rem;
|
|
4845
|
+
font-size: 0.75rem;
|
|
4846
|
+
}
|
|
4847
|
+
|
|
4848
|
+
.bw-avatar-md {
|
|
4849
|
+
width: 3rem;
|
|
4850
|
+
height: 3rem;
|
|
4851
|
+
font-size: 1rem;
|
|
4852
|
+
}
|
|
4853
|
+
|
|
4854
|
+
.bw-bw_avatar-md {
|
|
4855
|
+
width: 3rem;
|
|
4856
|
+
height: 3rem;
|
|
4857
|
+
font-size: 1rem;
|
|
4858
|
+
}
|
|
4859
|
+
|
|
4860
|
+
.bw-avatar-lg {
|
|
4861
|
+
width: 4rem;
|
|
4862
|
+
height: 4rem;
|
|
4863
|
+
font-size: 1.25rem;
|
|
4864
|
+
}
|
|
4865
|
+
|
|
4866
|
+
.bw-bw_avatar-lg {
|
|
4867
|
+
width: 4rem;
|
|
4868
|
+
height: 4rem;
|
|
4869
|
+
font-size: 1.25rem;
|
|
4870
|
+
}
|
|
4871
|
+
|
|
4872
|
+
.bw-avatar-xl {
|
|
4873
|
+
width: 5rem;
|
|
4874
|
+
height: 5rem;
|
|
4875
|
+
font-size: 1.5rem;
|
|
4876
|
+
}
|
|
4877
|
+
|
|
4878
|
+
.bw-bw_avatar-xl {
|
|
4879
|
+
width: 5rem;
|
|
4880
|
+
height: 5rem;
|
|
4881
|
+
font-size: 1.5rem;
|
|
4882
|
+
}
|
|
4883
|
+
|
|
4884
|
+
.bw-avatar-primary {
|
|
4885
|
+
background-color: #006666;
|
|
4886
|
+
color: #fff;
|
|
4887
|
+
}
|
|
4888
|
+
|
|
4889
|
+
.bw-bw_avatar-primary {
|
|
4890
|
+
background-color: #006666;
|
|
4891
|
+
color: #fff;
|
|
4892
|
+
}
|
|
4893
|
+
|
|
4894
|
+
.bw-avatar-secondary {
|
|
4895
|
+
background-color: #6c757d;
|
|
4896
|
+
color: #fff;
|
|
4897
|
+
}
|
|
4898
|
+
|
|
4899
|
+
.bw-bw_avatar-secondary {
|
|
4900
|
+
background-color: #6c757d;
|
|
4901
|
+
color: #fff;
|
|
4902
|
+
}
|
|
4903
|
+
|
|
4904
|
+
.bw-avatar-success {
|
|
4905
|
+
background-color: #198754;
|
|
4906
|
+
color: #fff;
|
|
4907
|
+
}
|
|
4908
|
+
|
|
4909
|
+
.bw-bw_avatar-success {
|
|
4910
|
+
background-color: #198754;
|
|
4911
|
+
color: #fff;
|
|
4912
|
+
}
|
|
4913
|
+
|
|
4914
|
+
.bw-avatar-danger {
|
|
4915
|
+
background-color: #dc3545;
|
|
4916
|
+
color: #fff;
|
|
4917
|
+
}
|
|
4918
|
+
|
|
4919
|
+
.bw-bw_avatar-danger {
|
|
4920
|
+
background-color: #dc3545;
|
|
4921
|
+
color: #fff;
|
|
4922
|
+
}
|
|
4923
|
+
|
|
4924
|
+
.bw-avatar-warning {
|
|
4925
|
+
background-color: #ffc107;
|
|
4926
|
+
color: #000;
|
|
4927
|
+
}
|
|
4928
|
+
|
|
4929
|
+
.bw-bw_avatar-warning {
|
|
4930
|
+
background-color: #ffc107;
|
|
4931
|
+
color: #000;
|
|
4932
|
+
}
|
|
4933
|
+
|
|
4934
|
+
.bw-avatar-info {
|
|
4935
|
+
background-color: #0dcaf0;
|
|
4936
|
+
color: #000;
|
|
4937
|
+
}
|
|
4938
|
+
|
|
4939
|
+
.bw-bw_avatar-info {
|
|
4940
|
+
background-color: #0dcaf0;
|
|
4941
|
+
color: #000;
|
|
4942
|
+
}
|
|
4943
|
+
|
|
4944
|
+
.bw-avatar-light {
|
|
4945
|
+
background-color: #f8f9fa;
|
|
4946
|
+
color: #212529;
|
|
4947
|
+
}
|
|
4948
|
+
|
|
4949
|
+
.bw-bw_avatar-light {
|
|
4950
|
+
background-color: #f8f9fa;
|
|
4951
|
+
color: #212529;
|
|
4952
|
+
}
|
|
4953
|
+
|
|
4954
|
+
.bw-avatar-dark {
|
|
4955
|
+
background-color: #212529;
|
|
4956
|
+
color: #fff;
|
|
4957
|
+
}
|
|
4958
|
+
|
|
4959
|
+
.bw-bw_avatar-dark {
|
|
4960
|
+
background-color: #212529;
|
|
4961
|
+
color: #fff;
|
|
4962
|
+
}
|
|
4963
|
+
|
|
4964
|
+
.bw-m-0 {
|
|
4965
|
+
margin: 0 !important;
|
|
4966
|
+
}
|
|
4967
|
+
|
|
4968
|
+
.bw-bw_m-0 {
|
|
4969
|
+
margin: 0 !important;
|
|
4970
|
+
}
|
|
4971
|
+
|
|
4972
|
+
.bw-m-1 {
|
|
4973
|
+
margin: .25rem !important;
|
|
4974
|
+
}
|
|
4975
|
+
|
|
4976
|
+
.bw-bw_m-1 {
|
|
4977
|
+
margin: .25rem !important;
|
|
4978
|
+
}
|
|
4979
|
+
|
|
4980
|
+
.bw-m-2 {
|
|
4981
|
+
margin: .5rem !important;
|
|
4982
|
+
}
|
|
4983
|
+
|
|
4984
|
+
.bw-bw_m-2 {
|
|
4985
|
+
margin: .5rem !important;
|
|
4986
|
+
}
|
|
4987
|
+
|
|
4988
|
+
.bw-m-3 {
|
|
4989
|
+
margin: 1rem !important;
|
|
4990
|
+
}
|
|
4991
|
+
|
|
4992
|
+
.bw-bw_m-3 {
|
|
4993
|
+
margin: 1rem !important;
|
|
4994
|
+
}
|
|
4995
|
+
|
|
4996
|
+
.bw-m-4 {
|
|
4997
|
+
margin: 1.5rem !important;
|
|
4998
|
+
}
|
|
4999
|
+
|
|
5000
|
+
.bw-bw_m-4 {
|
|
5001
|
+
margin: 1.5rem !important;
|
|
5002
|
+
}
|
|
5003
|
+
|
|
5004
|
+
.bw-m-5 {
|
|
5005
|
+
margin: 3rem !important;
|
|
5006
|
+
}
|
|
5007
|
+
|
|
5008
|
+
.bw-bw_m-5 {
|
|
5009
|
+
margin: 3rem !important;
|
|
5010
|
+
}
|
|
5011
|
+
|
|
5012
|
+
.bw-m-auto, .m-auto {
|
|
5013
|
+
margin: auto !important;
|
|
5014
|
+
}
|
|
5015
|
+
|
|
5016
|
+
.bw-bw_m-auto, .m-auto {
|
|
5017
|
+
margin: auto !important;
|
|
5018
|
+
}
|
|
5019
|
+
|
|
5020
|
+
.bw-mt-0 {
|
|
5021
|
+
margin-top: 0 !important;
|
|
5022
|
+
}
|
|
5023
|
+
|
|
5024
|
+
.bw-bw_mt-0 {
|
|
5025
|
+
margin-top: 0 !important;
|
|
5026
|
+
}
|
|
5027
|
+
|
|
5028
|
+
.bw-mt-1 {
|
|
5029
|
+
margin-top: .25rem !important;
|
|
5030
|
+
}
|
|
5031
|
+
|
|
5032
|
+
.bw-bw_mt-1 {
|
|
5033
|
+
margin-top: .25rem !important;
|
|
5034
|
+
}
|
|
5035
|
+
|
|
5036
|
+
.bw-mt-2 {
|
|
5037
|
+
margin-top: .5rem !important;
|
|
5038
|
+
}
|
|
5039
|
+
|
|
5040
|
+
.bw-bw_mt-2 {
|
|
5041
|
+
margin-top: .5rem !important;
|
|
5042
|
+
}
|
|
5043
|
+
|
|
5044
|
+
.bw-mt-3 {
|
|
5045
|
+
margin-top: 1rem !important;
|
|
5046
|
+
}
|
|
5047
|
+
|
|
5048
|
+
.bw-bw_mt-3 {
|
|
5049
|
+
margin-top: 1rem !important;
|
|
5050
|
+
}
|
|
5051
|
+
|
|
5052
|
+
.bw-mt-4 {
|
|
5053
|
+
margin-top: 1.5rem !important;
|
|
5054
|
+
}
|
|
5055
|
+
|
|
5056
|
+
.bw-bw_mt-4 {
|
|
5057
|
+
margin-top: 1.5rem !important;
|
|
5058
|
+
}
|
|
5059
|
+
|
|
5060
|
+
.bw-mt-5 {
|
|
5061
|
+
margin-top: 3rem !important;
|
|
5062
|
+
}
|
|
5063
|
+
|
|
5064
|
+
.bw-bw_mt-5 {
|
|
5065
|
+
margin-top: 3rem !important;
|
|
5066
|
+
}
|
|
5067
|
+
|
|
5068
|
+
.bw-mb-0 {
|
|
5069
|
+
margin-bottom: 0 !important;
|
|
5070
|
+
}
|
|
5071
|
+
|
|
5072
|
+
.bw-bw_mb-0 {
|
|
5073
|
+
margin-bottom: 0 !important;
|
|
5074
|
+
}
|
|
5075
|
+
|
|
5076
|
+
.bw-mb-1 {
|
|
5077
|
+
margin-bottom: .25rem !important;
|
|
5078
|
+
}
|
|
5079
|
+
|
|
5080
|
+
.bw-bw_mb-1 {
|
|
5081
|
+
margin-bottom: .25rem !important;
|
|
5082
|
+
}
|
|
5083
|
+
|
|
5084
|
+
.bw-mb-2 {
|
|
5085
|
+
margin-bottom: .5rem !important;
|
|
5086
|
+
}
|
|
5087
|
+
|
|
5088
|
+
.bw-bw_mb-2 {
|
|
5089
|
+
margin-bottom: .5rem !important;
|
|
5090
|
+
}
|
|
5091
|
+
|
|
5092
|
+
.bw-mb-3 {
|
|
5093
|
+
margin-bottom: 1rem !important;
|
|
5094
|
+
}
|
|
5095
|
+
|
|
5096
|
+
.bw-bw_mb-3 {
|
|
5097
|
+
margin-bottom: 1rem !important;
|
|
5098
|
+
}
|
|
5099
|
+
|
|
5100
|
+
.bw-mb-4 {
|
|
5101
|
+
margin-bottom: 1.5rem !important;
|
|
5102
|
+
}
|
|
5103
|
+
|
|
5104
|
+
.bw-bw_mb-4 {
|
|
5105
|
+
margin-bottom: 1.5rem !important;
|
|
5106
|
+
}
|
|
5107
|
+
|
|
5108
|
+
.bw-mb-5 {
|
|
5109
|
+
margin-bottom: 3rem !important;
|
|
5110
|
+
}
|
|
5111
|
+
|
|
5112
|
+
.bw-bw_mb-5 {
|
|
5113
|
+
margin-bottom: 3rem !important;
|
|
5114
|
+
}
|
|
5115
|
+
|
|
5116
|
+
.bw-ms-0 {
|
|
5117
|
+
margin-left: 0 !important;
|
|
5118
|
+
}
|
|
5119
|
+
|
|
5120
|
+
.bw-bw_ms-0 {
|
|
5121
|
+
margin-left: 0 !important;
|
|
5122
|
+
}
|
|
5123
|
+
|
|
5124
|
+
.bw-ms-1 {
|
|
5125
|
+
margin-left: .25rem !important;
|
|
5126
|
+
}
|
|
5127
|
+
|
|
5128
|
+
.bw-bw_ms-1 {
|
|
5129
|
+
margin-left: .25rem !important;
|
|
5130
|
+
}
|
|
3647
5131
|
|
|
3648
5132
|
.bw-ms-2 {
|
|
3649
5133
|
margin-left: .5rem !important;
|
|
@@ -4824,6 +6308,130 @@ a.bw_list-group-item:hover {
|
|
|
4824
6308
|
}
|
|
4825
6309
|
}
|
|
4826
6310
|
|
|
6311
|
+
.bw-card-subtitle {
|
|
6312
|
+
margin-top: -0.25rem;
|
|
6313
|
+
margin-bottom: 0.5rem;
|
|
6314
|
+
font-size: 0.875rem;
|
|
6315
|
+
}
|
|
6316
|
+
|
|
6317
|
+
.bw-bw_card-subtitle {
|
|
6318
|
+
margin-top: -0.25rem;
|
|
6319
|
+
margin-bottom: 0.5rem;
|
|
6320
|
+
font-size: 0.875rem;
|
|
6321
|
+
}
|
|
6322
|
+
|
|
6323
|
+
.bw-bar-chart-container {
|
|
6324
|
+
padding: 1rem;
|
|
6325
|
+
border: 1px solid transparent;
|
|
6326
|
+
border-radius: 8px;
|
|
6327
|
+
}
|
|
6328
|
+
|
|
6329
|
+
.bw-bw_bar-chart-container {
|
|
6330
|
+
padding: 1rem;
|
|
6331
|
+
border: 1px solid transparent;
|
|
6332
|
+
border-radius: 8px;
|
|
6333
|
+
}
|
|
6334
|
+
|
|
6335
|
+
.bw-bar-chart {
|
|
6336
|
+
display: flex;
|
|
6337
|
+
align-items: flex-end;
|
|
6338
|
+
gap: 6px;
|
|
6339
|
+
padding: 0 0.5rem;
|
|
6340
|
+
}
|
|
6341
|
+
|
|
6342
|
+
.bw-bw_bar-chart {
|
|
6343
|
+
display: flex;
|
|
6344
|
+
align-items: flex-end;
|
|
6345
|
+
gap: 6px;
|
|
6346
|
+
padding: 0 0.5rem;
|
|
6347
|
+
}
|
|
6348
|
+
|
|
6349
|
+
.bw-bar-group {
|
|
6350
|
+
flex: 1;
|
|
6351
|
+
display: flex;
|
|
6352
|
+
flex-direction: column;
|
|
6353
|
+
align-items: center;
|
|
6354
|
+
height: 100%;
|
|
6355
|
+
justify-content: flex-end;
|
|
6356
|
+
}
|
|
6357
|
+
|
|
6358
|
+
.bw-bw_bar-group {
|
|
6359
|
+
flex: 1;
|
|
6360
|
+
display: flex;
|
|
6361
|
+
flex-direction: column;
|
|
6362
|
+
align-items: center;
|
|
6363
|
+
height: 100%;
|
|
6364
|
+
justify-content: flex-end;
|
|
6365
|
+
}
|
|
6366
|
+
|
|
6367
|
+
.bw-bar {
|
|
6368
|
+
width: 100%;
|
|
6369
|
+
border-radius: 3px 3px 0 0;
|
|
6370
|
+
transition: height 0.5s ease;
|
|
6371
|
+
min-height: 4px;
|
|
6372
|
+
}
|
|
6373
|
+
|
|
6374
|
+
.bw-bw_bar {
|
|
6375
|
+
width: 100%;
|
|
6376
|
+
border-radius: 3px 3px 0 0;
|
|
6377
|
+
transition: height 0.5s ease;
|
|
6378
|
+
min-height: 4px;
|
|
6379
|
+
}
|
|
6380
|
+
|
|
6381
|
+
.bw-bar:hover {
|
|
6382
|
+
opacity: 0.85;
|
|
6383
|
+
}
|
|
6384
|
+
|
|
6385
|
+
.bw-bw_bar:hover {
|
|
6386
|
+
opacity: 0.85;
|
|
6387
|
+
}
|
|
6388
|
+
|
|
6389
|
+
.bw-bar-value {
|
|
6390
|
+
font-size: 0.65rem;
|
|
6391
|
+
font-weight: 600;
|
|
6392
|
+
margin-bottom: 2px;
|
|
6393
|
+
text-align: center;
|
|
6394
|
+
}
|
|
6395
|
+
|
|
6396
|
+
.bw-bw_bar-value {
|
|
6397
|
+
font-size: 0.65rem;
|
|
6398
|
+
font-weight: 600;
|
|
6399
|
+
margin-bottom: 2px;
|
|
6400
|
+
text-align: center;
|
|
6401
|
+
}
|
|
6402
|
+
|
|
6403
|
+
.bw-bar-label {
|
|
6404
|
+
font-size: 0.7rem;
|
|
6405
|
+
margin-top: 4px;
|
|
6406
|
+
text-align: center;
|
|
6407
|
+
}
|
|
6408
|
+
|
|
6409
|
+
.bw-bw_bar-label {
|
|
6410
|
+
font-size: 0.7rem;
|
|
6411
|
+
margin-top: 4px;
|
|
6412
|
+
text-align: center;
|
|
6413
|
+
}
|
|
6414
|
+
|
|
6415
|
+
.bw-bar-chart-title {
|
|
6416
|
+
font-size: 1.1rem;
|
|
6417
|
+
font-weight: 600;
|
|
6418
|
+
margin: 0 0 0.75rem 0;
|
|
6419
|
+
}
|
|
6420
|
+
|
|
6421
|
+
.bw-bw_bar-chart-title {
|
|
6422
|
+
font-size: 1.1rem;
|
|
6423
|
+
font-weight: 600;
|
|
6424
|
+
margin: 0 0 0.75rem 0;
|
|
6425
|
+
}
|
|
6426
|
+
|
|
6427
|
+
.bw-translate-middle, .translate-middle {
|
|
6428
|
+
transform: translate(-50%, -50%) !important;
|
|
6429
|
+
}
|
|
6430
|
+
|
|
6431
|
+
.bw-bw_translate-middle, .translate-middle {
|
|
6432
|
+
transform: translate(-50%, -50%) !important;
|
|
6433
|
+
}
|
|
6434
|
+
|
|
4827
6435
|
/* Bitwrench Page Layout */
|
|
4828
6436
|
.bw-page {
|
|
4829
6437
|
min-height: 100vh;
|