type-on-strap 1.4.1 → 1.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 97ab072caae05eaaddc4d20a84cc79ed6b77512ae78ae56096675762b0dc2ed0
4
- data.tar.gz: 17d5ca6e3903b4cb1f6f96c61374a87ec92572f09c95153a57a072d94191ddcb
3
+ metadata.gz: 68fbc05ebf76280282dac37718f941cbdce3c1b768a174f29222f3413178f751
4
+ data.tar.gz: a9fcbffee5c308eea9236780ac63a1a8212860f48f10f564cc2b78b743cc7a5d
5
5
  SHA512:
6
- metadata.gz: 5e861d4acf3b60c4a6b29844b7ba8f8431c81e8448e153e3763167b6fc977e58ebbf81c6e2bbc9d909a228446ba365acbddd26897fef07d2a497b10ba9cd2bbe
7
- data.tar.gz: 52dc4221b463bd40e61639ac00a6f5e68f9f01242089ce66e38c2c35bfdc51395ec021145469b4b4780053a3fc517f3a613c20e643b451c0f0e3c586a5f11e13
6
+ metadata.gz: b79da2305dae68ec07ebabfd36b0382ef174c094ae9f0c1309605710c93cff79441f5346c73961825bceeb369d5e659b7825a19f8671fbaae91af946d2c38475
7
+ data.tar.gz: 3f66b7a9e236d652cc3ef1df4c0d2198cb4d557ce0c14624d9f8aeb927165996d83ef4f0ca00928fad52580fc31138efa6f5d823d7aa80791108c7074ec4ab37
data/README.md CHANGED
@@ -63,7 +63,7 @@ jekyll-theme-basically-basic
63
63
  | ├── gallery.md # Gallery page for your photos
64
64
  | ├── portfolio.md # Portfolio page for your projects
65
65
  | ├── search.html # Search page
66
- | └── search.json # Specify the search target (page, post, collection)
66
+ | └── tags.md # The tag page
67
67
  ├── _config.yml # sample configuration
68
68
  └── index.html # sample home page (blog page paginated)
69
69
  ```
@@ -121,6 +121,8 @@ Customize your site header/footer with these variables in `_config.yml`:
121
121
  footer_text: Copyright 2017
122
122
  ```
123
123
 
124
+ If you don't want anything, replace the value by `" "`.
125
+
124
126
  #### Localisation string
125
127
 
126
128
  Change localization string variables in `_config.yml`.
data/_includes/blog.html CHANGED
@@ -17,9 +17,15 @@
17
17
  </h1>
18
18
  {% include post_info.html post=post %}
19
19
  </header>
20
- <div class="excerpt">
21
- {{ post.excerpt | strip_html | escape }}
22
- </div>
20
+ {% if site.theme_settings.excerpt %}
21
+ <div class="excerpt">
22
+ {% if site.theme_settings.excerpt == "truncate" %}
23
+ {{ post.content | strip_html | truncate: '250' | escape }}
24
+ {% else %}
25
+ {{ post.excerpt | strip_html | escape }}
26
+ {% endif %}
27
+ </div>
28
+ {% endif %}
23
29
  </span>
24
30
  </div>
25
31
  {% endfor %}
@@ -1,6 +1,6 @@
1
- {% if site.theme_settings.footer_text %}
2
1
  <footer class="site-footer">
3
- <p class="text">{{ site.theme_settings.footer_text }}</p>
2
+ <p class="text">
3
+ {{ site.theme_settings.footer_text | default: "Powered by <a href='https://jekyllrb.com/'>Jekyll</a> with <a href='https://github.com/sylhare/Type-on-Strap'>Type on Strap</a>" }}</p>
4
4
  <div class="footer-icons">
5
5
  <ul>
6
6
  <!-- Social icons from Font Awesome, if enabled -->
@@ -8,6 +8,5 @@
8
8
  </ul>
9
9
  </div>
10
10
  </footer>
11
- {% endif %}
12
11
 
13
12
 
data/_includes/icons.html CHANGED
@@ -86,17 +86,6 @@
86
86
  </li>
87
87
  {% endif %}
88
88
 
89
- {% if site.theme_settings.google_plus %}
90
- <li>
91
- <a href="https://plus.google.com/{{ site.theme_settings.google_plus }}" title="{{ site.theme_settings.str_follow_on }} Google+">
92
- <span class="fa-stack fa-lg">
93
- <i class="fa fa-circle fa-stack-2x"></i>
94
- <i class="fa fa-google-plus fa-stack-1x fa-inverse"></i>
95
- </span>
96
- </a>
97
- </li>
98
- {% endif %}
99
-
100
89
  {% if site.theme_settings.instagram %}
101
90
  <li>
102
91
  <a href="http://instagram.com/{{ site.theme_settings.instagram }}" title="{{ site.theme_settings.str_follow_on }} Instagram">
@@ -174,6 +163,17 @@
174
163
  </li>
175
164
  {% endif %}
176
165
 
166
+ {% if site.theme_settings.stack_overflow %}
167
+ <li>
168
+ <a href="{{ site.theme_settings.stack_overflow }}" title="{{ site.theme_settings.str_follow_on }} Stack Overflow">
169
+ <span class="fa-stack fa-lg">
170
+ <i class="fa fa-circle fa-stack-2x"></i>
171
+ <i class="fa fa-stack-overflow fa-stack-1x fa-inverse"></i>
172
+ </span>
173
+ </a>
174
+ </li>
175
+ {% endif %}
176
+
177
177
  {% if site.theme_settings.steam %}
178
178
  <li>
179
179
  <a href="http://steamcommunity.com/id/{{ site.theme_settings.steam }}" title="{{ site.theme_settings.str_follow_on }} Steam">
@@ -1,10 +1,12 @@
1
1
  <header class="site-header">
2
-
2
+
3
3
  <!-- Logo and title -->
4
4
  <div class="branding">
5
+ {% if site.theme_settings.avatar %}
5
6
  <a href="{{ '/' | relative_url }}">
6
7
  <img alt="logo img" class="avatar" src="{{ site.theme_settings.avatar | relative_url }}" />
7
8
  </a>
9
+ {% endif %}
8
10
 
9
11
  <h1 class="site-title">
10
12
  <a aria-label="{{ site.title }}" href="{{ '/' | relative_url }}">
@@ -12,17 +14,17 @@
12
14
  </a>
13
15
  </h1>
14
16
  </div>
15
-
17
+
16
18
  <!-- Toggle menu -->
17
19
  <nav class="clear">
18
20
  <a aria-label="pull" id="pull" class="toggle" href="#">
19
21
  <i class="fa fa-bars fa-lg"></i>
20
22
  </a>
21
-
23
+
22
24
  <!-- Menu -->
23
25
  <ul class="hide">
24
26
  {% assign name_page = "" %}
25
-
27
+
26
28
  {% for page in site.pages %}
27
29
  {% unless page.title == null or page.hide or name_page contains page.title %}
28
30
  <li class="separator"> | </li>
@@ -36,6 +38,6 @@
36
38
  {% assign name_page = page.title | append: name_page %}
37
39
  {% endfor %}
38
40
  </ul>
39
-
41
+
40
42
  </nav>
41
43
  </header>
@@ -1,17 +1,17 @@
1
1
  <div id="post-nav">
2
2
  {% if page.next.url %}
3
3
  <div id="previous-post">
4
- <p>{{ site.theme_settings.str_next_post }}</p>
5
4
  <a alt="{{ page.next.title }}" href="{{ page.next.url | relative_url }}">
5
+ <p>{{ site.theme_settings.str_previous_post }}</p>
6
6
  {{ page.next.title }}
7
7
  </a>
8
8
  </div>
9
9
  {% endif %}
10
- {% if page.previous.url %}
11
10
 
11
+ {% if page.previous.url %}
12
12
  <div id="next-post">
13
- <p>{{ site.theme_settings.str_previous_post }}</p>
14
13
  <a alt="{{ page.previous.title }}" href="{{ page.previous.url | relative_url }}">
14
+ <p>{{ site.theme_settings.str_next_post }}</p>
15
15
  {{ page.previous.title }}
16
16
  </a>
17
17
  </div>
@@ -0,0 +1,7 @@
1
+ {% assign page = include.page %}
2
+
3
+ <meta property="og:url" content="{{ page.url }}" />
4
+ <meta property="og:type" content="article" />
5
+ <meta property="og:title" content="{{ page.title | strip_html | truncate: '250' | escape }}" />
6
+ <meta property="og:description" content="{{ page.excerpt | strip_html | truncate: '250' | escape }}" />
7
+ <meta property="og:image" content="{{ page.feature-img | default: site.theme_settings.header_feature_image }}" />
data/_layouts/home.html CHANGED
@@ -3,12 +3,11 @@ layout: default
3
3
  ---
4
4
 
5
5
  <div class="home">
6
- {% if site.theme_settings.header_text %}
6
+
7
7
  <div id="main" class="call-out"
8
- style="background-image: url('{{ site.theme_settings.header_feature_image | relative_url }}')">
9
- <h1> {{ site.theme_settings.header_text }} </h1>
8
+ style="background-image: url('{{ site.theme_settings.header_feature_image | relative_url }}')">
9
+ <h1> {{ site.theme_settings.header_text | default: "Change <code>header_text</code> in <code>_config.yml</code>"}} </h1>
10
10
  </div>
11
- {% endif %}
12
11
 
13
12
  {% include blog.html %}
14
13
 
data/_layouts/page.html CHANGED
@@ -1,6 +1,7 @@
1
1
  ---
2
2
  layout: default
3
3
  ---
4
+ {% include share_thumbnail.html page=page %}
4
5
 
5
6
  <article {% if page.feature-img %}class="feature-image"{% endif %}>
6
7
  <header id="main" style="background-image: url('{{ page.feature-img | relative_url }}')">
data/_layouts/post.html CHANGED
@@ -1,6 +1,8 @@
1
1
  ---
2
2
  layout: default
3
3
  ---
4
+ {% include share_thumbnail.html page=page %}
5
+
4
6
  <article {% if page.feature-img or page.color %}class="feature-image"{% endif %}>
5
7
  <header id="main" style="">
6
8
  {% unless page.hide_title %}
@@ -49,9 +51,9 @@ layout: default
49
51
  header#main { background-color: {{ page.color }} !important; }
50
52
  {% endif %}
51
53
 
52
- {% if page.feature-img %}{% assign image_url = page.feature-img %}{% elsif page.color %}{% assign image_url = site.theme_settings.color_image %}{% endif %}
53
54
  header#main {
54
55
  background-repeat:no-repeat;
55
- background-image: url('{{ image_url | relative_url }}');
56
+ {% if page.feature-img %} background-image: url('{{ page.feature-img | relative_url }}');
57
+ {% elsif page.color %}background-image: url('{{ site.theme_settings.color_image | relative_url }}'); {% endif %}
56
58
  }
57
- </style>
59
+ </style>
data/_sass/.DS_Store ADDED
Binary file
Binary file
@@ -1,3 +1,18 @@
1
+ // To clear things when we float the element inside nav and ul
2
+ .clear {
3
+ *zoom: 1;
4
+
5
+ &:after {
6
+ clear: both;
7
+ }
8
+
9
+ &:before,
10
+ &:after {
11
+ content: " ";
12
+ display: table;
13
+ }
14
+ }
15
+
1
16
  .site-header {
2
17
  //padding-bottom: 1%;
3
18
  padding: 2% 2% 1% 2%;
@@ -75,22 +90,6 @@
75
90
  }
76
91
  }
77
92
 
78
-
79
- // To clear things when we float the element inisde nav and ul
80
- .clear {
81
- *zoom: 1;
82
-
83
- &:after {
84
- clear: both;
85
- }
86
-
87
- &:before,
88
- &:after {
89
- content: " ";
90
- display: table;
91
- }
92
- }
93
-
94
93
  /* ---- Responsive ---- */
95
94
 
96
95
  @media (min-width: $break) {
@@ -121,46 +120,31 @@
121
120
  width: 100%;
122
121
  overflow: hidden;
123
122
 
124
- transition: font-size .25s,
125
- margin .25s,
126
- padding .25s,
127
- opacity .5s .25s;
128
- }
129
-
130
- ul.hide {
131
- font-size: 0;
132
- margin: 0;
133
- opacity: 0;
134
- padding: 0;
135
-
136
123
  /* fade out, then shrink */
137
- transition: opacity .25s,
138
- font-size .5s .25s,
139
- margin .5s .25s,
140
- padding .5s .25s;
141
- }
124
+ transition: opacity .5s .25s, font-size .5s .25s;
142
125
 
