Autoprefixer improvement

This commit is contained in:
Tony Air 2019-11-25 13:02:37 +07:00
parent c591f1adaf
commit 6e7cb4dfa6
4 changed files with 2153 additions and 686 deletions

2806
dist/css/main.css vendored
View File

@ -39,7 +39,8 @@
*,
*::before,
*::after {
box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
html {
@ -78,7 +79,8 @@ body {
}
hr {
box-sizing: content-box;
-webkit-box-sizing: content-box;
box-sizing: content-box;
height: 0;
overflow: visible;
}
@ -299,7 +301,8 @@ button::-moz-focus-inner,
input[type="radio"],
input[type="checkbox"] {
box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
padding: 0;
}
@ -629,8 +632,11 @@ pre code {
}
.row {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-right: -1rem;
margin-left: -1rem;
}
@ -751,135 +757,194 @@ pre code {
}
.col {
flex-basis: 0;
flex-grow: 1;
-ms-flex-preferred-size: 0;
flex-basis: 0;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
max-width: 100%;
}
.col-auto {
flex: 0 0 auto;
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
max-width: 100%;
}
.col-1 {
flex: 0 0 8.33333%;
-webkit-box-flex: 0;
-ms-flex: 0 0 8.33333%;
flex: 0 0 8.33333%;
max-width: 8.33333%;
}
.col-2 {
flex: 0 0 16.66667%;
-webkit-box-flex: 0;
-ms-flex: 0 0 16.66667%;
flex: 0 0 16.66667%;
max-width: 16.66667%;
}
.col-3 {
flex: 0 0 25%;
-webkit-box-flex: 0;
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%;
}
.col-4 {
flex: 0 0 33.33333%;
-webkit-box-flex: 0;
-ms-flex: 0 0 33.33333%;
flex: 0 0 33.33333%;
max-width: 33.33333%;
}
.col-5 {
flex: 0 0 41.66667%;
-webkit-box-flex: 0;
-ms-flex: 0 0 41.66667%;
flex: 0 0 41.66667%;
max-width: 41.66667%;
}
.col-6 {
flex: 0 0 50%;
-webkit-box-flex: 0;
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%;
}
.col-7 {
flex: 0 0 58.33333%;
-webkit-box-flex: 0;
-ms-flex: 0 0 58.33333%;
flex: 0 0 58.33333%;
max-width: 58.33333%;
}
.col-8 {
flex: 0 0 66.66667%;
-webkit-box-flex: 0;
-ms-flex: 0 0 66.66667%;
flex: 0 0 66.66667%;
max-width: 66.66667%;
}
.col-9 {
flex: 0 0 75%;
-webkit-box-flex: 0;
-ms-flex: 0 0 75%;
flex: 0 0 75%;
max-width: 75%;
}
.col-10 {
flex: 0 0 83.33333%;
-webkit-box-flex: 0;
-ms-flex: 0 0 83.33333%;
flex: 0 0 83.33333%;
max-width: 83.33333%;
}
.col-11 {
flex: 0 0 91.66667%;
-webkit-box-flex: 0;
-ms-flex: 0 0 91.66667%;
flex: 0 0 91.66667%;
max-width: 91.66667%;
}
.col-12 {
flex: 0 0 100%;
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
}
.order-first {
order: -1;
-webkit-box-ordinal-group: 0;
-ms-flex-order: -1;
order: -1;
}
.order-last {
order: 13;
-webkit-box-ordinal-group: 14;
-ms-flex-order: 13;
order: 13;
}
.order-0 {
order: 0;
-webkit-box-ordinal-group: 1;
-ms-flex-order: 0;
order: 0;
}
.order-1 {
order: 1;
-webkit-box-ordinal-group: 2;
-ms-flex-order: 1;
order: 1;
}
.order-2 {
order: 2;
-webkit-box-ordinal-group: 3;
-ms-flex-order: 2;
order: 2;
}
.order-3 {
order: 3;
-webkit-box-ordinal-group: 4;
-ms-flex-order: 3;
order: 3;
}
.order-4 {
order: 4;
-webkit-box-ordinal-group: 5;
-ms-flex-order: 4;
order: 4;
}
.order-5 {
order: 5;
-webkit-box-ordinal-group: 6;
-ms-flex-order: 5;
order: 5;
}
.order-6 {
order: 6;
-webkit-box-ordinal-group: 7;
-ms-flex-order: 6;
order: 6;
}
.order-7 {
order: 7;
-webkit-box-ordinal-group: 8;
-ms-flex-order: 7;
order: 7;
}
.order-8 {
order: 8;
-webkit-box-ordinal-group: 9;
-ms-flex-order: 8;
order: 8;
}
.order-9 {
order: 9;
-webkit-box-ordinal-group: 10;
-ms-flex-order: 9;
order: 9;
}
.order-10 {
order: 10;
-webkit-box-ordinal-group: 11;
-ms-flex-order: 10;
order: 10;
}
.order-11 {
order: 11;
-webkit-box-ordinal-group: 12;
-ms-flex-order: 11;
order: 11;
}
.order-12 {
order: 12;
-webkit-box-ordinal-group: 13;
-ms-flex-order: 12;
order: 12;
}
.offset-1 {
@ -928,135 +993,194 @@ pre code {
@media (min-width: 576px) {
.col-sm {
flex-basis: 0;
flex-grow: 1;
-ms-flex-preferred-size: 0;
flex-basis: 0;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
max-width: 100%;
}
.col-sm-auto {
flex: 0 0 auto;
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
max-width: 100%;
}
.col-sm-1 {
flex: 0 0 8.33333%;
-webkit-box-flex: 0;
-ms-flex: 0 0 8.33333%;
flex: 0 0 8.33333%;
max-width: 8.33333%;
}
.col-sm-2 {
flex: 0 0 16.66667%;
-webkit-box-flex: 0;
-ms-flex: 0 0 16.66667%;
flex: 0 0 16.66667%;
max-width: 16.66667%;
}
.col-sm-3 {
flex: 0 0 25%;
-webkit-box-flex: 0;
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%;
}
.col-sm-4 {
flex: 0 0 33.33333%;
-webkit-box-flex: 0;
-ms-flex: 0 0 33.33333%;
flex: 0 0 33.33333%;
max-width: 33.33333%;
}
.col-sm-5 {
flex: 0 0 41.66667%;
-webkit-box-flex: 0;
-ms-flex: 0 0 41.66667%;
flex: 0 0 41.66667%;
max-width: 41.66667%;
}
.col-sm-6 {
flex: 0 0 50%;
-webkit-box-flex: 0;
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%;
}
.col-sm-7 {
flex: 0 0 58.33333%;
-webkit-box-flex: 0;
-ms-flex: 0 0 58.33333%;
flex: 0 0 58.33333%;
max-width: 58.33333%;
}
.col-sm-8 {
flex: 0 0 66.66667%;
-webkit-box-flex: 0;
-ms-flex: 0 0 66.66667%;
flex: 0 0 66.66667%;
max-width: 66.66667%;
}
.col-sm-9 {
flex: 0 0 75%;
-webkit-box-flex: 0;
-ms-flex: 0 0 75%;
flex: 0 0 75%;
max-width: 75%;
}
.col-sm-10 {
flex: 0 0 83.33333%;
-webkit-box-flex: 0;
-ms-flex: 0 0 83.33333%;
flex: 0 0 83.33333%;
max-width: 83.33333%;
}
.col-sm-11 {
flex: 0 0 91.66667%;
-webkit-box-flex: 0;
-ms-flex: 0 0 91.66667%;
flex: 0 0 91.66667%;
max-width: 91.66667%;
}
.col-sm-12 {
flex: 0 0 100%;
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
}
.order-sm-first {
order: -1;
-webkit-box-ordinal-group: 0;
-ms-flex-order: -1;
order: -1;
}
.order-sm-last {
order: 13;
-webkit-box-ordinal-group: 14;
-ms-flex-order: 13;
order: 13;
}
.order-sm-0 {
order: 0;
-webkit-box-ordinal-group: 1;
-ms-flex-order: 0;
order: 0;
}
.order-sm-1 {
order: 1;
-webkit-box-ordinal-group: 2;
-ms-flex-order: 1;
order: 1;
}
.order-sm-2 {
order: 2;
-webkit-box-ordinal-group: 3;
-ms-flex-order: 2;
order: 2;
}
.order-sm-3 {
order: 3;
-webkit-box-ordinal-group: 4;
-ms-flex-order: 3;
order: 3;
}
.order-sm-4 {
order: 4;
-webkit-box-ordinal-group: 5;
-ms-flex-order: 4;
order: 4;
}
.order-sm-5 {
order: 5;
-webkit-box-ordinal-group: 6;
-ms-flex-order: 5;
order: 5;
}
.order-sm-6 {
order: 6;
-webkit-box-ordinal-group: 7;
-ms-flex-order: 6;
order: 6;
}
.order-sm-7 {
order: 7;
-webkit-box-ordinal-group: 8;
-ms-flex-order: 7;
order: 7;
}
.order-sm-8 {
order: 8;
-webkit-box-ordinal-group: 9;
-ms-flex-order: 8;
order: 8;
}
.order-sm-9 {
order: 9;
-webkit-box-ordinal-group: 10;
-ms-flex-order: 9;
order: 9;
}
.order-sm-10 {
order: 10;
-webkit-box-ordinal-group: 11;
-ms-flex-order: 10;
order: 10;
}
.order-sm-11 {
order: 11;
-webkit-box-ordinal-group: 12;
-ms-flex-order: 11;
order: 11;
}
.order-sm-12 {
order: 12;
-webkit-box-ordinal-group: 13;
-ms-flex-order: 12;
order: 12;
}
.offset-sm-0 {
@ -1110,135 +1234,194 @@ pre code {
@media (min-width: 768px) {
.col-md {
flex-basis: 0;
flex-grow: 1;
-ms-flex-preferred-size: 0;
flex-basis: 0;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
max-width: 100%;
}
.col-md-auto {
flex: 0 0 auto;
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
max-width: 100%;
}
.col-md-1 {
flex: 0 0 8.33333%;
-webkit-box-flex: 0;
-ms-flex: 0 0 8.33333%;
flex: 0 0 8.33333%;
max-width: 8.33333%;
}
.col-md-2 {
flex: 0 0 16.66667%;
-webkit-box-flex: 0;
-ms-flex: 0 0 16.66667%;
flex: 0 0 16.66667%;
max-width: 16.66667%;
}
.col-md-3 {
flex: 0 0 25%;
-webkit-box-flex: 0;
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%;
}
.col-md-4 {
flex: 0 0 33.33333%;
-webkit-box-flex: 0;
-ms-flex: 0 0 33.33333%;
flex: 0 0 33.33333%;
max-width: 33.33333%;
}
.col-md-5 {
flex: 0 0 41.66667%;
-webkit-box-flex: 0;
-ms-flex: 0 0 41.66667%;
flex: 0 0 41.66667%;
max-width: 41.66667%;
}
.col-md-6 {
flex: 0 0 50%;
-webkit-box-flex: 0;
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%;
}
.col-md-7 {
flex: 0 0 58.33333%;
-webkit-box-flex: 0;
-ms-flex: 0 0 58.33333%;
flex: 0 0 58.33333%;
max-width: 58.33333%;
}
.col-md-8 {
flex: 0 0 66.66667%;
-webkit-box-flex: 0;
-ms-flex: 0 0 66.66667%;
flex: 0 0 66.66667%;
max-width: 66.66667%;
}
.col-md-9 {
flex: 0 0 75%;
-webkit-box-flex: 0;
-ms-flex: 0 0 75%;
flex: 0 0 75%;
max-width: 75%;
}
.col-md-10 {
flex: 0 0 83.33333%;
-webkit-box-flex: 0;
-ms-flex: 0 0 83.33333%;
flex: 0 0 83.33333%;
max-width: 83.33333%;
}
.col-md-11 {
flex: 0 0 91.66667%;
-webkit-box-flex: 0;
-ms-flex: 0 0 91.66667%;
flex: 0 0 91.66667%;
max-width: 91.66667%;
}
.col-md-12 {
flex: 0 0 100%;
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
}
.order-md-first {
order: -1;
-webkit-box-ordinal-group: 0;
-ms-flex-order: -1;
order: -1;
}
.order-md-last {
order: 13;
-webkit-box-ordinal-group: 14;
-ms-flex-order: 13;
order: 13;
}
.order-md-0 {
order: 0;
-webkit-box-ordinal-group: 1;
-ms-flex-order: 0;
order: 0;
}
.order-md-1 {
order: 1;
-webkit-box-ordinal-group: 2;
-ms-flex-order: 1;
order: 1;
}
.order-md-2 {
order: 2;
-webkit-box-ordinal-group: 3;
-ms-flex-order: 2;
order: 2;
}
.order-md-3 {
order: 3;
-webkit-box-ordinal-group: 4;
-ms-flex-order: 3;
order: 3;
}
.order-md-4 {
order: 4;
-webkit-box-ordinal-group: 5;
-ms-flex-order: 4;
order: 4;
}
.order-md-5 {
order: 5;
-webkit-box-ordinal-group: 6;
-ms-flex-order: 5;
order: 5;
}
.order-md-6 {
order: 6;
-webkit-box-ordinal-group: 7;
-ms-flex-order: 6;
order: 6;
}
.order-md-7 {
order: 7;
-webkit-box-ordinal-group: 8;
-ms-flex-order: 7;
order: 7;
}
.order-md-8 {
order: 8;
-webkit-box-ordinal-group: 9;
-ms-flex-order: 8;
order: 8;
}
.order-md-9 {
order: 9;
-webkit-box-ordinal-group: 10;
-ms-flex-order: 9;
order: 9;
}
.order-md-10 {
order: 10;
-webkit-box-ordinal-group: 11;
-ms-flex-order: 10;
order: 10;
}
.order-md-11 {
order: 11;
-webkit-box-ordinal-group: 12;
-ms-flex-order: 11;
order: 11;
}
.order-md-12 {
order: 12;
-webkit-box-ordinal-group: 13;
-ms-flex-order: 12;
order: 12;
}
.offset-md-0 {
@ -1292,135 +1475,194 @@ pre code {
@media (min-width: 992px) {
.col-lg {
flex-basis: 0;
flex-grow: 1;
-ms-flex-preferred-size: 0;
flex-basis: 0;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
max-width: 100%;
}
.col-lg-auto {
flex: 0 0 auto;
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
max-width: 100%;
}
.col-lg-1 {
flex: 0 0 8.33333%;
-webkit-box-flex: 0;
-ms-flex: 0 0 8.33333%;
flex: 0 0 8.33333%;
max-width: 8.33333%;
}
.col-lg-2 {
flex: 0 0 16.66667%;
-webkit-box-flex: 0;
-ms-flex: 0 0 16.66667%;
flex: 0 0 16.66667%;
max-width: 16.66667%;
}
.col-lg-3 {
flex: 0 0 25%;
-webkit-box-flex: 0;
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%;
}
.col-lg-4 {
flex: 0 0 33.33333%;
-webkit-box-flex: 0;
-ms-flex: 0 0 33.33333%;
flex: 0 0 33.33333%;
max-width: 33.33333%;
}
.col-lg-5 {
flex: 0 0 41.66667%;
-webkit-box-flex: 0;
-ms-flex: 0 0 41.66667%;
flex: 0 0 41.66667%;
max-width: 41.66667%;
}
.col-lg-6 {
flex: 0 0 50%;
-webkit-box-flex: 0;
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%;
}
.col-lg-7 {
flex: 0 0 58.33333%;
-webkit-box-flex: 0;
-ms-flex: 0 0 58.33333%;
flex: 0 0 58.33333%;
max-width: 58.33333%;
}
.col-lg-8 {
flex: 0 0 66.66667%;
-webkit-box-flex: 0;
-ms-flex: 0 0 66.66667%;
flex: 0 0 66.66667%;
max-width: 66.66667%;
}
.col-lg-9 {
flex: 0 0 75%;
-webkit-box-flex: 0;
-ms-flex: 0 0 75%;
flex: 0 0 75%;
max-width: 75%;
}
.col-lg-10 {
flex: 0 0 83.33333%;
-webkit-box-flex: 0;
-ms-flex: 0 0 83.33333%;
flex: 0 0 83.33333%;
max-width: 83.33333%;
}
.col-lg-11 {
flex: 0 0 91.66667%;
-webkit-box-flex: 0;
-ms-flex: 0 0 91.66667%;
flex: 0 0 91.66667%;
max-width: 91.66667%;
}
.col-lg-12 {
flex: 0 0 100%;
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
}
.order-lg-first {
order: -1;
-webkit-box-ordinal-group: 0;
-ms-flex-order: -1;
order: -1;
}
.order-lg-last {
order: 13;
-webkit-box-ordinal-group: 14;
-ms-flex-order: 13;
order: 13;
}
.order-lg-0 {
order: 0;
-webkit-box-ordinal-group: 1;
-ms-flex-order: 0;
order: 0;
}
.order-lg-1 {
order: 1;
-webkit-box-ordinal-group: 2;
-ms-flex-order: 1;
order: 1;
}
.order-lg-2 {
order: 2;
-webkit-box-ordinal-group: 3;
-ms-flex-order: 2;
order: 2;
}
.order-lg-3 {
order: 3;
-webkit-box-ordinal-group: 4;
-ms-flex-order: 3;
order: 3;
}
.order-lg-4 {
order: 4;
-webkit-box-ordinal-group: 5;
-ms-flex-order: 4;
order: 4;
}
.order-lg-5 {
order: 5;
-webkit-box-ordinal-group: 6;
-ms-flex-order: 5;
order: 5;
}
.order-lg-6 {
order: 6;
-webkit-box-ordinal-group: 7;
-ms-flex-order: 6;
order: 6;
}
.order-lg-7 {
order: 7;
-webkit-box-ordinal-group: 8;
-ms-flex-order: 7;
order: 7;
}
.order-lg-8 {
order: 8;
-webkit-box-ordinal-group: 9;
-ms-flex-order: 8;
order: 8;
}
.order-lg-9 {
order: 9;
-webkit-box-ordinal-group: 10;
-ms-flex-order: 9;
order: 9;
}
.order-lg-10 {
order: 10;
-webkit-box-ordinal-group: 11;
-ms-flex-order: 10;
order: 10;
}
.order-lg-11 {
order: 11;
-webkit-box-ordinal-group: 12;
-ms-flex-order: 11;
order: 11;
}
.order-lg-12 {
order: 12;
-webkit-box-ordinal-group: 13;
-ms-flex-order: 12;
order: 12;
}
.offset-lg-0 {
@ -1474,135 +1716,194 @@ pre code {
@media (min-width: 1200px) {
.col-xl {
flex-basis: 0;
flex-grow: 1;
-ms-flex-preferred-size: 0;
flex-basis: 0;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
max-width: 100%;
}
.col-xl-auto {
flex: 0 0 auto;
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
max-width: 100%;
}
.col-xl-1 {
flex: 0 0 8.33333%;
-webkit-box-flex: 0;
-ms-flex: 0 0 8.33333%;
flex: 0 0 8.33333%;
max-width: 8.33333%;
}
.col-xl-2 {
flex: 0 0 16.66667%;
-webkit-box-flex: 0;
-ms-flex: 0 0 16.66667%;
flex: 0 0 16.66667%;
max-width: 16.66667%;
}
.col-xl-3 {
flex: 0 0 25%;
-webkit-box-flex: 0;
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%;
}
.col-xl-4 {
flex: 0 0 33.33333%;
-webkit-box-flex: 0;
-ms-flex: 0 0 33.33333%;
flex: 0 0 33.33333%;
max-width: 33.33333%;
}
.col-xl-5 {
flex: 0 0 41.66667%;
-webkit-box-flex: 0;
-ms-flex: 0 0 41.66667%;
flex: 0 0 41.66667%;
max-width: 41.66667%;
}
.col-xl-6 {
flex: 0 0 50%;
-webkit-box-flex: 0;
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%;
}
.col-xl-7 {
flex: 0 0 58.33333%;
-webkit-box-flex: 0;
-ms-flex: 0 0 58.33333%;
flex: 0 0 58.33333%;
max-width: 58.33333%;
}
.col-xl-8 {
flex: 0 0 66.66667%;
-webkit-box-flex: 0;
-ms-flex: 0 0 66.66667%;
flex: 0 0 66.66667%;
max-width: 66.66667%;
}
.col-xl-9 {
flex: 0 0 75%;
-webkit-box-flex: 0;
-ms-flex: 0 0 75%;
flex: 0 0 75%;
max-width: 75%;
}
.col-xl-10 {
flex: 0 0 83.33333%;
-webkit-box-flex: 0;
-ms-flex: 0 0 83.33333%;
flex: 0 0 83.33333%;
max-width: 83.33333%;
}
.col-xl-11 {
flex: 0 0 91.66667%;
-webkit-box-flex: 0;
-ms-flex: 0 0 91.66667%;
flex: 0 0 91.66667%;
max-width: 91.66667%;
}
.col-xl-12 {
flex: 0 0 100%;
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
}
.order-xl-first {
order: -1;
-webkit-box-ordinal-group: 0;
-ms-flex-order: -1;
order: -1;
}
.order-xl-last {
order: 13;
-webkit-box-ordinal-group: 14;
-ms-flex-order: 13;
order: 13;
}
.order-xl-0 {
order: 0;
-webkit-box-ordinal-group: 1;
-ms-flex-order: 0;
order: 0;
}
.order-xl-1 {
order: 1;
-webkit-box-ordinal-group: 2;
-ms-flex-order: 1;
order: 1;
}
.order-xl-2 {
order: 2;
-webkit-box-ordinal-group: 3;
-ms-flex-order: 2;
order: 2;
}
.order-xl-3 {
order: 3;
-webkit-box-ordinal-group: 4;
-ms-flex-order: 3;
order: 3;
}
.order-xl-4 {
order: 4;
-webkit-box-ordinal-group: 5;
-ms-flex-order: 4;
order: 4;
}
.order-xl-5 {
order: 5;
-webkit-box-ordinal-group: 6;
-ms-flex-order: 5;
order: 5;
}
.order-xl-6 {
order: 6;
-webkit-box-ordinal-group: 7;
-ms-flex-order: 6;
order: 6;
}
.order-xl-7 {
order: 7;
-webkit-box-ordinal-group: 8;
-ms-flex-order: 7;
order: 7;
}
.order-xl-8 {
order: 8;
-webkit-box-ordinal-group: 9;
-ms-flex-order: 8;
order: 8;
}
.order-xl-9 {
order: 9;
-webkit-box-ordinal-group: 10;
-ms-flex-order: 9;
order: 9;
}
.order-xl-10 {
order: 10;
-webkit-box-ordinal-group: 11;
-ms-flex-order: 10;
order: 10;
}
.order-xl-11 {
order: 11;
-webkit-box-ordinal-group: 12;
-ms-flex-order: 11;
order: 11;
}
.order-xl-12 {
order: 12;
-webkit-box-ordinal-group: 13;
-ms-flex-order: 12;
order: 12;
}
.offset-xl-0 {
@ -1656,135 +1957,194 @@ pre code {
@media (min-width: 1390px) {
.col-xxl {
flex-basis: 0;
flex-grow: 1;
-ms-flex-preferred-size: 0;
flex-basis: 0;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
max-width: 100%;
}
.col-xxl-auto {
flex: 0 0 auto;
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
max-width: 100%;
}
.col-xxl-1 {
flex: 0 0 8.33333%;
-webkit-box-flex: 0;
-ms-flex: 0 0 8.33333%;
flex: 0 0 8.33333%;
max-width: 8.33333%;
}
.col-xxl-2 {
flex: 0 0 16.66667%;
-webkit-box-flex: 0;
-ms-flex: 0 0 16.66667%;
flex: 0 0 16.66667%;
max-width: 16.66667%;
}
.col-xxl-3 {
flex: 0 0 25%;
-webkit-box-flex: 0;
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%;
}
.col-xxl-4 {
flex: 0 0 33.33333%;
-webkit-box-flex: 0;
-ms-flex: 0 0 33.33333%;
flex: 0 0 33.33333%;
max-width: 33.33333%;
}
.col-xxl-5 {
flex: 0 0 41.66667%;
-webkit-box-flex: 0;
-ms-flex: 0 0 41.66667%;
flex: 0 0 41.66667%;
max-width: 41.66667%;
}
.col-xxl-6 {
flex: 0 0 50%;
-webkit-box-flex: 0;
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%;
}
.col-xxl-7 {
flex: 0 0 58.33333%;
-webkit-box-flex: 0;
-ms-flex: 0 0 58.33333%;
flex: 0 0 58.33333%;
max-width: 58.33333%;
}
.col-xxl-8 {
flex: 0 0 66.66667%;
-webkit-box-flex: 0;
-ms-flex: 0 0 66.66667%;
flex: 0 0 66.66667%;
max-width: 66.66667%;
}
.col-xxl-9 {
flex: 0 0 75%;
-webkit-box-flex: 0;
-ms-flex: 0 0 75%;
flex: 0 0 75%;
max-width: 75%;
}
.col-xxl-10 {
flex: 0 0 83.33333%;
-webkit-box-flex: 0;
-ms-flex: 0 0 83.33333%;
flex: 0 0 83.33333%;
max-width: 83.33333%;
}
.col-xxl-11 {
flex: 0 0 91.66667%;
-webkit-box-flex: 0;
-ms-flex: 0 0 91.66667%;
flex: 0 0 91.66667%;
max-width: 91.66667%;
}
.col-xxl-12 {
flex: 0 0 100%;
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
}
.order-xxl-first {
order: -1;
-webkit-box-ordinal-group: 0;
-ms-flex-order: -1;
order: -1;
}
.order-xxl-last {
order: 13;
-webkit-box-ordinal-group: 14;
-ms-flex-order: 13;
order: 13;
}
.order-xxl-0 {
order: 0;
-webkit-box-ordinal-group: 1;
-ms-flex-order: 0;
order: 0;
}
.order-xxl-1 {
order: 1;
-webkit-box-ordinal-group: 2;
-ms-flex-order: 1;
order: 1;
}
.order-xxl-2 {
order: 2;
-webkit-box-ordinal-group: 3;
-ms-flex-order: 2;
order: 2;
}
.order-xxl-3 {
order: 3;
-webkit-box-ordinal-group: 4;
-ms-flex-order: 3;
order: 3;
}
.order-xxl-4 {
order: 4;
-webkit-box-ordinal-group: 5;
-ms-flex-order: 4;
order: 4;
}
.order-xxl-5 {
order: 5;
-webkit-box-ordinal-group: 6;
-ms-flex-order: 5;
order: 5;
}
.order-xxl-6 {
order: 6;
-webkit-box-ordinal-group: 7;
-ms-flex-order: 6;
order: 6;
}
.order-xxl-7 {
order: 7;
-webkit-box-ordinal-group: 8;
-ms-flex-order: 7;
order: 7;
}
.order-xxl-8 {
order: 8;
-webkit-box-ordinal-group: 9;
-ms-flex-order: 8;
order: 8;
}
.order-xxl-9 {
order: 9;
-webkit-box-ordinal-group: 10;
-ms-flex-order: 9;
order: 9;
}
.order-xxl-10 {
order: 10;
-webkit-box-ordinal-group: 11;
-ms-flex-order: 10;
order: 10;
}
.order-xxl-11 {
order: 11;
-webkit-box-ordinal-group: 12;
-ms-flex-order: 11;
order: 11;
}
.order-xxl-12 {
order: 12;
-webkit-box-ordinal-group: 13;
-ms-flex-order: 12;
order: 12;
}
.offset-xxl-0 {
@ -1838,135 +2198,194 @@ pre code {
@media (min-width: 1590px) {
.col-xxxl {
flex-basis: 0;
flex-grow: 1;
-ms-flex-preferred-size: 0;
flex-basis: 0;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
max-width: 100%;
}
.col-xxxl-auto {
flex: 0 0 auto;
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
max-width: 100%;
}
.col-xxxl-1 {
flex: 0 0 8.33333%;
-webkit-box-flex: 0;
-ms-flex: 0 0 8.33333%;
flex: 0 0 8.33333%;
max-width: 8.33333%;
}
.col-xxxl-2 {
flex: 0 0 16.66667%;
-webkit-box-flex: 0;
-ms-flex: 0 0 16.66667%;
flex: 0 0 16.66667%;
max-width: 16.66667%;
}
.col-xxxl-3 {
flex: 0 0 25%;
-webkit-box-flex: 0;
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%;
}
.col-xxxl-4 {
flex: 0 0 33.33333%;
-webkit-box-flex: 0;
-ms-flex: 0 0 33.33333%;
flex: 0 0 33.33333%;
max-width: 33.33333%;
}
.col-xxxl-5 {
flex: 0 0 41.66667%;
-webkit-box-flex: 0;
-ms-flex: 0 0 41.66667%;
flex: 0 0 41.66667%;
max-width: 41.66667%;
}
.col-xxxl-6 {
flex: 0 0 50%;
-webkit-box-flex: 0;
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%;
}
.col-xxxl-7 {
flex: 0 0 58.33333%;
-webkit-box-flex: 0;
-ms-flex: 0 0 58.33333%;
flex: 0 0 58.33333%;
max-width: 58.33333%;
}
.col-xxxl-8 {
flex: 0 0 66.66667%;
-webkit-box-flex: 0;
-ms-flex: 0 0 66.66667%;
flex: 0 0 66.66667%;
max-width: 66.66667%;
}
.col-xxxl-9 {
flex: 0 0 75%;
-webkit-box-flex: 0;
-ms-flex: 0 0 75%;
flex: 0 0 75%;
max-width: 75%;
}
.col-xxxl-10 {
flex: 0 0 83.33333%;
-webkit-box-flex: 0;
-ms-flex: 0 0 83.33333%;
flex: 0 0 83.33333%;
max-width: 83.33333%;
}
.col-xxxl-11 {
flex: 0 0 91.66667%;
-webkit-box-flex: 0;
-ms-flex: 0 0 91.66667%;
flex: 0 0 91.66667%;
max-width: 91.66667%;
}
.col-xxxl-12 {
flex: 0 0 100%;
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
}
.order-xxxl-first {
order: -1;
-webkit-box-ordinal-group: 0;
-ms-flex-order: -1;
order: -1;
}
.order-xxxl-last {
order: 13;
-webkit-box-ordinal-group: 14;
-ms-flex-order: 13;
order: 13;
}
.order-xxxl-0 {
order: 0;
-webkit-box-ordinal-group: 1;
-ms-flex-order: 0;
order: 0;
}
.order-xxxl-1 {
order: 1;
-webkit-box-ordinal-group: 2;
-ms-flex-order: 1;
order: 1;
}
.order-xxxl-2 {
order: 2;
-webkit-box-ordinal-group: 3;
-ms-flex-order: 2;
order: 2;
}
.order-xxxl-3 {
order: 3;
-webkit-box-ordinal-group: 4;
-ms-flex-order: 3;
order: 3;
}
.order-xxxl-4 {
order: 4;
-webkit-box-ordinal-group: 5;
-ms-flex-order: 4;
order: 4;
}
.order-xxxl-5 {
order: 5;
-webkit-box-ordinal-group: 6;
-ms-flex-order: 5;
order: 5;
}
.order-xxxl-6 {
order: 6;
-webkit-box-ordinal-group: 7;
-ms-flex-order: 6;
order: 6;
}
.order-xxxl-7 {
order: 7;
-webkit-box-ordinal-group: 8;
-ms-flex-order: 7;
order: 7;
}
.order-xxxl-8 {
order: 8;
-webkit-box-ordinal-group: 9;
-ms-flex-order: 8;
order: 8;
}
.order-xxxl-9 {
order: 9;
-webkit-box-ordinal-group: 10;
-ms-flex-order: 9;
order: 9;
}
.order-xxxl-10 {
order: 10;
-webkit-box-ordinal-group: 11;
-ms-flex-order: 10;
order: 10;
}
.order-xxxl-11 {
order: 11;
-webkit-box-ordinal-group: 12;
-ms-flex-order: 11;
order: 11;
}
.order-xxxl-12 {
order: 12;
-webkit-box-ordinal-group: 13;
-ms-flex-order: 12;
order: 12;
}
.offset-xxxl-0 {
@ -2411,7 +2830,9 @@ pre code {
border: 0;
}
.form-control {
.form-control,
.select2-container--default .select2-selection,
.select2-dropdown .select2-search__field {
display: block;
width: 100%;
height: calc(1.5em + 0.75rem + 2px);
@ -2424,50 +2845,80 @@ pre code {
background-clip: padding-box;
border: 1px solid #bdbdbd;
border-radius: 0.25rem;
-webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.form-control {
.form-control,
.select2-container--default .select2-selection,
.select2-dropdown .select2-search__field {
-webkit-transition: none;
transition: none;
}
}
.form-control::-ms-expand {
.form-control::-ms-expand,
.select2-container--default .select2-selection::-ms-expand,
.select2-dropdown .select2-search__field::-ms-expand {
background-color: transparent;
border: 0;
}
.form-control:focus {
.form-control:focus,
.select2-container--default .select2-selection:focus,
.select2-dropdown .select2-search__field:focus {
color: #616161;
background-color: #fff;
border-color: #9acffa;
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.25);
-webkit-box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.25);
box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.25);
}
.form-control::-webkit-input-placeholder {
.form-control::-webkit-input-placeholder,
.select2-container--default .select2-selection::-webkit-input-placeholder,
.select2-dropdown .select2-search__field::-webkit-input-placeholder {
color: #757575;
opacity: 1;
}
.form-control::-ms-input-placeholder {
.form-control::-moz-placeholder,
.select2-container--default .select2-selection::-moz-placeholder,
.select2-dropdown .select2-search__field::-moz-placeholder {
color: #757575;
opacity: 1;
}
.form-control::placeholder {
.form-control::-ms-input-placeholder,
.select2-container--default .select2-selection::-ms-input-placeholder,
.select2-dropdown .select2-search__field::-ms-input-placeholder {
color: #757575;
opacity: 1;
}
.form-control::placeholder,
.select2-container--default .select2-selection::placeholder,
.select2-dropdown .select2-search__field::placeholder {
color: #757575;
opacity: 1;
}
.form-control:disabled,
.form-control[readonly] {
.select2-container--default .select2-selection:disabled,
.select2-dropdown .select2-search__field:disabled,
.form-control[readonly],
.select2-container--default .select2-selection[readonly],
.select2-dropdown .select2-search__field[readonly] {
background-color: #eeeeee;
opacity: 1;
}
select.form-control:focus::-ms-value {
select.form-control:focus::-ms-value,
.select2-container--default select.select2-selection:focus::-ms-value,
.select2-dropdown select.select2-search__field:focus::-ms-value {
color: #616161;
background-color: #fff;
}
@ -2536,11 +2987,17 @@ select.form-control:focus::-ms-value {
}
select.form-control[size],
select.form-control[multiple] {
.select2-container--default select.select2-selection[size],
.select2-dropdown select.select2-search__field[size],
select.form-control[multiple],
.select2-container--default select.select2-selection[multiple],
.select2-dropdown select.select2-search__field[multiple] {
height: auto;
}
textarea.form-control {
textarea.form-control,
.select2-container--default textarea.select2-selection,
.select2-dropdown textarea.select2-search__field {
height: auto;
}
@ -2554,8 +3011,11 @@ textarea.form-control {
}
.form-row {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-right: -5px;
margin-left: -5px;
}
@ -2587,8 +3047,12 @@ textarea.form-control {
}
.form-check-inline {
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
align-items: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding-left: 0;
margin-right: 0.75rem;
}
@ -2624,7 +3088,13 @@ textarea.form-control {
}
.was-validated .form-control:valid,
.form-control.is-valid {
.was-validated .select2-container--default .select2-selection:valid,
.select2-container--default .was-validated .select2-selection:valid,
.was-validated .select2-dropdown .select2-search__field:valid,
.select2-dropdown .was-validated .select2-search__field:valid,
.form-control.is-valid,
.select2-container--default .is-valid.select2-selection,
.select2-dropdown .is-valid.select2-search__field {
border-color: #4caf50;
padding-right: calc(1.5em + 0.75rem);
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%234caf50' 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");
@ -2634,20 +3104,45 @@ textarea.form-control {
}
.was-validated .form-control:valid:focus,
.form-control.is-valid:focus {
.was-validated .select2-container--default .select2-selection:valid:focus,
.select2-container--default .was-validated .select2-selection:valid:focus,
.was-validated .select2-dropdown .select2-search__field:valid:focus,
.select2-dropdown .was-validated .select2-search__field:valid:focus,
.form-control.is-valid:focus,
.select2-container--default .is-valid.select2-selection:focus,
.select2-dropdown .is-valid.select2-search__field:focus {
border-color: #4caf50;
box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
-webkit-box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
}
.was-validated .form-control:valid ~ .valid-feedback,
.was-validated .select2-container--default .select2-selection:valid ~ .valid-feedback,
.select2-container--default .was-validated .select2-selection:valid ~ .valid-feedback,
.was-validated .select2-dropdown .select2-search__field:valid ~ .valid-feedback,
.select2-dropdown .was-validated .select2-search__field:valid ~ .valid-feedback,
.was-validated .form-control:valid ~ .valid-tooltip,
.was-validated .select2-container--default .select2-selection:valid ~ .valid-tooltip,
.select2-container--default .was-validated .select2-selection:valid ~ .valid-tooltip,
.was-validated .select2-dropdown .select2-search__field:valid ~ .valid-tooltip,
.select2-dropdown .was-validated .select2-search__field:valid ~ .valid-tooltip,
.form-control.is-valid ~ .valid-feedback,
.form-control.is-valid ~ .valid-tooltip {
.select2-container--default .is-valid.select2-selection ~ .valid-feedback,
.select2-dropdown .is-valid.select2-search__field ~ .valid-feedback,
.form-control.is-valid ~ .valid-tooltip,
.select2-container--default .is-valid.select2-selection ~ .valid-tooltip,
.select2-dropdown .is-valid.select2-search__field ~ .valid-tooltip {
display: block;
}
.was-validated textarea.form-control:valid,
textarea.form-control.is-valid {
.was-validated .select2-container--default textarea.select2-selection:valid,
.select2-container--default .was-validated textarea.select2-selection:valid,
.was-validated .select2-dropdown textarea.select2-search__field:valid,
.select2-dropdown .was-validated textarea.select2-search__field:valid,
textarea.form-control.is-valid,
.select2-container--default textarea.is-valid.select2-selection,
.select2-dropdown textarea.is-valid.select2-search__field {
padding-right: calc(1.5em + 0.75rem);
background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}
@ -2662,7 +3157,8 @@ textarea.form-control.is-valid {
.was-validated .custom-select:valid:focus,
.custom-select.is-valid:focus {
border-color: #4caf50;
box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
-webkit-box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
}
.was-validated .custom-select:valid ~ .valid-feedback,
@ -2716,7 +3212,8 @@ textarea.form-control.is-valid {
.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before,
.custom-control-input.is-valid:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
-webkit-box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
}
.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before,
@ -2739,7 +3236,8 @@ textarea.form-control.is-valid {
.was-validated .custom-file-input:valid:focus ~ .custom-file-label,
.custom-file-input.is-valid:focus ~ .custom-file-label {
border-color: #4caf50;
box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
-webkit-box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
}
.invalid-feedback {
@ -2766,7 +3264,13 @@ textarea.form-control.is-valid {
}
.was-validated .form-control:invalid,
.form-control.is-invalid {
.was-validated .select2-container--default .select2-selection:invalid,
.select2-container--default .was-validated .select2-selection:invalid,
.was-validated .select2-dropdown .select2-search__field:invalid,
.select2-dropdown .was-validated .select2-search__field:invalid,
.form-control.is-invalid,
.select2-container--default .is-invalid.select2-selection,
.select2-dropdown .is-invalid.select2-search__field {
border-color: #f44336;
padding-right: calc(1.5em + 0.75rem);
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23f44336' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23f44336' 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");
@ -2776,20 +3280,45 @@ textarea.form-control.is-valid {
}
.was-validated .form-control:invalid:focus,
.form-control.is-invalid:focus {
.was-validated .select2-container--default .select2-selection:invalid:focus,
.select2-container--default .was-validated .select2-selection:invalid:focus,
.was-validated .select2-dropdown .select2-search__field:invalid:focus,
.select2-dropdown .was-validated .select2-search__field:invalid:focus,
.form-control.is-invalid:focus,
.select2-container--default .is-invalid.select2-selection:focus,
.select2-dropdown .is-invalid.select2-search__field:focus {
border-color: #f44336;
box-shadow: 0 0 0 0.2rem rgba(244, 67, 54, 0.25);
-webkit-box-shadow: 0 0 0 0.2rem rgba(244, 67, 54, 0.25);
box-shadow: 0 0 0 0.2rem rgba(244, 67, 54, 0.25);
}
.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .select2-container--default .select2-selection:invalid ~ .invalid-feedback,
.select2-container--default .was-validated .select2-selection:invalid ~ .invalid-feedback,
.was-validated .select2-dropdown .select2-search__field:invalid ~ .invalid-feedback,
.select2-dropdown .was-validated .select2-search__field:invalid ~ .invalid-feedback,
.was-validated .form-control:invalid ~ .invalid-tooltip,
.was-validated .select2-container--default .select2-selection:invalid ~ .invalid-tooltip,
.select2-container--default .was-validated .select2-selection:invalid ~ .invalid-tooltip,
.was-validated .select2-dropdown .select2-search__field:invalid ~ .invalid-tooltip,
.select2-dropdown .was-validated .select2-search__field:invalid ~ .invalid-tooltip,
.form-control.is-invalid ~ .invalid-feedback,
.form-control.is-invalid ~ .invalid-tooltip {
.select2-container--default .is-invalid.select2-selection ~ .invalid-feedback,
.select2-dropdown .is-invalid.select2-search__field ~ .invalid-feedback,
.form-control.is-invalid ~ .invalid-tooltip,
.select2-container--default .is-invalid.select2-selection ~ .invalid-tooltip,
.select2-dropdown .is-invalid.select2-search__field ~ .invalid-tooltip {
display: block;
}
.was-validated textarea.form-control:invalid,
textarea.form-control.is-invalid {
.was-validated .select2-container--default textarea.select2-selection:invalid,
.select2-container--default .was-validated textarea.select2-selection:invalid,
.was-validated .select2-dropdown textarea.select2-search__field:invalid,
.select2-dropdown .was-validated textarea.select2-search__field:invalid,
textarea.form-control.is-invalid,
.select2-container--default textarea.is-invalid.select2-selection,
.select2-dropdown textarea.is-invalid.select2-search__field {
padding-right: calc(1.5em + 0.75rem);
background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}
@ -2804,7 +3333,8 @@ textarea.form-control.is-invalid {
.was-validated .custom-select:invalid:focus,
.custom-select.is-invalid:focus {
border-color: #f44336;
box-shadow: 0 0 0 0.2rem rgba(244, 67, 54, 0.25);
-webkit-box-shadow: 0 0 0 0.2rem rgba(244, 67, 54, 0.25);
box-shadow: 0 0 0 0.2rem rgba(244, 67, 54, 0.25);
}
.was-validated .custom-select:invalid ~ .invalid-feedback,
@ -2858,7 +3388,8 @@ textarea.form-control.is-invalid {
.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before,
.custom-control-input.is-invalid:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 0.2rem rgba(244, 67, 54, 0.25);
-webkit-box-shadow: 0 0 0 0.2rem rgba(244, 67, 54, 0.25);
box-shadow: 0 0 0 0.2rem rgba(244, 67, 54, 0.25);
}
.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before,
@ -2881,13 +3412,21 @@ textarea.form-control.is-invalid {
.was-validated .custom-file-input:invalid:focus ~ .custom-file-label,
.custom-file-input.is-invalid:focus ~ .custom-file-label {
border-color: #f44336;
box-shadow: 0 0 0 0.2rem rgba(244, 67, 54, 0.25);
-webkit-box-shadow: 0 0 0 0.2rem rgba(244, 67, 54, 0.25);
box-shadow: 0 0 0 0.2rem rgba(244, 67, 54, 0.25);
}
.form-inline {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
flex-flow: row wrap;
align-items: center;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-flow: row wrap;
flex-flow: row wrap;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.form-inline .form-check {
@ -2896,21 +3435,40 @@ textarea.form-control.is-invalid {
@media (min-width: 576px) {
.form-inline label {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
align-items: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
margin-bottom: 0;
}
.form-inline .form-group {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
flex: 0 0 auto;
flex-flow: row wrap;
align-items: center;
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-flow: row wrap;
flex-flow: row wrap;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin-bottom: 0;
}
.form-inline .form-control {
.form-inline .form-control,
.form-inline .select2-container--default .select2-selection,
.select2-container--default .form-inline .select2-selection,
.form-inline .select2-dropdown .select2-search__field,
.select2-dropdown .form-inline .select2-search__field {
display: inline-block;
width: auto;
vertical-align: middle;
@ -2926,24 +3484,35 @@ textarea.form-control.is-invalid {
}
.form-inline .form-check {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
align-items: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
width: auto;
padding-left: 0;
}
.form-inline .form-check-input {
position: relative;
flex-shrink: 0;
-ms-flex-negative: 0;
flex-shrink: 0;
margin-top: 0;
margin-right: 0.25rem;
margin-left: 0;
}
.form-inline .custom-control {
align-items: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.form-inline .custom-control-label {
@ -2958,6 +3527,7 @@ textarea.form-control.is-invalid {
text-align: center;
vertical-align: middle;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-color: transparent;
@ -2966,11 +3536,15 @@ textarea.form-control.is-invalid {
font-size: 1rem;
line-height: 1.5;
border-radius: 0.25rem;
-webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
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;
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, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.btn {
-webkit-transition: none;
transition: none;
}
}
@ -2983,7 +3557,8 @@ textarea.form-control.is-invalid {
.btn:focus,
.btn.focus {
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.25);
-webkit-box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.25);
box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.25);
}
.btn.disabled,
@ -3010,7 +3585,8 @@ fieldset:disabled a.btn {
.btn-primary:focus,
.btn-primary.focus {
box-shadow: 0 0 0 0.2rem rgba(66, 166, 245, 0.5);
-webkit-box-shadow: 0 0 0 0.2rem rgba(66, 166, 245, 0.5);
box-shadow: 0 0 0 0.2rem rgba(66, 166, 245, 0.5);
}
.btn-primary.disabled,
@ -3031,7 +3607,8 @@ fieldset:disabled a.btn {
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
box-shadow: 0 0 0 0.2rem rgba(66, 166, 245, 0.5);
-webkit-box-shadow: 0 0 0 0.2rem rgba(66, 166, 245, 0.5);
box-shadow: 0 0 0 0.2rem rgba(66, 166, 245, 0.5);
}
.btn-secondary {
@ -3048,7 +3625,8 @@ fieldset:disabled a.btn {
.btn-secondary:focus,
.btn-secondary.focus {
box-shadow: 0 0 0 0.2rem rgba(138, 138, 138, 0.5);
-webkit-box-shadow: 0 0 0 0.2rem rgba(138, 138, 138, 0.5);
box-shadow: 0 0 0 0.2rem rgba(138, 138, 138, 0.5);
}
.btn-secondary.disabled,
@ -3069,7 +3647,8 @@ fieldset:disabled a.btn {
.btn-secondary:not(:disabled):not(.disabled):active:focus,
.btn-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
box-shadow: 0 0 0 0.2rem rgba(138, 138, 138, 0.5);
-webkit-box-shadow: 0 0 0 0.2rem rgba(138, 138, 138, 0.5);
box-shadow: 0 0 0 0.2rem rgba(138, 138, 138, 0.5);
}
.btn-success {
@ -3086,7 +3665,8 @@ fieldset:disabled a.btn {
.btn-success:focus,
.btn-success.focus {
box-shadow: 0 0 0 0.2rem rgba(103, 187, 106, 0.5);
-webkit-box-shadow: 0 0 0 0.2rem rgba(103, 187, 106, 0.5);
box-shadow: 0 0 0 0.2rem rgba(103, 187, 106, 0.5);
}
.btn-success.disabled,
@ -3107,7 +3687,8 @@ fieldset:disabled a.btn {
.btn-success:not(:disabled):not(.disabled):active:focus,
.btn-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-success.dropdown-toggle:focus {
box-shadow: 0 0 0 0.2rem rgba(103, 187, 106, 0.5);
-webkit-box-shadow: 0 0 0 0.2rem rgba(103, 187, 106, 0.5);
box-shadow: 0 0 0 0.2rem rgba(103, 187, 106, 0.5);
}
.btn-info {
@ -3124,7 +3705,8 @@ fieldset:disabled a.btn {
.btn-info:focus,
.btn-info.focus {
box-shadow: 0 0 0 0.2rem rgba(38, 198, 218, 0.5);
-webkit-box-shadow: 0 0 0 0.2rem rgba(38, 198, 218, 0.5);
box-shadow: 0 0 0 0.2rem rgba(38, 198, 218, 0.5);
}
.btn-info.disabled,
@ -3145,7 +3727,8 @@ fieldset:disabled a.btn {
.btn-info:not(:disabled):not(.disabled):active:focus,
.btn-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-info.dropdown-toggle:focus {
box-shadow: 0 0 0 0.2rem rgba(38, 198, 218, 0.5);
-webkit-box-shadow: 0 0 0 0.2rem rgba(38, 198, 218, 0.5);
box-shadow: 0 0 0 0.2rem rgba(38, 198, 218, 0.5);
}
.btn-warning {
@ -3162,7 +3745,8 @@ fieldset:disabled a.btn {
.btn-warning:focus,
.btn-warning.focus {
box-shadow: 0 0 0 0.2rem rgba(222, 205, 55, 0.5);
-webkit-box-shadow: 0 0 0 0.2rem rgba(222, 205, 55, 0.5);
box-shadow: 0 0 0 0.2rem rgba(222, 205, 55, 0.5);
}
.btn-warning.disabled,
@ -3183,7 +3767,8 @@ fieldset:disabled a.btn {
.btn-warning:not(:disabled):not(.disabled):active:focus,
.btn-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-warning.dropdown-toggle:focus {
box-shadow: 0 0 0 0.2rem rgba(222, 205, 55, 0.5);
-webkit-box-shadow: 0 0 0 0.2rem rgba(222, 205, 55, 0.5);
box-shadow: 0 0 0 0.2rem rgba(222, 205, 55, 0.5);
}
.btn-danger {
@ -3200,7 +3785,8 @@ fieldset:disabled a.btn {
.btn-danger:focus,
.btn-danger.focus {
box-shadow: 0 0 0 0.2rem rgba(246, 95, 84, 0.5);
-webkit-box-shadow: 0 0 0 0.2rem rgba(246, 95, 84, 0.5);
box-shadow: 0 0 0 0.2rem rgba(246, 95, 84, 0.5);
}
.btn-danger.disabled,
@ -3221,7 +3807,8 @@ fieldset:disabled a.btn {
.btn-danger:not(:disabled):not(.disabled):active:focus,
.btn-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-danger.dropdown-toggle:focus {
box-shadow: 0 0 0 0.2rem rgba(246, 95, 84, 0.5);
-webkit-box-shadow: 0 0 0 0.2rem rgba(246, 95, 84, 0.5);
box-shadow: 0 0 0 0.2rem rgba(246, 95, 84, 0.5);
}
.btn-light {
@ -3238,7 +3825,8 @@ fieldset:disabled a.btn {
.btn-light:focus,
.btn-light.focus {
box-shadow: 0 0 0 0.2rem rgba(213, 213, 213, 0.5);
-webkit-box-shadow: 0 0 0 0.2rem rgba(213, 213, 213, 0.5);
box-shadow: 0 0 0 0.2rem rgba(213, 213, 213, 0.5);
}
.btn-light.disabled,
@ -3259,7 +3847,8 @@ fieldset:disabled a.btn {
.btn-light:not(:disabled):not(.disabled):active:focus,
.btn-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-light.dropdown-toggle:focus {
box-shadow: 0 0 0 0.2rem rgba(213, 213, 213, 0.5);
-webkit-box-shadow: 0 0 0 0.2rem rgba(213, 213, 213, 0.5);
box-shadow: 0 0 0 0.2rem rgba(213, 213, 213, 0.5);
}
.btn-dark {
@ -3276,7 +3865,8 @@ fieldset:disabled a.btn {
.btn-dark:focus,
.btn-dark.focus {
box-shadow: 0 0 0 0.2rem rgba(66, 66, 66, 0.5);
-webkit-box-shadow: 0 0 0 0.2rem rgba(66, 66, 66, 0.5);
box-shadow: 0 0 0 0.2rem rgba(66, 66, 66, 0.5);
}
.btn-dark.disabled,
@ -3297,7 +3887,8 @@ fieldset:disabled a.btn {
.btn-dark:not(:disabled):not(.disabled):active:focus,
.btn-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-dark.dropdown-toggle:focus {
box-shadow: 0 0 0 0.2rem rgba(66, 66, 66, 0.5);
-webkit-box-shadow: 0 0 0 0.2rem rgba(66, 66, 66, 0.5);
box-shadow: 0 0 0 0.2rem rgba(66, 66, 66, 0.5);
}
.btn-outline-primary {
@ -3313,7 +3904,8 @@ fieldset:disabled a.btn {
.btn-outline-primary:focus,
.btn-outline-primary.focus {
box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.5);
-webkit-box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.5);
box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.5);
}
.btn-outline-primary.disabled,
@ -3333,7 +3925,8 @@ fieldset:disabled a.btn {
.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.5);
-webkit-box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.5);
box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.5);
}
.btn-outline-secondary {
@ -3349,7 +3942,8 @@ fieldset:disabled a.btn {
.btn-outline-secondary:focus,
.btn-outline-secondary.focus {
box-shadow: 0 0 0 0.2rem rgba(117, 117, 117, 0.5);
-webkit-box-shadow: 0 0 0 0.2rem rgba(117, 117, 117, 0.5);
box-shadow: 0 0 0 0.2rem rgba(117, 117, 117, 0.5);
}
.btn-outline-secondary.disabled,
@ -3369,7 +3963,8 @@ fieldset:disabled a.btn {
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
box-shadow: 0 0 0 0.2rem rgba(117, 117, 117, 0.5);
-webkit-box-shadow: 0 0 0 0.2rem rgba(117, 117, 117, 0.5);
box-shadow: 0 0 0 0.2rem rgba(117, 117, 117, 0.5);
}
.btn-outline-success {
@ -3385,7 +3980,8 @@ fieldset:disabled a.btn {
.btn-outline-success:focus,
.btn-outline-success.focus {
box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.5);
-webkit-box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.5);
box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.5);
}
.btn-outline-success.disabled,
@ -3405,7 +4001,8 @@ fieldset:disabled a.btn {
.btn-outline-success:not(:disabled):not(.disabled):active:focus,
.btn-outline-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-success.dropdown-toggle:focus {
box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.5);
-webkit-box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.5);
box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.5);
}
.btn-outline-info {
@ -3421,7 +4018,8 @@ fieldset:disabled a.btn {
.btn-outline-info:focus,
.btn-outline-info.focus {
box-shadow: 0 0 0 0.2rem rgba(0, 188, 212, 0.5);
-webkit-box-shadow: 0 0 0 0.2rem rgba(0, 188, 212, 0.5);
box-shadow: 0 0 0 0.2rem rgba(0, 188, 212, 0.5);
}
.btn-outline-info.disabled,
@ -3441,7 +4039,8 @@ fieldset:disabled a.btn {
.btn-outline-info:not(:disabled):not(.disabled):active:focus,
.btn-outline-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-info.dropdown-toggle:focus {
box-shadow: 0 0 0 0.2rem rgba(0, 188, 212, 0.5);
-webkit-box-shadow: 0 0 0 0.2rem rgba(0, 188, 212, 0.5);
box-shadow: 0 0 0 0.2rem rgba(0, 188, 212, 0.5);
}
.btn-outline-warning {
@ -3457,7 +4056,8 @@ fieldset:disabled a.btn {
.btn-outline-warning:focus,
.btn-outline-warning.focus {
box-shadow: 0 0 0 0.2rem rgba(255, 235, 59, 0.5);
-webkit-box-shadow: 0 0 0 0.2rem rgba(255, 235, 59, 0.5);
box-shadow: 0 0 0 0.2rem rgba(255, 235, 59, 0.5);
}
.btn-outline-warning.disabled,
@ -3477,7 +4077,8 @@ fieldset:disabled a.btn {
.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-warning.dropdown-toggle:focus {
box-shadow: 0 0 0 0.2rem rgba(255, 235, 59, 0.5);
-webkit-box-shadow: 0 0 0 0.2rem rgba(255, 235, 59, 0.5);
box-shadow: 0 0 0 0.2rem rgba(255, 235, 59, 0.5);
}
.btn-outline-danger {
@ -3493,7 +4094,8 @@ fieldset:disabled a.btn {
.btn-outline-danger:focus,
.btn-outline-danger.focus {
box-shadow: 0 0 0 0.2rem rgba(244, 67, 54, 0.5);
-webkit-box-shadow: 0 0 0 0.2rem rgba(244, 67, 54, 0.5);
box-shadow: 0 0 0 0.2rem rgba(244, 67, 54, 0.5);
}
.btn-outline-danger.disabled,
@ -3513,7 +4115,8 @@ fieldset:disabled a.btn {
.btn-outline-danger:not(:disabled):not(.disabled):active:focus,
.btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-danger.dropdown-toggle:focus {
box-shadow: 0 0 0 0.2rem rgba(244, 67, 54, 0.5);
-webkit-box-shadow: 0 0 0 0.2rem rgba(244, 67, 54, 0.5);
box-shadow: 0 0 0 0.2rem rgba(244, 67, 54, 0.5);
}
.btn-outline-light {
@ -3529,7 +4132,8 @@ fieldset:disabled a.btn {
.btn-outline-light:focus,
.btn-outline-light.focus {
box-shadow: 0 0 0 0.2rem rgba(245, 245, 245, 0.5);
-webkit-box-shadow: 0 0 0 0.2rem rgba(245, 245, 245, 0.5);
box-shadow: 0 0 0 0.2rem rgba(245, 245, 245, 0.5);
}
.btn-outline-light.disabled,
@ -3549,7 +4153,8 @@ fieldset:disabled a.btn {
.btn-outline-light:not(:disabled):not(.disabled):active:focus,
.btn-outline-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-light.dropdown-toggle:focus {
box-shadow: 0 0 0 0.2rem rgba(245, 245, 245, 0.5);
-webkit-box-shadow: 0 0 0 0.2rem rgba(245, 245, 245, 0.5);
box-shadow: 0 0 0 0.2rem rgba(245, 245, 245, 0.5);
}
.btn-outline-dark {
@ -3565,7 +4170,8 @@ fieldset:disabled a.btn {
.btn-outline-dark:focus,
.btn-outline-dark.focus {
box-shadow: 0 0 0 0.2rem rgba(33, 33, 33, 0.5);
-webkit-box-shadow: 0 0 0 0.2rem rgba(33, 33, 33, 0.5);
box-shadow: 0 0 0 0.2rem rgba(33, 33, 33, 0.5);
}
.btn-outline-dark.disabled,
@ -3585,7 +4191,8 @@ fieldset:disabled a.btn {
.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-dark.dropdown-toggle:focus {
box-shadow: 0 0 0 0.2rem rgba(33, 33, 33, 0.5);
-webkit-box-shadow: 0 0 0 0.2rem rgba(33, 33, 33, 0.5);
box-shadow: 0 0 0 0.2rem rgba(33, 33, 33, 0.5);
}
.btn-link {
@ -3602,7 +4209,8 @@ fieldset:disabled a.btn {
.btn-link:focus,
.btn-link.focus {
text-decoration: underline;
box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
}
.btn-link:disabled,
@ -3643,11 +4251,13 @@ input[type="button"].btn-block {
}
.fade {
-webkit-transition: opacity 0.15s linear;
transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
.fade {
-webkit-transition: none;
transition: none;
}
}
@ -3664,11 +4274,13 @@ input[type="button"].btn-block {
position: relative;
height: 0;
overflow: hidden;
-webkit-transition: height 0.35s ease;
transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
.collapsing {
-webkit-transition: none;
transition: none;
}
}
@ -3958,6 +4570,8 @@ input[type="button"].btn-block {
.btn-group,
.btn-group-vertical {
position: relative;
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
vertical-align: middle;
}
@ -3965,7 +4579,9 @@ input[type="button"].btn-block {
.btn-group > .btn,
.btn-group-vertical > .btn {
position: relative;
flex: 1 1 auto;
-webkit-box-flex: 1;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
}
.btn-group > .btn:hover,
@ -3983,9 +4599,14 @@ input[type="button"].btn-block {
}
.btn-toolbar {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
}
.btn-toolbar .input-group {
@ -4037,9 +4658,16 @@ input[type="button"].btn-block {
}
.btn-group-vertical {
flex-direction: column;
align-items: flex-start;
justify-content: center;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.btn-group-vertical > .btn,
@ -4080,38 +4708,69 @@ input[type="button"].btn-block {
.input-group {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
flex-wrap: wrap;
align-items: stretch;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-align: stretch;
-ms-flex-align: stretch;
align-items: stretch;
width: 100%;
}
.input-group > .form-control,
.select2-container--default .input-group > .select2-selection,
.select2-dropdown .input-group > .select2-search__field,
.input-group > .form-control-plaintext,
.input-group > .custom-select,
.input-group > .custom-file {
position: relative;
flex: 1 1 auto;
-webkit-box-flex: 1;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
width: 1%;
margin-bottom: 0;
}
.input-group > .form-control + .form-control,
.select2-container--default .input-group > .select2-selection + .form-control,
.select2-dropdown .input-group > .select2-search__field + .form-control,
.select2-container--default .input-group > .form-control + .select2-selection,
.select2-container--default .input-group > .select2-selection + .select2-selection,
.select2-dropdown .select2-container--default .input-group > .select2-search__field + .select2-selection,
.select2-container--default .select2-dropdown .input-group > .select2-search__field + .select2-selection,
.select2-dropdown .input-group > .form-control + .select2-search__field,
.select2-container--default .select2-dropdown .input-group > .select2-selection + .select2-search__field,
.select2-dropdown .select2-container--default .input-group > .select2-selection + .select2-search__field,
.select2-dropdown .input-group > .select2-search__field + .select2-search__field,
.input-group > .form-control + .custom-select,
.select2-container--default .input-group > .select2-selection + .custom-select,
.select2-dropdown .input-group > .select2-search__field + .custom-select,
.input-group > .form-control + .custom-file,
.select2-container--default .input-group > .select2-selection + .custom-file,
.select2-dropdown .input-group > .select2-search__field + .custom-file,
.input-group > .form-control-plaintext + .form-control,
.select2-container--default .input-group > .form-control-plaintext + .select2-selection,
.select2-dropdown .input-group > .form-control-plaintext + .select2-search__field,
.input-group > .form-control-plaintext + .custom-select,
.input-group > .form-control-plaintext + .custom-file,
.input-group > .custom-select + .form-control,
.select2-container--default .input-group > .custom-select + .select2-selection,
.select2-dropdown .input-group > .custom-select + .select2-search__field,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .custom-file,
.input-group > .custom-file + .form-control,
.select2-container--default .input-group > .custom-file + .select2-selection,
.select2-dropdown .input-group > .custom-file + .select2-search__field,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .custom-file {
margin-left: -1px;
}
.input-group > .form-control:focus,
.select2-container--default .input-group > .select2-selection:focus,
.select2-dropdown .input-group > .select2-search__field:focus,
.input-group > .custom-select:focus,
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
z-index: 3;
@ -4122,20 +4781,28 @@ input[type="button"].btn-block {
}
.input-group > .form-control:not(:last-child),
.select2-container--default .input-group > .select2-selection:not(:last-child),
.select2-dropdown .input-group > .select2-search__field:not(:last-child),
.input-group > .custom-select:not(:last-child) {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.input-group > .form-control:not(:first-child),
.select2-container--default .input-group > .select2-selection:not(:first-child),
.select2-dropdown .input-group > .select2-search__field:not(:first-child),
.input-group > .custom-select:not(:first-child) {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
.input-group > .custom-file {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
align-items: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.input-group > .custom-file:not(:last-child) .custom-file-label,
@ -4151,6 +4818,8 @@ input[type="button"].btn-block {
.input-group-prepend,
.input-group-append {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
@ -4185,8 +4854,12 @@ input[type="button"].btn-block {
}
.input-group-text {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
align-items: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding: 0.375rem 0.75rem;
margin-bottom: 0;
font-size: 1rem;
@ -4206,11 +4879,15 @@ input[type="button"].btn-block {
}
.input-group-lg > .form-control:not(textarea),
.select2-container--default .input-group-lg > .select2-selection:not(textarea),
.select2-dropdown .input-group-lg > .select2-search__field:not(textarea),
.input-group-lg > .custom-select {
height: calc(1.5em + 1rem + 2px);
}
.input-group-lg > .form-control,
.select2-container--default .input-group-lg > .select2-selection,
.select2-dropdown .input-group-lg > .select2-search__field,
.input-group-lg > .custom-select,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
@ -4223,11 +4900,15 @@ input[type="button"].btn-block {
}
.input-group-sm > .form-control:not(textarea),
.select2-container--default .input-group-sm > .select2-selection:not(textarea),
.select2-dropdown .input-group-sm > .select2-search__field:not(textarea),
.input-group-sm > .custom-select {
height: calc(1.5em + 0.5rem + 2px);
}
.input-group-sm > .form-control,
.select2-container--default .input-group-sm > .select2-selection,
.select2-dropdown .input-group-sm > .select2-search__field,
.input-group-sm > .custom-select,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
@ -4272,6 +4953,8 @@ input[type="button"].btn-block {
}
.custom-control-inline {
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
margin-right: 1rem;
}
@ -4289,7 +4972,8 @@ input[type="button"].btn-block {
}
.custom-control-input:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.25);
-webkit-box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.25);
box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.25);
}
.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
@ -4395,13 +5079,15 @@ input[type="button"].btn-block {
height: calc(1rem - 4px);
background-color: #9e9e9e;
border-radius: 0.5rem;
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;
-webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
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;
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;
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, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.custom-switch .custom-control-label::after {
-webkit-transition: none;
transition: none;
}
}
@ -4431,13 +5117,15 @@ input[type="button"].btn-block {
border: 1px solid #bdbdbd;
border-radius: 0.25rem;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
.custom-select:focus {
border-color: #9acffa;
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.25);
-webkit-box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.25);
box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.25);
}
.custom-select:focus::-ms-value {
@ -4496,7 +5184,8 @@ input[type="button"].btn-block {
.custom-file-input:focus ~ .custom-file-label {
border-color: #9acffa;
box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.25);
-webkit-box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.25);
box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.25);
}
.custom-file-input:disabled ~ .custom-file-label {
@ -4550,6 +5239,7 @@ input[type="button"].btn-block {
padding: 0;
background-color: transparent;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
@ -4558,7 +5248,8 @@ input[type="button"].btn-block {
}
.custom-range:focus::-webkit-slider-thumb {
box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(33, 150, 243, 0.25);
-webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(33, 150, 243, 0.25);
box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(33, 150, 243, 0.25);
}
.custom-range:focus::-moz-range-thumb {
@ -4580,13 +5271,17 @@ input[type="button"].btn-block {
background-color: #2196f3;
border: 0;
border-radius: 1rem;
-webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
-webkit-appearance: none;
appearance: none;
}
@media (prefers-reduced-motion: reduce) {
.custom-range::-webkit-slider-thumb {
-webkit-transition: none;
transition: none;
}
}
@ -4611,12 +5306,17 @@ input[type="button"].btn-block {
background-color: #2196f3;
border: 0;
border-radius: 1rem;
-webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
appearance: none;
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
-moz-appearance: none;
appearance: none;
}
@media (prefers-reduced-motion: reduce) {
.custom-range::-moz-range-thumb {
-webkit-transition: none;
transition: none;
}
}
@ -4644,12 +5344,16 @@ input[type="button"].btn-block {
background-color: #2196f3;
border: 0;
border-radius: 1rem;
-webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
appearance: none;
}
@media (prefers-reduced-motion: reduce) {
.custom-range::-ms-thumb {
-webkit-transition: none;
transition: none;
}
}
@ -4702,20 +5406,27 @@ input[type="button"].btn-block {
.custom-control-label::before,
.custom-file-label,
.custom-select {
-webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.custom-control-label::before,
.custom-file-label,
.custom-select {
-webkit-transition: none;
transition: none;
}
}
.nav {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
padding-left: 0;
margin-bottom: 0;
list-style: none;
@ -4786,13 +5497,18 @@ input[type="button"].btn-block {
}
.nav-fill .nav-item {
flex: 1 1 auto;
-webkit-box-flex: 1;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
text-align: center;
}
.nav-justified .nav-item {
flex-basis: 0;
flex-grow: 1;
-ms-flex-preferred-size: 0;
flex-basis: 0;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
text-align: center;
}
@ -4806,19 +5522,33 @@ input[type="button"].btn-block {
.navbar {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
padding: 0.5rem 1rem;
}
.navbar > .container,
.navbar > .container-fluid {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.navbar-brand {
@ -4837,8 +5567,13 @@ input[type="button"].btn-block {
}
.navbar-nav {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
flex-direction: column;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
padding-left: 0;
margin-bottom: 0;
list-style: none;
@ -4861,9 +5596,14 @@ input[type="button"].btn-block {
}
.navbar-collapse {
flex-basis: 100%;
flex-grow: 1;
align-items: center;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.navbar-toggler {
@ -4900,12 +5640,20 @@ input[type="button"].btn-block {
@media (min-width: 576px) {
.navbar-expand-sm {
flex-flow: row nowrap;
justify-content: flex-start;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-flow: row nowrap;
flex-flow: row nowrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
}
.navbar-expand-sm .navbar-nav {
flex-direction: row;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
}
.navbar-expand-sm .navbar-nav .dropdown-menu {
@ -4919,12 +5667,16 @@ input[type="button"].btn-block {
.navbar-expand-sm > .container,
.navbar-expand-sm > .container-fluid {
flex-wrap: nowrap;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
}
.navbar-expand-sm .navbar-collapse {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
flex-basis: auto;
-ms-flex-preferred-size: auto;
flex-basis: auto;
}
.navbar-expand-sm .navbar-toggler {
@ -4942,12 +5694,20 @@ input[type="button"].btn-block {
@media (min-width: 768px) {
.navbar-expand-md {
flex-flow: row nowrap;
justify-content: flex-start;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-flow: row nowrap;
flex-flow: row nowrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
}
.navbar-expand-md .navbar-nav {
flex-direction: row;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
}
.navbar-expand-md .navbar-nav .dropdown-menu {
@ -4961,12 +5721,16 @@ input[type="button"].btn-block {
.navbar-expand-md > .container,
.navbar-expand-md > .container-fluid {
flex-wrap: nowrap;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
}
.navbar-expand-md .navbar-collapse {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
flex-basis: auto;
-ms-flex-preferred-size: auto;
flex-basis: auto;
}
.navbar-expand-md .navbar-toggler {
@ -4984,12 +5748,20 @@ input[type="button"].btn-block {
@media (min-width: 992px) {
.navbar-expand-lg {
flex-flow: row nowrap;
justify-content: flex-start;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-flow: row nowrap;
flex-flow: row nowrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
}
.navbar-expand-lg .navbar-nav {
flex-direction: row;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
}
.navbar-expand-lg .navbar-nav .dropdown-menu {
@ -5003,12 +5775,16 @@ input[type="button"].btn-block {
.navbar-expand-lg > .container,
.navbar-expand-lg > .container-fluid {
flex-wrap: nowrap;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
}
.navbar-expand-lg .navbar-collapse {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
flex-basis: auto;
-ms-flex-preferred-size: auto;
flex-basis: auto;
}
.navbar-expand-lg .navbar-toggler {
@ -5026,12 +5802,20 @@ input[type="button"].btn-block {
@media (min-width: 1200px) {
.navbar-expand-xl {
flex-flow: row nowrap;
justify-content: flex-start;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-flow: row nowrap;
flex-flow: row nowrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
}
.navbar-expand-xl .navbar-nav {
flex-direction: row;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
}
.navbar-expand-xl .navbar-nav .dropdown-menu {
@ -5045,12 +5829,16 @@ input[type="button"].btn-block {
.navbar-expand-xl > .container,
.navbar-expand-xl > .container-fluid {
flex-wrap: nowrap;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
}
.navbar-expand-xl .navbar-collapse {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
flex-basis: auto;
-ms-flex-preferred-size: auto;
flex-basis: auto;
}
.navbar-expand-xl .navbar-toggler {
@ -5068,12 +5856,20 @@ input[type="button"].btn-block {
@media (min-width: 1390px) {
.navbar-expand-xxl {
flex-flow: row nowrap;
justify-content: flex-start;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-flow: row nowrap;
flex-flow: row nowrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
}
.navbar-expand-xxl .navbar-nav {
flex-direction: row;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
}
.navbar-expand-xxl .navbar-nav .dropdown-menu {
@ -5087,12 +5883,16 @@ input[type="button"].btn-block {
.navbar-expand-xxl > .container,
.navbar-expand-xxl > .container-fluid {
flex-wrap: nowrap;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
}
.navbar-expand-xxl .navbar-collapse {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
flex-basis: auto;
-ms-flex-preferred-size: auto;
flex-basis: auto;
}
.navbar-expand-xxl .navbar-toggler {
@ -5110,12 +5910,20 @@ input[type="button"].btn-block {
@media (min-width: 1590px) {
.navbar-expand-xxxl {
flex-flow: row nowrap;
justify-content: flex-start;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-flow: row nowrap;
flex-flow: row nowrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
}
.navbar-expand-xxxl .navbar-nav {
flex-direction: row;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
}
.navbar-expand-xxxl .navbar-nav .dropdown-menu {
@ -5129,12 +5937,16 @@ input[type="button"].btn-block {
.navbar-expand-xxxl > .container,
.navbar-expand-xxxl > .container-fluid {
flex-wrap: nowrap;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
}
.navbar-expand-xxxl .navbar-collapse {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
flex-basis: auto;
-ms-flex-preferred-size: auto;
flex-basis: auto;
}
.navbar-expand-xxxl .navbar-toggler {
@ -5143,8 +5955,13 @@ input[type="button"].btn-block {
}
.navbar-expand {
flex-flow: row nowrap;
justify-content: flex-start;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-flow: row nowrap;
flex-flow: row nowrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
}
.navbar-expand > .container,
@ -5154,7 +5971,10 @@ input[type="button"].btn-block {
}
.navbar-expand .navbar-nav {
flex-direction: row;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
@ -5168,12 +5988,16 @@ input[type="button"].btn-block {
.navbar-expand > .container,
.navbar-expand > .container-fluid {
flex-wrap: nowrap;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
}
.navbar-expand .navbar-collapse {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
flex-basis: auto;
-ms-flex-preferred-size: auto;
flex-basis: auto;
}
.navbar-expand .navbar-toggler {
@ -5284,8 +6108,13 @@ input[type="button"].btn-block {
.card {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
flex-direction: column;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
min-width: 0;
word-wrap: break-word;
background-color: #fff;
@ -5310,7 +6139,9 @@ input[type="button"].btn-block {
}
.card-body {
flex: 1 1 auto;
-webkit-box-flex: 1;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
padding: 1.25rem;
}
@ -5399,8 +6230,13 @@ input[type="button"].btn-block {
}
.card-deck {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
flex-direction: column;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.card-deck .card {
@ -5409,15 +6245,25 @@ input[type="button"].btn-block {
@media (min-width: 576px) {
.card-deck {
flex-flow: row wrap;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-flow: row wrap;
flex-flow: row wrap;
margin-right: -1rem;
margin-left: -1rem;
}
.card-deck .card {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
flex: 1 0 0%;
flex-direction: column;
-webkit-box-flex: 1;
-ms-flex: 1 0 0%;
flex: 1 0 0%;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
margin-right: 1rem;
margin-bottom: 0;
margin-left: 1rem;
@ -5425,8 +6271,13 @@ input[type="button"].btn-block {
}
.card-group {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
flex-direction: column;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.card-group > .card {
@ -5435,11 +6286,16 @@ input[type="button"].btn-block {
@media (min-width: 576px) {
.card-group {
flex-flow: row wrap;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-flow: row wrap;
flex-flow: row wrap;
}
.card-group > .card {
flex: 1 0 0%;
-webkit-box-flex: 1;
-ms-flex: 1 0 0%;
flex: 1 0 0%;
margin-bottom: 0;
}
@ -5486,8 +6342,10 @@ input[type="button"].btn-block {
@media (min-width: 576px) {
.card-columns {
-webkit-column-count: 3;
-moz-column-count: 3;
column-count: 3;
-webkit-column-gap: 1.25rem;
-moz-column-gap: 1.25rem;
column-gap: 1.25rem;
orphans: 1;
widows: 1;
@ -5528,8 +6386,11 @@ input[type="button"].btn-block {
}
.breadcrumb {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
padding: 0.75rem 1rem;
margin-bottom: 1rem;
list-style: none;
@ -5561,6 +6422,8 @@ input[type="button"].btn-block {
}
.pagination {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
padding-left: 0;
list-style: none;
@ -5589,7 +6452,8 @@ input[type="button"].btn-block {
.page-link:focus {
z-index: 2;
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.25);
-webkit-box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.25);
box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.25);
}
.page-item:first-child .page-link {
@ -5650,7 +6514,8 @@ input[type="button"].btn-block {
border-bottom-right-radius: 0.2rem;
}
.badge {
.badge,
.select2-container--default .select2-selection.select2-selection--multiple .select2-selection__choice {
display: inline-block;
padding: 0.25em 0.4em;
font-size: 75%;
@ -5660,25 +6525,35 @@ input[type="button"].btn-block {
white-space: nowrap;
vertical-align: baseline;
border-radius: 0.25rem;
-webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
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;
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, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.badge {
.badge,
.select2-container--default .select2-selection.select2-selection--multiple .select2-selection__choice {
-webkit-transition: none;
transition: none;
}
}
a.badge:hover,
a.badge:focus {
.select2-container--default .select2-selection.select2-selection--multiple a.select2-selection__choice:hover,
a.badge:focus,
.select2-container--default .select2-selection.select2-selection--multiple a.select2-selection__choice:focus {
text-decoration: none;
}
.badge:empty {
.badge:empty,
.select2-container--default .select2-selection.select2-selection--multiple .select2-selection__choice:empty {
display: none;
}
.btn .badge {
.btn .badge,
.btn .select2-container--default .select2-selection.select2-selection--multiple .select2-selection__choice,
.select2-container--default .select2-selection.select2-selection--multiple .btn .select2-selection__choice {
position: relative;
top: -1px;
}
@ -5689,21 +6564,27 @@ a.badge:focus {
border-radius: 10rem;
}
.badge-primary {
.badge-primary,
.select2-container--default .select2-selection.select2-selection--multiple .select2-selection__choice {
color: #fff;
background-color: #2196f3;
}
a.badge-primary:hover,
a.badge-primary:focus {
.select2-container--default .select2-selection.select2-selection--multiple a.select2-selection__choice:hover,
a.badge-primary:focus,
.select2-container--default .select2-selection.select2-selection--multiple a.select2-selection__choice:focus {
color: #fff;
background-color: #0c7cd5;
}
a.badge-primary:focus,
a.badge-primary.focus {
.select2-container--default .select2-selection.select2-selection--multiple a.select2-selection__choice:focus,
a.badge-primary.focus,
.select2-container--default .select2-selection.select2-selection--multiple a.focus.select2-selection__choice {
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.5);
-webkit-box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.5);
box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.5);
}
.badge-secondary {
@ -5720,7 +6601,8 @@ a.badge-secondary:focus {
a.badge-secondary:focus,
a.badge-secondary.focus {
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(117, 117, 117, 0.5);
-webkit-box-shadow: 0 0 0 0.2rem rgba(117, 117, 117, 0.5);
box-shadow: 0 0 0 0.2rem rgba(117, 117, 117, 0.5);
}
.badge-success {
@ -5737,7 +6619,8 @@ a.badge-success:focus {
a.badge-success:focus,
a.badge-success.focus {
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.5);
-webkit-box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.5);
box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.5);
}
.badge-info {
@ -5754,7 +6637,8 @@ a.badge-info:focus {
a.badge-info:focus,
a.badge-info.focus {
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(0, 188, 212, 0.5);
-webkit-box-shadow: 0 0 0 0.2rem rgba(0, 188, 212, 0.5);
box-shadow: 0 0 0 0.2rem rgba(0, 188, 212, 0.5);
}
.badge-warning {
@ -5771,7 +6655,8 @@ a.badge-warning:focus {
a.badge-warning:focus,
a.badge-warning.focus {
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(255, 235, 59, 0.5);
-webkit-box-shadow: 0 0 0 0.2rem rgba(255, 235, 59, 0.5);
box-shadow: 0 0 0 0.2rem rgba(255, 235, 59, 0.5);
}
.badge-danger {
@ -5788,7 +6673,8 @@ a.badge-danger:focus {
a.badge-danger:focus,
a.badge-danger.focus {
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(244, 67, 54, 0.5);
-webkit-box-shadow: 0 0 0 0.2rem rgba(244, 67, 54, 0.5);
box-shadow: 0 0 0 0.2rem rgba(244, 67, 54, 0.5);
}
.badge-light {
@ -5805,7 +6691,8 @@ a.badge-light:focus {
a.badge-light:focus,
a.badge-light.focus {
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(245, 245, 245, 0.5);
-webkit-box-shadow: 0 0 0 0.2rem rgba(245, 245, 245, 0.5);
box-shadow: 0 0 0 0.2rem rgba(245, 245, 245, 0.5);
}
.badge-dark {
@ -5822,7 +6709,8 @@ a.badge-dark:focus {
a.badge-dark:focus,
a.badge-dark.focus {
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(33, 33, 33, 0.5);
-webkit-box-shadow: 0 0 0 0.2rem rgba(33, 33, 33, 0.5);
box-shadow: 0 0 0 0.2rem rgba(33, 33, 33, 0.5);
}
.jumbotron {
@ -6021,6 +6909,8 @@ a.badge-dark.focus {
}
.progress {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
height: 1rem;
overflow: hidden;
@ -6030,18 +6920,27 @@ a.badge-dark.focus {
}
.progress-bar {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
flex-direction: column;
justify-content: center;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
color: #fff;
text-align: center;
white-space: nowrap;
background-color: #2196f3;
-webkit-transition: width 0.6s ease;
transition: width 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
.progress-bar {
-webkit-transition: none;
transition: none;
}
}
@ -6064,17 +6963,28 @@ a.badge-dark.focus {
}
.media {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
align-items: flex-start;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
}
.media-body {
flex: 1;
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
}
.list-group {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
flex-direction: column;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
padding-left: 0;
margin-bottom: 0;
}
@ -6133,7 +7043,10 @@ a.badge-dark.focus {
}
.list-group-horizontal {
flex-direction: row;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
}
.list-group-horizontal .list-group-item {
@ -6156,7 +7069,10 @@ a.badge-dark.focus {
@media (min-width: 576px) {
.list-group-horizontal-sm {
flex-direction: row;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
}
.list-group-horizontal-sm .list-group-item {
@ -6180,7 +7096,10 @@ a.badge-dark.focus {
@media (min-width: 768px) {
.list-group-horizontal-md {
flex-direction: row;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
}
.list-group-horizontal-md .list-group-item {
@ -6204,7 +7123,10 @@ a.badge-dark.focus {
@media (min-width: 992px) {
.list-group-horizontal-lg {
flex-direction: row;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
}
.list-group-horizontal-lg .list-group-item {
@ -6228,7 +7150,10 @@ a.badge-dark.focus {
@media (min-width: 1200px) {
.list-group-horizontal-xl {
flex-direction: row;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
}
.list-group-horizontal-xl .list-group-item {
@ -6252,7 +7177,10 @@ a.badge-dark.focus {
@media (min-width: 1390px) {
.list-group-horizontal-xxl {
flex-direction: row;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
}
.list-group-horizontal-xxl .list-group-item {
@ -6276,7 +7204,10 @@ a.badge-dark.focus {
@media (min-width: 1590px) {
.list-group-horizontal-xxxl {
flex-direction: row;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
}
.list-group-horizontal-xxxl .list-group-item {
@ -6478,6 +7409,7 @@ button.close {
background-color: transparent;
border: 0;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
@ -6514,6 +7446,7 @@ a.close.disabled {
}
.modal.fade .modal-dialog {
-webkit-transition: -webkit-transform 0.3s ease-out;
transition: -webkit-transform 0.3s ease-out;
transition: transform 0.3s ease-out;
transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
@ -6523,6 +7456,7 @@ a.close.disabled {
@media (prefers-reduced-motion: reduce) {
.modal.fade .modal-dialog {
-webkit-transition: none;
transition: none;
}
}
@ -6533,6 +7467,8 @@ a.close.disabled {
}
.modal-dialog-scrollable {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
max-height: calc(100% - 1rem);
}
@ -6544,7 +7480,8 @@ a.close.disabled {
.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
flex-shrink: 0;
-ms-flex-negative: 0;
flex-shrink: 0;
}
.modal-dialog-scrollable .modal-body {
@ -6552,8 +7489,12 @@ a.close.disabled {
}
.modal-dialog-centered {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
align-items: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
min-height: calc(100% - 1rem);
}
@ -6564,8 +7505,13 @@ a.close.disabled {
}
.modal-dialog-centered.modal-dialog-scrollable {
flex-direction: column;
justify-content: center;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
height: 100%;
}
@ -6579,8 +7525,13 @@ a.close.disabled {
.modal-content {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
flex-direction: column;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
width: 100%;
pointer-events: auto;
background-color: #fff;
@ -6609,9 +7560,15 @@ a.close.disabled {
}
.modal-header {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
align-items: flex-start;
justify-content: space-between;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
padding: 1rem 1rem;
border-bottom: 1px solid #e0e0e0;
border-top-left-radius: 0.3rem;
@ -6630,14 +7587,22 @@ a.close.disabled {
.modal-body {
position: relative;
flex: 1 1 auto;
-webkit-box-flex: 1;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
padding: 1rem;
}
.modal-footer {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
align-items: center;
justify-content: flex-end;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end;
padding: 1rem;
border-top: 1px solid #e0e0e0;
border-bottom-right-radius: 0.3rem;
@ -7007,7 +7972,8 @@ a.close.disabled {
}
.carousel.pointer-event {
touch-action: pan-y;
-ms-touch-action: pan-y;
touch-action: pan-y;
}
.carousel-inner {
@ -7030,6 +7996,7 @@ a.close.disabled {
margin-right: -100%;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-transition: -webkit-transform 0.6s ease-in-out;
transition: -webkit-transform 0.6s ease-in-out;
transition: transform 0.6s ease-in-out;
transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
@ -7037,6 +8004,7 @@ a.close.disabled {
@media (prefers-reduced-motion: reduce) {
.carousel-item {
-webkit-transition: none;
transition: none;
}
}
@ -7061,6 +8029,7 @@ a.close.disabled {
.carousel-fade .carousel-item {
opacity: 0;
-webkit-transition-property: opacity;
transition-property: opacity;
-webkit-transform: none;
transform: none;
@ -7077,12 +8046,14 @@ a.close.disabled {
.carousel-fade .active.carousel-item-right {
z-index: 0;
opacity: 0;
-webkit-transition: 0s 0.6s opacity;
transition: 0s 0.6s opacity;
}
@media (prefers-reduced-motion: reduce) {
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
-webkit-transition: none;
transition: none;
}
}
@ -7093,19 +8064,27 @@ a.close.disabled {
top: 0;
bottom: 0;
z-index: 1;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
align-items: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
width: 15%;
color: #fff;
text-align: center;
opacity: 0.5;
-webkit-transition: opacity 0.15s ease;
transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
.carousel-control-prev,
.carousel-control-next {
-webkit-transition: none;
transition: none;
}
}
@ -7150,8 +8129,12 @@ a.close.disabled {
bottom: 0;
left: 0;
z-index: 15;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
justify-content: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
padding-left: 0;
margin-right: 15%;
margin-left: 15%;
@ -7159,8 +8142,11 @@ a.close.disabled {
}
.carousel-indicators li {
box-sizing: content-box;
flex: 0 1 auto;
-webkit-box-sizing: content-box;
box-sizing: content-box;
-webkit-box-flex: 0;
-ms-flex: 0 1 auto;
flex: 0 1 auto;
width: 30px;
height: 3px;
margin-right: 3px;
@ -7172,11 +8158,13 @@ a.close.disabled {
border-top: 10px solid transparent;
border-bottom: 10px solid transparent;
opacity: .5;
-webkit-transition: opacity 0.6s ease;
transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
.carousel-indicators li {
-webkit-transition: none;
transition: none;
}
}
@ -7482,10 +8470,14 @@ button.bg-alt:focus,
}
.d-flex {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
}
.d-inline-flex {
display: -webkit-inline-box !important;
display: -ms-inline-flexbox !important;
display: inline-flex !important;
}
@ -7519,10 +8511,14 @@ button.bg-alt:focus,
}
.d-sm-flex {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
}
.d-sm-inline-flex {
display: -webkit-inline-box !important;
display: -ms-inline-flexbox !important;
display: inline-flex !important;
}
}
@ -7557,10 +8553,14 @@ button.bg-alt:focus,
}
.d-md-flex {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
}
.d-md-inline-flex {
display: -webkit-inline-box !important;
display: -ms-inline-flexbox !important;
display: inline-flex !important;
}
}
@ -7595,10 +8595,14 @@ button.bg-alt:focus,
}
.d-lg-flex {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
}
.d-lg-inline-flex {
display: -webkit-inline-box !important;
display: -ms-inline-flexbox !important;
display: inline-flex !important;
}
}
@ -7633,10 +8637,14 @@ button.bg-alt:focus,
}
.d-xl-flex {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
}
.d-xl-inline-flex {
display: -webkit-inline-box !important;
display: -ms-inline-flexbox !important;
display: inline-flex !important;
}
}
@ -7671,10 +8679,14 @@ button.bg-alt:focus,
}
.d-xxl-flex {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
}
.d-xxl-inline-flex {
display: -webkit-inline-box !important;
display: -ms-inline-flexbox !important;
display: inline-flex !important;
}
}
@ -7709,10 +8721,14 @@ button.bg-alt:focus,
}
.d-xxxl-flex {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
}
.d-xxxl-inline-flex {
display: -webkit-inline-box !important;
display: -ms-inline-flexbox !important;
display: inline-flex !important;
}
}
@ -7747,10 +8763,14 @@ button.bg-alt:focus,
}
.d-print-flex {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
}
.d-print-inline-flex {
display: -webkit-inline-box !important;
display: -ms-inline-flexbox !important;
display: inline-flex !important;
}
}
@ -7799,966 +8819,1344 @@ button.bg-alt:focus,
}
.flex-row {
flex-direction: row !important;
-webkit-box-orient: horizontal !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: row !important;
flex-direction: row !important;
}
.flex-column {
flex-direction: column !important;
-webkit-box-orient: vertical !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: column !important;
flex-direction: column !important;
}
.flex-row-reverse {
flex-direction: row-reverse !important;
-webkit-box-orient: horizontal !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: row-reverse !important;
flex-direction: row-reverse !important;
}
.flex-column-reverse {
flex-direction: column-reverse !important;
-webkit-box-orient: vertical !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: column-reverse !important;
flex-direction: column-reverse !important;
}
.flex-wrap {
flex-wrap: wrap !important;
-ms-flex-wrap: wrap !important;
flex-wrap: wrap !important;
}
.flex-nowrap {
flex-wrap: nowrap !important;
-ms-flex-wrap: nowrap !important;
flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
flex-wrap: wrap-reverse !important;
-ms-flex-wrap: wrap-reverse !important;
flex-wrap: wrap-reverse !important;
}
.flex-fill {
flex: 1 1 auto !important;
-webkit-box-flex: 1 !important;
-ms-flex: 1 1 auto !important;
flex: 1 1 auto !important;
}
.flex-grow-0 {
flex-grow: 0 !important;
-webkit-box-flex: 0 !important;
-ms-flex-positive: 0 !important;
flex-grow: 0 !important;
}
.flex-grow-1 {
flex-grow: 1 !important;
-webkit-box-flex: 1 !important;
-ms-flex-positive: 1 !important;
flex-grow: 1 !important;
}
.flex-shrink-0 {
flex-shrink: 0 !important;
-ms-flex-negative: 0 !important;
flex-shrink: 0 !important;
}
.flex-shrink-1 {
flex-shrink: 1 !important;
-ms-flex-negative: 1 !important;
flex-shrink: 1 !important;
}
.justify-content-start {
justify-content: flex-start !important;
-webkit-box-pack: start !important;
-ms-flex-pack: start !important;
justify-content: flex-start !important;
}
.justify-content-end {
justify-content: flex-end !important;
-webkit-box-pack: end !important;
-ms-flex-pack: end !important;
justify-content: flex-end !important;
}
.justify-content-center {
justify-content: center !important;
-webkit-box-pack: center !important;
-ms-flex-pack: center !important;
justify-content: center !important;
}
.justify-content-between {
justify-content: space-between !important;
-webkit-box-pack: justify !important;
-ms-flex-pack: justify !important;
justify-content: space-between !important;
}
.justify-content-around {
justify-content: space-around !important;
-ms-flex-pack: distribute !important;
justify-content: space-around !important;
}
.align-items-start {
align-items: flex-start !important;
-webkit-box-align: start !important;
-ms-flex-align: start !important;
align-items: flex-start !important;
}
.align-items-end {
align-items: flex-end !important;
-webkit-box-align: end !important;
-ms-flex-align: end !important;
align-items: flex-end !important;
}
.align-items-center {
align-items: center !important;
-webkit-box-align: center !important;
-ms-flex-align: center !important;
align-items: center !important;
}
.align-items-baseline {
align-items: baseline !important;
-webkit-box-align: baseline !important;
-ms-flex-align: baseline !important;
align-items: baseline !important;
}
.align-items-stretch {
align-items: stretch !important;
-webkit-box-align: stretch !important;
-ms-flex-align: stretch !important;
align-items: stretch !important;
}
.align-content-start {
align-content: flex-start !important;
-ms-flex-line-pack: start !important;
align-content: flex-start !important;
}
.align-content-end {
align-content: flex-end !important;
-ms-flex-line-pack: end !important;
align-content: flex-end !important;
}
.align-content-center {
align-content: center !important;
-ms-flex-line-pack: center !important;
align-content: center !important;
}
.align-content-between {
align-content: space-between !important;
-ms-flex-line-pack: justify !important;
align-content: space-between !important;
}
.align-content-around {
align-content: space-around !important;
-ms-flex-line-pack: distribute !important;
align-content: space-around !important;
}
.align-content-stretch {
align-content: stretch !important;
-ms-flex-line-pack: stretch !important;
align-content: stretch !important;
}
.align-self-auto {
align-self: auto !important;
-ms-flex-item-align: auto !important;
align-self: auto !important;
}
.align-self-start {
align-self: flex-start !important;
-ms-flex-item-align: start !important;
align-self: flex-start !important;
}
.align-self-end {
align-self: flex-end !important;
-ms-flex-item-align: end !important;
align-self: flex-end !important;
}
.align-self-center {
align-self: center !important;
-ms-flex-item-align: center !important;
align-self: center !important;
}
.align-self-baseline {
align-self: baseline !important;
-ms-flex-item-align: baseline !important;
align-self: baseline !important;
}
.align-self-stretch {
align-self: stretch !important;
-ms-flex-item-align: stretch !important;
align-self: stretch !important;
}
@media (min-width: 576px) {
.flex-sm-row {
flex-direction: row !important;
-webkit-box-orient: horizontal !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: row !important;
flex-direction: row !important;
}
.flex-sm-column {
flex-direction: column !important;
-webkit-box-orient: vertical !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: column !important;
flex-direction: column !important;
}
.flex-sm-row-reverse {
flex-direction: row-reverse !important;
-webkit-box-orient: horizontal !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: row-reverse !important;
flex-direction: row-reverse !important;
}
.flex-sm-column-reverse {
flex-direction: column-reverse !important;
-webkit-box-orient: vertical !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: column-reverse !important;
flex-direction: column-reverse !important;
}
.flex-sm-wrap {
flex-wrap: wrap !important;
-ms-flex-wrap: wrap !important;
flex-wrap: wrap !important;
}
.flex-sm-nowrap {
flex-wrap: nowrap !important;
-ms-flex-wrap: nowrap !important;
flex-wrap: nowrap !important;
}
.flex-sm-wrap-reverse {
flex-wrap: wrap-reverse !important;
-ms-flex-wrap: wrap-reverse !important;
flex-wrap: wrap-reverse !important;
}
.flex-sm-fill {
flex: 1 1 auto !important;
-webkit-box-flex: 1 !important;
-ms-flex: 1 1 auto !important;
flex: 1 1 auto !important;
}
.flex-sm-grow-0 {
flex-grow: 0 !important;
-webkit-box-flex: 0 !important;
-ms-flex-positive: 0 !important;
flex-grow: 0 !important;
}
.flex-sm-grow-1 {
flex-grow: 1 !important;
-webkit-box-flex: 1 !important;
-ms-flex-positive: 1 !important;
flex-grow: 1 !important;
}
.flex-sm-shrink-0 {
flex-shrink: 0 !important;
-ms-flex-negative: 0 !important;
flex-shrink: 0 !important;
}
.flex-sm-shrink-1 {
flex-shrink: 1 !important;
-ms-flex-negative: 1 !important;
flex-shrink: 1 !important;
}
.justify-content-sm-start {
justify-content: flex-start !important;
-webkit-box-pack: start !important;
-ms-flex-pack: start !important;
justify-content: flex-start !important;
}
.justify-content-sm-end {
justify-content: flex-end !important;
-webkit-box-pack: end !important;
-ms-flex-pack: end !important;
justify-content: flex-end !important;
}
.justify-content-sm-center {
justify-content: center !important;
-webkit-box-pack: center !important;
-ms-flex-pack: center !important;
justify-content: center !important;
}
.justify-content-sm-between {
justify-content: space-between !important;
-webkit-box-pack: justify !important;
-ms-flex-pack: justify !important;
justify-content: space-between !important;
}
.justify-content-sm-around {
justify-content: space-around !important;
-ms-flex-pack: distribute !important;
justify-content: space-around !important;
}
.align-items-sm-start {
align-items: flex-start !important;
-webkit-box-align: start !important;
-ms-flex-align: start !important;
align-items: flex-start !important;
}
.align-items-sm-end {
align-items: flex-end !important;
-webkit-box-align: end !important;
-ms-flex-align: end !important;
align-items: flex-end !important;
}
.align-items-sm-center {
align-items: center !important;
-webkit-box-align: center !important;
-ms-flex-align: center !important;
align-items: center !important;
}
.align-items-sm-baseline {
align-items: baseline !important;
-webkit-box-align: baseline !important;
-ms-flex-align: baseline !important;
align-items: baseline !important;
}
.align-items-sm-stretch {
align-items: stretch !important;
-webkit-box-align: stretch !important;
-ms-flex-align: stretch !important;
align-items: stretch !important;
}
.align-content-sm-start {
align-content: flex-start !important;
-ms-flex-line-pack: start !important;
align-content: flex-start !important;
}
.align-content-sm-end {
align-content: flex-end !important;
-ms-flex-line-pack: end !important;
align-content: flex-end !important;
}
.align-content-sm-center {
align-content: center !important;
-ms-flex-line-pack: center !important;
align-content: center !important;
}
.align-content-sm-between {
align-content: space-between !important;
-ms-flex-line-pack: justify !important;
align-content: space-between !important;
}
.align-content-sm-around {
align-content: space-around !important;
-ms-flex-line-pack: distribute !important;
align-content: space-around !important;
}
.align-content-sm-stretch {
align-content: stretch !important;
-ms-flex-line-pack: stretch !important;
align-content: stretch !important;
}
.align-self-sm-auto {
align-self: auto !important;
-ms-flex-item-align: auto !important;
align-self: auto !important;
}
.align-self-sm-start {
align-self: flex-start !important;
-ms-flex-item-align: start !important;
align-self: flex-start !important;
}
.align-self-sm-end {
align-self: flex-end !important;
-ms-flex-item-align: end !important;
align-self: flex-end !important;
}
.align-self-sm-center {
align-self: center !important;
-ms-flex-item-align: center !important;
align-self: center !important;
}
.align-self-sm-baseline {
align-self: baseline !important;
-ms-flex-item-align: baseline !important;
align-self: baseline !important;
}
.align-self-sm-stretch {
align-self: stretch !important;
-ms-flex-item-align: stretch !important;
align-self: stretch !important;
}
}
@media (min-width: 768px) {
.flex-md-row {
flex-direction: row !important;
-webkit-box-orient: horizontal !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: row !important;
flex-direction: row !important;
}
.flex-md-column {
flex-direction: column !important;
-webkit-box-orient: vertical !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: column !important;
flex-direction: column !important;
}
.flex-md-row-reverse {
flex-direction: row-reverse !important;
-webkit-box-orient: horizontal !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: row-reverse !important;
flex-direction: row-reverse !important;
}
.flex-md-column-reverse {
flex-direction: column-reverse !important;
-webkit-box-orient: vertical !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: column-reverse !important;
flex-direction: column-reverse !important;
}
.flex-md-wrap {
flex-wrap: wrap !important;
-ms-flex-wrap: wrap !important;
flex-wrap: wrap !important;
}
.flex-md-nowrap {
flex-wrap: nowrap !important;
-ms-flex-wrap: nowrap !important;
flex-wrap: nowrap !important;
}
.flex-md-wrap-reverse {
flex-wrap: wrap-reverse !important;
-ms-flex-wrap: wrap-reverse !important;
flex-wrap: wrap-reverse !important;
}
.flex-md-fill {
flex: 1 1 auto !important;
-webkit-box-flex: 1 !important;
-ms-flex: 1 1 auto !important;
flex: 1 1 auto !important;
}
.flex-md-grow-0 {
flex-grow: 0 !important;
-webkit-box-flex: 0 !important;
-ms-flex-positive: 0 !important;
flex-grow: 0 !important;
}
.flex-md-grow-1 {
flex-grow: 1 !important;
-webkit-box-flex: 1 !important;
-ms-flex-positive: 1 !important;
flex-grow: 1 !important;
}
.flex-md-shrink-0 {
flex-shrink: 0 !important;
-ms-flex-negative: 0 !important;
flex-shrink: 0 !important;
}
.flex-md-shrink-1 {
flex-shrink: 1 !important;
-ms-flex-negative: 1 !important;
flex-shrink: 1 !important;
}
.justify-content-md-start {
justify-content: flex-start !important;
-webkit-box-pack: start !important;
-ms-flex-pack: start !important;
justify-content: flex-start !important;
}
.justify-content-md-end {
justify-content: flex-end !important;
-webkit-box-pack: end !important;
-ms-flex-pack: end !important;
justify-content: flex-end !important;
}
.justify-content-md-center {
justify-content: center !important;
-webkit-box-pack: center !important;
-ms-flex-pack: center !important;
justify-content: center !important;
}
.justify-content-md-between {
justify-content: space-between !important;
-webkit-box-pack: justify !important;
-ms-flex-pack: justify !important;
justify-content: space-between !important;
}
.justify-content-md-around {
justify-content: space-around !important;
-ms-flex-pack: distribute !important;
justify-content: space-around !important;
}
.align-items-md-start {
align-items: flex-start !important;
-webkit-box-align: start !important;
-ms-flex-align: start !important;
align-items: flex-start !important;
}
.align-items-md-end {
align-items: flex-end !important;
-webkit-box-align: end !important;
-ms-flex-align: end !important;
align-items: flex-end !important;
}
.align-items-md-center {
align-items: center !important;
-webkit-box-align: center !important;
-ms-flex-align: center !important;
align-items: center !important;
}
.align-items-md-baseline {
align-items: baseline !important;
-webkit-box-align: baseline !important;
-ms-flex-align: baseline !important;
align-items: baseline !important;
}
.align-items-md-stretch {
align-items: stretch !important;
-webkit-box-align: stretch !important;
-ms-flex-align: stretch !important;
align-items: stretch !important;
}
.align-content-md-start {
align-content: flex-start !important;
-ms-flex-line-pack: start !important;
align-content: flex-start !important;
}
.align-content-md-end {
align-content: flex-end !important;
-ms-flex-line-pack: end !important;
align-content: flex-end !important;
}
.align-content-md-center {
align-content: center !important;
-ms-flex-line-pack: center !important;
align-content: center !important;
}
.align-content-md-between {
align-content: space-between !important;
-ms-flex-line-pack: justify !important;
align-content: space-between !important;
}
.align-content-md-around {
align-content: space-around !important;
-ms-flex-line-pack: distribute !important;
align-content: space-around !important;
}
.align-content-md-stretch {
align-content: stretch !important;
-ms-flex-line-pack: stretch !important;
align-content: stretch !important;
}
.align-self-md-auto {
align-self: auto !important;
-ms-flex-item-align: auto !important;
align-self: auto !important;
}
.align-self-md-start {
align-self: flex-start !important;
-ms-flex-item-align: start !important;
align-self: flex-start !important;
}
.align-self-md-end {
align-self: flex-end !important;
-ms-flex-item-align: end !important;
align-self: flex-end !important;
}
.align-self-md-center {
align-self: center !important;
-ms-flex-item-align: center !important;
align-self: center !important;
}
.align-self-md-baseline {
align-self: baseline !important;
-ms-flex-item-align: baseline !important;
align-self: baseline !important;
}
.align-self-md-stretch {
align-self: stretch !important;
-ms-flex-item-align: stretch !important;
align-self: stretch !important;
}
}
@media (min-width: 992px) {
.flex-lg-row {
flex-direction: row !important;
-webkit-box-orient: horizontal !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: row !important;
flex-direction: row !important;
}
.flex-lg-column {
flex-direction: column !important;
-webkit-box-orient: vertical !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: column !important;
flex-direction: column !important;
}
.flex-lg-row-reverse {
flex-direction: row-reverse !important;
-webkit-box-orient: horizontal !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: row-reverse !important;
flex-direction: row-reverse !important;
}
.flex-lg-column-reverse {
flex-direction: column-reverse !important;
-webkit-box-orient: vertical !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: column-reverse !important;
flex-direction: column-reverse !important;
}
.flex-lg-wrap {
flex-wrap: wrap !important;
-ms-flex-wrap: wrap !important;
flex-wrap: wrap !important;
}
.flex-lg-nowrap {
flex-wrap: nowrap !important;
-ms-flex-wrap: nowrap !important;
flex-wrap: nowrap !important;
}
.flex-lg-wrap-reverse {
flex-wrap: wrap-reverse !important;
-ms-flex-wrap: wrap-reverse !important;
flex-wrap: wrap-reverse !important;
}
.flex-lg-fill {
flex: 1 1 auto !important;
-webkit-box-flex: 1 !important;
-ms-flex: 1 1 auto !important;
flex: 1 1 auto !important;
}
.flex-lg-grow-0 {
flex-grow: 0 !important;
-webkit-box-flex: 0 !important;
-ms-flex-positive: 0 !important;
flex-grow: 0 !important;
}
.flex-lg-grow-1 {
flex-grow: 1 !important;
-webkit-box-flex: 1 !important;
-ms-flex-positive: 1 !important;
flex-grow: 1 !important;
}
.flex-lg-shrink-0 {
flex-shrink: 0 !important;
-ms-flex-negative: 0 !important;
flex-shrink: 0 !important;
}
.flex-lg-shrink-1 {
flex-shrink: 1 !important;
-ms-flex-negative: 1 !important;
flex-shrink: 1 !important;
}
.justify-content-lg-start {
justify-content: flex-start !important;
-webkit-box-pack: start !important;
-ms-flex-pack: start !important;
justify-content: flex-start !important;
}
.justify-content-lg-end {
justify-content: flex-end !important;
-webkit-box-pack: end !important;
-ms-flex-pack: end !important;
justify-content: flex-end !important;
}
.justify-content-lg-center {
justify-content: center !important;
-webkit-box-pack: center !important;
-ms-flex-pack: center !important;
justify-content: center !important;
}
.justify-content-lg-between {
justify-content: space-between !important;
-webkit-box-pack: justify !important;
-ms-flex-pack: justify !important;
justify-content: space-between !important;
}
.justify-content-lg-around {
justify-content: space-around !important;
-ms-flex-pack: distribute !important;
justify-content: space-around !important;
}
.align-items-lg-start {
align-items: flex-start !important;
-webkit-box-align: start !important;
-ms-flex-align: start !important;
align-items: flex-start !important;
}
.align-items-lg-end {
align-items: flex-end !important;
-webkit-box-align: end !important;
-ms-flex-align: end !important;
align-items: flex-end !important;
}
.align-items-lg-center {
align-items: center !important;
-webkit-box-align: center !important;
-ms-flex-align: center !important;
align-items: center !important;
}
.align-items-lg-baseline {
align-items: baseline !important;
-webkit-box-align: baseline !important;
-ms-flex-align: baseline !important;
align-items: baseline !important;
}
.align-items-lg-stretch {
align-items: stretch !important;
-webkit-box-align: stretch !important;
-ms-flex-align: stretch !important;
align-items: stretch !important;
}
.align-content-lg-start {
align-content: flex-start !important;
-ms-flex-line-pack: start !important;
align-content: flex-start !important;
}
.align-content-lg-end {
align-content: flex-end !important;
-ms-flex-line-pack: end !important;
align-content: flex-end !important;
}
.align-content-lg-center {
align-content: center !important;
-ms-flex-line-pack: center !important;
align-content: center !important;
}
.align-content-lg-between {
align-content: space-between !important;
-ms-flex-line-pack: justify !important;
align-content: space-between !important;
}
.align-content-lg-around {
align-content: space-around !important;
-ms-flex-line-pack: distribute !important;
align-content: space-around !important;
}
.align-content-lg-stretch {
align-content: stretch !important;
-ms-flex-line-pack: stretch !important;
align-content: stretch !important;
}
.align-self-lg-auto {
align-self: auto !important;
-ms-flex-item-align: auto !important;
align-self: auto !important;
}
.align-self-lg-start {
align-self: flex-start !important;
-ms-flex-item-align: start !important;
align-self: flex-start !important;
}
.align-self-lg-end {
align-self: flex-end !important;
-ms-flex-item-align: end !important;
align-self: flex-end !important;
}
.align-self-lg-center {
align-self: center !important;
-ms-flex-item-align: center !important;
align-self: center !important;
}
.align-self-lg-baseline {
align-self: baseline !important;
-ms-flex-item-align: baseline !important;
align-self: baseline !important;
}
.align-self-lg-stretch {
align-self: stretch !important;
-ms-flex-item-align: stretch !important;
align-self: stretch !important;
}
}
@media (min-width: 1200px) {
.flex-xl-row {
flex-direction: row !important;
-webkit-box-orient: horizontal !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: row !important;
flex-direction: row !important;
}
.flex-xl-column {
flex-direction: column !important;
-webkit-box-orient: vertical !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: column !important;
flex-direction: column !important;
}
.flex-xl-row-reverse {
flex-direction: row-reverse !important;
-webkit-box-orient: horizontal !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: row-reverse !important;
flex-direction: row-reverse !important;
}
.flex-xl-column-reverse {
flex-direction: column-reverse !important;
-webkit-box-orient: vertical !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: column-reverse !important;
flex-direction: column-reverse !important;
}
.flex-xl-wrap {
flex-wrap: wrap !important;
-ms-flex-wrap: wrap !important;
flex-wrap: wrap !important;
}
.flex-xl-nowrap {
flex-wrap: nowrap !important;
-ms-flex-wrap: nowrap !important;
flex-wrap: nowrap !important;
}
.flex-xl-wrap-reverse {
flex-wrap: wrap-reverse !important;
-ms-flex-wrap: wrap-reverse !important;
flex-wrap: wrap-reverse !important;
}
.flex-xl-fill {
flex: 1 1 auto !important;
-webkit-box-flex: 1 !important;
-ms-flex: 1 1 auto !important;
flex: 1 1 auto !important;
}
.flex-xl-grow-0 {
flex-grow: 0 !important;
-webkit-box-flex: 0 !important;
-ms-flex-positive: 0 !important;
flex-grow: 0 !important;
}
.flex-xl-grow-1 {
flex-grow: 1 !important;
-webkit-box-flex: 1 !important;
-ms-flex-positive: 1 !important;
flex-grow: 1 !important;
}
.flex-xl-shrink-0 {
flex-shrink: 0 !important;
-ms-flex-negative: 0 !important;
flex-shrink: 0 !important;
}
.flex-xl-shrink-1 {
flex-shrink: 1 !important;
-ms-flex-negative: 1 !important;
flex-shrink: 1 !important;
}
.justify-content-xl-start {
justify-content: flex-start !important;
-webkit-box-pack: start !important;
-ms-flex-pack: start !important;
justify-content: flex-start !important;
}
.justify-content-xl-end {
justify-content: flex-end !important;
-webkit-box-pack: end !important;
-ms-flex-pack: end !important;
justify-content: flex-end !important;
}
.justify-content-xl-center {
justify-content: center !important;
-webkit-box-pack: center !important;
-ms-flex-pack: center !important;
justify-content: center !important;
}
.justify-content-xl-between {
justify-content: space-between !important;
-webkit-box-pack: justify !important;
-ms-flex-pack: justify !important;
justify-content: space-between !important;
}
.justify-content-xl-around {
justify-content: space-around !important;
-ms-flex-pack: distribute !important;
justify-content: space-around !important;
}
.align-items-xl-start {
align-items: flex-start !important;
-webkit-box-align: start !important;
-ms-flex-align: start !important;
align-items: flex-start !important;
}
.align-items-xl-end {
align-items: flex-end !important;
-webkit-box-align: end !important;
-ms-flex-align: end !important;
align-items: flex-end !important;
}
.align-items-xl-center {
align-items: center !important;
-webkit-box-align: center !important;
-ms-flex-align: center !important;
align-items: center !important;
}
.align-items-xl-baseline {
align-items: baseline !important;
-webkit-box-align: baseline !important;
-ms-flex-align: baseline !important;
align-items: baseline !important;
}
.align-items-xl-stretch {
align-items: stretch !important;
-webkit-box-align: stretch !important;
-ms-flex-align: stretch !important;
align-items: stretch !important;
}
.align-content-xl-start {
align-content: flex-start !important;
-ms-flex-line-pack: start !important;
align-content: flex-start !important;
}
.align-content-xl-end {
align-content: flex-end !important;
-ms-flex-line-pack: end !important;
align-content: flex-end !important;
}
.align-content-xl-center {
align-content: center !important;
-ms-flex-line-pack: center !important;
align-content: center !important;
}
.align-content-xl-between {
align-content: space-between !important;
-ms-flex-line-pack: justify !important;
align-content: space-between !important;
}
.align-content-xl-around {
align-content: space-around !important;
-ms-flex-line-pack: distribute !important;
align-content: space-around !important;
}
.align-content-xl-stretch {
align-content: stretch !important;
-ms-flex-line-pack: stretch !important;
align-content: stretch !important;
}
.align-self-xl-auto {
align-self: auto !important;
-ms-flex-item-align: auto !important;
align-self: auto !important;
}
.align-self-xl-start {
align-self: flex-start !important;
-ms-flex-item-align: start !important;
align-self: flex-start !important;
}
.align-self-xl-end {
align-self: flex-end !important;
-ms-flex-item-align: end !important;
align-self: flex-end !important;
}
.align-self-xl-center {
align-self: center !important;
-ms-flex-item-align: center !important;
align-self: center !important;
}
.align-self-xl-baseline {
align-self: baseline !important;
-ms-flex-item-align: baseline !important;
align-self: baseline !important;
}
.align-self-xl-stretch {
align-self: stretch !important;
-ms-flex-item-align: stretch !important;
align-self: stretch !important;
}
}
@media (min-width: 1390px) {
.flex-xxl-row {
flex-direction: row !important;
-webkit-box-orient: horizontal !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: row !important;
flex-direction: row !important;
}
.flex-xxl-column {
flex-direction: column !important;
-webkit-box-orient: vertical !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: column !important;
flex-direction: column !important;
}
.flex-xxl-row-reverse {
flex-direction: row-reverse !important;
-webkit-box-orient: horizontal !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: row-reverse !important;
flex-direction: row-reverse !important;
}
.flex-xxl-column-reverse {
flex-direction: column-reverse !important;
-webkit-box-orient: vertical !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: column-reverse !important;
flex-direction: column-reverse !important;
}
.flex-xxl-wrap {
flex-wrap: wrap !important;
-ms-flex-wrap: wrap !important;
flex-wrap: wrap !important;
}
.flex-xxl-nowrap {
flex-wrap: nowrap !important;
-ms-flex-wrap: nowrap !important;
flex-wrap: nowrap !important;
}
.flex-xxl-wrap-reverse {
flex-wrap: wrap-reverse !important;
-ms-flex-wrap: wrap-reverse !important;
flex-wrap: wrap-reverse !important;
}
.flex-xxl-fill {
flex: 1 1 auto !important;
-webkit-box-flex: 1 !important;
-ms-flex: 1 1 auto !important;
flex: 1 1 auto !important;
}
.flex-xxl-grow-0 {
flex-grow: 0 !important;
-webkit-box-flex: 0 !important;
-ms-flex-positive: 0 !important;
flex-grow: 0 !important;
}
.flex-xxl-grow-1 {
flex-grow: 1 !important;
-webkit-box-flex: 1 !important;
-ms-flex-positive: 1 !important;
flex-grow: 1 !important;
}
.flex-xxl-shrink-0 {
flex-shrink: 0 !important;
-ms-flex-negative: 0 !important;
flex-shrink: 0 !important;
}
.flex-xxl-shrink-1 {
flex-shrink: 1 !important;
-ms-flex-negative: 1 !important;
flex-shrink: 1 !important;
}
.justify-content-xxl-start {
justify-content: flex-start !important;
-webkit-box-pack: start !important;
-ms-flex-pack: start !important;
justify-content: flex-start !important;
}
.justify-content-xxl-end {
justify-content: flex-end !important;
-webkit-box-pack: end !important;
-ms-flex-pack: end !important;
justify-content: flex-end !important;
}
.justify-content-xxl-center {
justify-content: center !important;
-webkit-box-pack: center !important;
-ms-flex-pack: center !important;
justify-content: center !important;
}
.justify-content-xxl-between {
justify-content: space-between !important;
-webkit-box-pack: justify !important;
-ms-flex-pack: justify !important;
justify-content: space-between !important;
}
.justify-content-xxl-around {
justify-content: space-around !important;
-ms-flex-pack: distribute !important;
justify-content: space-around !important;
}
.align-items-xxl-start {
align-items: flex-start !important;
-webkit-box-align: start !important;
-ms-flex-align: start !important;
align-items: flex-start !important;
}
.align-items-xxl-end {
align-items: flex-end !important;
-webkit-box-align: end !important;
-ms-flex-align: end !important;
align-items: flex-end !important;
}
.align-items-xxl-center {
align-items: center !important;
-webkit-box-align: center !important;
-ms-flex-align: center !important;
align-items: center !important;
}
.align-items-xxl-baseline {
align-items: baseline !important;
-webkit-box-align: baseline !important;
-ms-flex-align: baseline !important;
align-items: baseline !important;
}
.align-items-xxl-stretch {
align-items: stretch !important;
-webkit-box-align: stretch !important;
-ms-flex-align: stretch !important;
align-items: stretch !important;
}
.align-content-xxl-start {
align-content: flex-start !important;
-ms-flex-line-pack: start !important;
align-content: flex-start !important;
}
.align-content-xxl-end {
align-content: flex-end !important;
-ms-flex-line-pack: end !important;
align-content: flex-end !important;
}
.align-content-xxl-center {
align-content: center !important;
-ms-flex-line-pack: center !important;
align-content: center !important;
}
.align-content-xxl-between {
align-content: space-between !important;
-ms-flex-line-pack: justify !important;
align-content: space-between !important;
}
.align-content-xxl-around {
align-content: space-around !important;
-ms-flex-line-pack: distribute !important;
align-content: space-around !important;
}
.align-content-xxl-stretch {
align-content: stretch !important;
-ms-flex-line-pack: stretch !important;
align-content: stretch !important;
}
.align-self-xxl-auto {
align-self: auto !important;
-ms-flex-item-align: auto !important;
align-self: auto !important;
}
.align-self-xxl-start {
align-self: flex-start !important;
-ms-flex-item-align: start !important;
align-self: flex-start !important;
}
.align-self-xxl-end {
align-self: flex-end !important;
-ms-flex-item-align: end !important;
align-self: flex-end !important;
}
.align-self-xxl-center {
align-self: center !important;
-ms-flex-item-align: center !important;
align-self: center !important;
}
.align-self-xxl-baseline {
align-self: baseline !important;
-ms-flex-item-align: baseline !important;
align-self: baseline !important;
}
.align-self-xxl-stretch {
align-self: stretch !important;
-ms-flex-item-align: stretch !important;
align-self: stretch !important;
}
}
@media (min-width: 1590px) {
.flex-xxxl-row {
flex-direction: row !important;
-webkit-box-orient: horizontal !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: row !important;
flex-direction: row !important;
}
.flex-xxxl-column {
flex-direction: column !important;
-webkit-box-orient: vertical !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: column !important;
flex-direction: column !important;
}
.flex-xxxl-row-reverse {
flex-direction: row-reverse !important;
-webkit-box-orient: horizontal !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: row-reverse !important;
flex-direction: row-reverse !important;
}
.flex-xxxl-column-reverse {
flex-direction: column-reverse !important;
-webkit-box-orient: vertical !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: column-reverse !important;
flex-direction: column-reverse !important;
}
.flex-xxxl-wrap {
flex-wrap: wrap !important;
-ms-flex-wrap: wrap !important;
flex-wrap: wrap !important;
}
.flex-xxxl-nowrap {
flex-wrap: nowrap !important;
-ms-flex-wrap: nowrap !important;
flex-wrap: nowrap !important;
}
.flex-xxxl-wrap-reverse {
flex-wrap: wrap-reverse !important;
-ms-flex-wrap: wrap-reverse !important;
flex-wrap: wrap-reverse !important;
}
.flex-xxxl-fill {
flex: 1 1 auto !important;
-webkit-box-flex: 1 !important;
-ms-flex: 1 1 auto !important;
flex: 1 1 auto !important;
}
.flex-xxxl-grow-0 {
flex-grow: 0 !important;
-webkit-box-flex: 0 !important;
-ms-flex-positive: 0 !important;
flex-grow: 0 !important;
}
.flex-xxxl-grow-1 {
flex-grow: 1 !important;
-webkit-box-flex: 1 !important;
-ms-flex-positive: 1 !important;
flex-grow: 1 !important;
}
.flex-xxxl-shrink-0 {
flex-shrink: 0 !important;
-ms-flex-negative: 0 !important;
flex-shrink: 0 !important;
}
.flex-xxxl-shrink-1 {
flex-shrink: 1 !important;
-ms-flex-negative: 1 !important;
flex-shrink: 1 !important;
}
.justify-content-xxxl-start {
justify-content: flex-start !important;
-webkit-box-pack: start !important;
-ms-flex-pack: start !important;
justify-content: flex-start !important;
}
.justify-content-xxxl-end {
justify-content: flex-end !important;
-webkit-box-pack: end !important;
-ms-flex-pack: end !important;
justify-content: flex-end !important;
}
.justify-content-xxxl-center {
justify-content: center !important;
-webkit-box-pack: center !important;
-ms-flex-pack: center !important;
justify-content: center !important;
}
.justify-content-xxxl-between {
justify-content: space-between !important;
-webkit-box-pack: justify !important;
-ms-flex-pack: justify !important;
justify-content: space-between !important;
}
.justify-content-xxxl-around {
justify-content: space-around !important;
-ms-flex-pack: distribute !important;
justify-content: space-around !important;
}
.align-items-xxxl-start {
align-items: flex-start !important;
-webkit-box-align: start !important;
-ms-flex-align: start !important;
align-items: flex-start !important;
}
.align-items-xxxl-end {
align-items: flex-end !important;
-webkit-box-align: end !important;
-ms-flex-align: end !important;
align-items: flex-end !important;
}
.align-items-xxxl-center {
align-items: center !important;
-webkit-box-align: center !important;
-ms-flex-align: center !important;
align-items: center !important;
}
.align-items-xxxl-baseline {
align-items: baseline !important;
-webkit-box-align: baseline !important;
-ms-flex-align: baseline !important;
align-items: baseline !important;
}
.align-items-xxxl-stretch {
align-items: stretch !important;
-webkit-box-align: stretch !important;
-ms-flex-align: stretch !important;
align-items: stretch !important;
}
.align-content-xxxl-start {
align-content: flex-start !important;
-ms-flex-line-pack: start !important;
align-content: flex-start !important;
}
.align-content-xxxl-end {
align-content: flex-end !important;
-ms-flex-line-pack: end !important;
align-content: flex-end !important;
}
.align-content-xxxl-center {
align-content: center !important;
-ms-flex-line-pack: center !important;
align-content: center !important;
}
.align-content-xxxl-between {
align-content: space-between !important;
-ms-flex-line-pack: justify !important;
align-content: space-between !important;
}
.align-content-xxxl-around {
align-content: space-around !important;
-ms-flex-line-pack: distribute !important;
align-content: space-around !important;
}
.align-content-xxxl-stretch {
align-content: stretch !important;
-ms-flex-line-pack: stretch !important;
align-content: stretch !important;
}
.align-self-xxxl-auto {
align-self: auto !important;
-ms-flex-item-align: auto !important;
align-self: auto !important;
}
.align-self-xxxl-start {
align-self: flex-start !important;
-ms-flex-item-align: start !important;
align-self: flex-start !important;
}
.align-self-xxxl-end {
align-self: flex-end !important;
-ms-flex-item-align: end !important;
align-self: flex-end !important;
}
.align-self-xxxl-center {
align-self: center !important;
-ms-flex-item-align: center !important;
align-self: center !important;
}
.align-self-xxxl-baseline {
align-self: baseline !important;
-ms-flex-item-align: baseline !important;
align-self: baseline !important;
}
.align-self-xxxl-stretch {
align-self: stretch !important;
-ms-flex-item-align: stretch !important;
align-self: stretch !important;
}
}
@ -8934,19 +10332,23 @@ button.bg-alt:focus,
}
.shadow-sm {
box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
-webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
.shadow {
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
-webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.shadow-lg {
box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
-webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}
.shadow-none {
box-shadow: none !important;
-webkit-box-shadow: none !important;
box-shadow: none !important;
}
.w-25 {
@ -12341,7 +13743,8 @@ a.text-dark:focus {
*::before,
*::after {
text-shadow: none !important;
box-shadow: none !important;
-webkit-box-shadow: none !important;
box-shadow: none !important;
}
a:not(.btn) {
@ -12399,7 +13802,8 @@ a.text-dark:focus {
display: none;
}
.badge {
.badge,
.select2-container--default .select2-selection.select2-selection--multiple .select2-selection__choice {
border: 1px solid #000;
}
@ -12453,9 +13857,15 @@ a.text-dark:focus {
}*/
.carousel-slide {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
justify-content: center;
align-items: flex-start;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
}
.carousel-slide .video {
@ -12487,7 +13897,8 @@ a.text-dark:focus {
}
.carousel-indicators li {
box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
}
.carousel-title {
@ -12509,7 +13920,8 @@ a.text-dark:focus {
overflow: hidden;
visibility: hidden;
opacity: 0;
box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.meta-lightbox-overlay.meta-lightbox-open {
@ -12625,12 +14037,14 @@ a.text-dark:focus {
.meta-lightbox-notouch .meta-lightbox-effect-slideUp,
.meta-lightbox-notouch .meta-lightbox-effect-slideDown,
.meta-lightbox-notouch .meta-lightbox-effect-fall {
-webkit-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
/* fadeScale */
.meta-lightbox-effect-fadeScale .meta-lightbox-wrap {
-webkit-transition: all 0.3s;
transition: all 0.3s;
-webkit-transform: scale(0.7);
transform: scale(0.7);
@ -12647,6 +14061,7 @@ a.text-dark:focus {
.meta-lightbox-effect-slideRight .meta-lightbox-wrap,
.meta-lightbox-effect-slideUp .meta-lightbox-wrap,
.meta-lightbox-effect-slideDown .meta-lightbox-wrap {
-webkit-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}
@ -12690,6 +14105,7 @@ a.text-dark:focus {
}
.meta-lightbox-effect-fall .meta-lightbox-wrap {
-webkit-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
-webkit-transform: translateZ(300px);
transform: translateZ(300px);
@ -12760,7 +14176,8 @@ a.text-dark:focus {
.meta-lightbox-theme-default .meta-lightbox-inline {
background: #fff;
padding: 2em;
box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.4);
-webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.4);
box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.4);
}
@media (max-width: 641px) {
@ -12846,7 +14263,8 @@ a.text-dark:focus {
.meta-lightbox-theme-default .meta-lightbox-inline {
background: #fff;
padding: 2em;
box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.4);
-webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.4);
box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.4);
}
@media (max-width: 641px) {
@ -12958,6 +14376,7 @@ textarea,
.container-fluid,
.row,
[class="col-*"] {
-webkit-transition: all 0.4s ease;
transition: all 0.4s ease;
}
@ -13017,6 +14436,11 @@ textarea,
opacity: 1;
}
.navbar-toggler[aria-expanded="true"] {
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
}
.dropdown.show .dropdown-toggle::after,
.dropdown-toggle.active-dropdown::after,
.dropdown-toggle.active::after {
@ -13245,7 +14669,8 @@ input.time[readonly] {
.bootstrap-timepicker-widget,
.datepicker-dropdown {
border: 1px solid #ced4da;
box-shadow: 0 0 3px #999;
-webkit-box-shadow: 0 0 3px #999;
box-shadow: 0 0 3px #999;
}
.bootstrap-timepicker-widget .glyphicon {
@ -13281,13 +14706,64 @@ input.time[readonly] {
}
.form-inline .field {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.form-inline .form-control {
.form-inline .form-control,
.form-inline .select2-container--default .select2-selection,
.select2-container--default .form-inline .select2-selection,
.form-inline .select2-dropdown .select2-search__field,
.select2-dropdown .form-inline .select2-search__field {
width: 100%;
}
.select2-container {
display: block;
width: 100% !important;
}
.select2-container--default.select2-container--focus .select2-selection {
color: #616161;
background-color: #fff;
border-color: #9acffa;
outline: 0;
-webkit-box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.25);
box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.25);
}
.select2-container--default .select2-selection .select2-selection__rendered {
line-height: inherit;
}
.select2-container--default .select2-selection.select2-selection--multiple {
padding-top: 0;
padding-bottom: 0;
}
.select2-container--default .select2-selection.select2-selection--multiple .select2-selection__choice {
padding: 0.375rem 0.75rem;
border: 0;
}
.select2-container--default .select2-selection.select2-selection--multiple .select2-selection__choice__remove {
color: #fff;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
background: #2196f3;
color: #fff;
}
.select2-dropdown {
border: 1px solid #bdbdbd;
}
.select2-dropdown .select2-search--dropdown {
padding: 0.375rem 0.75rem;
}
/*
* Basic styles for silverstripe-elemental
*/

File diff suppressed because one or more lines are too long

View File

@ -1,5 +1,5 @@
{
"name": "ss-bootstrap-ui-webpack-boilerplate",
"name": "@a2nt/ss-bootstrap-ui-webpack-boilerplate",
"version": "1.0.1",
"author": "Tony Air <tony@twma.pro>",
"license": "MIT",
@ -112,13 +112,18 @@
"webpack-manifest-plugin": "^1.3.2",
"webpack-merge": "^4.1.1"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"browserslist": [
"defaults"
],
"stylelint": {
"rules": {
"block-no-empty": null,
"color-no-invalid-hex": true,
"comment-empty-line-before": [
"always",
{
"always", {
"ignore": [
"stylelint-commands",
"after-comment"
@ -127,8 +132,7 @@
],
"declaration-colon-space-after": "always",
"indentation": [
4,
{
4, {
"except": [
"value"
]
@ -136,8 +140,7 @@
],
"max-empty-lines": 2,
"rule-empty-line-before": [
"always",
{
"always", {
"except": [
"first-nested"
],

View File

@ -123,19 +123,7 @@ module.exports = {
options: {
sourceMap: !COMPRESS,
plugins: [
autoprefixer({
// If we want to use the same browser list for more tools
// this list should be moved to package.json
// https://evilmartians.com/chronicles/autoprefixer-7-browserslist-2-released
browsers: [
'ie >= 11',
'ie_mob >= 11',
'Safari >= 10',
'Android >= 4.4',
'Chrome >= 44', // Retail
'Samsung >= 4'
]
})
autoprefixer()
]
}
}, {