@unlk/keymaster 1.0.1 → 1.0.3

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.
Files changed (49) hide show
  1. package/CHANGELOG.md +42 -0
  2. package/README.md +136 -0
  3. package/dist/css/keymaster.css +647 -593
  4. package/dist/css/keymaster.css.map +1 -1
  5. package/dist/css/keymaster.min.css +5 -5
  6. package/dist/css/keymaster.min.css.map +1 -1
  7. package/dist/js/keymaster.js +180 -80
  8. package/dist/js/keymaster.js.map +1 -1
  9. package/dist/js/keymaster.min.js +65 -65
  10. package/dist/js/keymaster.min.js.map +1 -1
  11. package/images/unlock.svg +9 -0
  12. package/js/bootstrap.js +1 -0
  13. package/js/video-modal.js +123 -0
  14. package/package.json +5 -3
  15. package/scss/assets/bootstrap5/_accordion.scss +4 -9
  16. package/scss/assets/bootstrap5/_button-group.scss +8 -3
  17. package/scss/assets/bootstrap5/_card.scss +1 -2
  18. package/scss/assets/bootstrap5/_carousel.scss +15 -25
  19. package/scss/assets/bootstrap5/_close.scss +9 -6
  20. package/scss/assets/bootstrap5/_functions.scss +1 -1
  21. package/scss/assets/bootstrap5/_list-group.scss +27 -25
  22. package/scss/assets/bootstrap5/_modal.scss +6 -2
  23. package/scss/assets/bootstrap5/_nav.scss +1 -1
  24. package/scss/assets/bootstrap5/_navbar.scss +1 -1
  25. package/scss/assets/bootstrap5/_offcanvas.scss +5 -1
  26. package/scss/assets/bootstrap5/_pagination.scss +1 -1
  27. package/scss/assets/bootstrap5/_progress.scss +1 -1
  28. package/scss/assets/bootstrap5/_reboot.scss +1 -1
  29. package/scss/assets/bootstrap5/_type.scss +1 -1
  30. package/scss/assets/bootstrap5/_variables-dark.scss +17 -2
  31. package/scss/assets/bootstrap5/_variables.scss +16 -16
  32. package/scss/assets/bootstrap5/forms/_floating-labels.scss +18 -16
  33. package/scss/assets/bootstrap5/forms/_input-group.scss +1 -1
  34. package/scss/assets/bootstrap5/mixins/_banner.scss +2 -2
  35. package/scss/assets/bootstrap5/mixins/_grid.scss +1 -1
  36. package/scss/assets/bootstrap5/mixins/_visually-hidden.scss +1 -1
  37. package/scss/keymaster.scss +3 -0
  38. package/scss/theme/_accordion.scss +13 -3
  39. package/scss/theme/_alert.scss +2 -0
  40. package/scss/theme/_badge.scss +1 -1
  41. package/scss/theme/_buttons.scss +5 -5
  42. package/scss/theme/_carousel.scss +3 -6
  43. package/scss/theme/_close.scss +3 -0
  44. package/scss/theme/_modal.scss +35 -0
  45. package/scss/theme/_spinners.scss +9 -0
  46. package/scss/theme/_typography.scss +8 -13
  47. package/scss/theme/_utilities-overrides.scss +33 -33
  48. package/scss/theme/_variables-overrides.scss +15 -8
  49. package/scss/theme/_variables.scss +12 -0
@@ -1,66 +1,66 @@
1
1
  @charset "UTF-8";
2
2
  @font-face {
3
3
  font-family: "Wix MadeFor Display";
4
- src: url("../../fonts/WixMadeforDisplay-Regular.woff2") format("woff2"), url("../../fonts/WixMadeforDisplay-Regular.ttf") format("truetype");
5
4
  font-weight: 400;
5
+ src: url("../../fonts/WixMadeforDisplay-Regular.woff2") format("woff2"), url("../../fonts/WixMadeforDisplay-Regular.ttf") format("truetype");
6
6
  }
7
7
  @font-face {
8
8
  font-family: "Wix MadeFor Display";
9
- src: url("../../fonts/WixMadeforDisplay-Bold.woff2") format("woff2"), url("../../fonts/WixMadeforDisplay-Bold.ttf") format("truetype");
10
9
  font-weight: 700;
10
+ src: url("../../fonts/WixMadeforDisplay-Bold.woff2") format("woff2"), url("../../fonts/WixMadeforDisplay-Bold.ttf") format("truetype");
11
11
  }
12
12
  @font-face {
13
- font-family: "STIXTwoText";
14
- src: url("../../fonts/STIXTwoText-Italic.woff2") format("woff2"), url("../../fonts/STIXTwoText-Italic.ttf") format("truetype");
15
- font-weight: 400;
13
+ font-family: STIXTwoText;
16
14
  font-style: italic;
15
+ font-weight: 400;
16
+ src: url("../../fonts/STIXTwoText-Italic.woff2") format("woff2"), url("../../fonts/STIXTwoText-Italic.ttf") format("truetype");
17
17
  }
18
18
  @font-face {
19
19
  font-family: "Neulis Neue";
20
- src: url("../../fonts/NeulisNeue-Medium.woff2") format("woff2"), url("../../fonts/NeulisNeue-Medium.woff") format("woff");
21
20
  font-weight: 500;
21
+ src: url("../../fonts/NeulisNeue-Medium.woff2") format("woff2"), url("../../fonts/NeulisNeue-Medium.woff") format("woff");
22
22
  }
23
23
  @font-face {
24
24
  font-family: "Neulis Neue";
25
- src: url("../../fonts/NeulisNeue-MediumItalic.woff2") format("woff2"), url("../../fonts/NeulisNeue-MediumItalic.woff") format("woff");
26
- font-weight: 500;
27
25
  font-style: italic;
26
+ font-weight: 500;
27
+ src: url("../../fonts/NeulisNeue-MediumItalic.woff2") format("woff2"), url("../../fonts/NeulisNeue-MediumItalic.woff") format("woff");
28
28
  }
29
29
  /*!
30
- * Bootstrap v5.3.3 (https://getbootstrap.com/)
31
- * Copyright 2011-2024 The Bootstrap Authors
30
+ * Bootstrap v5.3.5 (https://getbootstrap.com/)
31
+ * Copyright 2011-2025 The Bootstrap Authors
32
32
  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
33
33
  */
34
34
  :root,
35
35
  [data-bs-theme=light] {
36
- --bs-foundation: #1D1F50;
37
- --bs-blueprint: #3E51A2;
38
- --bs-entryway: #3B7BBF;
39
- --bs-sunglow: #FBCD2F;
36
+ --bs-foundation: #1d1f50;
37
+ --bs-blueprint: #3e51a2;
38
+ --bs-entryway: #3b7bbf;
39
+ --bs-sunglow: #fbcd2f;
40
40
  --bs-green: #027a48;
41
- --bs-turnkey: #6346D3;
41
+ --bs-turnkey: #6346d3;
42
42
  --bs-red: #b42318;
43
- --bs-gray: #9a9ea3;
44
- --bs-gray-25: #fcfcfc;
45
- --bs-gray-50: #f9f9fa;
46
- --bs-gray-100: #f3f3f5;
47
- --bs-gray-200: #e6e8eb;
48
- --bs-gray-300: #dadce0;
49
- --bs-gray-400: #cdd1d6;
43
+ --bs-gray: rgb(154.4, 157.6, 163.2);
44
+ --bs-gray-25: rgb(251.9, 252.1, 252.45);
45
+ --bs-gray-50: rgb(248.8, 249.2, 249.9);
46
+ --bs-gray-100: rgb(242.6, 243.4, 244.8);
47
+ --bs-gray-200: rgb(230.2, 231.8, 234.6);
48
+ --bs-gray-300: rgb(217.8, 220.2, 224.4);
49
+ --bs-gray-400: rgb(205.4, 208.6, 214.2);
50
50
  --bs-gray-500: #c1c5cc;
51
- --bs-gray-600: #9a9ea3;
52
- --bs-gray-700: #74767a;
53
- --bs-gray-800: #4d4f52;
54
- --bs-gray-900: #272729;
55
- --bs-primary: #3E51A2;
56
- --bs-secondary: #3B7BBF;
57
- --bs-tertiary: #CDECF9;
51
+ --bs-gray-600: rgb(154.4, 157.6, 163.2);
52
+ --bs-gray-700: rgb(115.8, 118.2, 122.4);
53
+ --bs-gray-800: rgb(77.2, 78.8, 81.6);
54
+ --bs-gray-900: rgb(38.6, 39.4, 40.8);
55
+ --bs-primary: #3e51a2;
56
+ --bs-secondary: #3b7bbf;
57
+ --bs-tertiary: #cdecf9;
58
58
  --bs-success: #027a48;
59
- --bs-action: #6346D3;
60
- --bs-warning: #FBCD2F;
59
+ --bs-action: #6346d3;
60
+ --bs-warning: #fbcd2f;
61
61
  --bs-danger: #b42318;
62
62
  --bs-light: #fff;
63
- --bs-dark: #272729;
63
+ --bs-dark: rgb(38.6, 39.4, 40.8);
64
64
  --bs-primary-rgb: 62, 81, 162;
65
65
  --bs-secondary-rgb: 59, 123, 191;
66
66
  --bs-tertiary-rgb: 205, 236, 249;
@@ -70,34 +70,34 @@
70
70
  --bs-danger-rgb: 180, 35, 24;
71
71
  --bs-light-rgb: 255, 255, 255;
72
72
  --bs-dark-rgb: 39, 39, 41;
73
- --bs-primary-text-emphasis: #052c65;
74
- --bs-secondary-text-emphasis: #2b2f32;
75
- --bs-tertiary-text-emphasis: #525e64;
76
- --bs-action-text-emphasis: #281c54;
77
- --bs-success-text-emphasis: #0a3622;
78
- --bs-info-text-emphasis: #055160;
79
- --bs-warning-text-emphasis: #664d03;
80
- --bs-danger-text-emphasis: #58151c;
73
+ --bs-primary-text-emphasis: rgb(5.2, 44, 101.2);
74
+ --bs-secondary-text-emphasis: rgb(43.2, 46.8, 50);
75
+ --bs-tertiary-text-emphasis: rgb(82, 94.4, 99.6);
76
+ --bs-action-text-emphasis: rgb(39.6, 28, 84.4);
77
+ --bs-success-text-emphasis: rgb(10, 54, 33.6);
78
+ --bs-info-text-emphasis: rgb(5.2, 80.8, 96);
79
+ --bs-warning-text-emphasis: rgb(102, 77.2, 2.8);
80
+ --bs-danger-text-emphasis: rgb(88, 21.2, 27.6);
81
81
  --bs-light-text-emphasis: #495057;
82
82
  --bs-dark-text-emphasis: #495057;
83
- --bs-primary-bg-subtle: #cfe2ff;
84
- --bs-secondary-bg-subtle: #e2e3e5;
83
+ --bs-primary-bg-subtle: rgb(206.6, 226, 254.6);
84
+ --bs-secondary-bg-subtle: rgb(225.6, 227.4, 229);
85
85
  --bs-tertiary-bg-subtle: #cdecf9;
86
- --bs-action-bg-subtle: #e0daf6;
87
- --bs-success-bg-subtle: #d1e7dd;
88
- --bs-info-bg-subtle: #cff4fc;
89
- --bs-warning-bg-subtle: #fff3cd;
90
- --bs-danger-bg-subtle: #f8d7da;
91
- --bs-light-bg-subtle: #fcfcfd;
86
+ --bs-action-bg-subtle: rgb(223.8, 218, 246.2);
87
+ --bs-success-bg-subtle: rgb(209, 231, 220.8);
88
+ --bs-info-bg-subtle: rgb(206.6, 244.4, 252);
89
+ --bs-warning-bg-subtle: rgb(255, 242.6, 205.4);
90
+ --bs-danger-bg-subtle: rgb(248, 214.6, 217.8);
91
+ --bs-light-bg-subtle: rgb(251.5, 252, 252.5);
92
92
  --bs-dark-bg-subtle: #ced4da;
93
- --bs-primary-border-subtle: #9ec5fe;
94
- --bs-secondary-border-subtle: #c4c8cb;
95
- --bs-tertiary-border-subtle: #ebf7fd;
96
- --bs-action-border-subtle: #c1b5ed;
97
- --bs-success-border-subtle: #a3cfbb;
98
- --bs-info-border-subtle: #9eeaf9;
99
- --bs-warning-border-subtle: #ffe69c;
100
- --bs-danger-border-subtle: #f1aeb5;
93
+ --bs-primary-border-subtle: rgb(158.2, 197, 254.2);
94
+ --bs-secondary-border-subtle: rgb(196.2, 199.8, 203);
95
+ --bs-tertiary-border-subtle: rgb(235, 247.4, 252.6);
96
+ --bs-action-border-subtle: rgb(192.6, 181, 237.4);
97
+ --bs-success-border-subtle: rgb(163, 207, 186.6);
98
+ --bs-info-border-subtle: rgb(158.2, 233.8, 249);
99
+ --bs-warning-border-subtle: rgb(255, 230.2, 155.8);
100
+ --bs-danger-border-subtle: rgb(241, 174.2, 180.6);
101
101
  --bs-light-border-subtle: #e9ecef;
102
102
  --bs-dark-border-subtle: #adb5bd;
103
103
  --bs-white-rgb: 255, 255, 255;
@@ -109,7 +109,7 @@
109
109
  --bs-body-font-size: 1rem;
110
110
  --bs-body-font-weight: 400;
111
111
  --bs-body-line-height: 1.5;
112
- --bs-body-color: #1D1F50;
112
+ --bs-body-color: #1d1f50;
113
113
  --bs-body-color-rgb: 29, 31, 80;
114
114
  --bs-body-bg: #fff;
115
115
  --bs-body-bg-rgb: 255, 255, 255;
@@ -123,15 +123,15 @@
123
123
  --bs-tertiary-color-rgb: 33, 37, 41;
124
124
  --bs-tertiary-bg: #f8f9fa;
125
125
  --bs-tertiary-bg-rgb: 248, 249, 250;
126
- --bs-heading-color: #1D1F50;
126
+ --bs-heading-color: #1d1f50;
127
127
  --bs-link-color: #0d6efd;
128
128
  --bs-link-color-rgb: 13, 110, 253;
129
129
  --bs-link-decoration: underline;
130
- --bs-link-hover-color: #0a58ca;
130
+ --bs-link-hover-color: rgb(10.4, 88, 202.4);
131
131
  --bs-link-hover-color-rgb: 10, 88, 202;
132
132
  --bs-code-color: #d63384;
133
133
  --bs-highlight-color: #212529;
134
- --bs-highlight-bg: #fff3cd;
134
+ --bs-highlight-bg: rgb(255, 242.6, 205.4);
135
135
  --bs-border-width: 2px;
136
136
  --bs-border-style: solid;
137
137
  --bs-border-color: #dee2e6;
@@ -146,7 +146,7 @@
146
146
  --bs-box-shadow: 0 0.25rem 0.625rem rgba(29, 31, 80, 0.12);
147
147
  --bs-box-shadow-sm: 0 0.0625rem 0.25rem rgba(29, 31, 80, 0.1);
148
148
  --bs-box-shadow-lg: 0 0.5rem 2.1875rem rgba(29, 31, 80, 0.16);
149
- --bs-box-shadow-inset: inset 0 0.5rem 2.1875rem rgba(29, 31, 80, 0.16);
149
+ --bs-box-shadow-inset: 0 0.0625rem 0.125rem rgba(29, 31, 80, 0.1) inset;
150
150
  --bs-focus-ring-width: 0.25rem;
151
151
  --bs-focus-ring-opacity: 0.25;
152
152
  --bs-focus-ring-color: rgba(13, 110, 253, 0.25);
@@ -170,46 +170,46 @@
170
170
  --bs-secondary-bg-rgb: 52, 58, 64;
171
171
  --bs-tertiary-color: rgba(222, 226, 230, 0.5);
172
172
  --bs-tertiary-color-rgb: 222, 226, 230;
173
- --bs-tertiary-bg: #2b3035;
173
+ --bs-tertiary-bg: rgb(42.5, 47.5, 52.5);
174
174
  --bs-tertiary-bg-rgb: 43, 48, 53;
175
- --bs-primary-text-emphasis: #6ea8fe;
176
- --bs-secondary-text-emphasis: #a7acb1;
177
- --bs-success-text-emphasis: #75b798;
178
- --bs-info-text-emphasis: #6edff6;
179
- --bs-warning-text-emphasis: #ffda6a;
180
- --bs-danger-text-emphasis: #ea868f;
175
+ --bs-primary-text-emphasis: rgb(109.8, 168, 253.8);
176
+ --bs-secondary-text-emphasis: rgb(166.8, 172.2, 177);
177
+ --bs-success-text-emphasis: rgb(117, 183, 152.4);
178
+ --bs-info-text-emphasis: rgb(109.8, 223.2, 246);
179
+ --bs-warning-text-emphasis: rgb(255, 217.8, 106.2);
180
+ --bs-danger-text-emphasis: rgb(234, 133.8, 143.4);
181
181
  --bs-light-text-emphasis: #f8f9fa;
182
182
  --bs-dark-text-emphasis: #dee2e6;
183
- --bs-primary-bg-subtle: #031633;
184
- --bs-secondary-bg-subtle: #161719;
185
- --bs-success-bg-subtle: #051b11;
186
- --bs-info-bg-subtle: #032830;
187
- --bs-warning-bg-subtle: #332701;
188
- --bs-danger-bg-subtle: #2c0b0e;
183
+ --bs-primary-bg-subtle: rgb(2.6, 22, 50.6);
184
+ --bs-secondary-bg-subtle: rgb(21.6, 23.4, 25);
185
+ --bs-success-bg-subtle: rgb(5, 27, 16.8);
186
+ --bs-info-bg-subtle: rgb(2.6, 40.4, 48);
187
+ --bs-warning-bg-subtle: rgb(51, 38.6, 1.4);
188
+ --bs-danger-bg-subtle: rgb(44, 10.6, 13.8);
189
189
  --bs-light-bg-subtle: #343a40;
190
190
  --bs-dark-bg-subtle: #1a1d20;
191
- --bs-primary-border-subtle: #084298;
192
- --bs-secondary-border-subtle: #41464b;
193
- --bs-success-border-subtle: #0f5132;
194
- --bs-info-border-subtle: #087990;
195
- --bs-warning-border-subtle: #997404;
196
- --bs-danger-border-subtle: #842029;
191
+ --bs-primary-border-subtle: rgb(7.8, 66, 151.8);
192
+ --bs-secondary-border-subtle: rgb(64.8, 70.2, 75);
193
+ --bs-success-border-subtle: rgb(15, 81, 50.4);
194
+ --bs-info-border-subtle: rgb(7.8, 121.2, 144);
195
+ --bs-warning-border-subtle: rgb(153, 115.8, 4.2);
196
+ --bs-danger-border-subtle: rgb(132, 31.8, 41.4);
197
197
  --bs-light-border-subtle: #495057;
198
198
  --bs-dark-border-subtle: #343a40;
199
199
  --bs-heading-color: inherit;
200
- --bs-link-color: #6ea8fe;
201
- --bs-link-hover-color: #8bb9fe;
200
+ --bs-link-color: rgb(109.8, 168, 253.8);
201
+ --bs-link-hover-color: rgb(138.84, 185.4, 254.04);
202
202
  --bs-link-color-rgb: 110, 168, 254;
203
203
  --bs-link-hover-color-rgb: 139, 185, 254;
204
- --bs-code-color: #e685b5;
204
+ --bs-code-color: rgb(230.4, 132.6, 181.2);
205
205
  --bs-highlight-color: #dee2e6;
206
- --bs-highlight-bg: #664d03;
206
+ --bs-highlight-bg: rgb(102, 77.2, 2.8);
207
207
  --bs-border-color: #495057;
208
208
  --bs-border-color-translucent: rgba(255, 255, 255, 0.15);
209
- --bs-form-valid-color: #75b798;
210
- --bs-form-valid-border-color: #75b798;
211
- --bs-form-invalid-color: #ea868f;
212
- --bs-form-invalid-border-color: #ea868f;
209
+ --bs-form-valid-color: rgb(117, 183, 152.4);
210
+ --bs-form-valid-border-color: rgb(117, 183, 152.4);
211
+ --bs-form-invalid-color: rgb(234, 133.8, 143.4);
212
+ --bs-form-invalid-border-color: rgb(234, 133.8, 143.4);
213
213
  }
