[5577566] | 1 | /*!
|
---|
| 2 | * Bootstrap Utilities v5.0.0-beta3 (https://getbootstrap.com/)
|
---|
| 3 | * Copyright 2011-2021 The Bootstrap Authors
|
---|
| 4 | * Copyright 2011-2021 Twitter, Inc.
|
---|
| 5 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
---|
| 6 | */
|
---|
| 7 | .clearfix::after {
|
---|
| 8 | display: block;
|
---|
| 9 | clear: both;
|
---|
| 10 | content: "";
|
---|
| 11 | }
|
---|
| 12 |
|
---|
| 13 | .link-primary {
|
---|
| 14 | color: #0d6efd;
|
---|
| 15 | }
|
---|
| 16 | .link-primary:hover, .link-primary:focus {
|
---|
| 17 | color: #0a58ca;
|
---|
| 18 | }
|
---|
| 19 |
|
---|
| 20 | .link-secondary {
|
---|
| 21 | color: #6c757d;
|
---|
| 22 | }
|
---|
| 23 | .link-secondary:hover, .link-secondary:focus {
|
---|
| 24 | color: #565e64;
|
---|
| 25 | }
|
---|
| 26 |
|
---|
| 27 | .link-success {
|
---|
| 28 | color: #198754;
|
---|
| 29 | }
|
---|
| 30 | .link-success:hover, .link-success:focus {
|
---|
| 31 | color: #146c43;
|
---|
| 32 | }
|
---|
| 33 |
|
---|
| 34 | .link-info {
|
---|
| 35 | color: #0dcaf0;
|
---|
| 36 | }
|
---|
| 37 | .link-info:hover, .link-info:focus {
|
---|
| 38 | color: #3dd5f3;
|
---|
| 39 | }
|
---|
| 40 |
|
---|
| 41 | .link-warning {
|
---|
| 42 | color: #ffc107;
|
---|
| 43 | }
|
---|
| 44 | .link-warning:hover, .link-warning:focus {
|
---|
| 45 | color: #ffcd39;
|
---|
| 46 | }
|
---|
| 47 |
|
---|
| 48 | .link-danger {
|
---|
| 49 | color: #dc3545;
|
---|
| 50 | }
|
---|
| 51 | .link-danger:hover, .link-danger:focus {
|
---|
| 52 | color: #b02a37;
|
---|
| 53 | }
|
---|
| 54 |
|
---|
| 55 | .link-light {
|
---|
| 56 | color: #f8f9fa;
|
---|
| 57 | }
|
---|
| 58 | .link-light:hover, .link-light:focus {
|
---|
| 59 | color: #f9fafb;
|
---|
| 60 | }
|
---|
| 61 |
|
---|
| 62 | .link-dark {
|
---|
| 63 | color: #212529;
|
---|
| 64 | }
|
---|
| 65 | .link-dark:hover, .link-dark:focus {
|
---|
| 66 | color: #1a1e21;
|
---|
| 67 | }
|
---|
| 68 |
|
---|
| 69 | .ratio {
|
---|
| 70 | position: relative;
|
---|
| 71 | width: 100%;
|
---|
| 72 | }
|
---|
| 73 | .ratio::before {
|
---|
| 74 | display: block;
|
---|
| 75 | padding-top: var(--bs-aspect-ratio);
|
---|
| 76 | content: "";
|
---|
| 77 | }
|
---|
| 78 | .ratio > * {
|
---|
| 79 | position: absolute;
|
---|
| 80 | top: 0;
|
---|
| 81 | left: 0;
|
---|
| 82 | width: 100%;
|
---|
| 83 | height: 100%;
|
---|
| 84 | }
|
---|
| 85 |
|
---|
| 86 | .ratio-1x1 {
|
---|
| 87 | --bs-aspect-ratio: 100%;
|
---|
| 88 | }
|
---|
| 89 |
|
---|
| 90 | .ratio-4x3 {
|
---|
| 91 | --bs-aspect-ratio: calc(3 / 4 * 100%);
|
---|
| 92 | }
|
---|
| 93 |
|
---|
| 94 | .ratio-16x9 {
|
---|
| 95 | --bs-aspect-ratio: calc(9 / 16 * 100%);
|
---|
| 96 | }
|
---|
| 97 |
|
---|
| 98 | .ratio-21x9 {
|
---|
| 99 | --bs-aspect-ratio: calc(9 / 21 * 100%);
|
---|
| 100 | }
|
---|
| 101 |
|
---|
| 102 | .fixed-top {
|
---|
| 103 | position: fixed;
|
---|
| 104 | top: 0;
|
---|
| 105 | right: 0;
|
---|
| 106 | left: 0;
|
---|
| 107 | z-index: 1030;
|
---|
| 108 | }
|
---|
| 109 |
|
---|
| 110 | .fixed-bottom {
|
---|
| 111 | position: fixed;
|
---|
| 112 | right: 0;
|
---|
| 113 | bottom: 0;
|
---|
| 114 | left: 0;
|
---|
| 115 | z-index: 1030;
|
---|
| 116 | }
|
---|
| 117 |
|
---|
| 118 | .sticky-top {
|
---|
| 119 | position: -webkit-sticky;
|
---|
| 120 | position: sticky;
|
---|
| 121 | top: 0;
|
---|
| 122 | z-index: 1020;
|
---|
| 123 | }
|
---|
| 124 |
|
---|
| 125 | @media (min-width: 576px) {
|
---|
| 126 | .sticky-sm-top {
|
---|
| 127 | position: -webkit-sticky;
|
---|
| 128 | position: sticky;
|
---|
| 129 | top: 0;
|
---|
| 130 | z-index: 1020;
|
---|
| 131 | }
|
---|
| 132 | }
|
---|
| 133 | @media (min-width: 768px) {
|
---|
| 134 | .sticky-md-top {
|
---|
| 135 | position: -webkit-sticky;
|
---|
| 136 | position: sticky;
|
---|
| 137 | top: 0;
|
---|
| 138 | z-index: 1020;
|
---|
| 139 | }
|
---|
| 140 | }
|
---|
| 141 | @media (min-width: 992px) {
|
---|
| 142 | .sticky-lg-top {
|
---|
| 143 | position: -webkit-sticky;
|
---|
| 144 | position: sticky;
|
---|
| 145 | top: 0;
|
---|
| 146 | z-index: 1020;
|
---|
| 147 | }
|
---|
| 148 | }
|
---|
| 149 | @media (min-width: 1200px) {
|
---|
| 150 | .sticky-xl-top {
|
---|
| 151 | position: -webkit-sticky;
|
---|
| 152 | position: sticky;
|
---|
| 153 | top: 0;
|
---|
| 154 | z-index: 1020;
|
---|
| 155 | }
|
---|
| 156 | }
|
---|
| 157 | @media (min-width: 1400px) {
|
---|
| 158 | .sticky-xxl-top {
|
---|
| 159 | position: -webkit-sticky;
|
---|
| 160 | position: sticky;
|
---|
| 161 | top: 0;
|
---|
| 162 | z-index: 1020;
|
---|
| 163 | }
|
---|
| 164 | }
|
---|
| 165 | .visually-hidden,
|
---|
| 166 | .visually-hidden-focusable:not(:focus):not(:focus-within) {
|
---|
| 167 | position: absolute !important;
|
---|
| 168 | width: 1px !important;
|
---|
| 169 | height: 1px !important;
|
---|
| 170 | padding: 0 !important;
|
---|
| 171 | margin: -1px !important;
|
---|
| 172 | overflow: hidden !important;
|
---|
| 173 | clip: rect(0, 0, 0, 0) !important;
|
---|
| 174 | white-space: nowrap !important;
|
---|
| 175 | border: 0 !important;
|
---|
| 176 | }
|
---|
| 177 |
|
---|
| 178 | .stretched-link::after {
|
---|
| 179 | position: absolute;
|
---|
| 180 | top: 0;
|
---|
| 181 | right: 0;
|
---|
| 182 | bottom: 0;
|
---|
| 183 | left: 0;
|
---|
| 184 | z-index: 1;
|
---|
| 185 | content: "";
|
---|
| 186 | }
|
---|
| 187 |
|
---|
| 188 | .text-truncate {
|
---|
| 189 | overflow: hidden;
|
---|
| 190 | text-overflow: ellipsis;
|
---|
| 191 | white-space: nowrap;
|
---|
| 192 | }
|
---|
| 193 |
|
---|
| 194 | .align-baseline {
|
---|
| 195 | vertical-align: baseline !important;
|
---|
| 196 | }
|
---|
| 197 |
|
---|
| 198 | .align-top {
|
---|
| 199 | vertical-align: top !important;
|
---|
| 200 | }
|
---|
| 201 |
|
---|
| 202 | .align-middle {
|
---|
| 203 | vertical-align: middle !important;
|
---|
| 204 | }
|
---|
| 205 |
|
---|
| 206 | .align-bottom {
|
---|
| 207 | vertical-align: bottom !important;
|
---|
| 208 | }
|
---|
| 209 |
|
---|
| 210 | .align-text-bottom {
|
---|
| 211 | vertical-align: text-bottom !important;
|
---|
| 212 | }
|
---|
| 213 |
|
---|
| 214 | .align-text-top {
|
---|
| 215 | vertical-align: text-top !important;
|
---|
| 216 | }
|
---|
| 217 |
|
---|
| 218 | .float-start {
|
---|
| 219 | float: left !important;
|
---|
| 220 | }
|
---|
| 221 |
|
---|
| 222 | .float-end {
|
---|
| 223 | float: right !important;
|
---|
| 224 | }
|
---|
| 225 |
|
---|
| 226 | .float-none {
|
---|
| 227 | float: none !important;
|
---|
| 228 | }
|
---|
| 229 |
|
---|
| 230 | .overflow-auto {
|
---|
| 231 | overflow: auto !important;
|
---|
| 232 | }
|
---|
| 233 |
|
---|
| 234 | .overflow-hidden {
|
---|
| 235 | overflow: hidden !important;
|
---|
| 236 | }
|
---|
| 237 |
|
---|
| 238 | .overflow-visible {
|
---|
| 239 | overflow: visible !important;
|
---|
| 240 | }
|
---|
| 241 |
|
---|
| 242 | .overflow-scroll {
|
---|
| 243 | overflow: scroll !important;
|
---|
| 244 | }
|
---|
| 245 |
|
---|
| 246 | .d-inline {
|
---|
| 247 | display: inline !important;
|
---|
| 248 | }
|
---|
| 249 |
|
---|
| 250 | .d-inline-block {
|
---|
| 251 | display: inline-block !important;
|
---|
| 252 | }
|
---|
| 253 |
|
---|
| 254 | .d-block {
|
---|
| 255 | display: block !important;
|
---|
| 256 | }
|
---|
| 257 |
|
---|
| 258 | .d-grid {
|
---|
| 259 | display: grid !important;
|
---|
| 260 | }
|
---|
| 261 |
|
---|
| 262 | .d-table {
|
---|
| 263 | display: table !important;
|
---|
| 264 | }
|
---|
| 265 |
|
---|
| 266 | .d-table-row {
|
---|
| 267 | display: table-row !important;
|
---|
| 268 | }
|
---|
| 269 |
|
---|
| 270 | .d-table-cell {
|
---|
| 271 | display: table-cell !important;
|
---|
| 272 | }
|
---|
| 273 |
|
---|
| 274 | .d-flex {
|
---|
| 275 | display: flex !important;
|
---|
| 276 | }
|
---|
| 277 |
|
---|
| 278 | .d-inline-flex {
|
---|
| 279 | display: inline-flex !important;
|
---|
| 280 | }
|
---|
| 281 |
|
---|
| 282 | .d-none {
|
---|
| 283 | display: none !important;
|
---|
| 284 | }
|
---|
| 285 |
|
---|
| 286 | .shadow {
|
---|
| 287 | box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
|
---|
| 288 | }
|
---|
| 289 |
|
---|
| 290 | .shadow-sm {
|
---|
| 291 | box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
|
---|
| 292 | }
|
---|
| 293 |
|
---|
| 294 | .shadow-lg {
|
---|
| 295 | box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
|
---|
| 296 | }
|
---|
| 297 |
|
---|
| 298 | .shadow-none {
|
---|
| 299 | box-shadow: none !important;
|
---|
| 300 | }
|
---|
| 301 |
|
---|
| 302 | .position-static {
|
---|
| 303 | position: static !important;
|
---|
| 304 | }
|
---|
| 305 |
|
---|
| 306 | .position-relative {
|
---|
| 307 | position: relative !important;
|
---|
| 308 | }
|
---|
| 309 |
|
---|
| 310 | .position-absolute {
|
---|
| 311 | position: absolute !important;
|
---|
| 312 | }
|
---|
| 313 |
|
---|
| 314 | .position-fixed {
|
---|
| 315 | position: fixed !important;
|
---|
| 316 | }
|
---|
| 317 |
|
---|
| 318 | .position-sticky {
|
---|
| 319 | position: -webkit-sticky !important;
|
---|
| 320 | position: sticky !important;
|
---|
| 321 | }
|
---|
| 322 |
|
---|
| 323 | .top-0 {
|
---|
| 324 | top: 0 !important;
|
---|
| 325 | }
|
---|
| 326 |
|
---|
| 327 | .top-50 {
|
---|
| 328 | top: 50% !important;
|
---|
| 329 | }
|
---|
| 330 |
|
---|
| 331 | .top-100 {
|
---|
| 332 | top: 100% !important;
|
---|
| 333 | }
|
---|
| 334 |
|
---|
| 335 | .bottom-0 {
|
---|
| 336 | bottom: 0 !important;
|
---|
| 337 | }
|
---|
| 338 |
|
---|
| 339 | .bottom-50 {
|
---|
| 340 | bottom: 50% !important;
|
---|
| 341 | }
|
---|
| 342 |
|
---|
| 343 | .bottom-100 {
|
---|
| 344 | bottom: 100% !important;
|
---|
| 345 | }
|
---|
| 346 |
|
---|
| 347 | .start-0 {
|
---|
| 348 | left: 0 !important;
|
---|
| 349 | }
|
---|
| 350 |
|
---|
| 351 | .start-50 {
|
---|
| 352 | left: 50% !important;
|
---|
| 353 | }
|
---|
| 354 |
|
---|
| 355 | .start-100 {
|
---|
| 356 | left: 100% !important;
|
---|
| 357 | }
|
---|
| 358 |
|
---|
| 359 | .end-0 {
|
---|
| 360 | right: 0 !important;
|
---|
| 361 | }
|
---|
| 362 |
|
---|
| 363 | .end-50 {
|
---|
| 364 | right: 50% !important;
|
---|
| 365 | }
|
---|
| 366 |
|
---|
| 367 | .end-100 {
|
---|
| 368 | right: 100% !important;
|
---|
| 369 | }
|
---|
| 370 |
|
---|
| 371 | .translate-middle {
|
---|
| 372 | transform: translate(-50%, -50%) !important;
|
---|
| 373 | }
|
---|
| 374 |
|
---|
| 375 | .translate-middle-x {
|
---|
| 376 | transform: translateX(-50%) !important;
|
---|
| 377 | }
|
---|
| 378 |
|
---|
| 379 | .translate-middle-y {
|
---|
| 380 | transform: translateY(-50%) !important;
|
---|
| 381 | }
|
---|
| 382 |
|
---|
| 383 | .border {
|
---|
| 384 | border: 1px solid #dee2e6 !important;
|
---|
| 385 | }
|
---|
| 386 |
|
---|
| 387 | .border-0 {
|
---|
| 388 | border: 0 !important;
|
---|
| 389 | }
|
---|
| 390 |
|
---|
| 391 | .border-top {
|
---|
| 392 | border-top: 1px solid #dee2e6 !important;
|
---|
| 393 | }
|
---|
| 394 |
|
---|
| 395 | .border-top-0 {
|
---|
| 396 | border-top: 0 !important;
|
---|
| 397 | }
|
---|
| 398 |
|
---|
| 399 | .border-end {
|
---|
| 400 | border-right: 1px solid #dee2e6 !important;
|
---|
| 401 | }
|
---|
| 402 |
|
---|
| 403 | .border-end-0 {
|
---|
| 404 | border-right: 0 !important;
|
---|
| 405 | }
|
---|
| 406 |
|
---|
| 407 | .border-bottom {
|
---|
| 408 | border-bottom: 1px solid #dee2e6 !important;
|
---|
| 409 | }
|
---|
| 410 |
|
---|
| 411 | .border-bottom-0 {
|
---|
| 412 | border-bottom: 0 !important;
|
---|
| 413 | }
|
---|
| 414 |
|
---|
| 415 | .border-start {
|
---|
| 416 | border-left: 1px solid #dee2e6 !important;
|
---|
| 417 | }
|
---|
| 418 |
|
---|
| 419 | .border-start-0 {
|
---|
| 420 | border-left: 0 !important;
|
---|
| 421 | }
|
---|
| 422 |
|
---|
| 423 | .border-primary {
|
---|
| 424 | border-color: #0d6efd !important;
|
---|
| 425 | }
|
---|
| 426 |
|
---|
| 427 | .border-secondary {
|
---|
| 428 | border-color: #6c757d !important;
|
---|
| 429 | }
|
---|
| 430 |
|
---|
| 431 | .border-success {
|
---|
| 432 | border-color: #198754 !important;
|
---|
| 433 | }
|
---|
| 434 |
|
---|
| 435 | .border-info {
|
---|
| 436 | border-color: #0dcaf0 !important;
|
---|
| 437 | }
|
---|
| 438 |
|
---|
| 439 | .border-warning {
|
---|
| 440 | border-color: #ffc107 !important;
|
---|
| 441 | }
|
---|
| 442 |
|
---|
| 443 | .border-danger {
|
---|
| 444 | border-color: #dc3545 !important;
|
---|
| 445 | }
|
---|
| 446 |
|
---|
| 447 | .border-light {
|
---|
| 448 | border-color: #f8f9fa !important;
|
---|
| 449 | }
|
---|
| 450 |
|
---|
| 451 | .border-dark {
|
---|
| 452 | border-color: #212529 !important;
|
---|
| 453 | }
|
---|
| 454 |
|
---|
| 455 | .border-white {
|
---|
| 456 | border-color: #fff !important;
|
---|
| 457 | }
|
---|
| 458 |
|
---|
| 459 | .border-1 {
|
---|
| 460 | border-width: 1px !important;
|
---|
| 461 | }
|
---|
| 462 |
|
---|
| 463 | .border-2 {
|
---|
| 464 | border-width: 2px !important;
|
---|
| 465 | }
|
---|
| 466 |
|
---|
| 467 | .border-3 {
|
---|
| 468 | border-width: 3px !important;
|
---|
| 469 | }
|
---|
| 470 |
|
---|
| 471 | .border-4 {
|
---|
| 472 | border-width: 4px !important;
|
---|
| 473 | }
|
---|
| 474 |
|
---|
| 475 | .border-5 {
|
---|
| 476 | border-width: 5px !important;
|
---|
| 477 | }
|
---|
| 478 |
|
---|
| 479 | .w-25 {
|
---|
| 480 | width: 25% !important;
|
---|
| 481 | }
|
---|
| 482 |
|
---|
| 483 | .w-50 {
|
---|
| 484 | width: 50% !important;
|
---|
| 485 | }
|
---|
| 486 |
|
---|
| 487 | .w-75 {
|
---|
| 488 | width: 75% !important;
|
---|
| 489 | }
|
---|
| 490 |
|
---|
| 491 | .w-100 {
|
---|
| 492 | width: 100% !important;
|
---|
| 493 | }
|
---|
| 494 |
|
---|
| 495 | .w-auto {
|
---|
| 496 | width: auto !important;
|
---|
| 497 | }
|
---|
| 498 |
|
---|
| 499 | .mw-100 {
|
---|
| 500 | max-width: 100% !important;
|
---|
| 501 | }
|
---|
| 502 |
|
---|
| 503 | .vw-100 {
|
---|
| 504 | width: 100vw !important;
|
---|
| 505 | }
|
---|
| 506 |
|
---|
| 507 | .min-vw-100 {
|
---|
| 508 | min-width: 100vw !important;
|
---|
| 509 | }
|
---|
| 510 |
|
---|
| 511 | .h-25 {
|
---|
| 512 | height: 25% !important;
|
---|
| 513 | }
|
---|
| 514 |
|
---|
| 515 | .h-50 {
|
---|
| 516 | height: 50% !important;
|
---|
| 517 | }
|
---|
| 518 |
|
---|
| 519 | .h-75 {
|
---|
| 520 | height: 75% !important;
|
---|
| 521 | }
|
---|
| 522 |
|
---|
| 523 | .h-100 {
|
---|
| 524 | height: 100% !important;
|
---|
| 525 | }
|
---|
| 526 |
|
---|
| 527 | .h-auto {
|
---|
| 528 | height: auto !important;
|
---|
| 529 | }
|
---|
| 530 |
|
---|
| 531 | .mh-100 {
|
---|
| 532 | max-height: 100% !important;
|
---|
| 533 | }
|
---|
| 534 |
|
---|
| 535 | .vh-100 {
|
---|
| 536 | height: 100vh !important;
|
---|
| 537 | }
|
---|
| 538 |
|
---|
| 539 | .min-vh-100 {
|
---|
| 540 | min-height: 100vh !important;
|
---|
| 541 | }
|
---|
| 542 |
|
---|
| 543 | .flex-fill {
|
---|
| 544 | flex: 1 1 auto !important;
|
---|
| 545 | }
|
---|
| 546 |
|
---|
| 547 | .flex-row {
|
---|
| 548 | flex-direction: row !important;
|
---|
| 549 | }
|
---|
| 550 |
|
---|
| 551 | .flex-column {
|
---|
| 552 | flex-direction: column !important;
|
---|
| 553 | }
|
---|
| 554 |
|
---|
| 555 | .flex-row-reverse {
|
---|
| 556 | flex-direction: row-reverse !important;
|
---|
| 557 | }
|
---|
| 558 |
|
---|
| 559 | .flex-column-reverse {
|
---|
| 560 | flex-direction: column-reverse !important;
|
---|
| 561 | }
|
---|
| 562 |
|
---|
| 563 | .flex-grow-0 {
|
---|
| 564 | flex-grow: 0 !important;
|
---|
| 565 | }
|
---|
| 566 |
|
---|
| 567 | .flex-grow-1 {
|
---|
| 568 | flex-grow: 1 !important;
|
---|
| 569 | }
|
---|
| 570 |
|
---|
| 571 | .flex-shrink-0 {
|
---|
| 572 | flex-shrink: 0 !important;
|
---|
| 573 | }
|
---|
| 574 |
|
---|
| 575 | .flex-shrink-1 {
|
---|
| 576 | flex-shrink: 1 !important;
|
---|
| 577 | }
|
---|
| 578 |
|
---|
| 579 | .flex-wrap {
|
---|
| 580 | flex-wrap: wrap !important;
|
---|
| 581 | }
|
---|
| 582 |
|
---|
| 583 | .flex-nowrap {
|
---|
| 584 | flex-wrap: nowrap !important;
|
---|
| 585 | }
|
---|
| 586 |
|
---|
| 587 | .flex-wrap-reverse {
|
---|
| 588 | flex-wrap: wrap-reverse !important;
|
---|
| 589 | }
|
---|
| 590 |
|
---|
| 591 | .gap-0 {
|
---|
| 592 | gap: 0 !important;
|
---|
| 593 | }
|
---|
| 594 |
|
---|
| 595 | .gap-1 {
|
---|
| 596 | gap: 0.25rem !important;
|
---|
| 597 | }
|
---|
| 598 |
|
---|
| 599 | .gap-2 {
|
---|
| 600 | gap: 0.5rem !important;
|
---|
| 601 | }
|
---|
| 602 |
|
---|
| 603 | .gap-3 {
|
---|
| 604 | gap: 1rem !important;
|
---|
| 605 | }
|
---|
| 606 |
|
---|
| 607 | .gap-4 {
|
---|
| 608 | gap: 1.5rem !important;
|
---|
| 609 | }
|
---|
| 610 |
|
---|
| 611 | .gap-5 {
|
---|
| 612 | gap: 3rem !important;
|
---|
| 613 | }
|
---|
| 614 |
|
---|
| 615 | .justify-content-start {
|
---|
| 616 | justify-content: flex-start !important;
|
---|
| 617 | }
|
---|
| 618 |
|
---|
| 619 | .justify-content-end {
|
---|
| 620 | justify-content: flex-end !important;
|
---|
| 621 | }
|
---|
| 622 |
|
---|
| 623 | .justify-content-center {
|
---|
| 624 | justify-content: center !important;
|
---|
| 625 | }
|
---|
| 626 |
|
---|
| 627 | .justify-content-between {
|
---|
| 628 | justify-content: space-between !important;
|
---|
| 629 | }
|
---|
| 630 |
|
---|
| 631 | .justify-content-around {
|
---|
| 632 | justify-content: space-around !important;
|
---|
| 633 | }
|
---|
| 634 |
|
---|
| 635 | .justify-content-evenly {
|
---|
| 636 | justify-content: space-evenly !important;
|
---|
| 637 | }
|
---|
| 638 |
|
---|
| 639 | .align-items-start {
|
---|
| 640 | align-items: flex-start !important;
|
---|
| 641 | }
|
---|
| 642 |
|
---|
| 643 | .align-items-end {
|
---|
| 644 | align-items: flex-end !important;
|
---|
| 645 | }
|
---|
| 646 |
|
---|
| 647 | .align-items-center {
|
---|
| 648 | align-items: center !important;
|
---|
| 649 | }
|
---|
| 650 |
|
---|
| 651 | .align-items-baseline {
|
---|
| 652 | align-items: baseline !important;
|
---|
| 653 | }
|
---|
| 654 |
|
---|
| 655 | .align-items-stretch {
|
---|
| 656 | align-items: stretch !important;
|
---|
| 657 | }
|
---|
| 658 |
|
---|
| 659 | .align-content-start {
|
---|
| 660 | align-content: flex-start !important;
|
---|
| 661 | }
|
---|
| 662 |
|
---|
| 663 | .align-content-end {
|
---|
| 664 | align-content: flex-end !important;
|
---|
| 665 | }
|
---|
| 666 |
|
---|
| 667 | .align-content-center {
|
---|
| 668 | align-content: center !important;
|
---|
| 669 | }
|
---|
| 670 |
|
---|
| 671 | .align-content-between {
|
---|
| 672 | align-content: space-between !important;
|
---|
| 673 | }
|
---|
| 674 |
|
---|
| 675 | .align-content-around {
|
---|
| 676 | align-content: space-around !important;
|
---|
| 677 | }
|
---|
| 678 |
|
---|
| 679 | .align-content-stretch {
|
---|
| 680 | align-content: stretch !important;
|
---|
| 681 | }
|
---|
| 682 |
|
---|
| 683 | .align-self-auto {
|
---|
| 684 | align-self: auto !important;
|
---|
| 685 | }
|
---|
| 686 |
|
---|
| 687 | .align-self-start {
|
---|
| 688 | align-self: flex-start !important;
|
---|
| 689 | }
|
---|
| 690 |
|
---|
| 691 | .align-self-end {
|
---|
| 692 | align-self: flex-end !important;
|
---|
| 693 | }
|
---|
| 694 |
|
---|
| 695 | .align-self-center {
|
---|
| 696 | align-self: center !important;
|
---|
| 697 | }
|
---|
| 698 |
|
---|
| 699 | .align-self-baseline {
|
---|
| 700 | align-self: baseline !important;
|
---|
| 701 | }
|
---|
| 702 |
|
---|
| 703 | .align-self-stretch {
|
---|
| 704 | align-self: stretch !important;
|
---|
| 705 | }
|
---|
| 706 |
|
---|
| 707 | .order-first {
|
---|
| 708 | order: -1 !important;
|
---|
| 709 | }
|
---|
| 710 |
|
---|
| 711 | .order-0 {
|
---|
| 712 | order: 0 !important;
|
---|
| 713 | }
|
---|
| 714 |
|
---|
| 715 | .order-1 {
|
---|
| 716 | order: 1 !important;
|
---|
| 717 | }
|
---|
| 718 |
|
---|
| 719 | .order-2 {
|
---|
| 720 | order: 2 !important;
|
---|
| 721 | }
|
---|
| 722 |
|
---|
| 723 | .order-3 {
|
---|
| 724 | order: 3 !important;
|
---|
| 725 | }
|
---|
| 726 |
|
---|
| 727 | .order-4 {
|
---|
| 728 | order: 4 !important;
|
---|
| 729 | }
|
---|
| 730 |
|
---|
| 731 | .order-5 {
|
---|
| 732 | order: 5 !important;
|
---|
| 733 | }
|
---|
| 734 |
|
---|
| 735 | .order-last {
|
---|
| 736 | order: 6 !important;
|
---|
| 737 | }
|
---|
| 738 |
|
---|
| 739 | .m-0 {
|
---|
| 740 | margin: 0 !important;
|
---|
| 741 | }
|
---|
| 742 |
|
---|
| 743 | .m-1 {
|
---|
| 744 | margin: 0.25rem !important;
|
---|
| 745 | }
|
---|
| 746 |
|
---|
| 747 | .m-2 {
|
---|
| 748 | margin: 0.5rem !important;
|
---|
| 749 | }
|
---|
| 750 |
|
---|
| 751 | .m-3 {
|
---|
| 752 | margin: 1rem !important;
|
---|
| 753 | }
|
---|
| 754 |
|
---|
| 755 | .m-4 {
|
---|
| 756 | margin: 1.5rem !important;
|
---|
| 757 | }
|
---|
| 758 |
|
---|
| 759 | .m-5 {
|
---|
| 760 | margin: 3rem !important;
|
---|
| 761 | }
|
---|
| 762 |
|
---|
| 763 | .m-auto {
|
---|
| 764 | margin: auto !important;
|
---|
| 765 | }
|
---|
| 766 |
|
---|
| 767 | .mx-0 {
|
---|
| 768 | margin-right: 0 !important;
|
---|
| 769 | margin-left: 0 !important;
|
---|
| 770 | }
|
---|
| 771 |
|
---|
| 772 | .mx-1 {
|
---|
| 773 | margin-right: 0.25rem !important;
|
---|
| 774 | margin-left: 0.25rem !important;
|
---|
| 775 | }
|
---|
| 776 |
|
---|
| 777 | .mx-2 {
|
---|
| 778 | margin-right: 0.5rem !important;
|
---|
| 779 | margin-left: 0.5rem !important;
|
---|
| 780 | }
|
---|
| 781 |
|
---|
| 782 | .mx-3 {
|
---|
| 783 | margin-right: 1rem !important;
|
---|
| 784 | margin-left: 1rem !important;
|
---|
| 785 | }
|
---|
| 786 |
|
---|
| 787 | .mx-4 {
|
---|
| 788 | margin-right: 1.5rem !important;
|
---|
| 789 | margin-left: 1.5rem !important;
|
---|
| 790 | }
|
---|
| 791 |
|
---|
| 792 | .mx-5 {
|
---|
| 793 | margin-right: 3rem !important;
|
---|
| 794 | margin-left: 3rem !important;
|
---|
| 795 | }
|
---|
| 796 |
|
---|
| 797 | .mx-auto {
|
---|
| 798 | margin-right: auto !important;
|
---|
| 799 | margin-left: auto !important;
|
---|
| 800 | }
|
---|
| 801 |
|
---|
| 802 | .my-0 {
|
---|
| 803 | margin-top: 0 !important;
|
---|
| 804 | margin-bottom: 0 !important;
|
---|
| 805 | }
|
---|
| 806 |
|
---|
| 807 | .my-1 {
|
---|
| 808 | margin-top: 0.25rem !important;
|
---|
| 809 | margin-bottom: 0.25rem !important;
|
---|
| 810 | }
|
---|
| 811 |
|
---|
| 812 | .my-2 {
|
---|
| 813 | margin-top: 0.5rem !important;
|
---|
| 814 | margin-bottom: 0.5rem !important;
|
---|
| 815 | }
|
---|
| 816 |
|
---|
| 817 | .my-3 {
|
---|
| 818 | margin-top: 1rem !important;
|
---|
| 819 | margin-bottom: 1rem !important;
|
---|
| 820 | }
|
---|
| 821 |
|
---|
| 822 | .my-4 {
|
---|
| 823 | margin-top: 1.5rem !important;
|
---|
| 824 | margin-bottom: 1.5rem !important;
|
---|
| 825 | }
|
---|
| 826 |
|
---|
| 827 | .my-5 {
|
---|
| 828 | margin-top: 3rem !important;
|
---|
| 829 | margin-bottom: 3rem !important;
|
---|
| 830 | }
|
---|
| 831 |
|
---|
| 832 | .my-auto {
|
---|
| 833 | margin-top: auto !important;
|
---|
| 834 | margin-bottom: auto !important;
|
---|
| 835 | }
|
---|
| 836 |
|
---|
| 837 | .mt-0 {
|
---|
| 838 | margin-top: 0 !important;
|
---|
| 839 | }
|
---|
| 840 |
|
---|
| 841 | .mt-1 {
|
---|
| 842 | margin-top: 0.25rem !important;
|
---|
| 843 | }
|
---|
| 844 |
|
---|
| 845 | .mt-2 {
|
---|
| 846 | margin-top: 0.5rem !important;
|
---|
| 847 | }
|
---|
| 848 |
|
---|
| 849 | .mt-3 {
|
---|
| 850 | margin-top: 1rem !important;
|
---|
| 851 | }
|
---|
| 852 |
|
---|
| 853 | .mt-4 {
|
---|
| 854 | margin-top: 1.5rem !important;
|
---|
| 855 | }
|
---|
| 856 |
|
---|
| 857 | .mt-5 {
|
---|
| 858 | margin-top: 3rem !important;
|
---|
| 859 | }
|
---|
| 860 |
|
---|
| 861 | .mt-auto {
|
---|
| 862 | margin-top: auto !important;
|
---|
| 863 | }
|
---|
| 864 |
|
---|
| 865 | .me-0 {
|
---|
| 866 | margin-right: 0 !important;
|
---|
| 867 | }
|
---|
| 868 |
|
---|
| 869 | .me-1 {
|
---|
| 870 | margin-right: 0.25rem !important;
|
---|
| 871 | }
|
---|
| 872 |
|
---|
| 873 | .me-2 {
|
---|
| 874 | margin-right: 0.5rem !important;
|
---|
| 875 | }
|
---|
| 876 |
|
---|
| 877 | .me-3 {
|
---|
| 878 | margin-right: 1rem !important;
|
---|
| 879 | }
|
---|
| 880 |
|
---|
| 881 | .me-4 {
|
---|
| 882 | margin-right: 1.5rem !important;
|
---|
| 883 | }
|
---|
| 884 |
|
---|
| 885 | .me-5 {
|
---|
| 886 | margin-right: 3rem !important;
|
---|
| 887 | }
|
---|
| 888 |
|
---|
| 889 | .me-auto {
|
---|
| 890 | margin-right: auto !important;
|
---|
| 891 | }
|
---|
| 892 |
|
---|
| 893 | .mb-0 {
|
---|
| 894 | margin-bottom: 0 !important;
|
---|
| 895 | }
|
---|
| 896 |
|
---|
| 897 | .mb-1 {
|
---|
| 898 | margin-bottom: 0.25rem !important;
|
---|
| 899 | }
|
---|
| 900 |
|
---|
| 901 | .mb-2 {
|
---|
| 902 | margin-bottom: 0.5rem !important;
|
---|
| 903 | }
|
---|
| 904 |
|
---|
| 905 | .mb-3 {
|
---|
| 906 | margin-bottom: 1rem !important;
|
---|
| 907 | }
|
---|
| 908 |
|
---|
| 909 | .mb-4 {
|
---|
| 910 | margin-bottom: 1.5rem !important;
|
---|
| 911 | }
|
---|
| 912 |
|
---|
| 913 | .mb-5 {
|
---|
| 914 | margin-bottom: 3rem !important;
|
---|
| 915 | }
|
---|
| 916 |
|
---|
| 917 | .mb-auto {
|
---|
| 918 | margin-bottom: auto !important;
|
---|
| 919 | }
|
---|
| 920 |
|
---|
| 921 | .ms-0 {
|
---|
| 922 | margin-left: 0 !important;
|
---|
| 923 | }
|
---|
| 924 |
|
---|
| 925 | .ms-1 {
|
---|
| 926 | margin-left: 0.25rem !important;
|
---|
| 927 | }
|
---|
| 928 |
|
---|
| 929 | .ms-2 {
|
---|
| 930 | margin-left: 0.5rem !important;
|
---|
| 931 | }
|
---|
| 932 |
|
---|
| 933 | .ms-3 {
|
---|
| 934 | margin-left: 1rem !important;
|
---|
| 935 | }
|
---|
| 936 |
|
---|
| 937 | .ms-4 {
|
---|
| 938 | margin-left: 1.5rem !important;
|
---|
| 939 | }
|
---|
| 940 |
|
---|
| 941 | .ms-5 {
|
---|
| 942 | margin-left: 3rem !important;
|
---|
| 943 | }
|
---|
| 944 |
|
---|
| 945 | .ms-auto {
|
---|
| 946 | margin-left: auto !important;
|
---|
| 947 | }
|
---|
| 948 |
|
---|
| 949 | .p-0 {
|
---|
| 950 | padding: 0 !important;
|
---|
| 951 | }
|
---|
| 952 |
|
---|
| 953 | .p-1 {
|
---|
| 954 | padding: 0.25rem !important;
|
---|
| 955 | }
|
---|
| 956 |
|
---|
| 957 | .p-2 {
|
---|
| 958 | padding: 0.5rem !important;
|
---|
| 959 | }
|
---|
| 960 |
|
---|
| 961 | .p-3 {
|
---|
| 962 | padding: 1rem !important;
|
---|
| 963 | }
|
---|
| 964 |
|
---|
| 965 | .p-4 {
|
---|
| 966 | padding: 1.5rem !important;
|
---|
| 967 | }
|
---|
| 968 |
|
---|
| 969 | .p-5 {
|
---|
| 970 | padding: 3rem !important;
|
---|
| 971 | }
|
---|
| 972 |
|
---|
| 973 | .px-0 {
|
---|
| 974 | padding-right: 0 !important;
|
---|
| 975 | padding-left: 0 !important;
|
---|
| 976 | }
|
---|
| 977 |
|
---|
| 978 | .px-1 {
|
---|
| 979 | padding-right: 0.25rem !important;
|
---|
| 980 | padding-left: 0.25rem !important;
|
---|
| 981 | }
|
---|
| 982 |
|
---|
| 983 | .px-2 {
|
---|
| 984 | padding-right: 0.5rem !important;
|
---|
| 985 | padding-left: 0.5rem !important;
|
---|
| 986 | }
|
---|
| 987 |
|
---|
| 988 | .px-3 {
|
---|
| 989 | padding-right: 1rem !important;
|
---|
| 990 | padding-left: 1rem !important;
|
---|
| 991 | }
|
---|
| 992 |
|
---|
| 993 | .px-4 {
|
---|
| 994 | padding-right: 1.5rem !important;
|
---|
| 995 | padding-left: 1.5rem !important;
|
---|
| 996 | }
|
---|
| 997 |
|
---|
| 998 | .px-5 {
|
---|
| 999 | padding-right: 3rem !important;
|
---|
| 1000 | padding-left: 3rem !important;
|
---|
| 1001 | }
|
---|
| 1002 |
|
---|
| 1003 | .py-0 {
|
---|
| 1004 | padding-top: 0 !important;
|
---|
| 1005 | padding-bottom: 0 !important;
|
---|
| 1006 | }
|
---|
| 1007 |
|
---|
| 1008 | .py-1 {
|
---|
| 1009 | padding-top: 0.25rem !important;
|
---|
| 1010 | padding-bottom: 0.25rem !important;
|
---|
| 1011 | }
|
---|
| 1012 |
|
---|
| 1013 | .py-2 {
|
---|
| 1014 | padding-top: 0.5rem !important;
|
---|
| 1015 | padding-bottom: 0.5rem !important;
|
---|
| 1016 | }
|
---|
| 1017 |
|
---|
| 1018 | .py-3 {
|
---|
| 1019 | padding-top: 1rem !important;
|
---|
| 1020 | padding-bottom: 1rem !important;
|
---|
| 1021 | }
|
---|
| 1022 |
|
---|
| 1023 | .py-4 {
|
---|
| 1024 | padding-top: 1.5rem !important;
|
---|
| 1025 | padding-bottom: 1.5rem !important;
|
---|
| 1026 | }
|
---|
| 1027 |
|
---|
| 1028 | .py-5 {
|
---|
| 1029 | padding-top: 3rem !important;
|
---|
| 1030 | padding-bottom: 3rem !important;
|
---|
| 1031 | }
|
---|
| 1032 |
|
---|
| 1033 | .pt-0 {
|
---|
| 1034 | padding-top: 0 !important;
|
---|
| 1035 | }
|
---|
| 1036 |
|
---|
| 1037 | .pt-1 {
|
---|
| 1038 | padding-top: 0.25rem !important;
|
---|
| 1039 | }
|
---|
| 1040 |
|
---|
| 1041 | .pt-2 {
|
---|
| 1042 | padding-top: 0.5rem !important;
|
---|
| 1043 | }
|
---|
| 1044 |
|
---|
| 1045 | .pt-3 {
|
---|
| 1046 | padding-top: 1rem !important;
|
---|
| 1047 | }
|
---|
| 1048 |
|
---|
| 1049 | .pt-4 {
|
---|
| 1050 | padding-top: 1.5rem !important;
|
---|
| 1051 | }
|
---|
| 1052 |
|
---|
| 1053 | .pt-5 {
|
---|
| 1054 | padding-top: 3rem !important;
|
---|
| 1055 | }
|
---|
| 1056 |
|
---|
| 1057 | .pe-0 {
|
---|
| 1058 | padding-right: 0 !important;
|
---|
| 1059 | }
|
---|
| 1060 |
|
---|
| 1061 | .pe-1 {
|
---|
| 1062 | padding-right: 0.25rem !important;
|
---|
| 1063 | }
|
---|
| 1064 |
|
---|
| 1065 | .pe-2 {
|
---|
| 1066 | padding-right: 0.5rem !important;
|
---|
| 1067 | }
|
---|
| 1068 |
|
---|
| 1069 | .pe-3 {
|
---|
| 1070 | padding-right: 1rem !important;
|
---|
| 1071 | }
|
---|
| 1072 |
|
---|
| 1073 | .pe-4 {
|
---|
| 1074 | padding-right: 1.5rem !important;
|
---|
| 1075 | }
|
---|
| 1076 |
|
---|
| 1077 | .pe-5 {
|
---|
| 1078 | padding-right: 3rem !important;
|
---|
| 1079 | }
|
---|
| 1080 |
|
---|
| 1081 | .pb-0 {
|
---|
| 1082 | padding-bottom: 0 !important;
|
---|
| 1083 | }
|
---|
| 1084 |
|
---|
| 1085 | .pb-1 {
|
---|
| 1086 | padding-bottom: 0.25rem !important;
|
---|
| 1087 | }
|
---|
| 1088 |
|
---|
| 1089 | .pb-2 {
|
---|
| 1090 | padding-bottom: 0.5rem !important;
|
---|
| 1091 | }
|
---|
| 1092 |
|
---|
| 1093 | .pb-3 {
|
---|
| 1094 | padding-bottom: 1rem !important;
|
---|
| 1095 | }
|
---|
| 1096 |
|
---|
| 1097 | .pb-4 {
|
---|
| 1098 | padding-bottom: 1.5rem !important;
|
---|
| 1099 | }
|
---|
| 1100 |
|
---|
| 1101 | .pb-5 {
|
---|
| 1102 | padding-bottom: 3rem !important;
|
---|
| 1103 | }
|
---|
| 1104 |
|
---|
| 1105 | .ps-0 {
|
---|
| 1106 | padding-left: 0 !important;
|
---|
| 1107 | }
|
---|
| 1108 |
|
---|
| 1109 | .ps-1 {
|
---|
| 1110 | padding-left: 0.25rem !important;
|
---|
| 1111 | }
|
---|
| 1112 |
|
---|
| 1113 | .ps-2 {
|
---|
| 1114 | padding-left: 0.5rem !important;
|
---|
| 1115 | }
|
---|
| 1116 |
|
---|
| 1117 | .ps-3 {
|
---|
| 1118 | padding-left: 1rem !important;
|
---|
| 1119 | }
|
---|
| 1120 |
|
---|
| 1121 | .ps-4 {
|
---|
| 1122 | padding-left: 1.5rem !important;
|
---|
| 1123 | }
|
---|
| 1124 |
|
---|
| 1125 | .ps-5 {
|
---|
| 1126 | padding-left: 3rem !important;
|
---|
| 1127 | }
|
---|
| 1128 |
|
---|
| 1129 | .font-monospace {
|
---|
| 1130 | font-family: var(--bs-font-monospace) !important;
|
---|
| 1131 | }
|
---|
| 1132 |
|
---|
| 1133 | .fs-1 {
|
---|
| 1134 | font-size: calc(1.375rem + 1.5vw) !important;
|
---|
| 1135 | }
|
---|
| 1136 |
|
---|
| 1137 | .fs-2 {
|
---|
| 1138 | font-size: calc(1.325rem + 0.9vw) !important;
|
---|
| 1139 | }
|
---|
| 1140 |
|
---|
| 1141 | .fs-3 {
|
---|
| 1142 | font-size: calc(1.3rem + 0.6vw) !important;
|
---|
| 1143 | }
|
---|
| 1144 |
|
---|
| 1145 | .fs-4 {
|
---|
| 1146 | font-size: calc(1.275rem + 0.3vw) !important;
|
---|
| 1147 | }
|
---|
| 1148 |
|
---|
| 1149 | .fs-5 {
|
---|
| 1150 | font-size: 1.25rem !important;
|
---|
| 1151 | }
|
---|
| 1152 |
|
---|
| 1153 | .fs-6 {
|
---|
| 1154 | font-size: 1rem !important;
|
---|
| 1155 | }
|
---|
| 1156 |
|
---|
| 1157 | .fst-italic {
|
---|
| 1158 | font-style: italic !important;
|
---|
| 1159 | }
|
---|
| 1160 |
|
---|
| 1161 | .fst-normal {
|
---|
| 1162 | font-style: normal !important;
|
---|
| 1163 | }
|
---|
| 1164 |
|
---|
| 1165 | .fw-light {
|
---|
| 1166 | font-weight: 300 !important;
|
---|
| 1167 | }
|
---|
| 1168 |
|
---|
| 1169 | .fw-lighter {
|
---|
| 1170 | font-weight: lighter !important;
|
---|
| 1171 | }
|
---|
| 1172 |
|
---|
| 1173 | .fw-normal {
|
---|
| 1174 | font-weight: 400 !important;
|
---|
| 1175 | }
|
---|
| 1176 |
|
---|
| 1177 | .fw-bold {
|
---|
| 1178 | font-weight: 700 !important;
|
---|
| 1179 | }
|
---|
| 1180 |
|
---|
| 1181 | .fw-bolder {
|
---|
| 1182 | font-weight: bolder !important;
|
---|
| 1183 | }
|
---|
| 1184 |
|
---|
| 1185 | .lh-1 {
|
---|
| 1186 | line-height: 1 !important;
|
---|
| 1187 | }
|
---|
| 1188 |
|
---|
| 1189 | .lh-sm {
|
---|
| 1190 | line-height: 1.25 !important;
|
---|
| 1191 | }
|
---|
| 1192 |
|
---|
| 1193 | .lh-base {
|
---|
| 1194 | line-height: 1.5 !important;
|
---|
| 1195 | }
|
---|
| 1196 |
|
---|
| 1197 | .lh-lg {
|
---|
| 1198 | line-height: 2 !important;
|
---|
| 1199 | }
|
---|
| 1200 |
|
---|
| 1201 | .text-start {
|
---|
| 1202 | text-align: left !important;
|
---|
| 1203 | }
|
---|
| 1204 |
|
---|
| 1205 | .text-end {
|
---|
| 1206 | text-align: right !important;
|
---|
| 1207 | }
|
---|
| 1208 |
|
---|
| 1209 | .text-center {
|
---|
| 1210 | text-align: center !important;
|
---|
| 1211 | }
|
---|
| 1212 |
|
---|
| 1213 | .text-decoration-none {
|
---|
| 1214 | text-decoration: none !important;
|
---|
| 1215 | }
|
---|
| 1216 |
|
---|
| 1217 | .text-decoration-underline {
|
---|
| 1218 | text-decoration: underline !important;
|
---|
| 1219 | }
|
---|
| 1220 |
|
---|
| 1221 | .text-decoration-line-through {
|
---|
| 1222 | text-decoration: line-through !important;
|
---|
| 1223 | }
|
---|
| 1224 |
|
---|
| 1225 | .text-lowercase {
|
---|
| 1226 | text-transform: lowercase !important;
|
---|
| 1227 | }
|
---|
| 1228 |
|
---|
| 1229 | .text-uppercase {
|
---|
| 1230 | text-transform: uppercase !important;
|
---|
| 1231 | }
|
---|
| 1232 |
|
---|
| 1233 | .text-capitalize {
|
---|
| 1234 | text-transform: capitalize !important;
|
---|
| 1235 | }
|
---|
| 1236 |
|
---|
| 1237 | .text-wrap {
|
---|
| 1238 | white-space: normal !important;
|
---|
| 1239 | }
|
---|
| 1240 |
|
---|
| 1241 | .text-nowrap {
|
---|
| 1242 | white-space: nowrap !important;
|
---|
| 1243 | }
|
---|
| 1244 |
|
---|
| 1245 | /* rtl:begin:remove */
|
---|
| 1246 | .text-break {
|
---|
| 1247 | word-wrap: break-word !important;
|
---|
| 1248 | word-break: break-word !important;
|
---|
| 1249 | }
|
---|
| 1250 |
|
---|
| 1251 | /* rtl:end:remove */
|
---|
| 1252 | .text-primary {
|
---|
| 1253 | color: #0d6efd !important;
|
---|
| 1254 | }
|
---|
| 1255 |
|
---|
| 1256 | .text-secondary {
|
---|
| 1257 | color: #6c757d !important;
|
---|
| 1258 | }
|
---|
| 1259 |
|
---|
| 1260 | .text-success {
|
---|
| 1261 | color: #198754 !important;
|
---|
| 1262 | }
|
---|
| 1263 |
|
---|
| 1264 | .text-info {
|
---|
| 1265 | color: #0dcaf0 !important;
|
---|
| 1266 | }
|
---|
| 1267 |
|
---|
| 1268 | .text-warning {
|
---|
| 1269 | color: #ffc107 !important;
|
---|
| 1270 | }
|
---|
| 1271 |
|
---|
| 1272 | .text-danger {
|
---|
| 1273 | color: #dc3545 !important;
|
---|
| 1274 | }
|
---|
| 1275 |
|
---|
| 1276 | .text-light {
|
---|
| 1277 | color: #f8f9fa !important;
|
---|
| 1278 | }
|
---|
| 1279 |
|
---|
| 1280 | .text-dark {
|
---|
| 1281 | color: #212529 !important;
|
---|
| 1282 | }
|
---|
| 1283 |
|
---|
| 1284 | .text-white {
|
---|
| 1285 | color: #fff !important;
|
---|
| 1286 | }
|
---|
| 1287 |
|
---|
| 1288 | .text-body {
|
---|
| 1289 | color: #212529 !important;
|
---|
| 1290 | }
|
---|
| 1291 |
|
---|
| 1292 | .text-muted {
|
---|
| 1293 | color: #6c757d !important;
|
---|
| 1294 | }
|
---|
| 1295 |
|
---|
| 1296 | .text-black-50 {
|
---|
| 1297 | color: rgba(0, 0, 0, 0.5) !important;
|
---|
| 1298 | }
|
---|
| 1299 |
|
---|
| 1300 | .text-white-50 {
|
---|
| 1301 | color: rgba(255, 255, 255, 0.5) !important;
|
---|
| 1302 | }
|
---|
| 1303 |
|
---|
| 1304 | .text-reset {
|
---|
| 1305 | color: inherit !important;
|
---|
| 1306 | }
|
---|
| 1307 |
|
---|
| 1308 | .bg-primary {
|
---|
| 1309 | background-color: #0d6efd !important;
|
---|
| 1310 | }
|
---|
| 1311 |
|
---|
| 1312 | .bg-secondary {
|
---|
| 1313 | background-color: #6c757d !important;
|
---|
| 1314 | }
|
---|
| 1315 |
|
---|
| 1316 | .bg-success {
|
---|
| 1317 | background-color: #198754 !important;
|
---|
| 1318 | }
|
---|
| 1319 |
|
---|
| 1320 | .bg-info {
|
---|
| 1321 | background-color: #0dcaf0 !important;
|
---|
| 1322 | }
|
---|
| 1323 |
|
---|
| 1324 | .bg-warning {
|
---|
| 1325 | background-color: #ffc107 !important;
|
---|
| 1326 | }
|
---|
| 1327 |
|
---|
| 1328 | .bg-danger {
|
---|
| 1329 | background-color: #dc3545 !important;
|
---|
| 1330 | }
|
---|
| 1331 |
|
---|
| 1332 | .bg-light {
|
---|
| 1333 | background-color: #f8f9fa !important;
|
---|
| 1334 | }
|
---|
| 1335 |
|
---|
| 1336 | .bg-dark {
|
---|
| 1337 | background-color: #212529 !important;
|
---|
| 1338 | }
|
---|
| 1339 |
|
---|
| 1340 | .bg-body {
|
---|
| 1341 | background-color: #fff !important;
|
---|
| 1342 | }
|
---|
| 1343 |
|
---|
| 1344 | .bg-white {
|
---|
| 1345 | background-color: #fff !important;
|
---|
| 1346 | }
|
---|
| 1347 |
|
---|
| 1348 | .bg-transparent {
|
---|
| 1349 | background-color: transparent !important;
|
---|
| 1350 | }
|
---|
| 1351 |
|
---|
| 1352 | .bg-gradient {
|
---|
| 1353 | background-image: var(--bs-gradient) !important;
|
---|
| 1354 | }
|
---|
| 1355 |
|
---|
| 1356 | .user-select-all {
|
---|
| 1357 | -webkit-user-select: all !important;
|
---|
| 1358 | -moz-user-select: all !important;
|
---|
| 1359 | user-select: all !important;
|
---|
| 1360 | }
|
---|
| 1361 |
|
---|
| 1362 | .user-select-auto {
|
---|
| 1363 | -webkit-user-select: auto !important;
|
---|
| 1364 | -moz-user-select: auto !important;
|
---|
| 1365 | user-select: auto !important;
|
---|
| 1366 | }
|
---|
| 1367 |
|
---|
| 1368 | .user-select-none {
|
---|
| 1369 | -webkit-user-select: none !important;
|
---|
| 1370 | -moz-user-select: none !important;
|
---|
| 1371 | user-select: none !important;
|
---|
| 1372 | }
|
---|
| 1373 |
|
---|
| 1374 | .pe-none {
|
---|
| 1375 | pointer-events: none !important;
|
---|
| 1376 | }
|
---|
| 1377 |
|
---|
| 1378 | .pe-auto {
|
---|
| 1379 | pointer-events: auto !important;
|
---|
| 1380 | }
|
---|
| 1381 |
|
---|
| 1382 | .rounded {
|
---|
| 1383 | border-radius: 0.25rem !important;
|
---|
| 1384 | }
|
---|
| 1385 |
|
---|
| 1386 | .rounded-0 {
|
---|
| 1387 | border-radius: 0 !important;
|
---|
| 1388 | }
|
---|
| 1389 |
|
---|
| 1390 | .rounded-1 {
|
---|
| 1391 | border-radius: 0.2rem !important;
|
---|
| 1392 | }
|
---|
| 1393 |
|
---|
| 1394 | .rounded-2 {
|
---|
| 1395 | border-radius: 0.25rem !important;
|
---|
| 1396 | }
|
---|
| 1397 |
|
---|
| 1398 | .rounded-3 {
|
---|
| 1399 | border-radius: 0.3rem !important;
|
---|
| 1400 | }
|
---|
| 1401 |
|
---|
| 1402 | .rounded-circle {
|
---|
| 1403 | border-radius: 50% !important;
|
---|
| 1404 | }
|
---|
| 1405 |
|
---|
| 1406 | .rounded-pill {
|
---|
| 1407 | border-radius: 50rem !important;
|
---|
| 1408 | }
|
---|
| 1409 |
|
---|
| 1410 | .rounded-top {
|
---|
| 1411 | border-top-left-radius: 0.25rem !important;
|
---|
| 1412 | border-top-right-radius: 0.25rem !important;
|
---|
| 1413 | }
|
---|
| 1414 |
|
---|
| 1415 | .rounded-end {
|
---|
| 1416 | border-top-right-radius: 0.25rem !important;
|
---|
| 1417 | border-bottom-right-radius: 0.25rem !important;
|
---|
| 1418 | }
|
---|
| 1419 |
|
---|
| 1420 | .rounded-bottom {
|
---|
| 1421 | border-bottom-right-radius: 0.25rem !important;
|
---|
| 1422 | border-bottom-left-radius: 0.25rem !important;
|
---|
| 1423 | }
|
---|
| 1424 |
|
---|
| 1425 | .rounded-start {
|
---|
| 1426 | border-bottom-left-radius: 0.25rem !important;
|
---|
| 1427 | border-top-left-radius: 0.25rem !important;
|
---|
| 1428 | }
|
---|
| 1429 |
|
---|
| 1430 | .visible {
|
---|
| 1431 | visibility: visible !important;
|
---|
| 1432 | }
|
---|
| 1433 |
|
---|
| 1434 | .invisible {
|
---|
| 1435 | visibility: hidden !important;
|
---|
| 1436 | }
|
---|
| 1437 |
|
---|
| 1438 | @media (min-width: 576px) {
|
---|
| 1439 | .float-sm-start {
|
---|
| 1440 | float: left !important;
|
---|
| 1441 | }
|
---|
| 1442 |
|
---|
| 1443 | .float-sm-end {
|
---|
| 1444 | float: right !important;
|
---|
| 1445 | }
|
---|
| 1446 |
|
---|
| 1447 | .float-sm-none {
|
---|
| 1448 | float: none !important;
|
---|
| 1449 | }
|
---|
| 1450 |
|
---|
| 1451 | .d-sm-inline {
|
---|
| 1452 | display: inline !important;
|
---|
| 1453 | }
|
---|
| 1454 |
|
---|
| 1455 | .d-sm-inline-block {
|
---|
| 1456 | display: inline-block !important;
|
---|
| 1457 | }
|
---|
| 1458 |
|
---|
| 1459 | .d-sm-block {
|
---|
| 1460 | display: block !important;
|
---|
| 1461 | }
|
---|
| 1462 |
|
---|
| 1463 | .d-sm-grid {
|
---|
| 1464 | display: grid !important;
|
---|
| 1465 | }
|
---|
| 1466 |
|
---|
| 1467 | .d-sm-table {
|
---|
| 1468 | display: table !important;
|
---|
| 1469 | }
|
---|
| 1470 |
|
---|
| 1471 | .d-sm-table-row {
|
---|
| 1472 | display: table-row !important;
|
---|
| 1473 | }
|
---|
| 1474 |
|
---|
| 1475 | .d-sm-table-cell {
|
---|
| 1476 | display: table-cell !important;
|
---|
| 1477 | }
|
---|
| 1478 |
|
---|
| 1479 | .d-sm-flex {
|
---|
| 1480 | display: flex !important;
|
---|
| 1481 | }
|
---|
| 1482 |
|
---|
| 1483 | .d-sm-inline-flex {
|
---|
| 1484 | display: inline-flex !important;
|
---|
| 1485 | }
|
---|
| 1486 |
|
---|
| 1487 | .d-sm-none {
|
---|
| 1488 | display: none !important;
|
---|
| 1489 | }
|
---|
| 1490 |
|
---|
| 1491 | .flex-sm-fill {
|
---|
| 1492 | flex: 1 1 auto !important;
|
---|
| 1493 | }
|
---|
| 1494 |
|
---|
| 1495 | .flex-sm-row {
|
---|
| 1496 | flex-direction: row !important;
|
---|
| 1497 | }
|
---|
| 1498 |
|
---|
| 1499 | .flex-sm-column {
|
---|
| 1500 | flex-direction: column !important;
|
---|
| 1501 | }
|
---|
| 1502 |
|
---|
| 1503 | .flex-sm-row-reverse {
|
---|
| 1504 | flex-direction: row-reverse !important;
|
---|
| 1505 | }
|
---|
| 1506 |
|
---|
| 1507 | .flex-sm-column-reverse {
|
---|
| 1508 | flex-direction: column-reverse !important;
|
---|
| 1509 | }
|
---|
| 1510 |
|
---|
| 1511 | .flex-sm-grow-0 {
|
---|
| 1512 | flex-grow: 0 !important;
|
---|
| 1513 | }
|
---|
| 1514 |
|
---|
| 1515 | .flex-sm-grow-1 {
|
---|
| 1516 | flex-grow: 1 !important;
|
---|
| 1517 | }
|
---|
| 1518 |
|
---|
| 1519 | .flex-sm-shrink-0 {
|
---|
| 1520 | flex-shrink: 0 !important;
|
---|
| 1521 | }
|
---|
| 1522 |
|
---|
| 1523 | .flex-sm-shrink-1 {
|
---|
| 1524 | flex-shrink: 1 !important;
|
---|
| 1525 | }
|
---|
| 1526 |
|
---|
| 1527 | .flex-sm-wrap {
|
---|
| 1528 | flex-wrap: wrap !important;
|
---|
| 1529 | }
|
---|
| 1530 |
|
---|
| 1531 | .flex-sm-nowrap {
|
---|
| 1532 | flex-wrap: nowrap !important;
|
---|
| 1533 | }
|
---|
| 1534 |
|
---|
| 1535 | .flex-sm-wrap-reverse {
|
---|
| 1536 | flex-wrap: wrap-reverse !important;
|
---|
| 1537 | }
|
---|
| 1538 |
|
---|
| 1539 | .gap-sm-0 {
|
---|
| 1540 | gap: 0 !important;
|
---|
| 1541 | }
|
---|
| 1542 |
|
---|
| 1543 | .gap-sm-1 {
|
---|
| 1544 | gap: 0.25rem !important;
|
---|
| 1545 | }
|
---|
| 1546 |
|
---|
| 1547 | .gap-sm-2 {
|
---|
| 1548 | gap: 0.5rem !important;
|
---|
| 1549 | }
|
---|
| 1550 |
|
---|
| 1551 | .gap-sm-3 {
|
---|
| 1552 | gap: 1rem !important;
|
---|
| 1553 | }
|
---|
| 1554 |
|
---|
| 1555 | .gap-sm-4 {
|
---|
| 1556 | gap: 1.5rem !important;
|
---|
| 1557 | }
|
---|
| 1558 |
|
---|
| 1559 | .gap-sm-5 {
|
---|
| 1560 | gap: 3rem !important;
|
---|
| 1561 | }
|
---|
| 1562 |
|
---|
| 1563 | .justify-content-sm-start {
|
---|
| 1564 | justify-content: flex-start !important;
|
---|
| 1565 | }
|
---|
| 1566 |
|
---|
| 1567 | .justify-content-sm-end {
|
---|
| 1568 | justify-content: flex-end !important;
|
---|
| 1569 | }
|
---|
| 1570 |
|
---|
| 1571 | .justify-content-sm-center {
|
---|
| 1572 | justify-content: center !important;
|
---|
| 1573 | }
|
---|
| 1574 |
|
---|
| 1575 | .justify-content-sm-between {
|
---|
| 1576 | justify-content: space-between !important;
|
---|
| 1577 | }
|
---|
| 1578 |
|
---|
| 1579 | .justify-content-sm-around {
|
---|
| 1580 | justify-content: space-around !important;
|
---|
| 1581 | }
|
---|
| 1582 |
|
---|
| 1583 | .justify-content-sm-evenly {
|
---|
| 1584 | justify-content: space-evenly !important;
|
---|
| 1585 | }
|
---|
| 1586 |
|
---|
| 1587 | .align-items-sm-start {
|
---|
| 1588 | align-items: flex-start !important;
|
---|
| 1589 | }
|
---|
| 1590 |
|
---|
| 1591 | .align-items-sm-end {
|
---|
| 1592 | align-items: flex-end !important;
|
---|
| 1593 | }
|
---|
| 1594 |
|
---|
| 1595 | .align-items-sm-center {
|
---|
| 1596 | align-items: center !important;
|
---|
| 1597 | }
|
---|
| 1598 |
|
---|
| 1599 | .align-items-sm-baseline {
|
---|
| 1600 | align-items: baseline !important;
|
---|
| 1601 | }
|
---|
| 1602 |
|
---|
| 1603 | .align-items-sm-stretch {
|
---|
| 1604 | align-items: stretch !important;
|
---|
| 1605 | }
|
---|
| 1606 |
|
---|
| 1607 | .align-content-sm-start {
|
---|
| 1608 | align-content: flex-start !important;
|
---|
| 1609 | }
|
---|
| 1610 |
|
---|
| 1611 | .align-content-sm-end {
|
---|
| 1612 | align-content: flex-end !important;
|
---|
| 1613 | }
|
---|
| 1614 |
|
---|
| 1615 | .align-content-sm-center {
|
---|
| 1616 | align-content: center !important;
|
---|
| 1617 | }
|
---|
| 1618 |
|
---|
| 1619 | .align-content-sm-between {
|
---|
| 1620 | align-content: space-between !important;
|
---|
| 1621 | }
|
---|
| 1622 |
|
---|
| 1623 | .align-content-sm-around {
|
---|
| 1624 | align-content: space-around !important;
|
---|
| 1625 | }
|
---|
| 1626 |
|
---|
| 1627 | .align-content-sm-stretch {
|
---|
| 1628 | align-content: stretch !important;
|
---|
| 1629 | }
|
---|
| 1630 |
|
---|
| 1631 | .align-self-sm-auto {
|
---|
| 1632 | align-self: auto !important;
|
---|
| 1633 | }
|
---|
| 1634 |
|
---|
| 1635 | .align-self-sm-start {
|
---|
| 1636 | align-self: flex-start !important;
|
---|
| 1637 | }
|
---|
| 1638 |
|
---|
| 1639 | .align-self-sm-end {
|
---|
| 1640 | align-self: flex-end !important;
|
---|
| 1641 | }
|
---|
| 1642 |
|
---|
| 1643 | .align-self-sm-center {
|
---|
| 1644 | align-self: center !important;
|
---|
| 1645 | }
|
---|
| 1646 |
|
---|
| 1647 | .align-self-sm-baseline {
|
---|
| 1648 | align-self: baseline !important;
|
---|
| 1649 | }
|
---|
| 1650 |
|
---|
| 1651 | .align-self-sm-stretch {
|
---|
| 1652 | align-self: stretch !important;
|
---|
| 1653 | }
|
---|
| 1654 |
|
---|
| 1655 | .order-sm-first {
|
---|
| 1656 | order: -1 !important;
|
---|
| 1657 | }
|
---|
| 1658 |
|
---|
| 1659 | .order-sm-0 {
|
---|
| 1660 | order: 0 !important;
|
---|
| 1661 | }
|
---|
| 1662 |
|
---|
| 1663 | .order-sm-1 {
|
---|
| 1664 | order: 1 !important;
|
---|
| 1665 | }
|
---|
| 1666 |
|
---|
| 1667 | .order-sm-2 {
|
---|
| 1668 | order: 2 !important;
|
---|
| 1669 | }
|
---|
| 1670 |
|
---|
| 1671 | .order-sm-3 {
|
---|
| 1672 | order: 3 !important;
|
---|
| 1673 | }
|
---|
| 1674 |
|
---|
| 1675 | .order-sm-4 {
|
---|
| 1676 | order: 4 !important;
|
---|
| 1677 | }
|
---|
| 1678 |
|
---|
| 1679 | .order-sm-5 {
|
---|
| 1680 | order: 5 !important;
|
---|
| 1681 | }
|
---|
| 1682 |
|
---|
| 1683 | .order-sm-last {
|
---|
| 1684 | order: 6 !important;
|
---|
| 1685 | }
|
---|
| 1686 |
|
---|
| 1687 | .m-sm-0 {
|
---|
| 1688 | margin: 0 !important;
|
---|
| 1689 | }
|
---|
| 1690 |
|
---|
| 1691 | .m-sm-1 {
|
---|
| 1692 | margin: 0.25rem !important;
|
---|
| 1693 | }
|
---|
| 1694 |
|
---|
| 1695 | .m-sm-2 {
|
---|
| 1696 | margin: 0.5rem !important;
|
---|
| 1697 | }
|
---|
| 1698 |
|
---|
| 1699 | .m-sm-3 {
|
---|
| 1700 | margin: 1rem !important;
|
---|
| 1701 | }
|
---|
| 1702 |
|
---|
| 1703 | .m-sm-4 {
|
---|
| 1704 | margin: 1.5rem !important;
|
---|
| 1705 | }
|
---|
| 1706 |
|
---|
| 1707 | .m-sm-5 {
|
---|
| 1708 | margin: 3rem !important;
|
---|
| 1709 | }
|
---|
| 1710 |
|
---|
| 1711 | .m-sm-auto {
|
---|
| 1712 | margin: auto !important;
|
---|
| 1713 | }
|
---|
| 1714 |
|
---|
| 1715 | .mx-sm-0 {
|
---|
| 1716 | margin-right: 0 !important;
|
---|
| 1717 | margin-left: 0 !important;
|
---|
| 1718 | }
|
---|
| 1719 |
|
---|
| 1720 | .mx-sm-1 {
|
---|
| 1721 | margin-right: 0.25rem !important;
|
---|
| 1722 | margin-left: 0.25rem !important;
|
---|
| 1723 | }
|
---|
| 1724 |
|
---|
| 1725 | .mx-sm-2 {
|
---|
| 1726 | margin-right: 0.5rem !important;
|
---|
| 1727 | margin-left: 0.5rem !important;
|
---|
| 1728 | }
|
---|
| 1729 |
|
---|
| 1730 | .mx-sm-3 {
|
---|
| 1731 | margin-right: 1rem !important;
|
---|
| 1732 | margin-left: 1rem !important;
|
---|
| 1733 | }
|
---|
| 1734 |
|
---|
| 1735 | .mx-sm-4 {
|
---|
| 1736 | margin-right: 1.5rem !important;
|
---|
| 1737 | margin-left: 1.5rem !important;
|
---|
| 1738 | }
|
---|
| 1739 |
|
---|
| 1740 | .mx-sm-5 {
|
---|
| 1741 | margin-right: 3rem !important;
|
---|
| 1742 | margin-left: 3rem !important;
|
---|
| 1743 | }
|
---|
| 1744 |
|
---|
| 1745 | .mx-sm-auto {
|
---|
| 1746 | margin-right: auto !important;
|
---|
| 1747 | margin-left: auto !important;
|
---|
| 1748 | }
|
---|
| 1749 |
|
---|
| 1750 | .my-sm-0 {
|
---|
| 1751 | margin-top: 0 !important;
|
---|
| 1752 | margin-bottom: 0 !important;
|
---|
| 1753 | }
|
---|
| 1754 |
|
---|
| 1755 | .my-sm-1 {
|
---|
| 1756 | margin-top: 0.25rem !important;
|
---|
| 1757 | margin-bottom: 0.25rem !important;
|
---|
| 1758 | }
|
---|
| 1759 |
|
---|
| 1760 | .my-sm-2 {
|
---|
| 1761 | margin-top: 0.5rem !important;
|
---|
| 1762 | margin-bottom: 0.5rem !important;
|
---|
| 1763 | }
|
---|
| 1764 |
|
---|
| 1765 | .my-sm-3 {
|
---|
| 1766 | margin-top: 1rem !important;
|
---|
| 1767 | margin-bottom: 1rem !important;
|
---|
| 1768 | }
|
---|
| 1769 |
|
---|
| 1770 | .my-sm-4 {
|
---|
| 1771 | margin-top: 1.5rem !important;
|
---|
| 1772 | margin-bottom: 1.5rem !important;
|
---|
| 1773 | }
|
---|
| 1774 |
|
---|
| 1775 | .my-sm-5 {
|
---|
| 1776 | margin-top: 3rem !important;
|
---|
| 1777 | margin-bottom: 3rem !important;
|
---|
| 1778 | }
|
---|
| 1779 |
|
---|
| 1780 | .my-sm-auto {
|
---|
| 1781 | margin-top: auto !important;
|
---|
| 1782 | margin-bottom: auto !important;
|
---|
| 1783 | }
|
---|
| 1784 |
|
---|
| 1785 | .mt-sm-0 {
|
---|
| 1786 | margin-top: 0 !important;
|
---|
| 1787 | }
|
---|
| 1788 |
|
---|
| 1789 | .mt-sm-1 {
|
---|
| 1790 | margin-top: 0.25rem !important;
|
---|
| 1791 | }
|
---|
| 1792 |
|
---|
| 1793 | .mt-sm-2 {
|
---|
| 1794 | margin-top: 0.5rem !important;
|
---|
| 1795 | }
|
---|
| 1796 |
|
---|
| 1797 | .mt-sm-3 {
|
---|
| 1798 | margin-top: 1rem !important;
|
---|
| 1799 | }
|
---|
| 1800 |
|
---|
| 1801 | .mt-sm-4 {
|
---|
| 1802 | margin-top: 1.5rem !important;
|
---|
| 1803 | }
|
---|
| 1804 |
|
---|
| 1805 | .mt-sm-5 {
|
---|
| 1806 | margin-top: 3rem !important;
|
---|
| 1807 | }
|
---|
| 1808 |
|
---|
| 1809 | .mt-sm-auto {
|
---|
| 1810 | margin-top: auto !important;
|
---|
| 1811 | }
|
---|
| 1812 |
|
---|
| 1813 | .me-sm-0 {
|
---|
| 1814 | margin-right: 0 !important;
|
---|
| 1815 | }
|
---|
| 1816 |
|
---|
| 1817 | .me-sm-1 {
|
---|
| 1818 | margin-right: 0.25rem !important;
|
---|
| 1819 | }
|
---|
| 1820 |
|
---|
| 1821 | .me-sm-2 {
|
---|
| 1822 | margin-right: 0.5rem !important;
|
---|
| 1823 | }
|
---|
| 1824 |
|
---|
| 1825 | .me-sm-3 {
|
---|
| 1826 | margin-right: 1rem !important;
|
---|
| 1827 | }
|
---|
| 1828 |
|
---|
| 1829 | .me-sm-4 {
|
---|
| 1830 | margin-right: 1.5rem !important;
|
---|
| 1831 | }
|
---|
| 1832 |
|
---|
| 1833 | .me-sm-5 {
|
---|
| 1834 | margin-right: 3rem !important;
|
---|
| 1835 | }
|
---|
| 1836 |
|
---|
| 1837 | .me-sm-auto {
|
---|
| 1838 | margin-right: auto !important;
|
---|
| 1839 | }
|
---|
| 1840 |
|
---|
| 1841 | .mb-sm-0 {
|
---|
| 1842 | margin-bottom: 0 !important;
|
---|
| 1843 | }
|
---|
| 1844 |
|
---|
| 1845 | .mb-sm-1 {
|
---|
| 1846 | margin-bottom: 0.25rem !important;
|
---|
| 1847 | }
|
---|
| 1848 |
|
---|
| 1849 | .mb-sm-2 {
|
---|
| 1850 | margin-bottom: 0.5rem !important;
|
---|
| 1851 | }
|
---|
| 1852 |
|
---|
| 1853 | .mb-sm-3 {
|
---|
| 1854 | margin-bottom: 1rem !important;
|
---|
| 1855 | }
|
---|
| 1856 |
|
---|
| 1857 | .mb-sm-4 {
|
---|
| 1858 | margin-bottom: 1.5rem !important;
|
---|
| 1859 | }
|
---|
| 1860 |
|
---|
| 1861 | .mb-sm-5 {
|
---|
| 1862 | margin-bottom: 3rem !important;
|
---|
| 1863 | }
|
---|
| 1864 |
|
---|
| 1865 | .mb-sm-auto {
|
---|
| 1866 | margin-bottom: auto !important;
|
---|
| 1867 | }
|
---|
| 1868 |
|
---|
| 1869 | .ms-sm-0 {
|
---|
| 1870 | margin-left: 0 !important;
|
---|
| 1871 | }
|
---|
| 1872 |
|
---|
| 1873 | .ms-sm-1 {
|
---|
| 1874 | margin-left: 0.25rem !important;
|
---|
| 1875 | }
|
---|
| 1876 |
|
---|
| 1877 | .ms-sm-2 {
|
---|
| 1878 | margin-left: 0.5rem !important;
|
---|
| 1879 | }
|
---|
| 1880 |
|
---|
| 1881 | .ms-sm-3 {
|
---|
| 1882 | margin-left: 1rem !important;
|
---|
| 1883 | }
|
---|
| 1884 |
|
---|
| 1885 | .ms-sm-4 {
|
---|
| 1886 | margin-left: 1.5rem !important;
|
---|
| 1887 | }
|
---|
| 1888 |
|
---|
| 1889 | .ms-sm-5 {
|
---|
| 1890 | margin-left: 3rem !important;
|
---|
| 1891 | }
|
---|
| 1892 |
|
---|
| 1893 | .ms-sm-auto {
|
---|
| 1894 | margin-left: auto !important;
|
---|
| 1895 | }
|
---|
| 1896 |
|
---|
| 1897 | .p-sm-0 {
|
---|
| 1898 | padding: 0 !important;
|
---|
| 1899 | }
|
---|
| 1900 |
|
---|
| 1901 | .p-sm-1 {
|
---|
| 1902 | padding: 0.25rem !important;
|
---|
| 1903 | }
|
---|
| 1904 |
|
---|
| 1905 | .p-sm-2 {
|
---|
| 1906 | padding: 0.5rem !important;
|
---|
| 1907 | }
|
---|
| 1908 |
|
---|
| 1909 | .p-sm-3 {
|
---|
| 1910 | padding: 1rem !important;
|
---|
| 1911 | }
|
---|
| 1912 |
|
---|
| 1913 | .p-sm-4 {
|
---|
| 1914 | padding: 1.5rem !important;
|
---|
| 1915 | }
|
---|
| 1916 |
|
---|
| 1917 | .p-sm-5 {
|
---|
| 1918 | padding: 3rem !important;
|
---|
| 1919 | }
|
---|
| 1920 |
|
---|
| 1921 | .px-sm-0 {
|
---|
| 1922 | padding-right: 0 !important;
|
---|
| 1923 | padding-left: 0 !important;
|
---|
| 1924 | }
|
---|
| 1925 |
|
---|
| 1926 | .px-sm-1 {
|
---|
| 1927 | padding-right: 0.25rem !important;
|
---|
| 1928 | padding-left: 0.25rem !important;
|
---|
| 1929 | }
|
---|
| 1930 |
|
---|
| 1931 | .px-sm-2 {
|
---|
| 1932 | padding-right: 0.5rem !important;
|
---|
| 1933 | padding-left: 0.5rem !important;
|
---|
| 1934 | }
|
---|
| 1935 |
|
---|
| 1936 | .px-sm-3 {
|
---|
| 1937 | padding-right: 1rem !important;
|
---|
| 1938 | padding-left: 1rem !important;
|
---|
| 1939 | }
|
---|
| 1940 |
|
---|
| 1941 | .px-sm-4 {
|
---|
| 1942 | padding-right: 1.5rem !important;
|
---|
| 1943 | padding-left: 1.5rem !important;
|
---|
| 1944 | }
|
---|
| 1945 |
|
---|
| 1946 | .px-sm-5 {
|
---|
| 1947 | padding-right: 3rem !important;
|
---|
| 1948 | padding-left: 3rem !important;
|
---|
| 1949 | }
|
---|
| 1950 |
|
---|
| 1951 | .py-sm-0 {
|
---|
| 1952 | padding-top: 0 !important;
|
---|
| 1953 | padding-bottom: 0 !important;
|
---|
| 1954 | }
|
---|
| 1955 |
|
---|
| 1956 | .py-sm-1 {
|
---|
| 1957 | padding-top: 0.25rem !important;
|
---|
| 1958 | padding-bottom: 0.25rem !important;
|
---|
| 1959 | }
|
---|
| 1960 |
|
---|
| 1961 | .py-sm-2 {
|
---|
| 1962 | padding-top: 0.5rem !important;
|
---|
| 1963 | padding-bottom: 0.5rem !important;
|
---|
| 1964 | }
|
---|
| 1965 |
|
---|
| 1966 | .py-sm-3 {
|
---|
| 1967 | padding-top: 1rem !important;
|
---|
| 1968 | padding-bottom: 1rem !important;
|
---|
| 1969 | }
|
---|
| 1970 |
|
---|
| 1971 | .py-sm-4 {
|
---|
| 1972 | padding-top: 1.5rem !important;
|
---|
| 1973 | padding-bottom: 1.5rem !important;
|
---|
| 1974 | }
|
---|
| 1975 |
|
---|
| 1976 | .py-sm-5 {
|
---|
| 1977 | padding-top: 3rem !important;
|
---|
| 1978 | padding-bottom: 3rem !important;
|
---|
| 1979 | }
|
---|
| 1980 |
|
---|
| 1981 | .pt-sm-0 {
|
---|
| 1982 | padding-top: 0 !important;
|
---|
| 1983 | }
|
---|
| 1984 |
|
---|
| 1985 | .pt-sm-1 {
|
---|
| 1986 | padding-top: 0.25rem !important;
|
---|
| 1987 | }
|
---|
| 1988 |
|
---|
| 1989 | .pt-sm-2 {
|
---|
| 1990 | padding-top: 0.5rem !important;
|
---|
| 1991 | }
|
---|
| 1992 |
|
---|
| 1993 | .pt-sm-3 {
|
---|
| 1994 | padding-top: 1rem !important;
|
---|
| 1995 | }
|
---|
| 1996 |
|
---|
| 1997 | .pt-sm-4 {
|
---|
| 1998 | padding-top: 1.5rem !important;
|
---|
| 1999 | }
|
---|
| 2000 |
|
---|
| 2001 | .pt-sm-5 {
|
---|
| 2002 | padding-top: 3rem !important;
|
---|
| 2003 | }
|
---|
| 2004 |
|
---|
| 2005 | .pe-sm-0 {
|
---|
| 2006 | padding-right: 0 !important;
|
---|
| 2007 | }
|
---|
| 2008 |
|
---|
| 2009 | .pe-sm-1 {
|
---|
| 2010 | padding-right: 0.25rem !important;
|
---|
| 2011 | }
|
---|
| 2012 |
|
---|
| 2013 | .pe-sm-2 {
|
---|
| 2014 | padding-right: 0.5rem !important;
|
---|
| 2015 | }
|
---|
| 2016 |
|
---|
| 2017 | .pe-sm-3 {
|
---|
| 2018 | padding-right: 1rem !important;
|
---|
| 2019 | }
|
---|
| 2020 |
|
---|
| 2021 | .pe-sm-4 {
|
---|
| 2022 | padding-right: 1.5rem !important;
|
---|
| 2023 | }
|
---|
| 2024 |
|
---|
| 2025 | .pe-sm-5 {
|
---|
| 2026 | padding-right: 3rem !important;
|
---|
| 2027 | }
|
---|
| 2028 |
|
---|
| 2029 | .pb-sm-0 {
|
---|
| 2030 | padding-bottom: 0 !important;
|
---|
| 2031 | }
|
---|
| 2032 |
|
---|
| 2033 | .pb-sm-1 {
|
---|
| 2034 | padding-bottom: 0.25rem !important;
|
---|
| 2035 | }
|
---|
| 2036 |
|
---|
| 2037 | .pb-sm-2 {
|
---|
| 2038 | padding-bottom: 0.5rem !important;
|
---|
| 2039 | }
|
---|
| 2040 |
|
---|
| 2041 | .pb-sm-3 {
|
---|
| 2042 | padding-bottom: 1rem !important;
|
---|
| 2043 | }
|
---|
| 2044 |
|
---|
| 2045 | .pb-sm-4 {
|
---|
| 2046 | padding-bottom: 1.5rem !important;
|
---|
| 2047 | }
|
---|
| 2048 |
|
---|
| 2049 | .pb-sm-5 {
|
---|
| 2050 | padding-bottom: 3rem !important;
|
---|
| 2051 | }
|
---|
| 2052 |
|
---|
| 2053 | .ps-sm-0 {
|
---|
| 2054 | padding-left: 0 !important;
|
---|
| 2055 | }
|
---|
| 2056 |
|
---|
| 2057 | .ps-sm-1 {
|
---|
| 2058 | padding-left: 0.25rem !important;
|
---|
| 2059 | }
|
---|
| 2060 |
|
---|
| 2061 | .ps-sm-2 {
|
---|
| 2062 | padding-left: 0.5rem !important;
|
---|
| 2063 | }
|
---|
| 2064 |
|
---|
| 2065 | .ps-sm-3 {
|
---|
| 2066 | padding-left: 1rem !important;
|
---|
| 2067 | }
|
---|
| 2068 |
|
---|
| 2069 | .ps-sm-4 {
|
---|
| 2070 | padding-left: 1.5rem !important;
|
---|
| 2071 | }
|
---|
| 2072 |
|
---|
| 2073 | .ps-sm-5 {
|
---|
| 2074 | padding-left: 3rem !important;
|
---|
| 2075 | }
|
---|
| 2076 |
|
---|
| 2077 | .text-sm-start {
|
---|
| 2078 | text-align: left !important;
|
---|
| 2079 | }
|
---|
| 2080 |
|
---|
| 2081 | .text-sm-end {
|
---|
| 2082 | text-align: right !important;
|
---|
| 2083 | }
|
---|
| 2084 |
|
---|
| 2085 | .text-sm-center {
|
---|
| 2086 | text-align: center !important;
|
---|
| 2087 | }
|
---|
| 2088 | }
|
---|
| 2089 | @media (min-width: 768px) {
|
---|
| 2090 | .float-md-start {
|
---|
| 2091 | float: left !important;
|
---|
| 2092 | }
|
---|
| 2093 |
|
---|
| 2094 | .float-md-end {
|
---|
| 2095 | float: right !important;
|
---|
| 2096 | }
|
---|
| 2097 |
|
---|
| 2098 | .float-md-none {
|
---|
| 2099 | float: none !important;
|
---|
| 2100 | }
|
---|
| 2101 |
|
---|
| 2102 | .d-md-inline {
|
---|
| 2103 | display: inline !important;
|
---|
| 2104 | }
|
---|
| 2105 |
|
---|
| 2106 | .d-md-inline-block {
|
---|
| 2107 | display: inline-block !important;
|
---|
| 2108 | }
|
---|
| 2109 |
|
---|
| 2110 | .d-md-block {
|
---|
| 2111 | display: block !important;
|
---|
| 2112 | }
|
---|
| 2113 |
|
---|
| 2114 | .d-md-grid {
|
---|
| 2115 | display: grid !important;
|
---|
| 2116 | }
|
---|
| 2117 |
|
---|
| 2118 | .d-md-table {
|
---|
| 2119 | display: table !important;
|
---|
| 2120 | }
|
---|
| 2121 |
|
---|
| 2122 | .d-md-table-row {
|
---|
| 2123 | display: table-row !important;
|
---|
| 2124 | }
|
---|
| 2125 |
|
---|
| 2126 | .d-md-table-cell {
|
---|
| 2127 | display: table-cell !important;
|
---|
| 2128 | }
|
---|
| 2129 |
|
---|
| 2130 | .d-md-flex {
|
---|
| 2131 | display: flex !important;
|
---|
| 2132 | }
|
---|
| 2133 |
|
---|
| 2134 | .d-md-inline-flex {
|
---|
| 2135 | display: inline-flex !important;
|
---|
| 2136 | }
|
---|
| 2137 |
|
---|
| 2138 | .d-md-none {
|
---|
| 2139 | display: none !important;
|
---|
| 2140 | }
|
---|
| 2141 |
|
---|
| 2142 | .flex-md-fill {
|
---|
| 2143 | flex: 1 1 auto !important;
|
---|
| 2144 | }
|
---|
| 2145 |
|
---|
| 2146 | .flex-md-row {
|
---|
| 2147 | flex-direction: row !important;
|
---|
| 2148 | }
|
---|
| 2149 |
|
---|
| 2150 | .flex-md-column {
|
---|
| 2151 | flex-direction: column !important;
|
---|
| 2152 | }
|
---|
| 2153 |
|
---|
| 2154 | .flex-md-row-reverse {
|
---|
| 2155 | flex-direction: row-reverse !important;
|
---|
| 2156 | }
|
---|
| 2157 |
|
---|
| 2158 | .flex-md-column-reverse {
|
---|
| 2159 | flex-direction: column-reverse !important;
|
---|
| 2160 | }
|
---|
| 2161 |
|
---|
| 2162 | .flex-md-grow-0 {
|
---|
| 2163 | flex-grow: 0 !important;
|
---|
| 2164 | }
|
---|
| 2165 |
|
---|
| 2166 | .flex-md-grow-1 {
|
---|
| 2167 | flex-grow: 1 !important;
|
---|
| 2168 | }
|
---|
| 2169 |
|
---|
| 2170 | .flex-md-shrink-0 {
|
---|
| 2171 | flex-shrink: 0 !important;
|
---|
| 2172 | }
|
---|
| 2173 |
|
---|
| 2174 | .flex-md-shrink-1 {
|
---|
| 2175 | flex-shrink: 1 !important;
|
---|
| 2176 | }
|
---|
| 2177 |
|
---|
| 2178 | .flex-md-wrap {
|
---|
| 2179 | flex-wrap: wrap !important;
|
---|
| 2180 | }
|
---|
| 2181 |
|
---|
| 2182 | .flex-md-nowrap {
|
---|
| 2183 | flex-wrap: nowrap !important;
|
---|
| 2184 | }
|
---|
| 2185 |
|
---|
| 2186 | .flex-md-wrap-reverse {
|
---|
| 2187 | flex-wrap: wrap-reverse !important;
|
---|
| 2188 | }
|
---|
| 2189 |
|
---|
| 2190 | .gap-md-0 {
|
---|
| 2191 | gap: 0 !important;
|
---|
| 2192 | }
|
---|
| 2193 |
|
---|
| 2194 | .gap-md-1 {
|
---|
| 2195 | gap: 0.25rem !important;
|
---|
| 2196 | }
|
---|
| 2197 |
|
---|
| 2198 | .gap-md-2 {
|
---|
| 2199 | gap: 0.5rem !important;
|
---|
| 2200 | }
|
---|
| 2201 |
|
---|
| 2202 | .gap-md-3 {
|
---|
| 2203 | gap: 1rem !important;
|
---|
| 2204 | }
|
---|
| 2205 |
|
---|
| 2206 | .gap-md-4 {
|
---|
| 2207 | gap: 1.5rem !important;
|
---|
| 2208 | }
|
---|
| 2209 |
|
---|
| 2210 | .gap-md-5 {
|
---|
| 2211 | gap: 3rem !important;
|
---|
| 2212 | }
|
---|
| 2213 |
|
---|
| 2214 | .justify-content-md-start {
|
---|
| 2215 | justify-content: flex-start !important;
|
---|
| 2216 | }
|
---|
| 2217 |
|
---|
| 2218 | .justify-content-md-end {
|
---|
| 2219 | justify-content: flex-end !important;
|
---|
| 2220 | }
|
---|
| 2221 |
|
---|
| 2222 | .justify-content-md-center {
|
---|
| 2223 | justify-content: center !important;
|
---|
| 2224 | }
|
---|
| 2225 |
|
---|
| 2226 | .justify-content-md-between {
|
---|
| 2227 | justify-content: space-between !important;
|
---|
| 2228 | }
|
---|
| 2229 |
|
---|
| 2230 | .justify-content-md-around {
|
---|
| 2231 | justify-content: space-around !important;
|
---|
| 2232 | }
|
---|
| 2233 |
|
---|
| 2234 | .justify-content-md-evenly {
|
---|
| 2235 | justify-content: space-evenly !important;
|
---|
| 2236 | }
|
---|
| 2237 |
|
---|
| 2238 | .align-items-md-start {
|
---|
| 2239 | align-items: flex-start !important;
|
---|
| 2240 | }
|
---|
| 2241 |
|
---|
| 2242 | .align-items-md-end {
|
---|
| 2243 | align-items: flex-end !important;
|
---|
| 2244 | }
|
---|
| 2245 |
|
---|
| 2246 | .align-items-md-center {
|
---|
| 2247 | align-items: center !important;
|
---|
| 2248 | }
|
---|
| 2249 |
|
---|
| 2250 | .align-items-md-baseline {
|
---|
| 2251 | align-items: baseline !important;
|
---|
| 2252 | }
|
---|
| 2253 |
|
---|
| 2254 | .align-items-md-stretch {
|
---|
| 2255 | align-items: stretch !important;
|
---|
| 2256 | }
|
---|
| 2257 |
|
---|
| 2258 | .align-content-md-start {
|
---|
| 2259 | align-content: flex-start !important;
|
---|
| 2260 | }
|
---|
| 2261 |
|
---|
| 2262 | .align-content-md-end {
|
---|
| 2263 | align-content: flex-end !important;
|
---|
| 2264 | }
|
---|
| 2265 |
|
---|
| 2266 | .align-content-md-center {
|
---|
| 2267 | align-content: center !important;
|
---|
| 2268 | }
|
---|
| 2269 |
|
---|
| 2270 | .align-content-md-between {
|
---|
| 2271 | align-content: space-between !important;
|
---|
| 2272 | }
|
---|
| 2273 |
|
---|
| 2274 | .align-content-md-around {
|
---|
| 2275 | align-content: space-around !important;
|
---|
| 2276 | }
|
---|
| 2277 |
|
---|
| 2278 | .align-content-md-stretch {
|
---|
| 2279 | align-content: stretch !important;
|
---|
| 2280 | }
|
---|
| 2281 |
|
---|
| 2282 | .align-self-md-auto {
|
---|
| 2283 | align-self: auto !important;
|
---|
| 2284 | }
|
---|
| 2285 |
|
---|
| 2286 | .align-self-md-start {
|
---|
| 2287 | align-self: flex-start !important;
|
---|
| 2288 | }
|
---|
| 2289 |
|
---|
| 2290 | .align-self-md-end {
|
---|
| 2291 | align-self: flex-end !important;
|
---|
| 2292 | }
|
---|
| 2293 |
|
---|
| 2294 | .align-self-md-center {
|
---|
| 2295 | align-self: center !important;
|
---|
| 2296 | }
|
---|
| 2297 |
|
---|
| 2298 | .align-self-md-baseline {
|
---|
| 2299 | align-self: baseline !important;
|
---|
| 2300 | }
|
---|
| 2301 |
|
---|
| 2302 | .align-self-md-stretch {
|
---|
| 2303 | align-self: stretch !important;
|
---|
| 2304 | }
|
---|
| 2305 |
|
---|
| 2306 | .order-md-first {
|
---|
| 2307 | order: -1 !important;
|
---|
| 2308 | }
|
---|
| 2309 |
|
---|
| 2310 | .order-md-0 {
|
---|
| 2311 | order: 0 !important;
|
---|
| 2312 | }
|
---|
| 2313 |
|
---|
| 2314 | .order-md-1 {
|
---|
| 2315 | order: 1 !important;
|
---|
| 2316 | }
|
---|
| 2317 |
|
---|
| 2318 | .order-md-2 {
|
---|
| 2319 | order: 2 !important;
|
---|
| 2320 | }
|
---|
| 2321 |
|
---|
| 2322 | .order-md-3 {
|
---|
| 2323 | order: 3 !important;
|
---|
| 2324 | }
|
---|
| 2325 |
|
---|
| 2326 | .order-md-4 {
|
---|
| 2327 | order: 4 !important;
|
---|
| 2328 | }
|
---|
| 2329 |
|
---|
| 2330 | .order-md-5 {
|
---|
| 2331 | order: 5 !important;
|
---|
| 2332 | }
|
---|
| 2333 |
|
---|
| 2334 | .order-md-last {
|
---|
| 2335 | order: 6 !important;
|
---|
| 2336 | }
|
---|
| 2337 |
|
---|
| 2338 | .m-md-0 {
|
---|
| 2339 | margin: 0 !important;
|
---|
| 2340 | }
|
---|
| 2341 |
|
---|
| 2342 | .m-md-1 {
|
---|
| 2343 | margin: 0.25rem !important;
|
---|
| 2344 | }
|
---|
| 2345 |
|
---|
| 2346 | .m-md-2 {
|
---|
| 2347 | margin: 0.5rem !important;
|
---|
| 2348 | }
|
---|
| 2349 |
|
---|
| 2350 | .m-md-3 {
|
---|
| 2351 | margin: 1rem !important;
|
---|
| 2352 | }
|
---|
| 2353 |
|
---|
| 2354 | .m-md-4 {
|
---|
| 2355 | margin: 1.5rem !important;
|
---|
| 2356 | }
|
---|
| 2357 |
|
---|
| 2358 | .m-md-5 {
|
---|
| 2359 | margin: 3rem !important;
|
---|
| 2360 | }
|
---|
| 2361 |
|
---|
| 2362 | .m-md-auto {
|
---|
| 2363 | margin: auto !important;
|
---|
| 2364 | }
|
---|
| 2365 |
|
---|
| 2366 | .mx-md-0 {
|
---|
| 2367 | margin-right: 0 !important;
|
---|
| 2368 | margin-left: 0 !important;
|
---|
| 2369 | }
|
---|
| 2370 |
|
---|
| 2371 | .mx-md-1 {
|
---|
| 2372 | margin-right: 0.25rem !important;
|
---|
| 2373 | margin-left: 0.25rem !important;
|
---|
| 2374 | }
|
---|
| 2375 |
|
---|
| 2376 | .mx-md-2 {
|
---|
| 2377 | margin-right: 0.5rem !important;
|
---|
| 2378 | margin-left: 0.5rem !important;
|
---|
| 2379 | }
|
---|
| 2380 |
|
---|
| 2381 | .mx-md-3 {
|
---|
| 2382 | margin-right: 1rem !important;
|
---|
| 2383 | margin-left: 1rem !important;
|
---|
| 2384 | }
|
---|
| 2385 |
|
---|
| 2386 | .mx-md-4 {
|
---|
| 2387 | margin-right: 1.5rem !important;
|
---|
| 2388 | margin-left: 1.5rem !important;
|
---|
| 2389 | }
|
---|
| 2390 |
|
---|
| 2391 | .mx-md-5 {
|
---|
| 2392 | margin-right: 3rem !important;
|
---|
| 2393 | margin-left: 3rem !important;
|
---|
| 2394 | }
|
---|
| 2395 |
|
---|
| 2396 | .mx-md-auto {
|
---|
| 2397 | margin-right: auto !important;
|
---|
| 2398 | margin-left: auto !important;
|
---|
| 2399 | }
|
---|
| 2400 |
|
---|
| 2401 | .my-md-0 {
|
---|
| 2402 | margin-top: 0 !important;
|
---|
| 2403 | margin-bottom: 0 !important;
|
---|
| 2404 | }
|
---|
| 2405 |
|
---|
| 2406 | .my-md-1 {
|
---|
| 2407 | margin-top: 0.25rem !important;
|
---|
| 2408 | margin-bottom: 0.25rem !important;
|
---|
| 2409 | }
|
---|
| 2410 |
|
---|
| 2411 | .my-md-2 {
|
---|
| 2412 | margin-top: 0.5rem !important;
|
---|
| 2413 | margin-bottom: 0.5rem !important;
|
---|
| 2414 | }
|
---|
| 2415 |
|
---|
| 2416 | .my-md-3 {
|
---|
| 2417 | margin-top: 1rem !important;
|
---|
| 2418 | margin-bottom: 1rem !important;
|
---|
| 2419 | }
|
---|
| 2420 |
|
---|
| 2421 | .my-md-4 {
|
---|
| 2422 | margin-top: 1.5rem !important;
|
---|
| 2423 | margin-bottom: 1.5rem !important;
|
---|
| 2424 | }
|
---|
| 2425 |
|
---|
| 2426 | .my-md-5 {
|
---|
| 2427 | margin-top: 3rem !important;
|
---|
| 2428 | margin-bottom: 3rem !important;
|
---|
| 2429 | }
|
---|
| 2430 |
|
---|
| 2431 | .my-md-auto {
|
---|
| 2432 | margin-top: auto !important;
|
---|
| 2433 | margin-bottom: auto !important;
|
---|
| 2434 | }
|
---|
| 2435 |
|
---|
| 2436 | .mt-md-0 {
|
---|
| 2437 | margin-top: 0 !important;
|
---|
| 2438 | }
|
---|
| 2439 |
|
---|
| 2440 | .mt-md-1 {
|
---|
| 2441 | margin-top: 0.25rem !important;
|
---|
| 2442 | }
|
---|
| 2443 |
|
---|
| 2444 | .mt-md-2 {
|
---|
| 2445 | margin-top: 0.5rem !important;
|
---|
| 2446 | }
|
---|
| 2447 |
|
---|
| 2448 | .mt-md-3 {
|
---|
| 2449 | margin-top: 1rem !important;
|
---|
| 2450 | }
|
---|
| 2451 |
|
---|
| 2452 | .mt-md-4 {
|
---|
| 2453 | margin-top: 1.5rem !important;
|
---|
| 2454 | }
|
---|
| 2455 |
|
---|
| 2456 | .mt-md-5 {
|
---|
| 2457 | margin-top: 3rem !important;
|
---|
| 2458 | }
|
---|
| 2459 |
|
---|
| 2460 | .mt-md-auto {
|
---|
| 2461 | margin-top: auto !important;
|
---|
| 2462 | }
|
---|
| 2463 |
|
---|
| 2464 | .me-md-0 {
|
---|
| 2465 | margin-right: 0 !important;
|
---|
| 2466 | }
|
---|
| 2467 |
|
---|
| 2468 | .me-md-1 {
|
---|
| 2469 | margin-right: 0.25rem !important;
|
---|
| 2470 | }
|
---|
| 2471 |
|
---|
| 2472 | .me-md-2 {
|
---|
| 2473 | margin-right: 0.5rem !important;
|
---|
| 2474 | }
|
---|
| 2475 |
|
---|
| 2476 | .me-md-3 {
|
---|
| 2477 | margin-right: 1rem !important;
|
---|
| 2478 | }
|
---|
| 2479 |
|
---|
| 2480 | .me-md-4 {
|
---|
| 2481 | margin-right: 1.5rem !important;
|
---|
| 2482 | }
|
---|
| 2483 |
|
---|
| 2484 | .me-md-5 {
|
---|
| 2485 | margin-right: 3rem !important;
|
---|
| 2486 | }
|
---|
| 2487 |
|
---|
| 2488 | .me-md-auto {
|
---|
| 2489 | margin-right: auto !important;
|
---|
| 2490 | }
|
---|
| 2491 |
|
---|
| 2492 | .mb-md-0 {
|
---|
| 2493 | margin-bottom: 0 !important;
|
---|
| 2494 | }
|
---|
| 2495 |
|
---|
| 2496 | .mb-md-1 {
|
---|
| 2497 | margin-bottom: 0.25rem !important;
|
---|
| 2498 | }
|
---|
| 2499 |
|
---|
| 2500 | .mb-md-2 {
|
---|
| 2501 | margin-bottom: 0.5rem !important;
|
---|
| 2502 | }
|
---|
| 2503 |
|
---|
| 2504 | .mb-md-3 {
|
---|
| 2505 | margin-bottom: 1rem !important;
|
---|
| 2506 | }
|
---|
| 2507 |
|
---|
| 2508 | .mb-md-4 {
|
---|
| 2509 | margin-bottom: 1.5rem !important;
|
---|
| 2510 | }
|
---|
| 2511 |
|
---|
| 2512 | .mb-md-5 {
|
---|
| 2513 | margin-bottom: 3rem !important;
|
---|
| 2514 | }
|
---|
| 2515 |
|
---|
| 2516 | .mb-md-auto {
|
---|
| 2517 | margin-bottom: auto !important;
|
---|
| 2518 | }
|
---|
| 2519 |
|
---|
| 2520 | .ms-md-0 {
|
---|
| 2521 | margin-left: 0 !important;
|
---|
| 2522 | }
|
---|
| 2523 |
|
---|
| 2524 | .ms-md-1 {
|
---|
| 2525 | margin-left: 0.25rem !important;
|
---|
| 2526 | }
|
---|
| 2527 |
|
---|
| 2528 | .ms-md-2 {
|
---|
| 2529 | margin-left: 0.5rem !important;
|
---|
| 2530 | }
|
---|
| 2531 |
|
---|
| 2532 | .ms-md-3 {
|
---|
| 2533 | margin-left: 1rem !important;
|
---|
| 2534 | }
|
---|
| 2535 |
|
---|
| 2536 | .ms-md-4 {
|
---|
| 2537 | margin-left: 1.5rem !important;
|
---|
| 2538 | }
|
---|
| 2539 |
|
---|
| 2540 | .ms-md-5 {
|
---|
| 2541 | margin-left: 3rem !important;
|
---|
| 2542 | }
|
---|
| 2543 |
|
---|
| 2544 | .ms-md-auto {
|
---|
| 2545 | margin-left: auto !important;
|
---|
| 2546 | }
|
---|
| 2547 |
|
---|
| 2548 | .p-md-0 {
|
---|
| 2549 | padding: 0 !important;
|
---|
| 2550 | }
|
---|
| 2551 |
|
---|
| 2552 | .p-md-1 {
|
---|
| 2553 | padding: 0.25rem !important;
|
---|
| 2554 | }
|
---|
| 2555 |
|
---|
| 2556 | .p-md-2 {
|
---|
| 2557 | padding: 0.5rem !important;
|
---|
| 2558 | }
|
---|
| 2559 |
|
---|
| 2560 | .p-md-3 {
|
---|
| 2561 | padding: 1rem !important;
|
---|
| 2562 | }
|
---|
| 2563 |
|
---|
| 2564 | .p-md-4 {
|
---|
| 2565 | padding: 1.5rem !important;
|
---|
| 2566 | }
|
---|
| 2567 |
|
---|
| 2568 | .p-md-5 {
|
---|
| 2569 | padding: 3rem !important;
|
---|
| 2570 | }
|
---|
| 2571 |
|
---|
| 2572 | .px-md-0 {
|
---|
| 2573 | padding-right: 0 !important;
|
---|
| 2574 | padding-left: 0 !important;
|
---|
| 2575 | }
|
---|
| 2576 |
|
---|
| 2577 | .px-md-1 {
|
---|
| 2578 | padding-right: 0.25rem !important;
|
---|
| 2579 | padding-left: 0.25rem !important;
|
---|
| 2580 | }
|
---|
| 2581 |
|
---|
| 2582 | .px-md-2 {
|
---|
| 2583 | padding-right: 0.5rem !important;
|
---|
| 2584 | padding-left: 0.5rem !important;
|
---|
| 2585 | }
|
---|
| 2586 |
|
---|
| 2587 | .px-md-3 {
|
---|
| 2588 | padding-right: 1rem !important;
|
---|
| 2589 | padding-left: 1rem !important;
|
---|
| 2590 | }
|
---|
| 2591 |
|
---|
| 2592 | .px-md-4 {
|
---|
| 2593 | padding-right: 1.5rem !important;
|
---|
| 2594 | padding-left: 1.5rem !important;
|
---|
| 2595 | }
|
---|
| 2596 |
|
---|
| 2597 | .px-md-5 {
|
---|
| 2598 | padding-right: 3rem !important;
|
---|
| 2599 | padding-left: 3rem !important;
|
---|
| 2600 | }
|
---|
| 2601 |
|
---|
| 2602 | .py-md-0 {
|
---|
| 2603 | padding-top: 0 !important;
|
---|
| 2604 | padding-bottom: 0 !important;
|
---|
| 2605 | }
|
---|
| 2606 |
|
---|
| 2607 | .py-md-1 {
|
---|
| 2608 | padding-top: 0.25rem !important;
|
---|
| 2609 | padding-bottom: 0.25rem !important;
|
---|
| 2610 | }
|
---|
| 2611 |
|
---|
| 2612 | .py-md-2 {
|
---|
| 2613 | padding-top: 0.5rem !important;
|
---|
| 2614 | padding-bottom: 0.5rem !important;
|
---|
| 2615 | }
|
---|
| 2616 |
|
---|
| 2617 | .py-md-3 {
|
---|
| 2618 | padding-top: 1rem !important;
|
---|
| 2619 | padding-bottom: 1rem !important;
|
---|
| 2620 | }
|
---|
| 2621 |
|
---|
| 2622 | .py-md-4 {
|
---|
| 2623 | padding-top: 1.5rem !important;
|
---|
| 2624 | padding-bottom: 1.5rem !important;
|
---|
| 2625 | }
|
---|
| 2626 |
|
---|
| 2627 | .py-md-5 {
|
---|
| 2628 | padding-top: 3rem !important;
|
---|
| 2629 | padding-bottom: 3rem !important;
|
---|
| 2630 | }
|
---|
| 2631 |
|
---|
| 2632 | .pt-md-0 {
|
---|
| 2633 | padding-top: 0 !important;
|
---|
| 2634 | }
|
---|
| 2635 |
|
---|
| 2636 | .pt-md-1 {
|
---|
| 2637 | padding-top: 0.25rem !important;
|
---|
| 2638 | }
|
---|
| 2639 |
|
---|
| 2640 | .pt-md-2 {
|
---|
| 2641 | padding-top: 0.5rem !important;
|
---|
| 2642 | }
|
---|
| 2643 |
|
---|
| 2644 | .pt-md-3 {
|
---|
| 2645 | padding-top: 1rem !important;
|
---|
| 2646 | }
|
---|
| 2647 |
|
---|
| 2648 | .pt-md-4 {
|
---|
| 2649 | padding-top: 1.5rem !important;
|
---|
| 2650 | }
|
---|
| 2651 |
|
---|
| 2652 | .pt-md-5 {
|
---|
| 2653 | padding-top: 3rem !important;
|
---|
| 2654 | }
|
---|
| 2655 |
|
---|
| 2656 | .pe-md-0 {
|
---|
| 2657 | padding-right: 0 !important;
|
---|
| 2658 | }
|
---|
| 2659 |
|
---|
| 2660 | .pe-md-1 {
|
---|
| 2661 | padding-right: 0.25rem !important;
|
---|
| 2662 | }
|
---|
| 2663 |
|
---|
| 2664 | .pe-md-2 {
|
---|
| 2665 | padding-right: 0.5rem !important;
|
---|
| 2666 | }
|
---|
| 2667 |
|
---|
| 2668 | .pe-md-3 {
|
---|
| 2669 | padding-right: 1rem !important;
|
---|
| 2670 | }
|
---|
| 2671 |
|
---|
| 2672 | .pe-md-4 {
|
---|
| 2673 | padding-right: 1.5rem !important;
|
---|
| 2674 | }
|
---|
| 2675 |
|
---|
| 2676 | .pe-md-5 {
|
---|
| 2677 | padding-right: 3rem !important;
|
---|
| 2678 | }
|
---|
| 2679 |
|
---|
| 2680 | .pb-md-0 {
|
---|
| 2681 | padding-bottom: 0 !important;
|
---|
| 2682 | }
|
---|
| 2683 |
|
---|
| 2684 | .pb-md-1 {
|
---|
| 2685 | padding-bottom: 0.25rem !important;
|
---|
| 2686 | }
|
---|
| 2687 |
|
---|
| 2688 | .pb-md-2 {
|
---|
| 2689 | padding-bottom: 0.5rem !important;
|
---|
| 2690 | }
|
---|
| 2691 |
|
---|
| 2692 | .pb-md-3 {
|
---|
| 2693 | padding-bottom: 1rem !important;
|
---|
| 2694 | }
|
---|
| 2695 |
|
---|
| 2696 | .pb-md-4 {
|
---|
| 2697 | padding-bottom: 1.5rem !important;
|
---|
| 2698 | }
|
---|
| 2699 |
|
---|
| 2700 | .pb-md-5 {
|
---|
| 2701 | padding-bottom: 3rem !important;
|
---|
| 2702 | }
|
---|
| 2703 |
|
---|
| 2704 | .ps-md-0 {
|
---|
| 2705 | padding-left: 0 !important;
|
---|
| 2706 | }
|
---|
| 2707 |
|
---|
| 2708 | .ps-md-1 {
|
---|
| 2709 | padding-left: 0.25rem !important;
|
---|
| 2710 | }
|
---|
| 2711 |
|
---|
| 2712 | .ps-md-2 {
|
---|
| 2713 | padding-left: 0.5rem !important;
|
---|
| 2714 | }
|
---|
| 2715 |
|
---|
| 2716 | .ps-md-3 {
|
---|
| 2717 | padding-left: 1rem !important;
|
---|
| 2718 | }
|
---|
| 2719 |
|
---|
| 2720 | .ps-md-4 {
|
---|
| 2721 | padding-left: 1.5rem !important;
|
---|
| 2722 | }
|
---|
| 2723 |
|
---|
| 2724 | .ps-md-5 {
|
---|
| 2725 | padding-left: 3rem !important;
|
---|
| 2726 | }
|
---|
| 2727 |
|
---|
| 2728 | .text-md-start {
|
---|
| 2729 | text-align: left !important;
|
---|
| 2730 | }
|
---|
| 2731 |
|
---|
| 2732 | .text-md-end {
|
---|
| 2733 | text-align: right !important;
|
---|
| 2734 | }
|
---|
| 2735 |
|
---|
| 2736 | .text-md-center {
|
---|
| 2737 | text-align: center !important;
|
---|
| 2738 | }
|
---|
| 2739 | }
|
---|
| 2740 | @media (min-width: 992px) {
|
---|
| 2741 | .float-lg-start {
|
---|
| 2742 | float: left !important;
|
---|
| 2743 | }
|
---|
| 2744 |
|
---|
| 2745 | .float-lg-end {
|
---|
| 2746 | float: right !important;
|
---|
| 2747 | }
|
---|
| 2748 |
|
---|
| 2749 | .float-lg-none {
|
---|
| 2750 | float: none !important;
|
---|
| 2751 | }
|
---|
| 2752 |
|
---|
| 2753 | .d-lg-inline {
|
---|
| 2754 | display: inline !important;
|
---|
| 2755 | }
|
---|
| 2756 |
|
---|
| 2757 | .d-lg-inline-block {
|
---|
| 2758 | display: inline-block !important;
|
---|
| 2759 | }
|
---|
| 2760 |
|
---|
| 2761 | .d-lg-block {
|
---|
| 2762 | display: block !important;
|
---|
| 2763 | }
|
---|
| 2764 |
|
---|
| 2765 | .d-lg-grid {
|
---|
| 2766 | display: grid !important;
|
---|
| 2767 | }
|
---|
| 2768 |
|
---|
| 2769 | .d-lg-table {
|
---|
| 2770 | display: table !important;
|
---|
| 2771 | }
|
---|
| 2772 |
|
---|
| 2773 | .d-lg-table-row {
|
---|
| 2774 | display: table-row !important;
|
---|
| 2775 | }
|
---|
| 2776 |
|
---|
| 2777 | .d-lg-table-cell {
|
---|
| 2778 | display: table-cell !important;
|
---|
| 2779 | }
|
---|
| 2780 |
|
---|
| 2781 | .d-lg-flex {
|
---|
| 2782 | display: flex !important;
|
---|
| 2783 | }
|
---|
| 2784 |
|
---|
| 2785 | .d-lg-inline-flex {
|
---|
| 2786 | display: inline-flex !important;
|
---|
| 2787 | }
|
---|
| 2788 |
|
---|
| 2789 | .d-lg-none {
|
---|
| 2790 | display: none !important;
|
---|
| 2791 | }
|
---|
| 2792 |
|
---|
| 2793 | .flex-lg-fill {
|
---|
| 2794 | flex: 1 1 auto !important;
|
---|
| 2795 | }
|
---|
| 2796 |
|
---|
| 2797 | .flex-lg-row {
|
---|
| 2798 | flex-direction: row !important;
|
---|
| 2799 | }
|
---|
| 2800 |
|
---|
| 2801 | .flex-lg-column {
|
---|
| 2802 | flex-direction: column !important;
|
---|
| 2803 | }
|
---|
| 2804 |
|
---|
| 2805 | .flex-lg-row-reverse {
|
---|
| 2806 | flex-direction: row-reverse !important;
|
---|
| 2807 | }
|
---|
| 2808 |
|
---|
| 2809 | .flex-lg-column-reverse {
|
---|
| 2810 | flex-direction: column-reverse !important;
|
---|
| 2811 | }
|
---|
| 2812 |
|
---|
| 2813 | .flex-lg-grow-0 {
|
---|
| 2814 | flex-grow: 0 !important;
|
---|
| 2815 | }
|
---|
| 2816 |
|
---|
| 2817 | .flex-lg-grow-1 {
|
---|
| 2818 | flex-grow: 1 !important;
|
---|
| 2819 | }
|
---|
| 2820 |
|
---|
| 2821 | .flex-lg-shrink-0 {
|
---|
| 2822 | flex-shrink: 0 !important;
|
---|
| 2823 | }
|
---|
| 2824 |
|
---|
| 2825 | .flex-lg-shrink-1 {
|
---|
| 2826 | flex-shrink: 1 !important;
|
---|
| 2827 | }
|
---|
| 2828 |
|
---|
| 2829 | .flex-lg-wrap {
|
---|
| 2830 | flex-wrap: wrap !important;
|
---|
| 2831 | }
|
---|
| 2832 |
|
---|
| 2833 | .flex-lg-nowrap {
|
---|
| 2834 | flex-wrap: nowrap !important;
|
---|
| 2835 | }
|
---|
| 2836 |
|
---|
| 2837 | .flex-lg-wrap-reverse {
|
---|
| 2838 | flex-wrap: wrap-reverse !important;
|
---|
| 2839 | }
|
---|
| 2840 |
|
---|
| 2841 | .gap-lg-0 {
|
---|
| 2842 | gap: 0 !important;
|
---|
| 2843 | }
|
---|
| 2844 |
|
---|
| 2845 | .gap-lg-1 {
|
---|
| 2846 | gap: 0.25rem !important;
|
---|
| 2847 | }
|
---|
| 2848 |
|
---|
| 2849 | .gap-lg-2 {
|
---|
| 2850 | gap: 0.5rem !important;
|
---|
| 2851 | }
|
---|
| 2852 |
|
---|
| 2853 | .gap-lg-3 {
|
---|
| 2854 | gap: 1rem !important;
|
---|
| 2855 | }
|
---|
| 2856 |
|
---|
| 2857 | .gap-lg-4 {
|
---|
| 2858 | gap: 1.5rem !important;
|
---|
| 2859 | }
|
---|
| 2860 |
|
---|
| 2861 | .gap-lg-5 {
|
---|
| 2862 | gap: 3rem !important;
|
---|
| 2863 | }
|
---|
| 2864 |
|
---|
| 2865 | .justify-content-lg-start {
|
---|
| 2866 | justify-content: flex-start !important;
|
---|
| 2867 | }
|
---|
| 2868 |
|
---|
| 2869 | .justify-content-lg-end {
|
---|
| 2870 | justify-content: flex-end !important;
|
---|
| 2871 | }
|
---|
| 2872 |
|
---|
| 2873 | .justify-content-lg-center {
|
---|
| 2874 | justify-content: center !important;
|
---|
| 2875 | }
|
---|
| 2876 |
|
---|
| 2877 | .justify-content-lg-between {
|
---|
| 2878 | justify-content: space-between !important;
|
---|
| 2879 | }
|
---|
| 2880 |
|
---|
| 2881 | .justify-content-lg-around {
|
---|
| 2882 | justify-content: space-around !important;
|
---|
| 2883 | }
|
---|
| 2884 |
|
---|
| 2885 | .justify-content-lg-evenly {
|
---|
| 2886 | justify-content: space-evenly !important;
|
---|
| 2887 | }
|
---|
| 2888 |
|
---|
| 2889 | .align-items-lg-start {
|
---|
| 2890 | align-items: flex-start !important;
|
---|
| 2891 | }
|
---|
| 2892 |
|
---|
| 2893 | .align-items-lg-end {
|
---|
| 2894 | align-items: flex-end !important;
|
---|
| 2895 | }
|
---|
| 2896 |
|
---|
| 2897 | .align-items-lg-center {
|
---|
| 2898 | align-items: center !important;
|
---|
| 2899 | }
|
---|
| 2900 |
|
---|
| 2901 | .align-items-lg-baseline {
|
---|
| 2902 | align-items: baseline !important;
|
---|
| 2903 | }
|
---|
| 2904 |
|
---|
| 2905 | .align-items-lg-stretch {
|
---|
| 2906 | align-items: stretch !important;
|
---|
| 2907 | }
|
---|
| 2908 |
|
---|
| 2909 | .align-content-lg-start {
|
---|
| 2910 | align-content: flex-start !important;
|
---|
| 2911 | }
|
---|
| 2912 |
|
---|
| 2913 | .align-content-lg-end {
|
---|
| 2914 | align-content: flex-end !important;
|
---|
| 2915 | }
|
---|
| 2916 |
|
---|
| 2917 | .align-content-lg-center {
|
---|
| 2918 | align-content: center !important;
|
---|
| 2919 | }
|
---|
| 2920 |
|
---|
| 2921 | .align-content-lg-between {
|
---|
| 2922 | align-content: space-between !important;
|
---|
| 2923 | }
|
---|
| 2924 |
|
---|
| 2925 | .align-content-lg-around {
|
---|
| 2926 | align-content: space-around !important;
|
---|
| 2927 | }
|
---|
| 2928 |
|
---|
| 2929 | .align-content-lg-stretch {
|
---|
| 2930 | align-content: stretch !important;
|
---|
| 2931 | }
|
---|
| 2932 |
|
---|
| 2933 | .align-self-lg-auto {
|
---|
| 2934 | align-self: auto !important;
|
---|
| 2935 | }
|
---|
| 2936 |
|
---|
| 2937 | .align-self-lg-start {
|
---|
| 2938 | align-self: flex-start !important;
|
---|
| 2939 | }
|
---|
| 2940 |
|
---|
| 2941 | .align-self-lg-end {
|
---|
| 2942 | align-self: flex-end !important;
|
---|
| 2943 | }
|
---|
| 2944 |
|
---|
| 2945 | .align-self-lg-center {
|
---|
| 2946 | align-self: center !important;
|
---|
| 2947 | }
|
---|
| 2948 |
|
---|
| 2949 | .align-self-lg-baseline {
|
---|
| 2950 | align-self: baseline !important;
|
---|
| 2951 | }
|
---|
| 2952 |
|
---|
| 2953 | .align-self-lg-stretch {
|
---|
| 2954 | align-self: stretch !important;
|
---|
| 2955 | }
|
---|
| 2956 |
|
---|
| 2957 | .order-lg-first {
|
---|
| 2958 | order: -1 !important;
|
---|
| 2959 | }
|
---|
| 2960 |
|
---|
| 2961 | .order-lg-0 {
|
---|
| 2962 | order: 0 !important;
|
---|
| 2963 | }
|
---|
| 2964 |
|
---|
| 2965 | .order-lg-1 {
|
---|
| 2966 | order: 1 !important;
|
---|
| 2967 | }
|
---|
| 2968 |
|
---|
| 2969 | .order-lg-2 {
|
---|
| 2970 | order: 2 !important;
|
---|
| 2971 | }
|
---|
| 2972 |
|
---|
| 2973 | .order-lg-3 {
|
---|
| 2974 | order: 3 !important;
|
---|
| 2975 | }
|
---|
| 2976 |
|
---|
| 2977 | .order-lg-4 {
|
---|
| 2978 | order: 4 !important;
|
---|
| 2979 | }
|
---|
| 2980 |
|
---|
| 2981 | .order-lg-5 {
|
---|
| 2982 | order: 5 !important;
|
---|
| 2983 | }
|
---|
| 2984 |
|
---|
| 2985 | .order-lg-last {
|
---|
| 2986 | order: 6 !important;
|
---|
| 2987 | }
|
---|
| 2988 |
|
---|
| 2989 | .m-lg-0 {
|
---|
| 2990 | margin: 0 !important;
|
---|
| 2991 | }
|
---|
| 2992 |
|
---|
| 2993 | .m-lg-1 {
|
---|
| 2994 | margin: 0.25rem !important;
|
---|
| 2995 | }
|
---|
| 2996 |
|
---|
| 2997 | .m-lg-2 {
|
---|
| 2998 | margin: 0.5rem !important;
|
---|
| 2999 | }
|
---|
| 3000 |
|
---|
| 3001 | .m-lg-3 {
|
---|
| 3002 | margin: 1rem !important;
|
---|
| 3003 | }
|
---|
| 3004 |
|
---|
| 3005 | .m-lg-4 {
|
---|
| 3006 | margin: 1.5rem !important;
|
---|
| 3007 | }
|
---|
| 3008 |
|
---|
| 3009 | .m-lg-5 {
|
---|
| 3010 | margin: 3rem !important;
|
---|
| 3011 | }
|
---|
| 3012 |
|
---|
| 3013 | .m-lg-auto {
|
---|
| 3014 | margin: auto !important;
|
---|
| 3015 | }
|
---|
| 3016 |
|
---|
| 3017 | .mx-lg-0 {
|
---|
| 3018 | margin-right: 0 !important;
|
---|
| 3019 | margin-left: 0 !important;
|
---|
| 3020 | }
|
---|
| 3021 |
|
---|
| 3022 | .mx-lg-1 {
|
---|
| 3023 | margin-right: 0.25rem !important;
|
---|
| 3024 | margin-left: 0.25rem !important;
|
---|
| 3025 | }
|
---|
| 3026 |
|
---|
| 3027 | .mx-lg-2 {
|
---|
| 3028 | margin-right: 0.5rem !important;
|
---|
| 3029 | margin-left: 0.5rem !important;
|
---|
| 3030 | }
|
---|
| 3031 |
|
---|
| 3032 | .mx-lg-3 {
|
---|
| 3033 | margin-right: 1rem !important;
|
---|
| 3034 | margin-left: 1rem !important;
|
---|
| 3035 | }
|
---|
| 3036 |
|
---|
| 3037 | .mx-lg-4 {
|
---|
| 3038 | margin-right: 1.5rem !important;
|
---|
| 3039 | margin-left: 1.5rem !important;
|
---|
| 3040 | }
|
---|
| 3041 |
|
---|
| 3042 | .mx-lg-5 {
|
---|
| 3043 | margin-right: 3rem !important;
|
---|
| 3044 | margin-left: 3rem !important;
|
---|
| 3045 | }
|
---|
| 3046 |
|
---|
| 3047 | .mx-lg-auto {
|
---|
| 3048 | margin-right: auto !important;
|
---|
| 3049 | margin-left: auto !important;
|
---|
| 3050 | }
|
---|
| 3051 |
|
---|
| 3052 | .my-lg-0 {
|
---|
| 3053 | margin-top: 0 !important;
|
---|
| 3054 | margin-bottom: 0 !important;
|
---|
| 3055 | }
|
---|
| 3056 |
|
---|
| 3057 | .my-lg-1 {
|
---|
| 3058 | margin-top: 0.25rem !important;
|
---|
| 3059 | margin-bottom: 0.25rem !important;
|
---|
| 3060 | }
|
---|
| 3061 |
|
---|
| 3062 | .my-lg-2 {
|
---|
| 3063 | margin-top: 0.5rem !important;
|
---|
| 3064 | margin-bottom: 0.5rem !important;
|
---|
| 3065 | }
|
---|
| 3066 |
|
---|
| 3067 | .my-lg-3 {
|
---|
| 3068 | margin-top: 1rem !important;
|
---|
| 3069 | margin-bottom: 1rem !important;
|
---|
| 3070 | }
|
---|
| 3071 |
|
---|
| 3072 | .my-lg-4 {
|
---|
| 3073 | margin-top: 1.5rem !important;
|
---|
| 3074 | margin-bottom: 1.5rem !important;
|
---|
| 3075 | }
|
---|
| 3076 |
|
---|
| 3077 | .my-lg-5 {
|
---|
| 3078 | margin-top: 3rem !important;
|
---|
| 3079 | margin-bottom: 3rem !important;
|
---|
| 3080 | }
|
---|
| 3081 |
|
---|
| 3082 | .my-lg-auto {
|
---|
| 3083 | margin-top: auto !important;
|
---|
| 3084 | margin-bottom: auto !important;
|
---|
| 3085 | }
|
---|
| 3086 |
|
---|
| 3087 | .mt-lg-0 {
|
---|
| 3088 | margin-top: 0 !important;
|
---|
| 3089 | }
|
---|
| 3090 |
|
---|
| 3091 | .mt-lg-1 {
|
---|
| 3092 | margin-top: 0.25rem !important;
|
---|
| 3093 | }
|
---|
| 3094 |
|
---|
| 3095 | .mt-lg-2 {
|
---|
| 3096 | margin-top: 0.5rem !important;
|
---|
| 3097 | }
|
---|
| 3098 |
|
---|
| 3099 | .mt-lg-3 {
|
---|
| 3100 | margin-top: 1rem !important;
|
---|
| 3101 | }
|
---|
| 3102 |
|
---|
| 3103 | .mt-lg-4 {
|
---|
| 3104 | margin-top: 1.5rem !important;
|
---|
| 3105 | }
|
---|
| 3106 |
|
---|
| 3107 | .mt-lg-5 {
|
---|
| 3108 | margin-top: 3rem !important;
|
---|
| 3109 | }
|
---|
| 3110 |
|
---|
| 3111 | .mt-lg-auto {
|
---|
| 3112 | margin-top: auto !important;
|
---|
| 3113 | }
|
---|
| 3114 |
|
---|
| 3115 | .me-lg-0 {
|
---|
| 3116 | margin-right: 0 !important;
|
---|
| 3117 | }
|
---|
| 3118 |
|
---|
| 3119 | .me-lg-1 {
|
---|
| 3120 | margin-right: 0.25rem !important;
|
---|
| 3121 | }
|
---|
| 3122 |
|
---|
| 3123 | .me-lg-2 {
|
---|
| 3124 | margin-right: 0.5rem !important;
|
---|
| 3125 | }
|
---|
| 3126 |
|
---|
| 3127 | .me-lg-3 {
|
---|
| 3128 | margin-right: 1rem !important;
|
---|
| 3129 | }
|
---|
| 3130 |
|
---|
| 3131 | .me-lg-4 {
|
---|
| 3132 | margin-right: 1.5rem !important;
|
---|
| 3133 | }
|
---|
| 3134 |
|
---|
| 3135 | .me-lg-5 {
|
---|
| 3136 | margin-right: 3rem !important;
|
---|
| 3137 | }
|
---|
| 3138 |
|
---|
| 3139 | .me-lg-auto {
|
---|
| 3140 | margin-right: auto !important;
|
---|
| 3141 | }
|
---|
| 3142 |
|
---|
| 3143 | .mb-lg-0 {
|
---|
| 3144 | margin-bottom: 0 !important;
|
---|
| 3145 | }
|
---|
| 3146 |
|
---|
| 3147 | .mb-lg-1 {
|
---|
| 3148 | margin-bottom: 0.25rem !important;
|
---|
| 3149 | }
|
---|
| 3150 |
|
---|
| 3151 | .mb-lg-2 {
|
---|
| 3152 | margin-bottom: 0.5rem !important;
|
---|
| 3153 | }
|
---|
| 3154 |
|
---|
| 3155 | .mb-lg-3 {
|
---|
| 3156 | margin-bottom: 1rem !important;
|
---|
| 3157 | }
|
---|
| 3158 |
|
---|
| 3159 | .mb-lg-4 {
|
---|
| 3160 | margin-bottom: 1.5rem !important;
|
---|
| 3161 | }
|
---|
| 3162 |
|
---|
| 3163 | .mb-lg-5 {
|
---|
| 3164 | margin-bottom: 3rem !important;
|
---|
| 3165 | }
|
---|
| 3166 |
|
---|
| 3167 | .mb-lg-auto {
|
---|
| 3168 | margin-bottom: auto !important;
|
---|
| 3169 | }
|
---|
| 3170 |
|
---|
| 3171 | .ms-lg-0 {
|
---|
| 3172 | margin-left: 0 !important;
|
---|
| 3173 | }
|
---|
| 3174 |
|
---|
| 3175 | .ms-lg-1 {
|
---|
| 3176 | margin-left: 0.25rem !important;
|
---|
| 3177 | }
|
---|
| 3178 |
|
---|
| 3179 | .ms-lg-2 {
|
---|
| 3180 | margin-left: 0.5rem !important;
|
---|
| 3181 | }
|
---|
| 3182 |
|
---|
| 3183 | .ms-lg-3 {
|
---|
| 3184 | margin-left: 1rem !important;
|
---|
| 3185 | }
|
---|
| 3186 |
|
---|
| 3187 | .ms-lg-4 {
|
---|
| 3188 | margin-left: 1.5rem !important;
|
---|
| 3189 | }
|
---|
| 3190 |
|
---|
| 3191 | .ms-lg-5 {
|
---|
| 3192 | margin-left: 3rem !important;
|
---|
| 3193 | }
|
---|
| 3194 |
|
---|
| 3195 | .ms-lg-auto {
|
---|
| 3196 | margin-left: auto !important;
|
---|
| 3197 | }
|
---|
| 3198 |
|
---|
| 3199 | .p-lg-0 {
|
---|
| 3200 | padding: 0 !important;
|
---|
| 3201 | }
|
---|
| 3202 |
|
---|
| 3203 | .p-lg-1 {
|
---|
| 3204 | padding: 0.25rem !important;
|
---|
| 3205 | }
|
---|
| 3206 |
|
---|
| 3207 | .p-lg-2 {
|
---|
| 3208 | padding: 0.5rem !important;
|
---|
| 3209 | }
|
---|
| 3210 |
|
---|
| 3211 | .p-lg-3 {
|
---|
| 3212 | padding: 1rem !important;
|
---|
| 3213 | }
|
---|
| 3214 |
|
---|
| 3215 | .p-lg-4 {
|
---|
| 3216 | padding: 1.5rem !important;
|
---|
| 3217 | }
|
---|
| 3218 |
|
---|
| 3219 | .p-lg-5 {
|
---|
| 3220 | padding: 3rem !important;
|
---|
| 3221 | }
|
---|
| 3222 |
|
---|
| 3223 | .px-lg-0 {
|
---|
| 3224 | padding-right: 0 !important;
|
---|
| 3225 | padding-left: 0 !important;
|
---|
| 3226 | }
|
---|
| 3227 |
|
---|
| 3228 | .px-lg-1 {
|
---|
| 3229 | padding-right: 0.25rem !important;
|
---|
| 3230 | padding-left: 0.25rem !important;
|
---|
| 3231 | }
|
---|
| 3232 |
|
---|
| 3233 | .px-lg-2 {
|
---|
| 3234 | padding-right: 0.5rem !important;
|
---|
| 3235 | padding-left: 0.5rem !important;
|
---|
| 3236 | }
|
---|
| 3237 |
|
---|
| 3238 | .px-lg-3 {
|
---|
| 3239 | padding-right: 1rem !important;
|
---|
| 3240 | padding-left: 1rem !important;
|
---|
| 3241 | }
|
---|
| 3242 |
|
---|
| 3243 | .px-lg-4 {
|
---|
| 3244 | padding-right: 1.5rem !important;
|
---|
| 3245 | padding-left: 1.5rem !important;
|
---|
| 3246 | }
|
---|
| 3247 |
|
---|
| 3248 | .px-lg-5 {
|
---|
| 3249 | padding-right: 3rem !important;
|
---|
| 3250 | padding-left: 3rem !important;
|
---|
| 3251 | }
|
---|
| 3252 |
|
---|
| 3253 | .py-lg-0 {
|
---|
| 3254 | padding-top: 0 !important;
|
---|
| 3255 | padding-bottom: 0 !important;
|
---|
| 3256 | }
|
---|
| 3257 |
|
---|
| 3258 | .py-lg-1 {
|
---|
| 3259 | padding-top: 0.25rem !important;
|
---|
| 3260 | padding-bottom: 0.25rem !important;
|
---|
| 3261 | }
|
---|
| 3262 |
|
---|
| 3263 | .py-lg-2 {
|
---|
| 3264 | padding-top: 0.5rem !important;
|
---|
| 3265 | padding-bottom: 0.5rem !important;
|
---|
| 3266 | }
|
---|
| 3267 |
|
---|
| 3268 | .py-lg-3 {
|
---|
| 3269 | padding-top: 1rem !important;
|
---|
| 3270 | padding-bottom: 1rem !important;
|
---|
| 3271 | }
|
---|
| 3272 |
|
---|
| 3273 | .py-lg-4 {
|
---|
| 3274 | padding-top: 1.5rem !important;
|
---|
| 3275 | padding-bottom: 1.5rem !important;
|
---|
| 3276 | }
|
---|
| 3277 |
|
---|
| 3278 | .py-lg-5 {
|
---|
| 3279 | padding-top: 3rem !important;
|
---|
| 3280 | padding-bottom: 3rem !important;
|
---|
| 3281 | }
|
---|
| 3282 |
|
---|
| 3283 | .pt-lg-0 {
|
---|
| 3284 | padding-top: 0 !important;
|
---|
| 3285 | }
|
---|
| 3286 |
|
---|
| 3287 | .pt-lg-1 {
|
---|
| 3288 | padding-top: 0.25rem !important;
|
---|
| 3289 | }
|
---|
| 3290 |
|
---|
| 3291 | .pt-lg-2 {
|
---|
| 3292 | padding-top: 0.5rem !important;
|
---|
| 3293 | }
|
---|
| 3294 |
|
---|
| 3295 | .pt-lg-3 {
|
---|
| 3296 | padding-top: 1rem !important;
|
---|
| 3297 | }
|
---|
| 3298 |
|
---|
| 3299 | .pt-lg-4 {
|
---|
| 3300 | padding-top: 1.5rem !important;
|
---|
| 3301 | }
|
---|
| 3302 |
|
---|
| 3303 | .pt-lg-5 {
|
---|
| 3304 | padding-top: 3rem !important;
|
---|
| 3305 | }
|
---|
| 3306 |
|
---|
| 3307 | .pe-lg-0 {
|
---|
| 3308 | padding-right: 0 !important;
|
---|
| 3309 | }
|
---|
| 3310 |
|
---|
| 3311 | .pe-lg-1 {
|
---|
| 3312 | padding-right: 0.25rem !important;
|
---|
| 3313 | }
|
---|
| 3314 |
|
---|
| 3315 | .pe-lg-2 {
|
---|
| 3316 | padding-right: 0.5rem !important;
|
---|
| 3317 | }
|
---|
| 3318 |
|
---|
| 3319 | .pe-lg-3 {
|
---|
| 3320 | padding-right: 1rem !important;
|
---|
| 3321 | }
|
---|
| 3322 |
|
---|
| 3323 | .pe-lg-4 {
|
---|
| 3324 | padding-right: 1.5rem !important;
|
---|
| 3325 | }
|
---|
| 3326 |
|
---|
| 3327 | .pe-lg-5 {
|
---|
| 3328 | padding-right: 3rem !important;
|
---|
| 3329 | }
|
---|
| 3330 |
|
---|
| 3331 | .pb-lg-0 {
|
---|
| 3332 | padding-bottom: 0 !important;
|
---|
| 3333 | }
|
---|
| 3334 |
|
---|
| 3335 | .pb-lg-1 {
|
---|
| 3336 | padding-bottom: 0.25rem !important;
|
---|
| 3337 | }
|
---|
| 3338 |
|
---|
| 3339 | .pb-lg-2 {
|
---|
| 3340 | padding-bottom: 0.5rem !important;
|
---|
| 3341 | }
|
---|
| 3342 |
|
---|
| 3343 | .pb-lg-3 {
|
---|
| 3344 | padding-bottom: 1rem !important;
|
---|
| 3345 | }
|
---|
| 3346 |
|
---|
| 3347 | .pb-lg-4 {
|
---|
| 3348 | padding-bottom: 1.5rem !important;
|
---|
| 3349 | }
|
---|
| 3350 |
|
---|
| 3351 | .pb-lg-5 {
|
---|
| 3352 | padding-bottom: 3rem !important;
|
---|
| 3353 | }
|
---|
| 3354 |
|
---|
| 3355 | .ps-lg-0 {
|
---|
| 3356 | padding-left: 0 !important;
|
---|
| 3357 | }
|
---|
| 3358 |
|
---|
| 3359 | .ps-lg-1 {
|
---|
| 3360 | padding-left: 0.25rem !important;
|
---|
| 3361 | }
|
---|
| 3362 |
|
---|
| 3363 | .ps-lg-2 {
|
---|
| 3364 | padding-left: 0.5rem !important;
|
---|
| 3365 | }
|
---|
| 3366 |
|
---|
| 3367 | .ps-lg-3 {
|
---|
| 3368 | padding-left: 1rem !important;
|
---|
| 3369 | }
|
---|
| 3370 |
|
---|
| 3371 | .ps-lg-4 {
|
---|
| 3372 | padding-left: 1.5rem !important;
|
---|
| 3373 | }
|
---|
| 3374 |
|
---|
| 3375 | .ps-lg-5 {
|
---|
| 3376 | padding-left: 3rem !important;
|
---|
| 3377 | }
|
---|
| 3378 |
|
---|
| 3379 | .text-lg-start {
|
---|
| 3380 | text-align: left !important;
|
---|
| 3381 | }
|
---|
| 3382 |
|
---|
| 3383 | .text-lg-end {
|
---|
| 3384 | text-align: right !important;
|
---|
| 3385 | }
|
---|
| 3386 |
|
---|
| 3387 | .text-lg-center {
|
---|
| 3388 | text-align: center !important;
|
---|
| 3389 | }
|
---|
| 3390 | }
|
---|
| 3391 | @media (min-width: 1200px) {
|
---|
| 3392 | .float-xl-start {
|
---|
| 3393 | float: left !important;
|
---|
| 3394 | }
|
---|
| 3395 |
|
---|
| 3396 | .float-xl-end {
|
---|
| 3397 | float: right !important;
|
---|
| 3398 | }
|
---|
| 3399 |
|
---|
| 3400 | .float-xl-none {
|
---|
| 3401 | float: none !important;
|
---|
| 3402 | }
|
---|
| 3403 |
|
---|
| 3404 | .d-xl-inline {
|
---|
| 3405 | display: inline !important;
|
---|
| 3406 | }
|
---|
| 3407 |
|
---|
| 3408 | .d-xl-inline-block {
|
---|
| 3409 | display: inline-block !important;
|
---|
| 3410 | }
|
---|
| 3411 |
|
---|
| 3412 | .d-xl-block {
|
---|
| 3413 | display: block !important;
|
---|
| 3414 | }
|
---|
| 3415 |
|
---|
| 3416 | .d-xl-grid {
|
---|
| 3417 | display: grid !important;
|
---|
| 3418 | }
|
---|
| 3419 |
|
---|
| 3420 | .d-xl-table {
|
---|
| 3421 | display: table !important;
|
---|
| 3422 | }
|
---|
| 3423 |
|
---|
| 3424 | .d-xl-table-row {
|
---|
| 3425 | display: table-row !important;
|
---|
| 3426 | }
|
---|
| 3427 |
|
---|
| 3428 | .d-xl-table-cell {
|
---|
| 3429 | display: table-cell !important;
|
---|
| 3430 | }
|
---|
| 3431 |
|
---|
| 3432 | .d-xl-flex {
|
---|
| 3433 | display: flex !important;
|
---|
| 3434 | }
|
---|
| 3435 |
|
---|
| 3436 | .d-xl-inline-flex {
|
---|
| 3437 | display: inline-flex !important;
|
---|
| 3438 | }
|
---|
| 3439 |
|
---|
| 3440 | .d-xl-none {
|
---|
| 3441 | display: none !important;
|
---|
| 3442 | }
|
---|
| 3443 |
|
---|
| 3444 | .flex-xl-fill {
|
---|
| 3445 | flex: 1 1 auto !important;
|
---|
| 3446 | }
|
---|
| 3447 |
|
---|
| 3448 | .flex-xl-row {
|
---|
| 3449 | flex-direction: row !important;
|
---|
| 3450 | }
|
---|
| 3451 |
|
---|
| 3452 | .flex-xl-column {
|
---|
| 3453 | flex-direction: column !important;
|
---|
| 3454 | }
|
---|
| 3455 |
|
---|
| 3456 | .flex-xl-row-reverse {
|
---|
| 3457 | flex-direction: row-reverse !important;
|
---|
| 3458 | }
|
---|
| 3459 |
|
---|
| 3460 | .flex-xl-column-reverse {
|
---|
| 3461 | flex-direction: column-reverse !important;
|
---|
| 3462 | }
|
---|
| 3463 |
|
---|
| 3464 | .flex-xl-grow-0 {
|
---|
| 3465 | flex-grow: 0 !important;
|
---|
| 3466 | }
|
---|
| 3467 |
|
---|
| 3468 | .flex-xl-grow-1 {
|
---|
| 3469 | flex-grow: 1 !important;
|
---|
| 3470 | }
|
---|
| 3471 |
|
---|
| 3472 | .flex-xl-shrink-0 {
|
---|
| 3473 | flex-shrink: 0 !important;
|
---|
| 3474 | }
|
---|
| 3475 |
|
---|
| 3476 | .flex-xl-shrink-1 {
|
---|
| 3477 | flex-shrink: 1 !important;
|
---|
| 3478 | }
|
---|
| 3479 |
|
---|
| 3480 | .flex-xl-wrap {
|
---|
| 3481 | flex-wrap: wrap !important;
|
---|
| 3482 | }
|
---|
| 3483 |
|
---|
| 3484 | .flex-xl-nowrap {
|
---|
| 3485 | flex-wrap: nowrap !important;
|
---|
| 3486 | }
|
---|
| 3487 |
|
---|
| 3488 | .flex-xl-wrap-reverse {
|
---|
| 3489 | flex-wrap: wrap-reverse !important;
|
---|
| 3490 | }
|
---|
| 3491 |
|
---|
| 3492 | .gap-xl-0 {
|
---|
| 3493 | gap: 0 !important;
|
---|
| 3494 | }
|
---|
| 3495 |
|
---|
| 3496 | .gap-xl-1 {
|
---|
| 3497 | gap: 0.25rem !important;
|
---|
| 3498 | }
|
---|
| 3499 |
|
---|
| 3500 | .gap-xl-2 {
|
---|
| 3501 | gap: 0.5rem !important;
|
---|
| 3502 | }
|
---|
| 3503 |
|
---|
| 3504 | .gap-xl-3 {
|
---|
| 3505 | gap: 1rem !important;
|
---|
| 3506 | }
|
---|
| 3507 |
|
---|
| 3508 | .gap-xl-4 {
|
---|
| 3509 | gap: 1.5rem !important;
|
---|
| 3510 | }
|
---|
| 3511 |
|
---|
| 3512 | .gap-xl-5 {
|
---|
| 3513 | gap: 3rem !important;
|
---|
| 3514 | }
|
---|
| 3515 |
|
---|
| 3516 | .justify-content-xl-start {
|
---|
| 3517 | justify-content: flex-start !important;
|
---|
| 3518 | }
|
---|
| 3519 |
|
---|
| 3520 | .justify-content-xl-end {
|
---|
| 3521 | justify-content: flex-end !important;
|
---|
| 3522 | }
|
---|
| 3523 |
|
---|
| 3524 | .justify-content-xl-center {
|
---|
| 3525 | justify-content: center !important;
|
---|
| 3526 | }
|
---|
| 3527 |
|
---|
| 3528 | .justify-content-xl-between {
|
---|
| 3529 | justify-content: space-between !important;
|
---|
| 3530 | }
|
---|
| 3531 |
|
---|
| 3532 | .justify-content-xl-around {
|
---|
| 3533 | justify-content: space-around !important;
|
---|
| 3534 | }
|
---|
| 3535 |
|
---|
| 3536 | .justify-content-xl-evenly {
|
---|
| 3537 | justify-content: space-evenly !important;
|
---|
| 3538 | }
|
---|
| 3539 |
|
---|
| 3540 | .align-items-xl-start {
|
---|
| 3541 | align-items: flex-start !important;
|
---|
| 3542 | }
|
---|
| 3543 |
|
---|
| 3544 | .align-items-xl-end {
|
---|
| 3545 | align-items: flex-end !important;
|
---|
| 3546 | }
|
---|
| 3547 |
|
---|
| 3548 | .align-items-xl-center {
|
---|
| 3549 | align-items: center !important;
|
---|
| 3550 | }
|
---|
| 3551 |
|
---|
| 3552 | .align-items-xl-baseline {
|
---|
| 3553 | align-items: baseline !important;
|
---|
| 3554 | }
|
---|
| 3555 |
|
---|
| 3556 | .align-items-xl-stretch {
|
---|
| 3557 | align-items: stretch !important;
|
---|
| 3558 | }
|
---|
| 3559 |
|
---|
| 3560 | .align-content-xl-start {
|
---|
| 3561 | align-content: flex-start !important;
|
---|
| 3562 | }
|
---|
| 3563 |
|
---|
| 3564 | .align-content-xl-end {
|
---|
| 3565 | align-content: flex-end !important;
|
---|
| 3566 | }
|
---|
| 3567 |
|
---|
| 3568 | .align-content-xl-center {
|
---|
| 3569 | align-content: center !important;
|
---|
| 3570 | }
|
---|
| 3571 |
|
---|
| 3572 | .align-content-xl-between {
|
---|
| 3573 | align-content: space-between !important;
|
---|
| 3574 | }
|
---|
| 3575 |
|
---|
| 3576 | .align-content-xl-around {
|
---|
| 3577 | align-content: space-around !important;
|
---|
| 3578 | }
|
---|
| 3579 |
|
---|
| 3580 | .align-content-xl-stretch {
|
---|
| 3581 | align-content: stretch !important;
|
---|
| 3582 | }
|
---|
| 3583 |
|
---|
| 3584 | .align-self-xl-auto {
|
---|
| 3585 | align-self: auto !important;
|
---|
| 3586 | }
|
---|
| 3587 |
|
---|
| 3588 | .align-self-xl-start {
|
---|
| 3589 | align-self: flex-start !important;
|
---|
| 3590 | }
|
---|
| 3591 |
|
---|
| 3592 | .align-self-xl-end {
|
---|
| 3593 | align-self: flex-end !important;
|
---|
| 3594 | }
|
---|
| 3595 |
|
---|
| 3596 | .align-self-xl-center {
|
---|
| 3597 | align-self: center !important;
|
---|
| 3598 | }
|
---|
| 3599 |
|
---|
| 3600 | .align-self-xl-baseline {
|
---|
| 3601 | align-self: baseline !important;
|
---|
| 3602 | }
|
---|
| 3603 |
|
---|
| 3604 | .align-self-xl-stretch {
|
---|
| 3605 | align-self: stretch !important;
|
---|
| 3606 | }
|
---|
| 3607 |
|
---|
| 3608 | .order-xl-first {
|
---|
| 3609 | order: -1 !important;
|
---|
| 3610 | }
|
---|
| 3611 |
|
---|
| 3612 | .order-xl-0 {
|
---|
| 3613 | order: 0 !important;
|
---|
| 3614 | }
|
---|
| 3615 |
|
---|
| 3616 | .order-xl-1 {
|
---|
| 3617 | order: 1 !important;
|
---|
| 3618 | }
|
---|
| 3619 |
|
---|
| 3620 | .order-xl-2 {
|
---|
| 3621 | order: 2 !important;
|
---|
| 3622 | }
|
---|
| 3623 |
|
---|
| 3624 | .order-xl-3 {
|
---|
| 3625 | order: 3 !important;
|
---|
| 3626 | }
|
---|
| 3627 |
|
---|
| 3628 | .order-xl-4 {
|
---|
| 3629 | order: 4 !important;
|
---|
| 3630 | }
|
---|
| 3631 |
|
---|
| 3632 | .order-xl-5 {
|
---|
| 3633 | order: 5 !important;
|
---|
| 3634 | }
|
---|
| 3635 |
|
---|
| 3636 | .order-xl-last {
|
---|
| 3637 | order: 6 !important;
|
---|
| 3638 | }
|
---|
| 3639 |
|
---|
| 3640 | .m-xl-0 {
|
---|
| 3641 | margin: 0 !important;
|
---|
| 3642 | }
|
---|
| 3643 |
|
---|
| 3644 | .m-xl-1 {
|
---|
| 3645 | margin: 0.25rem !important;
|
---|
| 3646 | }
|
---|
| 3647 |
|
---|
| 3648 | .m-xl-2 {
|
---|
| 3649 | margin: 0.5rem !important;
|
---|
| 3650 | }
|
---|
| 3651 |
|
---|
| 3652 | .m-xl-3 {
|
---|
| 3653 | margin: 1rem !important;
|
---|
| 3654 | }
|
---|
| 3655 |
|
---|
| 3656 | .m-xl-4 {
|
---|
| 3657 | margin: 1.5rem !important;
|
---|
| 3658 | }
|
---|
| 3659 |
|
---|
| 3660 | .m-xl-5 {
|
---|
| 3661 | margin: 3rem !important;
|
---|
| 3662 | }
|
---|
| 3663 |
|
---|
| 3664 | .m-xl-auto {
|
---|
| 3665 | margin: auto !important;
|
---|
| 3666 | }
|
---|
| 3667 |
|
---|
| 3668 | .mx-xl-0 {
|
---|
| 3669 | margin-right: 0 !important;
|
---|
| 3670 | margin-left: 0 !important;
|
---|
| 3671 | }
|
---|
| 3672 |
|
---|
| 3673 | .mx-xl-1 {
|
---|
| 3674 | margin-right: 0.25rem !important;
|
---|
| 3675 | margin-left: 0.25rem !important;
|
---|
| 3676 | }
|
---|
| 3677 |
|
---|
| 3678 | .mx-xl-2 {
|
---|
| 3679 | margin-right: 0.5rem !important;
|
---|
| 3680 | margin-left: 0.5rem !important;
|
---|
| 3681 | }
|
---|
| 3682 |
|
---|
| 3683 | .mx-xl-3 {
|
---|
| 3684 | margin-right: 1rem !important;
|
---|
| 3685 | margin-left: 1rem !important;
|
---|
| 3686 | }
|
---|
| 3687 |
|
---|
| 3688 | .mx-xl-4 {
|
---|
| 3689 | margin-right: 1.5rem !important;
|
---|
| 3690 | margin-left: 1.5rem !important;
|
---|
| 3691 | }
|
---|
| 3692 |
|
---|
| 3693 | .mx-xl-5 {
|
---|
| 3694 | margin-right: 3rem !important;
|
---|
| 3695 | margin-left: 3rem !important;
|
---|
| 3696 | }
|
---|
| 3697 |
|
---|
| 3698 | .mx-xl-auto {
|
---|
| 3699 | margin-right: auto !important;
|
---|
| 3700 | margin-left: auto !important;
|
---|
| 3701 | }
|
---|
| 3702 |
|
---|
| 3703 | .my-xl-0 {
|
---|
| 3704 | margin-top: 0 !important;
|
---|
| 3705 | margin-bottom: 0 !important;
|
---|
| 3706 | }
|
---|
| 3707 |
|
---|
| 3708 | .my-xl-1 {
|
---|
| 3709 | margin-top: 0.25rem !important;
|
---|
| 3710 | margin-bottom: 0.25rem !important;
|
---|
| 3711 | }
|
---|
| 3712 |
|
---|
| 3713 | .my-xl-2 {
|
---|
| 3714 | margin-top: 0.5rem !important;
|
---|
| 3715 | margin-bottom: 0.5rem !important;
|
---|
| 3716 | }
|
---|
| 3717 |
|
---|
| 3718 | .my-xl-3 {
|
---|
| 3719 | margin-top: 1rem !important;
|
---|
| 3720 | margin-bottom: 1rem !important;
|
---|
| 3721 | }
|
---|
| 3722 |
|
---|
| 3723 | .my-xl-4 {
|
---|
| 3724 | margin-top: 1.5rem !important;
|
---|
| 3725 | margin-bottom: 1.5rem !important;
|
---|
| 3726 | }
|
---|
| 3727 |
|
---|
| 3728 | .my-xl-5 {
|
---|
| 3729 | margin-top: 3rem !important;
|
---|
| 3730 | margin-bottom: 3rem !important;
|
---|
| 3731 | }
|
---|
| 3732 |
|
---|
| 3733 | .my-xl-auto {
|
---|
| 3734 | margin-top: auto !important;
|
---|
| 3735 | margin-bottom: auto !important;
|
---|
| 3736 | }
|
---|
| 3737 |
|
---|
| 3738 | .mt-xl-0 {
|
---|
| 3739 | margin-top: 0 !important;
|
---|
| 3740 | }
|
---|
| 3741 |
|
---|
| 3742 | .mt-xl-1 {
|
---|
| 3743 | margin-top: 0.25rem !important;
|
---|
| 3744 | }
|
---|
| 3745 |
|
---|
| 3746 | .mt-xl-2 {
|
---|
| 3747 | margin-top: 0.5rem !important;
|
---|
| 3748 | }
|
---|
| 3749 |
|
---|
| 3750 | .mt-xl-3 {
|
---|
| 3751 | margin-top: 1rem !important;
|
---|
| 3752 | }
|
---|
| 3753 |
|
---|
| 3754 | .mt-xl-4 {
|
---|
| 3755 | margin-top: 1.5rem !important;
|
---|
| 3756 | }
|
---|
| 3757 |
|
---|
| 3758 | .mt-xl-5 {
|
---|
| 3759 | margin-top: 3rem !important;
|
---|
| 3760 | }
|
---|
| 3761 |
|
---|
| 3762 | .mt-xl-auto {
|
---|
| 3763 | margin-top: auto !important;
|
---|
| 3764 | }
|
---|
| 3765 |
|
---|
| 3766 | .me-xl-0 {
|
---|
| 3767 | margin-right: 0 !important;
|
---|
| 3768 | }
|
---|
| 3769 |
|
---|
| 3770 | .me-xl-1 {
|
---|
| 3771 | margin-right: 0.25rem !important;
|
---|
| 3772 | }
|
---|
| 3773 |
|
---|
| 3774 | .me-xl-2 {
|
---|
| 3775 | margin-right: 0.5rem !important;
|
---|
| 3776 | }
|
---|
| 3777 |
|
---|
| 3778 | .me-xl-3 {
|
---|
| 3779 | margin-right: 1rem !important;
|
---|
| 3780 | }
|
---|
| 3781 |
|
---|
| 3782 | .me-xl-4 {
|
---|
| 3783 | margin-right: 1.5rem !important;
|
---|
| 3784 | }
|
---|
| 3785 |
|
---|
| 3786 | .me-xl-5 {
|
---|
| 3787 | margin-right: 3rem !important;
|
---|
| 3788 | }
|
---|
| 3789 |
|
---|
| 3790 | .me-xl-auto {
|
---|
| 3791 | margin-right: auto !important;
|
---|
| 3792 | }
|
---|
| 3793 |
|
---|
| 3794 | .mb-xl-0 {
|
---|
| 3795 | margin-bottom: 0 !important;
|
---|
| 3796 | }
|
---|
| 3797 |
|
---|
| 3798 | .mb-xl-1 {
|
---|
| 3799 | margin-bottom: 0.25rem !important;
|
---|
| 3800 | }
|
---|
| 3801 |
|
---|
| 3802 | .mb-xl-2 {
|
---|
| 3803 | margin-bottom: 0.5rem !important;
|
---|
| 3804 | }
|
---|
| 3805 |
|
---|
| 3806 | .mb-xl-3 {
|
---|
| 3807 | margin-bottom: 1rem !important;
|
---|
| 3808 | }
|
---|
| 3809 |
|
---|
| 3810 | .mb-xl-4 {
|
---|
| 3811 | margin-bottom: 1.5rem !important;
|
---|
| 3812 | }
|
---|
| 3813 |
|
---|
| 3814 | .mb-xl-5 {
|
---|
| 3815 | margin-bottom: 3rem !important;
|
---|
| 3816 | }
|
---|
| 3817 |
|
---|
| 3818 | .mb-xl-auto {
|
---|
| 3819 | margin-bottom: auto !important;
|
---|
| 3820 | }
|
---|
| 3821 |
|
---|
| 3822 | .ms-xl-0 {
|
---|
| 3823 | margin-left: 0 !important;
|
---|
| 3824 | }
|
---|
| 3825 |
|
---|
| 3826 | .ms-xl-1 {
|
---|
| 3827 | margin-left: 0.25rem !important;
|
---|
| 3828 | }
|
---|
| 3829 |
|
---|
| 3830 | .ms-xl-2 {
|
---|
| 3831 | margin-left: 0.5rem !important;
|
---|
| 3832 | }
|
---|
| 3833 |
|
---|
| 3834 | .ms-xl-3 {
|
---|
| 3835 | margin-left: 1rem !important;
|
---|
| 3836 | }
|
---|
| 3837 |
|
---|
| 3838 | .ms-xl-4 {
|
---|
| 3839 | margin-left: 1.5rem !important;
|
---|
| 3840 | }
|
---|
| 3841 |
|
---|
| 3842 | .ms-xl-5 {
|
---|
| 3843 | margin-left: 3rem !important;
|
---|
| 3844 | }
|
---|
| 3845 |
|
---|
| 3846 | .ms-xl-auto {
|
---|
| 3847 | margin-left: auto !important;
|
---|
| 3848 | }
|
---|
| 3849 |
|
---|
| 3850 | .p-xl-0 {
|
---|
| 3851 | padding: 0 !important;
|
---|
| 3852 | }
|
---|
| 3853 |
|
---|
| 3854 | .p-xl-1 {
|
---|
| 3855 | padding: 0.25rem !important;
|
---|
| 3856 | }
|
---|
| 3857 |
|
---|
| 3858 | .p-xl-2 {
|
---|
| 3859 | padding: 0.5rem !important;
|
---|
| 3860 | }
|
---|
| 3861 |
|
---|
| 3862 | .p-xl-3 {
|
---|
| 3863 | padding: 1rem !important;
|
---|
| 3864 | }
|
---|
| 3865 |
|
---|
| 3866 | .p-xl-4 {
|
---|
| 3867 | padding: 1.5rem !important;
|
---|
| 3868 | }
|
---|
| 3869 |
|
---|
| 3870 | .p-xl-5 {
|
---|
| 3871 | padding: 3rem !important;
|
---|
| 3872 | }
|
---|
| 3873 |
|
---|
| 3874 | .px-xl-0 {
|
---|
| 3875 | padding-right: 0 !important;
|
---|
| 3876 | padding-left: 0 !important;
|
---|
| 3877 | }
|
---|
| 3878 |
|
---|
| 3879 | .px-xl-1 {
|
---|
| 3880 | padding-right: 0.25rem !important;
|
---|
| 3881 | padding-left: 0.25rem !important;
|
---|
| 3882 | }
|
---|
| 3883 |
|
---|
| 3884 | .px-xl-2 {
|
---|
| 3885 | padding-right: 0.5rem !important;
|
---|
| 3886 | padding-left: 0.5rem !important;
|
---|
| 3887 | }
|
---|
| 3888 |
|
---|
| 3889 | .px-xl-3 {
|
---|
| 3890 | padding-right: 1rem !important;
|
---|
| 3891 | padding-left: 1rem !important;
|
---|
| 3892 | }
|
---|
| 3893 |
|
---|
| 3894 | .px-xl-4 {
|
---|
| 3895 | padding-right: 1.5rem !important;
|
---|
| 3896 | padding-left: 1.5rem !important;
|
---|
| 3897 | }
|
---|
| 3898 |
|
---|
| 3899 | .px-xl-5 {
|
---|
| 3900 | padding-right: 3rem !important;
|
---|
| 3901 | padding-left: 3rem !important;
|
---|
| 3902 | }
|
---|
| 3903 |
|
---|
| 3904 | .py-xl-0 {
|
---|
| 3905 | padding-top: 0 !important;
|
---|
| 3906 | padding-bottom: 0 !important;
|
---|
| 3907 | }
|
---|
| 3908 |
|
---|
| 3909 | .py-xl-1 {
|
---|
| 3910 | padding-top: 0.25rem !important;
|
---|
| 3911 | padding-bottom: 0.25rem !important;
|
---|
| 3912 | }
|
---|
| 3913 |
|
---|
| 3914 | .py-xl-2 {
|
---|
| 3915 | padding-top: 0.5rem !important;
|
---|
| 3916 | padding-bottom: 0.5rem !important;
|
---|
| 3917 | }
|
---|
| 3918 |
|
---|
| 3919 | .py-xl-3 {
|
---|
| 3920 | padding-top: 1rem !important;
|
---|
| 3921 | padding-bottom: 1rem !important;
|
---|
| 3922 | }
|
---|
| 3923 |
|
---|
| 3924 | .py-xl-4 {
|
---|
| 3925 | padding-top: 1.5rem !important;
|
---|
| 3926 | padding-bottom: 1.5rem !important;
|
---|
| 3927 | }
|
---|
| 3928 |
|
---|
| 3929 | .py-xl-5 {
|
---|
| 3930 | padding-top: 3rem !important;
|
---|
| 3931 | padding-bottom: 3rem !important;
|
---|
| 3932 | }
|
---|
| 3933 |
|
---|
| 3934 | .pt-xl-0 {
|
---|
| 3935 | padding-top: 0 !important;
|
---|
| 3936 | }
|
---|
| 3937 |
|
---|
| 3938 | .pt-xl-1 {
|
---|
| 3939 | padding-top: 0.25rem !important;
|
---|
| 3940 | }
|
---|
| 3941 |
|
---|
| 3942 | .pt-xl-2 {
|
---|
| 3943 | padding-top: 0.5rem !important;
|
---|
| 3944 | }
|
---|
| 3945 |
|
---|
| 3946 | .pt-xl-3 {
|
---|
| 3947 | padding-top: 1rem !important;
|
---|
| 3948 | }
|
---|
| 3949 |
|
---|
| 3950 | .pt-xl-4 {
|
---|
| 3951 | padding-top: 1.5rem !important;
|
---|
| 3952 | }
|
---|
| 3953 |
|
---|
| 3954 | .pt-xl-5 {
|
---|
| 3955 | padding-top: 3rem !important;
|
---|
| 3956 | }
|
---|
| 3957 |
|
---|
| 3958 | .pe-xl-0 {
|
---|
| 3959 | padding-right: 0 !important;
|
---|
| 3960 | }
|
---|
| 3961 |
|
---|
| 3962 | .pe-xl-1 {
|
---|
| 3963 | padding-right: 0.25rem !important;
|
---|
| 3964 | }
|
---|
| 3965 |
|
---|
| 3966 | .pe-xl-2 {
|
---|
| 3967 | padding-right: 0.5rem !important;
|
---|
| 3968 | }
|
---|
| 3969 |
|
---|
| 3970 | .pe-xl-3 {
|
---|
| 3971 | padding-right: 1rem !important;
|
---|
| 3972 | }
|
---|
| 3973 |
|
---|
| 3974 | .pe-xl-4 {
|
---|
| 3975 | padding-right: 1.5rem !important;
|
---|
| 3976 | }
|
---|
| 3977 |
|
---|
| 3978 | .pe-xl-5 {
|
---|
| 3979 | padding-right: 3rem !important;
|
---|
| 3980 | }
|
---|
| 3981 |
|
---|
| 3982 | .pb-xl-0 {
|
---|
| 3983 | padding-bottom: 0 !important;
|
---|
| 3984 | }
|
---|
| 3985 |
|
---|
| 3986 | .pb-xl-1 {
|
---|
| 3987 | padding-bottom: 0.25rem !important;
|
---|
| 3988 | }
|
---|
| 3989 |
|
---|
| 3990 | .pb-xl-2 {
|
---|
| 3991 | padding-bottom: 0.5rem !important;
|
---|
| 3992 | }
|
---|
| 3993 |
|
---|
| 3994 | .pb-xl-3 {
|
---|
| 3995 | padding-bottom: 1rem !important;
|
---|
| 3996 | }
|
---|
| 3997 |
|
---|
| 3998 | .pb-xl-4 {
|
---|
| 3999 | padding-bottom: 1.5rem !important;
|
---|
| 4000 | }
|
---|
| 4001 |
|
---|
| 4002 | .pb-xl-5 {
|
---|
| 4003 | padding-bottom: 3rem !important;
|
---|
| 4004 | }
|
---|
| 4005 |
|
---|
| 4006 | .ps-xl-0 {
|
---|
| 4007 | padding-left: 0 !important;
|
---|
| 4008 | }
|
---|
| 4009 |
|
---|
| 4010 | .ps-xl-1 {
|
---|
| 4011 | padding-left: 0.25rem !important;
|
---|
| 4012 | }
|
---|
| 4013 |
|
---|
| 4014 | .ps-xl-2 {
|
---|
| 4015 | padding-left: 0.5rem !important;
|
---|
| 4016 | }
|
---|
| 4017 |
|
---|
| 4018 | .ps-xl-3 {
|
---|
| 4019 | padding-left: 1rem !important;
|
---|
| 4020 | }
|
---|
| 4021 |
|
---|
| 4022 | .ps-xl-4 {
|
---|
| 4023 | padding-left: 1.5rem !important;
|
---|
| 4024 | }
|
---|
| 4025 |
|
---|
| 4026 | .ps-xl-5 {
|
---|
| 4027 | padding-left: 3rem !important;
|
---|
| 4028 | }
|
---|
| 4029 |
|
---|
| 4030 | .text-xl-start {
|
---|
| 4031 | text-align: left !important;
|
---|
| 4032 | }
|
---|
| 4033 |
|
---|
| 4034 | .text-xl-end {
|
---|
| 4035 | text-align: right !important;
|
---|
| 4036 | }
|
---|
| 4037 |
|
---|
| 4038 | .text-xl-center {
|
---|
| 4039 | text-align: center !important;
|
---|
| 4040 | }
|
---|
| 4041 | }
|
---|
| 4042 | @media (min-width: 1400px) {
|
---|
| 4043 | .float-xxl-start {
|
---|
| 4044 | float: left !important;
|
---|
| 4045 | }
|
---|
| 4046 |
|
---|
| 4047 | .float-xxl-end {
|
---|
| 4048 | float: right !important;
|
---|
| 4049 | }
|
---|
| 4050 |
|
---|
| 4051 | .float-xxl-none {
|
---|
| 4052 | float: none !important;
|
---|
| 4053 | }
|
---|
| 4054 |
|
---|
| 4055 | .d-xxl-inline {
|
---|
| 4056 | display: inline !important;
|
---|
| 4057 | }
|
---|
| 4058 |
|
---|
| 4059 | .d-xxl-inline-block {
|
---|
| 4060 | display: inline-block !important;
|
---|
| 4061 | }
|
---|
| 4062 |
|
---|
| 4063 | .d-xxl-block {
|
---|
| 4064 | display: block !important;
|
---|
| 4065 | }
|
---|
| 4066 |
|
---|
| 4067 | .d-xxl-grid {
|
---|
| 4068 | display: grid !important;
|
---|
| 4069 | }
|
---|
| 4070 |
|
---|
| 4071 | .d-xxl-table {
|
---|
| 4072 | display: table !important;
|
---|
| 4073 | }
|
---|
| 4074 |
|
---|
| 4075 | .d-xxl-table-row {
|
---|
| 4076 | display: table-row !important;
|
---|
| 4077 | }
|
---|
| 4078 |
|
---|
| 4079 | .d-xxl-table-cell {
|
---|
| 4080 | display: table-cell !important;
|
---|
| 4081 | }
|
---|
| 4082 |
|
---|
| 4083 | .d-xxl-flex {
|
---|
| 4084 | display: flex !important;
|
---|
| 4085 | }
|
---|
| 4086 |
|
---|
| 4087 | .d-xxl-inline-flex {
|
---|
| 4088 | display: inline-flex !important;
|
---|
| 4089 | }
|
---|
| 4090 |
|
---|
| 4091 | .d-xxl-none {
|
---|
| 4092 | display: none !important;
|
---|
| 4093 | }
|
---|
| 4094 |
|
---|
| 4095 | .flex-xxl-fill {
|
---|
| 4096 | flex: 1 1 auto !important;
|
---|
| 4097 | }
|
---|
| 4098 |
|
---|
| 4099 | .flex-xxl-row {
|
---|
| 4100 | flex-direction: row !important;
|
---|
| 4101 | }
|
---|
| 4102 |
|
---|
| 4103 | .flex-xxl-column {
|
---|
| 4104 | flex-direction: column !important;
|
---|
| 4105 | }
|
---|
| 4106 |
|
---|
| 4107 | .flex-xxl-row-reverse {
|
---|
| 4108 | flex-direction: row-reverse !important;
|
---|
| 4109 | }
|
---|
| 4110 |
|
---|
| 4111 | .flex-xxl-column-reverse {
|
---|
| 4112 | flex-direction: column-reverse !important;
|
---|
| 4113 | }
|
---|
| 4114 |
|
---|
| 4115 | .flex-xxl-grow-0 {
|
---|
| 4116 | flex-grow: 0 !important;
|
---|
| 4117 | }
|
---|
| 4118 |
|
---|
| 4119 | .flex-xxl-grow-1 {
|
---|
| 4120 | flex-grow: 1 !important;
|
---|
| 4121 | }
|
---|
| 4122 |
|
---|
| 4123 | .flex-xxl-shrink-0 {
|
---|
| 4124 | flex-shrink: 0 !important;
|
---|
| 4125 | }
|
---|
| 4126 |
|
---|
| 4127 | .flex-xxl-shrink-1 {
|
---|
| 4128 | flex-shrink: 1 !important;
|
---|
| 4129 | }
|
---|
| 4130 |
|
---|
| 4131 | .flex-xxl-wrap {
|
---|
| 4132 | flex-wrap: wrap !important;
|
---|
| 4133 | }
|
---|
| 4134 |
|
---|
| 4135 | .flex-xxl-nowrap {
|
---|
| 4136 | flex-wrap: nowrap !important;
|
---|
| 4137 | }
|
---|
| 4138 |
|
---|
| 4139 | .flex-xxl-wrap-reverse {
|
---|
| 4140 | flex-wrap: wrap-reverse !important;
|
---|
| 4141 | }
|
---|
| 4142 |
|
---|
| 4143 | .gap-xxl-0 {
|
---|
| 4144 | gap: 0 !important;
|
---|
| 4145 | }
|
---|
| 4146 |
|
---|
| 4147 | .gap-xxl-1 {
|
---|
| 4148 | gap: 0.25rem !important;
|
---|
| 4149 | }
|
---|
| 4150 |
|
---|
| 4151 | .gap-xxl-2 {
|
---|
| 4152 | gap: 0.5rem !important;
|
---|
| 4153 | }
|
---|
| 4154 |
|
---|
| 4155 | .gap-xxl-3 {
|
---|
| 4156 | gap: 1rem !important;
|
---|
| 4157 | }
|
---|
| 4158 |
|
---|
| 4159 | .gap-xxl-4 {
|
---|
| 4160 | gap: 1.5rem !important;
|
---|
| 4161 | }
|
---|
| 4162 |
|
---|
| 4163 | .gap-xxl-5 {
|
---|
| 4164 | gap: 3rem !important;
|
---|
| 4165 | }
|
---|
| 4166 |
|
---|
| 4167 | .justify-content-xxl-start {
|
---|
| 4168 | justify-content: flex-start !important;
|
---|
| 4169 | }
|
---|
| 4170 |
|
---|
| 4171 | .justify-content-xxl-end {
|
---|
| 4172 | justify-content: flex-end !important;
|
---|
| 4173 | }
|
---|
| 4174 |
|
---|
| 4175 | .justify-content-xxl-center {
|
---|
| 4176 | justify-content: center !important;
|
---|
| 4177 | }
|
---|
| 4178 |
|
---|
| 4179 | .justify-content-xxl-between {
|
---|
| 4180 | justify-content: space-between !important;
|
---|
| 4181 | }
|
---|
| 4182 |
|
---|
| 4183 | .justify-content-xxl-around {
|
---|
| 4184 | justify-content: space-around !important;
|
---|
| 4185 | }
|
---|
| 4186 |
|
---|
| 4187 | .justify-content-xxl-evenly {
|
---|
| 4188 | justify-content: space-evenly !important;
|
---|
| 4189 | }
|
---|
| 4190 |
|
---|
| 4191 | .align-items-xxl-start {
|
---|
| 4192 | align-items: flex-start !important;
|
---|
| 4193 | }
|
---|
| 4194 |
|
---|
| 4195 | .align-items-xxl-end {
|
---|
| 4196 | align-items: flex-end !important;
|
---|
| 4197 | }
|
---|
| 4198 |
|
---|
| 4199 | .align-items-xxl-center {
|
---|
| 4200 | align-items: center !important;
|
---|
| 4201 | }
|
---|
| 4202 |
|
---|
| 4203 | .align-items-xxl-baseline {
|
---|
| 4204 | align-items: baseline !important;
|
---|
| 4205 | }
|
---|
| 4206 |
|
---|
| 4207 | .align-items-xxl-stretch {
|
---|
| 4208 | align-items: stretch !important;
|
---|
| 4209 | }
|
---|
| 4210 |
|
---|
| 4211 | .align-content-xxl-start {
|
---|
| 4212 | align-content: flex-start !important;
|
---|
| 4213 | }
|
---|
| 4214 |
|
---|
| 4215 | .align-content-xxl-end {
|
---|
| 4216 | align-content: flex-end !important;
|
---|
| 4217 | }
|
---|
| 4218 |
|
---|
| 4219 | .align-content-xxl-center {
|
---|
| 4220 | align-content: center !important;
|
---|
| 4221 | }
|
---|
| 4222 |
|
---|
| 4223 | .align-content-xxl-between {
|
---|
| 4224 | align-content: space-between !important;
|
---|
| 4225 | }
|
---|
| 4226 |
|
---|
| 4227 | .align-content-xxl-around {
|
---|
| 4228 | align-content: space-around !important;
|
---|
| 4229 | }
|
---|
| 4230 |
|
---|
| 4231 | .align-content-xxl-stretch {
|
---|
| 4232 | align-content: stretch !important;
|
---|
| 4233 | }
|
---|
| 4234 |
|
---|
| 4235 | .align-self-xxl-auto {
|
---|
| 4236 | align-self: auto !important;
|
---|
| 4237 | }
|
---|
| 4238 |
|
---|
| 4239 | .align-self-xxl-start {
|
---|
| 4240 | align-self: flex-start !important;
|
---|
| 4241 | }
|
---|
| 4242 |
|
---|
| 4243 | .align-self-xxl-end {
|
---|
| 4244 | align-self: flex-end !important;
|
---|
| 4245 | }
|
---|
| 4246 |
|
---|
| 4247 | .align-self-xxl-center {
|
---|
| 4248 | align-self: center !important;
|
---|
| 4249 | }
|
---|
| 4250 |
|
---|
| 4251 | .align-self-xxl-baseline {
|
---|
| 4252 | align-self: baseline !important;
|
---|
| 4253 | }
|
---|
| 4254 |
|
---|
| 4255 | .align-self-xxl-stretch {
|
---|
| 4256 | align-self: stretch !important;
|
---|
| 4257 | }
|
---|
| 4258 |
|
---|
| 4259 | .order-xxl-first {
|
---|
| 4260 | order: -1 !important;
|
---|
| 4261 | }
|
---|
| 4262 |
|
---|
| 4263 | .order-xxl-0 {
|
---|
| 4264 | order: 0 !important;
|
---|
| 4265 | }
|
---|
| 4266 |
|
---|
| 4267 | .order-xxl-1 {
|
---|
| 4268 | order: 1 !important;
|
---|
| 4269 | }
|
---|
| 4270 |
|
---|
| 4271 | .order-xxl-2 {
|
---|
| 4272 | order: 2 !important;
|
---|
| 4273 | }
|
---|
| 4274 |
|
---|
| 4275 | .order-xxl-3 {
|
---|
| 4276 | order: 3 !important;
|
---|
| 4277 | }
|
---|
| 4278 |
|
---|
| 4279 | .order-xxl-4 {
|
---|
| 4280 | order: 4 !important;
|
---|
| 4281 | }
|
---|
| 4282 |
|
---|
| 4283 | .order-xxl-5 {
|
---|
| 4284 | order: 5 !important;
|
---|
| 4285 | }
|
---|
| 4286 |
|
---|
| 4287 | .order-xxl-last {
|
---|
| 4288 | order: 6 !important;
|
---|
| 4289 | }
|
---|
| 4290 |
|
---|
| 4291 | .m-xxl-0 {
|
---|
| 4292 | margin: 0 !important;
|
---|
| 4293 | }
|
---|
| 4294 |
|
---|
| 4295 | .m-xxl-1 {
|
---|
| 4296 | margin: 0.25rem !important;
|
---|
| 4297 | }
|
---|
| 4298 |
|
---|
| 4299 | .m-xxl-2 {
|
---|
| 4300 | margin: 0.5rem !important;
|
---|
| 4301 | }
|
---|
| 4302 |
|
---|
| 4303 | .m-xxl-3 {
|
---|
| 4304 | margin: 1rem !important;
|
---|
| 4305 | }
|
---|
| 4306 |
|
---|
| 4307 | .m-xxl-4 {
|
---|
| 4308 | margin: 1.5rem !important;
|
---|
| 4309 | }
|
---|
| 4310 |
|
---|
| 4311 | .m-xxl-5 {
|
---|
| 4312 | margin: 3rem !important;
|
---|
| 4313 | }
|
---|
| 4314 |
|
---|
| 4315 | .m-xxl-auto {
|
---|
| 4316 | margin: auto !important;
|
---|
| 4317 | }
|
---|
| 4318 |
|
---|
| 4319 | .mx-xxl-0 {
|
---|
| 4320 | margin-right: 0 !important;
|
---|
| 4321 | margin-left: 0 !important;
|
---|
| 4322 | }
|
---|
| 4323 |
|
---|
| 4324 | .mx-xxl-1 {
|
---|
| 4325 | margin-right: 0.25rem !important;
|
---|
| 4326 | margin-left: 0.25rem !important;
|
---|
| 4327 | }
|
---|
| 4328 |
|
---|
| 4329 | .mx-xxl-2 {
|
---|
| 4330 | margin-right: 0.5rem !important;
|
---|
| 4331 | margin-left: 0.5rem !important;
|
---|
| 4332 | }
|
---|
| 4333 |
|
---|
| 4334 | .mx-xxl-3 {
|
---|
| 4335 | margin-right: 1rem !important;
|
---|
| 4336 | margin-left: 1rem !important;
|
---|
| 4337 | }
|
---|
| 4338 |
|
---|
| 4339 | .mx-xxl-4 {
|
---|
| 4340 | margin-right: 1.5rem !important;
|
---|
| 4341 | margin-left: 1.5rem !important;
|
---|
| 4342 | }
|
---|
| 4343 |
|
---|
| 4344 | .mx-xxl-5 {
|
---|
| 4345 | margin-right: 3rem !important;
|
---|
| 4346 | margin-left: 3rem !important;
|
---|
| 4347 | }
|
---|
| 4348 |
|
---|
| 4349 | .mx-xxl-auto {
|
---|
| 4350 | margin-right: auto !important;
|
---|
| 4351 | margin-left: auto !important;
|
---|
| 4352 | }
|
---|
| 4353 |
|
---|
| 4354 | .my-xxl-0 {
|
---|
| 4355 | margin-top: 0 !important;
|
---|
| 4356 | margin-bottom: 0 !important;
|
---|
| 4357 | }
|
---|
| 4358 |
|
---|
| 4359 | .my-xxl-1 {
|
---|
| 4360 | margin-top: 0.25rem !important;
|
---|
| 4361 | margin-bottom: 0.25rem !important;
|
---|
| 4362 | }
|
---|
| 4363 |
|
---|
| 4364 | .my-xxl-2 {
|
---|
| 4365 | margin-top: 0.5rem !important;
|
---|
| 4366 | margin-bottom: 0.5rem !important;
|
---|
| 4367 | }
|
---|
| 4368 |
|
---|
| 4369 | .my-xxl-3 {
|
---|
| 4370 | margin-top: 1rem !important;
|
---|
| 4371 | margin-bottom: 1rem !important;
|
---|
| 4372 | }
|
---|
| 4373 |
|
---|
| 4374 | .my-xxl-4 {
|
---|
| 4375 | margin-top: 1.5rem !important;
|
---|
| 4376 | margin-bottom: 1.5rem !important;
|
---|
| 4377 | }
|
---|
| 4378 |
|
---|
| 4379 | .my-xxl-5 {
|
---|
| 4380 | margin-top: 3rem !important;
|
---|
| 4381 | margin-bottom: 3rem !important;
|
---|
| 4382 | }
|
---|
| 4383 |
|
---|
| 4384 | .my-xxl-auto {
|
---|
| 4385 | margin-top: auto !important;
|
---|
| 4386 | margin-bottom: auto !important;
|
---|
| 4387 | }
|
---|
| 4388 |
|
---|
| 4389 | .mt-xxl-0 {
|
---|
| 4390 | margin-top: 0 !important;
|
---|
| 4391 | }
|
---|
| 4392 |
|
---|
| 4393 | .mt-xxl-1 {
|
---|
| 4394 | margin-top: 0.25rem !important;
|
---|
| 4395 | }
|
---|
| 4396 |
|
---|
| 4397 | .mt-xxl-2 {
|
---|
| 4398 | margin-top: 0.5rem !important;
|
---|
| 4399 | }
|
---|
| 4400 |
|
---|
| 4401 | .mt-xxl-3 {
|
---|
| 4402 | margin-top: 1rem !important;
|
---|
| 4403 | }
|
---|
| 4404 |
|
---|
| 4405 | .mt-xxl-4 {
|
---|
| 4406 | margin-top: 1.5rem !important;
|
---|
| 4407 | }
|
---|
| 4408 |
|
---|
| 4409 | .mt-xxl-5 {
|
---|
| 4410 | margin-top: 3rem !important;
|
---|
| 4411 | }
|
---|
| 4412 |
|
---|
| 4413 | .mt-xxl-auto {
|
---|
| 4414 | margin-top: auto !important;
|
---|
| 4415 | }
|
---|
| 4416 |
|
---|
| 4417 | .me-xxl-0 {
|
---|
| 4418 | margin-right: 0 !important;
|
---|
| 4419 | }
|
---|
| 4420 |
|
---|
| 4421 | .me-xxl-1 {
|
---|
| 4422 | margin-right: 0.25rem !important;
|
---|
| 4423 | }
|
---|
| 4424 |
|
---|
| 4425 | .me-xxl-2 {
|
---|
| 4426 | margin-right: 0.5rem !important;
|
---|
| 4427 | }
|
---|
| 4428 |
|
---|
| 4429 | .me-xxl-3 {
|
---|
| 4430 | margin-right: 1rem !important;
|
---|
| 4431 | }
|
---|
| 4432 |
|
---|
| 4433 | .me-xxl-4 {
|
---|
| 4434 | margin-right: 1.5rem !important;
|
---|
| 4435 | }
|
---|
| 4436 |
|
---|
| 4437 | .me-xxl-5 {
|
---|
| 4438 | margin-right: 3rem !important;
|
---|
| 4439 | }
|
---|
| 4440 |
|
---|
| 4441 | .me-xxl-auto {
|
---|
| 4442 | margin-right: auto !important;
|
---|
| 4443 | }
|
---|
| 4444 |
|
---|
| 4445 | .mb-xxl-0 {
|
---|
| 4446 | margin-bottom: 0 !important;
|
---|
| 4447 | }
|
---|
| 4448 |
|
---|
| 4449 | .mb-xxl-1 {
|
---|
| 4450 | margin-bottom: 0.25rem !important;
|
---|
| 4451 | }
|
---|
| 4452 |
|
---|
| 4453 | .mb-xxl-2 {
|
---|
| 4454 | margin-bottom: 0.5rem !important;
|
---|
| 4455 | }
|
---|
| 4456 |
|
---|
| 4457 | .mb-xxl-3 {
|
---|
| 4458 | margin-bottom: 1rem !important;
|
---|
| 4459 | }
|
---|
| 4460 |
|
---|
| 4461 | .mb-xxl-4 {
|
---|
| 4462 | margin-bottom: 1.5rem !important;
|
---|
| 4463 | }
|
---|
| 4464 |
|
---|
| 4465 | .mb-xxl-5 {
|
---|
| 4466 | margin-bottom: 3rem !important;
|
---|
| 4467 | }
|
---|
| 4468 |
|
---|
| 4469 | .mb-xxl-auto {
|
---|
| 4470 | margin-bottom: auto !important;
|
---|
| 4471 | }
|
---|
| 4472 |
|
---|
| 4473 | .ms-xxl-0 {
|
---|
| 4474 | margin-left: 0 !important;
|
---|
| 4475 | }
|
---|
| 4476 |
|
---|
| 4477 | .ms-xxl-1 {
|
---|
| 4478 | margin-left: 0.25rem !important;
|
---|
| 4479 | }
|
---|
| 4480 |
|
---|
| 4481 | .ms-xxl-2 {
|
---|
| 4482 | margin-left: 0.5rem !important;
|
---|
| 4483 | }
|
---|
| 4484 |
|
---|
| 4485 | .ms-xxl-3 {
|
---|
| 4486 | margin-left: 1rem !important;
|
---|
| 4487 | }
|
---|
| 4488 |
|
---|
| 4489 | .ms-xxl-4 {
|
---|
| 4490 | margin-left: 1.5rem !important;
|
---|
| 4491 | }
|
---|
| 4492 |
|
---|
| 4493 | .ms-xxl-5 {
|
---|
| 4494 | margin-left: 3rem !important;
|
---|
| 4495 | }
|
---|
| 4496 |
|
---|
| 4497 | .ms-xxl-auto {
|
---|
| 4498 | margin-left: auto !important;
|
---|
| 4499 | }
|
---|
| 4500 |
|
---|
| 4501 | .p-xxl-0 {
|
---|
| 4502 | padding: 0 !important;
|
---|
| 4503 | }
|
---|
| 4504 |
|
---|
| 4505 | .p-xxl-1 {
|
---|
| 4506 | padding: 0.25rem !important;
|
---|
| 4507 | }
|
---|
| 4508 |
|
---|
| 4509 | .p-xxl-2 {
|
---|
| 4510 | padding: 0.5rem !important;
|
---|
| 4511 | }
|
---|
| 4512 |
|
---|
| 4513 | .p-xxl-3 {
|
---|
| 4514 | padding: 1rem !important;
|
---|
| 4515 | }
|
---|
| 4516 |
|
---|
| 4517 | .p-xxl-4 {
|
---|
| 4518 | padding: 1.5rem !important;
|
---|
| 4519 | }
|
---|
| 4520 |
|
---|
| 4521 | .p-xxl-5 {
|
---|
| 4522 | padding: 3rem !important;
|
---|
| 4523 | }
|
---|
| 4524 |
|
---|
| 4525 | .px-xxl-0 {
|
---|
| 4526 | padding-right: 0 !important;
|
---|
| 4527 | padding-left: 0 !important;
|
---|
| 4528 | }
|
---|
| 4529 |
|
---|
| 4530 | .px-xxl-1 {
|
---|
| 4531 | padding-right: 0.25rem !important;
|
---|
| 4532 | padding-left: 0.25rem !important;
|
---|
| 4533 | }
|
---|
| 4534 |
|
---|
| 4535 | .px-xxl-2 {
|
---|
| 4536 | padding-right: 0.5rem !important;
|
---|
| 4537 | padding-left: 0.5rem !important;
|
---|
| 4538 | }
|
---|
| 4539 |
|
---|
| 4540 | .px-xxl-3 {
|
---|
| 4541 | padding-right: 1rem !important;
|
---|
| 4542 | padding-left: 1rem !important;
|
---|
| 4543 | }
|
---|
| 4544 |
|
---|
| 4545 | .px-xxl-4 {
|
---|
| 4546 | padding-right: 1.5rem !important;
|
---|
| 4547 | padding-left: 1.5rem !important;
|
---|
| 4548 | }
|
---|
| 4549 |
|
---|
| 4550 | .px-xxl-5 {
|
---|
| 4551 | padding-right: 3rem !important;
|
---|
| 4552 | padding-left: 3rem !important;
|
---|
| 4553 | }
|
---|
| 4554 |
|
---|
| 4555 | .py-xxl-0 {
|
---|
| 4556 | padding-top: 0 !important;
|
---|
| 4557 | padding-bottom: 0 !important;
|
---|
| 4558 | }
|
---|
| 4559 |
|
---|
| 4560 | .py-xxl-1 {
|
---|
| 4561 | padding-top: 0.25rem !important;
|
---|
| 4562 | padding-bottom: 0.25rem !important;
|
---|
| 4563 | }
|
---|
| 4564 |
|
---|
| 4565 | .py-xxl-2 {
|
---|
| 4566 | padding-top: 0.5rem !important;
|
---|
| 4567 | padding-bottom: 0.5rem !important;
|
---|
| 4568 | }
|
---|
| 4569 |
|
---|
| 4570 | .py-xxl-3 {
|
---|
| 4571 | padding-top: 1rem !important;
|
---|
| 4572 | padding-bottom: 1rem !important;
|
---|
| 4573 | }
|
---|
| 4574 |
|
---|
| 4575 | .py-xxl-4 {
|
---|
| 4576 | padding-top: 1.5rem !important;
|
---|
| 4577 | padding-bottom: 1.5rem !important;
|
---|
| 4578 | }
|
---|
| 4579 |
|
---|
| 4580 | .py-xxl-5 {
|
---|
| 4581 | padding-top: 3rem !important;
|
---|
| 4582 | padding-bottom: 3rem !important;
|
---|
| 4583 | }
|
---|
| 4584 |
|
---|
| 4585 | .pt-xxl-0 {
|
---|
| 4586 | padding-top: 0 !important;
|
---|
| 4587 | }
|
---|
| 4588 |
|
---|
| 4589 | .pt-xxl-1 {
|
---|
| 4590 | padding-top: 0.25rem !important;
|
---|
| 4591 | }
|
---|
| 4592 |
|
---|
| 4593 | .pt-xxl-2 {
|
---|
| 4594 | padding-top: 0.5rem !important;
|
---|
| 4595 | }
|
---|
| 4596 |
|
---|
| 4597 | .pt-xxl-3 {
|
---|
| 4598 | padding-top: 1rem !important;
|
---|
| 4599 | }
|
---|
| 4600 |
|
---|
| 4601 | .pt-xxl-4 {
|
---|
| 4602 | padding-top: 1.5rem !important;
|
---|
| 4603 | }
|
---|
| 4604 |
|
---|
| 4605 | .pt-xxl-5 {
|
---|
| 4606 | padding-top: 3rem !important;
|
---|
| 4607 | }
|
---|
| 4608 |
|
---|
| 4609 | .pe-xxl-0 {
|
---|
| 4610 | padding-right: 0 !important;
|
---|
| 4611 | }
|
---|
| 4612 |
|
---|
| 4613 | .pe-xxl-1 {
|
---|
| 4614 | padding-right: 0.25rem !important;
|
---|
| 4615 | }
|
---|
| 4616 |
|
---|
| 4617 | .pe-xxl-2 {
|
---|
| 4618 | padding-right: 0.5rem !important;
|
---|
| 4619 | }
|
---|
| 4620 |
|
---|
| 4621 | .pe-xxl-3 {
|
---|
| 4622 | padding-right: 1rem !important;
|
---|
| 4623 | }
|
---|
| 4624 |
|
---|
| 4625 | .pe-xxl-4 {
|
---|
| 4626 | padding-right: 1.5rem !important;
|
---|
| 4627 | }
|
---|
| 4628 |
|
---|
| 4629 | .pe-xxl-5 {
|
---|
| 4630 | padding-right: 3rem !important;
|
---|
| 4631 | }
|
---|
| 4632 |
|
---|
| 4633 | .pb-xxl-0 {
|
---|
| 4634 | padding-bottom: 0 !important;
|
---|
| 4635 | }
|
---|
| 4636 |
|
---|
| 4637 | .pb-xxl-1 {
|
---|
| 4638 | padding-bottom: 0.25rem !important;
|
---|
| 4639 | }
|
---|
| 4640 |
|
---|
| 4641 | .pb-xxl-2 {
|
---|
| 4642 | padding-bottom: 0.5rem !important;
|
---|
| 4643 | }
|
---|
| 4644 |
|
---|
| 4645 | .pb-xxl-3 {
|
---|
| 4646 | padding-bottom: 1rem !important;
|
---|
| 4647 | }
|
---|
| 4648 |
|
---|
| 4649 | .pb-xxl-4 {
|
---|
| 4650 | padding-bottom: 1.5rem !important;
|
---|
| 4651 | }
|
---|
| 4652 |
|
---|
| 4653 | .pb-xxl-5 {
|
---|
| 4654 | padding-bottom: 3rem !important;
|
---|
| 4655 | }
|
---|
| 4656 |
|
---|
| 4657 | .ps-xxl-0 {
|
---|
| 4658 | padding-left: 0 !important;
|
---|
| 4659 | }
|
---|
| 4660 |
|
---|
| 4661 | .ps-xxl-1 {
|
---|
| 4662 | padding-left: 0.25rem !important;
|
---|
| 4663 | }
|
---|
| 4664 |
|
---|
| 4665 | .ps-xxl-2 {
|
---|
| 4666 | padding-left: 0.5rem !important;
|
---|
| 4667 | }
|
---|
| 4668 |
|
---|
| 4669 | .ps-xxl-3 {
|
---|
| 4670 | padding-left: 1rem !important;
|
---|
| 4671 | }
|
---|
| 4672 |
|
---|
| 4673 | .ps-xxl-4 {
|
---|
| 4674 | padding-left: 1.5rem !important;
|
---|
| 4675 | }
|
---|
| 4676 |
|
---|
| 4677 | .ps-xxl-5 {
|
---|
| 4678 | padding-left: 3rem !important;
|
---|
| 4679 | }
|
---|
| 4680 |
|
---|
| 4681 | .text-xxl-start {
|
---|
| 4682 | text-align: left !important;
|
---|
| 4683 | }
|
---|
| 4684 |
|
---|
| 4685 | .text-xxl-end {
|
---|
| 4686 | text-align: right !important;
|
---|
| 4687 | }
|
---|
| 4688 |
|
---|
| 4689 | .text-xxl-center {
|
---|
| 4690 | text-align: center !important;
|
---|
| 4691 | }
|
---|
| 4692 | }
|
---|
| 4693 | @media (min-width: 1200px) {
|
---|
| 4694 | .fs-1 {
|
---|
| 4695 | font-size: 2.5rem !important;
|
---|
| 4696 | }
|
---|
| 4697 |
|
---|
| 4698 | .fs-2 {
|
---|
| 4699 | font-size: 2rem !important;
|
---|
| 4700 | }
|
---|
| 4701 |
|
---|
| 4702 | .fs-3 {
|
---|
| 4703 | font-size: 1.75rem !important;
|
---|
| 4704 | }
|
---|
| 4705 |
|
---|
| 4706 | .fs-4 {
|
---|
| 4707 | font-size: 1.5rem !important;
|
---|
| 4708 | }
|
---|
| 4709 | }
|
---|
| 4710 | @media print {
|
---|
| 4711 | .d-print-inline {
|
---|
| 4712 | display: inline !important;
|
---|
| 4713 | }
|
---|
| 4714 |
|
---|
| 4715 | .d-print-inline-block {
|
---|
| 4716 | display: inline-block !important;
|
---|
| 4717 | }
|
---|
| 4718 |
|
---|
| 4719 | .d-print-block {
|
---|
| 4720 | display: block !important;
|
---|
| 4721 | }
|
---|
| 4722 |
|
---|
| 4723 | .d-print-grid {
|
---|
| 4724 | display: grid !important;
|
---|
| 4725 | }
|
---|
| 4726 |
|
---|
| 4727 | .d-print-table {
|
---|
| 4728 | display: table !important;
|
---|
| 4729 | }
|
---|
| 4730 |
|
---|
| 4731 | .d-print-table-row {
|
---|
| 4732 | display: table-row !important;
|
---|
| 4733 | }
|
---|
| 4734 |
|
---|
| 4735 | .d-print-table-cell {
|
---|
| 4736 | display: table-cell !important;
|
---|
| 4737 | }
|
---|
| 4738 |
|
---|
| 4739 | .d-print-flex {
|
---|
| 4740 | display: flex !important;
|
---|
| 4741 | }
|
---|
| 4742 |
|
---|
| 4743 | .d-print-inline-flex {
|
---|
| 4744 | display: inline-flex !important;
|
---|
| 4745 | }
|
---|
| 4746 |
|
---|
| 4747 | .d-print-none {
|
---|
| 4748 | display: none !important;
|
---|
| 4749 | }
|
---|
| 4750 | }
|
---|
| 4751 |
|
---|
| 4752 | /*# sourceMappingURL=bootstrap-utilities.css.map */ |
---|