143
- li {
144
- width: 100%;
145
- float: left;
146
- position: relative;
147
- }
148
-
149
- a {
150
- text-align: left;
151
- width: 100%;
126
+ &.hide {
127
+ font-size: 0;
128
+ margin: 0;
129
+ opacity: 0;
130
+ padding: 0;
131
+ }
152
132
 
153
- &#pull {
154
- display: block;
133
+ li {
155
134
  width: 100%;
135
+ text-align: center;
136
+ font-size: 1em;
156
137
  position: relative;
138
+ background-color: darken($background-color, 2%);
139
+
140
+ &:nth-of-type(4n) {
141
+ background-color: $background-color;
142
+ }
157
143
 
158
- &:after {
159
- content: "";
160
- display: inline-block;
161
- position: absolute;
162
- right: 15px;
163
- top: 10px;
144
+ a {
145
+ width: 100%;
146
+ margin: 0;
147
+ display: block;
164
148
  }
165
149
  }
166
150
  }
@@ -65,6 +65,9 @@ header {
65
65
  a {
66
66
  display: flex;
67
67
  align-items: center;
68
+ img {
69
+ height: auto;
70
+ }
68
71
  }
69
72
 
70
73
  img {
Binary file
@@ -7,12 +7,11 @@
7
7
  */
8
8
  .bootstrap-iso {
9
9
  /*!
10
- * Bootstrap v4.1.3 (https://getbootstrap.com/)
11
- * Copyright 2011-2018 The Bootstrap Authors
12
- * Copyright 2011-2018 Twitter, Inc.
10
+ * Bootstrap v4.3.1 (https://getbootstrap.com/)
11
+ * Copyright 2011-2019 The Bootstrap Authors
12
+ * Copyright 2011-2019 Twitter, Inc.
13
13
  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
14
14
  */
15
- /*# sourceMappingURL=bootstrap.css.map */
16
15
  /*@import (less) 'vendor/bootstrap-theme.css'; //optional */
17
16
  }
18
17
  .bootstrap-iso :root {
@@ -42,7 +41,7 @@
42
41
  --breakpoint-md: 768px;
43
42
  --breakpoint-lg: 992px;
44
43
  --breakpoint-xl: 1200px;
45
- --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
44
+ --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
46
45
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
47
46
  }
48
47
  .bootstrap-iso *,
@@ -50,17 +49,12 @@
50
49
  .bootstrap-iso *::after {
51
50
  box-sizing: border-box;
52
51
  }
53
- .not-used.bootstrap-iso html {
52
+ {
54
53
  font-family: sans-serif;
55
54
  line-height: 1.15;
56
55
  -webkit-text-size-adjust: 100%;
57
- -ms-text-size-adjust: 100%;
58
- -ms-overflow-style: scrollbar;
59
56
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
60
57
  }
61
- @-ms-viewport {
62
- width: device-width;
63
- }
64
58
  .bootstrap-iso article,
65
59
  .bootstrap-iso aside,
66
60
  .bootstrap-iso figcaption,
@@ -73,9 +67,9 @@
73
67
  .bootstrap-iso section {
74
68
  display: block;
75
69
  }
76
- .not-used.bootstrap-iso body {
70
+ {
77
71
  margin: 0;
78
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
72
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
79
73
  font-size: 1rem;
80
74
  font-weight: 400;
81
75
  line-height: 1.5;
@@ -111,6 +105,8 @@
111
105
  text-decoration: underline dotted;
112
106
  cursor: help;
113
107
  border-bottom: 0;
108
+ -webkit-text-decoration-skip-ink: none;
109
+ text-decoration-skip-ink: none;
114
110
  }
115
111
  .bootstrap-iso address {
116
112
  margin-bottom: 1rem;
@@ -133,15 +129,12 @@
133
129
  font-weight: 700;
134
130
  }
135
131
  .bootstrap-iso dd {
136
- margin-bottom: .5rem;
132
+ margin-bottom: 0.5rem;
137
133
  margin-left: 0;
138
134
  }
139
135
  .bootstrap-iso blockquote {
140
136
  margin: 0 0 1rem;
141
137
  }
142
- .bootstrap-iso dfn {
143
- font-style: italic;
144
- }
145
138
  .bootstrap-iso b,
146
139
  .bootstrap-iso strong {
147
140
  font-weight: bolder;
@@ -166,7 +159,6 @@
166
159
  color: #007bff;
167
160
  text-decoration: none;
168
161
  background-color: transparent;
169
- -webkit-text-decoration-skip: objects;
170
162
  }
171
163
  .bootstrap-iso a:hover {
172
164
  color: #0056b3;
@@ -195,7 +187,6 @@
195
187
  margin-top: 0;
196
188
  margin-bottom: 1rem;
197
189
  overflow: auto;
198
- -ms-overflow-style: scrollbar;
199
190
  }
200
191
  .bootstrap-iso figure {
201
192
  margin: 0 0 1rem;
@@ -250,12 +241,21 @@
250
241
  .bootstrap-iso select {
251
242
  text-transform: none;
252
243
  }
244
+ .bootstrap-iso select {
245
+ word-wrap: normal;
246
+ }
253
247
  .bootstrap-iso button,
254
- .not-used.bootstrap-iso html [type="button"],
248
+ .bootstrap-iso [type="button"],
255
249
  .bootstrap-iso [type="reset"],
256
250
  .bootstrap-iso [type="submit"] {
257
251
  -webkit-appearance: button;
258
252
  }
253
+ .bootstrap-iso button:not(:disabled),
254
+ .bootstrap-iso [type="button"]:not(:disabled),
255
+ .bootstrap-iso [type="reset"]:not(:disabled),
256
+ .bootstrap-iso [type="submit"]:not(:disabled) {
257
+ cursor: pointer;
258
+ }
259
259
  .bootstrap-iso button::-moz-focus-inner,
260
260
  .bootstrap-iso [type="button"]::-moz-focus-inner,
261
261
  .bootstrap-iso [type="reset"]::-moz-focus-inner,
@@ -289,7 +289,7 @@
289
289
  width: 100%;
290
290
  max-width: 100%;
291
291
  padding: 0;
292
- margin-bottom: .5rem;
292
+ margin-bottom: 0.5rem;
293
293
  font-size: 1.5rem;
294
294
  line-height: inherit;
295
295
  color: inherit;
@@ -306,7 +306,6 @@
306
306
  outline-offset: -2px;
307
307
  -webkit-appearance: none;
308
308
  }
309
- .bootstrap-iso [type="search"]::-webkit-search-cancel-button,
310
309
  .bootstrap-iso [type="search"]::-webkit-search-decoration {
311
310
  -webkit-appearance: none;
312
311
  }
@@ -340,10 +339,8 @@
340
339
  .bootstrap-iso .h5,
341
340
  .bootstrap-iso .h6 {
342
341
  margin-bottom: 0.5rem;
343
- font-family: inherit;
344
342
  font-weight: 500;
345
343
  line-height: 1.2;
346
- color: inherit;
347
344
  }
348
345
  .bootstrap-iso h1,
349
346
  .bootstrap-iso .h1 {
@@ -437,7 +434,7 @@
437
434
  color: #6c757d;
438
435
  }
439
436
  .bootstrap-iso .blockquote-footer::before {
440
- content: "\2014 \00A0";
437
+ content: "\2014\00A0";
441
438
  }
442
439
  .bootstrap-iso .img-fluid {
443
440
  max-width: 100%;
@@ -619,7 +616,6 @@
619
616
  .bootstrap-iso .col-xl-auto {
620
617
  position: relative;
621
618
  width: 100%;
622
- min-height: 1px;
623
619
  padding-right: 15px;
624
620
  padding-left: 15px;
625
621
  }
@@ -634,7 +630,7 @@
634
630
  -ms-flex: 0 0 auto;
635
631
  flex: 0 0 auto;
636
632
  width: auto;
637
- max-width: none;
633
+ max-width: 100%;
638
634
  }
639
635
  .bootstrap-iso .col-1 {
640
636
  -ms-flex: 0 0 8.333333%;
@@ -801,7 +797,7 @@
801
797
  -ms-flex: 0 0 auto;
802
798
  flex: 0 0 auto;
803
799
  width: auto;
804
- max-width: none;
800
+ max-width: 100%;
805
801
  }
806
802
  .bootstrap-iso .col-sm-1 {
807
803
  -ms-flex: 0 0 8.333333%;
@@ -972,7 +968,7 @@
972
968
  -ms-flex: 0 0 auto;
973
969
  flex: 0 0 auto;
974
970
  width: auto;
975
- max-width: none;
971
+ max-width: 100%;
976
972
  }
977
973
  .bootstrap-iso .col-md-1 {
978
974
  -ms-flex: 0 0 8.333333%;
@@ -1143,7 +1139,7 @@
1143
1139
  -ms-flex: 0 0 auto;
1144
1140
  flex: 0 0 auto;
1145
1141
  width: auto;
1146
- max-width: none;
1142
+ max-width: 100%;
1147
1143
  }
1148
1144
  .bootstrap-iso .col-lg-1 {
1149
1145
  -ms-flex: 0 0 8.333333%;
@@ -1314,7 +1310,7 @@
1314
1310
  -ms-flex: 0 0 auto;
1315
1311
  flex: 0 0 auto;
1316
1312
  width: auto;
1317
- max-width: none;
1313
+ max-width: 100%;
1318
1314
  }
1319
1315
  .bootstrap-iso .col-xl-1 {
1320
1316
  -ms-flex: 0 0 8.333333%;
@@ -1476,7 +1472,7 @@
1476
1472
  .bootstrap-iso .table {
1477
1473
  width: 100%;
1478
1474
  margin-bottom: 1rem;
1479
- background-color: transparent;
1475
+ color: #212529;
1480
1476
  }
1481
1477
  .bootstrap-iso .table th,
1482
1478
  .bootstrap-iso .table td {
@@ -1491,9 +1487,6 @@
1491
1487
  .bootstrap-iso .table tbody + tbody {
1492
1488
  border-top: 2px solid #dee2e6;
1493
1489
  }
1494
- .bootstrap-iso .table .table {
1495
- background-color: #fff;
1496
- }
1497
1490
  .bootstrap-iso .table-sm th,
1498
1491
  .bootstrap-iso .table-sm td {
1499
1492
  padding: 0.3rem;
@@ -1519,6 +1512,7 @@
1519
1512
  background-color: rgba(0, 0, 0, 0.05);
1520
1513
  }
1521
1514
  .bootstrap-iso .table-hover tbody tr:hover {
1515
+ color: #212529;
1522
1516
  background-color: rgba(0, 0, 0, 0.075);
1523
1517
  }
1524
1518
  .bootstrap-iso .table-primary,
@@ -1526,6 +1520,12 @@
1526
1520
  .bootstrap-iso .table-primary > td {
1527
1521
  background-color: #b8daff;
1528
1522
  }
1523
+ .bootstrap-iso .table-primary th,
1524
+ .bootstrap-iso .table-primary td,
1525
+ .bootstrap-iso .table-primary thead th,
1526
+ .bootstrap-iso .table-primary tbody + tbody {
1527
+ border-color: #7abaff;
1528
+ }
1529
1529
  .bootstrap-iso .table-hover .table-primary:hover {
1530
1530
  background-color: #9fcdff;
1531
1531
  }
@@ -1538,6 +1538,12 @@
1538
1538
  .bootstrap-iso .table-secondary > td {
1539
1539
  background-color: #d6d8db;
1540
1540
  }
1541
+ .bootstrap-iso .table-secondary th,
1542
+ .bootstrap-iso .table-secondary td,
1543
+ .bootstrap-iso .table-secondary thead th,
1544
+ .bootstrap-iso .table-secondary tbody + tbody {
1545
+ border-color: #b3b7bb;
1546
+ }
1541
1547
  .bootstrap-iso .table-hover .table-secondary:hover {
1542
1548
  background-color: #c8cbcf;
1543
1549
  }
@@ -1550,6 +1556,12 @@
1550
1556
  .bootstrap-iso .table-success > td {
1551
1557
  background-color: #c3e6cb;
1552
1558
  }
1559
+ .bootstrap-iso .table-success th,
1560
+ .bootstrap-iso .table-success td,
1561
+ .bootstrap-iso .table-success thead th,
1562
+ .bootstrap-iso .table-success tbody + tbody {
1563
+ border-color: #8fd19e;
1564
+ }
1553
1565
  .bootstrap-iso .table-hover .table-success:hover {
1554
1566
  background-color: #b1dfbb;
1555
1567
  }
@@ -1562,6 +1574,12 @@
1562
1574
  .bootstrap-iso .table-info > td {
1563
1575
  background-color: #bee5eb;
1564
1576
  }
1577
+ .bootstrap-iso .table-info th,
1578
+ .bootstrap-iso .table-info td,
1579
+ .bootstrap-iso .table-info thead th,
1580
+ .bootstrap-iso .table-info tbody + tbody {
1581
+ border-color: #86cfda;
1582
+ }
1565
1583
  .bootstrap-iso .table-hover .table-info:hover {
1566
1584
  background-color: #abdde5;
1567
1585
  }
@@ -1574,6 +1592,12 @@
1574
1592
  .bootstrap-iso .table-warning > td {
1575
1593
  background-color: #ffeeba;
1576
1594
  }
1595
+ .bootstrap-iso .table-warning th,
1596
+ .bootstrap-iso .table-warning td,
1597
+ .bootstrap-iso .table-warning thead th,
1598
+ .bootstrap-iso .table-warning tbody + tbody {
1599
+ border-color: #ffdf7e;
1600
+ }
1577
1601
  .bootstrap-iso .table-hover .table-warning:hover {
1578
1602
  background-color: #ffe8a1;
1579
1603
  }
@@ -1586,6 +1610,12 @@
1586
1610
  .bootstrap-iso .table-danger > td {
1587
1611
  background-color: #f5c6cb;
1588
1612
  }
1613
+ .bootstrap-iso .table-danger th,
1614
+ .bootstrap-iso .table-danger td,
1615
+ .bootstrap-iso .table-danger thead th,
1616
+ .bootstrap-iso .table-danger tbody + tbody {
1617
+ border-color: #ed969e;
1618
+ }
1589
1619
  .bootstrap-iso .table-hover .table-danger:hover {
1590
1620
  background-color: #f1b0b7;
1591
1621
  }
@@ -1598,6 +1628,12 @@
1598
1628
  .bootstrap-iso .table-light > td {
1599
1629
  background-color: #fdfdfe;
1600
1630
  }
1631
+ .bootstrap-iso .table-light th,
1632
+ .bootstrap-iso .table-light td,
1633
+ .bootstrap-iso .table-light thead th,
1634
+ .bootstrap-iso .table-light tbody + tbody {
1635
+ border-color: #fbfcfc;
1636
+ }
1601
1637
  .bootstrap-iso .table-hover .table-light:hover {
1602
1638
  background-color: #ececf6;
1603
1639
  }
@@ -1610,6 +1646,12 @@
1610
1646
  .bootstrap-iso .table-dark > td {
1611
1647
  background-color: #c6c8ca;
1612
1648
  }
1649
+ .bootstrap-iso .table-dark th,
1650
+ .bootstrap-iso .table-dark td,
1651
+ .bootstrap-iso .table-dark thead th,
1652
+ .bootstrap-iso .table-dark tbody + tbody {
1653
+ border-color: #95999c;
1654
+ }
1613
1655
  .bootstrap-iso .table-hover .table-dark:hover {
1614
1656
  background-color: #b9bbbe;
1615
1657
  }
@@ -1631,8 +1673,8 @@
1631
1673
  }
1632
1674
  .bootstrap-iso .table .thead-dark th {
1633
1675
  color: #fff;
1634
- background-color: #212529;
1635
- border-color: #32383e;
1676
+ background-color: #343a40;
1677
+ border-color: #454d55;
1636
1678
  }
1637
1679
  .bootstrap-iso .table .thead-light th {
1638
1680
  color: #495057;
@@ -1641,12 +1683,12 @@
1641
1683
  }
1642
1684
  .bootstrap-iso .table-dark {
1643
1685
  color: #fff;
1644
- background-color: #212529;
1686
+ background-color: #343a40;
1645
1687
  }
1646
1688
  .bootstrap-iso .table-dark th,
1647
1689
  .bootstrap-iso .table-dark td,
1648
1690
  .bootstrap-iso .table-dark thead th {
1649
- border-color: #32383e;
1691
+ border-color: #454d55;
1650
1692
  }
1651
1693
  .bootstrap-iso .table-dark.table-bordered {
1652
1694
  border: 0;
@@ -1655,6 +1697,7 @@
1655
1697
  background-color: rgba(255, 255, 255, 0.05);
1656
1698
  }
1657
1699
  .bootstrap-iso .table-dark.table-hover tbody tr:hover {
1700
+ color: #fff;
1658
1701
  background-color: rgba(255, 255, 255, 0.075);
1659
1702
  }
1660
1703
  @media (max-width: 575.98px) {
@@ -1663,7 +1706,6 @@
1663
1706
  width: 100%;
1664
1707
  overflow-x: auto;
1665
1708
  -webkit-overflow-scrolling: touch;
1666
- -ms-overflow-style: -ms-autohiding-scrollbar;
1667
1709
  }
1668
1710
  .bootstrap-iso .table-responsive-sm > .table-bordered {
1669
1711
  border: 0;
@@ -1675,7 +1717,6 @@
1675
1717
  width: 100%;
1676
1718
  overflow-x: auto;
1677
1719
  -webkit-overflow-scrolling: touch;
1678
- -ms-overflow-style: -ms-autohiding-scrollbar;
1679
1720
  }
1680
1721
  .bootstrap-iso .table-responsive-md > .table-bordered {
1681
1722
  border: 0;
@@ -1687,7 +1728,6 @@
1687
1728
  width: 100%;
1688
1729
  overflow-x: auto;
1689
1730
  -webkit-overflow-scrolling: touch;
1690
- -ms-overflow-style: -ms-autohiding-scrollbar;
1691
1731
  }
1692
1732
  .bootstrap-iso .table-responsive-lg > .table-bordered {
1693
1733
  border: 0;
@@ -1699,7 +1739,6 @@
1699
1739
  width: 100%;
1700
1740
  overflow-x: auto;
1701
1741
  -webkit-overflow-scrolling: touch;
1702
- -ms-overflow-style: -ms-autohiding-scrollbar;
1703
1742
  }
1704
1743
  .bootstrap-iso .table-responsive-xl > .table-bordered {
1705
1744
  border: 0;
@@ -1710,7 +1749,6 @@
1710
1749
  width: 100%;
1711
1750
  overflow-x: auto;
1712
1751
  -webkit-overflow-scrolling: touch;
1713
- -ms-overflow-style: -ms-autohiding-scrollbar;
1714
1752
  }
1715
1753
  .bootstrap-iso .table-responsive > .table-bordered {
1716
1754
  border: 0;
@@ -1718,9 +1756,10 @@
1718
1756
  .bootstrap-iso .form-control {
1719
1757
  display: block;
1720
1758
  width: 100%;
1721
- height: calc(4.25rem);
1759
+ height: calc(1.5em + 0.75rem + 2px);
1722
1760
  padding: 0.375rem 0.75rem;
1723
1761
  font-size: 1rem;
1762
+ font-weight: 400;
1724
1763
  line-height: 1.5;
1725
1764
  color: #495057;
1726
1765
  background-color: #fff;
@@ -1729,7 +1768,7 @@
1729
1768
  border-radius: 0.25rem;
1730
1769
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
1731
1770
  }
1732
- @media screen and (prefers-reduced-motion: reduce) {
1771
+ @media (prefers-reduced-motion: reduce) {
1733
1772
  .bootstrap-iso .form-control {
1734
1773
  transition: none;
1735
1774
  }
@@ -1780,21 +1819,21 @@
1780
1819
  width: 100%;
1781
1820
  }
1782
1821
  .bootstrap-iso .col-form-label {
1783
- padding-top: calc(1.375rem);
1784
- padding-bottom: calc(1.375rem);
1822
+ padding-top: calc(0.375rem + 1px);
1823
+ padding-bottom: calc(0.375rem + 1px);
1785
1824
  margin-bottom: 0;
1786
1825
  font-size: inherit;
1787
1826
  line-height: 1.5;
1788
1827
  }
1789
1828
  .bootstrap-iso .col-form-label-lg {
1790
- padding-top: calc(1.5rem);
1791
- padding-bottom: calc(1.5rem);
1829
+ padding-top: calc(0.5rem + 1px);
1830
+ padding-bottom: calc(0.5rem + 1px);
1792
1831
  font-size: 1.25rem;
1793
1832
  line-height: 1.5;
1794
1833
  }
1795
1834
  .bootstrap-iso .col-form-label-sm {
1796
- padding-top: calc(1.25rem);
1797
- padding-bottom: calc(1.25rem);
1835
+ padding-top: calc(0.25rem + 1px);
1836
+ padding-bottom: calc(0.25rem + 1px);
1798
1837
  font-size: 0.875rem;
1799
1838
  line-height: 1.5;
1800
1839
  }
@@ -1816,14 +1855,14 @@
1816
1855
  padding-left: 0;
1817
1856
  }
1818
1857
  .bootstrap-iso .form-control-sm {
1819
- height: calc(3.8125rem);
1858
+ height: calc(1.5em + 0.5rem + 2px);
1820
1859
  padding: 0.25rem 0.5rem;
1821
1860
  font-size: 0.875rem;
1822
1861
  line-height: 1.5;
1823
1862
  border-radius: 0.2rem;
1824
1863
  }
1825
1864
  .bootstrap-iso .form-control-lg {
1826
- height: calc(4.875rem);
1865
+ height: calc(1.5em + 1rem + 2px);
1827
1866
  padding: 0.5rem 1rem;
1828
1867
  font-size: 1.25rem;
1829
1868
  line-height: 1.5;
@@ -1900,7 +1939,7 @@
1900
1939
  display: none;
1901
1940
  max-width: 100%;
1902
1941
  padding: 0.25rem 0.5rem;
1903
- margin-top: .1rem;
1942
+ margin-top: 0.1rem;
1904
1943
  font-size: 0.875rem;
1905
1944
  line-height: 1.5;
1906
1945
  color: #fff;
@@ -1908,22 +1947,41 @@
1908
1947
  border-radius: 0.25rem;
1909
1948
  }
1910
1949
  .bootstrap-iso .was-validated .form-control:valid,
1911
- .bootstrap-iso .form-control.is-valid,
1912
- .bootstrap-iso .was-validated .custom-select:valid,
1913
- .bootstrap-iso .custom-select.is-valid {
1950
+ .bootstrap-iso .form-control.is-valid {
1914
1951
  border-color: #28a745;
1952
+ padding-right: calc(1.5em + 0.75rem);
1953
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
1954
+ background-repeat: no-repeat;
1955
+ background-position: center right calc(0.375em + 0.1875rem);
1956
+ background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
1915
1957
  }
1916
1958
  .bootstrap-iso .was-validated .form-control:valid:focus,
1917
- .bootstrap-iso .form-control.is-valid:focus,
1918
- .bootstrap-iso .was-validated .custom-select:valid:focus,
1919
- .bootstrap-iso .custom-select.is-valid:focus {
1959
+ .bootstrap-iso .form-control.is-valid:focus {
1920
1960
  border-color: #28a745;
1921
1961
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
1922
1962
  }
1923
1963
  .bootstrap-iso .was-validated .form-control:valid ~ .valid-feedback,
1924
1964
  .bootstrap-iso .was-validated .form-control:valid ~ .valid-tooltip,
1925
1965
  .bootstrap-iso .form-control.is-valid ~ .valid-feedback,
1926
- .bootstrap-iso .form-control.is-valid ~ .valid-tooltip,
1966
+ .bootstrap-iso .form-control.is-valid ~ .valid-tooltip {
1967
+ display: block;
1968
+ }
1969
+ .bootstrap-iso .was-validated textarea.form-control:valid,
1970
+ .bootstrap-iso textarea.form-control.is-valid {
1971
+ padding-right: calc(1.5em + 0.75rem);
1972
+ background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
1973
+ }
1974
+ .bootstrap-iso .was-validated .custom-select:valid,
1975
+ .bootstrap-iso .custom-select.is-valid {
1976
+ border-color: #28a745;
1977
+ padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem);
1978
+ background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center / 8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
1979
+ }
1980
+ .bootstrap-iso .was-validated .custom-select:valid:focus,
1981
+ .bootstrap-iso .custom-select.is-valid:focus {
1982
+ border-color: #28a745;
1983
+ box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
1984
+ }
1927
1985
  .bootstrap-iso .was-validated .custom-select:valid ~ .valid-feedback,
1928
1986
  .bootstrap-iso .was-validated .custom-select:valid ~ .valid-tooltip,
1929
1987
  .bootstrap-iso .custom-select.is-valid ~ .valid-feedback,
@@ -1952,7 +2010,7 @@
1952
2010
  }
1953
2011
  .bootstrap-iso .was-validated .custom-control-input:valid ~ .custom-control-label::before,
1954
2012
  .bootstrap-iso .custom-control-input.is-valid ~ .custom-control-label::before {
1955
- background-color: #71dd8a;
2013
+ border-color: #28a745;
1956
2014
  }
1957
2015
  .bootstrap-iso .was-validated .custom-control-input:valid ~ .valid-feedback,
1958
2016
  .bootstrap-iso .was-validated .custom-control-input:valid ~ .valid-tooltip,
@@ -1962,20 +2020,21 @@
1962
2020
  }
1963
2021
  .bootstrap-iso .was-validated .custom-control-input:valid:checked ~ .custom-control-label::before,
1964
2022
  .bootstrap-iso .custom-control-input.is-valid:checked ~ .custom-control-label::before {
2023
+ border-color: #34ce57;
1965
2024
  background-color: #34ce57;
1966
2025
  }
1967
2026
  .bootstrap-iso .was-validated .custom-control-input:valid:focus ~ .custom-control-label::before,
1968
2027
  .bootstrap-iso .custom-control-input.is-valid:focus ~ .custom-control-label::before {
1969
- box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
2028
+ box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
2029
+ }
2030
+ .bootstrap-iso .was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before,
2031
+ .bootstrap-iso .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
2032
+ border-color: #28a745;
1970
2033
  }
1971
2034
  .bootstrap-iso .was-validated .custom-file-input:valid ~ .custom-file-label,
1972
2035
  .bootstrap-iso .custom-file-input.is-valid ~ .custom-file-label {
1973
2036
  border-color: #28a745;
1974
2037
  }
1975
- .bootstrap-iso .was-validated .custom-file-input:valid ~ .custom-file-label::after,
1976
- .bootstrap-iso .custom-file-input.is-valid ~ .custom-file-label::after {
1977
- border-color: inherit;
1978
- }
1979
2038
  .bootstrap-iso .was-validated .custom-file-input:valid ~ .valid-feedback,
1980
2039
  .bootstrap-iso .was-validated .custom-file-input:valid ~ .valid-tooltip,
1981
2040
  .bootstrap-iso .custom-file-input.is-valid ~ .valid-feedback,
@@ -1984,6 +2043,7 @@
1984
2043
  }
1985
2044
  .bootstrap-iso .was-validated .custom-file-input:valid:focus ~ .custom-file-label,
1986
2045
  .bootstrap-iso .custom-file-input.is-valid:focus ~ .custom-file-label {
2046
+ border-color: #28a745;
1987
2047
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
1988
2048
  }
1989
2049
  .bootstrap-iso .invalid-feedback {
@@ -2000,7 +2060,7 @@
2000
2060
  display: none;
2001
2061
  max-width: 100%;
2002
2062
  padding: 0.25rem 0.5rem;
2003
- margin-top: .1rem;
2063
+ margin-top: 0.1rem;
2004
2064
  font-size: 0.875rem;
2005
2065
  line-height: 1.5;
2006
2066
  color: #fff;
@@ -2008,22 +2068,41 @@
2008
2068
  border-radius: 0.25rem;
2009
2069
  }
2010
2070
  .bootstrap-iso .was-validated .form-control:invalid,
2011
- .bootstrap-iso .form-control.is-invalid,
2012
- .bootstrap-iso .was-validated .custom-select:invalid,
2013
- .bootstrap-iso .custom-select.is-invalid {
2071
+ .bootstrap-iso .form-control.is-invalid {
2014
2072
  border-color: #dc3545;
2073
+ padding-right: calc(1.5em + 0.75rem);
2074
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");
2075
+ background-repeat: no-repeat;
2076
+ background-position: center right calc(0.375em + 0.1875rem);
2077
+ background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
2015
2078
  }
2016
2079
  .bootstrap-iso .was-validated .form-control:invalid:focus,
2017
- .bootstrap-iso .form-control.is-invalid:focus,
2018
- .bootstrap-iso .was-validated .custom-select:invalid:focus,
2019
- .bootstrap-iso .custom-select.is-invalid:focus {
2080
+ .bootstrap-iso .form-control.is-invalid:focus {
2020
2081
  border-color: #dc3545;
2021
2082
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
2022
2083
  }
2023
2084
  .bootstrap-iso .was-validated .form-control:invalid ~ .invalid-feedback,
2024
2085
  .bootstrap-iso .was-validated .form-control:invalid ~ .invalid-tooltip,
2025
2086
  .bootstrap-iso .form-control.is-invalid ~ .invalid-feedback,
2026
- .bootstrap-iso .form-control.is-invalid ~ .invalid-tooltip,
2087
+ .bootstrap-iso .form-control.is-invalid ~ .invalid-tooltip {
2088
+ display: block;
2089
+ }
2090
+ .bootstrap-iso .was-validated textarea.form-control:invalid,
2091
+ .bootstrap-iso textarea.form-control.is-invalid {
2092
+ padding-right: calc(1.5em + 0.75rem);
2093
+ background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
2094
+ }
2095
+ .bootstrap-iso .was-validated .custom-select:invalid,
2096
+ .bootstrap-iso .custom-select.is-invalid {
2097
+ border-color: #dc3545;
2098
+ padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem);
2099
+ background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center / 8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
2100
+ }
2101
+ .bootstrap-iso .was-validated .custom-select:invalid:focus,
2102
+ .bootstrap-iso .custom-select.is-invalid:focus {
2103
+ border-color: #dc3545;
2104
+ box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
2105
+ }
2027
2106
  .bootstrap-iso .was-validated .custom-select:invalid ~ .invalid-feedback,
2028
2107
  .bootstrap-iso .was-validated .custom-select:invalid ~ .invalid-tooltip,
2029
2108
  .bootstrap-iso .custom-select.is-invalid ~ .invalid-feedback,
@@ -2052,7 +2131,7 @@
2052
2131
  }
2053
2132
  .bootstrap-iso .was-validated .custom-control-input:invalid ~ .custom-control-label::before,
2054
2133
  .bootstrap-iso .custom-control-input.is-invalid ~ .custom-control-label::before {
2055
- background-color: #efa2a9;
2134
+ border-color: #dc3545;
2056
2135
  }
2057
2136
  .bootstrap-iso .was-validated .custom-control-input:invalid ~ .invalid-feedback,
2058
2137
  .bootstrap-iso .was-validated .custom-control-input:invalid ~ .invalid-tooltip,
@@ -2062,20 +2141,21 @@
2062
2141
  }
2063
2142
  .bootstrap-iso .was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before,
2064
2143
  .bootstrap-iso .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
2144
+ border-color: #e4606d;
2065
2145
  background-color: #e4606d;
2066
2146
  }
2067
2147
  .bootstrap-iso .was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before,
2068
2148
  .bootstrap-iso .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
2069
- box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
2149
+ box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
2150
+ }
2151
+ .bootstrap-iso .was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before,
2152
+ .bootstrap-iso .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
2153
+ border-color: #dc3545;
2070
2154
  }
