| 1 |
@charset "UTF-8"; |
| 2 |
/*! |
| 3 |
* Bootstrap v5.1.3 (https://getbootstrap.com/) |
| 4 |
* Copyright 2011-2021 The Bootstrap Authors |
| 5 |
* Copyright 2011-2021 Twitter, Inc. |
| 6 |
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) |
| 7 |
*/ |
| 8 |
|
| 9 |
*, |
| 10 |
*::before, |
| 11 |
*::after { |
| 12 |
box-sizing: border-box; |
| 13 |
} |
| 14 |
|
| 15 |
.img-fluid { |
| 16 |
max-width: 100%; |
| 17 |
height: auto; |
| 18 |
} |
| 19 |
|
| 20 |
.row { |
| 21 |
--bs-gutter-x: 1.5rem; |
| 22 |
--bs-gutter-y: 0; |
| 23 |
display: flex; |
| 24 |
flex-wrap: wrap; |
| 25 |
margin-top: calc(-1 * var(--bs-gutter-y)); |
| 26 |
margin-right: calc(-0.5 * var(--bs-gutter-x)); |
| 27 |
margin-left: calc(-0.5 * var(--bs-gutter-x)); |
| 28 |
} |
| 29 |
.row > * { |
| 30 |
flex-shrink: 0; |
| 31 |
width: 100%; |
| 32 |
max-width: 100%; |
| 33 |
padding-right: calc(var(--bs-gutter-x) * 0.5); |
| 34 |
padding-left: calc(var(--bs-gutter-x) * 0.5); |
| 35 |
margin-top: var(--bs-gutter-y); |
| 36 |
} |
| 37 |
|
| 38 |
.col { |
| 39 |
flex: 1 0 0%; |
| 40 |
} |
| 41 |
|
| 42 |
@media (min-width: 768px) { |
| 43 |
.col-md { |
| 44 |
flex: 1 0 0%; |
| 45 |
} |
| 46 |
|
| 47 |
.col-md-auto { |
| 48 |
flex: 0 0 auto; |
| 49 |
width: auto; |
| 50 |
} |
| 51 |
|
| 52 |
.col-md-1 { |
| 53 |
flex: 0 0 auto; |
| 54 |
width: 8.33333333%; |
| 55 |
} |
| 56 |
|
| 57 |
.col-md-2 { |
| 58 |
flex: 0 0 auto; |
| 59 |
width: 16.66666667%; |
| 60 |
} |
| 61 |
|
| 62 |
.col-md-3 { |
| 63 |
flex: 0 0 auto; |
| 64 |
width: 25%; |
| 65 |
} |
| 66 |
|
| 67 |
.col-md-4 { |
| 68 |
flex: 0 0 auto; |
| 69 |
width: 33.33333333%; |
| 70 |
} |
| 71 |
|
| 72 |
.col-md-5 { |
| 73 |
flex: 0 0 auto; |
| 74 |
width: 41.66666667%; |
| 75 |
} |
| 76 |
|
| 77 |
.col-md-6 { |
| 78 |
flex: 0 0 auto; |
| 79 |
width: 50%; |
| 80 |
} |
| 81 |
|
| 82 |
.col-md-7 { |
| 83 |
flex: 0 0 auto; |
| 84 |
width: 58.33333333%; |
| 85 |
} |
| 86 |
|
| 87 |
.col-md-8 { |
| 88 |
flex: 0 0 auto; |
| 89 |
width: 66.66666667%; |
| 90 |
} |
| 91 |
|
| 92 |
.col-md-9 { |
| 93 |
flex: 0 0 auto; |
| 94 |
width: 75%; |
| 95 |
} |
| 96 |
|
| 97 |
.col-md-10 { |
| 98 |
flex: 0 0 auto; |
| 99 |
width: 83.33333333%; |
| 100 |
} |
| 101 |
|
| 102 |
.col-md-11 { |
| 103 |
flex: 0 0 auto; |
| 104 |
width: 91.66666667%; |
| 105 |
} |
| 106 |
|
| 107 |
.col-md-12 { |
| 108 |
flex: 0 0 auto; |
| 109 |
width: 100%; |
| 110 |
} |
| 111 |
} |
| 112 |
|
| 113 |
.input-group { |
| 114 |
position: relative; |
| 115 |
display: flex; |
| 116 |
flex-wrap: wrap; |
| 117 |
align-items: stretch; |
| 118 |
width: 100%; |
| 119 |
} |
| 120 |
.input-group > .form-control, |
| 121 |
.input-group > .form-select { |
| 122 |
position: relative; |
| 123 |
flex: 1 1 auto; |
| 124 |
width: 1%; |
| 125 |
min-width: 0; |
| 126 |
} |
| 127 |
.input-group > .form-control:focus, |
| 128 |
.input-group > .form-select:focus { |
| 129 |
z-index: 3; |
| 130 |
} |
| 131 |
.input-group .btn { |
| 132 |
position: relative; |
| 133 |
z-index: 2; |
| 134 |
} |
| 135 |
.input-group .btn:focus { |
| 136 |
z-index: 3; |
| 137 |
} |
| 138 |
|
| 139 |
.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) { |
| 140 |
margin-left: -1px; |
| 141 |
border-top-left-radius: 0; |
| 142 |
border-bottom-left-radius: 0; |
| 143 |
} |
| 144 |
|
| 145 |
.btn { |
| 146 |
display: inline-block; |
| 147 |
font-weight: 400; |
| 148 |
line-height: 1.5; |
| 149 |
color: #212529; |
| 150 |
text-align: center; |
| 151 |
text-decoration: none; |
| 152 |
vertical-align: middle; |
| 153 |
cursor: pointer; |
| 154 |
-webkit-user-select: none; |
| 155 |
-moz-user-select: none; |
| 156 |
user-select: none; |
| 157 |
background-color: transparent; |
| 158 |
border: 1px solid transparent; |
| 159 |
padding: 0.375rem 0.75rem; |
| 160 |
font-size: 1rem; |
| 161 |
border-radius: 0.25rem; |
| 162 |
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; |
| 163 |
} |
| 164 |
@media (prefers-reduced-motion: reduce) { |
| 165 |
.btn { |
| 166 |
transition: none; |
| 167 |
} |
| 168 |
} |
| 169 |
|
| 170 |
.btn:disabled, .btn.disabled, fieldset:disabled .btn { |
| 171 |
pointer-events: none; |
| 172 |
opacity: 0.65; |
| 173 |
} |
| 174 |
|
| 175 |
.btn-primary { |
| 176 |
color: #fff; |
| 177 |
background-color: #0d6efd; |
| 178 |
border-color: #0d6efd; |
| 179 |
} |
| 180 |
.btn-primary:hover { |
| 181 |
color: #fff; |
| 182 |
background-color: #0b5ed7; |
| 183 |
border-color: #0a58ca; |
| 184 |
} |
| 185 |
|
| 186 |
|