214
214
 
215
215
  *,
@@ -549,8 +549,8 @@ legend {
549
549
  width: 100%;
550
550
  padding: 0;
551
551
  margin-bottom: 0.5rem;
552
- font-size: calc(1.275rem + 0.3vw);
553
552
  line-height: inherit;
553
+ font-size: calc(1.275rem + 0.3vw);
554
554
  }
555
555
  @media (min-width: 1200px) {
556
556
  legend {
@@ -628,10 +628,10 @@ progress {
628
628
  }
629
629
 
630
630
  .display-1 {
631
- font-size: calc(1.625rem + 4.5vw);
632
631
  font-family: "Neulis Neue";
633
632
  font-weight: 500;
634
- line-height: 1.2;
633
+ line-height: 1.1;
634
+ font-size: calc(1.625rem + 4.5vw);
635
635
  }
636
636
  @media (min-width: 1200px) {
637
637
  .display-1 {
@@ -640,10 +640,10 @@ progress {
640
640
  }
641
641
 
642
642
  .display-2 {
643
- font-size: calc(1.575rem + 3.9vw);
644
643
  font-family: "Neulis Neue";
645
644
  font-weight: 500;
646
- line-height: 1.2;
645
+ line-height: 1.1;
646
+ font-size: calc(1.575rem + 3.9vw);
647
647
  }
648
648
  @media (min-width: 1200px) {
649
649
  .display-2 {
@@ -652,10 +652,10 @@ progress {
652
652
  }
653
653
 
654
654
  .display-3 {
655
- font-size: calc(1.525rem + 3.3vw);
656
655
  font-family: "Neulis Neue";
657
656
  font-weight: 500;
658
- line-height: 1.2;
657
+ line-height: 1.1;
658
+ font-size: calc(1.525rem + 3.3vw);
659
659
  }
660
660
  @media (min-width: 1200px) {
661
661
  .display-3 {
@@ -664,10 +664,10 @@ progress {
664
664
  }
665
665
 
666
666
  .display-4 {
667
- font-size: calc(1.475rem + 2.7vw);
668
667
  font-family: "Neulis Neue";
669
668
  font-weight: 500;
670
- line-height: 1.2;
669
+ line-height: 1.1;
670
+ font-size: calc(1.475rem + 2.7vw);
671
671
  }
672
672
  @media (min-width: 1200px) {
673
673
  .display-4 {
@@ -676,10 +676,10 @@ progress {
676
676
  }
677
677
 
678
678
  .display-5 {
679
- font-size: calc(1.425rem + 2.1vw);
680
679
  font-family: "Neulis Neue";
681
680
  font-weight: 500;
682
- line-height: 1.2;
681
+ line-height: 1.1;
682
+ font-size: calc(1.425rem + 2.1vw);
683
683
  }
684
684
  @media (min-width: 1200px) {
685
685
  .display-5 {
@@ -688,10 +688,10 @@ progress {
688
688
  }
689
689
 
690
690
  .display-6 {
691
- font-size: calc(1.375rem + 1.5vw);
692
691
  font-family: "Neulis Neue";
693
692
  font-weight: 500;
694
- line-height: 1.2;
693
+ line-height: 1.1;
694
+ font-size: calc(1.375rem + 1.5vw);
695
695
  }
696
696
  @media (min-width: 1200px) {
697
697
  .display-6 {
@@ -854,7 +854,7 @@ progress {
854
854
  }
855
855
 
856
856
  .col {
857
- flex: 1 0 0%;
857
+ flex: 1 0 0;
858
858
  }
859
859
 
860
860
  .row-cols-auto > * {
@@ -1063,7 +1063,7 @@ progress {
1063
1063
 
1064
1064
  @media (min-width: 576px) {
1065
1065
  .col-sm {
1066
- flex: 1 0 0%;
1066
+ flex: 1 0 0;
1067
1067
  }
1068
1068
  .row-cols-sm-auto > * {
1069
1069
  flex: 0 0 auto;
@@ -1232,7 +1232,7 @@ progress {
1232
1232
  }
1233
1233
  @media (min-width: 768px) {
1234
1234
  .col-md {
1235
- flex: 1 0 0%;
1235
+ flex: 1 0 0;
1236
1236
  }
1237
1237
  .row-cols-md-auto > * {
1238
1238
  flex: 0 0 auto;
@@ -1401,7 +1401,7 @@ progress {
1401
1401
  }
1402
1402
  @media (min-width: 992px) {
1403
1403
  .col-lg {
1404
- flex: 1 0 0%;
1404
+ flex: 1 0 0;
1405
1405
  }
1406
1406
  .row-cols-lg-auto > * {
1407
1407
  flex: 0 0 auto;
@@ -1570,7 +1570,7 @@ progress {
1570
1570
  }
1571
1571
  @media (min-width: 1200px) {
1572
1572
  .col-xl {
1573
- flex: 1 0 0%;
1573
+ flex: 1 0 0;
1574
1574
  }
1575
1575
  .row-cols-xl-auto > * {
1576
1576
  flex: 0 0 auto;
@@ -1739,7 +1739,7 @@ progress {
1739
1739
  }
1740
1740
  @media (min-width: 1400px) {
1741
1741
  .col-xxl {
1742
- flex: 1 0 0%;
1742
+ flex: 1 0 0;
1743
1743
  }
1744
1744
  .row-cols-xxl-auto > * {
1745
1745
  flex: 0 0 auto;
@@ -1908,7 +1908,7 @@ progress {
1908
1908
  }
1909
1909
  @media (min-width: 1600px) {
1910
1910
  .col-xxxl {
1911
- flex: 1 0 0%;
1911
+ flex: 1 0 0;
1912
1912
  }
1913
1913
  .row-cols-xxxl-auto > * {
1914
1914
  flex: 0 0 auto;
@@ -2157,13 +2157,13 @@ progress {
2157
2157
 
2158
2158
  .table-primary {
2159
2159
  --bs-table-color: #000;
2160
- --bs-table-bg: #d8dcec;
2161
- --bs-table-border-color: #adb0bd;
2162
- --bs-table-striped-bg: #cdd1e0;
2160
+ --bs-table-bg: rgb(216.4, 220.2, 236.4);
2161
+ --bs-table-border-color: rgb(173.12, 176.16, 189.12);
2162
+ --bs-table-striped-bg: rgb(205.58, 209.19, 224.58);
2163
2163
  --bs-table-striped-color: #000;
2164
- --bs-table-active-bg: #c2c6d4;
2164
+ --bs-table-active-bg: rgb(194.76, 198.18, 212.76);
2165
2165
  --bs-table-active-color: #000;
2166
- --bs-table-hover-bg: #c8ccda;
2166
+ --bs-table-hover-bg: rgb(200.17, 203.685, 218.67);
2167
2167
  --bs-table-hover-color: #000;
2168
2168
  color: var(--bs-table-color);
2169
2169
  border-color: var(--bs-table-border-color);
@@ -2171,13 +2171,13 @@ progress {
2171
2171
 
2172
2172
  .table-secondary {
2173
2173
  --bs-table-color: #000;
2174
- --bs-table-bg: #d8e5f2;
2175
- --bs-table-border-color: #adb7c2;
2176
- --bs-table-striped-bg: #cddae6;
2174
+ --bs-table-bg: rgb(215.8, 228.6, 242.2);
2175
+ --bs-table-border-color: rgb(172.64, 182.88, 193.76);
2176
+ --bs-table-striped-bg: rgb(205.01, 217.17, 230.09);
2177
2177
  --bs-table-striped-color: #000;
2178
- --bs-table-active-bg: #c2ceda;
2178
+ --bs-table-active-bg: rgb(194.22, 205.74, 217.98);
2179
2179
  --bs-table-active-color: #000;
2180
- --bs-table-hover-bg: #c8d4e0;
2180
+ --bs-table-hover-bg: rgb(199.615, 211.455, 224.035);
2181
2181
  --bs-table-hover-color: #000;
2182
2182
  color: var(--bs-table-color);
2183
2183
  border-color: var(--bs-table-border-color);
@@ -2185,13 +2185,13 @@ progress {
2185
2185
 
2186
2186
  .table-tertiary {
2187
2187
  --bs-table-color: #000;
2188
- --bs-table-bg: #f5fbfe;
2189
- --bs-table-border-color: #c4c9cb;
2190
- --bs-table-striped-bg: #e9eef1;
2188
+ --bs-table-bg: rgb(245, 251.2, 253.8);
2189
+ --bs-table-border-color: rgb(196, 200.96, 203.04);
2190
+ --bs-table-striped-bg: rgb(232.75, 238.64, 241.11);
2191
2191
  --bs-table-striped-color: #000;
2192
- --bs-table-active-bg: #dde2e5;
2192
+ --bs-table-active-bg: rgb(220.5, 226.08, 228.42);
2193
2193
  --bs-table-active-color: #000;
2194
- --bs-table-hover-bg: #e3e8eb;
2194
+ --bs-table-hover-bg: rgb(226.625, 232.36, 234.765);
2195
2195
  --bs-table-hover-color: #000;
2196
2196
  color: var(--bs-table-color);
2197
2197
  border-color: var(--bs-table-border-color);
@@ -2199,13 +2199,13 @@ progress {
2199
2199
 
2200
2200
  .table-action {
2201
2201
  --bs-table-color: #000;
2202
- --bs-table-bg: #e0daf6;
2203
- --bs-table-border-color: #b3aec5;
2204
- --bs-table-striped-bg: #d5cfea;
2202
+ --bs-table-bg: rgb(223.8, 218, 246.2);
2203
+ --bs-table-border-color: rgb(179.04, 174.4, 196.96);
2204
+ --bs-table-striped-bg: rgb(212.61, 207.1, 233.89);
2205
2205
  --bs-table-striped-color: #000;
2206
- --bs-table-active-bg: #cac4dd;
2206
+ --bs-table-active-bg: rgb(201.42, 196.2, 221.58);
2207
2207
  --bs-table-active-color: #000;
2208
- --bs-table-hover-bg: #cfcae4;
2208
+ --bs-table-hover-bg: rgb(207.015, 201.65, 227.735);
2209
2209
  --bs-table-hover-color: #000;
2210
2210
  color: var(--bs-table-color);
2211
2211
  border-color: var(--bs-table-border-color);
@@ -2213,13 +2213,13 @@ progress {
2213
2213
 
2214
2214
  .table-success {
2215
2215
  --bs-table-color: #000;
2216
- --bs-table-bg: #cce4da;
2217
- --bs-table-border-color: #a3b6ae;
2218
- --bs-table-striped-bg: #c2d9cf;
2216
+ --bs-table-bg: rgb(204.4, 228.4, 218.4);
2217
+ --bs-table-border-color: rgb(163.52, 182.72, 174.72);
2218
+ --bs-table-striped-bg: rgb(194.18, 216.98, 207.48);
2219
2219
  --bs-table-striped-color: #000;
2220
- --bs-table-active-bg: #b8cdc4;
2220
+ --bs-table-active-bg: rgb(183.96, 205.56, 196.56);
2221
2221
  --bs-table-active-color: #000;
2222
- --bs-table-hover-bg: #bdd3ca;
2222
+ --bs-table-hover-bg: rgb(189.07, 211.27, 202.02);
2223
2223
  --bs-table-hover-color: #000;
2224
2224
  color: var(--bs-table-color);
2225
2225
  border-color: var(--bs-table-border-color);
@@ -2227,13 +2227,13 @@ progress {
2227
2227
 
2228
2228
  .table-warning {
2229
2229
  --bs-table-color: #000;
2230
- --bs-table-bg: #fef5d5;
2231
- --bs-table-border-color: #cbc4aa;
2232
- --bs-table-striped-bg: #f1e9ca;
2230
+ --bs-table-bg: rgb(254.2, 245, 213.4);
2231
+ --bs-table-border-color: rgb(203.36, 196, 170.72);
2232
+ --bs-table-striped-bg: rgb(241.49, 232.75, 202.73);
2233
2233
  --bs-table-striped-color: #000;
2234
- --bs-table-active-bg: #e5ddc0;
2234
+ --bs-table-active-bg: rgb(228.78, 220.5, 192.06);
2235
2235
  --bs-table-active-color: #000;
2236
- --bs-table-hover-bg: #ebe3c5;
2236
+ --bs-table-hover-bg: rgb(235.135, 226.625, 197.395);
2237
2237
  --bs-table-hover-color: #000;
2238
2238
  color: var(--bs-table-color);
2239
2239
  border-color: var(--bs-table-border-color);
@@ -2241,13 +2241,13 @@ progress {
2241
2241
 
2242
2242
  .table-danger {
2243
2243
  --bs-table-color: #000;
2244
- --bs-table-bg: #f0d3d1;
2245
- --bs-table-border-color: #c0a9a7;
2246
- --bs-table-striped-bg: #e4c8c7;
2244
+ --bs-table-bg: rgb(240, 211, 208.8);
2245
+ --bs-table-border-color: rgb(192, 168.8, 167.04);
2246
+ --bs-table-striped-bg: rgb(228, 200.45, 198.36);
2247
2247
  --bs-table-striped-color: #000;
2248
- --bs-table-active-bg: #d8bebc;
2248
+ --bs-table-active-bg: rgb(216, 189.9, 187.92);
2249
2249
  --bs-table-active-color: #000;
2250
- --bs-table-hover-bg: #dec3c1;
2250
+ --bs-table-hover-bg: rgb(222, 195.175, 193.14);
2251
2251
  --bs-table-hover-color: #000;
2252
2252
  color: var(--bs-table-color);
2253
2253
  border-color: var(--bs-table-border-color);
@@ -2257,11 +2257,11 @@ progress {
2257
2257
  --bs-table-color: #000;
2258
2258
  --bs-table-bg: #fff;
2259
2259
  --bs-table-border-color: #cccccc;
2260
- --bs-table-striped-bg: #f2f2f2;
2260
+ --bs-table-striped-bg: rgb(242.25, 242.25, 242.25);
2261
2261
  --bs-table-striped-color: #000;
2262
- --bs-table-active-bg: #e6e6e6;
2262
+ --bs-table-active-bg: rgb(229.5, 229.5, 229.5);
2263
2263
  --bs-table-active-color: #000;
2264
- --bs-table-hover-bg: #ececec;
2264
+ --bs-table-hover-bg: rgb(235.875, 235.875, 235.875);
2265
2265
  --bs-table-hover-color: #000;
2266
2266
  color: var(--bs-table-color);
2267
2267
  border-color: var(--bs-table-border-color);
@@ -2269,13 +2269,13 @@ progress {
2269
2269
 
2270
2270
  .table-dark {
2271
2271
  --bs-table-color: #fff;
2272
- --bs-table-bg: #272729;
2273
- --bs-table-border-color: #525254;
2274
- --bs-table-striped-bg: #323234;
2272
+ --bs-table-bg: rgb(38.6, 39.4, 40.8);
2273
+ --bs-table-border-color: rgb(81.88, 82.52, 83.64);
2274
+ --bs-table-striped-bg: rgb(49.42, 50.18, 51.51);
2275
2275
  --bs-table-striped-color: #fff;
2276
- --bs-table-active-bg: #3d3d3e;
2276
+ --bs-table-active-bg: rgb(60.24, 60.96, 62.22);
2277
2277
  --bs-table-active-color: #fff;
2278
- --bs-table-hover-bg: #373739;
2278
+ --bs-table-hover-bg: rgb(54.83, 55.57, 56.865);
2279
2279
  --bs-table-hover-color: #fff;
2280
2280
  color: var(--bs-table-color);
2281
2281
  border-color: var(--bs-table-border-color);
@@ -2384,7 +2384,7 @@ progress {
2384
2384
  .form-control:focus {
2385
2385
  color: var(--bs-body-color);
2386
2386
  background-color: var(--bs-body-bg);
2387
- border-color: #86b7fe;
2387
+ border-color: rgb(134, 182.5, 254);
2388
2388
  outline: 0;
2389
2389
  box-shadow: var(--bs-box-shadow-inset), 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
2390
2390
  }
@@ -2536,7 +2536,7 @@ textarea.form-control-lg {
2536
2536
  }
2537
2537
  }
2538
2538
  .form-select:focus {
2539
- border-color: #86b7fe;
2539
+ border-color: rgb(134, 182.5, 254);
2540
2540
  outline: 0;
2541
2541
  box-shadow: var(--bs-box-shadow-inset), 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
2542
2542
  }
@@ -2623,7 +2623,7 @@ textarea.form-control-lg {
2623
2623
  filter: brightness(90%);
2624
2624
  }
2625
2625
  .form-check-input:focus {
2626
- border-color: #86b7fe;
2626
+ border-color: rgb(134, 182.5, 254);
2627
2627
  outline: 0;
2628
2628
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
2629
2629
  }
@@ -2670,7 +2670,7 @@ textarea.form-control-lg {
2670
2670
  }
2671
2671
  }
2672
2672
  .form-switch .form-check-input:focus {
2673
- --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e");
2673
+ --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgb%28134, 182.5, 254%29'/%3e%3c/svg%3e");
2674
2674
  }
2675
2675
  .form-switch .form-check-input:checked {
2676
2676
  background-position: right center;
@@ -2746,7 +2746,7 @@ textarea.form-control-lg {
2746
2746
  }
2747
2747
  }
2748
2748
  .form-range::-webkit-slider-thumb:active {
2749
- background-color: #b6d4fe;
2749
+ background-color: rgb(182.4, 211.5, 254.4);
2750
2750
  }
2751
2751
  .form-range::-webkit-slider-runnable-track {
2752
2752
  width: 100%;
@@ -2777,7 +2777,7 @@ textarea.form-control-lg {
2777
2777
  }
2778
2778
  }
2779
2779
  .form-range::-moz-range-thumb:active {
2780
- background-color: #b6d4fe;
2780
+ background-color: rgb(182.4, 211.5, 254.4);
2781
2781
  }
2782
2782
  .form-range::-moz-range-track {
2783
2783
  width: 100%;
@@ -2814,9 +2814,11 @@ textarea.form-control-lg {
2814
2814
  top: 0;
2815
2815
  left: 0;
2816
2816
  z-index: 2;
2817
+ max-width: 100%;
2817
2818
  height: 100%;
2818
2819
  padding: 1rem 0.75rem;
2819
2820
  overflow: hidden;
2821
+ color: rgba(var(--bs-body-color-rgb), 0.65);
2820
2822
  text-align: start;
2821
2823
  text-overflow: ellipsis;
2822
2824
  white-space: nowrap;
@@ -2841,7 +2843,7 @@ textarea.form-control-lg {
2841
2843
  .form-floating > .form-control-plaintext::placeholder {
2842
2844
  color: transparent;
2843
2845
  }
2844
- .form-floating > .form-control:not(:-moz-placeholder-shown), .form-floating > .form-control-plaintext:not(:-moz-placeholder-shown) {
2846
+ .form-floating > .form-control:not(:-moz-placeholder), .form-floating > .form-control-plaintext:not(:-moz-placeholder) {
2845
2847
  padding-top: 1.625rem;
2846
2848
  padding-bottom: 0.625rem;
2847
2849
  }
@@ -2859,19 +2861,21 @@ textarea.form-control-lg {
2859
2861
  .form-floating > .form-select {
2860
2862
  padding-top: 1.625rem;
2861
2863
  padding-bottom: 0.625rem;
2864
+ padding-left: 0.75rem;
2862
2865
  }
2863
- .form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
2864
- color: rgba(var(--bs-body-color-rgb), 0.65);
2866
+ .form-floating > .form-control:not(:-moz-placeholder) ~ label {
2865
2867
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
2866
2868
  }
2867
2869
  .form-floating > .form-control:focus ~ label,
2868
2870
  .form-floating > .form-control:not(:placeholder-shown) ~ label,
2869
2871
  .form-floating > .form-control-plaintext ~ label,
2870
2872
  .form-floating > .form-select ~ label {
2871
- color: rgba(var(--bs-body-color-rgb), 0.65);
2872
2873
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
2873
2874
  }
2874
- .form-floating > .form-control:not(:-moz-placeholder-shown) ~ label::after {
2875
+ .form-floating > .form-control:-webkit-autofill ~ label {
2876
+ transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
2877
+ }
2878
+ .form-floating > textarea:not(:-moz-placeholder) ~ label::after {
2875
2879
  position: absolute;
2876
2880
  inset: 1rem 0.375rem;
2877
2881
  z-index: -1;
@@ -2880,10 +2884,8 @@ textarea.form-control-lg {
2880
2884
  background-color: var(--bs-body-bg);
2881
2885
  border-radius: var(--bs-border-radius);
2882
2886
  }
2883
- .form-floating > .form-control:focus ~ label::after,
2884
- .form-floating > .form-control:not(:placeholder-shown) ~ label::after,
2885
- .form-floating > .form-control-plaintext ~ label::after,
2886
- .form-floating > .form-select ~ label::after {
2887
+ .form-floating > textarea:focus ~ label::after,
2888
+ .form-floating > textarea:not(:placeholder-shown) ~ label::after {
2887
2889
  position: absolute;
2888
2890
  inset: 1rem 0.375rem;
2889
2891
  z-index: -1;
@@ -2892,9 +2894,8 @@ textarea.form-control-lg {
2892
2894
  background-color: var(--bs-body-bg);
2893
2895
  border-radius: var(--bs-border-radius);
2894
2896
  }
2895
- .form-floating > .form-control:-webkit-autofill ~ label {
2896
- color: rgba(var(--bs-body-color-rgb), 0.65);
2897
- transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
2897
+ .form-floating > textarea:disabled ~ label::after {
2898
+ background-color: var(--bs-secondary-bg);
2898
2899
  }
2899
2900
  .form-floating > .form-control-plaintext ~ label {
2900
2901
  border-width: var(--bs-border-width) 0;
@@ -2903,10 +2904,6 @@ textarea.form-control-lg {
2903
2904
  .form-floating > .form-control:disabled ~ label {
2904
2905
  color: #6c757d;
2905
2906
  }
2906
- .form-floating > :disabled ~ label::after,
2907
- .form-floating > .form-control:disabled ~ label::after {
2908
- background-color: var(--bs-secondary-bg);
2909
- }
2910
2907
 
2911
2908
  .input-group {
2912
2909
  position: relative;
@@ -2989,7 +2986,7 @@ textarea.form-control-lg {
2989
2986
  border-bottom-right-radius: 0;
2990
2987
  }
2991
2988
  .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
2992
- margin-left: calc(var(--bs-border-width) * -1);
2989
+ margin-left: calc(-1 * var(--bs-border-width));
2993
2990
  border-top-left-radius: 0;
2994
2991
  border-bottom-left-radius: 0;
2995
2992
  }
@@ -3225,53 +3222,53 @@ textarea.form-control-lg {
3225
3222
 
3226
3223
  .btn-primary {
3227
3224
  --bs-btn-color: #fff;
3228
- --bs-btn-bg: #3E51A2;
3229
- --bs-btn-border-color: #3E51A2;
3225
+ --bs-btn-bg: #3e51a2;
3226
+ --bs-btn-border-color: #3e51a2;
3230
3227
  --bs-btn-hover-color: #fff;
3231
- --bs-btn-hover-bg: #324182;
3232
- --bs-btn-hover-border-color: #324182;
3228
+ --bs-btn-hover-bg: rgb(49.6, 64.8, 129.6);
3229
+ --bs-btn-hover-border-color: rgb(49.6, 64.8, 129.6);
3233
3230
  --bs-btn-focus-shadow-rgb: 91, 107, 176;
3234
3231
  --bs-btn-active-color: #fff;
3235
- --bs-btn-active-bg: #253161;
3236
- --bs-btn-active-border-color: #253161;
3232
+ --bs-btn-active-bg: rgb(37.2, 48.6, 97.2);
3233
+ --bs-btn-active-border-color: rgb(37.2, 48.6, 97.2);
3237
3234
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3238
3235
  --bs-btn-disabled-color: #fff;
3239
- --bs-btn-disabled-bg: #3E51A2;
3240
- --bs-btn-disabled-border-color: #3E51A2;
3236
+ --bs-btn-disabled-bg: #3e51a2;
3237
+ --bs-btn-disabled-border-color: #3e51a2;
3241
3238
  }
3242
3239
 
3243
3240
  .btn-secondary {
3244
3241
  --bs-btn-color: #000;
3245
- --bs-btn-bg: #3B7BBF;
3246
- --bs-btn-border-color: #3B7BBF;
3242
+ --bs-btn-bg: #3b7bbf;
3243
+ --bs-btn-border-color: #3b7bbf;
3247
3244
  --bs-btn-hover-color: #000;
3248
- --bs-btn-hover-bg: #4f88c5;
3249
- --bs-btn-hover-border-color: #4f88c5;
3245
+ --bs-btn-hover-bg: rgb(78.6, 136.2, 197.4);
3246
+ --bs-btn-hover-border-color: rgb(78.6, 136.2, 197.4);
3250
3247
  --bs-btn-focus-shadow-rgb: 50, 105, 162;
3251
3248
  --bs-btn-active-color: #000;
3252
- --bs-btn-active-bg: #6295cc;
3253
- --bs-btn-active-border-color: #4f88c5;
3249
+ --bs-btn-active-bg: rgb(98.2, 149.4, 203.8);
3250
+ --bs-btn-active-border-color: rgb(78.6, 136.2, 197.4);
3254
3251
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3255
3252
  --bs-btn-disabled-color: #000;
3256
- --bs-btn-disabled-bg: #3B7BBF;
3257
- --bs-btn-disabled-border-color: #3B7BBF;
3253
+ --bs-btn-disabled-bg: #3b7bbf;
3254
+ --bs-btn-disabled-border-color: #3b7bbf;
3258
3255
  }
3259
3256
 
3260
3257
  .btn-tertiary {
3261
3258
  --bs-btn-color: #000;
3262
- --bs-btn-bg: #CDECF9;
3263
- --bs-btn-border-color: #CDECF9;
3259
+ --bs-btn-bg: #cdecf9;
3260
+ --bs-btn-border-color: #cdecf9;
3264
3261
  --bs-btn-hover-color: #000;
3265
- --bs-btn-hover-bg: #d2eefa;
3266
- --bs-btn-hover-border-color: #d2eefa;
3262
+ --bs-btn-hover-bg: rgb(210, 237.9, 249.6);
3263
+ --bs-btn-hover-border-color: rgb(210, 237.9, 249.6);
3267
3264
  --bs-btn-focus-shadow-rgb: 174, 201, 212;
3268
3265
  --bs-btn-active-color: #000;
3269
- --bs-btn-active-bg: #d7f0fa;
3270
- --bs-btn-active-border-color: #d2eefa;
3266
+ --bs-btn-active-bg: rgb(215, 239.8, 250.2);
3267
+ --bs-btn-active-border-color: rgb(210, 237.9, 249.6);
3271
3268
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3272
3269
  --bs-btn-disabled-color: #000;
3273
- --bs-btn-disabled-bg: #CDECF9;
3274
- --bs-btn-disabled-border-color: #CDECF9;
3270
+ --bs-btn-disabled-bg: #cdecf9;
3271
+ --bs-btn-disabled-border-color: #cdecf9;
3275
3272
  }
3276
3273
 
3277
3274
  .btn-success {
@@ -3279,12 +3276,12 @@ textarea.form-control-lg {
3279
3276
  --bs-btn-bg: #027a48;
3280
3277
  --bs-btn-border-color: #027a48;
3281
3278
  --bs-btn-hover-color: #fff;
3282
- --bs-btn-hover-bg: #02623a;
3283
- --bs-btn-hover-border-color: #02623a;
3279
+ --bs-btn-hover-bg: rgb(1.6, 97.6, 57.6);
3280
+ --bs-btn-hover-border-color: rgb(1.6, 97.6, 57.6);
3284
3281
  --bs-btn-focus-shadow-rgb: 40, 142, 99;
3285
3282
  --bs-btn-active-color: #fff;
3286
- --bs-btn-active-bg: #01492b;
3287
- --bs-btn-active-border-color: #01492b;
3283
+ --bs-btn-active-bg: rgb(1.2, 73.2, 43.2);
3284
+ --bs-btn-active-border-color: rgb(1.2, 73.2, 43.2);
3288
3285
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3289
3286
  --bs-btn-disabled-color: #fff;
3290
3287
  --bs-btn-disabled-bg: #027a48;
@@ -3293,36 +3290,36 @@ textarea.form-control-lg {
3293
3290
 
3294
3291
  .btn-action {
3295
3292
  --bs-btn-color: #fff;
3296
- --bs-btn-bg: #6346D3;
3297
- --bs-btn-border-color: #6346D3;
3293
+ --bs-btn-bg: #6346d3;
3294
+ --bs-btn-border-color: #6346d3;
3298
3295
  --bs-btn-hover-color: #fff;
3299
- --bs-btn-hover-bg: #4f38a9;
3300
- --bs-btn-hover-border-color: #4f38a9;
3296
+ --bs-btn-hover-bg: rgb(79.2, 56, 168.8);
3297
+ --bs-btn-hover-border-color: rgb(79.2, 56, 168.8);
3301
3298
  --bs-btn-focus-shadow-rgb: 122, 98, 218;
3302
3299
  --bs-btn-active-color: #fff;
3303
- --bs-btn-active-bg: #3b2a7f;
3304
- --bs-btn-active-border-color: #3b2a7f;
3300
+ --bs-btn-active-bg: rgb(59.4, 42, 126.6);
3301
+ --bs-btn-active-border-color: rgb(59.4, 42, 126.6);
3305
3302
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3306
3303
  --bs-btn-disabled-color: #fff;
3307
- --bs-btn-disabled-bg: #6346D3;
3308
- --bs-btn-disabled-border-color: #6346D3;
3304
+ --bs-btn-disabled-bg: #6346d3;
3305
+ --bs-btn-disabled-border-color: #6346d3;
3309
3306
  }
3310
3307
 
3311
3308
  .btn-warning {
3312
3309
  --bs-btn-color: #000;
3313
- --bs-btn-bg: #FBCD2F;
3314
- --bs-btn-border-color: #FBCD2F;
3310
+ --bs-btn-bg: #fbcd2f;
3311
+ --bs-btn-border-color: #fbcd2f;
3315
3312
  --bs-btn-hover-color: #000;
3316
- --bs-btn-hover-bg: #fbd244;
3317
- --bs-btn-hover-border-color: #fbd244;
3313
+ --bs-btn-hover-bg: rgb(251.4, 210, 67.8);
3314
+ --bs-btn-hover-border-color: rgb(251.4, 210, 67.8);
3318
3315
  --bs-btn-focus-shadow-rgb: 213, 174, 40;
3319
3316
  --bs-btn-active-color: #000;
3320
- --bs-btn-active-bg: #fcd759;
3321
- --bs-btn-active-border-color: #fbd244;
3317
+ --bs-btn-active-bg: rgb(251.8, 215, 88.6);
3318
+ --bs-btn-active-border-color: rgb(251.4, 210, 67.8);
3322
3319
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3323
3320
  --bs-btn-disabled-color: #000;
3324
- --bs-btn-disabled-bg: #FBCD2F;
3325
- --bs-btn-disabled-border-color: #FBCD2F;
3321
+ --bs-btn-disabled-bg: #fbcd2f;
3322
+ --bs-btn-disabled-border-color: #fbcd2f;
3326
3323
  }
3327
3324
 
3328
3325
  .btn-danger {
@@ -3330,12 +3327,12 @@ textarea.form-control-lg {
3330
3327
  --bs-btn-bg: #b42318;
3331
3328
  --bs-btn-border-color: #b42318;
3332
3329
  --bs-btn-hover-color: #fff;
3333
- --bs-btn-hover-bg: #901c13;
3334
- --bs-btn-hover-border-color: #901c13;
3330
+ --bs-btn-hover-bg: rgb(144, 28, 19.2);
3331
+ --bs-btn-hover-border-color: rgb(144, 28, 19.2);
3335
3332
  --bs-btn-focus-shadow-rgb: 191, 68, 59;
3336
3333
  --bs-btn-active-color: #fff;
3337
- --bs-btn-active-bg: #6c150e;
3338
- --bs-btn-active-border-color: #6c150e;
3334
+ --bs-btn-active-bg: rgb(108, 21, 14.4);
3335
+ --bs-btn-active-border-color: rgb(108, 21, 14.4);
3339
3336
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3340
3337
  --bs-btn-disabled-color: #fff;
3341
3338
  --bs-btn-disabled-bg: #b42318;
@@ -3361,69 +3358,69 @@ textarea.form-control-lg {
3361
3358
 
3362
3359
  .btn-dark {
3363
3360
  --bs-btn-color: #fff;
3364
- --bs-btn-bg: #272729;
3365
- --bs-btn-border-color: #272729;
3361
+ --bs-btn-bg: rgb(38.6, 39.4, 40.8);
3362
+ --bs-btn-border-color: rgb(38.6, 39.4, 40.8);
3366
3363
  --bs-btn-hover-color: #fff;
3367
- --bs-btn-hover-bg: #3d3d3e;
3368
- --bs-btn-hover-border-color: #3d3d3e;
3369
- --bs-btn-focus-shadow-rgb: 71, 71, 73;
3364
+ --bs-btn-hover-bg: rgb(60.24, 60.96, 62.22);
3365
+ --bs-btn-hover-border-color: rgb(60.24, 60.96, 62.22);
3366
+ --bs-btn-focus-shadow-rgb: 71, 72, 73;
3370
3367
  --bs-btn-active-color: #fff;
3371
- --bs-btn-active-bg: #525254;
3372
- --bs-btn-active-border-color: #3d3d3e;
3368
+ --bs-btn-active-bg: rgb(81.88, 82.52, 83.64);
3369
+ --bs-btn-active-border-color: rgb(60.24, 60.96, 62.22);
3373
3370
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3374
3371
  --bs-btn-disabled-color: #fff;
3375
- --bs-btn-disabled-bg: #272729;
3376
- --bs-btn-disabled-border-color: #272729;
3372
+ --bs-btn-disabled-bg: rgb(38.6, 39.4, 40.8);
3373
+ --bs-btn-disabled-border-color: rgb(38.6, 39.4, 40.8);
3377
3374
  }
3378
3375
 
3379
3376
  .btn-outline-primary {
3380
- --bs-btn-color: #3E51A2;
3381
- --bs-btn-border-color: #3E51A2;
3377
+ --bs-btn-color: #3e51a2;
3378
+ --bs-btn-border-color: #3e51a2;
3382
3379
  --bs-btn-hover-color: #fff;
3383
- --bs-btn-hover-bg: #3E51A2;
3384
- --bs-btn-hover-border-color: #3E51A2;
3380
+ --bs-btn-hover-bg: #3e51a2;
3381
+ --bs-btn-hover-border-color: #3e51a2;
3385
3382
  --bs-btn-focus-shadow-rgb: 62, 81, 162;
3386
3383
  --bs-btn-active-color: #fff;
3387
- --bs-btn-active-bg: #3E51A2;
3388
- --bs-btn-active-border-color: #3E51A2;
3384
+ --bs-btn-active-bg: #3e51a2;
3385
+ --bs-btn-active-border-color: #3e51a2;
3389
3386
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3390
- --bs-btn-disabled-color: #3E51A2;
3387
+ --bs-btn-disabled-color: #3e51a2;
3391
3388
  --bs-btn-disabled-bg: transparent;
3392
- --bs-btn-disabled-border-color: #3E51A2;
3389
+ --bs-btn-disabled-border-color: #3e51a2;
3393
3390
  --bs-gradient: none;
3394
3391
  }
3395
3392
 
3396
3393
  .btn-outline-secondary {
3397
- --bs-btn-color: #3B7BBF;
3398
- --bs-btn-border-color: #3B7BBF;
3394
+ --bs-btn-color: #3b7bbf;
3395
+ --bs-btn-border-color: #3b7bbf;
3399
3396
  --bs-btn-hover-color: #000;
3400
- --bs-btn-hover-bg: #3B7BBF;
3401
- --bs-btn-hover-border-color: #3B7BBF;
3397
+ --bs-btn-hover-bg: #3b7bbf;
3398
+ --bs-btn-hover-border-color: #3b7bbf;
3402
3399
  --bs-btn-focus-shadow-rgb: 59, 123, 191;
3403
3400
  --bs-btn-active-color: #000;
3404
- --bs-btn-active-bg: #3B7BBF;
3405
- --bs-btn-active-border-color: #3B7BBF;
3401
+ --bs-btn-active-bg: #3b7bbf;
3402
+ --bs-btn-active-border-color: #3b7bbf;
3406
3403
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3407
- --bs-btn-disabled-color: #3B7BBF;
3404
+ --bs-btn-disabled-color: #3b7bbf;
3408
3405
  --bs-btn-disabled-bg: transparent;
3409
- --bs-btn-disabled-border-color: #3B7BBF;
3406
+ --bs-btn-disabled-border-color: #3b7bbf;
3410
3407
  --bs-gradient: none;
3411
3408
  }
3412
3409
 
3413
3410
  .btn-outline-tertiary {
3414
- --bs-btn-color: #CDECF9;
3415
- --bs-btn-border-color: #CDECF9;
3411
+ --bs-btn-color: #cdecf9;
3412
+ --bs-btn-border-color: #cdecf9;
3416
3413
  --bs-btn-hover-color: #000;
3417
- --bs-btn-hover-bg: #CDECF9;
3418
- --bs-btn-hover-border-color: #CDECF9;
3414
+ --bs-btn-hover-bg: #cdecf9;
3415
+ --bs-btn-hover-border-color: #cdecf9;
3419
3416
  --bs-btn-focus-shadow-rgb: 205, 236, 249;
3420
3417
  --bs-btn-active-color: #000;
3421
- --bs-btn-active-bg: #CDECF9;
3422
- --bs-btn-active-border-color: #CDECF9;
3418
+ --bs-btn-active-bg: #cdecf9;
3419
+ --bs-btn-active-border-color: #cdecf9;
3423
3420
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3424
- --bs-btn-disabled-color: #CDECF9;
3421
+ --bs-btn-disabled-color: #cdecf9;
3425
3422
  --bs-btn-disabled-bg: transparent;
3426
- --bs-btn-disabled-border-color: #CDECF9;
3423
+ --bs-btn-disabled-border-color: #cdecf9;
3427
3424
  --bs-gradient: none;
3428
3425
  }
3429
3426
 
@@ -3445,36 +3442,36 @@ textarea.form-control-lg {
3445
3442
  }
3446
3443
 
3447
3444
  .btn-outline-action {
3448
- --bs-btn-color: #6346D3;
3449
- --bs-btn-border-color: #6346D3;
3445
+ --bs-btn-color: #6346d3;
3446
+ --bs-btn-border-color: #6346d3;
3450
3447
  --bs-btn-hover-color: #fff;
3451
- --bs-btn-hover-bg: #6346D3;
3452
- --bs-btn-hover-border-color: #6346D3;
3448
+ --bs-btn-hover-bg: #6346d3;
3449
+ --bs-btn-hover-border-color: #6346d3;
3453
3450
  --bs-btn-focus-shadow-rgb: 99, 70, 211;
3454
3451
  --bs-btn-active-color: #fff;
3455
- --bs-btn-active-bg: #6346D3;
3456
- --bs-btn-active-border-color: #6346D3;
3452
+ --bs-btn-active-bg: #6346d3;
3453
+ --bs-btn-active-border-color: #6346d3;
3457
3454
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3458
- --bs-btn-disabled-color: #6346D3;
3455
+ --bs-btn-disabled-color: #6346d3;
3459
3456
  --bs-btn-disabled-bg: transparent;
3460
- --bs-btn-disabled-border-color: #6346D3;
3457
+ --bs-btn-disabled-border-color: #6346d3;
3461
3458
  --bs-gradient: none;
3462
3459
  }
3463
3460
 
3464
3461
  .btn-outline-warning {
3465
- --bs-btn-color: #FBCD2F;
3466
- --bs-btn-border-color: #FBCD2F;
3462
+ --bs-btn-color: #fbcd2f;
3463
+ --bs-btn-border-color: #fbcd2f;
3467
3464
  --bs-btn-hover-color: #000;
3468
- --bs-btn-hover-bg: #FBCD2F;
3469
- --bs-btn-hover-border-color: #FBCD2F;
3465
+ --bs-btn-hover-bg: #fbcd2f;
3466
+ --bs-btn-hover-border-color: #fbcd2f;
3470
3467
  --bs-btn-focus-shadow-rgb: 251, 205, 47;
3471
3468
  --bs-btn-active-color: #000;
3472
- --bs-btn-active-bg: #FBCD2F;
3473
- --bs-btn-active-border-color: #FBCD2F;
3469
+ --bs-btn-active-bg: #fbcd2f;
3470
+ --bs-btn-active-border-color: #fbcd2f;
3474
3471
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3475
- --bs-btn-disabled-color: #FBCD2F;
3472
+ --bs-btn-disabled-color: #fbcd2f;
3476
3473
  --bs-btn-disabled-bg: transparent;
3477
- --bs-btn-disabled-border-color: #FBCD2F;
3474
+ --bs-btn-disabled-border-color: #fbcd2f;
3478
3475
  --bs-gradient: none;
3479
3476
  }
3480
3477
 
@@ -3513,19 +3510,19 @@ textarea.form-control-lg {
3513
3510
  }
3514
3511
 
3515
3512
  .btn-outline-dark {
3516
- --bs-btn-color: #272729;
3517
- --bs-btn-border-color: #272729;
3513
+ --bs-btn-color: rgb(38.6, 39.4, 40.8);
3514
+ --bs-btn-border-color: rgb(38.6, 39.4, 40.8);
3518
3515
  --bs-btn-hover-color: #fff;
3519
- --bs-btn-hover-bg: #272729;
3520
- --bs-btn-hover-border-color: #272729;
3516
+ --bs-btn-hover-bg: rgb(38.6, 39.4, 40.8);
3517
+ --bs-btn-hover-border-color: rgb(38.6, 39.4, 40.8);
3521
3518
  --bs-btn-focus-shadow-rgb: 39, 39, 41;
3522
3519
  --bs-btn-active-color: #fff;
3523
- --bs-btn-active-bg: #272729;
3524
- --bs-btn-active-border-color: #272729;
3520
+ --bs-btn-active-bg: rgb(38.6, 39.4, 40.8);
3521
+ --bs-btn-active-border-color: rgb(38.6, 39.4, 40.8);
3525
3522
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3526
- --bs-btn-disabled-color: #272729;
3523
+ --bs-btn-disabled-color: rgb(38.6, 39.4, 40.8);
3527
3524
  --bs-btn-disabled-bg: transparent;
3528
- --bs-btn-disabled-border-color: #272729;
3525
+ --bs-btn-disabled-border-color: rgb(38.6, 39.4, 40.8);
3529
3526
  --bs-gradient: none;
3530
3527
  }
3531
3528
 
@@ -3976,7 +3973,7 @@ textarea.form-control-lg {
3976
3973
  }
3977
3974
  .btn-group > :not(.btn-check:first-child) + .btn,
3978
3975
  .btn-group > .btn-group:not(:first-child) {
3979
- margin-left: calc(var(--bs-border-width) * -1);
3976
+ margin-left: calc(-1 * var(--bs-border-width));
3980
3977
  }
3981
3978
  .btn-group > .btn:not(:last-child):not(.dropdown-toggle),
3982
3979
  .btn-group > .btn.dropdown-toggle-split:first-child,
@@ -4030,14 +4027,15 @@ textarea.form-control-lg {
4030
4027
  }
4031
4028
  .btn-group-vertical > .btn:not(:first-child),
4032
4029
  .btn-group-vertical > .btn-group:not(:first-child) {
4033
- margin-top: calc(var(--bs-border-width) * -1);
4030
+ margin-top: calc(-1 * var(--bs-border-width));
4034
4031
  }
4035
4032
  .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
4036
4033
  .btn-group-vertical > .btn-group:not(:last-child) > .btn {
4037
4034
  border-bottom-right-radius: 0;
4038
4035
  border-bottom-left-radius: 0;
4039
4036
  }
4040
- .btn-group-vertical > .btn ~ .btn,
4037
+ .btn-group-vertical > .btn:nth-child(n+3),
4038
+ .btn-group-vertical > :not(.btn-check) + .btn,
4041
4039
  .btn-group-vertical > .btn-group:not(:first-child) > .btn {
4042
4040
  border-top-left-radius: 0;
4043
4041
  border-top-right-radius: 0;
@@ -4161,8 +4159,8 @@ textarea.form-control-lg {
4161
4159
 
4162
4160
  .nav-justified > .nav-link,
4163
4161
  .nav-justified .nav-item {
4164
- flex-basis: 0;
4165
4162
  flex-grow: 1;
4163
+ flex-basis: 0;
4166
4164
  text-align: center;
4167
4165
  }
4168
4166
 
@@ -4265,8 +4263,8 @@ textarea.form-control-lg {
4265
4263
  }
4266
4264
 
4267
4265
  .navbar-collapse {
4268
- flex-basis: 100%;
4269
4266
  flex-grow: 1;
4267
+ flex-basis: 100%;
4270
4268
  align-items: center;
4271
4269
  }
4272
4270
 
@@ -4816,7 +4814,7 @@ textarea.form-control-lg {
4816
4814
  flex-flow: row wrap;
4817
4815
  }
4818
4816
  .card-group > .card {
4819
- flex: 1 0 0%;
4817
+ flex: 1 0 0;
4820
4818
  margin-bottom: 0;
4821
4819
  }
4822
4820
  .card-group > .card + .card {
@@ -4975,16 +4973,15 @@ textarea.form-control-lg {
4975
4973
  .accordion-flush > .accordion-item:last-child {
4976
4974
  border-bottom: 0;
4977
4975
  }
4978
- .accordion-flush > .accordion-item > .accordion-header .accordion-button, .accordion-flush > .accordion-item > .accordion-header .accordion-button.collapsed {
4979
- border-radius: 0;
4980
- }
4981
- .accordion-flush > .accordion-item > .accordion-collapse {
4976
+ .accordion-flush > .accordion-item > .accordion-collapse,
4977
+ .accordion-flush > .accordion-item > .accordion-header .accordion-button,
4978
+ .accordion-flush > .accordion-item > .accordion-header .accordion-button.collapsed {
4982
4979
  border-radius: 0;
4983
4980
  }
4984
4981
 
4985
4982
  [data-bs-theme=dark] .accordion-button::after {
4986
- --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%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");
4987
- --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%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");
4983
+ --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgb%28109.8, 168, 253.8%29'%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-.708'/%3e%3c/svg%3e");
4984
+ --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgb%28109.8, 168, 253.8%29'%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-.708'/%3e%3c/svg%3e");
4988
4985
  }
4989
4986
 
4990
4987
  .breadcrumb {
@@ -5088,7 +5085,7 @@ textarea.form-control-lg {
5088
5085
  }
5089
5086
 
5090
5087
  .page-item:not(:first-child) .page-link {
5091
- margin-left: calc(var(--bs-border-width) * -1);
5088
+ margin-left: calc(-1 * var(--bs-border-width));
5092
5089
  }
5093
5090
  .page-item:first-child .page-link {
5094
5091
  border-top-left-radius: var(--bs-pagination-border-radius);
@@ -5244,7 +5241,7 @@ textarea.form-control-lg {
5244
5241
 
5245
5242
  @keyframes progress-bar-stripes {
5246
5243
  0% {
5247
- background-position-x: 1rem;
5244
+ background-position-x: var(--bs-progress-height);
5248
5245
  }
5249
5246
  }
5250
5247
  .progress,
@@ -5339,22 +5336,6 @@ textarea.form-control-lg {
5339
5336
  counter-increment: section;
5340
5337
  }
5341
5338
 
5342
- .list-group-item-action {
5343
- width: 100%;
5344
- color: var(--bs-list-group-action-color);
5345
- text-align: inherit;
5346
- }
5347
- .list-group-item-action:hover, .list-group-item-action:focus {
5348
- z-index: 1;
5349
- color: var(--bs-list-group-action-hover-color);
5350
- text-decoration: none;
5351
- background-color: var(--bs-list-group-action-hover-bg);
5352
- }
5353
- .list-group-item-action:active {
5354
- color: var(--bs-list-group-action-active-color);
5355
- background-color: var(--bs-list-group-action-active-bg);
5356
- }
5357
-
5358
5339
  .list-group-item {
5359
5340
  position: relative;
5360
5341
  display: block;
@@ -5391,6 +5372,22 @@ textarea.form-control-lg {
5391
5372
  border-top-width: var(--bs-list-group-border-width);
5392
5373
  }
5393
5374
 
5375
+ .list-group-item-action {
5376
+ width: 100%;
5377
+ color: var(--bs-list-group-action-color);
5378
+ text-align: inherit;
5379
+ }
5380
+ .list-group-item-action:not(.active):hover, .list-group-item-action:not(.active):focus {
5381
+ z-index: 1;
5382
+ color: var(--bs-list-group-action-hover-color);
5383
+ text-decoration: none;
5384
+ background-color: var(--bs-list-group-action-hover-bg);
5385
+ }
5386
+ .list-group-item-action:not(.active):active {
5387
+ color: var(--bs-list-group-action-active-color);
5388
+ background-color: var(--bs-list-group-action-active-bg);
5389
+ }
5390
+
5394
5391
  .list-group-horizontal {
5395
5392
  flex-direction: row;
5396
5393
  }
@@ -5687,19 +5684,19 @@ textarea.form-control-lg {
5687
5684
 
5688
5685
  .btn-close {
5689
5686
  --bs-btn-close-color: #000;
5690
- --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
5687
+ --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414'/%3e%3c/svg%3e");
5691
5688
  --bs-btn-close-opacity: 0.5;
5692
5689
  --bs-btn-close-hover-opacity: 0.75;
5693
5690
  --bs-btn-close-focus-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
5694
5691
  --bs-btn-close-focus-opacity: 1;
5695
5692
  --bs-btn-close-disabled-opacity: 0.25;
5696
- --bs-btn-close-white-filter: invert(1) grayscale(100%) brightness(200%);
5697
5693
  box-sizing: content-box;
5698
5694
  width: 1em;
5699
5695
  height: 1em;
5700
5696
  padding: 0.25em 0.25em;
5701
5697
  color: var(--bs-btn-close-color);
5702
5698
  background: transparent var(--bs-btn-close-bg) center/1em auto no-repeat;
5699
+ filter: var(--bs-btn-close-filter);
5703
5700
  border: 0;
5704
5701
  border-radius: 0.5rem;
5705
5702
  opacity: var(--bs-btn-close-opacity);
@@ -5723,11 +5720,16 @@ textarea.form-control-lg {
5723
5720
  }
5724
5721
 
5725
5722
  .btn-close-white {
5726
- filter: var(--bs-btn-close-white-filter);
5723
+ --bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%);
5724
+ }
5725
+
5726
+ :root,
5727
+ [data-bs-theme=light] {
5728
+ --bs-btn-close-filter: ;
5727
5729
  }
5728
5730
 
5729
- [data-bs-theme=dark] .btn-close {
5730
- filter: var(--bs-btn-close-white-filter);
5731
+ [data-bs-theme=dark] {
5732
+ --bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%);
5731
5733
  }
5732
5734
 
5733
5735
  .toast {
@@ -5803,7 +5805,7 @@ textarea.form-control-lg {
5803
5805
  --bs-modal-width: 500px;
5804
5806
  --bs-modal-padding: 1rem;
5805
5807
  --bs-modal-margin: 0.5rem;
5806
- --bs-modal-color: ;
5808
+ --bs-modal-color: var(--bs-body-color);
5807
5809
  --bs-modal-bg: var(--bs-body-bg);
5808
5810
  --bs-modal-border-color: var(--bs-border-color-translucent);
5809
5811
  --bs-modal-border-width: var(--bs-border-width);
@@ -5839,8 +5841,8 @@ textarea.form-control-lg {
5839
5841
  pointer-events: none;
5840
5842
  }
5841
5843
  .modal.fade .modal-dialog {
5842
- transition: transform 0.3s ease-out;
5843
5844
  transform: translate(0, -50px);
5845
+ transition: transform 0.3s ease-out;
5844
5846
  }
5845
5847
  @media (prefers-reduced-motion: reduce) {
5846
5848
  .modal.fade .modal-dialog {
@@ -5888,8 +5890,8 @@ textarea.form-control-lg {
5888
5890
 
5889
5891
  .modal-backdrop {
5890
5892
  --bs-backdrop-zindex: 1050;
5891
- --bs-backdrop-bg: #000;
5892
- --bs-backdrop-opacity: 0.5;
5893
+ --bs-backdrop-bg: #1d1f50;
5894
+ --bs-backdrop-opacity: 0.7;
5893
5895
  position: fixed;
5894
5896
  top: 0;
5895
5897
  left: 0;
@@ -5916,7 +5918,10 @@ textarea.form-control-lg {
5916
5918
  }
5917
5919
  .modal-header .btn-close {
5918
5920
  padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
5919
- margin: calc(-0.5 * var(--bs-modal-header-padding-y)) calc(-0.5 * var(--bs-modal-header-padding-x)) calc(-0.5 * var(--bs-modal-header-padding-y)) auto;
5921
+ margin-top: calc(-0.5 * var(--bs-modal-header-padding-y));
5922
+ margin-right: calc(-0.5 * var(--bs-modal-header-padding-x));
5923
+ margin-bottom: calc(-0.5 * var(--bs-modal-header-padding-y));
5924
+ margin-left: auto;
5920
5925
  }
5921
5926
 
5922
5927
  .modal-title {
@@ -6118,7 +6123,7 @@ textarea.form-control-lg {
6118
6123
  --bs-tooltip-margin: ;
6119
6124
  --bs-tooltip-font-size: 0.875rem;
6120
6125
  --bs-tooltip-color: var(--bs-body-bg);
6121
- --bs-tooltip-bg: var(--bs-emphasis-color);
6126
+ --bs-tooltip-bg: var(--bs-primary);
6122
6127
  --bs-tooltip-border-radius: var(--bs-border-radius);
6123
6128
  --bs-tooltip-opacity: 0.9;
6124
6129
  --bs-tooltip-arrow-width: 0.8rem;
@@ -6457,6 +6462,7 @@ textarea.form-control-lg {
6457
6462
  color: #000;
6458
6463
  text-align: center;
6459
6464
  background: none;
6465
+ filter: var(--bs-carousel-control-icon-filter);
6460
6466
  border: 0;
6461
6467
  opacity: 0.5;
6462
6468
  transition: opacity 0.15s ease;
@@ -6525,7 +6531,7 @@ textarea.form-control-lg {
6525
6531
  margin-left: 3px;
6526
6532
  text-indent: -999px;
6527
6533
  cursor: pointer;
6528
- background-color: #1D1F50;
6534
+ background-color: var(--bs-carousel-indicator-active-bg);
6529
6535
  background-clip: padding-box;
6530
6536
  border: 0;
6531
6537
  border-top: 10px solid transparent;
@@ -6549,31 +6555,27 @@ textarea.form-control-lg {
6549
6555
  left: 15%;
6550
6556
  padding-top: 1.25rem;
6551
6557
  padding-bottom: 1.25rem;
6552
- color: #fff;
6558
+ color: var(--bs-carousel-caption-color);
6553
6559
  text-align: center;
6554
6560
  }
6555
6561
 
6556
- .carousel-dark .carousel-control-prev-icon,
6557
- .carousel-dark .carousel-control-next-icon {
6558
- filter: invert(1) grayscale(100);
6559
- }
6560
- .carousel-dark .carousel-indicators [data-bs-target] {
6561
- background-color: #000;
6562
- }
6563
- .carousel-dark .carousel-caption {
6564
- color: #000;
6562
+ .carousel-dark {
6563
+ --bs-carousel-indicator-active-bg: #000;
6564
+ --bs-carousel-caption-color: #000;
6565
+ --bs-carousel-control-icon-filter: invert(1) grayscale(100);
6565
6566
  }
6566
6567
 
6567
- [data-bs-theme=dark] .carousel .carousel-control-prev-icon,
6568
- [data-bs-theme=dark] .carousel .carousel-control-next-icon, [data-bs-theme=dark].carousel .carousel-control-prev-icon,
6569
- [data-bs-theme=dark].carousel .carousel-control-next-icon {
6570
- filter: invert(1) grayscale(100);
6571
- }
6572
- [data-bs-theme=dark] .carousel .carousel-indicators [data-bs-target], [data-bs-theme=dark].carousel .carousel-indicators [data-bs-target] {
6573
- background-color: #000;
6568
+ :root,
6569
+ [data-bs-theme=light] {
6570
+ --bs-carousel-indicator-active-bg: #1d1f50;
6571
+ --bs-carousel-caption-color: #fff;
6572
+ --bs-carousel-control-icon-filter: ;
6574
6573
  }
6575
- [data-bs-theme=dark] .carousel .carousel-caption, [data-bs-theme=dark].carousel .carousel-caption {
6576
- color: #000;
6574
+
6575
+ [data-bs-theme=dark] {
6576
+ --bs-carousel-indicator-active-bg: #000;
6577
+ --bs-carousel-caption-color: #000;
6578
+ --bs-carousel-control-icon-filter: invert(1) grayscale(100);
6577
6579
  }
6578
6580
 
6579
6581
  .spinner-grow,
@@ -7208,7 +7210,10 @@ textarea.form-control-lg {
7208
7210
  }
7209
7211
  .offcanvas-header .btn-close {
7210
7212
  padding: calc(var(--bs-offcanvas-padding-y) * 0.5) calc(var(--bs-offcanvas-padding-x) * 0.5);
7211
- margin: calc(-0.5 * var(--bs-offcanvas-padding-y)) calc(-0.5 * var(--bs-offcanvas-padding-x)) calc(-0.5 * var(--bs-offcanvas-padding-y)) auto;
7213
+ margin-top: calc(-0.5 * var(--bs-offcanvas-padding-y));
7214
+ margin-right: calc(-0.5 * var(--bs-offcanvas-padding-x));
7215
+ margin-bottom: calc(-0.5 * var(--bs-offcanvas-padding-y));
7216
+ margin-left: auto;
7212
7217
  }
7213
7218
 
7214
7219
  .offcanvas-title {
@@ -7398,8 +7403,8 @@ textarea.form-control-lg {
7398
7403
  text-decoration-color: RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)) !important;
7399
7404
  }
7400
7405
  .link-dark:hover, .link-dark:focus {
7401
- color: RGBA(31, 31, 33, var(--bs-link-opacity, 1)) !important;
7402
- text-decoration-color: RGBA(31, 31, 33, var(--bs-link-underline-opacity, 1)) !important;
7406
+ color: RGBA(31, 32, 33, var(--bs-link-opacity, 1)) !important;
7407
+ text-decoration-color: RGBA(31, 32, 33, var(--bs-link-underline-opacity, 1)) !important;
7403
7408
  }
7404
7409
 
7405
7410
  .link-body-emphasis {
@@ -7803,15 +7808,15 @@ textarea.form-control-lg {
7803
7808
  }
7804
7809
 
7805
7810
  .box-shadow {
7806
- box-shadow: --bs-box-shadow !important;
7811
+ box-shadow: var(--bs-box-shadow) !important;
7807
7812
  }
7808
7813
 
7809
7814
  .box-shadow-sm {
7810
- box-shadow: --bs-box-shadow-sm !important;
7815
+ box-shadow: var(--bs-box-shadow-sm) !important;
7811
7816
  }
7812
7817
 
7813
7818
  .box-shadow-lg {
7814
- box-shadow: --bs-box-shadow-lg !important;
7819
+ box-shadow: var(--bs-box-shadow-lg) !important;
7815
7820
  }
7816
7821
 
7817
7822
  .box-shadow-none {
@@ -7819,7 +7824,7 @@ textarea.form-control-lg {
7819
7824
  }
7820
7825
 
7821
7826
  .box-shadow-inset {
7822
- box-shadow: --bs-box-shadow-insethom !important;
7827
+ box-shadow: var(--bs-box-shadow-inset) !important;
7823
7828
  }
7824
7829
 
7825
7830
  .focus-ring-primary {
@@ -9037,332 +9042,332 @@ textarea.form-control-lg {
9037
9042
 
9038
9043
  .text-foundation-100 {
9039
9044
  --bs-text-opacity: 1;
9040
- color: #d2d2dc !important;
9045
+ color: rgb(209.8, 210.2, 220) !important;
9041
9046
  }
9042
9047
 
9043
9048
  .text-foundation-200 {
9044
9049
  --bs-text-opacity: 1;
9045
- color: #a5a5b9 !important;
9050
+ color: rgb(164.6, 165.4, 185) !important;
9046
9051
  }
9047
9052
 
9048
9053
  .text-foundation-300 {
9049
9054
  --bs-text-opacity: 1;
9050
- color: #777996 !important;
9055
+ color: rgb(119.4, 120.6, 150) !important;
9051
9056
  }
9052
9057
 
9053
9058
  .text-foundation-400 {
9054
9059
  --bs-text-opacity: 1;
9055
- color: #4a4c73 !important;
9060
+ color: rgb(74.2, 75.8, 115) !important;
9056
9061
  }
9057
9062
 
9058
9063
  .text-foundation-450 {
9059
9064
  --bs-text-opacity: 1;
9060
- color: #343562 !important;
9065
+ color: rgb(51.6, 53.4, 97.5) !important;
9061
9066
  }
9062
9067
 
9063
9068
  .text-foundation-500 {
9064
9069
  --bs-text-opacity: 1;
9065
- color: #1D1F50 !important;
9070
+ color: #1d1f50 !important;
9066
9071
  }
9067
9072
 
9068
9073
  .text-foundation-600 {
9069
9074
  --bs-text-opacity: 1;
9070
- color: #171940 !important;
9075
+ color: rgb(23.2, 24.8, 64) !important;
9071
9076
  }
9072
9077
 
9073
9078
  .text-foundation-700 {
9074
9079
  --bs-text-opacity: 1;
9075
- color: #111330 !important;
9080
+ color: rgb(17.4, 18.6, 48) !important;
9076
9081
  }
9077
9082
 
9078
9083
  .text-foundation-800 {
9079
9084
  --bs-text-opacity: 1;
9080
- color: #0c0c20 !important;
9085
+ color: rgb(11.6, 12.4, 32) !important;
9081
9086
  }
9082
9087
 
9083
9088
  .text-foundation-900 {
9084
9089
  --bs-text-opacity: 1;
9085
- color: #060610 !important;
9090
+ color: rgb(5.8, 6.2, 16) !important;
9086
9091
  }
9087
9092
 
9088
9093
  .text-blueprint-100 {
9089
9094
  --bs-text-opacity: 1;
9090
- color: #d8dcec !important;
9095
+ color: rgb(216.4, 220.2, 236.4) !important;
9091
9096
  }
9092
9097
 
9093
9098
  .text-blueprint-200 {
9094
9099
  --bs-text-opacity: 1;
9095
- color: #b2b9da !important;
9100
+ color: rgb(177.8, 185.4, 217.8) !important;
9096
9101
  }
9097
9102
 
9098
9103
  .text-blueprint-300 {
9099
9104
  --bs-text-opacity: 1;
9100
- color: #8b97c7 !important;
9105
+ color: rgb(139.2, 150.6, 199.2) !important;
9101
9106
  }
9102
9107
 
9103
9108
  .text-blueprint-400 {
9104
9109
  --bs-text-opacity: 1;
9105
- color: #6574b5 !important;
9110
+ color: rgb(100.6, 115.8, 180.6) !important;
9106
9111
  }
9107
9112
 
9108
9113
  .text-blueprint-450 {
9109
9114
  --bs-text-opacity: 1;
9110
- color: #5162ab !important;
9115
+ color: rgb(81.3, 98.4, 171.3) !important;
9111
9116
  }
9112
9117
 
9113
9118
  .text-blueprint-500 {
9114
9119
  --bs-text-opacity: 1;
9115
- color: #3E51A2 !important;
9120
+ color: #3e51a2 !important;
9116
9121
  }
9117
9122
 
9118
9123
  .text-blueprint-600 {
9119
9124
  --bs-text-opacity: 1;
9120
- color: #324182 !important;
9125
+ color: rgb(49.6, 64.8, 129.6) !important;
9121
9126
  }
9122
9127
 
9123
9128
  .text-blueprint-700 {
9124
9129
  --bs-text-opacity: 1;
9125
- color: #253161 !important;
9130
+ color: rgb(37.2, 48.6, 97.2) !important;
9126
9131
  }
9127
9132
 
9128
9133
  .text-blueprint-800 {
9129
9134
  --bs-text-opacity: 1;
9130
- color: #192041 !important;
9135
+ color: rgb(24.8, 32.4, 64.8) !important;
9131
9136
  }
9132
9137
 
9133
9138
  .text-blueprint-900 {
9134
9139
  --bs-text-opacity: 1;
9135
- color: #0c1020 !important;
9140
+ color: rgb(12.4, 16.2, 32.4) !important;
9136
9141
  }
9137
9142
 
9138
9143
  .text-entryway-100 {
9139
9144
  --bs-text-opacity: 1;
9140
- color: #d8e5f2 !important;
9145
+ color: rgb(215.8, 228.6, 242.2) !important;
9141
9146
  }
9142
9147
 
9143
9148
  .text-entryway-200 {
9144
9149
  --bs-text-opacity: 1;
9145
- color: #b1cae5 !important;
9150
+ color: rgb(176.6, 202.2, 229.4) !important;
9146
9151
  }
9147
9152
 
9148
9153
  .text-entryway-300 {
9149
9154
  --bs-text-opacity: 1;
9150
- color: #89b0d9 !important;
9155
+ color: rgb(137.4, 175.8, 216.6) !important;
9151
9156
  }
9152
9157
 
9153
9158
  .text-entryway-400 {
9154
9159
  --bs-text-opacity: 1;
9155
- color: #6295cc !important;
9160
+ color: rgb(98.2, 149.4, 203.8) !important;
9156
9161
  }
9157
9162
 
9158
9163
  .text-entryway-450 {
9159
9164
  --bs-text-opacity: 1;
9160
- color: #4f88c5 !important;
9165
+ color: rgb(78.6, 136.2, 197.4) !important;
9161
9166
  }
9162
9167
 
9163
9168
  .text-entryway-500 {
9164
9169
  --bs-text-opacity: 1;
9165
- color: #3B7BBF !important;
9170
+ color: #3b7bbf !important;
9166
9171
  }
9167
9172
 
9168
9173
  .text-entryway-600 {
9169
9174
  --bs-text-opacity: 1;
9170
- color: #2f6299 !important;
9175
+ color: rgb(47.2, 98.4, 152.8) !important;
9171
9176
  }
9172
9177
 
9173
9178
  .text-entryway-700 {
9174
9179
  --bs-text-opacity: 1;
9175
- color: #234a73 !important;
9180
+ color: rgb(35.4, 73.8, 114.6) !important;
9176
9181
  }
9177
9182
 
9178
9183
  .text-entryway-800 {
9179
9184
  --bs-text-opacity: 1;
9180
- color: #18314c !important;
9185
+ color: rgb(23.6, 49.2, 76.4) !important;
9181
9186
  }
9182
9187
 
9183
9188
  .text-entryway-900 {
9184
9189
  --bs-text-opacity: 1;
9185
- color: #0c1926 !important;
9190
+ color: rgb(11.8, 24.6, 38.2) !important;
9186
9191
  }
9187
9192
 
9188
9193
  .text-turnkey-100 {
9189
9194
  --bs-text-opacity: 1;
9190
- color: #e0daf6 !important;
9195
+ color: rgb(223.8, 218, 246.2) !important;
9191
9196
  }
9192
9197
 
9193
9198
  .text-turnkey-200 {
9194
9199
  --bs-text-opacity: 1;
9195
- color: #c1b5ed !important;
9200
+ color: rgb(192.6, 181, 237.4) !important;
9196
9201
  }
9197
9202
 
9198
9203
  .text-turnkey-300 {
9199
9204
  --bs-text-opacity: 1;
9200
- color: #a190e5 !important;
9205
+ color: rgb(161.4, 144, 228.6) !important;
9201
9206
  }
9202
9207
 
9203
9208
  .text-turnkey-400 {
9204
9209
  --bs-text-opacity: 1;
9205
- color: #826bdc !important;
9210
+ color: rgb(130.2, 107, 219.8) !important;
9206
9211
  }
9207
9212
 
9208
9213
  .text-turnkey-450 {
9209
9214
  --bs-text-opacity: 1;
9210
- color: #7359d7 !important;
9215
+ color: rgb(114.6, 88.5, 215.4) !important;
9211
9216
  }
9212
9217
 
9213
9218
  .text-turnkey-500 {
9214
9219
  --bs-text-opacity: 1;
9215
- color: #6346D3 !important;
9220
+ color: #6346d3 !important;
9216
9221
  }
9217
9222
 
9218
9223
  .text-turnkey-600 {
9219
9224
  --bs-text-opacity: 1;
9220
- color: #4f38a9 !important;
9225
+ color: rgb(79.2, 56, 168.8) !important;
9221
9226
  }
9222
9227
 
9223
9228
  .text-turnkey-700 {
9224
9229
  --bs-text-opacity: 1;
9225
- color: #3b2a7f !important;
9230
+ color: rgb(59.4, 42, 126.6) !important;
9226
9231
  }
9227
9232
 
9228
9233
  .text-turnkey-800 {
9229
9234
  --bs-text-opacity: 1;
9230
- color: #281c54 !important;
9235
+ color: rgb(39.6, 28, 84.4) !important;
9231
9236
  }
9232
9237
 
9233
9238
  .text-turnkey-900 {
9234
9239
  --bs-text-opacity: 1;
9235
- color: #140e2a !important;
9240
+ color: rgb(19.8, 14, 42.2) !important;
9236
9241
  }
9237
9242
 
9238
9243
  .text-sunglow-100 {
9239
9244
  --bs-text-opacity: 1;
9240
- color: #fef5d5 !important;
9245
+ color: rgb(254.2, 245, 213.4) !important;
9241
9246
  }
9242
9247
 
9243
9248
  .text-sunglow-200 {
9244
9249
  --bs-text-opacity: 1;
9245
- color: #fdebac !important;
9250
+ color: rgb(253.4, 235, 171.8) !important;
9246
9251
  }
9247
9252
 
9248
9253
  .text-sunglow-300 {
9249
9254
  --bs-text-opacity: 1;
9250
- color: #fde182 !important;
9255
+ color: rgb(252.6, 225, 130.2) !important;
9251
9256
  }
9252
9257
 
9253
9258
  .text-sunglow-400 {
9254
9259
  --bs-text-opacity: 1;
9255
- color: #fcd759 !important;
9260
+ color: rgb(251.8, 215, 88.6) !important;
9256
9261
  }
9257
9262
 
9258
9263
  .text-sunglow-450 {
9259
9264
  --bs-text-opacity: 1;
9260
- color: #fbd244 !important;
9265
+ color: rgb(251.4, 210, 67.8) !important;
9261
9266
  }
9262
9267
 
9263
9268
  .text-sunglow-500 {
9264
9269
  --bs-text-opacity: 1;
9265
- color: #FBCD2F !important;
9270
+ color: #fbcd2f !important;
9266
9271
  }
9267
9272
 
9268
9273
  .text-sunglow-600 {
9269
9274
  --bs-text-opacity: 1;
9270
- color: #c9a426 !important;
9275
+ color: rgb(200.8, 164, 37.6) !important;
9271
9276
  }
9272
9277
 
9273
9278
  .text-sunglow-700 {
9274
9279
  --bs-text-opacity: 1;
9275
- color: #977b1c !important;
9280
+ color: rgb(150.6, 123, 28.2) !important;
9276
9281
  }
9277
9282
 
9278
9283
  .text-sunglow-800 {
9279
9284
  --bs-text-opacity: 1;
9280
- color: #645213 !important;
9285
+ color: rgb(100.4, 82, 18.8) !important;
9281
9286
  }
9282
9287
 
9283
9288
  .text-sunglow-900 {
9284
9289
  --bs-text-opacity: 1;
9285
- color: #322909 !important;
9290
+ color: rgb(50.2, 41, 9.4) !important;
9286
9291
  }
9287
9292
 
9288
9293
  .text-warning-100 {
9289
9294
  --bs-text-opacity: 1;
9290
- color: #fef5d5 !important;
9295
+ color: rgb(254.2, 245, 213.4) !important;
9291
9296
  }
9292
9297
 
9293
9298
  .text-warning-200 {
9294
9299
  --bs-text-opacity: 1;
9295
- color: #fdebac !important;
9300
+ color: rgb(253.4, 235, 171.8) !important;
9296
9301
  }
9297
9302
 
9298
9303
  .text-warning-300 {
9299
9304
  --bs-text-opacity: 1;
9300
- color: #fde182 !important;
9305
+ color: rgb(252.6, 225, 130.2) !important;
9301
9306
  }
9302
9307
 
9303
9308
  .text-warning-400 {
9304
9309
  --bs-text-opacity: 1;
9305
- color: #fcd759 !important;
9310
+ color: rgb(251.8, 215, 88.6) !important;
9306
9311
  }
9307
9312
 
9308
9313
  .text-warning-450 {
9309
9314
  --bs-text-opacity: 1;
9310
- color: #fbd244 !important;
9315
+ color: rgb(251.4, 210, 67.8) !important;
9311
9316
  }
9312
9317
 
9313
9318
  .text-warning-500 {
9314
9319
  --bs-text-opacity: 1;
9315
- color: #FBCD2F !important;
9320
+ color: #fbcd2f !important;
9316
9321
  }
9317
9322
 
9318
9323
  .text-warning-600 {
9319
9324
  --bs-text-opacity: 1;
9320
- color: #c9a426 !important;
9325
+ color: rgb(200.8, 164, 37.6) !important;
9321
9326
  }
9322
9327
 
9323
9328
  .text-warning-700 {
9324
9329
  --bs-text-opacity: 1;
9325
- color: #977b1c !important;
9330
+ color: rgb(150.6, 123, 28.2) !important;
9326
9331
  }
9327
9332
 
9328
9333
  .text-warning-800 {
9329
9334
  --bs-text-opacity: 1;
9330
- color: #645213 !important;
9335
+ color: rgb(100.4, 82, 18.8) !important;
9331
9336
  }
9332
9337
 
9333
9338
  .text-warning-900 {
9334
9339
  --bs-text-opacity: 1;
9335
- color: #322909 !important;
9340
+ color: rgb(50.2, 41, 9.4) !important;
9336
9341
  }
9337
9342
 
9338
9343
  .text-25 {
9339
9344
  --bs-text-opacity: 1;
9340
- color: #fcfcfc !important;
9345
+ color: rgb(251.9, 252.1, 252.45) !important;
9341
9346
  }
9342
9347
 
9343
9348
  .text-50 {
9344
9349
  --bs-text-opacity: 1;
9345
- color: #f9f9fa !important;
9350
+ color: rgb(248.8, 249.2, 249.9) !important;
9346
9351
  }
9347
9352
 
9348
9353
  .text-100 {
9349
9354
  --bs-text-opacity: 1;
9350
- color: #f3f3f5 !important;
9355
+ color: rgb(242.6, 243.4, 244.8) !important;
9351
9356
  }
9352
9357
 
9353
9358
  .text-200 {
9354
9359
  --bs-text-opacity: 1;
9355
- color: #e6e8eb !important;
9360
+ color: rgb(230.2, 231.8, 234.6) !important;
9356
9361
  }
9357
9362
 
9358
9363
  .text-300 {
9359
9364
  --bs-text-opacity: 1;
9360
- color: #dadce0 !important;
9365
+ color: rgb(217.8, 220.2, 224.4) !important;
9361
9366
  }
9362
9367
 
9363
9368
  .text-400 {
9364
9369
  --bs-text-opacity: 1;
9365
- color: #cdd1d6 !important;
9370
+ color: rgb(205.4, 208.6, 214.2) !important;
9366
9371
  }
9367
9372
 
9368
9373
  .text-500 {
@@ -9372,52 +9377,52 @@ textarea.form-control-lg {
9372
9377
 
9373
9378
  .text-600 {
9374
9379
  --bs-text-opacity: 1;
9375
- color: #9a9ea3 !important;
9380
+ color: rgb(154.4, 157.6, 163.2) !important;
9376
9381
  }
9377
9382
 
9378
9383
  .text-700 {
9379
9384
  --bs-text-opacity: 1;
9380
- color: #74767a !important;
9385
+ color: rgb(115.8, 118.2, 122.4) !important;
9381
9386
  }
9382
9387
 
9383
9388
  .text-800 {
9384
9389
  --bs-text-opacity: 1;
9385
- color: #4d4f52 !important;
9390
+ color: rgb(77.2, 78.8, 81.6) !important;
9386
9391
  }
9387
9392
 
9388
9393
  .text-900 {
9389
9394
  --bs-text-opacity: 1;
9390
- color: #272729 !important;
9395
+ color: rgb(38.6, 39.4, 40.8) !important;
9391
9396
  }
9392
9397
 
9393
9398
  .text-success-25 {
9394
9399
  --bs-text-opacity: 1;
9395
- color: #f2f8f6 !important;
9400
+ color: rgb(242.35, 248.35, 245.85) !important;
9396
9401
  }
9397
9402
 
9398
9403
  .text-success-100 {
9399
9404
  --bs-text-opacity: 1;
9400
- color: #cce4da !important;
9405
+ color: rgb(204.4, 228.4, 218.4) !important;
9401
9406
  }
9402
9407
 
9403
9408
  .text-success-200 {
9404
9409
  --bs-text-opacity: 1;
9405
- color: #9acab6 !important;
9410
+ color: rgb(153.8, 201.8, 181.8) !important;
9406
9411
  }
9407
9412
 
9408
9413
  .text-success-300 {
9409
9414
  --bs-text-opacity: 1;
9410
- color: #67af91 !important;
9415
+ color: rgb(103.2, 175.2, 145.2) !important;
9411
9416
  }
9412
9417
 
9413
9418
  .text-success-400 {
9414
9419
  --bs-text-opacity: 1;
9415
- color: #35956d !important;
9420
+ color: rgb(52.6, 148.6, 108.6) !important;
9416
9421
  }
9417
9422
 
9418
9423
  .text-success-450 {
9419
9424
  --bs-text-opacity: 1;
9420
- color: #1b875a !important;
9425
+ color: rgb(27.3, 135.3, 90.3) !important;
9421
9426
  }
9422
9427
 
9423
9428
  .text-success-500 {
@@ -9427,52 +9432,52 @@ textarea.form-control-lg {
9427
9432
 
9428
9433
  .text-success-600 {
9429
9434
  --bs-text-opacity: 1;
9430
- color: #02623a !important;
9435
+ color: rgb(1.6, 97.6, 57.6) !important;
9431
9436
  }
9432
9437
 
9433
9438
  .text-success-700 {
9434
9439
  --bs-text-opacity: 1;
9435
- color: #01492b !important;
9440
+ color: rgb(1.2, 73.2, 43.2) !important;
9436
9441
  }
9437
9442
 
9438
9443
  .text-success-800 {
9439
9444
  --bs-text-opacity: 1;
9440
- color: #01311d !important;
9445
+ color: rgb(0.8, 48.8, 28.8) !important;
9441
9446
  }
9442
9447
 
9443
9448
  .text-success-900 {
9444
9449
  --bs-text-opacity: 1;
9445
- color: #00180e !important;
9450
+ color: rgb(0.4, 24.4, 14.4) !important;
9446
9451
  }
9447
9452
 
9448
9453
  .text-danger-25 {
9449
9454
  --bs-text-opacity: 1;
9450
- color: #fbf4f3 !important;
9455
+ color: rgb(251.25, 244, 243.45) !important;
9451
9456
  }
9452
9457
 
9453
9458
  .text-danger-100 {
9454
9459
  --bs-text-opacity: 1;
9455
- color: #f0d3d1 !important;
9460
+ color: rgb(240, 211, 208.8) !important;
9456
9461
  }
9457
9462
 
9458
9463
  .text-danger-200 {
9459
9464
  --bs-text-opacity: 1;
9460
- color: #e1a7a3 !important;
9465
+ color: rgb(225, 167, 162.6) !important;
9461
9466
  }
9462
9467
 
9463
9468
  .text-danger-300 {
9464
9469
  --bs-text-opacity: 1;
9465
- color: #d27b74 !important;
9470
+ color: rgb(210, 123, 116.4) !important;
9466
9471
  }
9467
9472
 
9468
9473
  .text-danger-400 {
9469
9474
  --bs-text-opacity: 1;
9470
- color: #c34f46 !important;
9475
+ color: rgb(195, 79, 70.2) !important;
9471
9476
  }
9472
9477
 
9473
9478
  .text-danger-450 {
9474
9479
  --bs-text-opacity: 1;
9475
- color: #bc392f !important;
9480
+ color: rgb(187.5, 57, 47.1) !important;
9476
9481
  }
9477
9482
 
9478
9483
  .text-danger-500 {
@@ -9482,22 +9487,22 @@ textarea.form-control-lg {
9482
9487
 
9483
9488
  .text-danger-600 {
9484
9489
  --bs-text-opacity: 1;
9485
- color: #901c13 !important;
9490
+ color: rgb(144, 28, 19.2) !important;
9486
9491
  }
9487
9492
 
9488
9493
  .text-danger-700 {
9489
9494
  --bs-text-opacity: 1;
9490
- color: #6c150e !important;
9495
+ color: rgb(108, 21, 14.4) !important;
9491
9496
  }
9492
9497
 
9493
9498
  .text-danger-800 {
9494
9499
  --bs-text-opacity: 1;
9495
- color: #480e0a !important;
9500
+ color: rgb(72, 14, 9.6) !important;
9496
9501
  }
9497
9502
 
9498
9503
  .text-danger-900 {
9499
9504
  --bs-text-opacity: 1;
9500
- color: #240705 !important;
9505
+ color: rgb(36, 7, 4.8) !important;
9501
9506
  }
9502
9507
 
9503
9508
  .text-opacity-25 {
@@ -9787,332 +9792,332 @@ textarea.form-control-lg {
9787
9792
 
9788
9793
  .bg-foundation-100 {
9789
9794
  --bs-bg-opacity: 1;
9790
- background-color: #d2d2dc !important;
9795
+ background-color: rgb(209.8, 210.2, 220) !important;
9791
9796
  }
9792
9797
 
9793
9798
  .bg-foundation-200 {
9794
9799
  --bs-bg-opacity: 1;
9795
- background-color: #a5a5b9 !important;
9800
+ background-color: rgb(164.6, 165.4, 185) !important;
9796
9801
  }
9797
9802
 
9798
9803
  .bg-foundation-300 {
9799
9804
  --bs-bg-opacity: 1;
9800
- background-color: #777996 !important;
9805
+ background-color: rgb(119.4, 120.6, 150) !important;
9801
9806
  }
9802
9807
 
9803
9808
  .bg-foundation-400 {
9804
9809
  --bs-bg-opacity: 1;
9805
- background-color: #4a4c73 !important;
9810
+ background-color: rgb(74.2, 75.8, 115) !important;
9806
9811
  }
9807
9812
 
9808
9813
  .bg-foundation-450 {
9809
9814
  --bs-bg-opacity: 1;
9810
- background-color: #343562 !important;
9815
+ background-color: rgb(51.6, 53.4, 97.5) !important;
9811
9816
  }
9812
9817
 
9813
9818
  .bg-foundation-500 {
9814
9819
  --bs-bg-opacity: 1;
9815
- background-color: #1D1F50 !important;
9820
+ background-color: #1d1f50 !important;
9816
9821
  }
9817
9822
 
9818
9823
  .bg-foundation-600 {
9819
9824
  --bs-bg-opacity: 1;
9820
- background-color: #171940 !important;
9825
+ background-color: rgb(23.2, 24.8, 64) !important;
9821
9826
  }
9822
9827
 
9823
9828
  .bg-foundation-700 {
9824
9829
  --bs-bg-opacity: 1;
9825
- background-color: #111330 !important;
9830
+ background-color: rgb(17.4, 18.6, 48) !important;
9826
9831
  }
9827
9832
 
9828
9833
  .bg-foundation-800 {
9829
9834
  --bs-bg-opacity: 1;
9830
- background-color: #0c0c20 !important;
9835
+ background-color: rgb(11.6, 12.4, 32) !important;
9831
9836
  }
9832
9837
 
9833
9838
  .bg-foundation-900 {
9834
9839
  --bs-bg-opacity: 1;
9835
- background-color: #060610 !important;
9840
+ background-color: rgb(5.8, 6.2, 16) !important;
9836
9841
  }
9837
9842
 
9838
9843
  .bg-blueprint-100 {
9839
9844
  --bs-bg-opacity: 1;
9840
- background-color: #d8dcec !important;
9845
+ background-color: rgb(216.4, 220.2, 236.4) !important;
9841
9846
  }
9842
9847
 
9843
9848
  .bg-blueprint-200 {
9844
9849
  --bs-bg-opacity: 1;
9845
- background-color: #b2b9da !important;
9850
+ background-color: rgb(177.8, 185.4, 217.8) !important;
9846
9851
  }
9847
9852
 
9848
9853
  .bg-blueprint-300 {
9849
9854
  --bs-bg-opacity: 1;
9850
- background-color: #8b97c7 !important;
9855
+ background-color: rgb(139.2, 150.6, 199.2) !important;
9851
9856
  }
9852
9857
 
9853
9858
  .bg-blueprint-400 {
9854
9859
  --bs-bg-opacity: 1;
9855
- background-color: #6574b5 !important;
9860
+ background-color: rgb(100.6, 115.8, 180.6) !important;
9856
9861
  }
9857
9862
 
9858
9863
  .bg-blueprint-450 {
9859
9864
  --bs-bg-opacity: 1;
9860
- background-color: #5162ab !important;
9865
+ background-color: rgb(81.3, 98.4, 171.3) !important;
9861
9866
  }
9862
9867
 
9863
9868
  .bg-blueprint-500 {
9864
9869
  --bs-bg-opacity: 1;
9865
- background-color: #3E51A2 !important;
9870
+ background-color: #3e51a2 !important;
9866
9871
  }
9867
9872
 
9868
9873
  .bg-blueprint-600 {
9869
9874
  --bs-bg-opacity: 1;
9870
- background-color: #324182 !important;
9875
+ background-color: rgb(49.6, 64.8, 129.6) !important;
9871
9876
  }
9872
9877
 
9873
9878
  .bg-blueprint-700 {
9874
9879
  --bs-bg-opacity: 1;
9875
- background-color: #253161 !important;
9880
+ background-color: rgb(37.2, 48.6, 97.2) !important;
9876
9881
  }
9877
9882
 
9878
9883
  .bg-blueprint-800 {
9879
9884
  --bs-bg-opacity: 1;
9880
- background-color: #192041 !important;
9885
+ background-color: rgb(24.8, 32.4, 64.8) !important;
9881
9886
  }
9882
9887
 
9883
9888
  .bg-blueprint-900 {
9884
9889
  --bs-bg-opacity: 1;
9885
- background-color: #0c1020 !important;
9890
+ background-color: rgb(12.4, 16.2, 32.4) !important;
9886
9891
  }
9887
9892
 
9888
9893
  .bg-entryway-100 {
9889
9894
  --bs-bg-opacity: 1;
9890
- background-color: #d8e5f2 !important;
9895
+ background-color: rgb(215.8, 228.6, 242.2) !important;
9891
9896
  }
9892
9897
 
9893
9898
  .bg-entryway-200 {
9894
9899
  --bs-bg-opacity: 1;
9895
- background-color: #b1cae5 !important;
9900
+ background-color: rgb(176.6, 202.2, 229.4) !important;
9896
9901
  }
9897
9902
 
9898
9903
  .bg-entryway-300 {
9899
9904
  --bs-bg-opacity: 1;
9900
- background-color: #89b0d9 !important;
9905
+ background-color: rgb(137.4, 175.8, 216.6) !important;
9901
9906
  }
9902
9907
 
9903
9908
  .bg-entryway-400 {
9904
9909
  --bs-bg-opacity: 1;
9905
- background-color: #6295cc !important;
9910
+ background-color: rgb(98.2, 149.4, 203.8) !important;
9906
9911
  }
9907
9912
 
9908
9913
  .bg-entryway-450 {
9909
9914
  --bs-bg-opacity: 1;
9910
- background-color: #4f88c5 !important;
9915
+ background-color: rgb(78.6, 136.2, 197.4) !important;
9911
9916
  }
9912
9917
 
9913
9918
  .bg-entryway-500 {
9914
9919
  --bs-bg-opacity: 1;
9915
- background-color: #3B7BBF !important;
9920
+ background-color: #3b7bbf !important;
9916
9921
  }
9917
9922
 
9918
9923
  .bg-entryway-600 {
9919
9924
  --bs-bg-opacity: 1;
9920
- background-color: #2f6299 !important;
9925
+ background-color: rgb(47.2, 98.4, 152.8) !important;
9921
9926
  }
9922
9927
 
9923
9928
  .bg-entryway-700 {
9924
9929
  --bs-bg-opacity: 1;
9925
- background-color: #234a73 !important;
9930
+ background-color: rgb(35.4, 73.8, 114.6) !important;
9926
9931
  }
9927
9932
 
9928
9933
  .bg-entryway-800 {
9929
9934
  --bs-bg-opacity: 1;
9930
- background-color: #18314c !important;
9935
+ background-color: rgb(23.6, 49.2, 76.4) !important;
9931
9936
  }
9932
9937
 
9933
9938
  .bg-entryway-900 {
9934
9939
  --bs-bg-opacity: 1;
9935
- background-color: #0c1926 !important;
9940
+ background-color: rgb(11.8, 24.6, 38.2) !important;
9936
9941
  }
9937
9942
 
9938
9943
  .bg-turnkey-100 {
9939
9944
  --bs-bg-opacity: 1;
9940
- background-color: #e0daf6 !important;
9945
+ background-color: rgb(223.8, 218, 246.2) !important;
9941
9946
  }
9942
9947
 
9943
9948
  .bg-turnkey-200 {
9944
9949
  --bs-bg-opacity: 1;
9945
- background-color: #c1b5ed !important;
9950
+ background-color: rgb(192.6, 181, 237.4) !important;
9946
9951
  }
9947
9952
 
9948
9953
  .bg-turnkey-300 {
9949
9954
  --bs-bg-opacity: 1;
9950
- background-color: #a190e5 !important;
9955
+ background-color: rgb(161.4, 144, 228.6) !important;
9951
9956
  }
9952
9957
 
9953
9958
  .bg-turnkey-400 {
9954
9959
  --bs-bg-opacity: 1;
9955
- background-color: #826bdc !important;
9960
+ background-color: rgb(130.2, 107, 219.8) !important;
9956
9961
  }
9957
9962
 
9958
9963
  .bg-turnkey-450 {
9959
9964
  --bs-bg-opacity: 1;
9960
- background-color: #7359d7 !important;
9965
+ background-color: rgb(114.6, 88.5, 215.4) !important;
9961
9966
  }
9962
9967
 
9963
9968
  .bg-turnkey-500 {
9964
9969
  --bs-bg-opacity: 1;
9965
- background-color: #6346D3 !important;
9970
+ background-color: #6346d3 !important;
9966
9971
  }
9967
9972
 
9968
9973
  .bg-turnkey-600 {
9969
9974
  --bs-bg-opacity: 1;
9970
- background-color: #4f38a9 !important;
9975
+ background-color: rgb(79.2, 56, 168.8) !important;
9971
9976
  }
9972
9977
 
9973
9978
  .bg-turnkey-700 {
9974
9979
  --bs-bg-opacity: 1;
9975
- background-color: #3b2a7f !important;
9980
+ background-color: rgb(59.4, 42, 126.6) !important;
9976
9981
  }
9977
9982
 
9978
9983
  .bg-turnkey-800 {
9979
9984
  --bs-bg-opacity: 1;
9980
- background-color: #281c54 !important;
9985
+ background-color: rgb(39.6, 28, 84.4) !important;
9981
9986
  }
9982
9987
 
9983
9988
  .bg-turnkey-900 {
9984
9989
  --bs-bg-opacity: 1;
9985
- background-color: #140e2a !important;
9990
+ background-color: rgb(19.8, 14, 42.2) !important;
9986
9991
  }
9987
9992
 
9988
9993
  .bg-sunglow-100 {
9989
9994
  --bs-bg-opacity: 1;
9990
- background-color: #fef5d5 !important;
9995
+ background-color: rgb(254.2, 245, 213.4) !important;
9991
9996
  }
9992
9997
 
9993
9998
  .bg-sunglow-200 {
9994
9999
  --bs-bg-opacity: 1;
9995
- background-color: #fdebac !important;
10000
+ background-color: rgb(253.4, 235, 171.8) !important;
9996
10001
  }
9997
10002
 
9998
10003
  .bg-sunglow-300 {
9999
10004
  --bs-bg-opacity: 1;
10000
- background-color: #fde182 !important;
10005
+ background-color: rgb(252.6, 225, 130.2) !important;
10001
10006
  }
10002
10007
 
10003
10008
  .bg-sunglow-400 {
10004
10009
  --bs-bg-opacity: 1;
10005
- background-color: #fcd759 !important;
10010
+ background-color: rgb(251.8, 215, 88.6) !important;
10006
10011
  }
10007
10012
 
10008
10013
  .bg-sunglow-450 {
10009
10014
  --bs-bg-opacity: 1;
10010
- background-color: #fbd244 !important;
10015
+ background-color: rgb(251.4, 210, 67.8) !important;
10011
10016
  }
10012
10017
 
10013
10018
  .bg-sunglow-500 {
10014
10019
  --bs-bg-opacity: 1;
10015
- background-color: #FBCD2F !important;
10020
+ background-color: #fbcd2f !important;
10016
10021
  }
10017
10022
 
10018
10023
  .bg-sunglow-600 {
10019
10024
  --bs-bg-opacity: 1;
10020
- background-color: #c9a426 !important;
10025
+ background-color: rgb(200.8, 164, 37.6) !important;
10021
10026
  }
10022
10027
 
10023
10028
  .bg-sunglow-700 {
10024
10029
  --bs-bg-opacity: 1;
10025
- background-color: #977b1c !important;
10030
+ background-color: rgb(150.6, 123, 28.2) !important;
10026
10031
  }
10027
10032
 
10028
10033
  .bg-sunglow-800 {
10029
10034
  --bs-bg-opacity: 1;
10030
- background-color: #645213 !important;
10035
+ background-color: rgb(100.4, 82, 18.8) !important;
10031
10036
  }
10032
10037
 
10033
10038
  .bg-sunglow-900 {
10034
10039
  --bs-bg-opacity: 1;
10035
- background-color: #322909 !important;
10040
+ background-color: rgb(50.2, 41, 9.4) !important;
10036
10041
  }
10037
10042
 
10038
10043
  .bg-warning-100 {
10039
10044
  --bs-bg-opacity: 1;
10040
- background-color: #fef5d5 !important;
10045
+ background-color: rgb(254.2, 245, 213.4) !important;
10041
10046
  }
10042
10047
 
10043
10048
  .bg-warning-200 {
10044
10049
  --bs-bg-opacity: 1;
10045
- background-color: #fdebac !important;
10050
+ background-color: rgb(253.4, 235, 171.8) !important;
10046
10051
  }
10047
10052
 
10048
10053
  .bg-warning-300 {
10049
10054
  --bs-bg-opacity: 1;
10050
- background-color: #fde182 !important;
10055
+ background-color: rgb(252.6, 225, 130.2) !important;
10051
10056
  }
10052
10057
 
10053
10058
  .bg-warning-400 {
10054
10059
  --bs-bg-opacity: 1;
10055
- background-color: #fcd759 !important;
10060
+ background-color: rgb(251.8, 215, 88.6) !important;
10056
10061
  }
10057
10062
 
10058
10063
  .bg-warning-450 {
10059
10064
  --bs-bg-opacity: 1;
10060
- background-color: #fbd244 !important;
10065
+ background-color: rgb(251.4, 210, 67.8) !important;
10061
10066
  }
10062
10067
 
10063
10068
  .bg-warning-500 {
10064
10069
  --bs-bg-opacity: 1;
10065
- background-color: #FBCD2F !important;
10070
+ background-color: #fbcd2f !important;
10066
10071
  }
10067
10072
 
10068
10073
  .bg-warning-600 {
10069
10074
  --bs-bg-opacity: 1;
10070
- background-color: #c9a426 !important;
10075
+ background-color: rgb(200.8, 164, 37.6) !important;
10071
10076
  }
10072
10077
 
10073
10078
  .bg-warning-700 {
10074
10079
  --bs-bg-opacity: 1;
10075
- background-color: #977b1c !important;
10080
+ background-color: rgb(150.6, 123, 28.2) !important;
10076
10081
  }
10077
10082
 
10078
10083
  .bg-warning-800 {
10079
10084
  --bs-bg-opacity: 1;
10080
- background-color: #645213 !important;
10085
+ background-color: rgb(100.4, 82, 18.8) !important;
10081
10086
  }
10082
10087
 
10083
10088
  .bg-warning-900 {
10084
10089
  --bs-bg-opacity: 1;
10085
- background-color: #322909 !important;
10090
+ background-color: rgb(50.2, 41, 9.4) !important;
10086
10091
  }
10087
10092
 
10088
10093
  .bg-25 {
10089
10094
  --bs-bg-opacity: 1;
10090
- background-color: #fcfcfc !important;
10095
+ background-color: rgb(251.9, 252.1, 252.45) !important;
10091
10096
  }
10092
10097
 
10093
10098
  .bg-50 {
10094
10099
  --bs-bg-opacity: 1;
10095
- background-color: #f9f9fa !important;
10100
+ background-color: rgb(248.8, 249.2, 249.9) !important;
10096
10101
  }
10097
10102
 
10098
10103
  .bg-100 {
10099
10104
  --bs-bg-opacity: 1;
10100
- background-color: #f3f3f5 !important;
10105
+ background-color: rgb(242.6, 243.4, 244.8) !important;
10101
10106
  }
10102
10107
 
10103
10108
  .bg-200 {
10104
10109
  --bs-bg-opacity: 1;
10105
- background-color: #e6e8eb !important;
10110
+ background-color: rgb(230.2, 231.8, 234.6) !important;
10106
10111
  }
10107
10112
 
10108
10113
  .bg-300 {
10109
10114
  --bs-bg-opacity: 1;
10110
- background-color: #dadce0 !important;
10115
+ background-color: rgb(217.8, 220.2, 224.4) !important;
10111
10116
  }
10112
10117
 
10113
10118
  .bg-400 {
10114
10119
  --bs-bg-opacity: 1;
10115
- background-color: #cdd1d6 !important;
10120
+ background-color: rgb(205.4, 208.6, 214.2) !important;
10116
10121
  }
10117
10122
 
10118
10123
  .bg-500 {
@@ -10122,52 +10127,52 @@ textarea.form-control-lg {
10122
10127
 
10123
10128
  .bg-600 {
10124
10129
  --bs-bg-opacity: 1;
10125
- background-color: #9a9ea3 !important;
10130
+ background-color: rgb(154.4, 157.6, 163.2) !important;
10126
10131
  }
10127
10132
 
10128
10133
  .bg-700 {
10129
10134
  --bs-bg-opacity: 1;
10130
- background-color: #74767a !important;
10135
+ background-color: rgb(115.8, 118.2, 122.4) !important;
10131
10136
  }
10132
10137
 
10133
10138
  .bg-800 {
10134
10139
  --bs-bg-opacity: 1;
10135
- background-color: #4d4f52 !important;
10140
+ background-color: rgb(77.2, 78.8, 81.6) !important;
10136
10141
  }
10137
10142
 
10138
10143
  .bg-900 {
10139
10144
  --bs-bg-opacity: 1;
10140
- background-color: #272729 !important;
10145
+ background-color: rgb(38.6, 39.4, 40.8) !important;
10141
10146
  }
10142
10147
 
10143
10148
  .bg-success-25 {
10144
10149
  --bs-bg-opacity: 1;
10145
- background-color: #f2f8f6 !important;
10150
+ background-color: rgb(242.35, 248.35, 245.85) !important;
10146
10151
  }
10147
10152
 
10148
10153
  .bg-success-100 {
10149
10154
  --bs-bg-opacity: 1;
10150
- background-color: #cce4da !important;
10155
+ background-color: rgb(204.4, 228.4, 218.4) !important;
10151
10156
  }
10152
10157
 
10153
10158
  .bg-success-200 {
10154
10159
  --bs-bg-opacity: 1;
10155
- background-color: #9acab6 !important;
10160
+ background-color: rgb(153.8, 201.8, 181.8) !important;
10156
10161
  }
10157
10162
 
10158
10163
  .bg-success-300 {
10159
10164
  --bs-bg-opacity: 1;
10160
- background-color: #67af91 !important;
10165
+ background-color: rgb(103.2, 175.2, 145.2) !important;
10161
10166
  }
10162
10167
 
10163
10168
  .bg-success-400 {
10164
10169
  --bs-bg-opacity: 1;
10165
- background-color: #35956d !important;
10170
+ background-color: rgb(52.6, 148.6, 108.6) !important;
10166
10171
  }
10167
10172
 
10168
10173
  .bg-success-450 {
10169
10174
  --bs-bg-opacity: 1;
10170
- background-color: #1b875a !important;
10175
+ background-color: rgb(27.3, 135.3, 90.3) !important;
10171
10176
  }
10172
10177
 
10173
10178
  .bg-success-500 {
@@ -10177,52 +10182,52 @@ textarea.form-control-lg {
10177
10182
 
10178
10183
  .bg-success-600 {
10179
10184
  --bs-bg-opacity: 1;
10180
- background-color: #02623a !important;
10185
+ background-color: rgb(1.6, 97.6, 57.6) !important;
10181
10186
  }
10182
10187
 
10183
10188
  .bg-success-700 {
10184
10189
  --bs-bg-opacity: 1;
10185
- background-color: #01492b !important;
10190
+ background-color: rgb(1.2, 73.2, 43.2) !important;
10186
10191
  }
10187
10192
 
10188
10193
  .bg-success-800 {
10189
10194
  --bs-bg-opacity: 1;
10190
- background-color: #01311d !important;
10195
+ background-color: rgb(0.8, 48.8, 28.8) !important;
10191
10196
  }
10192
10197
 
10193
10198
  .bg-success-900 {
10194
10199
  --bs-bg-opacity: 1;
10195
- background-color: #00180e !important;
10200
+ background-color: rgb(0.4, 24.4, 14.4) !important;
10196
10201
  }
10197
10202
 
10198
10203
  .bg-danger-25 {
10199
10204
  --bs-bg-opacity: 1;
10200
- background-color: #fbf4f3 !important;
10205
+ background-color: rgb(251.25, 244, 243.45) !important;
10201
10206
  }
10202
10207
 
10203
10208
  .bg-danger-100 {
10204
10209
  --bs-bg-opacity: 1;
10205
- background-color: #f0d3d1 !important;
10210
+ background-color: rgb(240, 211, 208.8) !important;
10206
10211
  }
10207
10212
 
10208
10213
  .bg-danger-200 {
10209
10214
  --bs-bg-opacity: 1;
10210
- background-color: #e1a7a3 !important;
10215
+ background-color: rgb(225, 167, 162.6) !important;
10211
10216
  }
10212
10217
 
10213
10218
  .bg-danger-300 {
10214
10219
  --bs-bg-opacity: 1;
10215
- background-color: #d27b74 !important;
10220
+ background-color: rgb(210, 123, 116.4) !important;
10216
10221
  }
10217
10222
 
10218
10223
  .bg-danger-400 {
10219
10224
  --bs-bg-opacity: 1;
10220
- background-color: #c34f46 !important;
10225
+ background-color: rgb(195, 79, 70.2) !important;
10221
10226
  }
10222
10227
 
10223
10228
  .bg-danger-450 {
10224
10229
  --bs-bg-opacity: 1;
10225
- background-color: #bc392f !important;
10230
+ background-color: rgb(187.5, 57, 47.1) !important;
10226
10231
  }
10227
10232
 
10228
10233
  .bg-danger-500 {
@@ -10232,22 +10237,22 @@ textarea.form-control-lg {
10232
10237
 
10233
10238
  .bg-danger-600 {
10234
10239
  --bs-bg-opacity: 1;
10235
- background-color: #901c13 !important;
10240
+ background-color: rgb(144, 28, 19.2) !important;
10236
10241
  }
10237
10242
 
10238
10243
  .bg-danger-700 {
10239
10244
  --bs-bg-opacity: 1;
10240
- background-color: #6c150e !important;
10245
+ background-color: rgb(108, 21, 14.4) !important;
10241
10246
  }
10242
10247
 
10243
10248
  .bg-danger-800 {
10244
10249
  --bs-bg-opacity: 1;
10245
- background-color: #480e0a !important;
10250
+ background-color: rgb(72, 14, 9.6) !important;
10246
10251
  }
10247
10252
 
10248
10253
  .bg-danger-900 {
10249
10254
  --bs-bg-opacity: 1;
10250
- background-color: #240705 !important;
10255
+ background-color: rgb(36, 7, 4.8) !important;
10251
10256
  }
10252
10257
 
10253
10258
  .bg-opacity-10 {
@@ -38383,17 +38388,17 @@ readers do not read off random characters that represent icons */
38383
38388
  }
38384
38389
 
38385
38390
  .btn-link-primary {
38386
- --bs-btn-color: #3E51A2;
38391
+ --bs-btn-color: #3e51a2;
38387
38392
  --bs-btn-bg: transparent;
38388
38393
  --bs-btn-border-color: transparent;
38389
- --bs-btn-hover-color: #3E51A2;
38390
- --bs-btn-hover-bg: #eceef6;
38394
+ --bs-btn-hover-color: #3e51a2;
38395
+ --bs-btn-hover-bg: rgb(235.7, 237.6, 245.7);
38391
38396
  --bs-btn-hover-border-color: transparent;
38392
- --bs-btn-active-bg: #253161;
38397
+ --bs-btn-active-bg: rgb(37.2, 48.6, 97.2);
38393
38398
  --bs-btn-active-color: #fff;
38394
38399
  --bs-btn-active-border-color: transparent;
38395
38400
  --bs-btn-disabled-bg: transparent;
38396
- --bs-btn-disabled-color: #dadce0;
38401
+ --bs-btn-disabled-color: rgb(217.8, 220.2, 224.4);
38397
38402
  --bs-btn-disabled-border-color: transparent;
38398
38403
  --bs-btn-focus-shadow-rgb: 91, 107, 176;
38399
38404
  text-decoration: none;
@@ -38401,15 +38406,15 @@ readers do not read off random characters that represent icons */
38401
38406
 
38402
38407
  .btn-primary {
38403
38408
  --bs-btn-color: #fff;
38404
- --bs-btn-bg: #3E51A2;
38405
- --bs-btn-border-color: #3E51A2;
38409
+ --bs-btn-bg: #3e51a2;
38410
+ --bs-btn-border-color: #3e51a2;
38406
38411
  --bs-btn-hover-color: #fff;
38407
- --bs-btn-hover-bg: #324182;
38408
- --bs-btn-hover-border-color: #324182;
38412
+ --bs-btn-hover-bg: rgb(49.6, 64.8, 129.6);
38413
+ --bs-btn-hover-border-color: rgb(49.6, 64.8, 129.6);
38409
38414
  --bs-btn-focus-shadow-rgb: 91, 107, 176;
38410
38415
  --bs-btn-active-color: #fff;
38411
- --bs-btn-active-bg: #253161;
38412
- --bs-btn-active-border-color: #253161;
38416
+ --bs-btn-active-bg: rgb(37.2, 48.6, 97.2);
38417
+ --bs-btn-active-border-color: rgb(37.2, 48.6, 97.2);
38413
38418
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
38414
38419
  --bs-btn-disabled-color: #fff;
38415
38420
  --bs-btn-disabled-bg: #3e51a2;
@@ -38418,15 +38423,15 @@ readers do not read off random characters that represent icons */
38418
38423
 
38419
38424
  .btn-secondary {
38420
38425
  --bs-btn-color: #000;
38421
- --bs-btn-bg: #3B7BBF;
38422
- --bs-btn-border-color: #3B7BBF;
38426
+ --bs-btn-bg: #3b7bbf;
38427
+ --bs-btn-border-color: #3b7bbf;
38423
38428
  --bs-btn-hover-color: #fff;
38424
- --bs-btn-hover-bg: #2f6299;
38425
- --bs-btn-hover-border-color: #2f6299;
38429
+ --bs-btn-hover-bg: rgb(47.2, 98.4, 152.8);
38430
+ --bs-btn-hover-border-color: rgb(47.2, 98.4, 152.8);
38426
38431
  --bs-btn-focus-shadow-rgb: 50, 105, 162;
38427
38432
  --bs-btn-active-color: #fff;
38428
- --bs-btn-active-bg: #234a73;
38429
- --bs-btn-active-border-color: #234a73;
38433
+ --bs-btn-active-bg: rgb(35.4, 73.8, 114.6);
38434
+ --bs-btn-active-border-color: rgb(35.4, 73.8, 114.6);
38430
38435
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
38431
38436
  --bs-btn-disabled-color: #fff;
38432
38437
  --bs-btn-disabled-bg: #3b7bbf;
@@ -38435,15 +38440,15 @@ readers do not read off random characters that represent icons */
38435
38440
 
38436
38441
  .btn-tertiary {
38437
38442
  --bs-btn-color: #000;
38438
- --bs-btn-bg: #CDECF9;
38439
- --bs-btn-border-color: #CDECF9;
38443
+ --bs-btn-bg: #cdecf9;
38444
+ --bs-btn-border-color: #cdecf9;
38440
38445
  --bs-btn-hover-color: #000;
38441
- --bs-btn-hover-bg: #a4bdc7;
38442
- --bs-btn-hover-border-color: #a4bdc7;
38446
+ --bs-btn-hover-bg: rgb(164, 188.8, 199.2);
38447
+ --bs-btn-hover-border-color: rgb(164, 188.8, 199.2);
38443
38448
  --bs-btn-focus-shadow-rgb: 174, 201, 212;
38444
38449
  --bs-btn-active-color: #000;
38445
- --bs-btn-active-bg: #7b8e95;
38446
- --bs-btn-active-border-color: #7b8e95;
38450
+ --bs-btn-active-bg: rgb(123, 141.6, 149.4);
38451
+ --bs-btn-active-border-color: rgb(123, 141.6, 149.4);
38447
38452
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
38448
38453
  --bs-btn-disabled-color: #fff;
38449
38454
  --bs-btn-disabled-bg: #cdecf9;
@@ -38455,12 +38460,12 @@ readers do not read off random characters that represent icons */
38455
38460
  --bs-btn-bg: #027a48;
38456
38461
  --bs-btn-border-color: #027a48;
38457
38462
  --bs-btn-hover-color: #fff;
38458
- --bs-btn-hover-bg: #02623a;
38459
- --bs-btn-hover-border-color: #02623a;
38463
+ --bs-btn-hover-bg: rgb(1.6, 97.6, 57.6);
38464
+ --bs-btn-hover-border-color: rgb(1.6, 97.6, 57.6);
38460
38465
  --bs-btn-focus-shadow-rgb: 40, 142, 99;
38461
38466
  --bs-btn-active-color: #fff;
38462
- --bs-btn-active-bg: #01492b;
38463
- --bs-btn-active-border-color: #01492b;
38467
+ --bs-btn-active-bg: rgb(1.2, 73.2, 43.2);
38468
+ --bs-btn-active-border-color: rgb(1.2, 73.2, 43.2);
38464
38469
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
38465
38470
  --bs-btn-disabled-color: #fff;
38466
38471
  --bs-btn-disabled-bg: #027a48;
@@ -38469,15 +38474,15 @@ readers do not read off random characters that represent icons */
38469
38474
 
38470
38475
  .btn-action {
38471
38476
  --bs-btn-color: #fff;
38472
- --bs-btn-bg: #6346D3;
38473
- --bs-btn-border-color: #6346D3;
38477
+ --bs-btn-bg: #6346d3;
38478
+ --bs-btn-border-color: #6346d3;
38474
38479
  --bs-btn-hover-color: #fff;
38475
- --bs-btn-hover-bg: #4f38a9;
38476
- --bs-btn-hover-border-color: #4f38a9;
38480
+ --bs-btn-hover-bg: rgb(79.2, 56, 168.8);
38481
+ --bs-btn-hover-border-color: rgb(79.2, 56, 168.8);
38477
38482
  --bs-btn-focus-shadow-rgb: 122, 98, 218;
38478
38483
  --bs-btn-active-color: #fff;
38479
- --bs-btn-active-bg: #3b2a7f;
38480
- --bs-btn-active-border-color: #3b2a7f;
38484
+ --bs-btn-active-bg: rgb(59.4, 42, 126.6);
38485
+ --bs-btn-active-border-color: rgb(59.4, 42, 126.6);
38481
38486
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
38482
38487
  --bs-btn-disabled-color: #fff;
38483
38488
  --bs-btn-disabled-bg: #6346d3;
@@ -38486,15 +38491,15 @@ readers do not read off random characters that represent icons */
38486
38491
 
38487
38492
  .btn-warning {
38488
38493
  --bs-btn-color: #000;
38489
- --bs-btn-bg: #FBCD2F;
38490
- --bs-btn-border-color: #FBCD2F;
38494
+ --bs-btn-bg: #fbcd2f;
38495
+ --bs-btn-border-color: #fbcd2f;
38491
38496
  --bs-btn-hover-color: #000;
38492
- --bs-btn-hover-bg: #c9a426;
38493
- --bs-btn-hover-border-color: #c9a426;
38497
+ --bs-btn-hover-bg: rgb(200.8, 164, 37.6);
38498
+ --bs-btn-hover-border-color: rgb(200.8, 164, 37.6);
38494
38499
  --bs-btn-focus-shadow-rgb: 213, 174, 40;
38495
38500
  --bs-btn-active-color: #000;
38496
- --bs-btn-active-bg: #977b1c;
38497
- --bs-btn-active-border-color: #977b1c;
38501
+ --bs-btn-active-bg: rgb(150.6, 123, 28.2);
38502
+ --bs-btn-active-border-color: rgb(150.6, 123, 28.2);
38498
38503
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
38499
38504
  --bs-btn-disabled-color: #fff;
38500
38505
  --bs-btn-disabled-bg: #fbcd2f;
@@ -38506,12 +38511,12 @@ readers do not read off random characters that represent icons */
38506
38511
  --bs-btn-bg: #b42318;
38507
38512
  --bs-btn-border-color: #b42318;
38508
38513
  --bs-btn-hover-color: #fff;
38509
- --bs-btn-hover-bg: #901c13;
38510
- --bs-btn-hover-border-color: #901c13;
38514
+ --bs-btn-hover-bg: rgb(144, 28, 19.2);
38515
+ --bs-btn-hover-border-color: rgb(144, 28, 19.2);
38511
38516
  --bs-btn-focus-shadow-rgb: 191, 68, 59;
38512
38517
  --bs-btn-active-color: #fff;
38513
- --bs-btn-active-bg: #6c150e;
38514
- --bs-btn-active-border-color: #6c150e;
38518
+ --bs-btn-active-bg: rgb(108, 21, 14.4);
38519
+ --bs-btn-active-border-color: rgb(108, 21, 14.4);
38515
38520
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
38516
38521
  --bs-btn-disabled-color: #fff;
38517
38522
  --bs-btn-disabled-bg: #b42318;
@@ -38537,19 +38542,19 @@ readers do not read off random characters that represent icons */
38537
38542
 
38538
38543
  .btn-dark {
38539
38544
  --bs-btn-color: #fff;
38540
- --bs-btn-bg: #272729;
38541
- --bs-btn-border-color: #272729;
38545
+ --bs-btn-bg: rgb(38.6, 39.4, 40.8);
38546
+ --bs-btn-border-color: rgb(38.6, 39.4, 40.8);
38542
38547
  --bs-btn-hover-color: #fff;
38543
- --bs-btn-hover-bg: #1f1f21;
38544
- --bs-btn-hover-border-color: #1f1f21;
38545
- --bs-btn-focus-shadow-rgb: 71, 71, 73;
38548
+ --bs-btn-hover-bg: rgb(30.88, 31.52, 32.64);
38549
+ --bs-btn-hover-border-color: rgb(30.88, 31.52, 32.64);
38550
+ --bs-btn-focus-shadow-rgb: 71, 72, 73;
38546
38551
  --bs-btn-active-color: #fff;
38547
- --bs-btn-active-bg: #171719;
38548
- --bs-btn-active-border-color: #171719;
38552
+ --bs-btn-active-bg: rgb(23.16, 23.64, 24.48);
38553
+ --bs-btn-active-border-color: rgb(23.16, 23.64, 24.48);
38549
38554
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
38550
38555
  --bs-btn-disabled-color: #fff;
38551
- --bs-btn-disabled-bg: #272729;
38552
- --bs-btn-disabled-border-color: #272729;
38556
+ --bs-btn-disabled-bg: rgb(38.6, 39.4, 40.8);
38557
+ --bs-btn-disabled-border-color: rgb(38.6, 39.4, 40.8);
38553
38558
  }
38554
38559
 
38555
38560
  .btn-outline-light {
@@ -38574,8 +38579,8 @@ readers do not read off random characters that represent icons */
38574
38579
  }
38575
38580
 
38576
38581
  .accordion-alt {
38577
- --bs-accordion-alt-bg: #f9f9fa;
38578
- --bs-accordion-alt-btn-bg: #f9f9fa;
38582
+ --bs-accordion-alt-bg: rgb(248.8, 249.2, 249.9);
38583
+ --bs-accordion-alt-btn-bg: rgb(248.8, 249.2, 249.9);
38579
38584
  --bs-accordion-alt-border-radius: var(--bs-border-radius-lg);
38580
38585
  --bs-accordion-alt-btn-icon-width: 1.375rem;
38581
38586
  --bs-accordion-alt-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22' fill='%23212529'%3e%3cpath d='M12.6923 1.69231C12.6923 0.75625 11.9361 0 11 0C10.0639 0 9.30769 0.75625 9.30769 1.69231V9.30769H1.69231C0.75625 9.30769 0 10.0639 0 11C0 11.9361 0.75625 12.6923 1.69231 12.6923H9.30769V20.3077C9.30769 21.2438 10.0639 22 11 22C11.9361 22 12.6923 21.2438 12.6923 20.3077V12.6923H20.3077C21.2438 12.6923 22 11.9361 22 11C22 10.0639 21.2438 9.30769 20.3077 9.30769H12.6923V1.69231Z'/%3e%3c/svg%3e");
@@ -38583,13 +38588,13 @@ readers do not read off random characters that represent icons */
38583
38588
  --bs-accordion-alt-active-color: var(--bs-primary-text-emphasis);
38584
38589
  }
38585
38590
  .accordion-alt .accordion-button {
38586
- background-color: var(--bs-accordion-alt-btn-bg);
38587
38591
  margin-bottom: 0;
38592
+ background-color: var(--bs-accordion-alt-btn-bg);
38588
38593
  }
38589
38594
  .accordion-alt .accordion-button i {
38590
- margin-right: 0.5rem;
38591
38595
  width: var(--bs-accordion-alt-btn-icon-width);
38592
38596
  height: var(--bs-accordion-alt-btn-icon-width);
38597
+ margin-right: 0.5rem;
38593
38598
  }
38594
38599
  .accordion-alt .accordion-button:not(.collapsed) {
38595
38600
  color: var(--bs-accordion-alt-active-color);
@@ -38606,7 +38611,7 @@ readers do not read off random characters that represent icons */
38606
38611
  }
38607
38612
  .accordion-alt > .accordion-item {
38608
38613
  background-color: var(--bs-accordion-alt-bg);
38609
- border: none;
38614
+ border: 0;
38610
38615
  border-radius: var(--bs-accordion-alt-border-radius);
38611
38616
  }
38612
38617
  .accordion-alt > .accordion-item:not(:last-child) {
@@ -38650,9 +38655,9 @@ readers do not read off random characters that represent icons */
38650
38655
  }
38651
38656
 
38652
38657
  .alert-tertiary {
38653
- --bs-alert-color: #1D1F50;
38658
+ --bs-alert-color: #1d1f50;
38654
38659
  --bs-alert-bg: var(--bs-tertiary-bg-subtle);
38655
- --bs-alert-border-color: #cdd1d6;
38660
+ --bs-alert-border-color: rgb(205.4, 208.6, 214.2);
38656
38661
  --bs-alert-link-color: var(--bs-tertiary-text-emphasis);
38657
38662
  }
38658
38663
 
@@ -38699,8 +38704,8 @@ readers do not read off random characters that represent icons */
38699
38704
  }
38700
38705
 
38701
38706
  .badge-outline {
38702
- border: 0.125rem solid #3E51A2;
38703
- color: #3E51A2;
38707
+ color: #3e51a2;
38708
+ border: 0.125rem solid #3e51a2;
38704
38709
  }
38705
38710
 
38706
38711
  .badge-dot {
@@ -38725,8 +38730,8 @@ readers do not read off random characters that represent icons */
38725
38730
  padding-bottom: 0.75rem;
38726
38731
  }
38727
38732
  .carousel-item .carousel-caption h6, .carousel-item .carousel-caption .h6 {
38728
- color: #fff;
38729
38733
  margin-bottom: 0;
38734
+ color: #fff;
38730
38735
  }
38731
38736
 
38732
38737
  .carousel-caption-container {
@@ -38744,6 +38749,9 @@ readers do not read off random characters that represent icons */
38744
38749
  .carousel-control-prev,
38745
38750
  .carousel-control-next {
38746
38751
  position: unset;
38752
+ width: -moz-fit-content;
38753
+ width: fit-content;
38754
+ padding: 0.375rem;
38747
38755
  }
38748
38756
 
38749
38757
  .carousel-indicators {
@@ -38757,10 +38765,56 @@ readers do not read off random characters that represent icons */
38757
38765
  margin-right: 1.5rem;
38758
38766
  }
38759
38767
  }
38760
- .carousel-control-prev, .carousel-control-next {
38761
- width: -moz-fit-content;
38762
- width: fit-content;
38763
- padding: 0.375rem;
38768
+ .spinner-border {
38769
+ position: relative;
38770
+ background: none;
38771
+ border: 0;
38772
+ }
38773
+ .spinner-border .spinner-border-svg {
38774
+ width: 100%;
38775
+ height: 100%;
38776
+ }
38777
+
38778
+ .modal-dialog-media {
38779
+ --bs-modal-close-zindex: 1060;
38780
+ }
38781
+ .modal-dialog-media .modal-header {
38782
+ position: relative;
38783
+ padding: 0;
38784
+ border-bottom: none;
38785
+ }
38786
+ .modal-dialog-media .modal-header .btn-close {
38787
+ position: absolute;
38788
+ right: -1em;
38789
+ z-index: var(--bs-modal-close-zindex);
38790
+ width: 2.1875rem;
38791
+ height: 2.1875rem;
38792
+ text-shadow: 0 0 0.0625rem rgb(205.4, 208.6, 214.2);
38793
+ background: transparent var(--bs-btn-close-media-bg) center/2.1875rem 100% no-repeat;
38794
+ opacity: 0.97;
38795
+ }
38796
+ .modal-dialog-media .modal-header .btn-close:hover {
38797
+ opacity: 1;
38798
+ }
38799
+ .modal-dialog-media .modal-header .btn-close .cls-2:hover {
38800
+ fill: #1d1f50;
38801
+ }
38802
+ @media (max-width: 1199.98px) {
38803
+ .modal-dialog-media .modal-header .btn-close {
38804
+ right: 0;
38805
+ width: 0.625rem;
38806
+ height: 0.625rem;
38807
+ }
38808
+ }
38809
+ @media (max-width: 575.98px) {
38810
+ .modal-dialog-media {
38811
+ margin-right: 1.25rem;
38812
+ margin-left: 1.25rem;
38813
+ }
38814
+ }
38815
+
38816
+ .btn-close {
38817
+ --bs-btn-close-media-bg: url("data:image/svg+xml, %3csvg viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3e%3cstyle%3e.cls-1{fill:rgb%28205.4, 208.6, 214.2%29}.cls-2{fill:%23fff}.cls-3{fill:%231d1f50}%3c/style%3e%3cpath class='cls-1' d='M20 1.25C22.4623 1.25 24.9005 1.73498 27.1753 2.67726C29.4502 3.61953 31.5172 5.00065 33.2583 6.74175C34.9994 8.48285 36.3805 10.5498 37.3227 12.8247C38.265 15.0995 38.75 17.5377 38.75 20C38.75 22.4623 38.265 24.9005 37.3227 27.1753C36.3805 29.4502 34.9994 31.5172 33.2583 33.2583C31.5172 34.9994 29.4502 36.3805 27.1753 37.3227C24.9005 38.265 22.4623 38.75 20 38.75C17.5377 38.75 15.0995 38.265 12.8247 37.3227C10.5498 36.3805 8.48285 34.9994 6.74175 33.2583C5.00065 31.5172 3.61953 29.4502 2.67726 27.1753C1.73498 24.9005 1.25 22.4623 1.25 20C1.25 17.5377 1.73498 15.0995 2.67726 12.8247C3.61953 10.5498 5.00065 8.48285 6.74175 6.74175C8.48285 5.00065 10.5498 3.61953 12.8247 2.67726C15.0995 1.73498 17.5377 1.25 20 1.25ZM20 40C25.3043 40 30.3914 37.8929 34.1421 34.1421C37.8929 30.3914 40 25.3043 40 20C40 14.6957 37.8929 9.60859 34.1421 5.85786C30.3914 2.10714 25.3043 0 20 0C14.6957 0 9.60859 2.10714 5.85786 5.85786C2.10714 9.60859 0 14.6957 0 20C0 25.3043 2.10714 30.3914 5.85786 34.1421C9.60859 37.8929 14.6957 40 20 40Z'/%3e%3cpath class='cls-2' d='M1.25 20C1.25 22.4623 1.73498 24.9005 2.67726 27.1753C3.61953 29.4502 5.00065 31.5172 6.74175 33.2583C8.48285 34.9994 10.5498 36.3805 12.8247 37.3227C15.0995 38.265 17.5377 38.75 20 38.75C22.4623 38.75 24.9005 38.265 27.1753 37.3227C29.4502 36.3805 31.5172 34.9994 33.2583 33.2583C34.9994 31.5172 36.3805 29.4502 37.3227 27.1753C38.265 24.9005 38.75 22.4623 38.75 20C38.75 17.5377 38.265 15.0995 37.3227 12.8247C36.3805 10.5498 34.9994 8.48285 33.2583 6.74175C31.5172 5.00065 29.4502 3.61953 27.1753 2.67726C24.9005 1.73498 22.4623 1.25 20 1.25C17.5377 1.25 15.0995 1.73498 12.8247 2.67726C10.5498 3.61953 8.48285 5.00065 6.74175 6.74175C5.00065 8.48285 3.61953 10.5498 2.67726 12.8247C1.73498 15.0995 1.25 17.5377 1.25 20ZM13.9297 13.9297C14.1719 13.6875 14.5703 13.6875 14.8125 13.9297L20 19.1172L25.1797 13.9375C25.4219 13.6953 25.8203 13.6953 26.0625 13.9375C26.3047 14.1797 26.3047 14.5781 26.0625 14.8203L20.8828 20L26.0625 25.1797C26.3047 25.4219 26.3047 25.8203 26.0625 26.0625C25.8203 26.3047 25.4219 26.3047 25.1797 26.0625L20 20.8828L14.8203 26.0625C14.5781 26.3047 14.1797 26.3047 13.9375 26.0625C13.6953 25.8203 13.6953 25.4219 13.9375 25.1797L19.1172 20L13.9375 14.8203C13.6953 14.5781 13.6953 14.1797 13.9375 13.9375L13.9297 13.9297Z'/%3e%3cpath class='cls-3' d='M13.9297 14.8125C13.6875 14.5703 13.6875 14.1719 13.9297 13.9297L13.9375 13.9375C14.1797 13.6953 14.5781 13.6953 14.8203 13.9375L20 19.1172L25.1797 13.9375C25.4219 13.6953 25.8203 13.6953 26.0625 13.9375C26.3047 14.1797 26.3047 14.5781 26.0625 14.8203L20.8828 20L26.0625 25.1797C26.3047 25.4219 26.3047 25.8203 26.0625 26.0625C25.8203 26.3047 25.4219 26.3047 25.1797 26.0625L20 20.8828L14.8203 26.0625C14.5781 26.3047 14.1797 26.3047 13.9375 26.0625C13.6953 25.8203 13.6953 25.4219 13.9375 25.1797L19.1172 20L13.9297 14.8125Z'/%3e%3c/svg%3e");
38764
38818
  }
38765
38819
 
38766
38820
  /*# sourceMappingURL=keymaster.css.map */