2071
2155
  .bootstrap-iso .was-validated .custom-file-input:invalid ~ .custom-file-label,
2072
2156
  .bootstrap-iso .custom-file-input.is-invalid ~ .custom-file-label {
2073
2157
  border-color: #dc3545;
2074
2158
  }
2075
- .bootstrap-iso .was-validated .custom-file-input:invalid ~ .custom-file-label::after,
2076
- .bootstrap-iso .custom-file-input.is-invalid ~ .custom-file-label::after {
2077
- border-color: inherit;
2078
- }
2079
2159
  .bootstrap-iso .was-validated .custom-file-input:invalid ~ .invalid-feedback,
2080
2160
  .bootstrap-iso .was-validated .custom-file-input:invalid ~ .invalid-tooltip,
2081
2161
  .bootstrap-iso .custom-file-input.is-invalid ~ .invalid-feedback,
@@ -2084,6 +2164,7 @@
2084
2164
  }
2085
2165
  .bootstrap-iso .was-validated .custom-file-input:invalid:focus ~ .custom-file-label,
2086
2166
  .bootstrap-iso .custom-file-input.is-invalid:focus ~ .custom-file-label {
2167
+ border-color: #dc3545;
2087
2168
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
2088
2169
  }
2089
2170
  .bootstrap-iso .form-inline {
@@ -2142,6 +2223,8 @@
2142
2223
  }
2143
2224
  .bootstrap-iso .form-inline .form-check-input {
2144
2225
  position: relative;
2226
+ -ms-flex-negative: 0;
2227
+ flex-shrink: 0;
2145
2228
  margin-top: 0;
2146
2229
  margin-right: 0.25rem;
2147
2230
  margin-left: 0;
@@ -2159,13 +2242,14 @@
2159
2242
  .bootstrap-iso .btn {
2160
2243
  display: inline-block;
2161
2244
  font-weight: 400;
2245
+ color: #212529;
2162
2246
  text-align: center;
2163
- white-space: nowrap;
2164
2247
  vertical-align: middle;
2165
2248
  -webkit-user-select: none;
2166
2249
  -moz-user-select: none;
2167
2250
  -ms-user-select: none;
2168
2251
  user-select: none;
2252
+ background-color: transparent;
2169
2253
  border: 1px solid transparent;
2170
2254
  padding: 0.375rem 0.75rem;
2171
2255
  font-size: 1rem;
@@ -2173,13 +2257,13 @@
2173
2257
  border-radius: 0.25rem;
2174
2258
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2175
2259
  }
2176
- @media screen and (prefers-reduced-motion: reduce) {
2260
+ @media (prefers-reduced-motion: reduce) {
2177
2261
  .bootstrap-iso .btn {
2178
2262
  transition: none;
2179
2263
  }
2180
2264
  }
2181
- .bootstrap-iso .btn:hover,
2182
- .bootstrap-iso .btn:focus {
2265
+ .bootstrap-iso .btn:hover {
2266
+ color: #212529;
2183
2267
  text-decoration: none;
2184
2268
  }
2185
2269
  .bootstrap-iso .btn:focus,
@@ -2191,9 +2275,6 @@
2191
2275
  .bootstrap-iso .btn:disabled {
2192
2276
  opacity: 0.65;
2193
2277
  }
2194
- .bootstrap-iso .btn:not(:disabled):not(.disabled) {
2195
- cursor: pointer;
2196
- }
2197
2278
  .bootstrap-iso a.btn.disabled,
2198
2279
  .bootstrap-iso fieldset:disabled a.btn {
2199
2280
  pointer-events: none;
@@ -2210,7 +2291,7 @@
2210
2291
  }
2211
2292
  .bootstrap-iso .btn-primary:focus,
2212
2293
  .bootstrap-iso .btn-primary.focus {
2213
- box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
2294
+ box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
2214
2295
  }
2215
2296
  .bootstrap-iso .btn-primary.disabled,
2216
2297
  .bootstrap-iso .btn-primary:disabled {
@@ -2228,7 +2309,7 @@
2228
2309
  .bootstrap-iso .btn-primary:not(:disabled):not(.disabled):active:focus,
2229
2310
  .bootstrap-iso .btn-primary:not(:disabled):not(.disabled).active:focus,
2230
2311
  .bootstrap-iso .show > .btn-primary.dropdown-toggle:focus {
2231
- box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
2312
+ box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
2232
2313
  }
2233
2314
  .bootstrap-iso .btn-secondary {
2234
2315
  color: #fff;
@@ -2242,7 +2323,7 @@
2242
2323
  }
2243
2324
  .bootstrap-iso .btn-secondary:focus,
2244
2325
  .bootstrap-iso .btn-secondary.focus {
2245
- box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
2326
+ box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
2246
2327
  }
2247
2328
  .bootstrap-iso .btn-secondary.disabled,
2248
2329
  .bootstrap-iso .btn-secondary:disabled {
@@ -2260,7 +2341,7 @@
2260
2341
  .bootstrap-iso .btn-secondary:not(:disabled):not(.disabled):active:focus,
2261
2342
  .bootstrap-iso .btn-secondary:not(:disabled):not(.disabled).active:focus,
2262
2343
  .bootstrap-iso .show > .btn-secondary.dropdown-toggle:focus {
2263
- box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
2344
+ box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
2264
2345
  }
2265
2346
  .bootstrap-iso .btn-success {
2266
2347
  color: #fff;
@@ -2274,7 +2355,7 @@
2274
2355
  }
2275
2356
  .bootstrap-iso .btn-success:focus,
2276
2357
  .bootstrap-iso .btn-success.focus {
2277
- box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
2358
+ box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
2278
2359
  }
2279
2360
  .bootstrap-iso .btn-success.disabled,
2280
2361
  .bootstrap-iso .btn-success:disabled {
@@ -2292,7 +2373,7 @@
2292
2373
  .bootstrap-iso .btn-success:not(:disabled):not(.disabled):active:focus,
2293
2374
  .bootstrap-iso .btn-success:not(:disabled):not(.disabled).active:focus,
2294
2375
  .bootstrap-iso .show > .btn-success.dropdown-toggle:focus {
2295
- box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
2376
+ box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
2296
2377
  }
2297
2378
  .bootstrap-iso .btn-info {
2298
2379
  color: #fff;
@@ -2306,7 +2387,7 @@
2306
2387
  }
2307
2388
  .bootstrap-iso .btn-info:focus,
2308
2389
  .bootstrap-iso .btn-info.focus {
2309
- box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
2390
+ box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
2310
2391
  }
2311
2392
  .bootstrap-iso .btn-info.disabled,
2312
2393
  .bootstrap-iso .btn-info:disabled {
@@ -2324,7 +2405,7 @@
2324
2405
  .bootstrap-iso .btn-info:not(:disabled):not(.disabled):active:focus,
2325
2406
  .bootstrap-iso .btn-info:not(:disabled):not(.disabled).active:focus,
2326
2407
  .bootstrap-iso .show > .btn-info.dropdown-toggle:focus {
2327
- box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
2408
+ box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
2328
2409
  }
2329
2410
  .bootstrap-iso .btn-warning {
2330
2411
  color: #212529;
@@ -2338,7 +2419,7 @@
2338
2419
  }
2339
2420
  .bootstrap-iso .btn-warning:focus,
2340
2421
  .bootstrap-iso .btn-warning.focus {
2341
- box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
2422
+ box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
2342
2423
  }
2343
2424
  .bootstrap-iso .btn-warning.disabled,
2344
2425
  .bootstrap-iso .btn-warning:disabled {
@@ -2356,7 +2437,7 @@
2356
2437
  .bootstrap-iso .btn-warning:not(:disabled):not(.disabled):active:focus,
2357
2438
  .bootstrap-iso .btn-warning:not(:disabled):not(.disabled).active:focus,
2358
2439
  .bootstrap-iso .show > .btn-warning.dropdown-toggle:focus {
2359
- box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
2440
+ box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
2360
2441
  }
2361
2442
  .bootstrap-iso .btn-danger {
2362
2443
  color: #fff;
@@ -2370,7 +2451,7 @@
2370
2451
  }
2371
2452
  .bootstrap-iso .btn-danger:focus,
2372
2453
  .bootstrap-iso .btn-danger.focus {
2373
- box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
2454
+ box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
2374
2455
  }
2375
2456
  .bootstrap-iso .btn-danger.disabled,
2376
2457
  .bootstrap-iso .btn-danger:disabled {
@@ -2388,7 +2469,7 @@
2388
2469
  .bootstrap-iso .btn-danger:not(:disabled):not(.disabled):active:focus,
2389
2470
  .bootstrap-iso .btn-danger:not(:disabled):not(.disabled).active:focus,
2390
2471
  .bootstrap-iso .show > .btn-danger.dropdown-toggle:focus {
2391
- box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
2472
+ box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
2392
2473
  }
2393
2474
  .bootstrap-iso .btn-light {
2394
2475
  color: #212529;
@@ -2402,7 +2483,7 @@
2402
2483
  }
2403
2484
  .bootstrap-iso .btn-light:focus,
2404
2485
  .bootstrap-iso .btn-light.focus {
2405
- box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
2486
+ box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
2406
2487
  }
2407
2488
  .bootstrap-iso .btn-light.disabled,
2408
2489
  .bootstrap-iso .btn-light:disabled {
@@ -2420,7 +2501,7 @@
2420
2501
  .bootstrap-iso .btn-light:not(:disabled):not(.disabled):active:focus,
2421
2502
  .bootstrap-iso .btn-light:not(:disabled):not(.disabled).active:focus,
2422
2503
  .bootstrap-iso .show > .btn-light.dropdown-toggle:focus {
2423
- box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
2504
+ box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
2424
2505
  }
2425
2506
  .bootstrap-iso .btn-dark {
2426
2507
  color: #fff;
@@ -2434,7 +2515,7 @@
2434
2515
  }
2435
2516
  .bootstrap-iso .btn-dark:focus,
2436
2517
  .bootstrap-iso .btn-dark.focus {
2437
- box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
2518
+ box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
2438
2519
  }
2439
2520
  .bootstrap-iso .btn-dark.disabled,
2440
2521
  .bootstrap-iso .btn-dark:disabled {
@@ -2452,12 +2533,10 @@
2452
2533
  .bootstrap-iso .btn-dark:not(:disabled):not(.disabled):active:focus,
2453
2534
  .bootstrap-iso .btn-dark:not(:disabled):not(.disabled).active:focus,
2454
2535
  .bootstrap-iso .show > .btn-dark.dropdown-toggle:focus {
2455
- box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
2536
+ box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
2456
2537
  }
2457
2538
  .bootstrap-iso .btn-outline-primary {
2458
2539
  color: #007bff;
2459
- background-color: transparent;
2460
- background-image: none;
2461
2540
  border-color: #007bff;
2462
2541
  }
2463
2542
  .bootstrap-iso .btn-outline-primary:hover {
@@ -2488,8 +2567,6 @@
2488
2567
  }
2489
2568
  .bootstrap-iso .btn-outline-secondary {
2490
2569
  color: #6c757d;
2491
- background-color: transparent;
2492
- background-image: none;
2493
2570
  border-color: #6c757d;
2494
2571
  }
2495
2572
  .bootstrap-iso .btn-outline-secondary:hover {
@@ -2520,8 +2597,6 @@
2520
2597
  }
2521
2598
  .bootstrap-iso .btn-outline-success {
2522
2599
  color: #28a745;
2523
- background-color: transparent;
2524
- background-image: none;
2525
2600
  border-color: #28a745;
2526
2601
  }
2527
2602
  .bootstrap-iso .btn-outline-success:hover {
@@ -2552,8 +2627,6 @@
2552
2627
  }
2553
2628
  .bootstrap-iso .btn-outline-info {
2554
2629
  color: #17a2b8;
2555
- background-color: transparent;
2556
- background-image: none;
2557
2630
  border-color: #17a2b8;
2558
2631
  }
2559
2632
  .bootstrap-iso .btn-outline-info:hover {
@@ -2584,8 +2657,6 @@
2584
2657
  }
2585
2658
  .bootstrap-iso .btn-outline-warning {
2586
2659
  color: #ffc107;
2587
- background-color: transparent;
2588
- background-image: none;
2589
2660
  border-color: #ffc107;
2590
2661
  }
2591
2662
  .bootstrap-iso .btn-outline-warning:hover {
@@ -2616,8 +2687,6 @@
2616
2687
  }
2617
2688
  .bootstrap-iso .btn-outline-danger {
2618
2689
  color: #dc3545;
2619
- background-color: transparent;
2620
- background-image: none;
2621
2690
  border-color: #dc3545;
2622
2691
  }
2623
2692
  .bootstrap-iso .btn-outline-danger:hover {
@@ -2648,8 +2717,6 @@
2648
2717
  }
2649
2718
  .bootstrap-iso .btn-outline-light {
2650
2719
  color: #f8f9fa;
2651
- background-color: transparent;
2652
- background-image: none;
2653
2720
  border-color: #f8f9fa;
2654
2721
  }
2655
2722
  .bootstrap-iso .btn-outline-light:hover {
@@ -2680,8 +2747,6 @@
2680
2747
  }
2681
2748
  .bootstrap-iso .btn-outline-dark {
2682
2749
  color: #343a40;
2683
- background-color: transparent;
2684
- background-image: none;
2685
2750
  border-color: #343a40;
2686
2751
  }
2687
2752
  .bootstrap-iso .btn-outline-dark:hover {
@@ -2713,18 +2778,15 @@
2713
2778
  .bootstrap-iso .btn-link {
2714
2779
  font-weight: 400;
2715
2780
  color: #007bff;
2716
- background-color: transparent;
2781
+ text-decoration: none;
2717
2782
  }
2718
2783
  .bootstrap-iso .btn-link:hover {
2719
2784
  color: #0056b3;
2720
2785
  text-decoration: underline;
2721
- background-color: transparent;
2722
- border-color: transparent;
2723
2786
  }
2724
2787
  .bootstrap-iso .btn-link:focus,
2725
2788
  .bootstrap-iso .btn-link.focus {
2726
2789
  text-decoration: underline;
2727
- border-color: transparent;
2728
2790
  box-shadow: none;
2729
2791
  }
2730
2792
  .bootstrap-iso .btn-link:disabled,
@@ -2761,7 +2823,7 @@
2761
2823
  .bootstrap-iso .fade {
2762
2824
  transition: opacity 0.15s linear;
2763
2825
  }
2764
- @media screen and (prefers-reduced-motion: reduce) {
2826
+ @media (prefers-reduced-motion: reduce) {
2765
2827
  .bootstrap-iso .fade {
2766
2828
  transition: none;
2767
2829
  }
@@ -2778,7 +2840,7 @@
2778
2840
  overflow: hidden;
2779
2841
  transition: height 0.35s ease;
2780
2842
  }
2781
- @media screen and (prefers-reduced-motion: reduce) {
2843
+ @media (prefers-reduced-motion: reduce) {
2782
2844
  .bootstrap-iso .collapsing {
2783
2845
  transition: none;
2784
2846
  }
@@ -2789,10 +2851,11 @@
2789
2851
  .bootstrap-iso .dropleft {
2790
2852
  position: relative;
2791
2853
  }
2854
+ .bootstrap-iso .dropdown-toggle {
2855
+ white-space: nowrap;
2856
+ }
2792
2857
  .bootstrap-iso .dropdown-toggle::after {
2793
2858
  display: inline-block;
2794
- width: 0;
2795
- height: 0;
2796
2859
  margin-left: 0.255em;
2797
2860
  vertical-align: 0.255em;
2798
2861
  content: "";
@@ -2823,10 +2886,54 @@
2823
2886
  border: 1px solid rgba(0, 0, 0, 0.15);
2824
2887
  border-radius: 0.25rem;
2825
2888
  }
2889
+ .bootstrap-iso .dropdown-menu-left {
2890
+ right: auto;
2891
+ left: 0;
2892
+ }
2826
2893
  .bootstrap-iso .dropdown-menu-right {
2827
2894
  right: 0;
2828
2895
  left: auto;
2829
2896
  }
2897
+ @media (min-width: 576px) {
2898
+ .bootstrap-iso .dropdown-menu-sm-left {
2899
+ right: auto;
2900
+ left: 0;
2901
+ }
2902
+ .bootstrap-iso .dropdown-menu-sm-right {
2903
+ right: 0;
2904
+ left: auto;
2905
+ }
2906
+ }
2907
+ @media (min-width: 768px) {
2908
+ .bootstrap-iso .dropdown-menu-md-left {
2909
+ right: auto;
2910
+ left: 0;
2911
+ }
2912
+ .bootstrap-iso .dropdown-menu-md-right {
2913
+ right: 0;
2914
+ left: auto;
2915
+ }
2916
+ }
2917
+ @media (min-width: 992px) {
2918
+ .bootstrap-iso .dropdown-menu-lg-left {
2919
+ right: auto;
2920
+ left: 0;
2921
+ }
2922
+ .bootstrap-iso .dropdown-menu-lg-right {
2923
+ right: 0;
2924
+ left: auto;
2925
+ }
2926
+ }
2927
+ @media (min-width: 1200px) {
2928
+ .bootstrap-iso .dropdown-menu-xl-left {
2929
+ right: auto;
2930
+ left: 0;
2931
+ }
2932
+ .bootstrap-iso .dropdown-menu-xl-right {
2933
+ right: 0;
2934
+ left: auto;
2935
+ }
2936
+ }
2830
2937
  .bootstrap-iso .dropup .dropdown-menu {
2831
2938
  top: auto;
2832
2939
  bottom: 100%;
@@ -2835,8 +2942,6 @@
2835
2942
  }
2836
2943
  .bootstrap-iso .dropup .dropdown-toggle::after {
2837
2944
  display: inline-block;
2838
- width: 0;
2839
- height: 0;
2840
2945
  margin-left: 0.255em;
2841
2946
  vertical-align: 0.255em;
2842
2947
  content: "";
@@ -2857,8 +2962,6 @@
2857
2962
  }
2858
2963
  .bootstrap-iso .dropright .dropdown-toggle::after {
2859
2964
  display: inline-block;
2860
- width: 0;
2861
- height: 0;
2862
2965
  margin-left: 0.255em;
2863
2966
  vertical-align: 0.255em;
2864
2967
  content: "";
@@ -2882,8 +2985,6 @@
2882
2985
  }
2883
2986
  .bootstrap-iso .dropleft .dropdown-toggle::after {
2884
2987
  display: inline-block;
2885
- width: 0;
2886
- height: 0;
2887
2988
  margin-left: 0.255em;
2888
2989
  vertical-align: 0.255em;
2889
2990
  content: "";
@@ -2893,8 +2994,6 @@
2893
2994
  }
2894
2995
  .bootstrap-iso .dropleft .dropdown-toggle::before {
2895
2996
  display: inline-block;
2896
- width: 0;
2897
- height: 0;
2898
2997
  margin-right: 0.255em;
2899
2998
  vertical-align: 0.255em;
2900
2999
  content: "";
@@ -2948,6 +3047,7 @@
2948
3047
  .bootstrap-iso .dropdown-item.disabled,
2949
3048
  .bootstrap-iso .dropdown-item:disabled {
2950
3049
  color: #6c757d;
3050
+ pointer-events: none;
2951
3051
  background-color: transparent;
2952
3052
  }
2953
3053
  .bootstrap-iso .dropdown-menu.show {
@@ -2976,8 +3076,8 @@
2976
3076
  .bootstrap-iso .btn-group > .btn,
2977
3077
  .bootstrap-iso .btn-group-vertical > .btn {
2978
3078
  position: relative;
2979
- -ms-flex: 0 1 auto;
2980
- flex: 0 1 auto;
3079
+ -ms-flex: 1 1 auto;
3080
+ flex: 1 1 auto;
2981
3081
  }
2982
3082
  .bootstrap-iso .btn-group > .btn:hover,
2983
3083
  .bootstrap-iso .btn-group-vertical > .btn:hover {
@@ -2991,16 +3091,6 @@
2991
3091
  .bootstrap-iso .btn-group-vertical > .btn.active {
2992
3092
  z-index: 1;
2993
3093
  }
2994
- .bootstrap-iso .btn-group .btn + .btn,
2995
- .bootstrap-iso .btn-group .btn + .btn-group,
2996
- .bootstrap-iso .btn-group .btn-group + .btn,
2997
- .bootstrap-iso .btn-group .btn-group + .btn-group,
2998
- .bootstrap-iso .btn-group-vertical .btn + .btn,
2999
- .bootstrap-iso .btn-group-vertical .btn + .btn-group,
3000
- .bootstrap-iso .btn-group-vertical .btn-group + .btn,
3001
- .bootstrap-iso .btn-group-vertical .btn-group + .btn-group {
3002
- margin-left: -1px;
3003
- }
3004
3094
  .bootstrap-iso .btn-toolbar {
3005
3095
  display: -ms-flexbox;
3006
3096
  display: flex;
@@ -3012,8 +3102,9 @@
3012
3102
  .bootstrap-iso .btn-toolbar .input-group {
3013
3103
  width: auto;
3014
3104
  }
3015
- .bootstrap-iso .btn-group > .btn:first-child {
3016
- margin-left: 0;
3105
+ .bootstrap-iso .btn-group > .btn:not(:first-child),
3106
+ .bootstrap-iso .btn-group > .btn-group:not(:first-child) {
3107
+ margin-left: -1px;
3017
3108
  }
3018
3109
  .bootstrap-iso .btn-group > .btn:not(:last-child):not(.dropdown-toggle),
3019
3110
  .bootstrap-iso .btn-group > .btn-group:not(:last-child) > .btn {
@@ -3055,16 +3146,13 @@
3055
3146
  -ms-flex-pack: center;
3056
3147
  justify-content: center;
3057
3148
  }
3058
- .bootstrap-iso .btn-group-vertical .btn,
3059
- .bootstrap-iso .btn-group-vertical .btn-group {
3149
+ .bootstrap-iso .btn-group-vertical > .btn,
3150
+ .bootstrap-iso .btn-group-vertical > .btn-group {
3060
3151
  width: 100%;
3061
3152
  }
3062
- .bootstrap-iso .btn-group-vertical > .btn + .btn,
3063
- .bootstrap-iso .btn-group-vertical > .btn + .btn-group,
3064
- .bootstrap-iso .btn-group-vertical > .btn-group + .btn,
3065
- .bootstrap-iso .btn-group-vertical > .btn-group + .btn-group {
3153
+ .bootstrap-iso .btn-group-vertical > .btn:not(:first-child),
3154
+ .bootstrap-iso .btn-group-vertical > .btn-group:not(:first-child) {
3066
3155
  margin-top: -1px;
3067
- margin-left: 0;
3068
3156
  }
3069
3157
  .bootstrap-iso .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
3070
3158
  .bootstrap-iso .btn-group-vertical > .btn-group:not(:last-child) > .btn {
@@ -3099,6 +3187,7 @@
3099
3187
  width: 100%;
3100
3188
  }
3101
3189
  .bootstrap-iso .input-group > .form-control,
3190
+ .bootstrap-iso .input-group > .form-control-plaintext,
3102
3191
  .bootstrap-iso .input-group > .custom-select,
3103
3192
  .bootstrap-iso .input-group > .custom-file {
3104
3193
  position: relative;
@@ -3110,6 +3199,9 @@
3110
3199
  .bootstrap-iso .input-group > .form-control + .form-control,
3111
3200
  .bootstrap-iso .input-group > .form-control + .custom-select,
3112
3201
  .bootstrap-iso .input-group > .form-control + .custom-file,
3202
+ .bootstrap-iso .input-group > .form-control-plaintext + .form-control,
3203
+ .bootstrap-iso .input-group > .form-control-plaintext + .custom-select,
3204
+ .bootstrap-iso .input-group > .form-control-plaintext + .custom-file,
3113
3205
  .bootstrap-iso .input-group > .custom-select + .form-control,
3114
3206
  .bootstrap-iso .input-group > .custom-select + .custom-select,
3115
3207
  .bootstrap-iso .input-group > .custom-select + .custom-file,
@@ -3161,6 +3253,10 @@
3161
3253
  position: relative;
3162
3254
  z-index: 2;
3163
3255
  }
3256
+ .bootstrap-iso .input-group-prepend .btn:focus,
3257
+ .bootstrap-iso .input-group-append .btn:focus {
3258
+ z-index: 3;
3259
+ }
3164
3260
  .bootstrap-iso .input-group-prepend .btn + .btn,
3165
3261
  .bootstrap-iso .input-group-prepend .btn + .input-group-text,
3166
3262
  .bootstrap-iso .input-group-prepend .input-group-text + .input-group-text,
@@ -3198,28 +3294,40 @@
3198
3294
  .bootstrap-iso .input-group-text input[type="checkbox"] {
3199
3295
  margin-top: 0;
3200
3296
  }
3297
+ .bootstrap-iso .input-group-lg > .form-control:not(textarea),
3298
+ .bootstrap-iso .input-group-lg > .custom-select {
3299
+ height: calc(1.5em + 1rem + 2px);
3300
+ }
3201
3301
  .bootstrap-iso .input-group-lg > .form-control,
3302
+ .bootstrap-iso .input-group-lg > .custom-select,
3202
3303
  .bootstrap-iso .input-group-lg > .input-group-prepend > .input-group-text,
3203
3304
  .bootstrap-iso .input-group-lg > .input-group-append > .input-group-text,
3204
3305
  .bootstrap-iso .input-group-lg > .input-group-prepend > .btn,
3205
3306
  .bootstrap-iso .input-group-lg > .input-group-append > .btn {
3206
- height: calc(4.875rem);
3207
3307
  padding: 0.5rem 1rem;
3208
3308
  font-size: 1.25rem;
3209
3309
  line-height: 1.5;
3210
3310
  border-radius: 0.3rem;
3211
3311
  }
3312
+ .bootstrap-iso .input-group-sm > .form-control:not(textarea),
3313
+ .bootstrap-iso .input-group-sm > .custom-select {
3314
+ height: calc(1.5em + 0.5rem + 2px);
3315
+ }
3212
3316
  .bootstrap-iso .input-group-sm > .form-control,
3317
+ .bootstrap-iso .input-group-sm > .custom-select,
3213
3318
  .bootstrap-iso .input-group-sm > .input-group-prepend > .input-group-text,
3214
3319
  .bootstrap-iso .input-group-sm > .input-group-append > .input-group-text,
3215
3320
  .bootstrap-iso .input-group-sm > .input-group-prepend > .btn,
3216
3321
  .bootstrap-iso .input-group-sm > .input-group-append > .btn {
3217
- height: calc(3.8125rem);
3218
3322
  padding: 0.25rem 0.5rem;
3219
3323
  font-size: 0.875rem;
3220
3324
  line-height: 1.5;
3221
3325
  border-radius: 0.2rem;
3222
3326
  }
3327
+ .bootstrap-iso .input-group-lg > .custom-select,
3328
+ .bootstrap-iso .input-group-sm > .custom-select {
3329
+ padding-right: 1.75rem;
3330
+ }
3223
3331
  .bootstrap-iso .input-group > .input-group-prepend > .btn,
3224
3332
  .bootstrap-iso .input-group > .input-group-prepend > .input-group-text,
3225
3333
  .bootstrap-iso .input-group > .input-group-append:not(:last-child) > .btn,
@@ -3256,14 +3364,19 @@
3256
3364
  }
3257
3365
  .bootstrap-iso .custom-control-input:checked ~ .custom-control-label::before {
3258
3366
  color: #fff;
3367
+ border-color: #007bff;
3259
3368
  background-color: #007bff;
3260
3369
  }
3261
3370
  .bootstrap-iso .custom-control-input:focus ~ .custom-control-label::before {
3262
- box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
3371
+ box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
3372
+ }
3373
+ .bootstrap-iso .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
3374
+ border-color: #80bdff;
3263
3375
  }
3264
- .bootstrap-iso .custom-control-input:active ~ .custom-control-label::before {
3376
+ .bootstrap-iso .custom-control-input:not(:disabled):active ~ .custom-control-label::before {
3265
3377
  color: #fff;
3266
3378
  background-color: #b3d7ff;
3379
+ border-color: #b3d7ff;
3267
3380
  }
3268
3381
  .bootstrap-iso .custom-control-input:disabled ~ .custom-control-label {
3269
3382
  color: #6c757d;
@@ -3274,6 +3387,7 @@
3274
3387
  .bootstrap-iso .custom-control-label {
3275
3388
  position: relative;
3276
3389
  margin-bottom: 0;
3390
+ vertical-align: top;
3277
3391
  }
3278
3392
  .bootstrap-iso .custom-control-label::before {
3279
3393
  position: absolute;
@@ -3284,11 +3398,8 @@
3284
3398
  height: 1rem;
3285
3399
  pointer-events: none;
3286
3400
  content: "";
3287
- -webkit-user-select: none;
3288
- -moz-user-select: none;
3289
- -ms-user-select: none;
3290
- user-select: none;
3291
- background-color: #dee2e6;
3401
+ background-color: #fff;
3402
+ border: #adb5bd solid 1px;
3292
3403
  }
3293
3404
  .bootstrap-iso .custom-control-label::after {
3294
3405
  position: absolute;
@@ -3298,24 +3409,20 @@
3298
3409
  width: 1rem;
3299
3410
  height: 1rem;
3300
3411
  content: "";
3301
- background-repeat: no-repeat;
3302
- background-position: center center;
3303
- background-size: 50% 50%;
3412
+ background: no-repeat 50% / 50% 50%;
3304
3413
  }
3305
3414
  .bootstrap-iso .custom-checkbox .custom-control-label::before {
3306
3415
  border-radius: 0.25rem;
3307
3416
  }
3308
- .bootstrap-iso .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
3309
- background-color: #007bff;
3310
- }
3311
3417
  .bootstrap-iso .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
3312
- background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
3418
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
3313
3419
  }
3314
3420
  .bootstrap-iso .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
3421
+ border-color: #007bff;
3315
3422
  background-color: #007bff;
3316
3423
  }
3317
3424
  .bootstrap-iso .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
3318
- background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E");
3425
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
3319
3426
  }
3320
3427
  .bootstrap-iso .custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
3321
3428
  background-color: rgba(0, 123, 255, 0.5);
@@ -3326,25 +3433,57 @@
3326
3433
  .bootstrap-iso .custom-radio .custom-control-label::before {
3327
3434
  border-radius: 50%;
3328
3435
  }
3329
- .bootstrap-iso .custom-radio .custom-control-input:checked ~ .custom-control-label::before {
3330
- background-color: #007bff;
3331
- }
3332
3436
  .bootstrap-iso .custom-radio .custom-control-input:checked ~ .custom-control-label::after {
3333
- background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E");
3437
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
3334
3438
  }
3335
3439
  .bootstrap-iso .custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
3336
3440
  background-color: rgba(0, 123, 255, 0.5);
3337
3441
  }
3442
+ .bootstrap-iso .custom-switch {
3443
+ padding-left: 2.25rem;
3444
+ }
3445
+ .bootstrap-iso .custom-switch .custom-control-label::before {
3446
+ left: -2.25rem;
3447
+ width: 1.75rem;
3448
+ pointer-events: all;
3449
+ border-radius: 0.5rem;
3450
+ }
3451
+ .bootstrap-iso .custom-switch .custom-control-label::after {
3452
+ top: calc(0.25rem + 2px);
3453
+ left: calc(-2.25rem + 2px);
3454
+ width: calc(1rem - 4px);
3455
+ height: calc(1rem - 4px);
3456
+ background-color: #adb5bd;
3457
+ border-radius: 0.5rem;
3458
+ transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
3459
+ transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
3460
+ transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
3461
+ }
3462
+ @media (prefers-reduced-motion: reduce) {
3463
+ .bootstrap-iso .custom-switch .custom-control-label::after {
3464
+ transition: none;
3465
+ }
3466
+ }
3467
+ .bootstrap-iso .custom-switch .custom-control-input:checked ~ .custom-control-label::after {
3468
+ background-color: #fff;
3469
+ -webkit-transform: translateX(0.75rem);
3470
+ transform: translateX(0.75rem);
3471
+ }
3472
+ .bootstrap-iso .custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
3473
+ background-color: rgba(0, 123, 255, 0.5);
3474
+ }
3338
3475
  .bootstrap-iso .custom-select {
3339
3476
  display: inline-block;
3340
3477
  width: 100%;
3341
- height: calc(4.25rem);
3478
+ height: calc(1.5em + 0.75rem + 2px);
3342
3479
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
3480
+ font-size: 1rem;
3481
+ font-weight: 400;
3343
3482
  line-height: 1.5;
3344
3483
  color: #495057;
3345
3484
  vertical-align: middle;
3346
- background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
3347
- background-size: 8px 10px;
3485
+ background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center / 8px 10px;
3486
+ background-color: #fff;
3348
3487
  border: 1px solid #ced4da;
3349
3488
  border-radius: 0.25rem;
3350
3489
  -webkit-appearance: none;
@@ -3354,7 +3493,7 @@
3354
3493
  .bootstrap-iso .custom-select:focus {
3355
3494
  border-color: #80bdff;
3356
3495
  outline: 0;
3357
- box-shadow: 0 0 0 0.2rem rgba(128, 189, 255, 0.5);
3496
+ box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
3358
3497
  }
3359
3498
  .bootstrap-iso .custom-select:focus::-ms-value {
3360
3499
  color: #495057;
@@ -3371,32 +3510,34 @@
3371
3510
  background-color: #e9ecef;
3372
3511
  }
3373
3512
  .bootstrap-iso .custom-select::-ms-expand {
3374
- opacity: 0;
3513
+ display: none;
3375
3514
  }
3376
3515
  .bootstrap-iso .custom-select-sm {
3377
- height: calc(3.8125rem);
3378
- padding-top: 0.375rem;
3379
- padding-bottom: 0.375rem;
3380
- font-size: 75%;
3516
+ height: calc(1.5em + 0.5rem + 2px);
3517
+ padding-top: 0.25rem;
3518
+ padding-bottom: 0.25rem;
3519
+ padding-left: 0.5rem;
3520
+ font-size: 0.875rem;
3381
3521
  }
3382
3522
  .bootstrap-iso .custom-select-lg {
3383
- height: calc(4.875rem);
3384
- padding-top: 0.375rem;
3385
- padding-bottom: 0.375rem;
3386
- font-size: 125%;
3523
+ height: calc(1.5em + 1rem + 2px);
3524
+ padding-top: 0.5rem;
3525
+ padding-bottom: 0.5rem;
3526
+ padding-left: 1rem;
3527
+ font-size: 1.25rem;
3387
3528
  }
3388
3529
  .bootstrap-iso .custom-file {
3389
3530
  position: relative;
3390
3531
  display: inline-block;
3391
3532
  width: 100%;
3392
- height: calc(4.25rem);
3533
+ height: calc(1.5em + 0.75rem + 2px);
3393
3534
  margin-bottom: 0;
3394
3535
  }
3395
3536
  .bootstrap-iso .custom-file-input {
3396
3537
  position: relative;
3397
3538
  z-index: 2;
3398
3539
  width: 100%;
3399
- height: calc(4.25rem);
3540
+ height: calc(1.5em + 0.75rem + 2px);
3400
3541
  margin: 0;
3401
3542
  opacity: 0;
3402
3543
  }
@@ -3404,23 +3545,24 @@
3404
3545
  border-color: #80bdff;
3405
3546
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
3406
3547
  }
3407
- .bootstrap-iso .custom-file-input:focus ~ .custom-file-label::after {
3408
- border-color: #80bdff;
3409
- }
3410
3548
  .bootstrap-iso .custom-file-input:disabled ~ .custom-file-label {
3411
3549
  background-color: #e9ecef;
3412
3550
  }
3413
3551
  .bootstrap-iso .custom-file-input:lang(en) ~ .custom-file-label::after {
3414
3552
  content: "Browse";
3415
3553
  }
3554
+ .bootstrap-iso .custom-file-input ~ .custom-file-label[data-browse]::after {
3555
+ content: attr(data-browse);
3556
+ }
3416
3557
  .bootstrap-iso .custom-file-label {
3417
3558
  position: absolute;
3418
3559
  top: 0;
3419
3560
  right: 0;
3420
3561
  left: 0;
3421
3562
  z-index: 1;
3422
- height: calc(4.25rem);
3563
+ height: calc(1.5em + 0.75rem + 2px);
3423
3564
  padding: 0.375rem 0.75rem;
3565
+ font-weight: 400;
3424
3566
  line-height: 1.5;
3425
3567
  color: #495057;
3426
3568
  background-color: #fff;
@@ -3434,18 +3576,19 @@
3434
3576
  bottom: 0;
3435
3577
  z-index: 3;
3436
3578
  display: block;
3437
- height: 2.25rem;
3579
+ height: calc(1.5em + 0.75rem);
3438
3580
  padding: 0.375rem 0.75rem;
3439
3581
  line-height: 1.5;
3440
3582
  color: #495057;
3441
3583
  content: "Browse";
3442
3584
  background-color: #e9ecef;
3443
- border-left: 1px solid #ced4da;
3585
+ border-left: inherit;
3444
3586
  border-radius: 0 0.25rem 0.25rem 0;
3445
3587
  }
3446
3588
  .bootstrap-iso .custom-range {
3447
3589
  width: 100%;
3448
- padding-left: 0;
3590
+ height: calc(1rem + 0.4rem);
3591
+ padding: 0;
3449
3592
  background-color: transparent;
3450
3593
  -webkit-appearance: none;
3451
3594
  -moz-appearance: none;
@@ -3477,7 +3620,7 @@
3477
3620
  -webkit-appearance: none;
3478
3621
  appearance: none;
3479
3622
  }
3480
- @media screen and (prefers-reduced-motion: reduce) {
3623
+ @media (prefers-reduced-motion: reduce) {
3481
3624
  .bootstrap-iso .custom-range::-webkit-slider-thumb {
3482
3625
  transition: none;
3483
3626
  }
@@ -3504,7 +3647,7 @@
3504
3647
  -moz-appearance: none;
3505
3648
  appearance: none;
3506
3649
  }
3507
- @media screen and (prefers-reduced-motion: reduce) {
3650
+ @media (prefers-reduced-motion: reduce) {
3508
3651
  .bootstrap-iso .custom-range::-moz-range-thumb {
3509
3652
  transition: none;
3510
3653
  }
@@ -3533,7 +3676,7 @@
3533
3676
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
3534
3677
  appearance: none;
3535
3678
  }
3536
- @media screen and (prefers-reduced-motion: reduce) {
3679
+ @media (prefers-reduced-motion: reduce) {
3537
3680
  .bootstrap-iso .custom-range::-ms-thumb {
3538
3681
  transition: none;
3539
3682
  }
@@ -3559,12 +3702,27 @@
3559
3702
  background-color: #dee2e6;
3560
3703
  border-radius: 1rem;
3561
3704
  }
3705
+ .bootstrap-iso .custom-range:disabled::-webkit-slider-thumb {
3706
+ background-color: #adb5bd;
3707
+ }
3708
+ .bootstrap-iso .custom-range:disabled::-webkit-slider-runnable-track {
3709
+ cursor: default;
3710
+ }
3711
+ .bootstrap-iso .custom-range:disabled::-moz-range-thumb {
3712
+ background-color: #adb5bd;
3713
+ }
3714
+ .bootstrap-iso .custom-range:disabled::-moz-range-track {
3715
+ cursor: default;
3716
+ }
3717
+ .bootstrap-iso .custom-range:disabled::-ms-thumb {
3718
+ background-color: #adb5bd;
3719
+ }
3562
3720
  .bootstrap-iso .custom-control-label::before,
3563
3721
  .bootstrap-iso .custom-file-label,
3564
3722
  .bootstrap-iso .custom-select {
3565
3723
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
3566
3724
  }
3567
- @media screen and (prefers-reduced-motion: reduce) {
3725
+ @media (prefers-reduced-motion: reduce) {
3568
3726
  .bootstrap-iso .custom-control-label::before,
3569
3727
  .bootstrap-iso .custom-file-label,
3570
3728
  .bootstrap-iso .custom-select {
@@ -3590,6 +3748,8 @@
3590
3748
  }
3591
3749
  .bootstrap-iso .nav-link.disabled {
3592
3750
  color: #6c757d;
3751
+ pointer-events: none;
3752
+ cursor: default;
3593
3753
  }
3594
3754
  .bootstrap-iso .nav-tabs {
3595
3755
  border-bottom: 1px solid #dee2e6;
@@ -3726,9 +3886,6 @@
3726
3886
  .bootstrap-iso .navbar-toggler:focus {
3727
3887
  text-decoration: none;
3728
3888
  }
3729
- .bootstrap-iso .navbar-toggler:not(:disabled):not(.disabled) {
3730
- cursor: pointer;
3731
- }
3732
3889
  .bootstrap-iso .navbar-toggler-icon {
3733
3890
  display: inline-block;
3734
3891
  width: 1.5em;
@@ -3962,7 +4119,7 @@
3962
4119
  border-color: rgba(0, 0, 0, 0.1);
3963
4120
  }
3964
4121
  .bootstrap-iso .navbar-light .navbar-toggler-icon {
3965
- background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
4122
+ background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
3966
4123
  }
3967
4124
  .bootstrap-iso .navbar-light .navbar-text {
3968
4125
  color: rgba(0, 0, 0, 0.5);
@@ -4002,7 +4159,7 @@
4002
4159
  border-color: rgba(255, 255, 255, 0.1);
4003
4160
  }
4004
4161
  .bootstrap-iso .navbar-dark .navbar-toggler-icon {
4005
- background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
4162
+ background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
4006
4163
  }
4007
4164
  .bootstrap-iso .navbar-dark .navbar-text {
4008
4165
  color: rgba(255, 255, 255, 0.5);
@@ -4067,7 +4224,7 @@
4067
4224
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
4068
4225
  }
4069
4226
  .bootstrap-iso .card-header:first-child {
4070
- border-radius: calc(-0.75rem) calc(-0.75rem) 0 0;
4227
+ border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
4071
4228
  }
4072
4229
  .bootstrap-iso .card-header + .list-group .list-group-item:first-child {
4073
4230
  border-top: 0;
@@ -4078,7 +4235,7 @@
4078
4235
  border-top: 1px solid rgba(0, 0, 0, 0.125);
4079
4236
  }
4080
4237
  .bootstrap-iso .card-footer:last-child {
4081
- border-radius: 0 0 calc(-0.75rem) calc(-0.75rem);
4238
+ border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
4082
4239
  }
4083
4240
  .bootstrap-iso .card-header-tabs {
4084
4241
  margin-right: -0.625rem;
@@ -4100,17 +4257,17 @@
4100
4257
  }
4101
4258
  .bootstrap-iso .card-img {
4102
4259
  width: 100%;
4103
- border-radius: calc(-0.75rem);
4260
+ border-radius: calc(0.25rem - 1px);
4104
4261
  }
4105
4262
  .bootstrap-iso .card-img-top {
4106
4263
  width: 100%;
4107
- border-top-left-radius: calc(-0.75rem);
4108
- border-top-right-radius: calc(-0.75rem);
4264
+ border-top-left-radius: calc(0.25rem - 1px);
4265
+ border-top-right-radius: calc(0.25rem - 1px);
4109
4266
  }
4110
4267
  .bootstrap-iso .card-img-bottom {
4111
4268
  width: 100%;
4112
- border-bottom-right-radius: calc(-0.75rem);
4113
- border-bottom-left-radius: calc(-0.75rem);
4269
+ border-bottom-right-radius: calc(0.25rem - 1px);
4270
+ border-bottom-left-radius: calc(0.25rem - 1px);
4114
4271
  }
4115
4272
  .bootstrap-iso .card-deck {
4116
4273
  display: -ms-flexbox;
@@ -4163,52 +4320,30 @@
4163
4320
  margin-left: 0;
4164
4321
  border-left: 0;
4165
4322
  }
4166
- .bootstrap-iso .card-group > .card:first-child {
4323
+ .bootstrap-iso .card-group > .card:not(:last-child) {
4167
4324
  border-top-right-radius: 0;
4168
4325
  border-bottom-right-radius: 0;
4169
4326
  }
4170
- .bootstrap-iso .card-group > .card:first-child .card-img-top,
4171
- .bootstrap-iso .card-group > .card:first-child .card-header {
4327
+ .bootstrap-iso .card-group > .card:not(:last-child) .card-img-top,
4328
+ .bootstrap-iso .card-group > .card:not(:last-child) .card-header {
4172
4329
  border-top-right-radius: 0;
4173
4330
  }
4174
- .bootstrap-iso .card-group > .card:first-child .card-img-bottom,
4175
- .bootstrap-iso .card-group > .card:first-child .card-footer {
4331
+ .bootstrap-iso .card-group > .card:not(:last-child) .card-img-bottom,
4332
+ .bootstrap-iso .card-group > .card:not(:last-child) .card-footer {
4176
4333
  border-bottom-right-radius: 0;
4177
4334
  }
4178
- .bootstrap-iso .card-group > .card:last-child {
4335
+ .bootstrap-iso .card-group > .card:not(:first-child) {
4179
4336
  border-top-left-radius: 0;
4180
4337
  border-bottom-left-radius: 0;
4181
4338
  }
4182
- .bootstrap-iso .card-group > .card:last-child .card-img-top,
4183
- .bootstrap-iso .card-group > .card:last-child .card-header {
4339
+ .bootstrap-iso .card-group > .card:not(:first-child) .card-img-top,
4340
+ .bootstrap-iso .card-group > .card:not(:first-child) .card-header {
4184
4341
  border-top-left-radius: 0;
4185
4342
  }
4186
- .bootstrap-iso .card-group > .card:last-child .card-img-bottom,
4187
- .bootstrap-iso .card-group > .card:last-child .card-footer {
4343
+ .bootstrap-iso .card-group > .card:not(:first-child) .card-img-bottom,
4344
+ .bootstrap-iso .card-group > .card:not(:first-child) .card-footer {
4188
4345
  border-bottom-left-radius: 0;
4189
4346
  }
4190
- .bootstrap-iso .card-group > .card:only-child {
4191
- border-radius: 0.25rem;
4192
- }
4193
- .bootstrap-iso .card-group > .card:only-child .card-img-top,
4194
- .bootstrap-iso .card-group > .card:only-child .card-header {
4195
- border-top-left-radius: 0.25rem;
4196
- border-top-right-radius: 0.25rem;
4197
- }
4198
- .bootstrap-iso .card-group > .card:only-child .card-img-bottom,
4199
- .bootstrap-iso .card-group > .card:only-child .card-footer {
4200
- border-bottom-right-radius: 0.25rem;
4201
- border-bottom-left-radius: 0.25rem;
4202
- }
4203
- .bootstrap-iso .card-group > .card:not(:first-child):not(:last-child):not(:only-child) {
4204
- border-radius: 0;
4205
- }
4206
- .bootstrap-iso .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-top,
4207
- .bootstrap-iso .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom,
4208
- .bootstrap-iso .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-header,
4209
- .bootstrap-iso .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-footer {
4210
- border-radius: 0;
4211
- }
4212
4347
  }
4213
4348
  .bootstrap-iso .card-columns .card {
4214
4349
  margin-bottom: 0.75rem;
@@ -4229,22 +4364,28 @@
4229
4364
  width: 100%;
4230
4365
  }
4231
4366
  }
4232
- .bootstrap-iso .accordion .card:not(:first-of-type):not(:last-of-type) {
4233
- border-bottom: 0;
4367
+ .bootstrap-iso .accordion > .card {
4368
+ overflow: hidden;
4369
+ }
4370
+ .bootstrap-iso .accordion > .card:not(:first-of-type) .card-header:first-child {
4234
4371
  border-radius: 0;
4235
4372
  }
4236
- .bootstrap-iso .accordion .card:not(:first-of-type) .card-header:first-child {
4373
+ .bootstrap-iso .accordion > .card:not(:first-of-type):not(:last-of-type) {
4374
+ border-bottom: 0;
4237
4375
  border-radius: 0;
4238
4376
  }
4239
- .bootstrap-iso .accordion .card:first-of-type {
4377
+ .bootstrap-iso .accordion > .card:first-of-type {
4240
4378
  border-bottom: 0;
4241
4379
  border-bottom-right-radius: 0;
4242
4380
  border-bottom-left-radius: 0;
4243
4381
  }
4244
- .bootstrap-iso .accordion .card:last-of-type {
4382
+ .bootstrap-iso .accordion > .card:last-of-type {
4245
4383
  border-top-left-radius: 0;
4246
4384
  border-top-right-radius: 0;
4247
4385
  }
4386
+ .bootstrap-iso .accordion > .card .card-header {
4387
+ margin-bottom: -1px;
4388
+ }
4248
4389
  .bootstrap-iso .breadcrumb {
4249
4390
  display: -ms-flexbox;
4250
4391
  display: flex;
@@ -4303,9 +4444,6 @@
4303
4444
  outline: 0;
4304
4445
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
4305
4446
  }
4306
- .bootstrap-iso .page-link:not(:disabled):not(.disabled) {
4307
- cursor: pointer;
4308
- }
4309
4447
  .bootstrap-iso .page-item:first-child .page-link {
4310
4448
  margin-left: 0;
4311
4449
  border-top-left-radius: 0.25rem;
@@ -4364,6 +4502,16 @@
4364
4502
  white-space: nowrap;
4365
4503
  vertical-align: baseline;
4366
4504
  border-radius: 0.25rem;
4505
+ transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
4506
+ }
4507
+ @media (prefers-reduced-motion: reduce) {
4508
+ .bootstrap-iso .badge {
4509
+ transition: none;
4510
+ }
4511
+ }
4512
+ .bootstrap-iso a.badge:hover,
4513
+ .bootstrap-iso a.badge:focus {
4514
+ text-decoration: none;
4367
4515
  }
4368
4516
  .bootstrap-iso .badge:empty {
4369
4517
  display: none;
@@ -4381,82 +4529,114 @@
4381
4529
  color: #fff;
4382
4530
  background-color: #007bff;
4383
4531
  }
4384
- .bootstrap-iso .badge-primary[href]:hover,
4385
- .bootstrap-iso .badge-primary[href]:focus {
4532
+ .bootstrap-iso a.badge-primary:hover,
4533
+ .bootstrap-iso a.badge-primary:focus {
4386
4534
  color: #fff;
4387
- text-decoration: none;
4388
4535
  background-color: #0062cc;
4389
4536
  }
4537
+ .bootstrap-iso a.badge-primary:focus,
4538
+ .bootstrap-iso a.badge-primary.focus {
4539
+ outline: 0;
4540
+ box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
4541
+ }
4390
4542
  .bootstrap-iso .badge-secondary {
4391
4543
  color: #fff;
4392
4544
  background-color: #6c757d;
4393
4545
  }
4394
- .bootstrap-iso .badge-secondary[href]:hover,
4395
- .bootstrap-iso .badge-secondary[href]:focus {
4546
+ .bootstrap-iso a.badge-secondary:hover,
4547
+ .bootstrap-iso a.badge-secondary:focus {
4396
4548
  color: #fff;
4397
- text-decoration: none;
4398
4549
  background-color: #545b62;
4399
4550
  }
4551
+ .bootstrap-iso a.badge-secondary:focus,
4552
+ .bootstrap-iso a.badge-secondary.focus {
4553
+ outline: 0;
4554
+ box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
4555
+ }
4400
4556
  .bootstrap-iso .badge-success {
4401
4557
  color: #fff;
4402
4558
  background-color: #28a745;
4403
4559
  }
4404
- .bootstrap-iso .badge-success[href]:hover,
4405
- .bootstrap-iso .badge-success[href]:focus {
4560
+ .bootstrap-iso a.badge-success:hover,
4561
+ .bootstrap-iso a.badge-success:focus {
4406
4562
  color: #fff;
4407
- text-decoration: none;
4408
4563
  background-color: #1e7e34;
4409
4564
  }
4565
+ .bootstrap-iso a.badge-success:focus,
4566
+ .bootstrap-iso a.badge-success.focus {
4567
+ outline: 0;
4568
+ box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
4569
+ }
4410
4570
  .bootstrap-iso .badge-info {
4411
4571
  color: #fff;
4412
4572
  background-color: #17a2b8;
4413
4573
  }
4414
- .bootstrap-iso .badge-info[href]:hover,
4415
- .bootstrap-iso .badge-info[href]:focus {
4574
+ .bootstrap-iso a.badge-info:hover,
4575
+ .bootstrap-iso a.badge-info:focus {
4416
4576
  color: #fff;
4417
- text-decoration: none;
4418
4577
  background-color: #117a8b;
4419
4578
  }
4579
+ .bootstrap-iso a.badge-info:focus,
4580
+ .bootstrap-iso a.badge-info.focus {
4581
+ outline: 0;
4582
+ box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
4583
+ }
4420
4584
  .bootstrap-iso .badge-warning {
4421
4585
  color: #212529;
4422
4586
  background-color: #ffc107;
4423
4587
  }
4424
- .bootstrap-iso .badge-warning[href]:hover,
4425
- .bootstrap-iso .badge-warning[href]:focus {
4588
+ .bootstrap-iso a.badge-warning:hover,
4589
+ .bootstrap-iso a.badge-warning:focus {
4426
4590
  color: #212529;
4427
- text-decoration: none;
4428
4591
  background-color: #d39e00;
4429
4592
  }
4593
+ .bootstrap-iso a.badge-warning:focus,
4594
+ .bootstrap-iso a.badge-warning.focus {
4595
+ outline: 0;
4596
+ box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
4597
+ }
4430
4598
  .bootstrap-iso .badge-danger {
4431
4599
  color: #fff;
4432
4600
  background-color: #dc3545;
4433
4601
  }
4434
- .bootstrap-iso .badge-danger[href]:hover,
4435
- .bootstrap-iso .badge-danger[href]:focus {
4602
+ .bootstrap-iso a.badge-danger:hover,
4603
+ .bootstrap-iso a.badge-danger:focus {
4436
4604
  color: #fff;
4437
- text-decoration: none;
4438
4605
  background-color: #bd2130;
4439
4606
  }
4607
+ .bootstrap-iso a.badge-danger:focus,
4608
+ .bootstrap-iso a.badge-danger.focus {
4609
+ outline: 0;
4610
+ box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
4611
+ }
4440
4612
  .bootstrap-iso .badge-light {
4441
4613
  color: #212529;
4442
4614
  background-color: #f8f9fa;
4443
4615
  }
4444
- .bootstrap-iso .badge-light[href]:hover,
4445
- .bootstrap-iso .badge-light[href]:focus {
4616
+ .bootstrap-iso a.badge-light:hover,
4617
+ .bootstrap-iso a.badge-light:focus {
4446
4618
  color: #212529;
4447
- text-decoration: none;
4448
4619
  background-color: #dae0e5;
4449
4620
  }
4621
+ .bootstrap-iso a.badge-light:focus,
4622
+ .bootstrap-iso a.badge-light.focus {
4623
+ outline: 0;
4624
+ box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
4625
+ }
4450
4626
  .bootstrap-iso .badge-dark {
4451
4627
  color: #fff;
4452
4628
  background-color: #343a40;
4453
4629
  }
4454
- .bootstrap-iso .badge-dark[href]:hover,
4455
- .bootstrap-iso .badge-dark[href]:focus {
4630
+ .bootstrap-iso a.badge-dark:hover,
4631
+ .bootstrap-iso a.badge-dark:focus {
4456
4632
  color: #fff;
4457
- text-decoration: none;
4458
4633
  background-color: #1d2124;
4459
4634
  }
4635
+ .bootstrap-iso a.badge-dark:focus,
4636
+ .bootstrap-iso a.badge-dark.focus {
4637
+ outline: 0;
4638
+ box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
4639
+ }
4460
4640
  .bootstrap-iso .jumbotron {
4461
4641
  padding: 2rem 1rem;
4462
4642
  margin-bottom: 2rem;
@@ -4622,7 +4802,7 @@
4622
4802
  background-color: #007bff;
4623
4803
  transition: width 0.6s ease;
4624
4804
  }
4625
- @media screen and (prefers-reduced-motion: reduce) {
4805
+ @media (prefers-reduced-motion: reduce) {
4626
4806
  .bootstrap-iso .progress-bar {
4627
4807
  transition: none;
4628
4808
  }
@@ -4635,6 +4815,12 @@
4635
4815
  -webkit-animation: progress-bar-stripes 1s linear infinite;
4636
4816
  animation: progress-bar-stripes 1s linear infinite;
4637
4817
  }
4818
+ @media (prefers-reduced-motion: reduce) {
4819
+ .bootstrap-iso .progress-bar-animated {
4820
+ -webkit-animation: none;
4821
+ animation: none;
4822
+ }
4823
+ }
4638
4824
  .bootstrap-iso .media {
4639
4825
  display: -ms-flexbox;
4640
4826
  display: flex;
@@ -4660,6 +4846,7 @@
4660
4846
  }
4661
4847
  .bootstrap-iso .list-group-item-action:hover,
4662
4848
  .bootstrap-iso .list-group-item-action:focus {
4849
+ z-index: 1;
4663
4850
  color: #495057;
4664
4851
  text-decoration: none;
4665
4852
  background-color: #f8f9fa;
@@ -4685,14 +4872,10 @@
4685
4872
  border-bottom-right-radius: 0.25rem;
4686
4873
  border-bottom-left-radius: 0.25rem;
4687
4874
  }
4688
- .bootstrap-iso .list-group-item:hover,
4689
- .bootstrap-iso .list-group-item:focus {
4690
- z-index: 1;
4691
- text-decoration: none;
4692
- }
4693
4875
  .bootstrap-iso .list-group-item.disabled,
4694
4876
  .bootstrap-iso .list-group-item:disabled {
4695
4877
  color: #6c757d;
4878
+ pointer-events: none;
4696
4879
  background-color: #fff;
4697
4880
  }
4698
4881
  .bootstrap-iso .list-group-item.active {
@@ -4701,15 +4884,122 @@
4701
4884
  background-color: #007bff;
4702
4885
  border-color: #007bff;
4703
4886
  }
4887
+ .bootstrap-iso .list-group-horizontal {
4888
+ -ms-flex-direction: row;
4889
+ flex-direction: row;
4890
+ }
4891
+ .bootstrap-iso .list-group-horizontal .list-group-item {
4892
+ margin-right: -1px;
4893
+ margin-bottom: 0;
4894
+ }
4895
+ .bootstrap-iso .list-group-horizontal .list-group-item:first-child {
4896
+ border-top-left-radius: 0.25rem;
4897
+ border-bottom-left-radius: 0.25rem;
4898
+ border-top-right-radius: 0;
4899
+ }
4900
+ .bootstrap-iso .list-group-horizontal .list-group-item:last-child {
4901
+ margin-right: 0;
4902
+ border-top-right-radius: 0.25rem;
4903
+ border-bottom-right-radius: 0.25rem;
4904
+ border-bottom-left-radius: 0;
4905
+ }
4906
+ @media (min-width: 576px) {
4907
+ .bootstrap-iso .list-group-horizontal-sm {
4908
+ -ms-flex-direction: row;
4909
+ flex-direction: row;
4910
+ }
4911
+ .bootstrap-iso .list-group-horizontal-sm .list-group-item {
4912
+ margin-right: -1px;
4913
+ margin-bottom: 0;
4914
+ }
4915
+ .bootstrap-iso .list-group-horizontal-sm .list-group-item:first-child {
4916
+ border-top-left-radius: 0.25rem;
4917
+ border-bottom-left-radius: 0.25rem;
4918
+ border-top-right-radius: 0;
4919
+ }
4920
+ .bootstrap-iso .list-group-horizontal-sm .list-group-item:last-child {
4921
+ margin-right: 0;
4922
+ border-top-right-radius: 0.25rem;
4923
+ border-bottom-right-radius: 0.25rem;
4924
+ border-bottom-left-radius: 0;
4925
+ }
4926
+ }
4927
+ @media (min-width: 768px) {
4928
+ .bootstrap-iso .list-group-horizontal-md {
4929
+ -ms-flex-direction: row;
4930
+ flex-direction: row;
4931
+ }
4932
+ .bootstrap-iso .list-group-horizontal-md .list-group-item {
4933
+ margin-right: -1px;
4934
+ margin-bottom: 0;
4935
+ }
4936
+ .bootstrap-iso .list-group-horizontal-md .list-group-item:first-child {
4937
+ border-top-left-radius: 0.25rem;
4938
+ border-bottom-left-radius: 0.25rem;
4939
+ border-top-right-radius: 0;
4940
+ }
4941
+ .bootstrap-iso .list-group-horizontal-md .list-group-item:last-child {
4942
+ margin-right: 0;
4943
+ border-top-right-radius: 0.25rem;
4944
+ border-bottom-right-radius: 0.25rem;
4945
+ border-bottom-left-radius: 0;
4946
+ }
4947
+ }
4948
+ @media (min-width: 992px) {
4949
+ .bootstrap-iso .list-group-horizontal-lg {
4950
+ -ms-flex-direction: row;
4951
+ flex-direction: row;
4952
+ }
4953
+ .bootstrap-iso .list-group-horizontal-lg .list-group-item {
4954
+ margin-right: -1px;
4955
+ margin-bottom: 0;
4956
+ }
4957
+ .bootstrap-iso .list-group-horizontal-lg .list-group-item:first-child {
4958
+ border-top-left-radius: 0.25rem;
4959
+ border-bottom-left-radius: 0.25rem;
4960
+ border-top-right-radius: 0;
4961
+ }
4962
+ .bootstrap-iso .list-group-horizontal-lg .list-group-item:last-child {
4963
+ margin-right: 0;
4964
+ border-top-right-radius: 0.25rem;
4965
+ border-bottom-right-radius: 0.25rem;
4966
+ border-bottom-left-radius: 0;
4967
+ }
4968
+ }
4969
+ @media (min-width: 1200px) {
4970
+ .bootstrap-iso .list-group-horizontal-xl {
4971
+ -ms-flex-direction: row;
4972
+ flex-direction: row;
4973
+ }
4974
+ .bootstrap-iso .list-group-horizontal-xl .list-group-item {
4975
+ margin-right: -1px;
4976
+ margin-bottom: 0;
4977
+ }
4978
+ .bootstrap-iso .list-group-horizontal-xl .list-group-item:first-child {
4979
+ border-top-left-radius: 0.25rem;
4980
+ border-bottom-left-radius: 0.25rem;
4981
+ border-top-right-radius: 0;
4982
+ }
4983
+ .bootstrap-iso .list-group-horizontal-xl .list-group-item:last-child {
4984
+ margin-right: 0;
4985
+ border-top-right-radius: 0.25rem;
4986
+ border-bottom-right-radius: 0.25rem;
4987
+ border-bottom-left-radius: 0;
4988
+ }
4989
+ }
4704
4990
  .bootstrap-iso .list-group-flush .list-group-item {
4705
4991
  border-right: 0;
4706
4992
  border-left: 0;
4707
4993
  border-radius: 0;
4708
4994
  }
4995
+ .bootstrap-iso .list-group-flush .list-group-item:last-child {
4996
+ margin-bottom: -1px;
4997
+ }
4709
4998
  .bootstrap-iso .list-group-flush:first-child .list-group-item:first-child {
4710
4999
  border-top: 0;
4711
5000
  }
4712
5001
  .bootstrap-iso .list-group-flush:last-child .list-group-item:last-child {
5002
+ margin-bottom: 0;
4713
5003
  border-bottom: 0;
4714
5004
  }
4715
5005
  .bootstrap-iso .list-group-item-primary {
@@ -4831,22 +5121,66 @@
4831
5121
  line-height: 1;
4832
5122
  color: #000;
4833
5123
  text-shadow: 0 1px 0 #fff;
4834
- opacity: .5;
5124
+ opacity: 0.5;
4835
5125
  }
4836
- .bootstrap-iso .close:not(:disabled):not(.disabled) {
4837
- cursor: pointer;
5126
+ .bootstrap-iso .close:hover {
5127
+ color: #000;
5128
+ text-decoration: none;
4838
5129
  }
4839
5130
  .bootstrap-iso .close:not(:disabled):not(.disabled):hover,
4840
5131
  .bootstrap-iso .close:not(:disabled):not(.disabled):focus {
4841
- color: #000;
4842
- text-decoration: none;
4843
- opacity: .75;
5132
+ opacity: 0.75;
4844
5133
  }
4845
5134
  .bootstrap-iso button.close {
4846
5135
  padding: 0;
4847
5136
  background-color: transparent;
4848
5137
  border: 0;
4849
5138
  -webkit-appearance: none;
5139
+ -moz-appearance: none;
5140
+ appearance: none;
5141
+ }
5142
+ .bootstrap-iso a.close.disabled {
5143
+ pointer-events: none;
5144
+ }
5145
+ .bootstrap-iso .toast {
5146
+ max-width: 350px;
5147
+ overflow: hidden;
5148
+ font-size: 0.875rem;
5149
+ background-color: rgba(255, 255, 255, 0.85);
5150
+ background-clip: padding-box;
5151
+ border: 1px solid rgba(0, 0, 0, 0.1);
5152
+ box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
5153
+ -webkit-backdrop-filter: blur(10px);
5154
+ backdrop-filter: blur(10px);
5155
+ opacity: 0;
5156
+ border-radius: 0.25rem;
5157
+ }
5158
+ .bootstrap-iso .toast:not(:last-child) {
5159
+ margin-bottom: 0.75rem;
5160
+ }
5161
+ .bootstrap-iso .toast.showing {
5162
+ opacity: 1;
5163
+ }
5164
+ .bootstrap-iso .toast.show {
5165
+ display: block;
5166
+ opacity: 1;
5167
+ }
5168
+ .bootstrap-iso .toast.hide {
5169
+ display: none;
5170
+ }
5171
+ .bootstrap-iso .toast-header {
5172
+ display: -ms-flexbox;
5173
+ display: flex;
5174
+ -ms-flex-align: center;
5175
+ align-items: center;
5176
+ padding: 0.25rem 0.75rem;
5177
+ color: #6c757d;
5178
+ background-color: rgba(255, 255, 255, 0.85);
5179
+ background-clip: padding-box;
5180
+ border-bottom: 1px solid rgba(0, 0, 0, 0.05);
5181
+ }
5182
+ .bootstrap-iso .toast-body {
5183
+ padding: 0.75rem;
4850
5184
  }
4851
5185
  .bootstrap-iso .modal-open {
4852
5186
  overflow: hidden;
@@ -4858,11 +5192,11 @@
4858
5192
  .bootstrap-iso .modal {
4859
5193
  position: fixed;
4860
5194
  top: 0;
4861
- right: 0;
4862
- bottom: 0;
4863
5195
  left: 0;
4864
5196
  z-index: 1050;
4865
5197
  display: none;
5198
+ width: 100%;
5199
+ height: 100%;
4866
5200
  overflow: hidden;
4867
5201
  outline: 0;
4868
5202
  }
@@ -4876,30 +5210,60 @@
4876
5210
  transition: -webkit-transform 0.3s ease-out;
4877
5211
  transition: transform 0.3s ease-out;
4878
5212
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
4879
- -webkit-transform: translate(0, -25%);
4880
- transform: translate(0, -25%);
5213
+ -webkit-transform: translate(0, -50px);
5214
+ transform: translate(0, -50px);
4881
5215
  }
4882
- @media screen and (prefers-reduced-motion: reduce) {
5216
+ @media (prefers-reduced-motion: reduce) {
4883
5217
  .bootstrap-iso .modal.fade .modal-dialog {
4884
5218
  transition: none;
4885
5219
  }
4886
5220
  }
4887
5221
  .bootstrap-iso .modal.show .modal-dialog {
4888
- -webkit-transform: translate(0, 0);
4889
- transform: translate(0, 0);
5222
+ -webkit-transform: none;
5223
+ transform: none;
5224
+ }
5225
+ .bootstrap-iso .modal-dialog-scrollable {
5226
+ display: -ms-flexbox;
5227
+ display: flex;
5228
+ max-height: calc(100% - 1rem);
5229
+ }
5230
+ .bootstrap-iso .modal-dialog-scrollable .modal-content {
5231
+ max-height: calc(100vh - 1rem);
5232
+ overflow: hidden;
5233
+ }
5234
+ .bootstrap-iso .modal-dialog-scrollable .modal-header,
5235
+ .bootstrap-iso .modal-dialog-scrollable .modal-footer {
5236
+ -ms-flex-negative: 0;
5237
+ flex-shrink: 0;
5238
+ }
5239
+ .bootstrap-iso .modal-dialog-scrollable .modal-body {
5240
+ overflow-y: auto;
4890
5241
  }
4891
5242
  .bootstrap-iso .modal-dialog-centered {
4892
5243
  display: -ms-flexbox;
4893
5244
  display: flex;
4894
5245
  -ms-flex-align: center;
4895
5246
  align-items: center;
4896
- min-height: calc(99%);
5247
+ min-height: calc(100% - 1rem);
4897
5248
  }
4898
5249
  .bootstrap-iso .modal-dialog-centered::before {
4899
5250
  display: block;
4900
- height: calc(99vh);
5251
+ height: calc(100vh - 1rem);
4901
5252
  content: "";
4902
5253
  }
5254
+ .bootstrap-iso .modal-dialog-centered.modal-dialog-scrollable {
5255
+ -ms-flex-direction: column;
5256
+ flex-direction: column;
5257
+ -ms-flex-pack: center;
5258
+ justify-content: center;
5259
+ height: 100%;
5260
+ }
5261
+ .bootstrap-iso .modal-dialog-centered.modal-dialog-scrollable .modal-content {
5262
+ max-height: none;
5263
+ }
5264
+ .bootstrap-iso .modal-dialog-centered.modal-dialog-scrollable::before {
5265
+ content: none;
5266
+ }
4903
5267
  .bootstrap-iso .modal-content {
4904
5268
  position: relative;
4905
5269
  display: -ms-flexbox;
@@ -4917,10 +5281,10 @@
4917
5281
  .bootstrap-iso .modal-backdrop {
4918
5282
  position: fixed;
4919
5283
  top: 0;
4920
- right: 0;
4921
- bottom: 0;
4922
5284
  left: 0;
4923
5285
  z-index: 1040;
5286
+ width: 100vw;
5287
+ height: 100vh;
4924
5288
  background-color: #000;
4925
5289
  }
4926
5290
  .bootstrap-iso .modal-backdrop.fade {
@@ -4936,13 +5300,13 @@
4936
5300
  align-items: flex-start;
4937
5301
  -ms-flex-pack: justify;
4938
5302
  justify-content: space-between;
4939
- padding: 1rem;
4940
- border-bottom: 1px solid #e9ecef;
5303
+ padding: 1rem 1rem;
5304
+ border-bottom: 1px solid #dee2e6;
4941
5305
  border-top-left-radius: 0.3rem;
4942
5306
  border-top-right-radius: 0.3rem;
4943
5307
  }
4944
5308
  .bootstrap-iso .modal-header .close {
4945
- padding: 1rem;
5309
+ padding: 1rem 1rem;
4946
5310
  margin: -1rem -1rem -1rem auto;
4947
5311
  }
4948
5312
  .bootstrap-iso .modal-title {
@@ -4963,13 +5327,15 @@
4963
5327
  -ms-flex-pack: end;
4964
5328
  justify-content: flex-end;
4965
5329
  padding: 1rem;
4966
- border-top: 1px solid #e9ecef;
5330
+ border-top: 1px solid #dee2e6;
5331
+ border-bottom-right-radius: 0.3rem;
5332
+ border-bottom-left-radius: 0.3rem;
4967
5333
  }
4968
5334
  .bootstrap-iso .modal-footer > :not(:first-child) {
4969
- margin-left: .25rem;
5335
+ margin-left: 0.25rem;
4970
5336
  }
4971
5337
  .bootstrap-iso .modal-footer > :not(:last-child) {
4972
- margin-right: .25rem;
5338
+ margin-right: 0.25rem;
4973
5339
  }
4974
5340
  .bootstrap-iso .modal-scrollbar-measure {
4975
5341
  position: absolute;
@@ -4983,27 +5349,39 @@
4983
5349
  max-width: 500px;
4984
5350
  margin: 1.75rem auto;
4985
5351
  }
5352
+ .bootstrap-iso .modal-dialog-scrollable {
5353
+ max-height: calc(100% - 3.5rem);
5354
+ }
5355
+ .bootstrap-iso .modal-dialog-scrollable .modal-content {
5356
+ max-height: calc(100vh - 3.5rem);
5357
+ }
4986
5358
  .bootstrap-iso .modal-dialog-centered {
4987
- min-height: calc(96.5%);
5359
+ min-height: calc(100% - 3.5rem);
4988
5360
  }
4989
5361
  .bootstrap-iso .modal-dialog-centered::before {
4990
- height: calc(96.5vh);
5362
+ height: calc(100vh - 3.5rem);
4991
5363
  }
4992
5364
  .bootstrap-iso .modal-sm {
4993
5365
  max-width: 300px;
4994
5366
  }
4995
5367
  }
4996
5368
  @media (min-width: 992px) {
4997
- .bootstrap-iso .modal-lg {
5369
+ .bootstrap-iso .modal-lg,
5370
+ .bootstrap-iso .modal-xl {
4998
5371
  max-width: 800px;
4999
5372
  }
5000
5373
  }
5374
+ @media (min-width: 1200px) {
5375
+ .bootstrap-iso .modal-xl {
5376
+ max-width: 1140px;
5377
+ }
5378
+ }
5001
5379
  .bootstrap-iso .tooltip {
5002
5380
  position: absolute;
5003
5381
  z-index: 1070;
5004
5382
  display: block;
5005
5383
  margin: 0;
5006
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
5384
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
5007
5385
  font-style: normal;
5008
5386
  font-weight: 400;
5009
5387
  line-height: 1.5;
@@ -5111,7 +5489,7 @@
5111
5489
  z-index: 1060;
5112
5490
  display: block;
5113
5491
  max-width: 276px;
5114
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
5492
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
5115
5493
  font-style: normal;
5116
5494
  font-weight: 400;
5117
5495
  line-height: 1.5;
@@ -5151,75 +5529,63 @@
5151
5529
  .bootstrap-iso .bs-popover-auto[x-placement^="top"] {
5152
5530
  margin-bottom: 0.5rem;
5153
5531
  }
5154
- .bootstrap-iso .bs-popover-top .arrow,
5155
- .bootstrap-iso .bs-popover-auto[x-placement^="top"] .arrow {
5156
- bottom: calc(-1.5rem);
5532
+ .bootstrap-iso .bs-popover-top > .arrow,
5533
+ .bootstrap-iso .bs-popover-auto[x-placement^="top"] > .arrow {
5534
+ bottom: calc((0.5rem + 1px) * -1);
5157
5535
  }
5158
- .bootstrap-iso .bs-popover-top .arrow::before,
5159
- .bootstrap-iso .bs-popover-auto[x-placement^="top"] .arrow::before,
5160
- .bootstrap-iso .bs-popover-top .arrow::after,
5161
- .bootstrap-iso .bs-popover-auto[x-placement^="top"] .arrow::after {
5162
- border-width: 0.5rem 0.5rem 0;
5163
- }
5164
- .bootstrap-iso .bs-popover-top .arrow::before,
5165
- .bootstrap-iso .bs-popover-auto[x-placement^="top"] .arrow::before {
5536
+ .bootstrap-iso .bs-popover-top > .arrow::before,
5537
+ .bootstrap-iso .bs-popover-auto[x-placement^="top"] > .arrow::before {
5166
5538
  bottom: 0;
5539
+ border-width: 0.5rem 0.5rem 0;
5167
5540
  border-top-color: rgba(0, 0, 0, 0.25);
5168
5541
  }
5169
- .bootstrap-iso .bs-popover-top .arrow::after,
5170
- .bootstrap-iso .bs-popover-auto[x-placement^="top"] .arrow::after {
5542
+ .bootstrap-iso .bs-popover-top > .arrow::after,
5543
+ .bootstrap-iso .bs-popover-auto[x-placement^="top"] > .arrow::after {
5171
5544
  bottom: 1px;
5545
+ border-width: 0.5rem 0.5rem 0;
5172
5546
  border-top-color: #fff;
5173
5547
  }
5174
5548
  .bootstrap-iso .bs-popover-right,
5175
5549
  .bootstrap-iso .bs-popover-auto[x-placement^="right"] {
5176
5550
  margin-left: 0.5rem;
5177
5551
  }
5178
- .bootstrap-iso .bs-popover-right .arrow,
5179
- .bootstrap-iso .bs-popover-auto[x-placement^="right"] .arrow {
5180
- left: calc(-1.5rem);
5552
+ .bootstrap-iso .bs-popover-right > .arrow,
5553
+ .bootstrap-iso .bs-popover-auto[x-placement^="right"] > .arrow {
5554
+ left: calc((0.5rem + 1px) * -1);
5181
5555
  width: 0.5rem;
5182
5556
  height: 1rem;
5183
5557
  margin: 0.3rem 0;
5184
5558
  }
5185
- .bootstrap-iso .bs-popover-right .arrow::before,
5186
- .bootstrap-iso .bs-popover-auto[x-placement^="right"] .arrow::before,
5187
- .bootstrap-iso .bs-popover-right .arrow::after,
5188
- .bootstrap-iso .bs-popover-auto[x-placement^="right"] .arrow::after {
5189
- border-width: 0.5rem 0.5rem 0.5rem 0;
5190
- }
5191
- .bootstrap-iso .bs-popover-right .arrow::before,
5192
- .bootstrap-iso .bs-popover-auto[x-placement^="right"] .arrow::before {
5559
+ .bootstrap-iso .bs-popover-right > .arrow::before,
5560
+ .bootstrap-iso .bs-popover-auto[x-placement^="right"] > .arrow::before {
5193
5561
  left: 0;
5562
+ border-width: 0.5rem 0.5rem 0.5rem 0;
5194
5563
  border-right-color: rgba(0, 0, 0, 0.25);
5195
5564
  }
5196
- .bootstrap-iso .bs-popover-right .arrow::after,
5197
- .bootstrap-iso .bs-popover-auto[x-placement^="right"] .arrow::after {
5565
+ .bootstrap-iso .bs-popover-right > .arrow::after,
5566
+ .bootstrap-iso .bs-popover-auto[x-placement^="right"] > .arrow::after {
5198
5567
  left: 1px;
5568
+ border-width: 0.5rem 0.5rem 0.5rem 0;
5199
5569
  border-right-color: #fff;
5200
5570
  }
5201
5571
  .bootstrap-iso .bs-popover-bottom,
5202
5572
  .bootstrap-iso .bs-popover-auto[x-placement^="bottom"] {
5203
5573
  margin-top: 0.5rem;
5204
5574
  }
5205
- .bootstrap-iso .bs-popover-bottom .arrow,
5206
- .bootstrap-iso .bs-popover-auto[x-placement^="bottom"] .arrow {
5207
- top: calc(-1.5rem);
5575
+ .bootstrap-iso .bs-popover-bottom > .arrow,
5576
+ .bootstrap-iso .bs-popover-auto[x-placement^="bottom"] > .arrow {
5577
+ top: calc((0.5rem + 1px) * -1);
5208
5578
  }
5209
- .bootstrap-iso .bs-popover-bottom .arrow::before,
5210
- .bootstrap-iso .bs-popover-auto[x-placement^="bottom"] .arrow::before,
5211
- .bootstrap-iso .bs-popover-bottom .arrow::after,
5212
- .bootstrap-iso .bs-popover-auto[x-placement^="bottom"] .arrow::after {
5213
- border-width: 0 0.5rem 0.5rem 0.5rem;
5214
- }
5215
- .bootstrap-iso .bs-popover-bottom .arrow::before,
5216
- .bootstrap-iso .bs-popover-auto[x-placement^="bottom"] .arrow::before {
5579
+ .bootstrap-iso .bs-popover-bottom > .arrow::before,
5580
+ .bootstrap-iso .bs-popover-auto[x-placement^="bottom"] > .arrow::before {
5217
5581
  top: 0;
5582
+ border-width: 0 0.5rem 0.5rem 0.5rem;
5218
5583
  border-bottom-color: rgba(0, 0, 0, 0.25);
5219
5584
  }
5220
- .bootstrap-iso .bs-popover-bottom .arrow::after,
5221
- .bootstrap-iso .bs-popover-auto[x-placement^="bottom"] .arrow::after {
5585
+ .bootstrap-iso .bs-popover-bottom > .arrow::after,
5586
+ .bootstrap-iso .bs-popover-auto[x-placement^="bottom"] > .arrow::after {
5222
5587
  top: 1px;
5588
+ border-width: 0 0.5rem 0.5rem 0.5rem;
5223
5589
  border-bottom-color: #fff;
5224
5590
  }
5225
5591
  .bootstrap-iso .bs-popover-bottom .popover-header::before,
@@ -5237,38 +5603,33 @@
5237
5603
  .bootstrap-iso .bs-popover-auto[x-placement^="left"] {
5238
5604
  margin-right: 0.5rem;
5239
5605
  }
5240
- .bootstrap-iso .bs-popover-left .arrow,
5241
- .bootstrap-iso .bs-popover-auto[x-placement^="left"] .arrow {
5242
- right: calc(-1.5rem);
5606
+ .bootstrap-iso .bs-popover-left > .arrow,
5607
+ .bootstrap-iso .bs-popover-auto[x-placement^="left"] > .arrow {
5608
+ right: calc((0.5rem + 1px) * -1);
5243
5609
  width: 0.5rem;
5244
5610
  height: 1rem;
5245
5611
  margin: 0.3rem 0;
5246
5612
  }
5247
- .bootstrap-iso .bs-popover-left .arrow::before,
5248
- .bootstrap-iso .bs-popover-auto[x-placement^="left"] .arrow::before,
5249
- .bootstrap-iso .bs-popover-left .arrow::after,
5250
- .bootstrap-iso .bs-popover-auto[x-placement^="left"] .arrow::after {
5251
- border-width: 0.5rem 0 0.5rem 0.5rem;
5252
- }
5253
- .bootstrap-iso .bs-popover-left .arrow::before,
5254
- .bootstrap-iso .bs-popover-auto[x-placement^="left"] .arrow::before {
5613
+ .bootstrap-iso .bs-popover-left > .arrow::before,
5614
+ .bootstrap-iso .bs-popover-auto[x-placement^="left"] > .arrow::before {
5255
5615
  right: 0;
5616
+ border-width: 0.5rem 0 0.5rem 0.5rem;
5256
5617
  border-left-color: rgba(0, 0, 0, 0.25);
5257
5618
  }
5258
- .bootstrap-iso .bs-popover-left .arrow::after,
5259
- .bootstrap-iso .bs-popover-auto[x-placement^="left"] .arrow::after {
5619
+ .bootstrap-iso .bs-popover-left > .arrow::after,
5620
+ .bootstrap-iso .bs-popover-auto[x-placement^="left"] > .arrow::after {
5260
5621
  right: 1px;
5622
+ border-width: 0.5rem 0 0.5rem 0.5rem;
5261
5623
  border-left-color: #fff;
5262
5624
  }
5263
5625
  .bootstrap-iso .popover-header {
5264
5626
  padding: 0.5rem 0.75rem;
5265
5627
  margin-bottom: 0;
5266
5628
  font-size: 1rem;
5267
- color: inherit;
5268
5629
  background-color: #f7f7f7;
5269
5630
  border-bottom: 1px solid #ebebeb;
5270
- border-top-left-radius: calc(-0.7rem);
5271
- border-top-right-radius: calc(-0.7rem);
5631
+ border-top-left-radius: calc(0.3rem - 1px);
5632
+ border-top-right-radius: calc(0.3rem - 1px);
5272
5633
  }
5273
5634
  .bootstrap-iso .popover-header:empty {
5274
5635
  display: none;
@@ -5280,108 +5641,74 @@
5280
5641
  .bootstrap-iso .carousel {
5281
5642
  position: relative;
5282
5643
  }
5644
+ .bootstrap-iso .carousel.pointer-event {
5645
+ -ms-touch-action: pan-y;
5646
+ touch-action: pan-y;
5647
+ }
5283
5648
  .bootstrap-iso .carousel-inner {
5284
5649
  position: relative;
5285
5650
  width: 100%;
5286
5651
  overflow: hidden;
5287
5652
  }
5653
+ .bootstrap-iso .carousel-inner::after {
5654
+ display: block;
5655
+ clear: both;
5656
+ content: "";
5657
+ }
5288
5658
  .bootstrap-iso .carousel-item {
5289
5659
  position: relative;
5290
5660
  display: none;
5291
- -ms-flex-align: center;
5292
- align-items: center;
5661
+ float: left;
5293
5662
  width: 100%;
5663
+ margin-right: -100%;
5294
5664
  -webkit-backface-visibility: hidden;
5295
5665
  backface-visibility: hidden;
5296
- -webkit-perspective: 1000px;
5297
- perspective: 1000px;
5666
+ transition: -webkit-transform 0.6s ease-in-out;
5667
+ transition: transform 0.6s ease-in-out;
5668
+ transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
5298
5669
  }
5299
- .bootstrap-iso .carousel-item.active,
5300
- .bootstrap-iso .carousel-item-next,
5301
- .bootstrap-iso .carousel-item-prev {
5302
- display: block;
5303
- transition: -webkit-transform 0.6s ease;
5304
- transition: transform 0.6s ease;
5305
- transition: transform 0.6s ease, -webkit-transform 0.6s ease;
5306
- }
5307
- @media screen and (prefers-reduced-motion: reduce) {
5308
- .bootstrap-iso .carousel-item.active,
5309
- .bootstrap-iso .carousel-item-next,
5310
- .bootstrap-iso .carousel-item-prev {
5670
+ @media (prefers-reduced-motion: reduce) {
5671
+ .bootstrap-iso .carousel-item {
5311
5672
  transition: none;
5312
5673
  }
5313
5674
  }
5675
+ .bootstrap-iso .carousel-item.active,
5314
5676
  .bootstrap-iso .carousel-item-next,
5315
5677
  .bootstrap-iso .carousel-item-prev {
5316
- position: absolute;
5317
- top: 0;
5318
- }
5319
- .bootstrap-iso .carousel-item-next.carousel-item-left,
5320
- .bootstrap-iso .carousel-item-prev.carousel-item-right {
5321
- -webkit-transform: translateX(0);
5322
- transform: translateX(0);
5323
- }
5324
- @supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
5325
- .bootstrap-iso .carousel-item-next.carousel-item-left,
5326
- .bootstrap-iso .carousel-item-prev.carousel-item-right {
5327
- -webkit-transform: translate3d(0, 0, 0);
5328
- transform: translate3d(0, 0, 0);
5329
- }
5678
+ display: block;
5330
5679
  }
5331
- .bootstrap-iso .carousel-item-next,
5680
+ .bootstrap-iso .carousel-item-next:not(.carousel-item-left),
5332
5681
  .bootstrap-iso .active.carousel-item-right {
5333
5682
  -webkit-transform: translateX(100%);
5334
5683
  transform: translateX(100%);
5335
5684
  }
5336
- @supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
5337
- .bootstrap-iso .carousel-item-next,
5338
- .bootstrap-iso .active.carousel-item-right {
5339
- -webkit-transform: translate3d(100%, 0, 0);
5340
- transform: translate3d(100%, 0, 0);
5341
- }
5342
- }
5343
- .bootstrap-iso .carousel-item-prev,
5685
+ .bootstrap-iso .carousel-item-prev:not(.carousel-item-right),
5344
5686
  .bootstrap-iso .active.carousel-item-left {
5345
5687
  -webkit-transform: translateX(-100%);
5346
5688
  transform: translateX(-100%);
5347
5689
  }
5348
- @supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
5349
- .bootstrap-iso .carousel-item-prev,
5350
- .bootstrap-iso .active.carousel-item-left {
5351
- -webkit-transform: translate3d(-100%, 0, 0);
5352
- transform: translate3d(-100%, 0, 0);
5353
- }
5354
- }
5355
5690
  .bootstrap-iso .carousel-fade .carousel-item {
5356
5691
  opacity: 0;
5357
- transition-duration: .6s;
5358
5692
  transition-property: opacity;
5693
+ -webkit-transform: none;
5694
+ transform: none;
5359
5695
  }
5360
5696
  .bootstrap-iso .carousel-fade .carousel-item.active,
5361
5697
  .bootstrap-iso .carousel-fade .carousel-item-next.carousel-item-left,
5362
5698
  .bootstrap-iso .carousel-fade .carousel-item-prev.carousel-item-right {
5699
+ z-index: 1;
5363
5700
  opacity: 1;
5364
5701
  }
5365
5702
  .bootstrap-iso .carousel-fade .active.carousel-item-left,
5366
5703
  .bootstrap-iso .carousel-fade .active.carousel-item-right {
5704
+ z-index: 0;
5367
5705
  opacity: 0;
5706
+ transition: 0s 0.6s opacity;
5368
5707
  }
5369
- .bootstrap-iso .carousel-fade .carousel-item-next,
5370
- .bootstrap-iso .carousel-fade .carousel-item-prev,
5371
- .bootstrap-iso .carousel-fade .carousel-item.active,
5372
- .bootstrap-iso .carousel-fade .active.carousel-item-left,
5373
- .bootstrap-iso .carousel-fade .active.carousel-item-prev {
5374
- -webkit-transform: translateX(0);
5375
- transform: translateX(0);
5376
- }
5377
- @supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
5378
- .bootstrap-iso .carousel-fade .carousel-item-next,
5379
- .bootstrap-iso .carousel-fade .carousel-item-prev,
5380
- .bootstrap-iso .carousel-fade .carousel-item.active,
5708
+ @media (prefers-reduced-motion: reduce) {
5381
5709
  .bootstrap-iso .carousel-fade .active.carousel-item-left,
5382
- .bootstrap-iso .carousel-fade .active.carousel-item-prev {
5383
- -webkit-transform: translate3d(0, 0, 0);
5384
- transform: translate3d(0, 0, 0);
5710
+ .bootstrap-iso .carousel-fade .active.carousel-item-right {
5711
+ transition: none;
5385
5712
  }
5386
5713
  }
5387
5714
  .bootstrap-iso .carousel-control-prev,
@@ -5389,6 +5716,7 @@
5389
5716
  position: absolute;
5390
5717
  top: 0;
5391
5718
  bottom: 0;
5719
+ z-index: 1;
5392
5720
  display: -ms-flexbox;
5393
5721
  display: flex;
5394
5722
  -ms-flex-align: center;
@@ -5399,6 +5727,13 @@
5399
5727
  color: #fff;
5400
5728
  text-align: center;
5401
5729
  opacity: 0.5;
5730
+ transition: opacity 0.15s ease;
5731
+ }
5732
+ @media (prefers-reduced-motion: reduce) {
5733
+ .bootstrap-iso .carousel-control-prev,
5734
+ .bootstrap-iso .carousel-control-next {
5735
+ transition: none;
5736
+ }
5402
5737
  }
5403
5738
  .bootstrap-iso .carousel-control-prev:hover,
5404
5739
  .bootstrap-iso .carousel-control-prev:focus,
@@ -5407,7 +5742,7 @@
5407
5742
  color: #fff;
5408
5743
  text-decoration: none;
5409
5744
  outline: 0;
5410
- opacity: .9;
5745
+ opacity: 0.9;
5411
5746
  }
5412
5747
  .bootstrap-iso .carousel-control-prev {
5413
5748
  left: 0;
@@ -5420,19 +5755,18 @@
5420
5755
  display: inline-block;
5421
5756
  width: 20px;
5422
5757
  height: 20px;
5423
- background: transparent no-repeat center center;
5424
- background-size: 100% 100%;
5758
+ background: no-repeat 50% / 100% 100%;
5425
5759
  }
5426
5760
  .bootstrap-iso .carousel-control-prev-icon {
5427
- background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
5761
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e");
5428
5762
  }
5429
5763
  .bootstrap-iso .carousel-control-next-icon {
5430
- background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
5764
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e");
5431
5765
  }
5432
5766
  .bootstrap-iso .carousel-indicators {
5433
5767
  position: absolute;
5434
5768
  right: 0;
5435
- bottom: 10px;
5769
+ bottom: 0;
5436
5770
  left: 0;
5437
5771
  z-index: 15;
5438
5772
  display: -ms-flexbox;
@@ -5445,7 +5779,7 @@
5445
5779
  list-style: none;
5446
5780
  }
5447
5781
  .bootstrap-iso .carousel-indicators li {
5448
- position: relative;
5782
+ box-sizing: content-box;
5449
5783
  -ms-flex: 0 1 auto;
5450
5784
  flex: 0 1 auto;
5451
5785
  width: 30px;
@@ -5454,28 +5788,20 @@
5454
5788
  margin-left: 3px;
5455
5789
  text-indent: -999px;
5456
5790
  cursor: pointer;
5457
- background-color: rgba(255, 255, 255, 0.5);
5458
- }
5459
- .bootstrap-iso .carousel-indicators li::before {
5460
- position: absolute;
5461
- top: -10px;
5462
- left: 0;
5463
- display: inline-block;
5464
- width: 100%;
5465
- height: 10px;
5466
- content: "";
5791
+ background-color: #fff;
5792
+ background-clip: padding-box;
5793
+ border-top: 10px solid transparent;
5794
+ border-bottom: 10px solid transparent;
5795
+ opacity: 0.5;
5796
+ transition: opacity 0.6s ease;
5467
5797
  }
5468
- .bootstrap-iso .carousel-indicators li::after {
5469
- position: absolute;
5470
- bottom: -10px;
5471
- left: 0;
5472
- display: inline-block;
5473
- width: 100%;
5474
- height: 10px;
5475
- content: "";
5798
+ @media (prefers-reduced-motion: reduce) {
5799
+ .bootstrap-iso .carousel-indicators li {
5800
+ transition: none;
5801
+ }
5476
5802
  }
5477
5803
  .bootstrap-iso .carousel-indicators .active {
5478
- background-color: #fff;
5804
+ opacity: 1;
5479
5805
  }
5480
5806
  .bootstrap-iso .carousel-caption {
5481
5807
  position: absolute;
@@ -5488,6 +5814,67 @@
5488
5814
  color: #fff;
5489
5815
  text-align: center;
5490
5816
  }
5817
+ @-webkit-keyframes spinner-border {
5818
+ to {
5819
+ -webkit-transform: rotate(360deg);
5820
+ transform: rotate(360deg);
5821
+ }
5822
+ }
5823
+ @keyframes spinner-border {
5824
+ to {
5825
+ -webkit-transform: rotate(360deg);
5826
+ transform: rotate(360deg);
5827
+ }
5828
+ }
5829
+ .bootstrap-iso .spinner-border {
5830
+ display: inline-block;
5831
+ width: 2rem;
5832
+ height: 2rem;
5833
+ vertical-align: text-bottom;
5834
+ border: 0.25em solid currentColor;
5835
+ border-right-color: transparent;
5836
+ border-radius: 50%;
5837
+ -webkit-animation: spinner-border 0.75s linear infinite;
5838
+ animation: spinner-border 0.75s linear infinite;
5839
+ }
5840
+ .bootstrap-iso .spinner-border-sm {
5841
+ width: 1rem;
5842
+ height: 1rem;
5843
+ border-width: 0.2em;
5844
+ }
5845
+ @-webkit-keyframes spinner-grow {
5846
+ 0% {
5847
+ -webkit-transform: scale(0);
5848
+ transform: scale(0);
5849
+ }
5850
+ 50% {
5851
+ opacity: 1;
5852
+ }
5853
+ }
5854
+ @keyframes spinner-grow {
5855
+ 0% {
5856
+ -webkit-transform: scale(0);
5857
+ transform: scale(0);
5858
+ }
5859
+ 50% {
5860
+ opacity: 1;
5861
+ }
5862
+ }
5863
+ .bootstrap-iso .spinner-grow {
5864
+ display: inline-block;
5865
+ width: 2rem;
5866
+ height: 2rem;
5867
+ vertical-align: text-bottom;
5868
+ background-color: currentColor;
5869
+ border-radius: 50%;
5870
+ opacity: 0;
5871
+ -webkit-animation: spinner-grow 0.75s linear infinite;
5872
+ animation: spinner-grow 0.75s linear infinite;
5873
+ }
5874
+ .bootstrap-iso .spinner-grow-sm {
5875
+ width: 1rem;
5876
+ height: 1rem;
5877
+ }
5491
5878
  .bootstrap-iso .align-baseline {
5492
5879
  vertical-align: baseline !important;
5493
5880
  }
@@ -5641,6 +6028,9 @@
5641
6028
  .bootstrap-iso .border-white {
5642
6029
  border-color: #fff !important;
5643
6030
  }
6031
+ .bootstrap-iso .rounded-sm {
6032
+ border-radius: 0.2rem !important;
6033
+ }
5644
6034
  .bootstrap-iso .rounded {
5645
6035
  border-radius: 0.25rem !important;
5646
6036
  }
@@ -5660,9 +6050,15 @@
5660
6050
  border-top-left-radius: 0.25rem !important;
5661
6051
  border-bottom-left-radius: 0.25rem !important;
5662
6052
  }
6053
+ .bootstrap-iso .rounded-lg {
6054
+ border-radius: 0.3rem !important;
6055
+ }
5663
6056
  .bootstrap-iso .rounded-circle {
5664
6057
  border-radius: 50% !important;
5665
6058
  }
6059
+ .bootstrap-iso .rounded-pill {
6060
+ border-radius: 50rem !important;
6061
+ }
5666
6062
  .bootstrap-iso .rounded-0 {
5667
6063
  border-radius: 0 !important;
5668
6064
  }
@@ -6632,6 +7028,12 @@
6632
7028
  float: none !important;
6633
7029
  }
6634
7030
  }
7031
+ .bootstrap-iso .overflow-auto {
7032
+ overflow: auto !important;
7033
+ }
7034
+ .bootstrap-iso .overflow-hidden {
7035
+ overflow: hidden !important;
7036
+ }
6635
7037
  .bootstrap-iso .position-static {
6636
7038
  position: static !important;
6637
7039
  }
@@ -6737,6 +7139,29 @@
6737
7139
  .bootstrap-iso .mh-100 {
6738
7140
  max-height: 100% !important;
6739
7141
  }
7142
+ .bootstrap-iso .min-vw-100 {
7143
+ min-width: 100vw !important;
7144
+ }
7145
+ .bootstrap-iso .min-vh-100 {
7146
+ min-height: 100vh !important;
7147
+ }
7148
+ .bootstrap-iso .vw-100 {
7149
+ width: 100vw !important;
7150
+ }
7151
+ .bootstrap-iso .vh-100 {
7152
+ height: 100vh !important;
7153
+ }
7154
+ .bootstrap-iso .stretched-link::after {
7155
+ position: absolute;
7156
+ top: 0;
7157
+ right: 0;
7158
+ bottom: 0;
7159
+ left: 0;
7160
+ z-index: 1;
7161
+ pointer-events: auto;
7162
+ content: "";
7163
+ background-color: rgba(0, 0, 0, 0);
7164
+ }
6740
7165
  .bootstrap-iso .m-0 {
6741
7166
  margin: 0 !important;
6742
7167
  }
@@ -6965,6 +7390,101 @@
6965
7390
  .bootstrap-iso .px-5 {
6966
7391
  padding-left: 3rem !important;
6967
7392
  }
7393
+ .bootstrap-iso .m-n1 {
7394
+ margin: -0.25rem !important;
7395
+ }
7396
+ .bootstrap-iso .mt-n1,
7397
+ .bootstrap-iso .my-n1 {
7398
+ margin-top: -0.25rem !important;
7399
+ }
7400
+ .bootstrap-iso .mr-n1,
7401
+ .bootstrap-iso .mx-n1 {
7402
+ margin-right: -0.25rem !important;
7403
+ }
7404
+ .bootstrap-iso .mb-n1,
7405
+ .bootstrap-iso .my-n1 {
7406
+ margin-bottom: -0.25rem !important;
7407
+ }
7408
+ .bootstrap-iso .ml-n1,
7409
+ .bootstrap-iso .mx-n1 {
7410
+ margin-left: -0.25rem !important;
7411
+ }
7412
+ .bootstrap-iso .m-n2 {
7413
+ margin: -0.5rem !important;
7414
+ }
7415
+ .bootstrap-iso .mt-n2,
7416
+ .bootstrap-iso .my-n2 {
7417
+ margin-top: -0.5rem !important;
7418
+ }
7419
+ .bootstrap-iso .mr-n2,
7420
+ .bootstrap-iso .mx-n2 {
7421
+ margin-right: -0.5rem !important;
7422
+ }
7423
+ .bootstrap-iso .mb-n2,
7424
+ .bootstrap-iso .my-n2 {
7425
+ margin-bottom: -0.5rem !important;
7426
+ }
7427
+ .bootstrap-iso .ml-n2,
7428
+ .bootstrap-iso .mx-n2 {
7429
+ margin-left: -0.5rem !important;
7430
+ }
7431
+ .bootstrap-iso .m-n3 {
7432
+ margin: -1rem !important;
7433
+ }
7434
+ .bootstrap-iso .mt-n3,
7435
+ .bootstrap-iso .my-n3 {
7436
+ margin-top: -1rem !important;
7437
+ }
7438
+ .bootstrap-iso .mr-n3,
7439
+ .bootstrap-iso .mx-n3 {
7440
+ margin-right: -1rem !important;
7441
+ }
7442
+ .bootstrap-iso .mb-n3,
7443
+ .bootstrap-iso .my-n3 {
7444
+ margin-bottom: -1rem !important;
7445
+ }
7446
+ .bootstrap-iso .ml-n3,
7447
+ .bootstrap-iso .mx-n3 {
7448
+ margin-left: -1rem !important;
7449
+ }
7450
+ .bootstrap-iso .m-n4 {
7451
+ margin: -1.5rem !important;
7452
+ }
7453
+ .bootstrap-iso .mt-n4,
7454
+ .bootstrap-iso .my-n4 {
7455
+ margin-top: -1.5rem !important;
7456
+ }
7457
+ .bootstrap-iso .mr-n4,
7458
+ .bootstrap-iso .mx-n4 {
7459
+ margin-right: -1.5rem !important;
7460
+ }
7461
+ .bootstrap-iso .mb-n4,
7462
+ .bootstrap-iso .my-n4 {
7463
+ margin-bottom: -1.5rem !important;
7464
+ }
7465
+ .bootstrap-iso .ml-n4,
7466
+ .bootstrap-iso .mx-n4 {
7467
+ margin-left: -1.5rem !important;
7468
+ }
7469
+ .bootstrap-iso .m-n5 {
7470
+ margin: -3rem !important;
7471
+ }
7472
+ .bootstrap-iso .mt-n5,
7473
+ .bootstrap-iso .my-n5 {
7474
+ margin-top: -3rem !important;
7475
+ }
7476
+ .bootstrap-iso .mr-n5,
7477
+ .bootstrap-iso .mx-n5 {
7478
+ margin-right: -3rem !important;
7479
+ }
7480
+ .bootstrap-iso .mb-n5,
7481
+ .bootstrap-iso .my-n5 {
7482
+ margin-bottom: -3rem !important;
7483
+ }
7484
+ .bootstrap-iso .ml-n5,
7485
+ .bootstrap-iso .mx-n5 {
7486
+ margin-left: -3rem !important;
7487
+ }
6968
7488
  .bootstrap-iso .m-auto {
6969
7489
  margin: auto !important;
6970
7490
  }
@@ -7213,6 +7733,101 @@
7213
7733
  .bootstrap-iso .px-sm-5 {
7214
7734
  padding-left: 3rem !important;
7215
7735
  }
7736
+ .bootstrap-iso .m-sm-n1 {
7737
+ margin: -0.25rem !important;
7738
+ }
7739
+ .bootstrap-iso .mt-sm-n1,
7740
+ .bootstrap-iso .my-sm-n1 {
7741
+ margin-top: -0.25rem !important;
7742
+ }
7743
+ .bootstrap-iso .mr-sm-n1,
7744
+ .bootstrap-iso .mx-sm-n1 {
7745
+ margin-right: -0.25rem !important;
7746
+ }
7747
+ .bootstrap-iso .mb-sm-n1,
7748
+ .bootstrap-iso .my-sm-n1 {
7749
+ margin-bottom: -0.25rem !important;
7750
+ }
7751
+ .bootstrap-iso .ml-sm-n1,
7752
+ .bootstrap-iso .mx-sm-n1 {
7753
+ margin-left: -0.25rem !important;
7754
+ }
7755
+ .bootstrap-iso .m-sm-n2 {
7756
+ margin: -0.5rem !important;
7757
+ }
7758
+ .bootstrap-iso .mt-sm-n2,
7759
+ .bootstrap-iso .my-sm-n2 {
7760
+ margin-top: -0.5rem !important;
7761
+ }
7762
+ .bootstrap-iso .mr-sm-n2,
7763
+ .bootstrap-iso .mx-sm-n2 {
7764
+ margin-right: -0.5rem !important;
7765
+ }
7766
+ .bootstrap-iso .mb-sm-n2,
7767
+ .bootstrap-iso .my-sm-n2 {
7768
+ margin-bottom: -0.5rem !important;
7769
+ }
7770
+ .bootstrap-iso .ml-sm-n2,
7771
+ .bootstrap-iso .mx-sm-n2 {
7772
+ margin-left: -0.5rem !important;
7773
+ }
7774
+ .bootstrap-iso .m-sm-n3 {
7775
+ margin: -1rem !important;
7776
+ }
7777
+ .bootstrap-iso .mt-sm-n3,
7778
+ .bootstrap-iso .my-sm-n3 {
7779
+ margin-top: -1rem !important;
7780
+ }
7781
+ .bootstrap-iso .mr-sm-n3,
7782
+ .bootstrap-iso .mx-sm-n3 {
7783
+ margin-right: -1rem !important;
7784
+ }
7785
+ .bootstrap-iso .mb-sm-n3,
7786
+ .bootstrap-iso .my-sm-n3 {
7787
+ margin-bottom: -1rem !important;
7788
+ }
7789
+ .bootstrap-iso .ml-sm-n3,
7790
+ .bootstrap-iso .mx-sm-n3 {
7791
+ margin-left: -1rem !important;
7792
+ }
7793
+ .bootstrap-iso .m-sm-n4 {
7794
+ margin: -1.5rem !important;
7795
+ }
7796
+ .bootstrap-iso .mt-sm-n4,
7797
+ .bootstrap-iso .my-sm-n4 {
7798
+ margin-top: -1.5rem !important;
7799
+ }
7800
+ .bootstrap-iso .mr-sm-n4,
7801
+ .bootstrap-iso .mx-sm-n4 {
7802
+ margin-right: -1.5rem !important;
7803
+ }
7804
+ .bootstrap-iso .mb-sm-n4,
7805
+ .bootstrap-iso .my-sm-n4 {
7806
+ margin-bottom: -1.5rem !important;
7807
+ }
7808
+ .bootstrap-iso .ml-sm-n4,
7809
+ .bootstrap-iso .mx-sm-n4 {
7810
+ margin-left: -1.5rem !important;
7811
+ }
7812
+ .bootstrap-iso .m-sm-n5 {
7813
+ margin: -3rem !important;
7814
+ }
7815
+ .bootstrap-iso .mt-sm-n5,
7816
+ .bootstrap-iso .my-sm-n5 {
7817
+ margin-top: -3rem !important;
7818
+ }
7819
+ .bootstrap-iso .mr-sm-n5,
7820
+ .bootstrap-iso .mx-sm-n5 {
7821
+ margin-right: -3rem !important;
7822
+ }
7823
+ .bootstrap-iso .mb-sm-n5,
7824
+ .bootstrap-iso .my-sm-n5 {
7825
+ margin-bottom: -3rem !important;
7826
+ }
7827
+ .bootstrap-iso .ml-sm-n5,
7828
+ .bootstrap-iso .mx-sm-n5 {
7829
+ margin-left: -3rem !important;
7830
+ }
7216
7831
  .bootstrap-iso .m-sm-auto {
7217
7832
  margin: auto !important;
7218
7833
  }
@@ -7462,6 +8077,101 @@
7462
8077
  .bootstrap-iso .px-md-5 {
7463
8078
  padding-left: 3rem !important;
7464
8079
  }
8080
+ .bootstrap-iso .m-md-n1 {
8081
+ margin: -0.25rem !important;
8082
+ }
8083
+ .bootstrap-iso .mt-md-n1,
8084
+ .bootstrap-iso .my-md-n1 {
8085
+ margin-top: -0.25rem !important;
8086
+ }
8087
+ .bootstrap-iso .mr-md-n1,
8088
+ .bootstrap-iso .mx-md-n1 {
8089
+ margin-right: -0.25rem !important;
8090
+ }
8091
+ .bootstrap-iso .mb-md-n1,
8092
+ .bootstrap-iso .my-md-n1 {
8093
+ margin-bottom: -0.25rem !important;
8094
+ }
8095
+ .bootstrap-iso .ml-md-n1,
8096
+ .bootstrap-iso .mx-md-n1 {
8097
+ margin-left: -0.25rem !important;
8098
+ }
8099
+ .bootstrap-iso .m-md-n2 {
8100
+ margin: -0.5rem !important;
8101
+ }
8102
+ .bootstrap-iso .mt-md-n2,
8103
+ .bootstrap-iso .my-md-n2 {
8104
+ margin-top: -0.5rem !important;
8105
+ }
8106
+ .bootstrap-iso .mr-md-n2,
8107
+ .bootstrap-iso .mx-md-n2 {
8108
+ margin-right: -0.5rem !important;
8109
+ }
8110
+ .bootstrap-iso .mb-md-n2,
8111
+ .bootstrap-iso .my-md-n2 {
8112
+ margin-bottom: -0.5rem !important;
8113
+ }
8114
+ .bootstrap-iso .ml-md-n2,
8115
+ .bootstrap-iso .mx-md-n2 {
8116
+ margin-left: -0.5rem !important;
8117
+ }
8118
+ .bootstrap-iso .m-md-n3 {
8119
+ margin: -1rem !important;
8120
+ }
8121
+ .bootstrap-iso .mt-md-n3,
8122
+ .bootstrap-iso .my-md-n3 {
8123
+ margin-top: -1rem !important;
8124
+ }
8125
+ .bootstrap-iso .mr-md-n3,
8126
+ .bootstrap-iso .mx-md-n3 {
8127
+ margin-right: -1rem !important;
8128
+ }
8129
+ .bootstrap-iso .mb-md-n3,
8130
+ .bootstrap-iso .my-md-n3 {
8131
+ margin-bottom: -1rem !important;
8132
+ }
8133
+ .bootstrap-iso .ml-md-n3,
8134
+ .bootstrap-iso .mx-md-n3 {
8135
+ margin-left: -1rem !important;
8136
+ }
8137
+ .bootstrap-iso .m-md-n4 {
8138
+ margin: -1.5rem !important;
8139
+ }
8140
+ .bootstrap-iso .mt-md-n4,
8141
+ .bootstrap-iso .my-md-n4 {
8142
+ margin-top: -1.5rem !important;
8143
+ }
8144
+ .bootstrap-iso .mr-md-n4,
8145
+ .bootstrap-iso .mx-md-n4 {
8146
+ margin-right: -1.5rem !important;
8147
+ }
8148
+ .bootstrap-iso .mb-md-n4,
8149
+ .bootstrap-iso .my-md-n4 {
8150
+ margin-bottom: -1.5rem !important;
8151
+ }
8152
+ .bootstrap-iso .ml-md-n4,
8153
+ .bootstrap-iso .mx-md-n4 {
8154
+ margin-left: -1.5rem !important;
8155
+ }
8156
+ .bootstrap-iso .m-md-n5 {
8157
+ margin: -3rem !important;
8158
+ }
8159
+ .bootstrap-iso .mt-md-n5,
8160
+ .bootstrap-iso .my-md-n5 {
8161
+ margin-top: -3rem !important;
8162
+ }
8163
+ .bootstrap-iso .mr-md-n5,
8164
+ .bootstrap-iso .mx-md-n5 {
8165
+ margin-right: -3rem !important;
8166
+ }
8167
+ .bootstrap-iso .mb-md-n5,
8168
+ .bootstrap-iso .my-md-n5 {
8169
+ margin-bottom: -3rem !important;
8170
+ }
8171
+ .bootstrap-iso .ml-md-n5,
8172
+ .bootstrap-iso .mx-md-n5 {
8173
+ margin-left: -3rem !important;
8174
+ }
7465
8175
  .bootstrap-iso .m-md-auto {
7466
8176
  margin: auto !important;
7467
8177
  }
@@ -7711,6 +8421,101 @@
7711
8421
  .bootstrap-iso .px-lg-5 {
7712
8422
  padding-left: 3rem !important;
7713
8423
  }
8424
+ .bootstrap-iso .m-lg-n1 {
8425
+ margin: -0.25rem !important;
8426
+ }
8427
+ .bootstrap-iso .mt-lg-n1,
8428
+ .bootstrap-iso .my-lg-n1 {
8429
+ margin-top: -0.25rem !important;
8430
+ }
8431
+ .bootstrap-iso .mr-lg-n1,
8432
+ .bootstrap-iso .mx-lg-n1 {
8433
+ margin-right: -0.25rem !important;
8434
+ }
8435
+ .bootstrap-iso .mb-lg-n1,
8436
+ .bootstrap-iso .my-lg-n1 {
8437
+ margin-bottom: -0.25rem !important;
8438
+ }
8439
+ .bootstrap-iso .ml-lg-n1,
8440
+ .bootstrap-iso .mx-lg-n1 {
8441
+ margin-left: -0.25rem !important;
8442
+ }
8443
+ .bootstrap-iso .m-lg-n2 {
8444
+ margin: -0.5rem !important;
8445
+ }
8446
+ .bootstrap-iso .mt-lg-n2,
8447
+ .bootstrap-iso .my-lg-n2 {
8448
+ margin-top: -0.5rem !important;
8449
+ }
8450
+ .bootstrap-iso .mr-lg-n2,
8451
+ .bootstrap-iso .mx-lg-n2 {
8452
+ margin-right: -0.5rem !important;
8453
+ }
8454
+ .bootstrap-iso .mb-lg-n2,
8455
+ .bootstrap-iso .my-lg-n2 {
8456
+ margin-bottom: -0.5rem !important;
8457
+ }
8458
+ .bootstrap-iso .ml-lg-n2,
8459
+ .bootstrap-iso .mx-lg-n2 {
8460
+ margin-left: -0.5rem !important;
8461
+ }
8462
+ .bootstrap-iso .m-lg-n3 {
8463
+ margin: -1rem !important;
8464
+ }
8465
+ .bootstrap-iso .mt-lg-n3,
8466
+ .bootstrap-iso .my-lg-n3 {
8467
+ margin-top: -1rem !important;
8468
+ }
8469
+ .bootstrap-iso .mr-lg-n3,
8470
+ .bootstrap-iso .mx-lg-n3 {
8471
+ margin-right: -1rem !important;
8472
+ }
8473
+ .bootstrap-iso .mb-lg-n3,
8474
+ .bootstrap-iso .my-lg-n3 {
8475
+ margin-bottom: -1rem !important;
8476
+ }
8477
+ .bootstrap-iso .ml-lg-n3,
8478
+ .bootstrap-iso .mx-lg-n3 {
8479
+ margin-left: -1rem !important;
8480
+ }
8481
+ .bootstrap-iso .m-lg-n4 {
8482
+ margin: -1.5rem !important;
8483
+ }
8484
+ .bootstrap-iso .mt-lg-n4,
8485
+ .bootstrap-iso .my-lg-n4 {
8486
+ margin-top: -1.5rem !important;
8487
+ }
8488
+ .bootstrap-iso .mr-lg-n4,
8489
+ .bootstrap-iso .mx-lg-n4 {
8490
+ margin-right: -1.5rem !important;
8491
+ }
8492
+ .bootstrap-iso .mb-lg-n4,
8493
+ .bootstrap-iso .my-lg-n4 {
8494
+ margin-bottom: -1.5rem !important;
8495
+ }
8496
+ .bootstrap-iso .ml-lg-n4,
8497
+ .bootstrap-iso .mx-lg-n4 {
8498
+ margin-left: -1.5rem !important;
8499
+ }
8500
+ .bootstrap-iso .m-lg-n5 {
8501
+ margin: -3rem !important;
8502
+ }
8503
+ .bootstrap-iso .mt-lg-n5,
8504
+ .bootstrap-iso .my-lg-n5 {
8505
+ margin-top: -3rem !important;
8506
+ }
8507
+ .bootstrap-iso .mr-lg-n5,
8508
+ .bootstrap-iso .mx-lg-n5 {
8509
+ margin-right: -3rem !important;
8510
+ }
8511
+ .bootstrap-iso .mb-lg-n5,
8512
+ .bootstrap-iso .my-lg-n5 {
8513
+ margin-bottom: -3rem !important;
8514
+ }
8515
+ .bootstrap-iso .ml-lg-n5,
8516
+ .bootstrap-iso .mx-lg-n5 {
8517
+ margin-left: -3rem !important;
8518
+ }
7714
8519
  .bootstrap-iso .m-lg-auto {
7715
8520
  margin: auto !important;
7716
8521
  }
@@ -7960,6 +8765,101 @@
7960
8765
  .bootstrap-iso .px-xl-5 {
7961
8766
  padding-left: 3rem !important;
7962
8767
  }
8768
+ .bootstrap-iso .m-xl-n1 {
8769
+ margin: -0.25rem !important;
8770
+ }
8771
+ .bootstrap-iso .mt-xl-n1,
8772
+ .bootstrap-iso .my-xl-n1 {
8773
+ margin-top: -0.25rem !important;
8774
+ }
8775
+ .bootstrap-iso .mr-xl-n1,
8776
+ .bootstrap-iso .mx-xl-n1 {
8777
+ margin-right: -0.25rem !important;
8778
+ }
8779
+ .bootstrap-iso .mb-xl-n1,
8780
+ .bootstrap-iso .my-xl-n1 {
8781
+ margin-bottom: -0.25rem !important;
8782
+ }
8783
+ .bootstrap-iso .ml-xl-n1,
8784
+ .bootstrap-iso .mx-xl-n1 {
8785
+ margin-left: -0.25rem !important;
8786
+ }
8787
+ .bootstrap-iso .m-xl-n2 {
8788
+ margin: -0.5rem !important;
8789
+ }
8790
+ .bootstrap-iso .mt-xl-n2,
8791
+ .bootstrap-iso .my-xl-n2 {
8792
+ margin-top: -0.5rem !important;
8793
+ }
8794
+ .bootstrap-iso .mr-xl-n2,
8795
+ .bootstrap-iso .mx-xl-n2 {
8796
+ margin-right: -0.5rem !important;
8797
+ }
8798
+ .bootstrap-iso .mb-xl-n2,
8799
+ .bootstrap-iso .my-xl-n2 {
8800
+ margin-bottom: -0.5rem !important;
8801
+ }
8802
+ .bootstrap-iso .ml-xl-n2,
8803
+ .bootstrap-iso .mx-xl-n2 {
8804
+ margin-left: -0.5rem !important;
8805
+ }
8806
+ .bootstrap-iso .m-xl-n3 {
8807
+ margin: -1rem !important;
8808
+ }
8809
+ .bootstrap-iso .mt-xl-n3,
8810
+ .bootstrap-iso .my-xl-n3 {
8811
+ margin-top: -1rem !important;
8812
+ }
8813
+ .bootstrap-iso .mr-xl-n3,
8814
+ .bootstrap-iso .mx-xl-n3 {
8815
+ margin-right: -1rem !important;
8816
+ }
8817
+ .bootstrap-iso .mb-xl-n3,
8818
+ .bootstrap-iso .my-xl-n3 {
8819
+ margin-bottom: -1rem !important;
8820
+ }
8821
+ .bootstrap-iso .ml-xl-n3,
8822
+ .bootstrap-iso .mx-xl-n3 {
8823
+ margin-left: -1rem !important;
8824
+ }
8825
+ .bootstrap-iso .m-xl-n4 {
8826
+ margin: -1.5rem !important;
8827
+ }
8828
+ .bootstrap-iso .mt-xl-n4,
8829
+ .bootstrap-iso .my-xl-n4 {
8830
+ margin-top: -1.5rem !important;
8831
+ }
8832
+ .bootstrap-iso .mr-xl-n4,
8833
+ .bootstrap-iso .mx-xl-n4 {
8834
+ margin-right: -1.5rem !important;
8835
+ }
8836
+ .bootstrap-iso .mb-xl-n4,
8837
+ .bootstrap-iso .my-xl-n4 {
8838
+ margin-bottom: -1.5rem !important;
8839
+ }
8840
+ .bootstrap-iso .ml-xl-n4,
8841
+ .bootstrap-iso .mx-xl-n4 {
8842
+ margin-left: -1.5rem !important;
8843
+ }
8844
+ .bootstrap-iso .m-xl-n5 {
8845
+ margin: -3rem !important;
8846
+ }
8847
+ .bootstrap-iso .mt-xl-n5,
8848
+ .bootstrap-iso .my-xl-n5 {
8849
+ margin-top: -3rem !important;
8850
+ }
8851
+ .bootstrap-iso .mr-xl-n5,
8852
+ .bootstrap-iso .mx-xl-n5 {
8853
+ margin-right: -3rem !important;
8854
+ }
8855
+ .bootstrap-iso .mb-xl-n5,
8856
+ .bootstrap-iso .my-xl-n5 {
8857
+ margin-bottom: -3rem !important;
8858
+ }
8859
+ .bootstrap-iso .ml-xl-n5,
8860
+ .bootstrap-iso .mx-xl-n5 {
8861
+ margin-left: -3rem !important;
8862
+ }
7963
8863
  .bootstrap-iso .m-xl-auto {
7964
8864
  margin: auto !important;
7965
8865
  }
@@ -7981,11 +8881,14 @@
7981
8881
  }
7982
8882
  }
7983
8883
  .bootstrap-iso .text-monospace {
7984
- font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
8884
+ font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
7985
8885
  }
7986
8886
  .bootstrap-iso .text-justify {
7987
8887
  text-align: justify !important;
7988
8888
  }
8889
+ .bootstrap-iso .text-wrap {
8890
+ white-space: normal !important;
8891
+ }
7989
8892
  .bootstrap-iso .text-nowrap {
7990
8893
  white-space: nowrap !important;
7991
8894
  }
@@ -8059,12 +8962,18 @@
8059
8962
  .bootstrap-iso .font-weight-light {
8060
8963
  font-weight: 300 !important;
8061
8964
  }
8965
+ .bootstrap-iso .font-weight-lighter {
8966
+ font-weight: lighter !important;
8967
+ }
8062
8968
  .bootstrap-iso .font-weight-normal {
8063
8969
  font-weight: 400 !important;
8064
8970
  }
8065
8971
  .bootstrap-iso .font-weight-bold {
8066
8972
  font-weight: 700 !important;
8067
8973
  }
8974
+ .bootstrap-iso .font-weight-bolder {
8975
+ font-weight: bolder !important;
8976
+ }
8068
8977
  .bootstrap-iso .font-italic {
8069
8978
  font-style: italic !important;
8070
8979
  }
@@ -8076,56 +8985,56 @@
8076
8985
  }
8077
8986
  .bootstrap-iso a.text-primary:hover,
8078
8987
  .bootstrap-iso a.text-primary:focus {
8079
- color: #0062cc !important;
8988
+ color: #0056b3 !important;
8080
8989
  }
8081
8990
  .bootstrap-iso .text-secondary {
8082
8991
  color: #6c757d !important;
8083
8992
  }
8084
8993
  .bootstrap-iso a.text-secondary:hover,
8085
8994
  .bootstrap-iso a.text-secondary:focus {
8086
- color: #545b62 !important;
8995
+ color: #494f54 !important;
8087
8996
  }
8088
8997
  .bootstrap-iso .text-success {
8089
8998
  color: #28a745 !important;
8090
8999
  }
8091
9000
  .bootstrap-iso a.text-success:hover,
8092
9001
  .bootstrap-iso a.text-success:focus {
8093
- color: #1e7e34 !important;
9002
+ color: #19692c !important;
8094
9003
  }
8095
9004
  .bootstrap-iso .text-info {
8096
9005
  color: #17a2b8 !important;
8097
9006
  }
8098
9007
  .bootstrap-iso a.text-info:hover,
8099
9008
  .bootstrap-iso a.text-info:focus {
8100
- color: #117a8b !important;
9009
+ color: #0f6674 !important;
8101
9010
  }
8102
9011
  .bootstrap-iso .text-warning {
8103
9012
  color: #ffc107 !important;
8104
9013
  }
8105
9014
  .bootstrap-iso a.text-warning:hover,
8106
9015
  .bootstrap-iso a.text-warning:focus {
8107
- color: #d39e00 !important;
9016
+ color: #ba8b00 !important;
8108
9017
  }
8109
9018
  .bootstrap-iso .text-danger {
8110
9019
  color: #dc3545 !important;
8111
9020
  }
8112
9021
  .bootstrap-iso a.text-danger:hover,
8113
9022
  .bootstrap-iso a.text-danger:focus {
8114
- color: #bd2130 !important;
9023
+ color: #a71d2a !important;
8115
9024
  }
8116
9025
  .bootstrap-iso .text-light {
8117
9026
  color: #f8f9fa !important;
8118
9027
  }
8119
9028
  .bootstrap-iso a.text-light:hover,
8120
9029
  .bootstrap-iso a.text-light:focus {
8121
- color: #dae0e5 !important;
9030
+ color: #cbd3da !important;
8122
9031
  }
8123
9032
  .bootstrap-iso .text-dark {
8124
9033
  color: #343a40 !important;
8125
9034
  }
8126
9035
  .bootstrap-iso a.text-dark:hover,
8127
9036
  .bootstrap-iso a.text-dark:focus {
8128
- color: #1d2124 !important;
9037
+ color: #121416 !important;
8129
9038
  }
8130
9039
  .bootstrap-iso .text-body {
8131
9040
  color: #212529 !important;
@@ -8146,6 +9055,16 @@
8146
9055
  background-color: transparent;
8147
9056
  border: 0;
8148
9057
  }
9058
+ .bootstrap-iso .text-decoration-none {
9059
+ text-decoration: none !important;
9060
+ }
9061
+ .bootstrap-iso .text-break {
9062
+ word-break: break-word !important;
9063
+ overflow-wrap: break-word !important;
9064
+ }
9065
+ .bootstrap-iso .text-reset {
9066
+ color: inherit !important;
9067
+ }
8149
9068
  .bootstrap-iso .visible {
8150
9069
  visibility: visible !important;
8151
9070
  }
@@ -8193,7 +9112,7 @@
8193
9112
  @page {
8194
9113
  size: a3;
8195
9114
  }
8196
- .not-used.bootstrap-iso body {
9115
+ {
8197
9116
  min-width: 992px !important;
8198
9117
  }
8199
9118
  .bootstrap-iso .container {