tabler.css 339.0 KB
Newer Older
C
codecalm 已提交
1
/*!
C
codecalm 已提交
2 3
* Tabler v1.0.0-beta3 (https://tabler.io)
* @version 1.0.0-beta3
C
codecalm 已提交
4
* @link https://tabler.io
C
codecalm 已提交
5 6
* Copyright 2018-2021 The Tabler Authors
* Copyright 2018-2021 codecalm.net Paweł Kuna
C
codecalm 已提交
7 8
* Licensed under MIT (https://github.com/tabler/tabler/blob/master/LICENSE)
*/
C
codecalm 已提交
9
@charset "UTF-8";
C
codecalm 已提交
10
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
C
codecalm 已提交
11
:root {
C
codecalm 已提交
12 13
  --tblr-blue: #206bc4;
  --tblr-azure: #4299e1;
M
Michal Wolny 已提交
14 15 16 17 18 19 20 21 22
  --tblr-indigo: #4263eb;
  --tblr-purple: #ae3ec9;
  --tblr-pink: #d6336c;
  --tblr-red: #d63939;
  --tblr-orange: #f76707;
  --tblr-yellow: #f59f00;
  --tblr-lime: #74b816;
  --tblr-green: #2fb344;
  --tblr-teal: #0ca678;
C
codecalm 已提交
23
  --tblr-cyan: #17a2b8;
24 25 26 27 28 29 30 31 32
  --tblr-gray-100: #f4f6fa;
  --tblr-gray-200: #f0f2f6;
  --tblr-gray-300: #e7eaef;
  --tblr-gray-400: #dbdee3;
  --tblr-gray-500: #c6cad0;
  --tblr-gray-600: #a0a6ae;
  --tblr-gray-700: #6e7680;
  --tblr-gray-800: #444e5a;
  --tblr-gray-900: #232e3c;
C
codecalm 已提交
33
  --tblr-primary: #206bc4;
C
codecalm 已提交
34
  --tblr-secondary: #656d77;
M
Michal Wolny 已提交
35
  --tblr-success: #2fb344;
C
codecalm 已提交
36
  --tblr-info: #4299e1;
M
Michal Wolny 已提交
37 38
  --tblr-warning: #f76707;
  --tblr-danger: #d63939;
C
codecalm 已提交
39
  --tblr-light: #f4f6fa;
C
codecalm 已提交
40
  --tblr-dark: #232e3c;
41 42 43 44 45 46 47 48 49 50 51
  --tblr-primary-rgb: 32, 107, 196;
  --tblr-secondary-rgb: 101, 109, 119;
  --tblr-success-rgb: 47, 179, 68;
  --tblr-info-rgb: 66, 153, 225;
  --tblr-warning-rgb: 247, 103, 7;
  --tblr-danger-rgb: 214, 57, 57;
  --tblr-light-rgb: 244, 246, 250;
  --tblr-dark-rgb: 35, 46, 60;
  --tblr-white-rgb: 255, 255, 255;
  --tblr-black-rgb: 0, 0, 0;
  --tblr-body-rgb: 35, 46, 60;
C
codecalm 已提交
52 53
  --tblr-font-sans-serif: "Inter", -apple-system, BlinkMacSystemFont, San Francisco, Segoe UI, Roboto, Helvetica Neue, sans-serif;
  --tblr-font-monospace: null, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
54 55 56 57 58 59 60
  --tblr-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --tblr-body-font-family: var(--tblr-font-sans-serif);
  --tblr-body-font-size: 0.875rem;
  --tblr-body-font-weight: 400;
  --tblr-body-line-height: 1.4285714;
  --tblr-body-color: #232e3c;
  --tblr-body-bg: #f4f6fa; }
C
codecalm 已提交
61 62 63 64 65 66

*,
*::before,
*::after {
  box-sizing: border-box; }

C
codecalm 已提交
67 68 69 70
@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth; } }

C
codecalm 已提交
71 72
body {
  margin: 0;
73 74 75 76 77 78 79
  font-family: var(--tblr-body-font-family);
  font-size: var(--tblr-body-font-size);
  font-weight: var(--tblr-body-font-weight);
  line-height: var(--tblr-body-line-height);
  color: var(--tblr-body-color);
  text-align: var(--tblr-body-text-align);
  background-color: var(--tblr-body-bg);
C
codecalm 已提交
80 81 82 83 84 85 86 87
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

hr, .hr {
  margin: 2rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
C
codecalm 已提交
88
  opacity: 0.16; }
C
codecalm 已提交
89 90 91 92 93 94 95

hr:not([size]), .hr:not([size]) {
  height: 1px; }

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
C
codecalm 已提交
96
  font-weight: 600;
C
codecalm 已提交
97 98 99
  line-height: 1.2; }

h1, .h1 {
C
codecalm 已提交
100
  font-size: calc(1.275rem + 0.3vw); }
C
codecalm 已提交
101 102
  @media (min-width: 1200px) {
    h1, .h1 {
C
codecalm 已提交
103
      font-size: 1.5rem; } }
C
codecalm 已提交
104 105

h2, .h2 {
C
codecalm 已提交
106
  font-size: 1.25rem; }
C
codecalm 已提交
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124

h3, .h3 {
  font-size: 1rem; }

h4, .h4 {
  font-size: 0.875rem; }

h5, .h5 {
  font-size: 0.75rem; }

h6, .h6 {
  font-size: 0.625rem; }

p {
  margin-top: 0;
  margin-bottom: 1rem; }

abbr[title],
C
codecalm 已提交
125
abbr[data-bs-original-title] {
C
codecalm 已提交
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none; }

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit; }

ol,
ul {
  padding-left: 2rem; }

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem; }

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0; }

dt {
C
codecalm 已提交
154
  font-weight: 600; }
C
codecalm 已提交
155 156 157 158 159 160 161 162 163 164 165 166 167

dd {
  margin-bottom: .5rem;
  margin-left: 0; }

blockquote {
  margin: 0 0 1rem; }

b,
strong {
  font-weight: bolder; }

small, .small {
C
codecalm 已提交
168
  font-size: 85.7142857%; }
C
codecalm 已提交
169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190

mark, .mark {
  padding: 0.2em;
  background-color: #fcf8e3; }

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline; }

sub {
  bottom: -.25em; }

sup {
  top: -.5em; }

a {
  color: #206bc4;
  text-decoration: none; }
  a:hover {
C
codecalm 已提交
191 192
    color: #1a569d;
    text-decoration: underline; }
C
codecalm 已提交
193 194 195 196 197 198 199 200 201

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none; }

pre,
code,
kbd,
samp {
C
codecalm 已提交
202
  font-family: var(--tblr-font-monospace);
C
codecalm 已提交
203 204 205
  font-size: 1em;
  direction: ltr /* rtl:ignore */;
  unicode-bidi: bidi-override; }
C
codecalm 已提交
206 207 208 209 210 211

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
C
codecalm 已提交
212
  font-size: 85.7142857%; }
C
codecalm 已提交
213 214 215 216 217 218
  pre code {
    font-size: inherit;
    color: inherit;
    word-break: normal; }

code {
C
codecalm 已提交
219
  font-size: 85.7142857%;
C
codecalm 已提交
220 221 222 223 224 225 226
  color: #206bc4;
  word-wrap: break-word; }
  a > code {
    color: inherit; }

kbd {
  padding: 0.2rem 0.4rem;
C
codecalm 已提交
227
  font-size: 85.7142857%;
C
codecalm 已提交
228
  color: #ffffff;
C
codecalm 已提交
229
  background-color: #232e3c;
C
codecalm 已提交
230
  border-radius: 2px; }
C
codecalm 已提交
231 232 233
  kbd kbd {
    padding: 0;
    font-size: 1em;
C
codecalm 已提交
234
    font-weight: 600; }
C
codecalm 已提交
235 236 237 238 239 240 241 242 243 244 245 246 247 248 249

figure {
  margin: 0 0 1rem; }

img,
svg {
  vertical-align: middle; }

table {
  caption-side: bottom;
  border-collapse: collapse; }

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
C
codecalm 已提交
250
  color: #656d77;
C
codecalm 已提交
251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272
  text-align: left; }

th {
  text-align: inherit;
  text-align: -webkit-match-parent; }

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0; }

label {
  display: inline-block; }

button {
  border-radius: 0; }

C
codecalm 已提交
273 274
button:focus:not(:focus-visible) {
  outline: 0; }
C
codecalm 已提交
275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit; }

button,
select {
  text-transform: none; }

[role="button"] {
  cursor: pointer; }

select {
  word-wrap: normal; }
C
codecalm 已提交
295 296
  select:disabled {
    opacity: 1; }
C
codecalm 已提交
297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330

[list]::-webkit-calendar-picker-indicator {
  display: none; }

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }
  button:not(:disabled),
  [type="button"]:not(:disabled),
  [type="reset"]:not(:disabled),
  [type="submit"]:not(:disabled) {
    cursor: pointer; }

::-moz-focus-inner {
  padding: 0;
  border-style: none; }

textarea {
  resize: vertical; }

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0; }

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
C
codecalm 已提交
331
  line-height: inherit; }
C
codecalm 已提交
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353
  @media (min-width: 1200px) {
    legend {
      font-size: 1.5rem; } }
  legend + * {
    clear: left; }

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0; }

::-webkit-inner-spin-button {
  height: auto; }

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: textfield; }

C
codecalm 已提交
354 355 356 357 358 359 360 361
/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
C
codecalm 已提交
362 363 364 365 366 367
::-webkit-search-decoration {
  -webkit-appearance: none; }

::-webkit-color-swatch-wrapper {
  padding: 0; }

368 369 370 371 372 373
::-webkit-file-upload-button {
  font: inherit; }

::file-selector-button {
  font: inherit; }

C
codecalm 已提交
374 375 376
::file-selector-button {
  font: inherit; }

C
codecalm 已提交
377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462
::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button; }

output {
  display: inline-block; }

iframe {
  border: 0; }

summary {
  display: list-item;
  cursor: pointer; }

progress {
  vertical-align: baseline; }

[hidden] {
  display: none !important; }

.lead {
  font-size: 0.875rem;
  font-weight: 400; }

.display-1 {
  font-size: calc(1.625rem + 4.5vw);
  font-weight: 300;
  line-height: 1.2; }
  @media (min-width: 1200px) {
    .display-1 {
      font-size: 5rem; } }

.display-2 {
  font-size: calc(1.575rem + 3.9vw);
  font-weight: 300;
  line-height: 1.2; }
  @media (min-width: 1200px) {
    .display-2 {
      font-size: 4.5rem; } }

.display-3 {
  font-size: calc(1.525rem + 3.3vw);
  font-weight: 300;
  line-height: 1.2; }
  @media (min-width: 1200px) {
    .display-3 {
      font-size: 4rem; } }

.display-4 {
  font-size: calc(1.475rem + 2.7vw);
  font-weight: 300;
  line-height: 1.2; }
  @media (min-width: 1200px) {
    .display-4 {
      font-size: 3.5rem; } }

.display-5 {
  font-size: calc(1.425rem + 2.1vw);
  font-weight: 300;
  line-height: 1.2; }
  @media (min-width: 1200px) {
    .display-5 {
      font-size: 3rem; } }

.display-6 {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 300;
  line-height: 1.2; }
  @media (min-width: 1200px) {
    .display-6 {
      font-size: 2.5rem; } }

.list-unstyled {
  padding-left: 0;
  list-style: none; }

.list-inline {
  padding-left: 0;
  list-style: none; }

.list-inline-item {
  display: inline-block; }
  .list-inline-item:not(:last-child) {
    margin-right: 0.5rem; }

.initialism {
C
codecalm 已提交
463
  font-size: 85.7142857%;
C
codecalm 已提交
464 465 466 467 468 469 470 471 472 473 474
  text-transform: uppercase; }

.blockquote {
  margin-bottom: 1rem;
  font-size: 0.875rem; }
  .blockquote > :last-child {
    margin-bottom: 0; }

.blockquote-footer {
  margin-top: -1rem;
  margin-bottom: 1rem;
C
codecalm 已提交
475
  font-size: 85.7142857%;
C
codecalm 已提交
476
  color: #a0a6ae; }
C
codecalm 已提交
477 478 479 480 481 482 483 484 485
  .blockquote-footer::before {
    content: "\2014\00A0"; }

.img-fluid {
  max-width: 100%;
  height: auto; }

.img-thumbnail {
  padding: 0.25rem;
C
codecalm 已提交
486 487
  background-color: #f4f6fa;
  border: 1px solid #e7eaef;
C
codecalm 已提交
488
  border-radius: 4px;
C
codecalm 已提交
489 490 491 492 493 494 495 496 497 498 499
  max-width: 100%;
  height: auto; }

.figure {
  display: inline-block; }

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1; }

.figure-caption {
C
codecalm 已提交
500
  font-size: 85.7142857%;
C
codecalm 已提交
501
  color: #a0a6ae; }
C
codecalm 已提交
502 503 504 505 506 507

.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
C
codecalm 已提交
508 509
.container-xl,
.container-xxl {
C
codecalm 已提交
510
  width: 100%;
C
codecalm 已提交
511 512
  padding-right: var(--tblr-gutter-x, 1.5rem);
  padding-left: var(--tblr-gutter-x, 1.5rem);
C
codecalm 已提交
513 514 515
  margin-right: auto;
  margin-left: auto; }

C
codecalm 已提交
516
@media (min-width: 576px) {
C
codecalm 已提交
517
  .container, .container-sm {
C
codecalm 已提交
518
    max-width: 540px; } }
C
codecalm 已提交
519

C
codecalm 已提交
520
@media (min-width: 768px) {
C
codecalm 已提交
521
  .container, .container-sm, .container-md {
C
codecalm 已提交
522
    max-width: 720px; } }
C
codecalm 已提交
523

C
codecalm 已提交
524
@media (min-width: 992px) {
C
codecalm 已提交
525
  .container, .container-sm, .container-md, .container-lg {
C
codecalm 已提交
526
    max-width: 960px; } }
C
codecalm 已提交
527

C
codecalm 已提交
528
@media (min-width: 1200px) {
C
codecalm 已提交
529
  .container, .container-sm, .container-md, .container-lg, .container-xl {
C
codecalm 已提交
530 531 532 533 534
    max-width: 1140px; } }

@media (min-width: 1400px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
    max-width: 1320px; } }
C
codecalm 已提交
535 536

.row {
C
codecalm 已提交
537 538
  --tblr-gutter-x: 1rem;
  --tblr-gutter-y: 0;
C
codecalm 已提交
539 540
  display: flex;
  flex-wrap: wrap;
C
codecalm 已提交
541
  margin-top: calc(var(--tblr-gutter-y) * -1);
542 543
  margin-right: calc(var(--tblr-gutter-x) * -.5);
  margin-left: calc(var(--tblr-gutter-x) * -.5); }
C
codecalm 已提交
544 545 546 547
  .row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
548 549
    padding-right: calc(var(--tblr-gutter-x) * .5);
    padding-left: calc(var(--tblr-gutter-x) * .5);
C
codecalm 已提交
550
    margin-top: var(--tblr-gutter-y); }
C
codecalm 已提交
551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568

.col {
  flex: 1 0 0%; }

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto; }

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%; }

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%; }

.row-cols-3 > * {
  flex: 0 0 auto;
C
codecalm 已提交
569
  width: 33.3333333%; }
C
codecalm 已提交
570 571 572 573 574 575 576 577 578 579 580

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%; }

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%; }

.row-cols-6 > * {
  flex: 0 0 auto;
C
codecalm 已提交
581
  width: 16.6666667%; }
C
codecalm 已提交
582 583 584 585 586 587 588

.col-auto {
  flex: 0 0 auto;
  width: auto; }

.col-1 {
  flex: 0 0 auto;
C
codecalm 已提交
589
  width: 8.3333333%; }
C
codecalm 已提交
590 591 592

.col-2 {
  flex: 0 0 auto;
C
codecalm 已提交
593
  width: 16.6666667%; }
C
codecalm 已提交
594 595 596 597 598 599 600

.col-3 {
  flex: 0 0 auto;
  width: 25%; }

.col-4 {
  flex: 0 0 auto;
C
codecalm 已提交
601
  width: 33.3333333%; }
C
codecalm 已提交
602 603 604

.col-5 {
  flex: 0 0 auto;
C
codecalm 已提交
605
  width: 41.6666667%; }
C
codecalm 已提交
606 607 608 609 610 611 612

.col-6 {
  flex: 0 0 auto;
  width: 50%; }

.col-7 {
  flex: 0 0 auto;
C
codecalm 已提交
613
  width: 58.3333333%; }
C
codecalm 已提交
614 615 616

.col-8 {
  flex: 0 0 auto;
C
codecalm 已提交
617
  width: 66.6666667%; }
C
codecalm 已提交
618 619 620 621 622 623 624

.col-9 {
  flex: 0 0 auto;
  width: 75%; }

.col-10 {
  flex: 0 0 auto;
C
codecalm 已提交
625
  width: 83.3333333%; }
C
codecalm 已提交
626 627 628

.col-11 {
  flex: 0 0 auto;
C
codecalm 已提交
629
  width: 91.6666667%; }
C
codecalm 已提交
630 631 632 633 634 635

.col-12 {
  flex: 0 0 auto;
  width: 100%; }

.offset-1 {
C
codecalm 已提交
636
  margin-left: 8.3333333%; }
C
codecalm 已提交
637 638

.offset-2 {
C
codecalm 已提交
639
  margin-left: 16.6666667%; }
C
codecalm 已提交
640 641 642 643 644

.offset-3 {
  margin-left: 25%; }

.offset-4 {
C
codecalm 已提交
645
  margin-left: 33.3333333%; }
C
codecalm 已提交
646 647

.offset-5 {
C
codecalm 已提交
648
  margin-left: 41.6666667%; }
C
codecalm 已提交
649 650 651 652 653

.offset-6 {
  margin-left: 50%; }

.offset-7 {
C
codecalm 已提交
654
  margin-left: 58.3333333%; }
C
codecalm 已提交
655 656

.offset-8 {
C
codecalm 已提交
657
  margin-left: 66.6666667%; }
C
codecalm 已提交
658 659 660 661 662

.offset-9 {
  margin-left: 75%; }

.offset-10 {
C
codecalm 已提交
663
  margin-left: 83.3333333%; }
C
codecalm 已提交
664 665

.offset-11 {
C
codecalm 已提交
666
  margin-left: 91.6666667%; }
C
codecalm 已提交
667 668 669

.g-0,
.gx-0 {
C
codecalm 已提交
670
  --tblr-gutter-x: 0; }
C
codecalm 已提交
671 672 673

.g-0,
.gy-0 {
C
codecalm 已提交
674
  --tblr-gutter-y: 0; }
C
codecalm 已提交
675 676 677

.g-1,
.gx-1 {
C
codecalm 已提交
678
  --tblr-gutter-x: 0.25rem; }
C
codecalm 已提交
679 680 681

.g-1,
.gy-1 {
C
codecalm 已提交
682
  --tblr-gutter-y: 0.25rem; }
C
codecalm 已提交
683 684 685

.g-2,
.gx-2 {
C
codecalm 已提交
686
  --tblr-gutter-x: 0.5rem; }
C
codecalm 已提交
687 688 689

.g-2,
.gy-2 {
C
codecalm 已提交
690
  --tblr-gutter-y: 0.5rem; }
C
codecalm 已提交
691 692 693

.g-3,
.gx-3 {
C
codecalm 已提交
694
  --tblr-gutter-x: 1rem; }
C
codecalm 已提交
695 696 697

.g-3,
.gy-3 {
C
codecalm 已提交
698
  --tblr-gutter-y: 1rem; }
C
codecalm 已提交
699 700 701

.g-4,
.gx-4 {
C
codecalm 已提交
702
  --tblr-gutter-x: 2rem; }
C
codecalm 已提交
703 704 705

.g-4,
.gy-4 {
C
codecalm 已提交
706
  --tblr-gutter-y: 2rem; }
C
codecalm 已提交
707 708 709

.g-5,
.gx-5 {
C
codecalm 已提交
710
  --tblr-gutter-x: 4rem; }
C
codecalm 已提交
711 712 713

.g-5,
.gy-5 {
C
codecalm 已提交
714
  --tblr-gutter-y: 4rem; }
C
codecalm 已提交
715

C
codecalm 已提交
716
@media (min-width: 576px) {
C
codecalm 已提交
717 718 719 720 721 722 723 724 725 726 727 728 729
  .col-sm {
    flex: 1 0 0%; }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto; }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%; }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%; }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
C
codecalm 已提交
730
    width: 33.3333333%; }
C
codecalm 已提交
731 732 733 734 735 736 737 738
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%; }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%; }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
C
codecalm 已提交
739
    width: 16.6666667%; }
C
codecalm 已提交
740 741 742 743 744
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto; }
  .col-sm-1 {
    flex: 0 0 auto;
C
codecalm 已提交
745
    width: 8.3333333%; }
C
codecalm 已提交
746 747
  .col-sm-2 {
    flex: 0 0 auto;
C
codecalm 已提交
748
    width: 16.6666667%; }
C
codecalm 已提交
749 750 751 752 753
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%; }
  .col-sm-4 {
    flex: 0 0 auto;
C
codecalm 已提交
754
    width: 33.3333333%; }
C
codecalm 已提交
755 756
  .col-sm-5 {
    flex: 0 0 auto;
C
codecalm 已提交
757
    width: 41.6666667%; }
C
codecalm 已提交
758 759 760 761 762
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%; }
  .col-sm-7 {
    flex: 0 0 auto;
C
codecalm 已提交
763
    width: 58.3333333%; }
C
codecalm 已提交
764 765
  .col-sm-8 {
    flex: 0 0 auto;
C
codecalm 已提交
766
    width: 66.6666667%; }
C
codecalm 已提交
767 768 769 770 771
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%; }
  .col-sm-10 {
    flex: 0 0 auto;
C
codecalm 已提交
772
    width: 83.3333333%; }
C
codecalm 已提交
773 774
  .col-sm-11 {
    flex: 0 0 auto;
C
codecalm 已提交
775
    width: 91.6666667%; }
C
codecalm 已提交
776 777 778 779 780 781
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%; }
  .offset-sm-0 {
    margin-left: 0; }
  .offset-sm-1 {
C
codecalm 已提交
782
    margin-left: 8.3333333%; }
C
codecalm 已提交
783
  .offset-sm-2 {
C
codecalm 已提交
784
    margin-left: 16.6666667%; }
C
codecalm 已提交
785 786 787
  .offset-sm-3 {
    margin-left: 25%; }
  .offset-sm-4 {
C
codecalm 已提交
788
    margin-left: 33.3333333%; }
C
codecalm 已提交
789
  .offset-sm-5 {
C
codecalm 已提交
790
    margin-left: 41.6666667%; }
C
codecalm 已提交
791 792 793
  .offset-sm-6 {
    margin-left: 50%; }
  .offset-sm-7 {
C
codecalm 已提交
794
    margin-left: 58.3333333%; }
C
codecalm 已提交
795
  .offset-sm-8 {
C
codecalm 已提交
796
    margin-left: 66.6666667%; }
C
codecalm 已提交
797 798 799
  .offset-sm-9 {
    margin-left: 75%; }
  .offset-sm-10 {
C
codecalm 已提交
800
    margin-left: 83.3333333%; }
C
codecalm 已提交
801
  .offset-sm-11 {
C
codecalm 已提交
802
    margin-left: 91.6666667%; }
C
codecalm 已提交
803 804
  .g-sm-0,
  .gx-sm-0 {
C
codecalm 已提交
805
    --tblr-gutter-x: 0; }
C
codecalm 已提交
806 807
  .g-sm-0,
  .gy-sm-0 {
C
codecalm 已提交
808
    --tblr-gutter-y: 0; }
C
codecalm 已提交
809 810
  .g-sm-1,
  .gx-sm-1 {
C
codecalm 已提交
811
    --tblr-gutter-x: 0.25rem; }
C
codecalm 已提交
812 813
  .g-sm-1,
  .gy-sm-1 {
C
codecalm 已提交
814
    --tblr-gutter-y: 0.25rem; }
C
codecalm 已提交
815 816
  .g-sm-2,
  .gx-sm-2 {
C
codecalm 已提交
817
    --tblr-gutter-x: 0.5rem; }
C
codecalm 已提交
818 819
  .g-sm-2,
  .gy-sm-2 {
C
codecalm 已提交
820
    --tblr-gutter-y: 0.5rem; }
C
codecalm 已提交
821 822
  .g-sm-3,
  .gx-sm-3 {
C
codecalm 已提交
823
    --tblr-gutter-x: 1rem; }
C
codecalm 已提交
824 825
  .g-sm-3,
  .gy-sm-3 {
C
codecalm 已提交
826
    --tblr-gutter-y: 1rem; }
C
codecalm 已提交
827 828
  .g-sm-4,
  .gx-sm-4 {
C
codecalm 已提交
829
    --tblr-gutter-x: 2rem; }
C
codecalm 已提交
830 831
  .g-sm-4,
  .gy-sm-4 {
C
codecalm 已提交
832
    --tblr-gutter-y: 2rem; }
C
codecalm 已提交
833 834
  .g-sm-5,
  .gx-sm-5 {
C
codecalm 已提交
835
    --tblr-gutter-x: 4rem; }
C
codecalm 已提交
836 837
  .g-sm-5,
  .gy-sm-5 {
C
codecalm 已提交
838
    --tblr-gutter-y: 4rem; } }
C
codecalm 已提交
839

C
codecalm 已提交
840
@media (min-width: 768px) {
C
codecalm 已提交
841 842 843 844 845 846 847 848 849 850 851 852 853
  .col-md {
    flex: 1 0 0%; }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto; }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%; }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%; }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
C
codecalm 已提交
854
    width: 33.3333333%; }
C
codecalm 已提交
855 856 857 858 859 860 861 862
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%; }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%; }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
C
codecalm 已提交
863
    width: 16.6666667%; }
C
codecalm 已提交
864 865 866 867 868
  .col-md-auto {
    flex: 0 0 auto;
    width: auto; }
  .col-md-1 {
    flex: 0 0 auto;
C
codecalm 已提交
869
    width: 8.3333333%; }
C
codecalm 已提交
870 871
  .col-md-2 {
    flex: 0 0 auto;
C
codecalm 已提交
872
    width: 16.6666667%; }
C
codecalm 已提交
873 874 875 876 877
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%; }
  .col-md-4 {
    flex: 0 0 auto;
C
codecalm 已提交
878
    width: 33.3333333%; }
C
codecalm 已提交
879 880
  .col-md-5 {
    flex: 0 0 auto;
C
codecalm 已提交
881
    width: 41.6666667%; }
C
codecalm 已提交
882 883 884 885 886
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%; }
  .col-md-7 {
    flex: 0 0 auto;
C
codecalm 已提交
887
    width: 58.3333333%; }
C
codecalm 已提交
888 889
  .col-md-8 {
    flex: 0 0 auto;
C
codecalm 已提交
890
    width: 66.6666667%; }
C
codecalm 已提交
891 892 893 894 895
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%; }
  .col-md-10 {
    flex: 0 0 auto;
C
codecalm 已提交
896
    width: 83.3333333%; }
C
codecalm 已提交
897 898
  .col-md-11 {
    flex: 0 0 auto;
C
codecalm 已提交
899
    width: 91.6666667%; }
C
codecalm 已提交
900 901 902 903 904 905
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%; }
  .offset-md-0 {
    margin-left: 0; }
  .offset-md-1 {
C
codecalm 已提交
906
    margin-left: 8.3333333%; }
C
codecalm 已提交
907
  .offset-md-2 {
C
codecalm 已提交
908
    margin-left: 16.6666667%; }
C
codecalm 已提交
909 910 911
  .offset-md-3 {
    margin-left: 25%; }
  .offset-md-4 {
C
codecalm 已提交
912
    margin-left: 33.3333333%; }
C
codecalm 已提交
913
  .offset-md-5 {
C
codecalm 已提交
914
    margin-left: 41.6666667%; }
C
codecalm 已提交
915 916 917
  .offset-md-6 {
    margin-left: 50%; }
  .offset-md-7 {
C
codecalm 已提交
918
    margin-left: 58.3333333%; }
C
codecalm 已提交
919
  .offset-md-8 {
C
codecalm 已提交
920
    margin-left: 66.6666667%; }
C
codecalm 已提交
921 922 923
  .offset-md-9 {
    margin-left: 75%; }
  .offset-md-10 {
C
codecalm 已提交
924
    margin-left: 83.3333333%; }
C
codecalm 已提交
925
  .offset-md-11 {
C
codecalm 已提交
926
    margin-left: 91.6666667%; }
C
codecalm 已提交
927 928
  .g-md-0,
  .gx-md-0 {
C
codecalm 已提交
929
    --tblr-gutter-x: 0; }
C
codecalm 已提交
930 931
  .g-md-0,
  .gy-md-0 {
C
codecalm 已提交
932
    --tblr-gutter-y: 0; }
C
codecalm 已提交
933 934
  .g-md-1,
  .gx-md-1 {
C
codecalm 已提交
935
    --tblr-gutter-x: 0.25rem; }
C
codecalm 已提交
936 937
  .g-md-1,
  .gy-md-1 {
C
codecalm 已提交
938
    --tblr-gutter-y: 0.25rem; }
C
codecalm 已提交
939 940
  .g-md-2,
  .gx-md-2 {
C
codecalm 已提交
941
    --tblr-gutter-x: 0.5rem; }
C
codecalm 已提交
942 943
  .g-md-2,
  .gy-md-2 {
C
codecalm 已提交
944
    --tblr-gutter-y: 0.5rem; }
C
codecalm 已提交
945 946
  .g-md-3,
  .gx-md-3 {
C
codecalm 已提交
947
    --tblr-gutter-x: 1rem; }
C
codecalm 已提交
948 949
  .g-md-3,
  .gy-md-3 {
C
codecalm 已提交
950
    --tblr-gutter-y: 1rem; }
C
codecalm 已提交
951 952
  .g-md-4,
  .gx-md-4 {
C
codecalm 已提交
953
    --tblr-gutter-x: 2rem; }
C
codecalm 已提交
954 955
  .g-md-4,
  .gy-md-4 {
C
codecalm 已提交
956
    --tblr-gutter-y: 2rem; }
C
codecalm 已提交
957 958
  .g-md-5,
  .gx-md-5 {
C
codecalm 已提交
959
    --tblr-gutter-x: 4rem; }
C
codecalm 已提交
960 961
  .g-md-5,
  .gy-md-5 {
C
codecalm 已提交
962
    --tblr-gutter-y: 4rem; } }
C
codecalm 已提交
963

C
codecalm 已提交
964
@media (min-width: 992px) {
C
codecalm 已提交
965 966 967 968 969 970 971 972 973 974 975 976 977
  .col-lg {
    flex: 1 0 0%; }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto; }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%; }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%; }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
C
codecalm 已提交
978
    width: 33.3333333%; }
C
codecalm 已提交
979 980 981 982 983 984 985 986
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%; }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%; }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
C
codecalm 已提交
987
    width: 16.6666667%; }
C
codecalm 已提交
988 989 990 991 992
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto; }
  .col-lg-1 {
    flex: 0 0 auto;
C
codecalm 已提交
993
    width: 8.3333333%; }
C
codecalm 已提交
994 995
  .col-lg-2 {
    flex: 0 0 auto;
C
codecalm 已提交
996
    width: 16.6666667%; }
C
codecalm 已提交
997 998 999 1000 1001
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%; }
  .col-lg-4 {
    flex: 0 0 auto;
C
codecalm 已提交
1002
    width: 33.3333333%; }
C
codecalm 已提交
1003 1004
  .col-lg-5 {
    flex: 0 0 auto;
C
codecalm 已提交
1005
    width: 41.6666667%; }
C
codecalm 已提交
1006 1007 1008 1009 1010
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%; }
  .col-lg-7 {
    flex: 0 0 auto;
C
codecalm 已提交
1011
    width: 58.3333333%; }
C
codecalm 已提交
1012 1013
  .col-lg-8 {
    flex: 0 0 auto;
C
codecalm 已提交
1014
    width: 66.6666667%; }
C
codecalm 已提交
1015 1016 1017 1018 1019
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%; }
  .col-lg-10 {
    flex: 0 0 auto;
C
codecalm 已提交
1020
    width: 83.3333333%; }
C
codecalm 已提交
1021 1022
  .col-lg-11 {
    flex: 0 0 auto;
C
codecalm 已提交
1023
    width: 91.6666667%; }
C
codecalm 已提交
1024 1025 1026 1027 1028 1029
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%; }
  .offset-lg-0 {
    margin-left: 0; }
  .offset-lg-1 {
C
codecalm 已提交
1030
    margin-left: 8.3333333%; }
C
codecalm 已提交
1031
  .offset-lg-2 {
C
codecalm 已提交
1032
    margin-left: 16.6666667%; }
C
codecalm 已提交
1033 1034 1035
  .offset-lg-3 {
    margin-left: 25%; }
  .offset-lg-4 {
C
codecalm 已提交
1036
    margin-left: 33.3333333%; }
C
codecalm 已提交
1037
  .offset-lg-5 {
C
codecalm 已提交
1038
    margin-left: 41.6666667%; }
C
codecalm 已提交
1039 1040 1041
  .offset-lg-6 {
    margin-left: 50%; }
  .offset-lg-7 {
C
codecalm 已提交
1042
    margin-left: 58.3333333%; }
C
codecalm 已提交
1043
  .offset-lg-8 {
C
codecalm 已提交
1044
    margin-left: 66.6666667%; }
C
codecalm 已提交
1045 1046 1047
  .offset-lg-9 {
    margin-left: 75%; }
  .offset-lg-10 {
C
codecalm 已提交
1048
    margin-left: 83.3333333%; }
C
codecalm 已提交
1049
  .offset-lg-11 {
C
codecalm 已提交
1050
    margin-left: 91.6666667%; }
C
codecalm 已提交
1051 1052
  .g-lg-0,
  .gx-lg-0 {
C
codecalm 已提交
1053
    --tblr-gutter-x: 0; }
C
codecalm 已提交
1054 1055
  .g-lg-0,
  .gy-lg-0 {
C
codecalm 已提交
1056
    --tblr-gutter-y: 0; }
C
codecalm 已提交
1057 1058
  .g-lg-1,
  .gx-lg-1 {
C
codecalm 已提交
1059
    --tblr-gutter-x: 0.25rem; }
C
codecalm 已提交
1060 1061
  .g-lg-1,
  .gy-lg-1 {
C
codecalm 已提交
1062
    --tblr-gutter-y: 0.25rem; }
C
codecalm 已提交
1063 1064
  .g-lg-2,
  .gx-lg-2 {
C
codecalm 已提交
1065
    --tblr-gutter-x: 0.5rem; }
C
codecalm 已提交
1066 1067
  .g-lg-2,
  .gy-lg-2 {
C
codecalm 已提交
1068
    --tblr-gutter-y: 0.5rem; }
C
codecalm 已提交
1069 1070
  .g-lg-3,
  .gx-lg-3 {
C
codecalm 已提交
1071
    --tblr-gutter-x: 1rem; }
C
codecalm 已提交
1072 1073
  .g-lg-3,
  .gy-lg-3 {
C
codecalm 已提交
1074
    --tblr-gutter-y: 1rem; }
C
codecalm 已提交
1075 1076
  .g-lg-4,
  .gx-lg-4 {
C
codecalm 已提交
1077
    --tblr-gutter-x: 2rem; }
C
codecalm 已提交
1078 1079
  .g-lg-4,
  .gy-lg-4 {
C
codecalm 已提交
1080
    --tblr-gutter-y: 2rem; }
C
codecalm 已提交
1081 1082
  .g-lg-5,
  .gx-lg-5 {
C
codecalm 已提交
1083
    --tblr-gutter-x: 4rem; }
C
codecalm 已提交
1084 1085
  .g-lg-5,
  .gy-lg-5 {
C
codecalm 已提交
1086
    --tblr-gutter-y: 4rem; } }
C
codecalm 已提交
1087

C
codecalm 已提交
1088
@media (min-width: 1200px) {
C
codecalm 已提交
1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101
  .col-xl {
    flex: 1 0 0%; }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto; }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%; }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%; }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
C
codecalm 已提交
1102
    width: 33.3333333%; }
C
codecalm 已提交
1103 1104 1105 1106 1107 1108 1109 1110
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%; }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%; }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
C
codecalm 已提交
1111
    width: 16.6666667%; }
C
codecalm 已提交
1112 1113 1114 1115 1116
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto; }
  .col-xl-1 {
    flex: 0 0 auto;
C
codecalm 已提交
1117
    width: 8.3333333%; }
C
codecalm 已提交
1118 1119
  .col-xl-2 {
    flex: 0 0 auto;
C
codecalm 已提交
1120
    width: 16.6666667%; }
C
codecalm 已提交
1121 1122 1123 1124 1125
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%; }
  .col-xl-4 {
    flex: 0 0 auto;
C
codecalm 已提交
1126
    width: 33.3333333%; }
C
codecalm 已提交
1127 1128
  .col-xl-5 {
    flex: 0 0 auto;
C
codecalm 已提交
1129
    width: 41.6666667%; }
C
codecalm 已提交
1130 1131 1132 1133 1134
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%; }
  .col-xl-7 {
    flex: 0 0 auto;
C
codecalm 已提交
1135
    width: 58.3333333%; }
C
codecalm 已提交
1136 1137
  .col-xl-8 {
    flex: 0 0 auto;
C
codecalm 已提交
1138
    width: 66.6666667%; }
C
codecalm 已提交
1139 1140 1141 1142 1143
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%; }
  .col-xl-10 {
    flex: 0 0 auto;
C
codecalm 已提交
1144
    width: 83.3333333%; }
C
codecalm 已提交
1145 1146
  .col-xl-11 {
    flex: 0 0 auto;
C
codecalm 已提交
1147
    width: 91.6666667%; }
C
codecalm 已提交
1148 1149 1150 1151 1152 1153
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%; }
  .offset-xl-0 {
    margin-left: 0; }
  .offset-xl-1 {
C
codecalm 已提交
1154
    margin-left: 8.3333333%; }
C
codecalm 已提交
1155
  .offset-xl-2 {
C
codecalm 已提交
1156
    margin-left: 16.6666667%; }
C
codecalm 已提交
1157 1158 1159
  .offset-xl-3 {
    margin-left: 25%; }
  .offset-xl-4 {
C
codecalm 已提交
1160
    margin-left: 33.3333333%; }
C
codecalm 已提交
1161
  .offset-xl-5 {
C
codecalm 已提交
1162
    margin-left: 41.6666667%; }
C
codecalm 已提交
1163 1164 1165
  .offset-xl-6 {
    margin-left: 50%; }
  .offset-xl-7 {
C
codecalm 已提交
1166
    margin-left: 58.3333333%; }
C
codecalm 已提交
1167
  .offset-xl-8 {
C
codecalm 已提交
1168
    margin-left: 66.6666667%; }
C
codecalm 已提交
1169 1170 1171
  .offset-xl-9 {
    margin-left: 75%; }
  .offset-xl-10 {
C
codecalm 已提交
1172
    margin-left: 83.3333333%; }
C
codecalm 已提交
1173
  .offset-xl-11 {
C
codecalm 已提交
1174
    margin-left: 91.6666667%; }
C
codecalm 已提交
1175 1176
  .g-xl-0,
  .gx-xl-0 {
C
codecalm 已提交
1177
    --tblr-gutter-x: 0; }
C
codecalm 已提交
1178 1179
  .g-xl-0,
  .gy-xl-0 {
C
codecalm 已提交
1180
    --tblr-gutter-y: 0; }
C
codecalm 已提交
1181 1182
  .g-xl-1,
  .gx-xl-1 {
C
codecalm 已提交
1183
    --tblr-gutter-x: 0.25rem; }
C
codecalm 已提交
1184 1185
  .g-xl-1,
  .gy-xl-1 {
C
codecalm 已提交
1186
    --tblr-gutter-y: 0.25rem; }
C
codecalm 已提交
1187 1188
  .g-xl-2,
  .gx-xl-2 {
C
codecalm 已提交
1189
    --tblr-gutter-x: 0.5rem; }
C
codecalm 已提交
1190 1191
  .g-xl-2,
  .gy-xl-2 {
C
codecalm 已提交
1192
    --tblr-gutter-y: 0.5rem; }
C
codecalm 已提交
1193 1194
  .g-xl-3,
  .gx-xl-3 {
C
codecalm 已提交
1195
    --tblr-gutter-x: 1rem; }
C
codecalm 已提交
1196 1197
  .g-xl-3,
  .gy-xl-3 {
C
codecalm 已提交
1198
    --tblr-gutter-y: 1rem; }
C
codecalm 已提交
1199 1200
  .g-xl-4,
  .gx-xl-4 {
C
codecalm 已提交
1201
    --tblr-gutter-x: 2rem; }
C
codecalm 已提交
1202 1203
  .g-xl-4,
  .gy-xl-4 {
C
codecalm 已提交
1204
    --tblr-gutter-y: 2rem; }
C
codecalm 已提交
1205 1206
  .g-xl-5,
  .gx-xl-5 {
C
codecalm 已提交
1207
    --tblr-gutter-x: 4rem; }
C
codecalm 已提交
1208 1209
  .g-xl-5,
  .gy-xl-5 {
C
codecalm 已提交
1210
    --tblr-gutter-y: 4rem; } }
C
codecalm 已提交
1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324

@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%; }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto; }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%; }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%; }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333%; }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%; }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%; }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666667%; }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto; }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.3333333%; }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.6666667%; }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%; }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.3333333%; }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.6666667%; }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%; }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.3333333%; }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.6666667%; }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%; }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.3333333%; }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.6666667%; }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%; }
  .offset-xxl-0 {
    margin-left: 0; }
  .offset-xxl-1 {
    margin-left: 8.3333333%; }
  .offset-xxl-2 {
    margin-left: 16.6666667%; }
  .offset-xxl-3 {
    margin-left: 25%; }
  .offset-xxl-4 {
    margin-left: 33.3333333%; }
  .offset-xxl-5 {
    margin-left: 41.6666667%; }
  .offset-xxl-6 {
    margin-left: 50%; }
  .offset-xxl-7 {
    margin-left: 58.3333333%; }
  .offset-xxl-8 {
    margin-left: 66.6666667%; }
  .offset-xxl-9 {
    margin-left: 75%; }
  .offset-xxl-10 {
    margin-left: 83.3333333%; }
  .offset-xxl-11 {
    margin-left: 91.6666667%; }
  .g-xxl-0,
  .gx-xxl-0 {
    --tblr-gutter-x: 0; }
  .g-xxl-0,
  .gy-xxl-0 {
    --tblr-gutter-y: 0; }
  .g-xxl-1,
  .gx-xxl-1 {
    --tblr-gutter-x: 0.25rem; }
  .g-xxl-1,
  .gy-xxl-1 {
    --tblr-gutter-y: 0.25rem; }
  .g-xxl-2,
  .gx-xxl-2 {
    --tblr-gutter-x: 0.5rem; }
  .g-xxl-2,
  .gy-xxl-2 {
    --tblr-gutter-y: 0.5rem; }
  .g-xxl-3,
  .gx-xxl-3 {
    --tblr-gutter-x: 1rem; }
  .g-xxl-3,
  .gy-xxl-3 {
    --tblr-gutter-y: 1rem; }
  .g-xxl-4,
  .gx-xxl-4 {
C
codecalm 已提交
1325
    --tblr-gutter-x: 2rem; }
C
codecalm 已提交
1326 1327
  .g-xxl-4,
  .gy-xxl-4 {
C
codecalm 已提交
1328
    --tblr-gutter-y: 2rem; }
C
codecalm 已提交
1329 1330
  .g-xxl-5,
  .gx-xxl-5 {
C
codecalm 已提交
1331
    --tblr-gutter-x: 4rem; }
C
codecalm 已提交
1332 1333
  .g-xxl-5,
  .gy-xxl-5 {
C
codecalm 已提交
1334
    --tblr-gutter-y: 4rem; } }
C
codecalm 已提交
1335 1336

.table, .markdown > table {
C
codecalm 已提交
1337
  --tblr-table-bg: transparent;
1338
  --tblr-table-accent-bg: #f4f6fa;
C
codecalm 已提交
1339
  --tblr-table-striped-color: inherit;
C
codecalm 已提交
1340
  --tblr-table-striped-bg: #f4f6fa;
C
codecalm 已提交
1341 1342 1343 1344
  --tblr-table-active-color: inherit;
  --tblr-table-active-bg: rgba(0, 0, 0, 0.1);
  --tblr-table-hover-color: inherit;
  --tblr-table-hover-bg: rgba(0, 0, 0, 0.075);
C
codecalm 已提交
1345 1346
  width: 100%;
  margin-bottom: 1rem;
C
codecalm 已提交
1347
  color: inherit;
C
codecalm 已提交
1348
  vertical-align: top;
C
codecalm 已提交
1349
  border-color: rgba(101, 109, 119, 0.16); }
C
codecalm 已提交
1350 1351
  .table > :not(caption) > * > *, .markdown > table > :not(caption) > * > * {
    padding: 0.5rem 0.5rem;
C
codecalm 已提交
1352
    background-color: var(--tblr-table-bg);
C
codecalm 已提交
1353 1354
    border-bottom-width: 1px;
    box-shadow: inset 0 0 0 9999px var(--tblr-table-accent-bg); }
C
codecalm 已提交
1355 1356 1357 1358 1359
  .table > tbody, .markdown > table > tbody {
    vertical-align: inherit; }
  .table > thead, .markdown > table > thead {
    vertical-align: bottom; }
  .table > :not(:last-child) > :last-child > *, .markdown > table > :not(:last-child) > :last-child > * {
C
codecalm 已提交
1360
    border-bottom-color: rgba(101, 109, 119, 0.16); }
C
codecalm 已提交
1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376

.caption-top {
  caption-side: top; }

.table-sm > :not(caption) > * > * {
  padding: 0.25rem 0.25rem; }

.table-bordered > :not(caption) > *, .markdown > table > :not(caption) > * {
  border-width: 1px 0; }
  .table-bordered > :not(caption) > * > *, .markdown > table > :not(caption) > * > * {
    border-width: 0 1px; }

.table-borderless > :not(caption) > * > * {
  border-bottom-width: 0; }

.table-striped > tbody > tr:nth-of-type(even) {
C
codecalm 已提交
1377 1378
  --tblr-table-accent-bg: var(--tblr-table-striped-bg);
  color: var(--tblr-table-striped-color); }
C
codecalm 已提交
1379 1380

.table-active {
C
codecalm 已提交
1381 1382
  --tblr-table-accent-bg: var(--tblr-table-active-bg);
  color: var(--tblr-table-active-color); }
C
codecalm 已提交
1383 1384

.table-hover > tbody > tr:hover {
C
codecalm 已提交
1385 1386
  --tblr-table-accent-bg: var(--tblr-table-hover-bg);
  color: var(--tblr-table-hover-color); }
C
codecalm 已提交
1387 1388

.table-primary {
C
codecalm 已提交
1389 1390 1391 1392 1393 1394 1395 1396 1397
  --tblr-table-bg: #d2e1f3;
  --tblr-table-striped-bg: #c9d8ea;
  --tblr-table-striped-color: #232e3c;
  --tblr-table-active-bg: #c1cfe1;
  --tblr-table-active-color: #232e3c;
  --tblr-table-hover-bg: #c5d4e5;
  --tblr-table-hover-color: #232e3c;
  color: #232e3c;
  border-color: #c1cfe1; }
C
codecalm 已提交
1398 1399

.table-secondary {
C
codecalm 已提交
1400 1401
  --tblr-table-bg: #e0e2e4;
  --tblr-table-striped-bg: #d7d9dc;
C
codecalm 已提交
1402
  --tblr-table-striped-color: #232e3c;
C
codecalm 已提交
1403
  --tblr-table-active-bg: #cdd0d3;
C
codecalm 已提交
1404
  --tblr-table-active-color: #232e3c;
C
codecalm 已提交
1405
  --tblr-table-hover-bg: #d2d5d7;
C
codecalm 已提交
1406 1407
  --tblr-table-hover-color: #232e3c;
  color: #232e3c;
C
codecalm 已提交
1408
  border-color: #cdd0d3; }
C
codecalm 已提交
1409 1410

.table-success {
M
Michal Wolny 已提交
1411 1412
  --tblr-table-bg: #d5f0da;
  --tblr-table-striped-bg: #cce6d2;
C
codecalm 已提交
1413
  --tblr-table-striped-color: #232e3c;
M
Michal Wolny 已提交
1414
  --tblr-table-active-bg: #c3ddca;
C
codecalm 已提交
1415
  --tblr-table-active-color: #232e3c;
M
Michal Wolny 已提交
1416
  --tblr-table-hover-bg: #c8e1ce;
C
codecalm 已提交
1417 1418
  --tblr-table-hover-color: #232e3c;
  color: #232e3c;
M
Michal Wolny 已提交
1419
  border-color: #c3ddca; }
C
codecalm 已提交
1420 1421

.table-info {
C
codecalm 已提交
1422 1423 1424 1425 1426 1427 1428 1429 1430
  --tblr-table-bg: #d9ebf9;
  --tblr-table-striped-bg: #d0e2f0;
  --tblr-table-striped-color: #232e3c;
  --tblr-table-active-bg: #c7d8e6;
  --tblr-table-active-color: #232e3c;
  --tblr-table-hover-bg: #cbddeb;
  --tblr-table-hover-color: #232e3c;
  color: #232e3c;
  border-color: #c7d8e6; }
C
codecalm 已提交
1431 1432

.table-warning {
M
Michal Wolny 已提交
1433 1434
  --tblr-table-bg: #fde1cd;
  --tblr-table-striped-bg: #f2d8c6;
C
codecalm 已提交
1435
  --tblr-table-striped-color: #232e3c;
M
Michal Wolny 已提交
1436
  --tblr-table-active-bg: #e7cfbf;
C
codecalm 已提交
1437
  --tblr-table-active-color: #232e3c;
M
Michal Wolny 已提交
1438
  --tblr-table-hover-bg: #edd4c2;
C
codecalm 已提交
1439 1440
  --tblr-table-hover-color: #232e3c;
  color: #232e3c;
M
Michal Wolny 已提交
1441
  border-color: #e7cfbf; }
C
codecalm 已提交
1442 1443

.table-danger {
M
Michal Wolny 已提交
1444 1445
  --tblr-table-bg: #f7d7d7;
  --tblr-table-striped-bg: #eccfcf;
C
codecalm 已提交
1446
  --tblr-table-striped-color: #232e3c;
M
Michal Wolny 已提交
1447
  --tblr-table-active-bg: #e2c6c8;
C
codecalm 已提交
1448
  --tblr-table-active-color: #232e3c;
M
Michal Wolny 已提交
1449
  --tblr-table-hover-bg: #e7cacb;
C
codecalm 已提交
1450 1451
  --tblr-table-hover-color: #232e3c;
  color: #232e3c;
M
Michal Wolny 已提交
1452
  border-color: #e2c6c8; }
C
codecalm 已提交
1453 1454

.table-light {
C
codecalm 已提交
1455 1456
  --tblr-table-bg: #f4f6fa;
  --tblr-table-striped-bg: #eaecf1;
C
codecalm 已提交
1457
  --tblr-table-striped-color: #232e3c;
C
codecalm 已提交
1458
  --tblr-table-active-bg: #dfe2e7;
C
codecalm 已提交
1459
  --tblr-table-active-color: #232e3c;
C
codecalm 已提交
1460
  --tblr-table-hover-bg: #e4e7ec;
C
codecalm 已提交
1461 1462
  --tblr-table-hover-color: #232e3c;
  color: #232e3c;
C
codecalm 已提交
1463
  border-color: #dfe2e7; }
C
codecalm 已提交
1464 1465

.table-dark {
C
codecalm 已提交
1466
  --tblr-table-bg: #232e3c;
C
codecalm 已提交
1467 1468
  --tblr-table-striped-bg: #2d3846;
  --tblr-table-striped-color: #f4f6fa;
C
codecalm 已提交
1469
  --tblr-table-active-bg: #38424f;
C
codecalm 已提交
1470 1471 1472 1473
  --tblr-table-active-color: #f4f6fa;
  --tblr-table-hover-bg: #333d4a;
  --tblr-table-hover-color: #f4f6fa;
  color: #f4f6fa;
C
codecalm 已提交
1474
  border-color: #38424f; }
C
codecalm 已提交
1475 1476 1477 1478 1479

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; }

C
codecalm 已提交
1480
@media (max-width: 575.98px) {
C
codecalm 已提交
1481 1482 1483 1484
  .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; } }

C
codecalm 已提交
1485
@media (max-width: 767.98px) {
C
codecalm 已提交
1486 1487 1488 1489
  .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; } }

C
codecalm 已提交
1490
@media (max-width: 991.98px) {
C
codecalm 已提交
1491 1492 1493 1494
  .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; } }

C
codecalm 已提交
1495
@media (max-width: 1199.98px) {
C
codecalm 已提交
1496 1497 1498 1499
  .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; } }

C
codecalm 已提交
1500 1501 1502 1503 1504
@media (max-width: 1399.98px) {
  .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; } }

C
codecalm 已提交
1505
.form-label {
C
codecalm 已提交
1506 1507 1508
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500; }
C
codecalm 已提交
1509 1510 1511 1512 1513 1514

.col-form-label {
  padding-top: calc(0.4375rem + 1px);
  padding-bottom: calc(0.4375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
C
codecalm 已提交
1515 1516
  font-weight: 500;
  line-height: 1.4285714; }
C
codecalm 已提交
1517 1518 1519 1520

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
C
codecalm 已提交
1521
  font-size: 1.25rem; }
C
codecalm 已提交
1522 1523 1524 1525 1526 1527 1528 1529

.col-form-label-sm {
  padding-top: calc(0.125rem + 1px);
  padding-bottom: calc(0.125rem + 1px);
  font-size: 0.75rem; }

.form-text {
  margin-top: 0.25rem;
C
codecalm 已提交
1530
  font-size: 85.7142857%;
C
codecalm 已提交
1531
  color: #656d77; }
C
codecalm 已提交
1532 1533 1534 1535 1536 1537 1538

.form-control {
  display: block;
  width: 100%;
  padding: 0.4375rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 400;
C
codecalm 已提交
1539 1540
  line-height: 1.4285714;
  color: #232e3c;
1541
  background-color: #f4f6fa;
C
codecalm 已提交
1542
  background-clip: padding-box;
C
codecalm 已提交
1543
  border: 1px solid #dadcde;
C
codecalm 已提交
1544 1545 1546
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
C
codecalm 已提交
1547
  border-radius: 4px;
C
codecalm 已提交
1548 1549 1550 1551
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
  @media (prefers-reduced-motion: reduce) {
    .form-control {
      transition: none; } }
C
codecalm 已提交
1552 1553 1554 1555
  .form-control[type="file"] {
    overflow: hidden; }
    .form-control[type="file"]:not(:disabled):not([readonly]) {
      cursor: pointer; }
C
codecalm 已提交
1556 1557
  .form-control:focus {
    color: inherit;
1558
    background-color: #f4f6fa;
C
codecalm 已提交
1559
    border-color: #90b5e2;
C
codecalm 已提交
1560 1561
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(32, 107, 196, 0.25); }
C
codecalm 已提交
1562 1563
  .form-control::-webkit-date-and-time-value {
    height: 1.4285714em; }
C
codecalm 已提交
1564
  .form-control::-webkit-input-placeholder {
C
codecalm 已提交
1565
    color: #a7abb1;
C
codecalm 已提交
1566 1567
    opacity: 1; }
  .form-control::-moz-placeholder {
C
codecalm 已提交
1568
    color: #a7abb1;
C
codecalm 已提交
1569 1570
    opacity: 1; }
  .form-control:-ms-input-placeholder {
C
codecalm 已提交
1571
    color: #a7abb1;
C
codecalm 已提交
1572 1573
    opacity: 1; }
  .form-control::-ms-input-placeholder {
C
codecalm 已提交
1574
    color: #a7abb1;
C
codecalm 已提交
1575 1576
    opacity: 1; }
  .form-control::placeholder {
C
codecalm 已提交
1577
    color: #a7abb1;
C
codecalm 已提交
1578 1579
    opacity: 1; }
  .form-control:disabled, .form-control[readonly] {
C
codecalm 已提交
1580
    background-color: #f4f6fa;
C
codecalm 已提交
1581
    opacity: 1; }
1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610
  .form-control::-webkit-file-upload-button {
    padding: 0.4375rem 0.75rem;
    margin: -0.4375rem -0.75rem;
    -webkit-margin-end: 0.75rem;
            margin-inline-end: 0.75rem;
    color: #232e3c;
    background-color: #f4f6fa;
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-inline-end-width: 1px;
    border-radius: 0;
    -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
  .form-control::file-selector-button {
    padding: 0.4375rem 0.75rem;
    margin: -0.4375rem -0.75rem;
    -webkit-margin-end: 0.75rem;
            margin-inline-end: 0.75rem;
    color: #232e3c;
    background-color: #f4f6fa;
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-inline-end-width: 1px;
    border-radius: 0;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
C
codecalm 已提交
1611 1612 1613 1614 1615 1616
  .form-control::file-selector-button {
    padding: 0.4375rem 0.75rem;
    margin: -0.4375rem -0.75rem;
    -webkit-margin-end: 0.75rem;
            margin-inline-end: 0.75rem;
    color: #232e3c;
C
codecalm 已提交
1617
    background-color: #f4f6fa;
C
codecalm 已提交
1618 1619 1620 1621 1622 1623 1624 1625
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-inline-end-width: 1px;
    border-radius: 0;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
    @media (prefers-reduced-motion: reduce) {
1626 1627 1628 1629 1630
      .form-control::-webkit-file-upload-button {
        -webkit-transition: none;
        transition: none; }
      .form-control::file-selector-button {
        transition: none; }
C
codecalm 已提交
1631 1632
      .form-control::file-selector-button {
        transition: none; } }
1633 1634 1635 1636
  .form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
    background-color: #e8eaee; }
  .form-control:hover:not(:disabled):not([readonly])::file-selector-button {
    background-color: #e8eaee; }
C
codecalm 已提交
1637
  .form-control:hover:not(:disabled):not([readonly])::file-selector-button {
C
codecalm 已提交
1638
    background-color: #e8eaee; }
C
codecalm 已提交
1639 1640 1641 1642 1643 1644
  .form-control::-webkit-file-upload-button {
    padding: 0.4375rem 0.75rem;
    margin: -0.4375rem -0.75rem;
    -webkit-margin-end: 0.75rem;
            margin-inline-end: 0.75rem;
    color: #232e3c;
C
codecalm 已提交
1645
    background-color: #f4f6fa;
C
codecalm 已提交
1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-inline-end-width: 1px;
    border-radius: 0;
    -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
    @media (prefers-reduced-motion: reduce) {
      .form-control::-webkit-file-upload-button {
        -webkit-transition: none;
        transition: none; } }
  .form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
C
codecalm 已提交
1659
    background-color: #e8eaee; }
C
codecalm 已提交
1660 1661 1662 1663 1664 1665

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.4375rem 0;
  margin-bottom: 0;
C
codecalm 已提交
1666 1667
  line-height: 1.4285714;
  color: #232e3c;
C
codecalm 已提交
1668 1669 1670 1671 1672 1673 1674 1675
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0; }
  .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
    padding-right: 0;
    padding-left: 0; }

.form-control-sm {
C
codecalm 已提交
1676
  min-height: calc(1.4285714em + 0.25rem + 2px);
C
codecalm 已提交
1677 1678
  padding: 0.125rem 0.5rem;
  font-size: 0.75rem;
C
codecalm 已提交
1679
  border-radius: 2px; }
1680 1681 1682 1683 1684 1685 1686 1687 1688 1689
  .form-control-sm::-webkit-file-upload-button {
    padding: 0.125rem 0.5rem;
    margin: -0.125rem -0.5rem;
    -webkit-margin-end: 0.5rem;
            margin-inline-end: 0.5rem; }
  .form-control-sm::file-selector-button {
    padding: 0.125rem 0.5rem;
    margin: -0.125rem -0.5rem;
    -webkit-margin-end: 0.5rem;
            margin-inline-end: 0.5rem; }
C
codecalm 已提交
1690 1691 1692 1693
  .form-control-sm::file-selector-button {
    padding: 0.125rem 0.5rem;
    margin: -0.125rem -0.5rem;
    -webkit-margin-end: 0.5rem;
C
codecalm 已提交
1694
            margin-inline-end: 0.5rem; }
C
codecalm 已提交
1695 1696 1697 1698 1699
  .form-control-sm::-webkit-file-upload-button {
    padding: 0.125rem 0.5rem;
    margin: -0.125rem -0.5rem;
    -webkit-margin-end: 0.5rem;
            margin-inline-end: 0.5rem; }
C
codecalm 已提交
1700 1701

.form-control-lg {
C
codecalm 已提交
1702
  min-height: calc(1.4285714em + 1rem + 2px);
C
codecalm 已提交
1703
  padding: 0.5rem 1.5rem;
C
codecalm 已提交
1704
  font-size: 1.25rem;
C
codecalm 已提交
1705
  border-radius: 8px; }
1706 1707 1708 1709 1710 1711 1712 1713 1714 1715
  .form-control-lg::-webkit-file-upload-button {
    padding: 0.5rem 1.5rem;
    margin: -0.5rem -1.5rem;
    -webkit-margin-end: 1.5rem;
            margin-inline-end: 1.5rem; }
  .form-control-lg::file-selector-button {
    padding: 0.5rem 1.5rem;
    margin: -0.5rem -1.5rem;
    -webkit-margin-end: 1.5rem;
            margin-inline-end: 1.5rem; }
C
codecalm 已提交
1716 1717 1718 1719
  .form-control-lg::file-selector-button {
    padding: 0.5rem 1.5rem;
    margin: -0.5rem -1.5rem;
    -webkit-margin-end: 1.5rem;
C
codecalm 已提交
1720
            margin-inline-end: 1.5rem; }
C
codecalm 已提交
1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734
  .form-control-lg::-webkit-file-upload-button {
    padding: 0.5rem 1.5rem;
    margin: -0.5rem -1.5rem;
    -webkit-margin-end: 1.5rem;
            margin-inline-end: 1.5rem; }

textarea.form-control {
  min-height: calc(1.4285714em + 0.875rem + 2px); }

textarea.form-control-sm {
  min-height: calc(1.4285714em + 0.25rem + 2px); }

textarea.form-control-lg {
  min-height: calc(1.4285714em + 1rem + 2px); }
C
codecalm 已提交
1735 1736

.form-control-color {
1737
  width: 3rem;
C
codecalm 已提交
1738
  height: auto;
C
codecalm 已提交
1739
  padding: 0.4375rem; }
C
codecalm 已提交
1740 1741 1742 1743
  .form-control-color:not(:disabled):not([readonly]) {
    cursor: pointer; }
  .form-control-color::-moz-color-swatch {
    height: 1.4285714em;
C
codecalm 已提交
1744
    border-radius: 4px; }
C
codecalm 已提交
1745 1746
  .form-control-color::-webkit-color-swatch {
    height: 1.4285714em;
C
codecalm 已提交
1747
    border-radius: 4px; }
C
codecalm 已提交
1748 1749 1750 1751

.form-select {
  display: block;
  width: 100%;
C
codecalm 已提交
1752
  padding: 0.4375rem 2.25rem 0.4375rem 0.75rem;
1753
  -moz-padding-start: calc(0.75rem - 3px);
C
codecalm 已提交
1754 1755
  font-size: 0.875rem;
  font-weight: 400;
C
codecalm 已提交
1756 1757
  line-height: 1.4285714;
  color: #232e3c;
1758
  background-color: #f4f6fa;
C
codecalm 已提交
1759
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23dadcde' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
C
codecalm 已提交
1760 1761 1762
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
C
codecalm 已提交
1763
  border: 1px solid #dadcde;
C
codecalm 已提交
1764
  border-radius: 4px;
1765
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
C
codecalm 已提交
1766 1767 1768
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
1769 1770 1771
  @media (prefers-reduced-motion: reduce) {
    .form-select {
      transition: none; } }
C
codecalm 已提交
1772
  .form-select:focus {
C
codecalm 已提交
1773
    border-color: #90b5e2;
C
codecalm 已提交
1774 1775 1776 1777 1778 1779
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(32, 107, 196, 0.25); }
  .form-select[multiple], .form-select[size]:not([size="1"]) {
    padding-right: 0.75rem;
    background-image: none; }
  .form-select:disabled {
C
codecalm 已提交
1780
    background-color: #f0f2f6; }
C
codecalm 已提交
1781 1782
  .form-select:-moz-focusring {
    color: transparent;
C
codecalm 已提交
1783
    text-shadow: 0 0 0 #232e3c; }
C
codecalm 已提交
1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794

.form-select-sm {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
  padding-left: 0.5rem;
  font-size: 0.75rem; }

.form-select-lg {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1.5rem;
C
codecalm 已提交
1795
  font-size: 1.25rem; }
C
codecalm 已提交
1796 1797 1798

.form-check {
  display: block;
C
codecalm 已提交
1799
  min-height: 1.25rem;
C
codecalm 已提交
1800
  padding-left: 1.5rem;
C
codecalm 已提交
1801
  margin-bottom: 0.5rem; }
C
codecalm 已提交
1802 1803 1804 1805 1806 1807 1808
  .form-check .form-check-input {
    float: left;
    margin-left: -1.5rem; }

.form-check-input {
  width: 1rem;
  height: 1rem;
C
codecalm 已提交
1809
  margin-top: 0.2142857rem;
C
codecalm 已提交
1810 1811 1812 1813 1814
  vertical-align: top;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
C
codecalm 已提交
1815
  border: 1px solid rgba(101, 109, 119, 0.24);
C
codecalm 已提交
1816 1817 1818 1819
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-print-color-adjust: exact;
C
codecalm 已提交
1820
          color-adjust: exact; }
C
codecalm 已提交
1821
  .form-check-input[type="checkbox"] {
C
codecalm 已提交
1822
    border-radius: 4px; }
C
codecalm 已提交
1823 1824 1825 1826 1827
  .form-check-input[type="radio"] {
    border-radius: 50%; }
  .form-check-input:active {
    filter: brightness(90%); }
  .form-check-input:focus {
C
codecalm 已提交
1828
    border-color: #90b5e2;
C
codecalm 已提交
1829 1830 1831 1832
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(32, 107, 196, 0.25); }
  .form-check-input:checked {
    background-color: #206bc4;
C
codecalm 已提交
1833
    border-color: rgba(101, 109, 119, 0.24); }
C
codecalm 已提交
1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844
    .form-check-input:checked[type="checkbox"] {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' width='16' height='16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8.5l2.5 2.5l5.5 -5.5'/%3e%3c/svg%3e"); }
    .form-check-input:checked[type="radio"] {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3ccircle r='3' fill='%23ffffff' cx='8' cy='8' /%3e%3c/svg%3e"); }
  .form-check-input[type="checkbox"]:indeterminate {
    background-color: #206bc4;
    border-color: #206bc4;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e"); }
  .form-check-input:disabled {
    pointer-events: none;
    filter: none;
C
codecalm 已提交
1845
    opacity: 0.5; }
C
codecalm 已提交
1846
  .form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
C
codecalm 已提交
1847
    opacity: 0.7; }
C
codecalm 已提交
1848 1849

.form-switch {
C
codecalm 已提交
1850
  padding-left: 2.5rem; }
C
codecalm 已提交
1851
  .form-switch .form-check-input {
C
codecalm 已提交
1852 1853 1854
    width: 2rem;
    margin-left: -2.5rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23e6e8e9'/%3e%3c/svg%3e");
C
codecalm 已提交
1855
    background-position: left center;
C
codecalm 已提交
1856 1857 1858 1859 1860
    border-radius: 2rem;
    transition: background-position 0.15s ease-in-out; }
    @media (prefers-reduced-motion: reduce) {
      .form-switch .form-check-input {
        transition: none; } }
C
codecalm 已提交
1861
    .form-switch .form-check-input:focus {
C
codecalm 已提交
1862
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2390b5e2'/%3e%3c/svg%3e"); }
C
codecalm 已提交
1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874
    .form-switch .form-check-input:checked {
      background-position: right center;
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23ffffff'/%3e%3c/svg%3e"); }

.form-check-inline {
  display: inline-block;
  margin-right: 1rem; }

.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none; }
C
codecalm 已提交
1875 1876 1877 1878
  .btn-check[disabled] + .btn, .btn-check:disabled + .btn {
    pointer-events: none;
    filter: none;
    opacity: 0.65; }
C
codecalm 已提交
1879 1880 1881 1882 1883 1884 1885 1886 1887 1888

.form-range {
  width: 100%;
  height: 1.25rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
  .form-range:focus {
C
codecalm 已提交
1889
    outline: 0; }
C
codecalm 已提交
1890
    .form-range:focus::-webkit-slider-thumb {
C
codecalm 已提交
1891
      box-shadow: 0 0 0 1px #f4f6fa, 0 0 0 0.25rem rgba(32, 107, 196, 0.25); }
C
codecalm 已提交
1892
    .form-range:focus::-moz-range-thumb {
C
codecalm 已提交
1893
      box-shadow: 0 0 0 1px #f4f6fa, 0 0 0 0.25rem rgba(32, 107, 196, 0.25); }
C
codecalm 已提交
1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911
  .form-range::-moz-focus-outer {
    border: 0; }
  .form-range::-webkit-slider-thumb {
    width: 1rem;
    height: 1rem;
    margin-top: -0.375rem;
    background-color: #206bc4;
    border: 2px solid #ffffff;
    border-radius: 1rem;
    -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    -webkit-appearance: none;
            appearance: none; }
    @media (prefers-reduced-motion: reduce) {
      .form-range::-webkit-slider-thumb {
        -webkit-transition: none;
        transition: none; } }
    .form-range::-webkit-slider-thumb:active {
C
codecalm 已提交
1912
      background-color: #bcd3ed; }
C
codecalm 已提交
1913 1914 1915 1916 1917
  .form-range::-webkit-slider-runnable-track {
    width: 100%;
    height: 0.25rem;
    color: transparent;
    cursor: pointer;
C
codecalm 已提交
1918
    background-color: rgba(169, 174, 182, 0.24);
C
codecalm 已提交
1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935
    border-color: transparent;
    border-radius: 1rem; }
  .form-range::-moz-range-thumb {
    width: 1rem;
    height: 1rem;
    background-color: #206bc4;
    border: 2px solid #ffffff;
    border-radius: 1rem;
    -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    -moz-appearance: none;
         appearance: none; }
    @media (prefers-reduced-motion: reduce) {
      .form-range::-moz-range-thumb {
        -moz-transition: none;
        transition: none; } }
    .form-range::-moz-range-thumb:active {
C
codecalm 已提交
1936
      background-color: #bcd3ed; }
C
codecalm 已提交
1937 1938 1939 1940 1941
  .form-range::-moz-range-track {
    width: 100%;
    height: 0.25rem;
    color: transparent;
    cursor: pointer;
C
codecalm 已提交
1942
    background-color: rgba(169, 174, 182, 0.24);
C
codecalm 已提交
1943 1944 1945 1946 1947
    border-color: transparent;
    border-radius: 1rem; }
  .form-range:disabled {
    pointer-events: none; }
    .form-range:disabled::-webkit-slider-thumb {
C
codecalm 已提交
1948
      background-color: #c6cad0; }
C
codecalm 已提交
1949
    .form-range:disabled::-moz-range-thumb {
C
codecalm 已提交
1950
      background-color: #c6cad0; }
C
codecalm 已提交
1951 1952 1953 1954 1955 1956

.form-floating {
  position: relative; }
  .form-floating > .form-control,
  .form-floating > .form-select {
    height: calc(3.5rem + 2px);
1957
    line-height: 1.25; }
C
codecalm 已提交
1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970
  .form-floating > label {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 1rem 0.75rem;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out; }
    @media (prefers-reduced-motion: reduce) {
      .form-floating > label {
        transition: none; } }
1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994
  .form-floating > .form-control {
    padding: 1rem 0.75rem; }
    .form-floating > .form-control::-webkit-input-placeholder {
      color: transparent; }
    .form-floating > .form-control::-moz-placeholder {
      color: transparent; }
    .form-floating > .form-control:-ms-input-placeholder {
      color: transparent; }
    .form-floating > .form-control::-ms-input-placeholder {
      color: transparent; }
    .form-floating > .form-control::placeholder {
      color: transparent; }
    .form-floating > .form-control:not(:-moz-placeholder-shown) {
      padding-top: 1.625rem;
      padding-bottom: 0.625rem; }
    .form-floating > .form-control:not(:-ms-input-placeholder) {
      padding-top: 1.625rem;
      padding-bottom: 0.625rem; }
    .form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {
      padding-top: 1.625rem;
      padding-bottom: 0.625rem; }
    .form-floating > .form-control:-webkit-autofill {
      padding-top: 1.625rem;
      padding-bottom: 0.625rem; }
C
codecalm 已提交
1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012
  .form-floating > .form-select {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem; }
  .form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem); }
  .form-floating > .form-control:not(:-ms-input-placeholder) ~ label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem); }
  .form-floating > .form-control:focus ~ label,
  .form-floating > .form-control:not(:placeholder-shown) ~ label,
  .form-floating > .form-select ~ label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem); }
  .form-floating > .form-control:-webkit-autofill ~ label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem); }

C
codecalm 已提交
2013 2014 2015 2016 2017 2018 2019
.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%; }
  .input-group > .form-control,
C
codecalm 已提交
2020
  .input-group > .form-select {
C
codecalm 已提交
2021 2022 2023 2024 2025
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0; }
  .input-group > .form-control:focus,
C
codecalm 已提交
2026
  .input-group > .form-select:focus {
C
codecalm 已提交
2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039
    z-index: 3; }
  .input-group .btn {
    position: relative;
    z-index: 2; }
    .input-group .btn:focus {
      z-index: 3; }

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.4375rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 400;
C
codecalm 已提交
2040
  line-height: 1.4285714;
C
codecalm 已提交
2041
  color: #656d77;
C
codecalm 已提交
2042 2043
  text-align: center;
  white-space: nowrap;
C
codecalm 已提交
2044
  background-color: #f4f6fa;
C
codecalm 已提交
2045
  border: 1px solid #dadcde;
C
codecalm 已提交
2046
  border-radius: 4px; }
C
codecalm 已提交
2047 2048 2049 2050 2051 2052

.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn {
  padding: 0.5rem 1.5rem;
C
codecalm 已提交
2053
  font-size: 1.25rem;
C
codecalm 已提交
2054
  border-radius: 8px; }
C
codecalm 已提交
2055 2056 2057 2058 2059 2060 2061

.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn {
  padding: 0.125rem 0.5rem;
  font-size: 0.75rem;
C
codecalm 已提交
2062
  border-radius: 2px; }
C
codecalm 已提交
2063 2064 2065

.input-group-lg > .form-select,
.input-group-sm > .form-select {
C
codecalm 已提交
2066
  padding-right: 3rem; }
C
codecalm 已提交
2067

C
codecalm 已提交
2068 2069 2070 2071 2072 2073 2074
.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n + 3) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.input-group.has-validation > :nth-last-child(n + 3):not(.dropdown-toggle):not(.dropdown-menu),
.input-group.has-validation > .dropdown-toggle:nth-last-child(n + 4) {
C
codecalm 已提交
2075 2076 2077
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

C
codecalm 已提交
2078
.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
C
codecalm 已提交
2079 2080 2081 2082 2083 2084 2085 2086
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
C
codecalm 已提交
2087
  font-size: 85.7142857%;
M
Michal Wolny 已提交
2088
  color: #2fb344; }
C
codecalm 已提交
2089 2090 2091 2092 2093 2094 2095 2096 2097

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
C
codecalm 已提交
2098
  font-size: 0.765625rem;
C
codecalm 已提交
2099
  color: #f4f6fa;
M
Michal Wolny 已提交
2100
  background-color: rgba(47, 179, 68, 0.9);
C
codecalm 已提交
2101
  border-radius: 4px; }
C
codecalm 已提交
2102 2103 2104 2105 2106 2107 2108 2109

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block; }

.was-validated .form-control:valid, .form-control.is-valid {
M
Michal Wolny 已提交
2110
  border-color: #2fb344;
C
codecalm 已提交
2111
  padding-right: calc(1.4285714em + 0.875rem);
M
Michal Wolny 已提交
2112
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232fb344' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='20 6 9 17 4 12'%3e%3c/polyline%3e%3c/svg%3e");
C
codecalm 已提交
2113
  background-repeat: no-repeat;
C
codecalm 已提交
2114 2115
  background-position: right calc(0.3571429em + 0.21875rem) center;
  background-size: calc(0.7142857em + 0.4375rem) calc(0.7142857em + 0.4375rem); }
C
codecalm 已提交
2116
  .was-validated .form-control:valid:focus, .form-control.is-valid:focus {
M
Michal Wolny 已提交
2117 2118
    border-color: #2fb344;
    box-shadow: 0 0 0 0.25rem rgba(47, 179, 68, 0.25); }
C
codecalm 已提交
2119 2120

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
C
codecalm 已提交
2121 2122
  padding-right: calc(1.4285714em + 0.875rem);
  background-position: top calc(0.3571429em + 0.21875rem) right calc(0.3571429em + 0.21875rem); }
C
codecalm 已提交
2123 2124

.was-validated .form-select:valid, .form-select.is-valid {
2125 2126 2127 2128 2129 2130
  border-color: #2fb344; }
  .was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] {
    padding-right: 4.125rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23dadcde' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232fb344' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='20 6 9 17 4 12'%3e%3c/polyline%3e%3c/svg%3e");
    background-position: right 0.75rem center, center right 2.25rem;
    background-size: 16px 12px, calc(0.7142857em + 0.4375rem) calc(0.7142857em + 0.4375rem); }
C
codecalm 已提交
2131
  .was-validated .form-select:valid:focus, .form-select.is-valid:focus {
M
Michal Wolny 已提交
2132 2133
    border-color: #2fb344;
    box-shadow: 0 0 0 0.25rem rgba(47, 179, 68, 0.25); }
C
codecalm 已提交
2134 2135

.was-validated .form-check-input:valid, .form-check-input.is-valid {
M
Michal Wolny 已提交
2136
  border-color: #2fb344; }
C
codecalm 已提交
2137
  .was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
M
Michal Wolny 已提交
2138
    background-color: #2fb344; }
C
codecalm 已提交
2139
  .was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
M
Michal Wolny 已提交
2140
    box-shadow: 0 0 0 0.25rem rgba(47, 179, 68, 0.25); }
C
codecalm 已提交
2141
  .was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
M
Michal Wolny 已提交
2142
    color: #2fb344; }
C
codecalm 已提交
2143 2144 2145 2146

.form-check-inline .form-check-input ~ .valid-feedback {
  margin-left: .5em; }

C
codecalm 已提交
2147 2148 2149
.was-validated .input-group .form-control:valid, .input-group .form-control.is-valid, .was-validated
.input-group .form-select:valid,
.input-group .form-select.is-valid {
2150 2151 2152 2153 2154
  z-index: 1; }
  .was-validated .input-group .form-control:valid:focus, .input-group .form-control.is-valid:focus, .was-validated
  .input-group .form-select:valid:focus,
  .input-group .form-select.is-valid:focus {
    z-index: 3; }
C
codecalm 已提交
2155

C
codecalm 已提交
2156 2157 2158 2159
.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
C
codecalm 已提交
2160
  font-size: 85.7142857%;
M
Michal Wolny 已提交
2161
  color: #d63939; }
C
codecalm 已提交
2162 2163 2164 2165 2166 2167 2168 2169 2170

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
C
codecalm 已提交
2171
  font-size: 0.765625rem;
C
codecalm 已提交
2172
  color: #f4f6fa;
M
Michal Wolny 已提交
2173
  background-color: rgba(214, 57, 57, 0.9);
C
codecalm 已提交
2174
  border-radius: 4px; }
C
codecalm 已提交
2175 2176 2177 2178 2179 2180 2181 2182

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block; }

.was-validated .form-control:invalid, .form-control.is-invalid {
M
Michal Wolny 已提交
2183
  border-color: #d63939;
C
codecalm 已提交
2184
  padding-right: calc(1.4285714em + 0.875rem);
M
Michal Wolny 已提交
2185
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23d63939' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cline x1='18' y1='6' x2='6' y2='18'%3e%3c/line%3e%3cline x1='6' y1='6' x2='18' y2='18'%3e%3c/line%3e%3c/svg%3e");
C
codecalm 已提交
2186
  background-repeat: no-repeat;
C
codecalm 已提交
2187 2188
  background-position: right calc(0.3571429em + 0.21875rem) center;
  background-size: calc(0.7142857em + 0.4375rem) calc(0.7142857em + 0.4375rem); }
C
codecalm 已提交
2189
  .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
M
Michal Wolny 已提交
2190 2191
    border-color: #d63939;
    box-shadow: 0 0 0 0.25rem rgba(214, 57, 57, 0.25); }
C
codecalm 已提交
2192 2193

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
C
codecalm 已提交
2194 2195
  padding-right: calc(1.4285714em + 0.875rem);
  background-position: top calc(0.3571429em + 0.21875rem) right calc(0.3571429em + 0.21875rem); }
C
codecalm 已提交
2196 2197

.was-validated .form-select:invalid, .form-select.is-invalid {
2198 2199 2200 2201 2202 2203
  border-color: #d63939; }
  .was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] {
    padding-right: 4.125rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23dadcde' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23d63939' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cline x1='18' y1='6' x2='6' y2='18'%3e%3c/line%3e%3cline x1='6' y1='6' x2='18' y2='18'%3e%3c/line%3e%3c/svg%3e");
    background-position: right 0.75rem center, center right 2.25rem;
    background-size: 16px 12px, calc(0.7142857em + 0.4375rem) calc(0.7142857em + 0.4375rem); }
C
codecalm 已提交
2204
  .was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
M
Michal Wolny 已提交
2205 2206
    border-color: #d63939;
    box-shadow: 0 0 0 0.25rem rgba(214, 57, 57, 0.25); }
C
codecalm 已提交
2207 2208

.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
M
Michal Wolny 已提交
2209
  border-color: #d63939; }
C
codecalm 已提交
2210
  .was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
M
Michal Wolny 已提交
2211
    background-color: #d63939; }
C
codecalm 已提交
2212
  .was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
M
Michal Wolny 已提交
2213
    box-shadow: 0 0 0 0.25rem rgba(214, 57, 57, 0.25); }
C
codecalm 已提交
2214
  .was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
M
Michal Wolny 已提交
2215
    color: #d63939; }
C
codecalm 已提交
2216 2217 2218 2219

.form-check-inline .form-check-input ~ .invalid-feedback {
  margin-left: .5em; }

C
codecalm 已提交
2220 2221 2222
.was-validated .input-group .form-control:invalid, .input-group .form-control.is-invalid, .was-validated
.input-group .form-select:invalid,
.input-group .form-select.is-invalid {
2223 2224 2225 2226 2227
  z-index: 2; }
  .was-validated .input-group .form-control:invalid:focus, .input-group .form-control.is-invalid:focus, .was-validated
  .input-group .form-select:invalid:focus,
  .input-group .form-select.is-invalid:focus {
    z-index: 3; }
C
codecalm 已提交
2228

C
codecalm 已提交
2229 2230 2231
.btn {
  display: inline-block;
  font-weight: 500;
C
codecalm 已提交
2232 2233
  line-height: 1.4285714;
  color: #232e3c;
C
codecalm 已提交
2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.4375rem 1rem;
  font-size: 0.875rem;
C
codecalm 已提交
2245
  border-radius: 4px;
C
codecalm 已提交
2246 2247 2248 2249 2250
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
  @media (prefers-reduced-motion: reduce) {
    .btn {
      transition: none; } }
  .btn:hover {
C
codecalm 已提交
2251 2252
    color: #232e3c;
    text-decoration: none; }
C
codecalm 已提交
2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265
  .btn-check:focus + .btn, .btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(32, 107, 196, 0.25); }
  .btn:disabled, .btn.disabled,
  fieldset:disabled .btn {
    pointer-events: none;
    opacity: 0.65; }

.btn-link {
  font-weight: 400;
  color: #206bc4;
  text-decoration: none; }
  .btn-link:hover {
C
codecalm 已提交
2266 2267 2268 2269
    color: #1a569d;
    text-decoration: underline; }
  .btn-link:focus {
    text-decoration: underline; }
C
codecalm 已提交
2270
  .btn-link:disabled, .btn-link.disabled {
C
codecalm 已提交
2271
    color: #a0a6ae; }
C
codecalm 已提交
2272 2273 2274

.btn-lg, .btn-group-lg > .btn {
  padding: 0.5rem 1.5rem;
C
codecalm 已提交
2275
  font-size: 1.25rem;
C
codecalm 已提交
2276
  border-radius: 8px; }
C
codecalm 已提交
2277 2278 2279 2280

.btn-sm, .btn-group-sm > .btn {
  padding: 0.125rem 0.5rem;
  font-size: 0.75rem;
C
codecalm 已提交
2281
  border-radius: 2px; }
C
codecalm 已提交
2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300

.fade {
  transition: opacity 0.15s linear; }
  @media (prefers-reduced-motion: reduce) {
    .fade {
      transition: none; } }
  .fade:not(.show) {
    opacity: 0; }

.collapse:not(.show) {
  display: none; }

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease; }
  @media (prefers-reduced-motion: reduce) {
    .collapsing {
      transition: none; } }
2301 2302 2303 2304 2305 2306 2307
  .collapsing.collapse-horizontal {
    width: 0;
    height: auto;
    transition: width 0.35s ease; }
    @media (prefers-reduced-motion: reduce) {
      .collapsing.collapse-horizontal {
        transition: none; } }
C
codecalm 已提交
2308 2309

.dropup,
C
codecalm 已提交
2310
.dropend,
C
codecalm 已提交
2311
.dropdown,
C
codecalm 已提交
2312
.dropstart {
C
codecalm 已提交
2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324
  position: relative; }

.dropdown-toggle {
  white-space: nowrap; }
  .dropdown-toggle:after {
    content: "";
    display: inline-block;
    vertical-align: 0.306em;
    width: 0.36em;
    height: 0.36em;
    border-bottom: 1px solid;
    border-left: 1px solid;
C
codecalm 已提交
2325 2326
    margin-right: .1em;
    margin-left: 0.4em;
C
codecalm 已提交
2327 2328 2329 2330 2331 2332
    transform: rotate(-45deg); }

.dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: none;
M
Michal Wolny 已提交
2333
  min-width: 11rem;
C
codecalm 已提交
2334
  padding: 0.25rem 0;
C
codecalm 已提交
2335
  margin: 0;
C
codecalm 已提交
2336
  font-size: 0.875rem;
C
codecalm 已提交
2337
  color: #232e3c;
C
codecalm 已提交
2338 2339 2340 2341
  text-align: left;
  list-style: none;
  background-color: #ffffff;
  background-clip: padding-box;
C
codecalm 已提交
2342
  border: 1px solid rgba(101, 109, 119, 0.16);
C
codecalm 已提交
2343
  border-radius: 4px; }
C
codecalm 已提交
2344
  .dropdown-menu[data-bs-popper] {
2345
    top: 100%;
C
codecalm 已提交
2346 2347
    left: 0;
    margin-top: 1px; }
C
codecalm 已提交
2348

C
codecalm 已提交
2349
.dropdown-menu-start {
C
codecalm 已提交
2350 2351
  --bs-position: start; }
  .dropdown-menu-start[data-bs-popper] {
2352 2353
    right: auto;
    left: 0; }
C
codecalm 已提交
2354

C
codecalm 已提交
2355
.dropdown-menu-end {
C
codecalm 已提交
2356 2357
  --bs-position: end; }
  .dropdown-menu-end[data-bs-popper] {
2358 2359
    right: 0;
    left: auto; }
C
codecalm 已提交
2360

C
codecalm 已提交
2361
@media (min-width: 576px) {
C
codecalm 已提交
2362
  .dropdown-menu-sm-start {
C
codecalm 已提交
2363 2364
    --bs-position: start; }
    .dropdown-menu-sm-start[data-bs-popper] {
2365 2366
      right: auto;
      left: 0; }
C
codecalm 已提交
2367
  .dropdown-menu-sm-end {
C
codecalm 已提交
2368 2369
    --bs-position: end; }
    .dropdown-menu-sm-end[data-bs-popper] {
2370 2371
      right: 0;
      left: auto; } }
C
codecalm 已提交
2372

C
codecalm 已提交
2373
@media (min-width: 768px) {
C
codecalm 已提交
2374
  .dropdown-menu-md-start {
C
codecalm 已提交
2375 2376
    --bs-position: start; }
    .dropdown-menu-md-start[data-bs-popper] {
2377 2378
      right: auto;
      left: 0; }
C
codecalm 已提交
2379
  .dropdown-menu-md-end {
C
codecalm 已提交
2380 2381
    --bs-position: end; }
    .dropdown-menu-md-end[data-bs-popper] {
2382 2383
      right: 0;
      left: auto; } }
C
codecalm 已提交
2384

C
codecalm 已提交
2385
@media (min-width: 992px) {
C
codecalm 已提交
2386
  .dropdown-menu-lg-start {
C
codecalm 已提交
2387 2388
    --bs-position: start; }
    .dropdown-menu-lg-start[data-bs-popper] {
2389 2390
      right: auto;
      left: 0; }
C
codecalm 已提交
2391
  .dropdown-menu-lg-end {
C
codecalm 已提交
2392 2393
    --bs-position: end; }
    .dropdown-menu-lg-end[data-bs-popper] {
2394 2395
      right: 0;
      left: auto; } }
C
codecalm 已提交
2396

C
codecalm 已提交
2397
@media (min-width: 1200px) {
C
codecalm 已提交
2398
  .dropdown-menu-xl-start {
C
codecalm 已提交
2399 2400
    --bs-position: start; }
    .dropdown-menu-xl-start[data-bs-popper] {
2401 2402
      right: auto;
      left: 0; }
C
codecalm 已提交
2403
  .dropdown-menu-xl-end {
C
codecalm 已提交
2404 2405
    --bs-position: end; }
    .dropdown-menu-xl-end[data-bs-popper] {
2406 2407
      right: 0;
      left: auto; } }
C
codecalm 已提交
2408

C
codecalm 已提交
2409
@media (min-width: 1400px) {
C
codecalm 已提交
2410
  .dropdown-menu-xxl-start {
C
codecalm 已提交
2411 2412
    --bs-position: start; }
    .dropdown-menu-xxl-start[data-bs-popper] {
2413 2414
      right: auto;
      left: 0; }
C
codecalm 已提交
2415
  .dropdown-menu-xxl-end {
C
codecalm 已提交
2416 2417
    --bs-position: end; }
    .dropdown-menu-xxl-end[data-bs-popper] {
2418 2419
      right: 0;
      left: auto; } }
C
codecalm 已提交
2420

C
codecalm 已提交
2421
.dropup .dropdown-menu[data-bs-popper] {
C
codecalm 已提交
2422
  top: auto;
C
codecalm 已提交
2423 2424 2425
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 1px; }
C
codecalm 已提交
2426 2427 2428 2429 2430 2431 2432 2433 2434

.dropup .dropdown-toggle:after {
  content: "";
  display: inline-block;
  vertical-align: 0.306em;
  width: 0.36em;
  height: 0.36em;
  border-bottom: 1px solid;
  border-left: 1px solid;
C
codecalm 已提交
2435 2436
  margin-right: .1em;
  margin-left: 0.4em;
C
codecalm 已提交
2437 2438
  transform: rotate(135deg); }

2439
.dropend .dropdown-menu[data-bs-popper] {
C
codecalm 已提交
2440 2441
  top: 0;
  right: auto;
2442 2443 2444
  left: 100%;
  margin-top: 0;
  margin-left: 1px; }
C
codecalm 已提交
2445

C
codecalm 已提交
2446
.dropend .dropdown-toggle:after {
C
codecalm 已提交
2447 2448 2449 2450 2451 2452 2453
  content: "";
  display: inline-block;
  vertical-align: 0.306em;
  width: 0.36em;
  height: 0.36em;
  border-bottom: 1px solid;
  border-left: 1px solid;
C
codecalm 已提交
2454 2455
  margin-right: .1em;
  margin-left: 0.4em;
C
codecalm 已提交
2456
  transform: rotate(-135deg); }
C
codecalm 已提交
2457

C
codecalm 已提交
2458
.dropend .dropdown-toggle::after {
C
codecalm 已提交
2459 2460
  vertical-align: 0; }

2461
.dropstart .dropdown-menu[data-bs-popper] {
C
codecalm 已提交
2462 2463
  top: 0;
  right: 100%;
2464 2465 2466
  left: auto;
  margin-top: 0;
  margin-right: 1px; }
C
codecalm 已提交
2467

C
codecalm 已提交
2468
.dropstart .dropdown-toggle:after {
C
codecalm 已提交
2469 2470 2471 2472 2473 2474 2475
  content: "";
  display: inline-block;
  vertical-align: 0.306em;
  width: 0.36em;
  height: 0.36em;
  border-bottom: 1px solid;
  border-left: 1px solid;
C
codecalm 已提交
2476 2477
  margin-right: .1em;
  margin-left: 0.4em;
C
codecalm 已提交
2478 2479
  transform: rotate(45deg); }

C
codecalm 已提交
2480
.dropstart .dropdown-toggle::before {
C
codecalm 已提交
2481 2482 2483 2484 2485 2486
  vertical-align: 0; }

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
C
codecalm 已提交
2487
  border-top: 1px solid rgba(101, 109, 119, 0.16); }
C
codecalm 已提交
2488 2489 2490 2491

.dropdown-item {
  display: block;
  width: 100%;
C
codecalm 已提交
2492
  padding: 0.5rem 0.75rem;
C
codecalm 已提交
2493 2494
  clear: both;
  font-weight: 400;
C
codecalm 已提交
2495
  color: inherit;
C
codecalm 已提交
2496 2497 2498 2499 2500 2501
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0; }
  .dropdown-item:hover, .dropdown-item:focus {
    color: inherit;
C
codecalm 已提交
2502
    text-decoration: none;
C
codecalm 已提交
2503
    background-color: rgba(101, 109, 119, 0.06); }
C
codecalm 已提交
2504 2505 2506 2507 2508
  .dropdown-item.active, .dropdown-item:active {
    color: #206bc4;
    text-decoration: none;
    background-color: rgba(32, 107, 196, 0.06); }
  .dropdown-item.disabled, .dropdown-item:disabled {
C
codecalm 已提交
2509
    color: #c6cad0;
C
codecalm 已提交
2510 2511 2512 2513 2514 2515 2516 2517
    pointer-events: none;
    background-color: transparent; }

.dropdown-menu.show {
  display: block; }

.dropdown-header {
  display: block;
C
codecalm 已提交
2518
  padding: 0.25rem 0.75rem;
C
codecalm 已提交
2519
  margin-bottom: 0;
C
codecalm 已提交
2520
  font-size: 0.765625rem;
C
codecalm 已提交
2521
  color: #a0a6ae;
C
codecalm 已提交
2522 2523 2524 2525
  white-space: nowrap; }

.dropdown-item-text {
  display: block;
C
codecalm 已提交
2526 2527
  padding: 0.5rem 0.75rem;
  color: inherit; }
C
codecalm 已提交
2528 2529

.dropdown-menu-dark {
C
codecalm 已提交
2530
  color: #e7eaef;
C
codecalm 已提交
2531
  background-color: #444e5a;
C
codecalm 已提交
2532
  border-color: rgba(101, 109, 119, 0.16); }
C
codecalm 已提交
2533
  .dropdown-menu-dark .dropdown-item {
C
codecalm 已提交
2534
    color: #e7eaef; }
C
codecalm 已提交
2535 2536 2537 2538 2539 2540 2541
    .dropdown-menu-dark .dropdown-item:hover, .dropdown-menu-dark .dropdown-item:focus {
      color: #ffffff;
      background-color: rgba(255, 255, 255, 0.15); }
    .dropdown-menu-dark .dropdown-item.active, .dropdown-menu-dark .dropdown-item:active {
      color: #206bc4;
      background-color: rgba(32, 107, 196, 0.06); }
    .dropdown-menu-dark .dropdown-item.disabled, .dropdown-menu-dark .dropdown-item:disabled {
C
codecalm 已提交
2542
      color: #c6cad0; }
C
codecalm 已提交
2543
  .dropdown-menu-dark .dropdown-divider {
C
codecalm 已提交
2544
    border-color: rgba(101, 109, 119, 0.16); }
C
codecalm 已提交
2545
  .dropdown-menu-dark .dropdown-item-text {
C
codecalm 已提交
2546
    color: #e7eaef; }
C
codecalm 已提交
2547
  .dropdown-menu-dark .dropdown-header {
C
codecalm 已提交
2548
    color: #c6cad0; }
C
codecalm 已提交
2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle; }
  .btn-group > .btn,
  .btn-group-vertical > .btn {
    position: relative;
    flex: 1 1 auto; }
  .btn-group > .btn-check:checked + .btn,
  .btn-group > .btn-check:focus + .btn,
  .btn-group > .btn:hover,
  .btn-group > .btn:focus,
  .btn-group > .btn:active,
  .btn-group > .btn.active,
  .btn-group-vertical > .btn-check:checked + .btn,
  .btn-group-vertical > .btn-check:focus + .btn,
  .btn-group-vertical > .btn:hover,
  .btn-group-vertical > .btn:focus,
  .btn-group-vertical > .btn:active,
  .btn-group-vertical > .btn.active {
    z-index: 1; }

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; }
  .btn-toolbar .input-group {
    width: auto; }

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px; }

.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.btn-group > .btn:nth-child(n + 3),
.btn-group > :not(.btn-check) + .btn,
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

.dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem; }
  .dropdown-toggle-split::after,
  .dropup .dropdown-toggle-split::after,
C
codecalm 已提交
2600
  .dropend .dropdown-toggle-split::after {
C
codecalm 已提交
2601
    margin-left: 0; }
C
codecalm 已提交
2602
  .dropstart .dropdown-toggle-split::before {
C
codecalm 已提交
2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626
    margin-right: 0; }

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem; }

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 1.125rem;
  padding-left: 1.125rem; }

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center; }
  .btn-group-vertical > .btn,
  .btn-group-vertical > .btn-group {
    width: 100%; }
  .btn-group-vertical > .btn:not(:first-child),
  .btn-group-vertical > .btn-group:not(:first-child) {
    margin-top: -1px; }
  .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
  .btn-group-vertical > .btn-group:not(:last-child) > .btn {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0; }
C
codecalm 已提交
2627
  .btn-group-vertical > .btn ~ .btn,
C
codecalm 已提交
2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640
  .btn-group-vertical > .btn-group:not(:first-child) > .btn {
    border-top-left-radius: 0;
    border-top-right-radius: 0; }

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none; }

.nav-link {
  display: block;
C
codecalm 已提交
2641 2642
  padding: 0.5rem 0.75rem;
  color: inherit;
C
codecalm 已提交
2643 2644 2645 2646
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out; }
  @media (prefers-reduced-motion: reduce) {
    .nav-link {
      transition: none; } }
C
codecalm 已提交
2647
  .nav-link:hover, .nav-link:focus {
2648
    color: #1a569d;
C
codecalm 已提交
2649
    text-decoration: none; }
C
codecalm 已提交
2650
  .nav-link.disabled {
C
codecalm 已提交
2651
    color: #a0a6ae;
C
codecalm 已提交
2652 2653 2654 2655
    pointer-events: none;
    cursor: default; }

.nav-tabs {
C
codecalm 已提交
2656
  border-bottom: 1px solid #e7eaef; }
C
codecalm 已提交
2657 2658
  .nav-tabs .nav-link {
    margin-bottom: -1px;
C
codecalm 已提交
2659
    background: none;
C
codecalm 已提交
2660
    border: 1px solid transparent;
C
codecalm 已提交
2661 2662
    border-top-left-radius: 4px;
    border-top-right-radius: 4px; }
C
codecalm 已提交
2663
    .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
C
codecalm 已提交
2664 2665
      border-color: #f0f2f6 #f0f2f6 #e7eaef;
      isolation: isolate; }
C
codecalm 已提交
2666
    .nav-tabs .nav-link.disabled {
C
codecalm 已提交
2667
      color: #a0a6ae;
C
codecalm 已提交
2668 2669 2670 2671
      background-color: transparent;
      border-color: transparent; }
  .nav-tabs .nav-link.active,
  .nav-tabs .nav-item.show .nav-link {
C
codecalm 已提交
2672
    color: #6e7680;
C
codecalm 已提交
2673
    background-color: #f4f6fa;
C
codecalm 已提交
2674
    border-color: #e7eaef #e7eaef #f4f6fa; }
C
codecalm 已提交
2675 2676 2677 2678 2679 2680
  .nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0; }

.nav-pills .nav-link {
C
codecalm 已提交
2681 2682
  background: none;
  border: 0;
C
codecalm 已提交
2683
  border-radius: 4px; }
C
codecalm 已提交
2684 2685 2686

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
C
codecalm 已提交
2687 2688
  color: #206bc4;
  background-color: rgba(32, 107, 196, 0.06); }
C
codecalm 已提交
2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700

.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center; }

.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center; }

C
codecalm 已提交
2701 2702 2703 2704
.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%; }

C
codecalm 已提交
2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719
.tab-content > .tab-pane {
  display: none; }

.tab-content > .active {
  display: block; }

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem; }
  .navbar > .container,
C
codecalm 已提交
2720
  .navbar > .container-fluid, .navbar > .container-sm, .navbar > .container-md, .navbar > .container-lg, .navbar > .container-xl, .navbar > .container-xxl {
C
codecalm 已提交
2721 2722 2723 2724 2725 2726
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between; }

.navbar-brand {
C
codecalm 已提交
2727 2728
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
C
codecalm 已提交
2729
  margin-right: 1rem;
C
codecalm 已提交
2730 2731
  font-size: 1rem;
  white-space: nowrap; }
C
codecalm 已提交
2732 2733
  .navbar-brand:hover, .navbar-brand:focus {
    text-decoration: none; }
C
codecalm 已提交
2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none; }
  .navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0; }
  .navbar-nav .dropdown-menu {
    position: static; }

.navbar-text {
C
codecalm 已提交
2748 2749
  padding-top: 0.5rem;
  padding-bottom: 0.5rem; }
C
codecalm 已提交
2750 2751

.navbar-collapse {
C
codecalm 已提交
2752
  flex-basis: 100%;
C
codecalm 已提交
2753 2754
  flex-grow: 1;
  align-items: center; }
C
codecalm 已提交
2755 2756 2757 2758 2759 2760 2761

.navbar-toggler {
  padding: 0 0;
  font-size: 1rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
C
codecalm 已提交
2762
  border-radius: 4px;
C
codecalm 已提交
2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782
  transition: box-shadow 0.15s ease-in-out; }
  @media (prefers-reduced-motion: reduce) {
    .navbar-toggler {
      transition: none; } }
  .navbar-toggler:hover {
    text-decoration: none; }
  .navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: 0 0 0 0; }

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%; }

C
codecalm 已提交
2783 2784 2785 2786
.navbar-nav-scroll {
  max-height: var(--tblr-scroll-height, 75vh);
  overflow-y: auto; }

C
codecalm 已提交
2787
@media (min-width: 576px) {
C
codecalm 已提交
2788 2789 2790 2791 2792 2793 2794 2795 2796 2797
  .navbar-expand-sm {
    flex-wrap: nowrap;
    justify-content: flex-start; }
    .navbar-expand-sm .navbar-nav {
      flex-direction: row; }
      .navbar-expand-sm .navbar-nav .dropdown-menu {
        position: absolute; }
      .navbar-expand-sm .navbar-nav .nav-link {
        padding-right: 0.75rem;
        padding-left: 0.75rem; }
C
codecalm 已提交
2798 2799
    .navbar-expand-sm .navbar-nav-scroll {
      overflow: visible; }
C
codecalm 已提交
2800
    .navbar-expand-sm .navbar-collapse {
C
codecalm 已提交
2801 2802
      display: flex !important;
      flex-basis: auto; }
C
codecalm 已提交
2803
    .navbar-expand-sm .navbar-toggler {
2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827
      display: none; }
    .navbar-expand-sm .offcanvas-header {
      display: none; }
    .navbar-expand-sm .offcanvas {
      position: inherit;
      bottom: 0;
      z-index: 1000;
      flex-grow: 1;
      visibility: visible !important;
      background-color: transparent;
      border-right: 0;
      border-left: 0;
      transition: none;
      transform: none; }
    .navbar-expand-sm .offcanvas-top,
    .navbar-expand-sm .offcanvas-bottom {
      height: auto;
      border-top: 0;
      border-bottom: 0; }
    .navbar-expand-sm .offcanvas-body {
      display: flex;
      flex-grow: 0;
      padding: 0;
      overflow-y: visible; } }
C
codecalm 已提交
2828

C
codecalm 已提交
2829
@media (min-width: 768px) {
C
codecalm 已提交
2830 2831 2832 2833 2834 2835 2836 2837 2838 2839
  .navbar-expand-md {
    flex-wrap: nowrap;
    justify-content: flex-start; }
    .navbar-expand-md .navbar-nav {
      flex-direction: row; }
      .navbar-expand-md .navbar-nav .dropdown-menu {
        position: absolute; }
      .navbar-expand-md .navbar-nav .nav-link {
        padding-right: 0.75rem;
        padding-left: 0.75rem; }
C
codecalm 已提交
2840 2841
    .navbar-expand-md .navbar-nav-scroll {
      overflow: visible; }
C
codecalm 已提交
2842
    .navbar-expand-md .navbar-collapse {
C
codecalm 已提交
2843 2844
      display: flex !important;
      flex-basis: auto; }
C
codecalm 已提交
2845
    .navbar-expand-md .navbar-toggler {
2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869
      display: none; }
    .navbar-expand-md .offcanvas-header {
      display: none; }
    .navbar-expand-md .offcanvas {
      position: inherit;
      bottom: 0;
      z-index: 1000;
      flex-grow: 1;
      visibility: visible !important;
      background-color: transparent;
      border-right: 0;
      border-left: 0;
      transition: none;
      transform: none; }
    .navbar-expand-md .offcanvas-top,
    .navbar-expand-md .offcanvas-bottom {
      height: auto;
      border-top: 0;
      border-bottom: 0; }
    .navbar-expand-md .offcanvas-body {
      display: flex;
      flex-grow: 0;
      padding: 0;
      overflow-y: visible; } }
C
codecalm 已提交
2870

C
codecalm 已提交
2871
@media (min-width: 992px) {
C
codecalm 已提交
2872 2873 2874 2875 2876 2877 2878 2879 2880 2881
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start; }
    .navbar-expand-lg .navbar-nav {
      flex-direction: row; }
      .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute; }
      .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 0.75rem;
        padding-left: 0.75rem; }
C
codecalm 已提交
2882 2883
    .navbar-expand-lg .navbar-nav-scroll {
      overflow: visible; }
C
codecalm 已提交
2884
    .navbar-expand-lg .navbar-collapse {
C
codecalm 已提交
2885 2886
      display: flex !important;
      flex-basis: auto; }
C
codecalm 已提交
2887
    .navbar-expand-lg .navbar-toggler {
2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911
      display: none; }
    .navbar-expand-lg .offcanvas-header {
      display: none; }
    .navbar-expand-lg .offcanvas {
      position: inherit;
      bottom: 0;
      z-index: 1000;
      flex-grow: 1;
      visibility: visible !important;
      background-color: transparent;
      border-right: 0;
      border-left: 0;
      transition: none;
      transform: none; }
    .navbar-expand-lg .offcanvas-top,
    .navbar-expand-lg .offcanvas-bottom {
      height: auto;
      border-top: 0;
      border-bottom: 0; }
    .navbar-expand-lg .offcanvas-body {
      display: flex;
      flex-grow: 0;
      padding: 0;
      overflow-y: visible; } }
C
codecalm 已提交
2912

C
codecalm 已提交
2913
@media (min-width: 1200px) {
C
codecalm 已提交
2914 2915 2916 2917 2918 2919 2920 2921 2922 2923
  .navbar-expand-xl {
    flex-wrap: nowrap;
    justify-content: flex-start; }
    .navbar-expand-xl .navbar-nav {
      flex-direction: row; }
      .navbar-expand-xl .navbar-nav .dropdown-menu {
        position: absolute; }
      .navbar-expand-xl .navbar-nav .nav-link {
        padding-right: 0.75rem;
        padding-left: 0.75rem; }
C
codecalm 已提交
2924 2925
    .navbar-expand-xl .navbar-nav-scroll {
      overflow: visible; }
C
codecalm 已提交
2926
    .navbar-expand-xl .navbar-collapse {
C
codecalm 已提交
2927 2928
      display: flex !important;
      flex-basis: auto; }
C
codecalm 已提交
2929
    .navbar-expand-xl .navbar-toggler {
2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953
      display: none; }
    .navbar-expand-xl .offcanvas-header {
      display: none; }
    .navbar-expand-xl .offcanvas {
      position: inherit;
      bottom: 0;
      z-index: 1000;
      flex-grow: 1;
      visibility: visible !important;
      background-color: transparent;
      border-right: 0;
      border-left: 0;
      transition: none;
      transform: none; }
    .navbar-expand-xl .offcanvas-top,
    .navbar-expand-xl .offcanvas-bottom {
      height: auto;
      border-top: 0;
      border-bottom: 0; }
    .navbar-expand-xl .offcanvas-body {
      display: flex;
      flex-grow: 0;
      padding: 0;
      overflow-y: visible; } }
C
codecalm 已提交
2954

C
codecalm 已提交
2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965
@media (min-width: 1400px) {
  .navbar-expand-xxl {
    flex-wrap: nowrap;
    justify-content: flex-start; }
    .navbar-expand-xxl .navbar-nav {
      flex-direction: row; }
      .navbar-expand-xxl .navbar-nav .dropdown-menu {
        position: absolute; }
      .navbar-expand-xxl .navbar-nav .nav-link {
        padding-right: 0.75rem;
        padding-left: 0.75rem; }
C
codecalm 已提交
2966 2967
    .navbar-expand-xxl .navbar-nav-scroll {
      overflow: visible; }
C
codecalm 已提交
2968
    .navbar-expand-xxl .navbar-collapse {
C
codecalm 已提交
2969 2970
      display: flex !important;
      flex-basis: auto; }
C
codecalm 已提交
2971
    .navbar-expand-xxl .navbar-toggler {
2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995
      display: none; }
    .navbar-expand-xxl .offcanvas-header {
      display: none; }
    .navbar-expand-xxl .offcanvas {
      position: inherit;
      bottom: 0;
      z-index: 1000;
      flex-grow: 1;
      visibility: visible !important;
      background-color: transparent;
      border-right: 0;
      border-left: 0;
      transition: none;
      transform: none; }
    .navbar-expand-xxl .offcanvas-top,
    .navbar-expand-xxl .offcanvas-bottom {
      height: auto;
      border-top: 0;
      border-bottom: 0; }
    .navbar-expand-xxl .offcanvas-body {
      display: flex;
      flex-grow: 0;
      padding: 0;
      overflow-y: visible; } }
C
codecalm 已提交
2996

C
codecalm 已提交
2997 2998 2999 3000 3001 3002 3003 3004 3005 3006
.navbar-expand {
  flex-wrap: nowrap;
  justify-content: flex-start; }
  .navbar-expand .navbar-nav {
    flex-direction: row; }
    .navbar-expand .navbar-nav .dropdown-menu {
      position: absolute; }
    .navbar-expand .navbar-nav .nav-link {
      padding-right: 0.75rem;
      padding-left: 0.75rem; }
C
codecalm 已提交
3007 3008
  .navbar-expand .navbar-nav-scroll {
    overflow: visible; }
C
codecalm 已提交
3009
  .navbar-expand .navbar-collapse {
C
codecalm 已提交
3010 3011
    display: flex !important;
    flex-basis: auto; }
C
codecalm 已提交
3012 3013
  .navbar-expand .navbar-toggler {
    display: none; }
3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036
  .navbar-expand .offcanvas-header {
    display: none; }
  .navbar-expand .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none; }
  .navbar-expand .offcanvas-top,
  .navbar-expand .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0; }
  .navbar-expand .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible; }
C
codecalm 已提交
3037 3038

.navbar-light .navbar-brand {
C
codecalm 已提交
3039
  color: #232e3c; }
C
codecalm 已提交
3040
  .navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
C
codecalm 已提交
3041
    color: #232e3c; }
C
codecalm 已提交
3042 3043

.navbar-light .navbar-nav .nav-link {
C
codecalm 已提交
3044
  color: rgba(35, 46, 60, 0.7); }
C
codecalm 已提交
3045 3046 3047
  .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
    color: rgba(0, 0, 0, 0.7); }
  .navbar-light .navbar-nav .nav-link.disabled {
C
codecalm 已提交
3048
    color: rgba(35, 46, 60, 0.3); }
C
codecalm 已提交
3049 3050 3051

.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .nav-link.active {
C
codecalm 已提交
3052
  color: #232e3c; }
C
codecalm 已提交
3053 3054

.navbar-light .navbar-toggler {
C
codecalm 已提交
3055
  color: rgba(35, 46, 60, 0.7);
C
codecalm 已提交
3056 3057 3058
  border-color: rgba(0, 0, 0, 0.1); }

.navbar-light .navbar-toggler-icon {
C
codecalm 已提交
3059
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2835, 46, 60, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
C
codecalm 已提交
3060 3061

.navbar-light .navbar-text {
C
codecalm 已提交
3062
  color: rgba(35, 46, 60, 0.7); }
C
codecalm 已提交
3063 3064 3065
  .navbar-light .navbar-text a,
  .navbar-light .navbar-text a:hover,
  .navbar-light .navbar-text a:focus {
C
codecalm 已提交
3066
    color: #232e3c; }
C
codecalm 已提交
3067 3068 3069 3070 3071 3072 3073

.navbar-dark .navbar-brand {
  color: #ffffff; }
  .navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
    color: #ffffff; }

.navbar-dark .navbar-nav .nav-link {
C
codecalm 已提交
3074
  color: rgba(255, 255, 255, 0.7); }
C
codecalm 已提交
3075 3076 3077 3078 3079 3080 3081 3082 3083 3084
  .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
    color: rgba(255, 255, 255, 0.75); }
  .navbar-dark .navbar-nav .nav-link.disabled {
    color: rgba(255, 255, 255, 0.3); }

.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .nav-link.active {
  color: #ffffff; }

.navbar-dark .navbar-toggler {
C
codecalm 已提交
3085
  color: rgba(255, 255, 255, 0.7);
C
codecalm 已提交
3086 3087 3088
  border-color: rgba(255, 255, 255, 0.1); }

.navbar-dark .navbar-toggler-icon {
C
codecalm 已提交
3089
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
C
codecalm 已提交
3090 3091

.navbar-dark .navbar-text {
C
codecalm 已提交
3092
  color: rgba(255, 255, 255, 0.7); }
C
codecalm 已提交
3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105
  .navbar-dark .navbar-text a,
  .navbar-dark .navbar-text a:hover,
  .navbar-dark .navbar-text a:focus {
    color: #ffffff; }

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #ffffff;
  background-clip: border-box;
C
codecalm 已提交
3106
  border: 1px solid rgba(101, 109, 119, 0.16);
C
codecalm 已提交
3107
  border-radius: 4px; }
C
codecalm 已提交
3108 3109 3110 3111 3112 3113 3114 3115
  .card > hr, .card > .hr {
    margin-right: 0;
    margin-left: 0; }
  .card > .list-group {
    border-top: inherit;
    border-bottom: inherit; }
    .card > .list-group:first-child {
      border-top-width: 0;
C
codecalm 已提交
3116 3117
      border-top-left-radius: 3px;
      border-top-right-radius: 3px; }
C
codecalm 已提交
3118 3119
    .card > .list-group:last-child {
      border-bottom-width: 0;
C
codecalm 已提交
3120 3121
      border-bottom-right-radius: 3px;
      border-bottom-left-radius: 3px; }
C
codecalm 已提交
3122 3123 3124 3125 3126 3127 3128 3129 3130
  .card > .card-header + .list-group,
  .card > .list-group + .card-footer {
    border-top: 0; }

.card-body {
  flex: 1 1 auto;
  padding: 1rem 1rem; }

.card-title {
C
codecalm 已提交
3131
  margin-bottom: 1.25rem; }
C
codecalm 已提交
3132 3133

.card-subtitle {
C
codecalm 已提交
3134
  margin-top: -0.625rem;
C
codecalm 已提交
3135 3136 3137 3138 3139 3140 3141 3142 3143
  margin-bottom: 0; }

.card-text:last-child {
  margin-bottom: 0; }

.card-link:hover {
  text-decoration: none; }

.card-link + .card-link {
C
codecalm 已提交
3144
  margin-left: 1rem; }
C
codecalm 已提交
3145 3146

.card-header {
C
codecalm 已提交
3147
  padding: 0.75rem 1rem;
C
codecalm 已提交
3148
  margin-bottom: 0;
M
Michal Wolny 已提交
3149
  color: #656d77;
C
codecalm 已提交
3150
  background-color: #ffffff;
C
codecalm 已提交
3151
  border-bottom: 1px solid rgba(101, 109, 119, 0.16); }
C
codecalm 已提交
3152
  .card-header:first-child {
C
codecalm 已提交
3153
    border-radius: 3px 3px 0 0; }
C
codecalm 已提交
3154 3155

.card-footer {
C
codecalm 已提交
3156
  padding: 0.75rem 1rem;
M
Michal Wolny 已提交
3157
  color: #656d77;
C
codecalm 已提交
3158
  background-color: #ffffff;
C
codecalm 已提交
3159
  border-top: 1px solid rgba(101, 109, 119, 0.16); }
C
codecalm 已提交
3160
  .card-footer:last-child {
C
codecalm 已提交
3161
    border-radius: 0 0 3px 3px; }
C
codecalm 已提交
3162 3163

.card-header-tabs {
C
codecalm 已提交
3164
  margin-right: -0.5rem;
C
codecalm 已提交
3165
  margin-bottom: -0.75rem;
C
codecalm 已提交
3166
  margin-left: -0.5rem;
C
codecalm 已提交
3167 3168 3169 3170 3171 3172
  border-bottom: 0; }
  .card-header-tabs .nav-link.active {
    background-color: #ffffff;
    border-bottom-color: #ffffff; }

.card-header-pills {
C
codecalm 已提交
3173 3174
  margin-right: -0.5rem;
  margin-left: -0.5rem; }
C
codecalm 已提交
3175 3176 3177 3178 3179 3180 3181 3182

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
C
codecalm 已提交
3183
  border-radius: 3px; }
C
codecalm 已提交
3184 3185 3186 3187 3188 3189 3190 3191

.card-img,
.card-img-top,
.card-img-bottom {
  width: 100%; }

.card-img,
.card-img-top {
C
codecalm 已提交
3192 3193
  border-top-left-radius: 3px;
  border-top-right-radius: 3px; }
C
codecalm 已提交
3194 3195 3196

.card-img,
.card-img-bottom {
C
codecalm 已提交
3197 3198
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px; }
C
codecalm 已提交
3199 3200 3201 3202

.card-group > .card {
  margin-bottom: 1.5rem; }

C
codecalm 已提交
3203
@media (min-width: 576px) {
C
codecalm 已提交
3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231
  .card-group {
    display: flex;
    flex-flow: row wrap; }
    .card-group > .card {
      flex: 1 0 0%;
      margin-bottom: 0; }
      .card-group > .card + .card {
        margin-left: 0;
        border-left: 0; }
      .card-group > .card:not(:last-child) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0; }
        .card-group > .card:not(:last-child) .card-img-top,
        .card-group > .card:not(:last-child) .card-header {
          border-top-right-radius: 0; }
        .card-group > .card:not(:last-child) .card-img-bottom,
        .card-group > .card:not(:last-child) .card-footer {
          border-bottom-right-radius: 0; }
      .card-group > .card:not(:first-child) {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0; }
        .card-group > .card:not(:first-child) .card-img-top,
        .card-group > .card:not(:first-child) .card-header {
          border-top-left-radius: 0; }
        .card-group > .card:not(:first-child) .card-img-bottom,
        .card-group > .card:not(:first-child) .card-footer {
          border-bottom-left-radius: 0; } }

C
codecalm 已提交
3232 3233 3234 3235 3236 3237 3238 3239
.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  color: #232e3c;
C
codecalm 已提交
3240
  text-align: left;
C
codecalm 已提交
3241 3242
  background-color: #f4f6fa;
  border: 0;
C
codecalm 已提交
3243 3244 3245 3246 3247 3248 3249 3250
  border-radius: 0;
  overflow-anchor: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease; }
  @media (prefers-reduced-motion: reduce) {
    .accordion-button {
      transition: none; } }
  .accordion-button:not(.collapsed) {
    color: inherit;
C
codecalm 已提交
3251 3252
    background-color: transparent;
    box-shadow: inset 0 -1px 0 rgba(101, 109, 119, 0.16); }
C
codecalm 已提交
3253 3254
    .accordion-button:not(.collapsed)::after {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='inherit'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
3255
      transform: rotate(-180deg); }
C
codecalm 已提交
3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279
  .accordion-button::after {
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
    margin-left: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23232e3c'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 1rem;
    transition: transform 0.2s ease-in-out; }
    @media (prefers-reduced-motion: reduce) {
      .accordion-button::after {
        transition: none; } }
  .accordion-button:hover {
    z-index: 2; }
  .accordion-button:focus {
    z-index: 3;
    border-color: rgba(101, 109, 119, 0.16);
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(32, 107, 196, 0.25); }

.accordion-header {
  margin-bottom: 0; }

C
codecalm 已提交
3280 3281 3282 3283 3284 3285 3286 3287 3288
.accordion-item {
  background-color: #f4f6fa;
  border: 1px solid rgba(101, 109, 119, 0.16); }
  .accordion-item:first-of-type {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px; }
    .accordion-item:first-of-type .accordion-button {
      border-top-left-radius: 3px;
      border-top-right-radius: 3px; }
3289 3290
  .accordion-item:not(:first-of-type) {
    border-top: 0; }
C
codecalm 已提交
3291 3292 3293 3294 3295 3296 3297 3298 3299
  .accordion-item:last-of-type {
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px; }
    .accordion-item:last-of-type .accordion-button.collapsed {
      border-bottom-right-radius: 3px;
      border-bottom-left-radius: 3px; }
    .accordion-item:last-of-type .accordion-collapse {
      border-bottom-right-radius: 4px;
      border-bottom-left-radius: 4px; }
C
codecalm 已提交
3300 3301 3302 3303 3304 3305 3306

.accordion-body {
  padding: 1rem 1.25rem; }

.accordion-flush .accordion-collapse {
  border-width: 0; }

C
codecalm 已提交
3307
.accordion-flush .accordion-item {
C
codecalm 已提交
3308 3309
  border-right: 0;
  border-left: 0;
C
codecalm 已提交
3310
  border-radius: 0; }
C
codecalm 已提交
3311 3312 3313 3314
  .accordion-flush .accordion-item:first-child {
    border-top: 0; }
  .accordion-flush .accordion-item:last-child {
    border-bottom: 0; }
C
codecalm 已提交
3315 3316
  .accordion-flush .accordion-item .accordion-button {
    border-radius: 0; }
C
codecalm 已提交
3317

C
codecalm 已提交
3318 3319 3320
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
C
codecalm 已提交
3321
  padding: 0 0;
C
codecalm 已提交
3322
  margin-bottom: 1rem;
C
codecalm 已提交
3323
  list-style: none; }
C
codecalm 已提交
3324

C
codecalm 已提交
3325 3326 3327 3328 3329
.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem; }
  .breadcrumb-item + .breadcrumb-item::before {
    float: left;
    padding-right: 0.5rem;
C
codecalm 已提交
3330
    color: #656d77;
C
codecalm 已提交
3331
    content: var(--tblr-breadcrumb-divider, "/") /* rtl: var(--tblr-breadcrumb-divider, "/") */; }
C
codecalm 已提交
3332 3333

.breadcrumb-item.active {
C
codecalm 已提交
3334
  color: inherit; }
C
codecalm 已提交
3335 3336 3337 3338 3339 3340 3341 3342 3343

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none; }

.page-link {
  position: relative;
  display: block;
C
codecalm 已提交
3344
  color: #656d77;
C
codecalm 已提交
3345
  background-color: transparent;
C
codecalm 已提交
3346
  border: 0 solid #e7eaef;
C
codecalm 已提交
3347 3348 3349 3350 3351 3352
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
  @media (prefers-reduced-motion: reduce) {
    .page-link {
      transition: none; } }
  .page-link:hover {
    z-index: 2;
C
codecalm 已提交
3353 3354
    color: #1a569d;
    text-decoration: none;
C
codecalm 已提交
3355 3356
    background-color: #f0f2f6;
    border-color: #e7eaef; }
C
codecalm 已提交
3357 3358
  .page-link:focus {
    z-index: 3;
C
codecalm 已提交
3359
    color: #1a569d;
C
codecalm 已提交
3360
    background-color: #f0f2f6;
C
codecalm 已提交
3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(32, 107, 196, 0.25); }

.page-item:not(:first-child) .page-link {
  margin-left: 0; }

.page-item.active .page-link {
  z-index: 3;
  color: #ffffff;
  background-color: #206bc4;
  border-color: #206bc4; }

.page-item.disabled .page-link {
C
codecalm 已提交
3374
  color: rgba(101, 109, 119, 0.5);
C
codecalm 已提交
3375 3376
  pointer-events: none;
  background-color: transparent;
C
codecalm 已提交
3377
  border-color: #e7eaef; }
C
codecalm 已提交
3378 3379 3380 3381 3382

.page-link {
  padding: 0.25rem 0.25rem; }

.page-item:first-child .page-link {
C
codecalm 已提交
3383 3384
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px; }
C
codecalm 已提交
3385 3386

.page-item:last-child .page-link {
C
codecalm 已提交
3387 3388
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px; }
C
codecalm 已提交
3389 3390 3391 3392 3393 3394

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.09375rem; }

.pagination-lg .page-item:first-child .page-link {
C
codecalm 已提交
3395 3396
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px; }
C
codecalm 已提交
3397 3398

.pagination-lg .page-item:last-child .page-link {
C
codecalm 已提交
3399 3400
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px; }
C
codecalm 已提交
3401 3402 3403

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
C
codecalm 已提交
3404
  font-size: 0.765625rem; }
C
codecalm 已提交
3405 3406

.pagination-sm .page-item:first-child .page-link {
C
codecalm 已提交
3407 3408
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px; }
C
codecalm 已提交
3409 3410

.pagination-sm .page-item:last-child .page-link {
C
codecalm 已提交
3411 3412
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px; }
C
codecalm 已提交
3413 3414 3415 3416

.badge {
  display: inline-block;
  padding: 0.35em 0.65em;
C
codecalm 已提交
3417
  font-size: 85.7142857%;
C
codecalm 已提交
3418 3419 3420 3421 3422 3423
  font-weight: 500;
  line-height: 1;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
C
codecalm 已提交
3424
  border-radius: 4px; }
C
codecalm 已提交
3425 3426 3427 3428 3429 3430 3431 3432 3433
  .badge:empty {
    display: none; }

.btn .badge {
  position: relative;
  top: -1px; }

.alert {
  position: relative;
C
codecalm 已提交
3434
  padding: 1rem 1rem;
C
codecalm 已提交
3435 3436
  margin-bottom: 1rem;
  border: 1px solid transparent;
C
codecalm 已提交
3437
  border-radius: 4px; }
C
codecalm 已提交
3438 3439 3440 3441 3442

.alert-heading {
  color: inherit; }

.alert-link {
C
codecalm 已提交
3443
  font-weight: 600; }
C
codecalm 已提交
3444 3445

.alert-dismissible {
C
codecalm 已提交
3446
  padding-right: 3rem; }
C
codecalm 已提交
3447 3448 3449 3450
  .alert-dismissible .btn-close {
    position: absolute;
    top: 0;
    right: 0;
C
codecalm 已提交
3451
    z-index: 2;
C
codecalm 已提交
3452
    padding: 1.25rem 1rem; }
C
codecalm 已提交
3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466

@-webkit-keyframes progress-bar-stripes {
  0% {
    background-position-x: 0.5rem; } }

@keyframes progress-bar-stripes {
  0% {
    background-position-x: 0.5rem; } }

.progress {
  display: flex;
  height: 0.5rem;
  overflow: hidden;
  font-size: 0.65625rem;
C
codecalm 已提交
3467
  background-color: #e6e8e9;
C
codecalm 已提交
3468
  border-radius: 4px; }
C
codecalm 已提交
3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  background-color: #206bc4;
  transition: width 0.6s ease; }
  @media (prefers-reduced-motion: reduce) {
    .progress-bar {
      transition: none; } }

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 0.5rem 0.5rem; }

.progress-bar-animated {
M
Michal Wolny 已提交
3489 3490
  -webkit-animation: 1s linear infinite progress-bar-stripes;
          animation: 1s linear infinite progress-bar-stripes; }
C
codecalm 已提交
3491 3492 3493 3494 3495 3496 3497 3498 3499 3500
  @media (prefers-reduced-motion: reduce) {
    .progress-bar-animated {
      -webkit-animation: none;
              animation: none; } }

.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
C
codecalm 已提交
3501
  border-radius: 4px; }
C
codecalm 已提交
3502

C
codecalm 已提交
3503 3504 3505 3506 3507 3508 3509
.list-group-numbered {
  list-style-type: none;
  counter-reset: section; }
  .list-group-numbered > li::before {
    content: counters(section, ".") ". ";
    counter-increment: section; }

C
codecalm 已提交
3510 3511 3512 3513 3514 3515 3516 3517
.list-group-item-action {
  width: 100%;
  color: inherit;
  text-align: inherit; }
  .list-group-item-action:hover, .list-group-item-action:focus {
    z-index: 1;
    color: inherit;
    text-decoration: none;
C
codecalm 已提交
3518
    background-color: #f4f6fa; }
C
codecalm 已提交
3519
  .list-group-item-action:active {
C
codecalm 已提交
3520
    color: #232e3c;
C
codecalm 已提交
3521
    background-color: #f0f2f6; }
C
codecalm 已提交
3522 3523 3524 3525

.list-group-item {
  position: relative;
  display: block;
C
codecalm 已提交
3526
  padding: 0.75rem 1rem;
C
codecalm 已提交
3527
  color: #232e3c;
C
codecalm 已提交
3528
  background-color: inherit;
C
codecalm 已提交
3529
  border: 1px solid #e6e8e9; }
C
codecalm 已提交
3530 3531 3532 3533 3534 3535 3536
  .list-group-item:first-child {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit; }
  .list-group-item:last-child {
    border-bottom-right-radius: inherit;
    border-bottom-left-radius: inherit; }
  .list-group-item.disabled, .list-group-item:disabled {
C
codecalm 已提交
3537
    color: #a0a6ae;
C
codecalm 已提交
3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553
    pointer-events: none;
    background-color: inherit; }
  .list-group-item.active {
    z-index: 2;
    color: #ffffff;
    background-color: #206bc4;
    border-color: #206bc4; }
  .list-group-item + .list-group-item {
    border-top-width: 0; }
    .list-group-item + .list-group-item.active {
      margin-top: -1px;
      border-top-width: 1px; }

.list-group-horizontal {
  flex-direction: row; }
  .list-group-horizontal > .list-group-item:first-child {
C
codecalm 已提交
3554
    border-bottom-left-radius: 4px;
C
codecalm 已提交
3555 3556
    border-top-right-radius: 0; }
  .list-group-horizontal > .list-group-item:last-child {
C
codecalm 已提交
3557
    border-top-right-radius: 4px;
C
codecalm 已提交
3558 3559 3560 3561 3562 3563 3564 3565 3566 3567
    border-bottom-left-radius: 0; }
  .list-group-horizontal > .list-group-item.active {
    margin-top: 0; }
  .list-group-horizontal > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0; }
    .list-group-horizontal > .list-group-item + .list-group-item.active {
      margin-left: -1px;
      border-left-width: 1px; }

C
codecalm 已提交
3568
@media (min-width: 576px) {
C
codecalm 已提交
3569 3570 3571
  .list-group-horizontal-sm {
    flex-direction: row; }
    .list-group-horizontal-sm > .list-group-item:first-child {
C
codecalm 已提交
3572
      border-bottom-left-radius: 4px;
C
codecalm 已提交
3573 3574
      border-top-right-radius: 0; }
    .list-group-horizontal-sm > .list-group-item:last-child {
C
codecalm 已提交
3575
      border-top-right-radius: 4px;
C
codecalm 已提交
3576 3577 3578 3579 3580 3581 3582 3583 3584 3585
      border-bottom-left-radius: 0; }
    .list-group-horizontal-sm > .list-group-item.active {
      margin-top: 0; }
    .list-group-horizontal-sm > .list-group-item + .list-group-item {
      border-top-width: 1px;
      border-left-width: 0; }
      .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
        margin-left: -1px;
        border-left-width: 1px; } }

C
codecalm 已提交
3586
@media (min-width: 768px) {
C
codecalm 已提交
3587 3588 3589
  .list-group-horizontal-md {
    flex-direction: row; }
    .list-group-horizontal-md > .list-group-item:first-child {
C
codecalm 已提交
3590
      border-bottom-left-radius: 4px;
C
codecalm 已提交
3591 3592
      border-top-right-radius: 0; }
    .list-group-horizontal-md > .list-group-item:last-child {
C
codecalm 已提交
3593
      border-top-right-radius: 4px;
C
codecalm 已提交
3594 3595 3596 3597 3598 3599 3600 3601 3602 3603
      border-bottom-left-radius: 0; }
    .list-group-horizontal-md > .list-group-item.active {
      margin-top: 0; }
    .list-group-horizontal-md > .list-group-item + .list-group-item {
      border-top-width: 1px;
      border-left-width: 0; }
      .list-group-horizontal-md > .list-group-item + .list-group-item.active {
        margin-left: -1px;
        border-left-width: 1px; } }

C
codecalm 已提交
3604
@media (min-width: 992px) {
C
codecalm 已提交
3605 3606 3607
  .list-group-horizontal-lg {
    flex-direction: row; }
    .list-group-horizontal-lg > .list-group-item:first-child {
C
codecalm 已提交
3608
      border-bottom-left-radius: 4px;
C
codecalm 已提交
3609 3610
      border-top-right-radius: 0; }
    .list-group-horizontal-lg > .list-group-item:last-child {
C
codecalm 已提交
3611
      border-top-right-radius: 4px;
C
codecalm 已提交
3612 3613 3614 3615 3616 3617 3618 3619 3620 3621
      border-bottom-left-radius: 0; }
    .list-group-horizontal-lg > .list-group-item.active {
      margin-top: 0; }
    .list-group-horizontal-lg > .list-group-item + .list-group-item {
      border-top-width: 1px;
      border-left-width: 0; }
      .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
        margin-left: -1px;
        border-left-width: 1px; } }

C
codecalm 已提交
3622
@media (min-width: 1200px) {
C
codecalm 已提交
3623 3624 3625
  .list-group-horizontal-xl {
    flex-direction: row; }
    .list-group-horizontal-xl > .list-group-item:first-child {
C
codecalm 已提交
3626
      border-bottom-left-radius: 4px;
C
codecalm 已提交
3627 3628
      border-top-right-radius: 0; }
    .list-group-horizontal-xl > .list-group-item:last-child {
C
codecalm 已提交
3629
      border-top-right-radius: 4px;
C
codecalm 已提交
3630 3631 3632 3633 3634 3635 3636 3637 3638 3639
      border-bottom-left-radius: 0; }
    .list-group-horizontal-xl > .list-group-item.active {
      margin-top: 0; }
    .list-group-horizontal-xl > .list-group-item + .list-group-item {
      border-top-width: 1px;
      border-left-width: 0; }
      .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
        margin-left: -1px;
        border-left-width: 1px; } }

C
codecalm 已提交
3640 3641 3642 3643
@media (min-width: 1400px) {
  .list-group-horizontal-xxl {
    flex-direction: row; }
    .list-group-horizontal-xxl > .list-group-item:first-child {
C
codecalm 已提交
3644
      border-bottom-left-radius: 4px;
C
codecalm 已提交
3645 3646
      border-top-right-radius: 0; }
    .list-group-horizontal-xxl > .list-group-item:last-child {
C
codecalm 已提交
3647
      border-top-right-radius: 4px;
C
codecalm 已提交
3648 3649 3650 3651 3652 3653 3654 3655 3656 3657
      border-bottom-left-radius: 0; }
    .list-group-horizontal-xxl > .list-group-item.active {
      margin-top: 0; }
    .list-group-horizontal-xxl > .list-group-item + .list-group-item {
      border-top-width: 1px;
      border-left-width: 0; }
      .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
        margin-left: -1px;
        border-left-width: 1px; } }

C
codecalm 已提交
3658 3659 3660 3661 3662 3663 3664 3665
.list-group-flush {
  border-radius: 0; }
  .list-group-flush > .list-group-item {
    border-width: 0 0 1px; }
    .list-group-flush > .list-group-item:last-child {
      border-bottom-width: 0; }

.list-group-item-primary {
C
codecalm 已提交
3666
  color: #134076;
C
codecalm 已提交
3667
  background-color: #d2e1f3; }
C
codecalm 已提交
3668
  .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
C
codecalm 已提交
3669
    color: #134076;
C
codecalm 已提交
3670
    background-color: #bdcbdb; }
C
codecalm 已提交
3671 3672
  .list-group-item-primary.list-group-item-action.active {
    color: #ffffff;
C
codecalm 已提交
3673 3674
    background-color: #134076;
    border-color: #134076; }
C
codecalm 已提交
3675 3676

.list-group-item-secondary {
C
codecalm 已提交
3677 3678
  color: #3d4147;
  background-color: #e0e2e4; }
C
codecalm 已提交
3679
  .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
C
codecalm 已提交
3680 3681
    color: #3d4147;
    background-color: #cacbcd; }
C
codecalm 已提交
3682 3683
  .list-group-item-secondary.list-group-item-action.active {
    color: #ffffff;
C
codecalm 已提交
3684 3685
    background-color: #3d4147;
    border-color: #3d4147; }
C
codecalm 已提交
3686 3687

.list-group-item-success {
M
Michal Wolny 已提交
3688 3689
  color: #1c6b29;
  background-color: #d5f0da; }
C
codecalm 已提交
3690
  .list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
M
Michal Wolny 已提交
3691 3692
    color: #1c6b29;
    background-color: #c0d8c4; }
C
codecalm 已提交
3693 3694
  .list-group-item-success.list-group-item-action.active {
    color: #ffffff;
M
Michal Wolny 已提交
3695 3696
    background-color: #1c6b29;
    border-color: #1c6b29; }
C
codecalm 已提交
3697 3698

.list-group-item-info {
C
codecalm 已提交
3699
  color: #285c87;
C
codecalm 已提交
3700
  background-color: #d9ebf9; }
C
codecalm 已提交
3701
  .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
C
codecalm 已提交
3702
    color: #285c87;
C
codecalm 已提交
3703
    background-color: #c3d4e0; }
C
codecalm 已提交
3704 3705
  .list-group-item-info.list-group-item-action.active {
    color: #ffffff;
C
codecalm 已提交
3706 3707
    background-color: #285c87;
    border-color: #285c87; }
C
codecalm 已提交
3708 3709

.list-group-item-warning {
M
Michal Wolny 已提交
3710 3711
  color: #943e04;
  background-color: #fde1cd; }
C
codecalm 已提交
3712
  .list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
M
Michal Wolny 已提交
3713 3714
    color: #943e04;
    background-color: #e4cbb9; }
C
codecalm 已提交
3715 3716
  .list-group-item-warning.list-group-item-action.active {
    color: #ffffff;
M
Michal Wolny 已提交
3717 3718
    background-color: #943e04;
    border-color: #943e04; }
C
codecalm 已提交
3719 3720

.list-group-item-danger {
M
Michal Wolny 已提交
3721 3722
  color: #802222;
  background-color: #f7d7d7; }
C
codecalm 已提交
3723
  .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
M
Michal Wolny 已提交
3724 3725
    color: #802222;
    background-color: #dec2c2; }
C
codecalm 已提交
3726 3727
  .list-group-item-danger.list-group-item-action.active {
    color: #ffffff;
M
Michal Wolny 已提交
3728 3729
    background-color: #802222;
    border-color: #802222; }
C
codecalm 已提交
3730 3731

.list-group-item-light {
C
codecalm 已提交
3732
  color: #929496;
C
codecalm 已提交
3733
  background-color: #fdfdfe; }
C
codecalm 已提交
3734
  .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
C
codecalm 已提交
3735
    color: #929496;
C
codecalm 已提交
3736
    background-color: #e4e4e5; }
C
codecalm 已提交
3737 3738
  .list-group-item-light.list-group-item-action.active {
    color: #ffffff;
C
codecalm 已提交
3739 3740
    background-color: #929496;
    border-color: #929496; }
C
codecalm 已提交
3741 3742

.list-group-item-dark {
C
codecalm 已提交
3743
  color: #151c24;
C
codecalm 已提交
3744
  background-color: #d3d5d8; }
C
codecalm 已提交
3745
  .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
C
codecalm 已提交
3746
    color: #151c24;
C
codecalm 已提交
3747
    background-color: #bec0c2; }
C
codecalm 已提交
3748 3749
  .list-group-item-dark.list-group-item-action.active {
    color: #ffffff;
C
codecalm 已提交
3750 3751
    background-color: #151c24;
    border-color: #151c24; }
C
codecalm 已提交
3752 3753 3754

.btn-close {
  box-sizing: content-box;
C
codecalm 已提交
3755 3756
  width: 0.75rem;
  height: 0.75rem;
C
codecalm 已提交
3757
  padding: 0.25em 0.25em;
C
codecalm 已提交
3758 3759
  color: #000000;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/0.75rem auto no-repeat;
C
codecalm 已提交
3760
  border: 0;
C
codecalm 已提交
3761
  border-radius: 4px;
M
Michal Wolny 已提交
3762
  opacity: 0.3; }
C
codecalm 已提交
3763
  .btn-close:hover {
C
codecalm 已提交
3764
    color: #000000;
C
codecalm 已提交
3765 3766 3767
    text-decoration: none;
    opacity: 0.75; }
  .btn-close:focus {
C
codecalm 已提交
3768
    outline: 0;
C
codecalm 已提交
3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782
    box-shadow: 0 0 0 0.25rem rgba(32, 107, 196, 0.25);
    opacity: 1; }
  .btn-close:disabled, .btn-close.disabled {
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    opacity: 0.25; }

.btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%); }

.toast {
C
codecalm 已提交
3783 3784
  width: 350px;
  max-width: 100%;
C
codecalm 已提交
3785
  font-size: 0.875rem;
C
codecalm 已提交
3786
  pointer-events: auto;
C
codecalm 已提交
3787 3788
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
C
codecalm 已提交
3789
  border: 1px solid #e6e8e9;
C
codecalm 已提交
3790
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
C
codecalm 已提交
3791
  border-radius: 4px; }
3792
  .toast.showing {
C
codecalm 已提交
3793
    opacity: 0; }
3794
  .toast:not(.show) {
C
codecalm 已提交
3795 3796
    display: none; }

C
codecalm 已提交
3797 3798 3799 3800 3801 3802 3803 3804 3805
.toast-container {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  pointer-events: none; }
  .toast-container > :not(:last-child) {
    margin-bottom: 1.5rem; }

C
codecalm 已提交
3806 3807 3808 3809
.toast-header {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
C
codecalm 已提交
3810
  color: #656d77;
C
codecalm 已提交
3811 3812 3813
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
C
codecalm 已提交
3814 3815
  border-top-left-radius: 3px;
  border-top-right-radius: 3px; }
C
codecalm 已提交
3816 3817 3818 3819 3820
  .toast-header .btn-close {
    margin-right: -0.375rem;
    margin-left: 0.75rem; }

.toast-body {
C
codecalm 已提交
3821 3822
  padding: 0.75rem;
  word-wrap: break-word; }
C
codecalm 已提交
3823 3824 3825 3826 3827

.modal {
  position: fixed;
  top: 0;
  left: 0;
3828
  z-index: 1055;
C
codecalm 已提交
3829 3830 3831
  display: none;
  width: 100%;
  height: 100%;
3832 3833
  overflow-x: hidden;
  overflow-y: auto;
C
codecalm 已提交
3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872
  outline: 0; }

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none; }
  .modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, -1rem); }
    @media (prefers-reduced-motion: reduce) {
      .modal.fade .modal-dialog {
        transition: none; } }
  .modal.show .modal-dialog {
    transform: none; }
  .modal.modal-static .modal-dialog {
    transform: scale(1.02); }

.modal-dialog-scrollable {
  height: calc(100% - 1rem); }
  .modal-dialog-scrollable .modal-content {
    max-height: 100%;
    overflow: hidden; }
  .modal-dialog-scrollable .modal-body {
    overflow-y: auto; }

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem); }

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fbfbfb;
  background-clip: padding-box;
C
codecalm 已提交
3873
  border: 1px solid transparent;
C
codecalm 已提交
3874
  border-radius: 4px;
C
codecalm 已提交
3875 3876 3877 3878 3879 3880
  outline: 0; }

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
C
codecalm 已提交
3881
  z-index: 1050;
C
codecalm 已提交
3882 3883
  width: 100vw;
  height: 100vh;
C
codecalm 已提交
3884
  background-color: #232e3c; }
C
codecalm 已提交
3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895
  .modal-backdrop.fade {
    opacity: 0; }
  .modal-backdrop.show {
    opacity: 0.24; }

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
C
codecalm 已提交
3896
  border-bottom: 1px solid #e6e8e9;
C
codecalm 已提交
3897 3898
  border-top-left-radius: 3px;
  border-top-right-radius: 3px; }
C
codecalm 已提交
3899 3900 3901 3902 3903 3904
  .modal-header .btn-close {
    padding: 0.75rem 0.75rem;
    margin: -0.75rem -0.75rem -0.75rem auto; }

.modal-title {
  margin-bottom: 0;
C
codecalm 已提交
3905
  line-height: 1.4285714; }
C
codecalm 已提交
3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1.5rem; }

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 1.125rem;
C
codecalm 已提交
3919
  border-top: 0 solid #e6e8e9;
C
codecalm 已提交
3920 3921
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px; }
C
codecalm 已提交
3922 3923 3924
  .modal-footer > * {
    margin: 0.375rem; }

C
codecalm 已提交
3925
@media (min-width: 576px) {
C
codecalm 已提交
3926 3927 3928 3929 3930 3931 3932 3933 3934 3935
  .modal-dialog {
    max-width: 540px;
    margin: 1.75rem auto; }
  .modal-dialog-scrollable {
    height: calc(100% - 3.5rem); }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem); }
  .modal-sm {
    max-width: 380px; } }

C
codecalm 已提交
3936
@media (min-width: 992px) {
C
codecalm 已提交
3937 3938 3939 3940
  .modal-lg,
  .modal-xl {
    max-width: 720px; } }

C
codecalm 已提交
3941
@media (min-width: 1200px) {
C
codecalm 已提交
3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960
  .modal-xl {
    max-width: 1140px; } }

.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0; }
  .modal-fullscreen .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0; }
  .modal-fullscreen .modal-header {
    border-radius: 0; }
  .modal-fullscreen .modal-body {
    overflow-y: auto; }
  .modal-fullscreen .modal-footer {
    border-radius: 0; }

C
codecalm 已提交
3961
@media (max-width: 575.98px) {
C
codecalm 已提交
3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0; }
    .modal-fullscreen-sm-down .modal-content {
      height: 100%;
      border: 0;
      border-radius: 0; }
    .modal-fullscreen-sm-down .modal-header {
      border-radius: 0; }
    .modal-fullscreen-sm-down .modal-body {
      overflow-y: auto; }
    .modal-fullscreen-sm-down .modal-footer {
      border-radius: 0; } }

C
codecalm 已提交
3978
@media (max-width: 767.98px) {
C
codecalm 已提交
3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0; }
    .modal-fullscreen-md-down .modal-content {
      height: 100%;
      border: 0;
      border-radius: 0; }
    .modal-fullscreen-md-down .modal-header {
      border-radius: 0; }
    .modal-fullscreen-md-down .modal-body {
      overflow-y: auto; }
    .modal-fullscreen-md-down .modal-footer {
      border-radius: 0; } }

C
codecalm 已提交
3995
@media (max-width: 991.98px) {
C
codecalm 已提交
3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0; }
    .modal-fullscreen-lg-down .modal-content {
      height: 100%;
      border: 0;
      border-radius: 0; }
    .modal-fullscreen-lg-down .modal-header {
      border-radius: 0; }
    .modal-fullscreen-lg-down .modal-body {
      overflow-y: auto; }
    .modal-fullscreen-lg-down .modal-footer {
      border-radius: 0; } }

C
codecalm 已提交
4012
@media (max-width: 1199.98px) {
C
codecalm 已提交
4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0; }
    .modal-fullscreen-xl-down .modal-content {
      height: 100%;
      border: 0;
      border-radius: 0; }
    .modal-fullscreen-xl-down .modal-header {
      border-radius: 0; }
    .modal-fullscreen-xl-down .modal-body {
      overflow-y: auto; }
    .modal-fullscreen-xl-down .modal-footer {
      border-radius: 0; } }

C
codecalm 已提交
4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0; }
    .modal-fullscreen-xxl-down .modal-content {
      height: 100%;
      border: 0;
      border-radius: 0; }
    .modal-fullscreen-xxl-down .modal-header {
      border-radius: 0; }
    .modal-fullscreen-xxl-down .modal-body {
      overflow-y: auto; }
    .modal-fullscreen-xxl-down .modal-footer {
      border-radius: 0; } }

C
codecalm 已提交
4046 4047
.tooltip {
  position: absolute;
C
codecalm 已提交
4048
  z-index: 1080;
C
codecalm 已提交
4049 4050
  display: block;
  margin: 0;
C
codecalm 已提交
4051
  font-family: var(--tblr-font-sans-serif);
C
codecalm 已提交
4052 4053
  font-style: normal;
  font-weight: 400;
C
codecalm 已提交
4054
  line-height: 1.4285714;
C
codecalm 已提交
4055 4056 4057 4058 4059 4060 4061 4062 4063 4064
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
C
codecalm 已提交
4065
  font-size: 0.765625rem;
C
codecalm 已提交
4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080
  word-wrap: break-word;
  opacity: 0; }
  .tooltip.show {
    opacity: 0.9; }
  .tooltip .tooltip-arrow {
    position: absolute;
    display: block;
    width: 0.8rem;
    height: 0.4rem; }
    .tooltip .tooltip-arrow::before {
      position: absolute;
      content: "";
      border-color: transparent;
      border-style: solid; }

C
codecalm 已提交
4081
.bs-tooltip-top, .bs-tooltip-auto[data-popper-placement^="top"] {
C
codecalm 已提交
4082
  padding: 0.4rem 0; }
C
codecalm 已提交
4083
  .bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow {
C
codecalm 已提交
4084
    bottom: 0; }
C
codecalm 已提交
4085 4086
    .bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before {
      top: -1px;
C
codecalm 已提交
4087 4088 4089
      border-width: 0.4rem 0.4rem 0;
      border-top-color: #000000; }

C
codecalm 已提交
4090
.bs-tooltip-end, .bs-tooltip-auto[data-popper-placement^="right"] {
C
codecalm 已提交
4091
  padding: 0 0.4rem; }
C
codecalm 已提交
4092 4093
  .bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow {
    left: 0;
C
codecalm 已提交
4094 4095
    width: 0.4rem;
    height: 0.8rem; }
C
codecalm 已提交
4096 4097 4098 4099
    .bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow::before {
      right: -1px;
      border-width: 0.4rem 0.4rem 0.4rem 0;
      border-right-color: #000000; }
C
codecalm 已提交
4100

C
codecalm 已提交
4101
.bs-tooltip-bottom, .bs-tooltip-auto[data-popper-placement^="bottom"] {
C
codecalm 已提交
4102
  padding: 0.4rem 0; }
C
codecalm 已提交
4103
  .bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow {
C
codecalm 已提交
4104
    top: 0; }
C
codecalm 已提交
4105 4106
    .bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow::before {
      bottom: -1px;
C
codecalm 已提交
4107 4108 4109
      border-width: 0 0.4rem 0.4rem;
      border-bottom-color: #000000; }

C
codecalm 已提交
4110
.bs-tooltip-start, .bs-tooltip-auto[data-popper-placement^="left"] {
C
codecalm 已提交
4111
  padding: 0 0.4rem; }
C
codecalm 已提交
4112 4113
  .bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow {
    right: 0;
C
codecalm 已提交
4114 4115
    width: 0.4rem;
    height: 0.8rem; }
C
codecalm 已提交
4116 4117 4118 4119
    .bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow::before {
      left: -1px;
      border-width: 0.4rem 0 0.4rem 0.4rem;
      border-left-color: #000000; }
C
codecalm 已提交
4120 4121 4122 4123 4124 4125 4126

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #ffffff;
  text-align: center;
  background-color: #000000;
C
codecalm 已提交
4127
  border-radius: 4px; }
C
codecalm 已提交
4128 4129 4130 4131

.popover {
  position: absolute;
  top: 0;
C
codecalm 已提交
4132
  left: 0 /* rtl:ignore */;
C
codecalm 已提交
4133
  z-index: 1070;
C
codecalm 已提交
4134 4135
  display: block;
  max-width: 276px;
C
codecalm 已提交
4136
  font-family: var(--tblr-font-sans-serif);
C
codecalm 已提交
4137 4138
  font-style: normal;
  font-weight: 400;
C
codecalm 已提交
4139
  line-height: 1.4285714;
C
codecalm 已提交
4140 4141 4142 4143 4144 4145 4146 4147 4148 4149
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
C
codecalm 已提交
4150
  font-size: 0.765625rem;
C
codecalm 已提交
4151 4152 4153
  word-wrap: break-word;
  background-color: #ffffff;
  background-clip: padding-box;
C
codecalm 已提交
4154
  border: 1px solid #e6e8e9;
C
codecalm 已提交
4155
  border-radius: 8px; }
C
codecalm 已提交
4156 4157 4158 4159
  .popover .popover-arrow {
    position: absolute;
    display: block;
    width: 1rem;
C
codecalm 已提交
4160
    height: 0.5rem; }
C
codecalm 已提交
4161 4162 4163 4164 4165 4166 4167
    .popover .popover-arrow::before, .popover .popover-arrow::after {
      position: absolute;
      display: block;
      content: "";
      border-color: transparent;
      border-style: solid; }

C
codecalm 已提交
4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194
.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow {
  bottom: calc(-0.5rem - 1px); }
  .bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::before {
    bottom: 0;
    border-width: 0.5rem 0.5rem 0;
    border-top-color: #e6e8e9; }
  .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::after {
    bottom: 1px;
    border-width: 0.5rem 0.5rem 0;
    border-top-color: #ffffff; }

.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow {
  left: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem; }
  .bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::before {
    left: 0;
    border-width: 0.5rem 0.5rem 0.5rem 0;
    border-right-color: #e6e8e9; }
  .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::after {
    left: 1px;
    border-width: 0.5rem 0.5rem 0.5rem 0;
    border-right-color: #ffffff; }

.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow {
  top: calc(-0.5rem - 1px); }
  .bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::before {
C
codecalm 已提交
4195
    top: 0;
C
codecalm 已提交
4196 4197 4198 4199 4200 4201
    border-width: 0 0.5rem 0.5rem 0.5rem;
    border-bottom-color: #e6e8e9; }
  .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::after {
    top: 1px;
    border-width: 0 0.5rem 0.5rem 0.5rem;
    border-bottom-color: #ffffff; }
C
codecalm 已提交
4202

C
codecalm 已提交
4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224
.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^="bottom"] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f0f0f0; }

.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow {
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem; }
  .bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::before {
    right: 0;
    border-width: 0.5rem 0 0.5rem 0.5rem;
    border-left-color: #e6e8e9; }
  .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::after {
    right: 1px;
    border-width: 0.5rem 0 0.5rem 0.5rem;
    border-left-color: #ffffff; }
C
codecalm 已提交
4225 4226 4227 4228 4229

.popover-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 0.875rem;
C
codecalm 已提交
4230
  background-color: #f0f0f0;
4231
  border-bottom: 1px solid #e6e8e9;
C
codecalm 已提交
4232 4233
  border-top-left-radius: 7px;
  border-top-right-radius: 7px; }
C
codecalm 已提交
4234 4235 4236 4237 4238
  .popover-header:empty {
    display: none; }

.popover-body {
  padding: 1rem 1rem;
C
codecalm 已提交
4239
  color: #232e3c; }
C
codecalm 已提交
4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273

.carousel {
  position: relative; }

.carousel.pointer-event {
  touch-action: pan-y; }

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden; }
  .carousel-inner::after {
    display: block;
    clear: both;
    content: ""; }

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition: transform 0.6s ease-in-out; }
  @media (prefers-reduced-motion: reduce) {
    .carousel-item {
      transition: none; } }

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block; }

C
codecalm 已提交
4274 4275 4276
/* rtl:begin:ignore */
.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
C
codecalm 已提交
4277 4278
  transform: translateX(100%); }

C
codecalm 已提交
4279 4280
.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
C
codecalm 已提交
4281 4282
  transform: translateX(-100%); }

C
codecalm 已提交
4283
/* rtl:end:ignore */
C
codecalm 已提交
4284 4285 4286 4287 4288 4289
.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none; }

.carousel-fade .carousel-item.active,
C
codecalm 已提交
4290 4291
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
C
codecalm 已提交
4292 4293 4294
  z-index: 1;
  opacity: 1; }

C
codecalm 已提交
4295 4296
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
C
codecalm 已提交
4297 4298 4299 4300
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s; }
  @media (prefers-reduced-motion: reduce) {
C
codecalm 已提交
4301 4302
    .carousel-fade .active.carousel-item-start,
    .carousel-fade .active.carousel-item-end {
C
codecalm 已提交
4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314
      transition: none; } }

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
C
codecalm 已提交
4315
  padding: 0;
C
codecalm 已提交
4316 4317
  color: #ffffff;
  text-align: center;
C
codecalm 已提交
4318 4319
  background: none;
  border: 0;
C
codecalm 已提交
4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348
  opacity: 0.5;
  transition: opacity 0.15s ease; }
  @media (prefers-reduced-motion: reduce) {
    .carousel-control-prev,
    .carousel-control-next {
      transition: none; } }
  .carousel-control-prev:hover, .carousel-control-prev:focus,
  .carousel-control-next:hover,
  .carousel-control-next:focus {
    color: #ffffff;
    text-decoration: none;
    outline: 0;
    opacity: 0.9; }

.carousel-control-prev {
  left: 0; }

.carousel-control-next {
  right: 0; }

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%; }

C
codecalm 已提交
4349 4350 4351 4352 4353 4354 4355 4356
/* rtl:options: {
  "autoRename": true,
  "stringMap":[ {
    "name"    : "prev-next",
    "search"  : "prev",
    "replace" : "next"
  } ]
} */
C
codecalm 已提交
4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='15 18 9 12 15 6'%3e%3c/polyline%3e%3c/svg%3e"); }

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='9 18 15 12 9 6'%3e%3c/polyline%3e%3c/svg%3e"); }

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
C
codecalm 已提交
4371
  padding: 0;
C
codecalm 已提交
4372
  margin-right: 15%;
C
codecalm 已提交
4373
  margin-bottom: 1rem;
C
codecalm 已提交
4374 4375
  margin-left: 15%;
  list-style: none; }
C
codecalm 已提交
4376
  .carousel-indicators [data-bs-target] {
C
codecalm 已提交
4377 4378 4379 4380
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
C
codecalm 已提交
4381
    padding: 0;
C
codecalm 已提交
4382 4383 4384 4385 4386 4387
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #ffffff;
    background-clip: padding-box;
C
codecalm 已提交
4388
    border: 0;
C
codecalm 已提交
4389 4390 4391 4392 4393
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 0.5;
    transition: opacity 0.6s ease; }
    @media (prefers-reduced-motion: reduce) {
C
codecalm 已提交
4394
      .carousel-indicators [data-bs-target] {
C
codecalm 已提交
4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412
        transition: none; } }
  .carousel-indicators .active {
    opacity: 1; }

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 1.25rem;
  left: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #ffffff;
  text-align: center; }

.carousel-dark .carousel-control-prev-icon,
.carousel-dark .carousel-control-next-icon {
  filter: invert(1) grayscale(100); }

C
codecalm 已提交
4413
.carousel-dark .carousel-indicators [data-bs-target] {
C
codecalm 已提交
4414 4415 4416 4417 4418 4419 4420
  background-color: #000000; }

.carousel-dark .carousel-caption {
  color: #000000; }

@-webkit-keyframes spinner-border {
  to {
C
codecalm 已提交
4421
    transform: rotate(360deg) /* rtl:ignore */; } }
C
codecalm 已提交
4422 4423 4424

@keyframes spinner-border {
  to {
C
codecalm 已提交
4425
    transform: rotate(360deg) /* rtl:ignore */; } }
C
codecalm 已提交
4426 4427 4428 4429 4430

.spinner-border {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
4431
  vertical-align: -0.125em;
C
codecalm 已提交
4432 4433 4434
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
M
Michal Wolny 已提交
4435 4436
  -webkit-animation: 0.75s linear infinite spinner-border;
          animation: 0.75s linear infinite spinner-border; }
C
codecalm 已提交
4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 1px; }

@-webkit-keyframes spinner-grow {
  0% {
    transform: scale(0); }
  50% {
    opacity: 1;
    transform: none; } }

@keyframes spinner-grow {
  0% {
    transform: scale(0); }
  50% {
    opacity: 1;
    transform: none; } }

.spinner-grow {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
4461
  vertical-align: -0.125em;
C
codecalm 已提交
4462 4463 4464
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
M
Michal Wolny 已提交
4465 4466
  -webkit-animation: 0.75s linear infinite spinner-grow;
          animation: 0.75s linear infinite spinner-grow; }
C
codecalm 已提交
4467 4468 4469 4470 4471

.spinner-grow-sm {
  width: 1rem;
  height: 1rem; }

C
codecalm 已提交
4472 4473 4474 4475 4476 4477
@media (prefers-reduced-motion: reduce) {
  .spinner-border,
  .spinner-grow {
    -webkit-animation-duration: 1.5s;
            animation-duration: 1.5s; } }

C
codecalm 已提交
4478 4479 4480 4481 4482 4483 4484 4485
.clearfix::after {
  display: block;
  clear: both;
  content: ""; }

.link-primary {
  color: #206bc4; }
  .link-primary:hover, .link-primary:focus {
C
codecalm 已提交
4486
    color: #1a569d; }
C
codecalm 已提交
4487 4488

.link-secondary {
C
codecalm 已提交
4489
  color: #656d77; }
C
codecalm 已提交
4490
  .link-secondary:hover, .link-secondary:focus {
C
codecalm 已提交
4491
    color: #51575f; }
C
codecalm 已提交
4492 4493

.link-success {
M
Michal Wolny 已提交
4494
  color: #2fb344; }
C
codecalm 已提交
4495
  .link-success:hover, .link-success:focus {
M
Michal Wolny 已提交
4496
    color: #268f36; }
C
codecalm 已提交
4497 4498

.link-info {
C
codecalm 已提交
4499
  color: #4299e1; }
C
codecalm 已提交
4500
  .link-info:hover, .link-info:focus {
C
codecalm 已提交
4501
    color: #357ab4; }
C
codecalm 已提交
4502 4503

.link-warning {
M
Michal Wolny 已提交
4504
  color: #f76707; }
C
codecalm 已提交
4505
  .link-warning:hover, .link-warning:focus {
M
Michal Wolny 已提交
4506
    color: #c65206; }
C
codecalm 已提交
4507 4508

.link-danger {
M
Michal Wolny 已提交
4509
  color: #d63939; }
C
codecalm 已提交
4510
  .link-danger:hover, .link-danger:focus {
M
Michal Wolny 已提交
4511
    color: #ab2e2e; }
C
codecalm 已提交
4512 4513

.link-light {
C
codecalm 已提交
4514
  color: #f4f6fa; }
C
codecalm 已提交
4515
  .link-light:hover, .link-light:focus {
C
codecalm 已提交
4516
    color: #f6f8fb; }
C
codecalm 已提交
4517 4518

.link-dark {
C
codecalm 已提交
4519
  color: #232e3c; }
C
codecalm 已提交
4520
  .link-dark:hover, .link-dark:focus {
C
codecalm 已提交
4521
    color: #1c2530; }
C
codecalm 已提交
4522 4523 4524 4525 4526 4527

.ratio {
  position: relative;
  width: 100%; }
  .ratio::before {
    display: block;
C
codecalm 已提交
4528
    padding-top: var(--tblr-aspect-ratio);
C
codecalm 已提交
4529 4530 4531 4532 4533 4534 4535 4536 4537
    content: ""; }
  .ratio > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.ratio-1x1 {
C
codecalm 已提交
4538
  --tblr-aspect-ratio: 100%; }
C
codecalm 已提交
4539 4540

.ratio-4x3 {
C
codecalm 已提交
4541
  --tblr-aspect-ratio: calc(3 / 4 * 100%); }
C
codecalm 已提交
4542

C
codecalm 已提交
4543 4544 4545
.ratio-3x4 {
  --tblr-aspect-ratio: calc(4 / 3 * 100%); }

C
codecalm 已提交
4546
.ratio-16x9 {
C
codecalm 已提交
4547
  --tblr-aspect-ratio: calc(9 / 16 * 100%); }
C
codecalm 已提交
4548

C
codecalm 已提交
4549 4550 4551
.ratio-9x16 {
  --tblr-aspect-ratio: calc(16 / 9 * 100%); }

C
codecalm 已提交
4552
.ratio-21x9 {
C
codecalm 已提交
4553
  --tblr-aspect-ratio: calc(9 / 21 * 100%); }
C
codecalm 已提交
4554

C
codecalm 已提交
4555 4556 4557
.ratio-9x21 {
  --tblr-aspect-ratio: calc(21 / 9 * 100%); }

C
codecalm 已提交
4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577
.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030; }

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030; }

.sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1020; }

C
codecalm 已提交
4578
@media (min-width: 576px) {
C
codecalm 已提交
4579 4580 4581 4582 4583 4584
  .sticky-sm-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020; } }

C
codecalm 已提交
4585
@media (min-width: 768px) {
C
codecalm 已提交
4586 4587 4588 4589 4590 4591
  .sticky-md-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020; } }

C
codecalm 已提交
4592
@media (min-width: 992px) {
C
codecalm 已提交
4593 4594 4595 4596 4597 4598
  .sticky-lg-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020; } }

C
codecalm 已提交
4599
@media (min-width: 1200px) {
C
codecalm 已提交
4600 4601 4602 4603 4604 4605
  .sticky-xl-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020; } }

C
codecalm 已提交
4606 4607 4608 4609 4610 4611 4612
@media (min-width: 1400px) {
  .sticky-xxl-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020; } }

4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624
.hstack {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch; }

.vstack {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-self: stretch; }

C
codecalm 已提交
4625
.visually-hidden,
C
codecalm 已提交
4626
.visually-hidden-focusable:not(:focus):not(:focus-within) {
C
codecalm 已提交
4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important; }

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: ""; }

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

4651 4652 4653 4654 4655 4656 4657 4658
.vr {
  display: inline-block;
  align-self: stretch;
  width: 1px;
  min-height: 1em;
  background-color: currentColor;
  opacity: 0.16; }

C
codecalm 已提交
4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676
.align-baseline {
  vertical-align: baseline !important; }

.align-top {
  vertical-align: top !important; }

.align-middle {
  vertical-align: middle !important; }

.align-bottom {
  vertical-align: bottom !important; }

.align-text-bottom {
  vertical-align: text-bottom !important; }

.align-text-top {
  vertical-align: text-top !important; }

C
codecalm 已提交
4677
.float-start {
C
codecalm 已提交
4678
  float: left !important; }
C
codecalm 已提交
4679

C
codecalm 已提交
4680
.float-end {
C
codecalm 已提交
4681
  float: right !important; }
C
codecalm 已提交
4682 4683 4684 4685

.float-none {
  float: none !important; }

4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700
.opacity-0 {
  opacity: 0 !important; }

.opacity-25 {
  opacity: 0.25 !important; }

.opacity-50 {
  opacity: 0.5 !important; }

.opacity-75 {
  opacity: 0.75 !important; }

.opacity-100 {
  opacity: 1 !important; }

C
codecalm 已提交
4701 4702 4703 4704 4705 4706
.overflow-auto {
  overflow: auto !important; }

.overflow-hidden {
  overflow: hidden !important; }

C
codecalm 已提交
4707 4708 4709 4710 4711 4712
.overflow-visible {
  overflow: visible !important; }

.overflow-scroll {
  overflow: scroll !important; }

C
codecalm 已提交
4713 4714 4715 4716 4717 4718 4719 4720 4721
.d-inline {
  display: inline !important; }

.d-inline-block {
  display: inline-block !important; }

.d-block {
  display: block !important; }

C
codecalm 已提交
4722 4723 4724
.d-grid {
  display: grid !important; }

C
codecalm 已提交
4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788
.d-table {
  display: table !important; }

.d-table-row {
  display: table-row !important; }

.d-table-cell {
  display: table-cell !important; }

.d-flex {
  display: flex !important; }

.d-inline-flex {
  display: inline-flex !important; }

.d-none {
  display: none !important; }

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; }

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; }

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; }

.shadow-none {
  box-shadow: none !important; }

.position-static {
  position: static !important; }

.position-relative {
  position: relative !important; }

.position-absolute {
  position: absolute !important; }

.position-fixed {
  position: fixed !important; }

.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important; }

.top-0 {
  top: 0 !important; }

.top-50 {
  top: 50% !important; }

.top-100 {
  top: 100% !important; }

.bottom-0 {
  bottom: 0 !important; }

.bottom-50 {
  bottom: 50% !important; }

.bottom-100 {
  bottom: 100% !important; }

C
codecalm 已提交
4789
.start-0 {
C
codecalm 已提交
4790 4791
  left: 0 !important; }

C
codecalm 已提交
4792
.start-50 {
C
codecalm 已提交
4793 4794
  left: 50% !important; }

C
codecalm 已提交
4795
.start-100 {
C
codecalm 已提交
4796 4797
  left: 100% !important; }

C
codecalm 已提交
4798
.end-0 {
C
codecalm 已提交
4799 4800
  right: 0 !important; }

C
codecalm 已提交
4801
.end-50 {
C
codecalm 已提交
4802 4803
  right: 50% !important; }

C
codecalm 已提交
4804
.end-100 {
C
codecalm 已提交
4805 4806 4807
  right: 100% !important; }

.translate-middle {
C
codecalm 已提交
4808 4809 4810 4811 4812 4813 4814
  transform: translate(-50%, -50%) !important; }

.translate-middle-x {
  transform: translateX(-50%) !important; }

.translate-middle-y {
  transform: translateY(-50%) !important; }
C
codecalm 已提交
4815 4816

.border {
C
codecalm 已提交
4817
  border: 1px solid rgba(101, 109, 119, 0.16) !important; }
C
codecalm 已提交
4818 4819

.border-wide {
C
codecalm 已提交
4820
  border: 2px solid rgba(101, 109, 119, 0.16) !important; }
C
codecalm 已提交
4821 4822 4823 4824 4825

.border-0 {
  border: 0 !important; }

.border-top {
C
codecalm 已提交
4826
  border-top: 1px solid rgba(101, 109, 119, 0.16) !important; }
C
codecalm 已提交
4827 4828

.border-top-wide {
C
codecalm 已提交
4829
  border-top: 2px solid rgba(101, 109, 119, 0.16) !important; }
C
codecalm 已提交
4830 4831 4832 4833

.border-top-0 {
  border-top: 0 !important; }

C
codecalm 已提交
4834
.border-end {
C
codecalm 已提交
4835
  border-right: 1px solid rgba(101, 109, 119, 0.16) !important; }
C
codecalm 已提交
4836

C
codecalm 已提交
4837
.border-end-wide {
C
codecalm 已提交
4838 4839
  border-right: 2px solid rgba(101, 109, 119, 0.16) !important; }

C
codecalm 已提交
4840
.border-end-0 {
C
codecalm 已提交
4841 4842 4843
  border-right: 0 !important; }

.border-bottom {
C
codecalm 已提交
4844
  border-bottom: 1px solid rgba(101, 109, 119, 0.16) !important; }
C
codecalm 已提交
4845 4846

.border-bottom-wide {
C
codecalm 已提交
4847
  border-bottom: 2px solid rgba(101, 109, 119, 0.16) !important; }
C
codecalm 已提交
4848 4849 4850 4851

.border-bottom-0 {
  border-bottom: 0 !important; }

C
codecalm 已提交
4852
.border-start {
C
codecalm 已提交
4853
  border-left: 1px solid rgba(101, 109, 119, 0.16) !important; }
C
codecalm 已提交
4854

C
codecalm 已提交
4855
.border-start-wide {
C
codecalm 已提交
4856 4857
  border-left: 2px solid rgba(101, 109, 119, 0.16) !important; }

C
codecalm 已提交
4858
.border-start-0 {
C
codecalm 已提交
4859 4860 4861 4862 4863 4864
  border-left: 0 !important; }

.border-primary {
  border-color: #206bc4 !important; }

.border-secondary {
C
codecalm 已提交
4865
  border-color: #656d77 !important; }
C
codecalm 已提交
4866 4867

.border-success {
M
Michal Wolny 已提交
4868
  border-color: #2fb344 !important; }
C
codecalm 已提交
4869 4870

.border-info {
C
codecalm 已提交
4871
  border-color: #4299e1 !important; }
C
codecalm 已提交
4872 4873

.border-warning {
M
Michal Wolny 已提交
4874
  border-color: #f76707 !important; }
C
codecalm 已提交
4875 4876

.border-danger {
M
Michal Wolny 已提交
4877
  border-color: #d63939 !important; }
C
codecalm 已提交
4878 4879

.border-light {
C
codecalm 已提交
4880
  border-color: #f4f6fa !important; }
C
codecalm 已提交
4881 4882

.border-dark {
C
codecalm 已提交
4883
  border-color: #232e3c !important; }
C
codecalm 已提交
4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902

.border-white {
  border-color: #ffffff !important; }

.border-1 {
  border-width: 1px !important; }

.border-2 {
  border-width: 2px !important; }

.border-3 {
  border-width: 3px !important; }

.border-4 {
  border-width: 4px !important; }

.border-5 {
  border-width: 5px !important; }

C
codecalm 已提交
4903 4904 4905
.w-0 {
  width: 0 !important; }

C
codecalm 已提交
4906
.w-1 {
C
codecalm 已提交
4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919
  width: 0.25rem !important; }

.w-2 {
  width: 0.5rem !important; }

.w-3 {
  width: 1rem !important; }

.w-4 {
  width: 2rem !important; }

.w-5 {
  width: 4rem !important; }
C
codecalm 已提交
4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944

.w-25 {
  width: 25% !important; }

.w-50 {
  width: 50% !important; }

.w-75 {
  width: 75% !important; }

.w-100 {
  width: 100% !important; }

.w-auto {
  width: auto !important; }

.mw-100 {
  max-width: 100% !important; }

.vw-100 {
  width: 100vw !important; }

.min-vw-100 {
  min-width: 100vw !important; }

C
codecalm 已提交
4945 4946 4947
.h-0 {
  height: 0 !important; }

C
codecalm 已提交
4948
.h-1 {
C
codecalm 已提交
4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961
  height: 0.25rem !important; }

.h-2 {
  height: 0.5rem !important; }

.h-3 {
  height: 1rem !important; }

.h-4 {
  height: 2rem !important; }

.h-5 {
  height: 4rem !important; }
C
codecalm 已提交
4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022

.h-25 {
  height: 25% !important; }

.h-50 {
  height: 50% !important; }

.h-75 {
  height: 75% !important; }

.h-100 {
  height: 100% !important; }

.h-auto {
  height: auto !important; }

.mh-100 {
  max-height: 100% !important; }

.vh-100 {
  height: 100vh !important; }

.min-vh-100 {
  min-height: 100vh !important; }

.flex-fill {
  flex: 1 1 auto !important; }

.flex-row {
  flex-direction: row !important; }

.flex-column {
  flex-direction: column !important; }

.flex-row-reverse {
  flex-direction: row-reverse !important; }

.flex-column-reverse {
  flex-direction: column-reverse !important; }

.flex-grow-0 {
  flex-grow: 0 !important; }

.flex-grow-1 {
  flex-grow: 1 !important; }

.flex-shrink-0 {
  flex-shrink: 0 !important; }

.flex-shrink-1 {
  flex-shrink: 1 !important; }

.flex-wrap {
  flex-wrap: wrap !important; }

.flex-nowrap {
  flex-wrap: nowrap !important; }

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important; }

C
codecalm 已提交
5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040
.gap-0 {
  gap: 0 !important; }

.gap-1 {
  gap: 0.25rem !important; }

.gap-2 {
  gap: 0.5rem !important; }

.gap-3 {
  gap: 1rem !important; }

.gap-4 {
  gap: 2rem !important; }

.gap-5 {
  gap: 4rem !important; }

C
codecalm 已提交
5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146
.justify-content-start {
  justify-content: flex-start !important; }

.justify-content-end {
  justify-content: flex-end !important; }

.justify-content-center {
  justify-content: center !important; }

.justify-content-between {
  justify-content: space-between !important; }

.justify-content-around {
  justify-content: space-around !important; }

.justify-content-evenly {
  justify-content: space-evenly !important; }

.align-items-start {
  align-items: flex-start !important; }

.align-items-end {
  align-items: flex-end !important; }

.align-items-center {
  align-items: center !important; }

.align-items-baseline {
  align-items: baseline !important; }

.align-items-stretch {
  align-items: stretch !important; }

.align-content-start {
  align-content: flex-start !important; }

.align-content-end {
  align-content: flex-end !important; }

.align-content-center {
  align-content: center !important; }

.align-content-between {
  align-content: space-between !important; }

.align-content-around {
  align-content: space-around !important; }

.align-content-stretch {
  align-content: stretch !important; }

.align-self-auto {
  align-self: auto !important; }

.align-self-start {
  align-self: flex-start !important; }

.align-self-end {
  align-self: flex-end !important; }

.align-self-center {
  align-self: center !important; }

.align-self-baseline {
  align-self: baseline !important; }

.align-self-stretch {
  align-self: stretch !important; }

.order-first {
  order: -1 !important; }

.order-0 {
  order: 0 !important; }

.order-1 {
  order: 1 !important; }

.order-2 {
  order: 2 !important; }

.order-3 {
  order: 3 !important; }

.order-4 {
  order: 4 !important; }

.order-5 {
  order: 5 !important; }

.order-last {
  order: 6 !important; }

.m-0 {
  margin: 0 !important; }

.m-1 {
  margin: 0.25rem !important; }

.m-2 {
  margin: 0.5rem !important; }

.m-3 {
  margin: 1rem !important; }

.m-4 {
C
codecalm 已提交
5147
  margin: 2rem !important; }
C
codecalm 已提交
5148 5149

.m-5 {
C
codecalm 已提交
5150
  margin: 4rem !important; }
C
codecalm 已提交
5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171

.m-auto {
  margin: auto !important; }

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important; }

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important; }

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important; }

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important; }

.mx-4 {
C
codecalm 已提交
5172 5173
  margin-right: 2rem !important;
  margin-left: 2rem !important; }
C
codecalm 已提交
5174 5175

.mx-5 {
C
codecalm 已提交
5176 5177
  margin-right: 4rem !important;
  margin-left: 4rem !important; }
C
codecalm 已提交
5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important; }

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important; }

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important; }

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important; }

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important; }

.my-4 {
C
codecalm 已提交
5200 5201
  margin-top: 2rem !important;
  margin-bottom: 2rem !important; }
C
codecalm 已提交
5202 5203

.my-5 {
C
codecalm 已提交
5204 5205
  margin-top: 4rem !important;
  margin-bottom: 4rem !important; }
C
codecalm 已提交
5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important; }

.mt-0 {
  margin-top: 0 !important; }

.mt-1 {
  margin-top: 0.25rem !important; }

.mt-2 {
  margin-top: 0.5rem !important; }

.mt-3 {
  margin-top: 1rem !important; }

.mt-4 {
C
codecalm 已提交
5224
  margin-top: 2rem !important; }
C
codecalm 已提交
5225 5226

.mt-5 {
C
codecalm 已提交
5227
  margin-top: 4rem !important; }
C
codecalm 已提交
5228 5229 5230 5231

.mt-auto {
  margin-top: auto !important; }

C
codecalm 已提交
5232 5233
.me-0 {
  margin-right: 0 !important; }
C
codecalm 已提交
5234

C
codecalm 已提交
5235 5236
.me-1 {
  margin-right: 0.25rem !important; }
C
codecalm 已提交
5237

C
codecalm 已提交
5238 5239
.me-2 {
  margin-right: 0.5rem !important; }
C
codecalm 已提交
5240

C
codecalm 已提交
5241 5242
.me-3 {
  margin-right: 1rem !important; }
C
codecalm 已提交
5243

C
codecalm 已提交
5244 5245
.me-4 {
  margin-right: 2rem !important; }
C
codecalm 已提交
5246

C
codecalm 已提交
5247 5248
.me-5 {
  margin-right: 4rem !important; }
C
codecalm 已提交
5249

C
codecalm 已提交
5250 5251
.me-auto {
  margin-right: auto !important; }
C
codecalm 已提交
5252

C
codecalm 已提交
5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265
.mb-0 {
  margin-bottom: 0 !important; }

.mb-1 {
  margin-bottom: 0.25rem !important; }

.mb-2 {
  margin-bottom: 0.5rem !important; }

.mb-3 {
  margin-bottom: 1rem !important; }

.mb-4 {
C
codecalm 已提交
5266
  margin-bottom: 2rem !important; }
C
codecalm 已提交
5267 5268

.mb-5 {
C
codecalm 已提交
5269
  margin-bottom: 4rem !important; }
C
codecalm 已提交
5270 5271 5272 5273

.mb-auto {
  margin-bottom: auto !important; }

C
codecalm 已提交
5274 5275
.ms-0 {
  margin-left: 0 !important; }
C
codecalm 已提交
5276

C
codecalm 已提交
5277 5278
.ms-1 {
  margin-left: 0.25rem !important; }
C
codecalm 已提交
5279

C
codecalm 已提交
5280 5281
.ms-2 {
  margin-left: 0.5rem !important; }
C
codecalm 已提交
5282

C
codecalm 已提交
5283 5284
.ms-3 {
  margin-left: 1rem !important; }
C
codecalm 已提交
5285

C
codecalm 已提交
5286 5287
.ms-4 {
  margin-left: 2rem !important; }
C
codecalm 已提交
5288

C
codecalm 已提交
5289 5290
.ms-5 {
  margin-left: 4rem !important; }
C
codecalm 已提交
5291

C
codecalm 已提交
5292 5293
.ms-auto {
  margin-left: auto !important; }
C
codecalm 已提交
5294

C
codecalm 已提交
5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307
.p-0 {
  padding: 0 !important; }

.p-1 {
  padding: 0.25rem !important; }

.p-2 {
  padding: 0.5rem !important; }

.p-3 {
  padding: 1rem !important; }

.p-4 {
C
codecalm 已提交
5308
  padding: 2rem !important; }
C
codecalm 已提交
5309 5310

.p-5 {
C
codecalm 已提交
5311
  padding: 4rem !important; }
C
codecalm 已提交
5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important; }

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important; }

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important; }

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important; }

.px-4 {
C
codecalm 已提交
5330 5331
  padding-right: 2rem !important;
  padding-left: 2rem !important; }
C
codecalm 已提交
5332 5333

.px-5 {
C
codecalm 已提交
5334 5335
  padding-right: 4rem !important;
  padding-left: 4rem !important; }
C
codecalm 已提交
5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important; }

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important; }

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important; }

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important; }

.py-4 {
C
codecalm 已提交
5354 5355
  padding-top: 2rem !important;
  padding-bottom: 2rem !important; }
C
codecalm 已提交
5356 5357

.py-5 {
C
codecalm 已提交
5358 5359
  padding-top: 4rem !important;
  padding-bottom: 4rem !important; }
C
codecalm 已提交
5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373

.pt-0 {
  padding-top: 0 !important; }

.pt-1 {
  padding-top: 0.25rem !important; }

.pt-2 {
  padding-top: 0.5rem !important; }

.pt-3 {
  padding-top: 1rem !important; }

.pt-4 {
C
codecalm 已提交
5374
  padding-top: 2rem !important; }
C
codecalm 已提交
5375 5376

.pt-5 {
C
codecalm 已提交
5377
  padding-top: 4rem !important; }
C
codecalm 已提交
5378

C
codecalm 已提交
5379 5380
.pe-0 {
  padding-right: 0 !important; }
C
codecalm 已提交
5381

C
codecalm 已提交
5382 5383
.pe-1 {
  padding-right: 0.25rem !important; }
C
codecalm 已提交
5384

C
codecalm 已提交
5385 5386
.pe-2 {
  padding-right: 0.5rem !important; }
C
codecalm 已提交
5387

C
codecalm 已提交
5388 5389
.pe-3 {
  padding-right: 1rem !important; }
C
codecalm 已提交
5390

C
codecalm 已提交
5391 5392
.pe-4 {
  padding-right: 2rem !important; }
C
codecalm 已提交
5393

C
codecalm 已提交
5394 5395
.pe-5 {
  padding-right: 4rem !important; }
C
codecalm 已提交
5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409

.pb-0 {
  padding-bottom: 0 !important; }

.pb-1 {
  padding-bottom: 0.25rem !important; }

.pb-2 {
  padding-bottom: 0.5rem !important; }

.pb-3 {
  padding-bottom: 1rem !important; }

.pb-4 {
C
codecalm 已提交
5410
  padding-bottom: 2rem !important; }
C
codecalm 已提交
5411 5412

.pb-5 {
C
codecalm 已提交
5413
  padding-bottom: 4rem !important; }
C
codecalm 已提交
5414

C
codecalm 已提交
5415 5416
.ps-0 {
  padding-left: 0 !important; }
C
codecalm 已提交
5417

C
codecalm 已提交
5418 5419
.ps-1 {
  padding-left: 0.25rem !important; }
C
codecalm 已提交
5420

C
codecalm 已提交
5421 5422
.ps-2 {
  padding-left: 0.5rem !important; }
C
codecalm 已提交
5423

C
codecalm 已提交
5424 5425
.ps-3 {
  padding-left: 1rem !important; }
C
codecalm 已提交
5426

C
codecalm 已提交
5427 5428
.ps-4 {
  padding-left: 2rem !important; }
C
codecalm 已提交
5429

C
codecalm 已提交
5430 5431
.ps-5 {
  padding-left: 4rem !important; }
C
codecalm 已提交
5432

C
codecalm 已提交
5433 5434 5435
.font-monospace {
  font-family: var(--tblr-font-monospace) !important; }

C
codecalm 已提交
5436
.text-h1 {
C
codecalm 已提交
5437
  font-size: 1.5rem !important; }
C
codecalm 已提交
5438 5439

.text-h2 {
C
codecalm 已提交
5440
  font-size: 1.25rem !important; }
C
codecalm 已提交
5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459

.text-h3 {
  font-size: 1rem !important; }

.text-h4 {
  font-size: 0.875rem !important; }

.text-h5 {
  font-size: 0.75rem !important; }

.text-h6 {
  font-size: 0.625rem !important; }

.fst-italic {
  font-style: italic !important; }

.fst-normal {
  font-style: normal !important; }

C
codecalm 已提交
5460 5461 5462 5463 5464 5465 5466 5467 5468 5469
.font-weight-light {
  font-weight: 300 !important; }

.font-weight-normal {
  font-weight: 400 !important; }

.font-weight-medium {
  font-weight: 500 !important; }

.font-weight-bold {
C
codecalm 已提交
5470
  font-weight: 600 !important; }
C
codecalm 已提交
5471

C
codecalm 已提交
5472 5473
.lh-1 {
  line-height: 1 !important; }
C
codecalm 已提交
5474

C
codecalm 已提交
5475 5476
.lh-sm {
  line-height: 1.1428571 !important; }
C
codecalm 已提交
5477

C
codecalm 已提交
5478 5479 5480 5481 5482
.lh-base {
  line-height: 1.4285714 !important; }

.lh-lg {
  line-height: 1.7142857 !important; }
C
codecalm 已提交
5483

C
codecalm 已提交
5484
.text-start {
C
codecalm 已提交
5485
  text-align: left !important; }
C
codecalm 已提交
5486

C
codecalm 已提交
5487
.text-end {
C
codecalm 已提交
5488
  text-align: right !important; }
C
codecalm 已提交
5489 5490 5491 5492

.text-center {
  text-align: center !important; }

C
codecalm 已提交
5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522
.text-decoration-none {
  text-decoration: none !important; }

.text-decoration-underline {
  text-decoration: underline !important; }

.text-decoration-line-through {
  text-decoration: line-through !important; }

.text-lowercase {
  text-transform: lowercase !important; }

.text-uppercase {
  text-transform: uppercase !important; }

.text-capitalize {
  text-transform: capitalize !important; }

.text-wrap {
  white-space: normal !important; }

.text-nowrap {
  white-space: nowrap !important; }

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important; }

/* rtl:end:remove */
C
codecalm 已提交
5523
.text-primary {
5524 5525
  --tblr-text-opacity: 1;
  color: rgba(var(--tblr-primary-rgb), var(--tblr-text-opacity)) !important; }
C
codecalm 已提交
5526 5527

.text-secondary {
5528 5529
  --tblr-text-opacity: 1;
  color: rgba(var(--tblr-secondary-rgb), var(--tblr-text-opacity)) !important; }
C
codecalm 已提交
5530 5531

.text-success {
5532 5533
  --tblr-text-opacity: 1;
  color: rgba(var(--tblr-success-rgb), var(--tblr-text-opacity)) !important; }
C
codecalm 已提交
5534 5535

.text-info {
5536 5537
  --tblr-text-opacity: 1;
  color: rgba(var(--tblr-info-rgb), var(--tblr-text-opacity)) !important; }
C
codecalm 已提交
5538 5539

.text-warning {
5540 5541
  --tblr-text-opacity: 1;
  color: rgba(var(--tblr-warning-rgb), var(--tblr-text-opacity)) !important; }
C
codecalm 已提交
5542 5543

.text-danger {
5544 5545
  --tblr-text-opacity: 1;
  color: rgba(var(--tblr-danger-rgb), var(--tblr-text-opacity)) !important; }
C
codecalm 已提交
5546 5547

.text-light {
5548 5549
  --tblr-text-opacity: 1;
  color: rgba(var(--tblr-light-rgb), var(--tblr-text-opacity)) !important; }
C
codecalm 已提交
5550 5551

.text-dark {
5552 5553 5554 5555 5556 5557
  --tblr-text-opacity: 1;
  color: rgba(var(--tblr-dark-rgb), var(--tblr-text-opacity)) !important; }

.text-black {
  --tblr-text-opacity: 1;
  color: rgba(var(--tblr-black-rgb), var(--tblr-text-opacity)) !important; }
C
codecalm 已提交
5558 5559

.text-white {
5560 5561
  --tblr-text-opacity: 1;
  color: rgba(var(--tblr-white-rgb), var(--tblr-text-opacity)) !important; }
C
codecalm 已提交
5562 5563

.text-body {
5564 5565
  --tblr-text-opacity: 1;
  color: rgba(var(--tblr-body-rgb), var(--tblr-text-opacity)) !important; }
C
codecalm 已提交
5566 5567

.text-muted {
5568
  --tblr-text-opacity: 1;
C
codecalm 已提交
5569
  color: #656d77 !important; }
C
codecalm 已提交
5570 5571

.text-black-50 {
5572
  --tblr-text-opacity: 1;
C
codecalm 已提交
5573 5574 5575
  color: rgba(0, 0, 0, 0.5) !important; }

.text-white-50 {
5576
  --tblr-text-opacity: 1;
C
codecalm 已提交
5577 5578 5579
  color: rgba(255, 255, 255, 0.5) !important; }

.text-reset {
5580
  --tblr-text-opacity: 1;
C
codecalm 已提交
5581 5582
  color: inherit !important; }

5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594
.text-opacity-25 {
  --tblr-text-opacity: 0.25; }

.text-opacity-50 {
  --tblr-text-opacity: 0.5; }

.text-opacity-75 {
  --tblr-text-opacity: 0.75; }

.text-opacity-100 {
  --tblr-text-opacity: 1; }

C
codecalm 已提交
5595
.bg-primary {
5596 5597
  --tblr-bg-opacity: 1;
  background-color: rgba(var(--tblr-primary-rgb), var(--tblr-bg-opacity)) !important; }
C
codecalm 已提交
5598 5599

.bg-secondary {
5600 5601
  --tblr-bg-opacity: 1;
  background-color: rgba(var(--tblr-secondary-rgb), var(--tblr-bg-opacity)) !important; }
C
codecalm 已提交
5602 5603

.bg-success {
5604 5605
  --tblr-bg-opacity: 1;
  background-color: rgba(var(--tblr-success-rgb), var(--tblr-bg-opacity)) !important; }
C
codecalm 已提交
5606 5607

.bg-info {
5608 5609
  --tblr-bg-opacity: 1;
  background-color: rgba(var(--tblr-info-rgb), var(--tblr-bg-opacity)) !important; }
C
codecalm 已提交
5610 5611

.bg-warning {
5612 5613
  --tblr-bg-opacity: 1;
  background-color: rgba(var(--tblr-warning-rgb), var(--tblr-bg-opacity)) !important; }
C
codecalm 已提交
5614 5615

.bg-danger {
5616 5617
  --tblr-bg-opacity: 1;
  background-color: rgba(var(--tblr-danger-rgb), var(--tblr-bg-opacity)) !important; }
C
codecalm 已提交
5618 5619

.bg-light {
5620 5621
  --tblr-bg-opacity: 1;
  background-color: rgba(var(--tblr-light-rgb), var(--tblr-bg-opacity)) !important; }
C
codecalm 已提交
5622 5623

.bg-dark {
5624 5625
  --tblr-bg-opacity: 1;
  background-color: rgba(var(--tblr-dark-rgb), var(--tblr-bg-opacity)) !important; }
C
codecalm 已提交
5626

5627 5628 5629
.bg-black {
  --tblr-bg-opacity: 1;
  background-color: rgba(var(--tblr-black-rgb), var(--tblr-bg-opacity)) !important; }
C
codecalm 已提交
5630 5631

.bg-white {
5632 5633 5634 5635 5636 5637
  --tblr-bg-opacity: 1;
  background-color: rgba(var(--tblr-white-rgb), var(--tblr-bg-opacity)) !important; }

.bg-body {
  --tblr-bg-opacity: 1;
  background-color: rgba(var(--tblr-body-rgb), var(--tblr-bg-opacity)) !important; }
C
codecalm 已提交
5638 5639

.bg-transparent {
5640
  --tblr-bg-opacity: 1;
C
codecalm 已提交
5641 5642
  background-color: transparent !important; }

5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657
.bg-opacity-10 {
  --tblr-bg-opacity: 0.1; }

.bg-opacity-25 {
  --tblr-bg-opacity: 0.25; }

.bg-opacity-50 {
  --tblr-bg-opacity: 0.5; }

.bg-opacity-75 {
  --tblr-bg-opacity: 0.75; }

.bg-opacity-100 {
  --tblr-bg-opacity: 1; }

C
codecalm 已提交
5658
.bg-gradient {
C
codecalm 已提交
5659
  background-image: var(--tblr-gradient) !important; }
C
codecalm 已提交
5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684

.user-select-all {
  -webkit-user-select: all !important;
     -moz-user-select: all !important;
          user-select: all !important; }

.user-select-auto {
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
      -ms-user-select: auto !important;
          user-select: auto !important; }

.user-select-none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
      -ms-user-select: none !important;
          user-select: none !important; }

.pe-none {
  pointer-events: none !important; }

.pe-auto {
  pointer-events: auto !important; }

.rounded {
C
codecalm 已提交
5685
  border-radius: 4px !important; }
C
codecalm 已提交
5686

C
codecalm 已提交
5687 5688 5689 5690
.rounded-0 {
  border-radius: 0 !important; }

.rounded-1 {
C
codecalm 已提交
5691
  border-radius: 2px !important; }
C
codecalm 已提交
5692

C
codecalm 已提交
5693
.rounded-2 {
C
codecalm 已提交
5694
  border-radius: 4px !important; }
C
codecalm 已提交
5695 5696

.rounded-3 {
C
codecalm 已提交
5697
  border-radius: 8px !important; }
C
codecalm 已提交
5698 5699 5700 5701 5702

.rounded-circle {
  border-radius: 50% !important; }

.rounded-pill {
C
codecalm 已提交
5703
  border-radius: 100rem !important; }
C
codecalm 已提交
5704 5705

.rounded-top {
C
codecalm 已提交
5706 5707
  border-top-left-radius: 4px !important;
  border-top-right-radius: 4px !important; }
C
codecalm 已提交
5708

C
codecalm 已提交
5709
.rounded-end {
C
codecalm 已提交
5710 5711
  border-top-right-radius: 4px !important;
  border-bottom-right-radius: 4px !important; }
C
codecalm 已提交
5712 5713

.rounded-bottom {
C
codecalm 已提交
5714 5715
  border-bottom-right-radius: 4px !important;
  border-bottom-left-radius: 4px !important; }
C
codecalm 已提交
5716

C
codecalm 已提交
5717
.rounded-start {
C
codecalm 已提交
5718 5719
  border-bottom-left-radius: 4px !important;
  border-top-left-radius: 4px !important; }
C
codecalm 已提交
5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773

.visible {
  visibility: visible !important; }

.invisible {
  visibility: hidden !important; }

.object-contain {
  -o-object-fit: contain !important;
     object-fit: contain !important; }

.object-cover {
  -o-object-fit: cover !important;
     object-fit: cover !important; }

.object-fill {
  -o-object-fit: fill !important;
     object-fit: fill !important; }

.object-scale-down {
  -o-object-fit: scale-down !important;
     object-fit: scale-down !important; }

.object-none {
  -o-object-fit: none !important;
     object-fit: none !important; }

.tracking-tight {
  letter-spacing: -0.05em !important; }

.tracking-normal {
  letter-spacing: 0 !important; }

.tracking-wide {
  letter-spacing: 0.05em !important; }

.cursor-auto {
  cursor: auto !important; }

.cursor-pointer {
  cursor: pointer !important; }

.cursor-move {
  cursor: move !important; }

.cursor-not-allowed {
  cursor: not-allowed !important; }

.cursor-zoom-in {
  cursor: zoom-in !important; }

.cursor-zoom-out {
  cursor: zoom-out !important; }

C
codecalm 已提交
5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797
.border-x {
  border-left: 1px solid rgba(101, 109, 119, 0.16) !important;
  border-right: 1px solid rgba(101, 109, 119, 0.16) !important; }

.border-x-wide {
  border-left: 2px solid rgba(101, 109, 119, 0.16) !important;
  border-right: 2px solid rgba(101, 109, 119, 0.16) !important; }

.border-x-0 {
  border-left: 0 !important;
  border-right: 0 !important; }

.border-y {
  border-top: 1px solid rgba(101, 109, 119, 0.16) !important;
  border-bottom: 1px solid rgba(101, 109, 119, 0.16) !important; }

.border-y-wide {
  border-top: 2px solid rgba(101, 109, 119, 0.16) !important;
  border-bottom: 2px solid rgba(101, 109, 119, 0.16) !important; }

.border-y-0 {
  border-top: 0 !important;
  border-bottom: 0 !important; }

C
codecalm 已提交
5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809
.columns-2 {
  -moz-columns: 2 !important;
       columns: 2 !important; }

.columns-3 {
  -moz-columns: 3 !important;
       columns: 3 !important; }

.columns-4 {
  -moz-columns: 4 !important;
       columns: 4 !important; }

C
codecalm 已提交
5810
@media (min-width: 576px) {
C
codecalm 已提交
5811
  .float-sm-start {
C
codecalm 已提交
5812
    float: left !important; }
C
codecalm 已提交
5813
  .float-sm-end {
C
codecalm 已提交
5814
    float: right !important; }
C
codecalm 已提交
5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918
  .float-sm-none {
    float: none !important; }
  .d-sm-inline {
    display: inline !important; }
  .d-sm-inline-block {
    display: inline-block !important; }
  .d-sm-block {
    display: block !important; }
  .d-sm-grid {
    display: grid !important; }
  .d-sm-table {
    display: table !important; }
  .d-sm-table-row {
    display: table-row !important; }
  .d-sm-table-cell {
    display: table-cell !important; }
  .d-sm-flex {
    display: flex !important; }
  .d-sm-inline-flex {
    display: inline-flex !important; }
  .d-sm-none {
    display: none !important; }
  .flex-sm-fill {
    flex: 1 1 auto !important; }
  .flex-sm-row {
    flex-direction: row !important; }
  .flex-sm-column {
    flex-direction: column !important; }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-sm-grow-0 {
    flex-grow: 0 !important; }
  .flex-sm-grow-1 {
    flex-grow: 1 !important; }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important; }
  .flex-sm-wrap {
    flex-wrap: wrap !important; }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important; }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .gap-sm-0 {
    gap: 0 !important; }
  .gap-sm-1 {
    gap: 0.25rem !important; }
  .gap-sm-2 {
    gap: 0.5rem !important; }
  .gap-sm-3 {
    gap: 1rem !important; }
  .gap-sm-4 {
    gap: 2rem !important; }
  .gap-sm-5 {
    gap: 4rem !important; }
  .justify-content-sm-start {
    justify-content: flex-start !important; }
  .justify-content-sm-end {
    justify-content: flex-end !important; }
  .justify-content-sm-center {
    justify-content: center !important; }
  .justify-content-sm-between {
    justify-content: space-between !important; }
  .justify-content-sm-around {
    justify-content: space-around !important; }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important; }
  .align-items-sm-start {
    align-items: flex-start !important; }
  .align-items-sm-end {
    align-items: flex-end !important; }
  .align-items-sm-center {
    align-items: center !important; }
  .align-items-sm-baseline {
    align-items: baseline !important; }
  .align-items-sm-stretch {
    align-items: stretch !important; }
  .align-content-sm-start {
    align-content: flex-start !important; }
  .align-content-sm-end {
    align-content: flex-end !important; }
  .align-content-sm-center {
    align-content: center !important; }
  .align-content-sm-between {
    align-content: space-between !important; }
  .align-content-sm-around {
    align-content: space-around !important; }
  .align-content-sm-stretch {
    align-content: stretch !important; }
  .align-self-sm-auto {
    align-self: auto !important; }
  .align-self-sm-start {
    align-self: flex-start !important; }
  .align-self-sm-end {
    align-self: flex-end !important; }
  .align-self-sm-center {
    align-self: center !important; }
  .align-self-sm-baseline {
    align-self: baseline !important; }
  .align-self-sm-stretch {
    align-self: stretch !important; }
C
codecalm 已提交
5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943
  .order-sm-first {
    order: -1 !important; }
  .order-sm-0 {
    order: 0 !important; }
  .order-sm-1 {
    order: 1 !important; }
  .order-sm-2 {
    order: 2 !important; }
  .order-sm-3 {
    order: 3 !important; }
  .order-sm-4 {
    order: 4 !important; }
  .order-sm-5 {
    order: 5 !important; }
  .order-sm-last {
    order: 6 !important; }
  .m-sm-0 {
    margin: 0 !important; }
  .m-sm-1 {
    margin: 0.25rem !important; }
  .m-sm-2 {
    margin: 0.5rem !important; }
  .m-sm-3 {
    margin: 1rem !important; }
  .m-sm-4 {
C
codecalm 已提交
5944
    margin: 2rem !important; }
C
codecalm 已提交
5945
  .m-sm-5 {
C
codecalm 已提交
5946
    margin: 4rem !important; }
C
codecalm 已提交
5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961
  .m-sm-auto {
    margin: auto !important; }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important; }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important; }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important; }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important; }
  .mx-sm-4 {
C
codecalm 已提交
5962 5963
    margin-right: 2rem !important;
    margin-left: 2rem !important; }
C
codecalm 已提交
5964
  .mx-sm-5 {
C
codecalm 已提交
5965 5966
    margin-right: 4rem !important;
    margin-left: 4rem !important; }
C
codecalm 已提交
5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important; }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important; }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important; }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important; }
  .my-sm-4 {
C
codecalm 已提交
5983 5984
    margin-top: 2rem !important;
    margin-bottom: 2rem !important; }
C
codecalm 已提交
5985
  .my-sm-5 {
C
codecalm 已提交
5986 5987
    margin-top: 4rem !important;
    margin-bottom: 4rem !important; }
C
codecalm 已提交
5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important; }
  .mt-sm-0 {
    margin-top: 0 !important; }
  .mt-sm-1 {
    margin-top: 0.25rem !important; }
  .mt-sm-2 {
    margin-top: 0.5rem !important; }
  .mt-sm-3 {
    margin-top: 1rem !important; }
  .mt-sm-4 {
C
codecalm 已提交
6000
    margin-top: 2rem !important; }
C
codecalm 已提交
6001
  .mt-sm-5 {
C
codecalm 已提交
6002
    margin-top: 4rem !important; }
C
codecalm 已提交
6003 6004
  .mt-sm-auto {
    margin-top: auto !important; }
C
codecalm 已提交
6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018
  .me-sm-0 {
    margin-right: 0 !important; }
  .me-sm-1 {
    margin-right: 0.25rem !important; }
  .me-sm-2 {
    margin-right: 0.5rem !important; }
  .me-sm-3 {
    margin-right: 1rem !important; }
  .me-sm-4 {
    margin-right: 2rem !important; }
  .me-sm-5 {
    margin-right: 4rem !important; }
  .me-sm-auto {
    margin-right: auto !important; }
C
codecalm 已提交
6019 6020 6021 6022 6023 6024 6025 6026 6027
  .mb-sm-0 {
    margin-bottom: 0 !important; }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important; }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important; }
  .mb-sm-3 {
    margin-bottom: 1rem !important; }
  .mb-sm-4 {
C
codecalm 已提交
6028
    margin-bottom: 2rem !important; }
C
codecalm 已提交
6029
  .mb-sm-5 {
C
codecalm 已提交
6030
    margin-bottom: 4rem !important; }
C
codecalm 已提交
6031 6032
  .mb-sm-auto {
    margin-bottom: auto !important; }
C
codecalm 已提交
6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046
  .ms-sm-0 {
    margin-left: 0 !important; }
  .ms-sm-1 {
    margin-left: 0.25rem !important; }
  .ms-sm-2 {
    margin-left: 0.5rem !important; }
  .ms-sm-3 {
    margin-left: 1rem !important; }
  .ms-sm-4 {
    margin-left: 2rem !important; }
  .ms-sm-5 {
    margin-left: 4rem !important; }
  .ms-sm-auto {
    margin-left: auto !important; }
C
codecalm 已提交
6047 6048 6049 6050 6051 6052 6053 6054 6055
  .p-sm-0 {
    padding: 0 !important; }
  .p-sm-1 {
    padding: 0.25rem !important; }
  .p-sm-2 {
    padding: 0.5rem !important; }
  .p-sm-3 {
    padding: 1rem !important; }
  .p-sm-4 {
C
codecalm 已提交
6056
    padding: 2rem !important; }
C
codecalm 已提交
6057
  .p-sm-5 {
C
codecalm 已提交
6058
    padding: 4rem !important; }
C
codecalm 已提交
6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important; }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important; }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important; }
  .px-sm-4 {
C
codecalm 已提交
6072 6073
    padding-right: 2rem !important;
    padding-left: 2rem !important; }
C
codecalm 已提交
6074
  .px-sm-5 {
C
codecalm 已提交
6075 6076
    padding-right: 4rem !important;
    padding-left: 4rem !important; }
C
codecalm 已提交
6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important; }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important; }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important; }
  .py-sm-4 {
C
codecalm 已提交
6090 6091
    padding-top: 2rem !important;
    padding-bottom: 2rem !important; }
C
codecalm 已提交
6092
  .py-sm-5 {
C
codecalm 已提交
6093 6094
    padding-top: 4rem !important;
    padding-bottom: 4rem !important; }
C
codecalm 已提交
6095 6096 6097 6098 6099 6100 6101 6102 6103
  .pt-sm-0 {
    padding-top: 0 !important; }
  .pt-sm-1 {
    padding-top: 0.25rem !important; }
  .pt-sm-2 {
    padding-top: 0.5rem !important; }
  .pt-sm-3 {
    padding-top: 1rem !important; }
  .pt-sm-4 {
C
codecalm 已提交
6104
    padding-top: 2rem !important; }
C
codecalm 已提交
6105
  .pt-sm-5 {
C
codecalm 已提交
6106
    padding-top: 4rem !important; }
C
codecalm 已提交
6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142
  .pe-sm-0 {
    padding-right: 0 !important; }
  .pe-sm-1 {
    padding-right: 0.25rem !important; }
  .pe-sm-2 {
    padding-right: 0.5rem !important; }
  .pe-sm-3 {
    padding-right: 1rem !important; }
  .pe-sm-4 {
    padding-right: 2rem !important; }
  .pe-sm-5 {
    padding-right: 4rem !important; }
  .pb-sm-0 {
    padding-bottom: 0 !important; }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important; }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important; }
  .pb-sm-3 {
    padding-bottom: 1rem !important; }
  .pb-sm-4 {
    padding-bottom: 2rem !important; }
  .pb-sm-5 {
    padding-bottom: 4rem !important; }
  .ps-sm-0 {
    padding-left: 0 !important; }
  .ps-sm-1 {
    padding-left: 0.25rem !important; }
  .ps-sm-2 {
    padding-left: 0.5rem !important; }
  .ps-sm-3 {
    padding-left: 1rem !important; }
  .ps-sm-4 {
    padding-left: 2rem !important; }
  .ps-sm-5 {
    padding-left: 4rem !important; }
C
codecalm 已提交
6143
  .text-sm-start {
C
codecalm 已提交
6144
    text-align: left !important; }
C
codecalm 已提交
6145
  .text-sm-end {
C
codecalm 已提交
6146
    text-align: right !important; }
C
codecalm 已提交
6147
  .text-sm-center {
C
codecalm 已提交
6148 6149 6150 6151 6152 6153 6154 6155 6156 6157
    text-align: center !important; }
  .columns-sm-2 {
    -moz-columns: 2 !important;
         columns: 2 !important; }
  .columns-sm-3 {
    -moz-columns: 3 !important;
         columns: 3 !important; }
  .columns-sm-4 {
    -moz-columns: 4 !important;
         columns: 4 !important; } }
C
codecalm 已提交
6158

C
codecalm 已提交
6159
@media (min-width: 768px) {
C
codecalm 已提交
6160
  .float-md-start {
C
codecalm 已提交
6161
    float: left !important; }
C
codecalm 已提交
6162
  .float-md-end {
C
codecalm 已提交
6163
    float: right !important; }
C
codecalm 已提交
6164 6165 6166 6167 6168 6169 6170 6171
  .float-md-none {
    float: none !important; }
  .d-md-inline {
    display: inline !important; }
  .d-md-inline-block {
    display: inline-block !important; }
  .d-md-block {
    display: block !important; }
C
codecalm 已提交
6172 6173
  .d-md-grid {
    display: grid !important; }
C
codecalm 已提交
6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209
  .d-md-table {
    display: table !important; }
  .d-md-table-row {
    display: table-row !important; }
  .d-md-table-cell {
    display: table-cell !important; }
  .d-md-flex {
    display: flex !important; }
  .d-md-inline-flex {
    display: inline-flex !important; }
  .d-md-none {
    display: none !important; }
  .flex-md-fill {
    flex: 1 1 auto !important; }
  .flex-md-row {
    flex-direction: row !important; }
  .flex-md-column {
    flex-direction: column !important; }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-md-grow-0 {
    flex-grow: 0 !important; }
  .flex-md-grow-1 {
    flex-grow: 1 !important; }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important; }
  .flex-md-wrap {
    flex-wrap: wrap !important; }
  .flex-md-nowrap {
    flex-wrap: nowrap !important; }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
C
codecalm 已提交
6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221
  .gap-md-0 {
    gap: 0 !important; }
  .gap-md-1 {
    gap: 0.25rem !important; }
  .gap-md-2 {
    gap: 0.5rem !important; }
  .gap-md-3 {
    gap: 1rem !important; }
  .gap-md-4 {
    gap: 2rem !important; }
  .gap-md-5 {
    gap: 4rem !important; }
C
codecalm 已提交
6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292
  .justify-content-md-start {
    justify-content: flex-start !important; }
  .justify-content-md-end {
    justify-content: flex-end !important; }
  .justify-content-md-center {
    justify-content: center !important; }
  .justify-content-md-between {
    justify-content: space-between !important; }
  .justify-content-md-around {
    justify-content: space-around !important; }
  .justify-content-md-evenly {
    justify-content: space-evenly !important; }
  .align-items-md-start {
    align-items: flex-start !important; }
  .align-items-md-end {
    align-items: flex-end !important; }
  .align-items-md-center {
    align-items: center !important; }
  .align-items-md-baseline {
    align-items: baseline !important; }
  .align-items-md-stretch {
    align-items: stretch !important; }
  .align-content-md-start {
    align-content: flex-start !important; }
  .align-content-md-end {
    align-content: flex-end !important; }
  .align-content-md-center {
    align-content: center !important; }
  .align-content-md-between {
    align-content: space-between !important; }
  .align-content-md-around {
    align-content: space-around !important; }
  .align-content-md-stretch {
    align-content: stretch !important; }
  .align-self-md-auto {
    align-self: auto !important; }
  .align-self-md-start {
    align-self: flex-start !important; }
  .align-self-md-end {
    align-self: flex-end !important; }
  .align-self-md-center {
    align-self: center !important; }
  .align-self-md-baseline {
    align-self: baseline !important; }
  .align-self-md-stretch {
    align-self: stretch !important; }
  .order-md-first {
    order: -1 !important; }
  .order-md-0 {
    order: 0 !important; }
  .order-md-1 {
    order: 1 !important; }
  .order-md-2 {
    order: 2 !important; }
  .order-md-3 {
    order: 3 !important; }
  .order-md-4 {
    order: 4 !important; }
  .order-md-5 {
    order: 5 !important; }
  .order-md-last {
    order: 6 !important; }
  .m-md-0 {
    margin: 0 !important; }
  .m-md-1 {
    margin: 0.25rem !important; }
  .m-md-2 {
    margin: 0.5rem !important; }
  .m-md-3 {
    margin: 1rem !important; }
  .m-md-4 {
C
codecalm 已提交
6293
    margin: 2rem !important; }
C
codecalm 已提交
6294
  .m-md-5 {
C
codecalm 已提交
6295
    margin: 4rem !important; }
C
codecalm 已提交
6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310
  .m-md-auto {
    margin: auto !important; }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important; }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important; }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important; }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important; }
  .mx-md-4 {
C
codecalm 已提交
6311 6312
    margin-right: 2rem !important;
    margin-left: 2rem !important; }
C
codecalm 已提交
6313
  .mx-md-5 {
C
codecalm 已提交
6314 6315
    margin-right: 4rem !important;
    margin-left: 4rem !important; }
C
codecalm 已提交
6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important; }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important; }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important; }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important; }
  .my-md-4 {
C
codecalm 已提交
6332 6333
    margin-top: 2rem !important;
    margin-bottom: 2rem !important; }
C
codecalm 已提交
6334
  .my-md-5 {
C
codecalm 已提交
6335 6336
    margin-top: 4rem !important;
    margin-bottom: 4rem !important; }
C
codecalm 已提交
6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important; }
  .mt-md-0 {
    margin-top: 0 !important; }
  .mt-md-1 {
    margin-top: 0.25rem !important; }
  .mt-md-2 {
    margin-top: 0.5rem !important; }
  .mt-md-3 {
    margin-top: 1rem !important; }
  .mt-md-4 {
C
codecalm 已提交
6349
    margin-top: 2rem !important; }
C
codecalm 已提交
6350
  .mt-md-5 {
C
codecalm 已提交
6351
    margin-top: 4rem !important; }
C
codecalm 已提交
6352 6353
  .mt-md-auto {
    margin-top: auto !important; }
C
codecalm 已提交
6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367
  .me-md-0 {
    margin-right: 0 !important; }
  .me-md-1 {
    margin-right: 0.25rem !important; }
  .me-md-2 {
    margin-right: 0.5rem !important; }
  .me-md-3 {
    margin-right: 1rem !important; }
  .me-md-4 {
    margin-right: 2rem !important; }
  .me-md-5 {
    margin-right: 4rem !important; }
  .me-md-auto {
    margin-right: auto !important; }
C
codecalm 已提交
6368 6369 6370 6371 6372 6373 6374 6375 6376
  .mb-md-0 {
    margin-bottom: 0 !important; }
  .mb-md-1 {
    margin-bottom: 0.25rem !important; }
  .mb-md-2 {
    margin-bottom: 0.5rem !important; }
  .mb-md-3 {
    margin-bottom: 1rem !important; }
  .mb-md-4 {
C
codecalm 已提交
6377
    margin-bottom: 2rem !important; }
C
codecalm 已提交
6378
  .mb-md-5 {
C
codecalm 已提交
6379
    margin-bottom: 4rem !important; }
C
codecalm 已提交
6380 6381
  .mb-md-auto {
    margin-bottom: auto !important; }
C
codecalm 已提交
6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395
  .ms-md-0 {
    margin-left: 0 !important; }
  .ms-md-1 {
    margin-left: 0.25rem !important; }
  .ms-md-2 {
    margin-left: 0.5rem !important; }
  .ms-md-3 {
    margin-left: 1rem !important; }
  .ms-md-4 {
    margin-left: 2rem !important; }
  .ms-md-5 {
    margin-left: 4rem !important; }
  .ms-md-auto {
    margin-left: auto !important; }
C
codecalm 已提交
6396 6397 6398 6399 6400 6401 6402 6403 6404
  .p-md-0 {
    padding: 0 !important; }
  .p-md-1 {
    padding: 0.25rem !important; }
  .p-md-2 {
    padding: 0.5rem !important; }
  .p-md-3 {
    padding: 1rem !important; }
  .p-md-4 {
C
codecalm 已提交
6405
    padding: 2rem !important; }
C
codecalm 已提交
6406
  .p-md-5 {
C
codecalm 已提交
6407
    padding: 4rem !important; }
C
codecalm 已提交
6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important; }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important; }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important; }
  .px-md-4 {
C
codecalm 已提交
6421 6422
    padding-right: 2rem !important;
    padding-left: 2rem !important; }
C
codecalm 已提交
6423
  .px-md-5 {
C
codecalm 已提交
6424 6425
    padding-right: 4rem !important;
    padding-left: 4rem !important; }
C
codecalm 已提交
6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important; }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important; }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important; }
  .py-md-4 {
C
codecalm 已提交
6439 6440
    padding-top: 2rem !important;
    padding-bottom: 2rem !important; }
C
codecalm 已提交
6441
  .py-md-5 {
C
codecalm 已提交
6442 6443
    padding-top: 4rem !important;
    padding-bottom: 4rem !important; }
C
codecalm 已提交
6444 6445 6446 6447 6448 6449 6450 6451 6452
  .pt-md-0 {
    padding-top: 0 !important; }
  .pt-md-1 {
    padding-top: 0.25rem !important; }
  .pt-md-2 {
    padding-top: 0.5rem !important; }
  .pt-md-3 {
    padding-top: 1rem !important; }
  .pt-md-4 {
C
codecalm 已提交
6453
    padding-top: 2rem !important; }
C
codecalm 已提交
6454
  .pt-md-5 {
C
codecalm 已提交
6455
    padding-top: 4rem !important; }
C
codecalm 已提交
6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491
  .pe-md-0 {
    padding-right: 0 !important; }
  .pe-md-1 {
    padding-right: 0.25rem !important; }
  .pe-md-2 {
    padding-right: 0.5rem !important; }
  .pe-md-3 {
    padding-right: 1rem !important; }
  .pe-md-4 {
    padding-right: 2rem !important; }
  .pe-md-5 {
    padding-right: 4rem !important; }
  .pb-md-0 {
    padding-bottom: 0 !important; }
  .pb-md-1 {
    padding-bottom: 0.25rem !important; }
  .pb-md-2 {
    padding-bottom: 0.5rem !important; }
  .pb-md-3 {
    padding-bottom: 1rem !important; }
  .pb-md-4 {
    padding-bottom: 2rem !important; }
  .pb-md-5 {
    padding-bottom: 4rem !important; }
  .ps-md-0 {
    padding-left: 0 !important; }
  .ps-md-1 {
    padding-left: 0.25rem !important; }
  .ps-md-2 {
    padding-left: 0.5rem !important; }
  .ps-md-3 {
    padding-left: 1rem !important; }
  .ps-md-4 {
    padding-left: 2rem !important; }
  .ps-md-5 {
    padding-left: 4rem !important; }
C
codecalm 已提交
6492
  .text-md-start {
C
codecalm 已提交
6493
    text-align: left !important; }
C
codecalm 已提交
6494
  .text-md-end {
C
codecalm 已提交
6495
    text-align: right !important; }
C
codecalm 已提交
6496
  .text-md-center {
C
codecalm 已提交
6497 6498 6499 6500 6501 6502 6503 6504 6505 6506
    text-align: center !important; }
  .columns-md-2 {
    -moz-columns: 2 !important;
         columns: 2 !important; }
  .columns-md-3 {
    -moz-columns: 3 !important;
         columns: 3 !important; }
  .columns-md-4 {
    -moz-columns: 4 !important;
         columns: 4 !important; } }
C
codecalm 已提交
6507

C
codecalm 已提交
6508
@media (min-width: 992px) {
C
codecalm 已提交
6509
  .float-lg-start {
C
codecalm 已提交
6510
    float: left !important; }
C
codecalm 已提交
6511
  .float-lg-end {
C
codecalm 已提交
6512
    float: right !important; }
C
codecalm 已提交
6513 6514 6515 6516 6517 6518 6519 6520
  .float-lg-none {
    float: none !important; }
  .d-lg-inline {
    display: inline !important; }
  .d-lg-inline-block {
    display: inline-block !important; }
  .d-lg-block {
    display: block !important; }
C
codecalm 已提交
6521 6522
  .d-lg-grid {
    display: grid !important; }
C
codecalm 已提交
6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558
  .d-lg-table {
    display: table !important; }
  .d-lg-table-row {
    display: table-row !important; }
  .d-lg-table-cell {
    display: table-cell !important; }
  .d-lg-flex {
    display: flex !important; }
  .d-lg-inline-flex {
    display: inline-flex !important; }
  .d-lg-none {
    display: none !important; }
  .flex-lg-fill {
    flex: 1 1 auto !important; }
  .flex-lg-row {
    flex-direction: row !important; }
  .flex-lg-column {
    flex-direction: column !important; }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-lg-grow-0 {
    flex-grow: 0 !important; }
  .flex-lg-grow-1 {
    flex-grow: 1 !important; }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important; }
  .flex-lg-wrap {
    flex-wrap: wrap !important; }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important; }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
C
codecalm 已提交
6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570
  .gap-lg-0 {
    gap: 0 !important; }
  .gap-lg-1 {
    gap: 0.25rem !important; }
  .gap-lg-2 {
    gap: 0.5rem !important; }
  .gap-lg-3 {
    gap: 1rem !important; }
  .gap-lg-4 {
    gap: 2rem !important; }
  .gap-lg-5 {
    gap: 4rem !important; }
C
codecalm 已提交
6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641
  .justify-content-lg-start {
    justify-content: flex-start !important; }
  .justify-content-lg-end {
    justify-content: flex-end !important; }
  .justify-content-lg-center {
    justify-content: center !important; }
  .justify-content-lg-between {
    justify-content: space-between !important; }
  .justify-content-lg-around {
    justify-content: space-around !important; }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important; }
  .align-items-lg-start {
    align-items: flex-start !important; }
  .align-items-lg-end {
    align-items: flex-end !important; }
  .align-items-lg-center {
    align-items: center !important; }
  .align-items-lg-baseline {
    align-items: baseline !important; }
  .align-items-lg-stretch {
    align-items: stretch !important; }
  .align-content-lg-start {
    align-content: flex-start !important; }
  .align-content-lg-end {
    align-content: flex-end !important; }
  .align-content-lg-center {
    align-content: center !important; }
  .align-content-lg-between {
    align-content: space-between !important; }
  .align-content-lg-around {
    align-content: space-around !important; }
  .align-content-lg-stretch {
    align-content: stretch !important; }
  .align-self-lg-auto {
    align-self: auto !important; }
  .align-self-lg-start {
    align-self: flex-start !important; }
  .align-self-lg-end {
    align-self: flex-end !important; }
  .align-self-lg-center {
    align-self: center !important; }
  .align-self-lg-baseline {
    align-self: baseline !important; }
  .align-self-lg-stretch {
    align-self: stretch !important; }
  .order-lg-first {
    order: -1 !important; }
  .order-lg-0 {
    order: 0 !important; }
  .order-lg-1 {
    order: 1 !important; }
  .order-lg-2 {
    order: 2 !important; }
  .order-lg-3 {
    order: 3 !important; }
  .order-lg-4 {
    order: 4 !important; }
  .order-lg-5 {
    order: 5 !important; }
  .order-lg-last {
    order: 6 !important; }
  .m-lg-0 {
    margin: 0 !important; }
  .m-lg-1 {
    margin: 0.25rem !important; }
  .m-lg-2 {
    margin: 0.5rem !important; }
  .m-lg-3 {
    margin: 1rem !important; }
  .m-lg-4 {
C
codecalm 已提交
6642
    margin: 2rem !important; }
C
codecalm 已提交
6643
  .m-lg-5 {
C
codecalm 已提交
6644
    margin: 4rem !important; }
C
codecalm 已提交
6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659
  .m-lg-auto {
    margin: auto !important; }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important; }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important; }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important; }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important; }
  .mx-lg-4 {
C
codecalm 已提交
6660 6661
    margin-right: 2rem !important;
    margin-left: 2rem !important; }
C
codecalm 已提交
6662
  .mx-lg-5 {
C
codecalm 已提交
6663 6664
    margin-right: 4rem !important;
    margin-left: 4rem !important; }
C
codecalm 已提交
6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important; }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important; }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important; }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important; }
  .my-lg-4 {
C
codecalm 已提交
6681 6682
    margin-top: 2rem !important;
    margin-bottom: 2rem !important; }
C
codecalm 已提交
6683
  .my-lg-5 {
C
codecalm 已提交
6684 6685
    margin-top: 4rem !important;
    margin-bottom: 4rem !important; }
C
codecalm 已提交
6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important; }
  .mt-lg-0 {
    margin-top: 0 !important; }
  .mt-lg-1 {
    margin-top: 0.25rem !important; }
  .mt-lg-2 {
    margin-top: 0.5rem !important; }
  .mt-lg-3 {
    margin-top: 1rem !important; }
  .mt-lg-4 {
C
codecalm 已提交
6698
    margin-top: 2rem !important; }
C
codecalm 已提交
6699
  .mt-lg-5 {
C
codecalm 已提交
6700
    margin-top: 4rem !important; }
C
codecalm 已提交
6701 6702
  .mt-lg-auto {
    margin-top: auto !important; }
C
codecalm 已提交
6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716
  .me-lg-0 {
    margin-right: 0 !important; }
  .me-lg-1 {
    margin-right: 0.25rem !important; }
  .me-lg-2 {
    margin-right: 0.5rem !important; }
  .me-lg-3 {
    margin-right: 1rem !important; }
  .me-lg-4 {
    margin-right: 2rem !important; }
  .me-lg-5 {
    margin-right: 4rem !important; }
  .me-lg-auto {
    margin-right: auto !important; }
C
codecalm 已提交
6717 6718 6719 6720 6721 6722 6723 6724 6725
  .mb-lg-0 {
    margin-bottom: 0 !important; }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important; }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important; }
  .mb-lg-3 {
    margin-bottom: 1rem !important; }
  .mb-lg-4 {
C
codecalm 已提交
6726
    margin-bottom: 2rem !important; }
C
codecalm 已提交
6727
  .mb-lg-5 {
C
codecalm 已提交
6728
    margin-bottom: 4rem !important; }
C
codecalm 已提交
6729 6730
  .mb-lg-auto {
    margin-bottom: auto !important; }
C
codecalm 已提交
6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744
  .ms-lg-0 {
    margin-left: 0 !important; }
  .ms-lg-1 {
    margin-left: 0.25rem !important; }
  .ms-lg-2 {
    margin-left: 0.5rem !important; }
  .ms-lg-3 {
    margin-left: 1rem !important; }
  .ms-lg-4 {
    margin-left: 2rem !important; }
  .ms-lg-5 {
    margin-left: 4rem !important; }
  .ms-lg-auto {
    margin-left: auto !important; }
C
codecalm 已提交
6745 6746 6747 6748 6749 6750 6751 6752 6753
  .p-lg-0 {
    padding: 0 !important; }
  .p-lg-1 {
    padding: 0.25rem !important; }
  .p-lg-2 {
    padding: 0.5rem !important; }
  .p-lg-3 {
    padding: 1rem !important; }
  .p-lg-4 {
C
codecalm 已提交
6754
    padding: 2rem !important; }
C
codecalm 已提交
6755
  .p-lg-5 {
C
codecalm 已提交
6756
    padding: 4rem !important; }
C
codecalm 已提交
6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important; }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important; }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important; }
  .px-lg-4 {
C
codecalm 已提交
6770 6771
    padding-right: 2rem !important;
    padding-left: 2rem !important; }
C
codecalm 已提交
6772
  .px-lg-5 {
C
codecalm 已提交
6773 6774
    padding-right: 4rem !important;
    padding-left: 4rem !important; }
C
codecalm 已提交
6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important; }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important; }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important; }
  .py-lg-4 {
C
codecalm 已提交
6788 6789
    padding-top: 2rem !important;
    padding-bottom: 2rem !important; }
C
codecalm 已提交
6790
  .py-lg-5 {
C
codecalm 已提交
6791 6792
    padding-top: 4rem !important;
    padding-bottom: 4rem !important; }
C
codecalm 已提交
6793 6794 6795 6796 6797 6798 6799 6800 6801
  .pt-lg-0 {
    padding-top: 0 !important; }
  .pt-lg-1 {
    padding-top: 0.25rem !important; }
  .pt-lg-2 {
    padding-top: 0.5rem !important; }
  .pt-lg-3 {
    padding-top: 1rem !important; }
  .pt-lg-4 {
C
codecalm 已提交
6802
    padding-top: 2rem !important; }
C
codecalm 已提交
6803
  .pt-lg-5 {
C
codecalm 已提交
6804
    padding-top: 4rem !important; }
C
codecalm 已提交
6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840
  .pe-lg-0 {
    padding-right: 0 !important; }
  .pe-lg-1 {
    padding-right: 0.25rem !important; }
  .pe-lg-2 {
    padding-right: 0.5rem !important; }
  .pe-lg-3 {
    padding-right: 1rem !important; }
  .pe-lg-4 {
    padding-right: 2rem !important; }
  .pe-lg-5 {
    padding-right: 4rem !important; }
  .pb-lg-0 {
    padding-bottom: 0 !important; }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important; }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important; }
  .pb-lg-3 {
    padding-bottom: 1rem !important; }
  .pb-lg-4 {
    padding-bottom: 2rem !important; }
  .pb-lg-5 {
    padding-bottom: 4rem !important; }
  .ps-lg-0 {
    padding-left: 0 !important; }
  .ps-lg-1 {
    padding-left: 0.25rem !important; }
  .ps-lg-2 {
    padding-left: 0.5rem !important; }
  .ps-lg-3 {
    padding-left: 1rem !important; }
  .ps-lg-4 {
    padding-left: 2rem !important; }
  .ps-lg-5 {
    padding-left: 4rem !important; }
C
codecalm 已提交
6841
  .text-lg-start {
C
codecalm 已提交
6842
    text-align: left !important; }
C
codecalm 已提交
6843
  .text-lg-end {
C
codecalm 已提交
6844
    text-align: right !important; }
C
codecalm 已提交
6845
  .text-lg-center {
C
codecalm 已提交
6846 6847 6848 6849 6850 6851 6852 6853 6854 6855
    text-align: center !important; }
  .columns-lg-2 {
    -moz-columns: 2 !important;
         columns: 2 !important; }
  .columns-lg-3 {
    -moz-columns: 3 !important;
         columns: 3 !important; }
  .columns-lg-4 {
    -moz-columns: 4 !important;
         columns: 4 !important; } }
C
codecalm 已提交
6856

C
codecalm 已提交
6857
@media (min-width: 1200px) {
C
codecalm 已提交
6858
  .float-xl-start {
C
codecalm 已提交
6859
    float: left !important; }
C
codecalm 已提交
6860
  .float-xl-end {
C
codecalm 已提交
6861
    float: right !important; }
C
codecalm 已提交
6862 6863 6864 6865 6866 6867 6868 6869
  .float-xl-none {
    float: none !important; }
  .d-xl-inline {
    display: inline !important; }
  .d-xl-inline-block {
    display: inline-block !important; }
  .d-xl-block {
    display: block !important; }
C
codecalm 已提交
6870 6871
  .d-xl-grid {
    display: grid !important; }
C
codecalm 已提交
6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907
  .d-xl-table {
    display: table !important; }
  .d-xl-table-row {
    display: table-row !important; }
  .d-xl-table-cell {
    display: table-cell !important; }
  .d-xl-flex {
    display: flex !important; }
  .d-xl-inline-flex {
    display: inline-flex !important; }
  .d-xl-none {
    display: none !important; }
  .flex-xl-fill {
    flex: 1 1 auto !important; }
  .flex-xl-row {
    flex-direction: row !important; }
  .flex-xl-column {
    flex-direction: column !important; }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-xl-grow-0 {
    flex-grow: 0 !important; }
  .flex-xl-grow-1 {
    flex-grow: 1 !important; }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important; }
  .flex-xl-wrap {
    flex-wrap: wrap !important; }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important; }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
C
codecalm 已提交
6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919
  .gap-xl-0 {
    gap: 0 !important; }
  .gap-xl-1 {
    gap: 0.25rem !important; }
  .gap-xl-2 {
    gap: 0.5rem !important; }
  .gap-xl-3 {
    gap: 1rem !important; }
  .gap-xl-4 {
    gap: 2rem !important; }
  .gap-xl-5 {
    gap: 4rem !important; }
C
codecalm 已提交
6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990
  .justify-content-xl-start {
    justify-content: flex-start !important; }
  .justify-content-xl-end {
    justify-content: flex-end !important; }
  .justify-content-xl-center {
    justify-content: center !important; }
  .justify-content-xl-between {
    justify-content: space-between !important; }
  .justify-content-xl-around {
    justify-content: space-around !important; }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important; }
  .align-items-xl-start {
    align-items: flex-start !important; }
  .align-items-xl-end {
    align-items: flex-end !important; }
  .align-items-xl-center {
    align-items: center !important; }
  .align-items-xl-baseline {
    align-items: baseline !important; }
  .align-items-xl-stretch {
    align-items: stretch !important; }
  .align-content-xl-start {
    align-content: flex-start !important; }
  .align-content-xl-end {
    align-content: flex-end !important; }
  .align-content-xl-center {
    align-content: center !important; }
  .align-content-xl-between {
    align-content: space-between !important; }
  .align-content-xl-around {
    align-content: space-around !important; }
  .align-content-xl-stretch {
    align-content: stretch !important; }
  .align-self-xl-auto {
    align-self: auto !important; }
  .align-self-xl-start {
    align-self: flex-start !important; }
  .align-self-xl-end {
    align-self: flex-end !important; }
  .align-self-xl-center {
    align-self: center !important; }
  .align-self-xl-baseline {
    align-self: baseline !important; }
  .align-self-xl-stretch {
    align-self: stretch !important; }
  .order-xl-first {
    order: -1 !important; }
  .order-xl-0 {
    order: 0 !important; }
  .order-xl-1 {
    order: 1 !important; }
  .order-xl-2 {
    order: 2 !important; }
  .order-xl-3 {
    order: 3 !important; }
  .order-xl-4 {
    order: 4 !important; }
  .order-xl-5 {
    order: 5 !important; }
  .order-xl-last {
    order: 6 !important; }
  .m-xl-0 {
    margin: 0 !important; }
  .m-xl-1 {
    margin: 0.25rem !important; }
  .m-xl-2 {
    margin: 0.5rem !important; }
  .m-xl-3 {
    margin: 1rem !important; }
  .m-xl-4 {
C
codecalm 已提交
6991
    margin: 2rem !important; }
C
codecalm 已提交
6992
  .m-xl-5 {
C
codecalm 已提交
6993
    margin: 4rem !important; }
C
codecalm 已提交
6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008
  .m-xl-auto {
    margin: auto !important; }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important; }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important; }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important; }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important; }
  .mx-xl-4 {
C
codecalm 已提交
7009 7010
    margin-right: 2rem !important;
    margin-left: 2rem !important; }
C
codecalm 已提交
7011
  .mx-xl-5 {
C
codecalm 已提交
7012 7013
    margin-right: 4rem !important;
    margin-left: 4rem !important; }
C
codecalm 已提交
7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important; }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important; }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important; }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important; }
  .my-xl-4 {
C
codecalm 已提交
7030 7031
    margin-top: 2rem !important;
    margin-bottom: 2rem !important; }
C
codecalm 已提交
7032
  .my-xl-5 {
C
codecalm 已提交
7033 7034
    margin-top: 4rem !important;
    margin-bottom: 4rem !important; }
C
codecalm 已提交
7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important; }
  .mt-xl-0 {
    margin-top: 0 !important; }
  .mt-xl-1 {
    margin-top: 0.25rem !important; }
  .mt-xl-2 {
    margin-top: 0.5rem !important; }
  .mt-xl-3 {
    margin-top: 1rem !important; }
  .mt-xl-4 {
C
codecalm 已提交
7047
    margin-top: 2rem !important; }
C
codecalm 已提交
7048
  .mt-xl-5 {
C
codecalm 已提交
7049
    margin-top: 4rem !important; }
C
codecalm 已提交
7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093
  .mt-xl-auto {
    margin-top: auto !important; }
  .me-xl-0 {
    margin-right: 0 !important; }
  .me-xl-1 {
    margin-right: 0.25rem !important; }
  .me-xl-2 {
    margin-right: 0.5rem !important; }
  .me-xl-3 {
    margin-right: 1rem !important; }
  .me-xl-4 {
    margin-right: 2rem !important; }
  .me-xl-5 {
    margin-right: 4rem !important; }
  .me-xl-auto {
    margin-right: auto !important; }
  .mb-xl-0 {
    margin-bottom: 0 !important; }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important; }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important; }
  .mb-xl-3 {
    margin-bottom: 1rem !important; }
  .mb-xl-4 {
    margin-bottom: 2rem !important; }
  .mb-xl-5 {
    margin-bottom: 4rem !important; }
  .mb-xl-auto {
    margin-bottom: auto !important; }
  .ms-xl-0 {
    margin-left: 0 !important; }
  .ms-xl-1 {
    margin-left: 0.25rem !important; }
  .ms-xl-2 {
    margin-left: 0.5rem !important; }
  .ms-xl-3 {
    margin-left: 1rem !important; }
  .ms-xl-4 {
    margin-left: 2rem !important; }
  .ms-xl-5 {
    margin-left: 4rem !important; }
  .ms-xl-auto {
    margin-left: auto !important; }
C
codecalm 已提交
7094 7095 7096 7097 7098 7099 7100 7101 7102
  .p-xl-0 {
    padding: 0 !important; }
  .p-xl-1 {
    padding: 0.25rem !important; }
  .p-xl-2 {
    padding: 0.5rem !important; }
  .p-xl-3 {
    padding: 1rem !important; }
  .p-xl-4 {
C
codecalm 已提交
7103
    padding: 2rem !important; }
C
codecalm 已提交
7104
  .p-xl-5 {
C
codecalm 已提交
7105
    padding: 4rem !important; }
C
codecalm 已提交
7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important; }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important; }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important; }
  .px-xl-4 {
C
codecalm 已提交
7119 7120
    padding-right: 2rem !important;
    padding-left: 2rem !important; }
C
codecalm 已提交
7121
  .px-xl-5 {
C
codecalm 已提交
7122 7123
    padding-right: 4rem !important;
    padding-left: 4rem !important; }
C
codecalm 已提交
7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important; }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important; }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important; }
  .py-xl-4 {
C
codecalm 已提交
7137 7138
    padding-top: 2rem !important;
    padding-bottom: 2rem !important; }
C
codecalm 已提交
7139
  .py-xl-5 {
C
codecalm 已提交
7140 7141
    padding-top: 4rem !important;
    padding-bottom: 4rem !important; }
C
codecalm 已提交
7142 7143 7144 7145 7146 7147 7148 7149 7150
  .pt-xl-0 {
    padding-top: 0 !important; }
  .pt-xl-1 {
    padding-top: 0.25rem !important; }
  .pt-xl-2 {
    padding-top: 0.5rem !important; }
  .pt-xl-3 {
    padding-top: 1rem !important; }
  .pt-xl-4 {
C
codecalm 已提交
7151
    padding-top: 2rem !important; }
C
codecalm 已提交
7152
  .pt-xl-5 {
C
codecalm 已提交
7153
    padding-top: 4rem !important; }
C
codecalm 已提交
7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189
  .pe-xl-0 {
    padding-right: 0 !important; }
  .pe-xl-1 {
    padding-right: 0.25rem !important; }
  .pe-xl-2 {
    padding-right: 0.5rem !important; }
  .pe-xl-3 {
    padding-right: 1rem !important; }
  .pe-xl-4 {
    padding-right: 2rem !important; }
  .pe-xl-5 {
    padding-right: 4rem !important; }
  .pb-xl-0 {
    padding-bottom: 0 !important; }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important; }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important; }
  .pb-xl-3 {
    padding-bottom: 1rem !important; }
  .pb-xl-4 {
    padding-bottom: 2rem !important; }
  .pb-xl-5 {
    padding-bottom: 4rem !important; }
  .ps-xl-0 {
    padding-left: 0 !important; }
  .ps-xl-1 {
    padding-left: 0.25rem !important; }
  .ps-xl-2 {
    padding-left: 0.5rem !important; }
  .ps-xl-3 {
    padding-left: 1rem !important; }
  .ps-xl-4 {
    padding-left: 2rem !important; }
  .ps-xl-5 {
    padding-left: 4rem !important; }
C
codecalm 已提交
7190
  .text-xl-start {
C
codecalm 已提交
7191
    text-align: left !important; }
C
codecalm 已提交
7192
  .text-xl-end {
C
codecalm 已提交
7193
    text-align: right !important; }
C
codecalm 已提交
7194
  .text-xl-center {
C
codecalm 已提交
7195 7196 7197 7198 7199 7200 7201 7202 7203 7204
    text-align: center !important; }
  .columns-xl-2 {
    -moz-columns: 2 !important;
         columns: 2 !important; }
  .columns-xl-3 {
    -moz-columns: 3 !important;
         columns: 3 !important; }
  .columns-xl-4 {
    -moz-columns: 4 !important;
         columns: 4 !important; } }
C
codecalm 已提交
7205

C
codecalm 已提交
7206
@media (min-width: 1400px) {
C
codecalm 已提交
7207
  .float-xxl-start {
C
codecalm 已提交
7208
    float: left !important; }
C
codecalm 已提交
7209
  .float-xxl-end {
C
codecalm 已提交
7210
    float: right !important; }
C
codecalm 已提交
7211 7212 7213 7214 7215 7216 7217 7218
  .float-xxl-none {
    float: none !important; }
  .d-xxl-inline {
    display: inline !important; }
  .d-xxl-inline-block {
    display: inline-block !important; }
  .d-xxl-block {
    display: block !important; }
C
codecalm 已提交
7219 7220
  .d-xxl-grid {
    display: grid !important; }
C
codecalm 已提交
7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256
  .d-xxl-table {
    display: table !important; }
  .d-xxl-table-row {
    display: table-row !important; }
  .d-xxl-table-cell {
    display: table-cell !important; }
  .d-xxl-flex {
    display: flex !important; }
  .d-xxl-inline-flex {
    display: inline-flex !important; }
  .d-xxl-none {
    display: none !important; }
  .flex-xxl-fill {
    flex: 1 1 auto !important; }
  .flex-xxl-row {
    flex-direction: row !important; }
  .flex-xxl-column {
    flex-direction: column !important; }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important; }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important; }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important; }
  .flex-xxl-wrap {
    flex-wrap: wrap !important; }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important; }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
C
codecalm 已提交
7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268
  .gap-xxl-0 {
    gap: 0 !important; }
  .gap-xxl-1 {
    gap: 0.25rem !important; }
  .gap-xxl-2 {
    gap: 0.5rem !important; }
  .gap-xxl-3 {
    gap: 1rem !important; }
  .gap-xxl-4 {
    gap: 2rem !important; }
  .gap-xxl-5 {
    gap: 4rem !important; }
C
codecalm 已提交
7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339
  .justify-content-xxl-start {
    justify-content: flex-start !important; }
  .justify-content-xxl-end {
    justify-content: flex-end !important; }
  .justify-content-xxl-center {
    justify-content: center !important; }
  .justify-content-xxl-between {
    justify-content: space-between !important; }
  .justify-content-xxl-around {
    justify-content: space-around !important; }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important; }
  .align-items-xxl-start {
    align-items: flex-start !important; }
  .align-items-xxl-end {
    align-items: flex-end !important; }
  .align-items-xxl-center {
    align-items: center !important; }
  .align-items-xxl-baseline {
    align-items: baseline !important; }
  .align-items-xxl-stretch {
    align-items: stretch !important; }
  .align-content-xxl-start {
    align-content: flex-start !important; }
  .align-content-xxl-end {
    align-content: flex-end !important; }
  .align-content-xxl-center {
    align-content: center !important; }
  .align-content-xxl-between {
    align-content: space-between !important; }
  .align-content-xxl-around {
    align-content: space-around !important; }
  .align-content-xxl-stretch {
    align-content: stretch !important; }
  .align-self-xxl-auto {
    align-self: auto !important; }
  .align-self-xxl-start {
    align-self: flex-start !important; }
  .align-self-xxl-end {
    align-self: flex-end !important; }
  .align-self-xxl-center {
    align-self: center !important; }
  .align-self-xxl-baseline {
    align-self: baseline !important; }
  .align-self-xxl-stretch {
    align-self: stretch !important; }
  .order-xxl-first {
    order: -1 !important; }
  .order-xxl-0 {
    order: 0 !important; }
  .order-xxl-1 {
    order: 1 !important; }
  .order-xxl-2 {
    order: 2 !important; }
  .order-xxl-3 {
    order: 3 !important; }
  .order-xxl-4 {
    order: 4 !important; }
  .order-xxl-5 {
    order: 5 !important; }
  .order-xxl-last {
    order: 6 !important; }
  .m-xxl-0 {
    margin: 0 !important; }
  .m-xxl-1 {
    margin: 0.25rem !important; }
  .m-xxl-2 {
    margin: 0.5rem !important; }
  .m-xxl-3 {
    margin: 1rem !important; }
  .m-xxl-4 {
C
codecalm 已提交
7340
    margin: 2rem !important; }
C
codecalm 已提交
7341
  .m-xxl-5 {
C
codecalm 已提交
7342
    margin: 4rem !important; }
C
codecalm 已提交
7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357
  .m-xxl-auto {
    margin: auto !important; }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important; }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important; }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important; }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important; }
  .mx-xxl-4 {
C
codecalm 已提交
7358 7359
    margin-right: 2rem !important;
    margin-left: 2rem !important; }
C
codecalm 已提交
7360
  .mx-xxl-5 {
C
codecalm 已提交
7361 7362
    margin-right: 4rem !important;
    margin-left: 4rem !important; }
C
codecalm 已提交
7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important; }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important; }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important; }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important; }
  .my-xxl-4 {
C
codecalm 已提交
7379 7380
    margin-top: 2rem !important;
    margin-bottom: 2rem !important; }
C
codecalm 已提交
7381
  .my-xxl-5 {
C
codecalm 已提交
7382 7383
    margin-top: 4rem !important;
    margin-bottom: 4rem !important; }
C
codecalm 已提交
7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important; }
  .mt-xxl-0 {
    margin-top: 0 !important; }
  .mt-xxl-1 {
    margin-top: 0.25rem !important; }
  .mt-xxl-2 {
    margin-top: 0.5rem !important; }
  .mt-xxl-3 {
    margin-top: 1rem !important; }
  .mt-xxl-4 {
C
codecalm 已提交
7396
    margin-top: 2rem !important; }
C
codecalm 已提交
7397
  .mt-xxl-5 {
C
codecalm 已提交
7398
    margin-top: 4rem !important; }
C
codecalm 已提交
7399 7400
  .mt-xxl-auto {
    margin-top: auto !important; }
C
codecalm 已提交
7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414
  .me-xxl-0 {
    margin-right: 0 !important; }
  .me-xxl-1 {
    margin-right: 0.25rem !important; }
  .me-xxl-2 {
    margin-right: 0.5rem !important; }
  .me-xxl-3 {
    margin-right: 1rem !important; }
  .me-xxl-4 {
    margin-right: 2rem !important; }
  .me-xxl-5 {
    margin-right: 4rem !important; }
  .me-xxl-auto {
    margin-right: auto !important; }
C
codecalm 已提交
7415 7416 7417 7418 7419 7420 7421 7422 7423
  .mb-xxl-0 {
    margin-bottom: 0 !important; }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important; }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important; }
  .mb-xxl-3 {
    margin-bottom: 1rem !important; }
  .mb-xxl-4 {
C
codecalm 已提交
7424
    margin-bottom: 2rem !important; }
C
codecalm 已提交
7425
  .mb-xxl-5 {
C
codecalm 已提交
7426
    margin-bottom: 4rem !important; }
C
codecalm 已提交
7427 7428
  .mb-xxl-auto {
    margin-bottom: auto !important; }
C
codecalm 已提交
7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442
  .ms-xxl-0 {
    margin-left: 0 !important; }
  .ms-xxl-1 {
    margin-left: 0.25rem !important; }
  .ms-xxl-2 {
    margin-left: 0.5rem !important; }
  .ms-xxl-3 {
    margin-left: 1rem !important; }
  .ms-xxl-4 {
    margin-left: 2rem !important; }
  .ms-xxl-5 {
    margin-left: 4rem !important; }
  .ms-xxl-auto {
    margin-left: auto !important; }
C
codecalm 已提交
7443 7444 7445 7446 7447 7448 7449 7450 7451
  .p-xxl-0 {
    padding: 0 !important; }
  .p-xxl-1 {
    padding: 0.25rem !important; }
  .p-xxl-2 {
    padding: 0.5rem !important; }
  .p-xxl-3 {
    padding: 1rem !important; }
  .p-xxl-4 {
C
codecalm 已提交
7452
    padding: 2rem !important; }
C
codecalm 已提交
7453
  .p-xxl-5 {
C
codecalm 已提交
7454
    padding: 4rem !important; }
C
codecalm 已提交
7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important; }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important; }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important; }
  .px-xxl-4 {
C
codecalm 已提交
7468 7469
    padding-right: 2rem !important;
    padding-left: 2rem !important; }
C
codecalm 已提交
7470
  .px-xxl-5 {
C
codecalm 已提交
7471 7472
    padding-right: 4rem !important;
    padding-left: 4rem !important; }
C
codecalm 已提交
7473 7474 7475 7476 7477 7478 7479 7480 7481 7482 7483 7484 7485
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important; }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important; }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important; }
  .py-xxl-4 {
C
codecalm 已提交
7486 7487
    padding-top: 2rem !important;
    padding-bottom: 2rem !important; }
C
codecalm 已提交
7488
  .py-xxl-5 {
C
codecalm 已提交
7489 7490
    padding-top: 4rem !important;
    padding-bottom: 4rem !important; }
C
codecalm 已提交
7491 7492 7493 7494 7495 7496 7497 7498 7499
  .pt-xxl-0 {
    padding-top: 0 !important; }
  .pt-xxl-1 {
    padding-top: 0.25rem !important; }
  .pt-xxl-2 {
    padding-top: 0.5rem !important; }
  .pt-xxl-3 {
    padding-top: 1rem !important; }
  .pt-xxl-4 {
C
codecalm 已提交
7500
    padding-top: 2rem !important; }
C
codecalm 已提交
7501
  .pt-xxl-5 {
C
codecalm 已提交
7502
    padding-top: 4rem !important; }
C
codecalm 已提交
7503 7504 7505 7506 7507 7508 7509 7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538
  .pe-xxl-0 {
    padding-right: 0 !important; }
  .pe-xxl-1 {
    padding-right: 0.25rem !important; }
  .pe-xxl-2 {
    padding-right: 0.5rem !important; }
  .pe-xxl-3 {
    padding-right: 1rem !important; }
  .pe-xxl-4 {
    padding-right: 2rem !important; }
  .pe-xxl-5 {
    padding-right: 4rem !important; }
  .pb-xxl-0 {
    padding-bottom: 0 !important; }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important; }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important; }
  .pb-xxl-3 {
    padding-bottom: 1rem !important; }
  .pb-xxl-4 {
    padding-bottom: 2rem !important; }
  .pb-xxl-5 {
    padding-bottom: 4rem !important; }
  .ps-xxl-0 {
    padding-left: 0 !important; }
  .ps-xxl-1 {
    padding-left: 0.25rem !important; }
  .ps-xxl-2 {
    padding-left: 0.5rem !important; }
  .ps-xxl-3 {
    padding-left: 1rem !important; }
  .ps-xxl-4 {
    padding-left: 2rem !important; }
  .ps-xxl-5 {
    padding-left: 4rem !important; }
C
codecalm 已提交
7539
  .text-xxl-start {
C
codecalm 已提交
7540
    text-align: left !important; }
C
codecalm 已提交
7541
  .text-xxl-end {
C
codecalm 已提交
7542
    text-align: right !important; }
C
codecalm 已提交
7543
  .text-xxl-center {
C
codecalm 已提交
7544 7545 7546 7547 7548 7549 7550 7551 7552 7553
    text-align: center !important; }
  .columns-xxl-2 {
    -moz-columns: 2 !important;
         columns: 2 !important; }
  .columns-xxl-3 {
    -moz-columns: 3 !important;
         columns: 3 !important; }
  .columns-xxl-4 {
    -moz-columns: 4 !important;
         columns: 4 !important; } }
C
codecalm 已提交
7554

C
codecalm 已提交
7555 7556 7557 7558 7559 7560 7561
@media print {
  .d-print-inline {
    display: inline !important; }
  .d-print-inline-block {
    display: inline-block !important; }
  .d-print-block {
    display: block !important; }
C
codecalm 已提交
7562 7563
  .d-print-grid {
    display: grid !important; }
C
codecalm 已提交
7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578
  .d-print-table {
    display: table !important; }
  .d-print-table-row {
    display: table-row !important; }
  .d-print-table-cell {
    display: table-cell !important; }
  .d-print-flex {
    display: flex !important; }
  .d-print-inline-flex {
    display: inline-flex !important; }
  .d-print-none {
    display: none !important; } }

html {
  font-size: 16px;
C
codecalm 已提交
7579 7580
  scroll-behavior: smooth;
  height: 100%; }
C
codecalm 已提交
7581 7582 7583 7584 7585 7586 7587

body {
  overflow-y: scroll;
  letter-spacing: 0;
  touch-action: manipulation;
  text-rendering: optimizeLegibility;
  font-feature-settings: "liga" 0;
C
codecalm 已提交
7588 7589
  position: relative;
  min-height: 100%; }
C
codecalm 已提交
7590
  body *::-webkit-scrollbar {
C
codecalm 已提交
7591 7592 7593 7594
    width: 6px;
    height: 6px;
    -webkit-transition: .3s background;
    transition: .3s background; }
C
codecalm 已提交
7595
  body *::-webkit-scrollbar-thumb {
C
codecalm 已提交
7596
    border-radius: 5px;
C
codecalm 已提交
7597
    background: #a0a6ae; }
C
codecalm 已提交
7598
  body *::-webkit-scrollbar-track {
C
codecalm 已提交
7599
    background: #e7eaef; }
C
codecalm 已提交
7600
  body *::-webkit-scrollbar-corner {
C
codecalm 已提交
7601
    background: transparent; }
C
codecalm 已提交
7602
  body *:hover::-webkit-scrollbar-thumb {
C
codecalm 已提交
7603
    background: #a0a6ae; }
C
codecalm 已提交
7604 7605 7606 7607 7608 7609 7610 7611 7612 7613 7614
  @media print {
    body {
      background: transparent; } }

/**
Navbar
 */
.navbar {
  align-items: stretch;
  min-height: 3.5rem;
  background: transparent;
C
codecalm 已提交
7615
  color: rgba(35, 46, 60, 0.7); }
C
codecalm 已提交
7616 7617 7618 7619 7620 7621 7622 7623 7624 7625 7626
  .navbar-collapse .navbar {
    flex-grow: 1; }
  .navbar.collapsing {
    min-height: 0; }
  .navbar::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    -webkit-transition: .3s background;
    transition: .3s background; }
  .navbar::-webkit-scrollbar-thumb {
    border-radius: 5px;
C
codecalm 已提交
7627 7628 7629
    background: #a0a6ae; }
  .navbar::-webkit-scrollbar-track {
    background: #e7eaef; }
C
codecalm 已提交
7630 7631 7632
  .navbar::-webkit-scrollbar-corner {
    background: transparent; }
  .navbar:hover::-webkit-scrollbar-thumb {
C
codecalm 已提交
7633
    background: #a0a6ae; }
C
codecalm 已提交
7634
  .navbar .text-muted {
C
codecalm 已提交
7635
    color: rgba(35, 46, 60, 0.7) !important; }
C
codecalm 已提交
7636
  .navbar .navbar-brand {
C
codecalm 已提交
7637
    color: #232e3c; }
C
codecalm 已提交
7638
    .navbar .navbar-brand:hover, .navbar .navbar-brand:focus {
C
codecalm 已提交
7639
      color: #232e3c;
C
codecalm 已提交
7640 7641
      opacity: .8; }
  .navbar .navbar-nav .nav-link {
C
codecalm 已提交
7642
    color: rgba(35, 46, 60, 0.7); }
C
codecalm 已提交
7643
    .navbar .navbar-nav .nav-link:hover, .navbar .navbar-nav .nav-link:focus {
C
codecalm 已提交
7644
      color: #232e3c; }
C
codecalm 已提交
7645
    .navbar .navbar-nav .nav-link.disabled {
C
codecalm 已提交
7646
      color: rgba(35, 46, 60, 0.3); }
C
codecalm 已提交
7647 7648 7649 7650
  .navbar .navbar-nav .show > .nav-link,
  .navbar .navbar-nav .active > .nav-link,
  .navbar .navbar-nav .nav-link.show,
  .navbar .navbar-nav .nav-link.active {
C
codecalm 已提交
7651
    color: #232e3c; }
C
codecalm 已提交
7652
  .navbar .navbar-toggler {
C
codecalm 已提交
7653
    color: #232e3c;
C
codecalm 已提交
7654 7655
    border-color: transparent; }
  .navbar .navbar-text {
C
codecalm 已提交
7656
    color: rgba(35, 46, 60, 0.7); }
C
codecalm 已提交
7657 7658 7659
    .navbar .navbar-text a,
    .navbar .navbar-text a:hover,
    .navbar .navbar-text a:focus {
C
codecalm 已提交
7660
      color: rgba(35, 46, 60, 0.7); }
C
codecalm 已提交
7661 7662
  @media not print {
    .theme-dark .navbar {
C
codecalm 已提交
7663
      background: #232e3c;
C
codecalm 已提交
7664
      color: rgba(255, 255, 255, 0.7); }
C
codecalm 已提交
7665 7666 7667 7668 7669 7670 7671
      .theme-dark .navbar::-webkit-scrollbar {
        width: 6px;
        height: 6px;
        -webkit-transition: .3s background;
        transition: .3s background; }
      .theme-dark .navbar::-webkit-scrollbar-thumb {
        border-radius: 5px;
C
codecalm 已提交
7672 7673 7674
        background: #a0a6ae; }
      .theme-dark .navbar::-webkit-scrollbar-track {
        background: #e7eaef; }
C
codecalm 已提交
7675 7676 7677
      .theme-dark .navbar::-webkit-scrollbar-corner {
        background: transparent; }
      .theme-dark .navbar:hover::-webkit-scrollbar-thumb {
C
codecalm 已提交
7678
        background: #a0a6ae; }
C
codecalm 已提交
7679
      .theme-dark .navbar .text-muted {
C
codecalm 已提交
7680
        color: rgba(255, 255, 255, 0.7) !important; }
C
codecalm 已提交
7681 7682 7683 7684 7685 7686
      .theme-dark .navbar .navbar-brand {
        color: #ffffff; }
        .theme-dark .navbar .navbar-brand:hover, .theme-dark .navbar .navbar-brand:focus {
          color: #ffffff;
          opacity: .8; }
      .theme-dark .navbar .navbar-nav .nav-link {
C
codecalm 已提交
7687
        color: rgba(255, 255, 255, 0.7); }
C
codecalm 已提交
7688 7689 7690 7691 7692 7693 7694 7695 7696 7697 7698 7699 7700
        .theme-dark .navbar .navbar-nav .nav-link:hover, .theme-dark .navbar .navbar-nav .nav-link:focus {
          color: #ffffff; }
        .theme-dark .navbar .navbar-nav .nav-link.disabled {
          color: rgba(255, 255, 255, 0.3); }
      .theme-dark .navbar .navbar-nav .show > .nav-link,
      .theme-dark .navbar .navbar-nav .active > .nav-link,
      .theme-dark .navbar .navbar-nav .nav-link.show,
      .theme-dark .navbar .navbar-nav .nav-link.active {
        color: #ffffff; }
      .theme-dark .navbar .navbar-toggler {
        color: #ffffff;
        border-color: transparent; }
      .theme-dark .navbar .navbar-text {
C
codecalm 已提交
7701
        color: rgba(255, 255, 255, 0.7); }
C
codecalm 已提交
7702 7703 7704
        .theme-dark .navbar .navbar-text a,
        .theme-dark .navbar .navbar-text a:hover,
        .theme-dark .navbar .navbar-text a:focus {
C
codecalm 已提交
7705
          color: rgba(255, 255, 255, 0.7); }
C
codecalm 已提交
7706 7707 7708 7709 7710 7711 7712 7713
      .theme-dark .navbar::-webkit-scrollbar {
        width: 6px;
        height: 6px;
        -webkit-transition: .3s background;
        transition: .3s background; }
      .theme-dark .navbar::-webkit-scrollbar-thumb {
        border-radius: 5px;
        background: transparent; }
C
codecalm 已提交
7714 7715
      .theme-dark .navbar::-webkit-scrollbar-track {
        background: transparent; }
C
codecalm 已提交
7716 7717 7718
      .theme-dark .navbar::-webkit-scrollbar-corner {
        background: transparent; }
      .theme-dark .navbar:hover::-webkit-scrollbar-thumb {
C
codecalm 已提交
7719
        background: #4f5863; }
C
codecalm 已提交
7720
      .theme-dark .navbar .input-icon-addon {
C
codecalm 已提交
7721
        color: rgba(244, 246, 250, 0.64); }
C
codecalm 已提交
7722 7723 7724 7725
      .theme-dark .navbar .form-control {
        border-color: transparent;
        background-color: rgba(0, 0, 0, 0.1); }
        .theme-dark .navbar .form-control::-webkit-input-placeholder {
C
codecalm 已提交
7726
          color: rgba(244, 246, 250, 0.64); }
C
codecalm 已提交
7727
        .theme-dark .navbar .form-control::-moz-placeholder {
C
codecalm 已提交
7728
          color: rgba(244, 246, 250, 0.64); }
C
codecalm 已提交
7729
        .theme-dark .navbar .form-control:-ms-input-placeholder {
C
codecalm 已提交
7730
          color: rgba(244, 246, 250, 0.64); }
C
codecalm 已提交
7731
        .theme-dark .navbar .form-control::-ms-input-placeholder {
C
codecalm 已提交
7732
          color: rgba(244, 246, 250, 0.64); }
C
codecalm 已提交
7733
        .theme-dark .navbar .form-control::placeholder {
C
codecalm 已提交
7734
          color: rgba(244, 246, 250, 0.64); } }
C
codecalm 已提交
7735 7736
  @media not print and (prefers-color-scheme: dark) {
    .theme-dark-auto .navbar {
C
codecalm 已提交
7737
      background: #232e3c;
C
codecalm 已提交
7738
      color: rgba(255, 255, 255, 0.7); }
C
codecalm 已提交
7739 7740 7741 7742 7743 7744 7745
      .theme-dark-auto .navbar::-webkit-scrollbar {
        width: 6px;
        height: 6px;
        -webkit-transition: .3s background;
        transition: .3s background; }
      .theme-dark-auto .navbar::-webkit-scrollbar-thumb {
        border-radius: 5px;
C
codecalm 已提交
7746 7747 7748
        background: #a0a6ae; }
      .theme-dark-auto .navbar::-webkit-scrollbar-track {
        background: #e7eaef; }
C
codecalm 已提交
7749 7750 7751
      .theme-dark-auto .navbar::-webkit-scrollbar-corner {
        background: transparent; }
      .theme-dark-auto .navbar:hover::-webkit-scrollbar-thumb {
C
codecalm 已提交
7752
        background: #a0a6ae; }
C
codecalm 已提交
7753
      .theme-dark-auto .navbar .text-muted {
C
codecalm 已提交
7754
        color: rgba(255, 255, 255, 0.7) !important; }
C
codecalm 已提交
7755 7756 7757 7758 7759 7760
      .theme-dark-auto .navbar .navbar-brand {
        color: #ffffff; }
        .theme-dark-auto .navbar .navbar-brand:hover, .theme-dark-auto .navbar .navbar-brand:focus {
          color: #ffffff;
          opacity: .8; }
      .theme-dark-auto .navbar .navbar-nav .nav-link {
C
codecalm 已提交
7761
        color: rgba(255, 255, 255, 0.7); }
C
codecalm 已提交
7762 7763 7764 7765 7766 7767 7768 7769 7770 7771 7772 7773 7774
        .theme-dark-auto .navbar .navbar-nav .nav-link:hover, .theme-dark-auto .navbar .navbar-nav .nav-link:focus {
          color: #ffffff; }
        .theme-dark-auto .navbar .navbar-nav .nav-link.disabled {
          color: rgba(255, 255, 255, 0.3); }
      .theme-dark-auto .navbar .navbar-nav .show > .nav-link,
      .theme-dark-auto .navbar .navbar-nav .active > .nav-link,
      .theme-dark-auto .navbar .navbar-nav .nav-link.show,
      .theme-dark-auto .navbar .navbar-nav .nav-link.active {
        color: #ffffff; }
      .theme-dark-auto .navbar .navbar-toggler {
        color: #ffffff;
        border-color: transparent; }
      .theme-dark-auto .navbar .navbar-text {
C
codecalm 已提交
7775
        color: rgba(255, 255, 255, 0.7); }
C
codecalm 已提交
7776 7777 7778
        .theme-dark-auto .navbar .navbar-text a,
        .theme-dark-auto .navbar .navbar-text a:hover,
        .theme-dark-auto .navbar .navbar-text a:focus {
C
codecalm 已提交
7779
          color: rgba(255, 255, 255, 0.7); }
C
codecalm 已提交
7780 7781 7782 7783 7784 7785 7786 7787
      .theme-dark-auto .navbar::-webkit-scrollbar {
        width: 6px;
        height: 6px;
        -webkit-transition: .3s background;
        transition: .3s background; }
      .theme-dark-auto .navbar::-webkit-scrollbar-thumb {
        border-radius: 5px;
        background: transparent; }
C
codecalm 已提交
7788 7789
      .theme-dark-auto .navbar::-webkit-scrollbar-track {
        background: transparent; }
C
codecalm 已提交
7790 7791 7792
      .theme-dark-auto .navbar::-webkit-scrollbar-corner {
        background: transparent; }
      .theme-dark-auto .navbar:hover::-webkit-scrollbar-thumb {
C
codecalm 已提交
7793
        background: #4f5863; }
C
codecalm 已提交
7794
      .theme-dark-auto .navbar .input-icon-addon {
C
codecalm 已提交
7795
        color: rgba(244, 246, 250, 0.64); }
C
codecalm 已提交
7796 7797 7798 7799
      .theme-dark-auto .navbar .form-control {
        border-color: transparent;
        background-color: rgba(0, 0, 0, 0.1); }
        .theme-dark-auto .navbar .form-control::-webkit-input-placeholder {
C
codecalm 已提交
7800
          color: rgba(244, 246, 250, 0.64); }
C
codecalm 已提交
7801
        .theme-dark-auto .navbar .form-control::-moz-placeholder {
C
codecalm 已提交
7802
          color: rgba(244, 246, 250, 0.64); }
C
codecalm 已提交
7803
        .theme-dark-auto .navbar .form-control:-ms-input-placeholder {
C
codecalm 已提交
7804
          color: rgba(244, 246, 250, 0.64); }
C
codecalm 已提交
7805
        .theme-dark-auto .navbar .form-control::-ms-input-placeholder {
C
codecalm 已提交
7806
          color: rgba(244, 246, 250, 0.64); }
C
codecalm 已提交
7807
        .theme-dark-auto .navbar .form-control::placeholder {
C
codecalm 已提交
7808
          color: rgba(244, 246, 250, 0.64); } }
C
codecalm 已提交
7809 7810 7811 7812 7813 7814 7815 7816 7817 7818
  .navbar .dropdown-menu {
    position: absolute;
    z-index: 1030; }
  .navbar .navbar-nav {
    min-height: 3rem; }
    .navbar .navbar-nav .nav-link {
      position: relative;
      min-width: 2rem;
      min-height: 2rem;
      justify-content: center;
C
codecalm 已提交
7819
      border-radius: 4px; }
C
codecalm 已提交
7820 7821 7822 7823 7824 7825
      .navbar .navbar-nav .nav-link .badge {
        position: absolute;
        top: .375rem;
        right: .375rem;
        transform: translate(50%, -50%); }

C
codecalm 已提交
7826 7827 7828 7829
.navbar-nav {
  margin: 0;
  padding: 0; }

C
codecalm 已提交
7830 7831
@media (max-width: 575.98px) {
  .navbar-expand-sm .navbar-collapse {
C
codecalm 已提交
7832
    flex-direction: column; }
C
codecalm 已提交
7833 7834 7835 7836
    .navbar-expand-sm .navbar-collapse [class^="container"] {
      flex-direction: column;
      align-items: stretch; }
    .navbar-expand-sm .navbar-collapse .navbar-nav {
C
codecalm 已提交
7837 7838
      margin-left: calc( -1 * var(--tblr-gutter-x, 1.5rem));
      margin-right: calc( -1 * var(--tblr-gutter-x, 1.5rem)); }
C
codecalm 已提交
7839 7840 7841 7842 7843 7844 7845 7846 7847 7848 7849 7850
      .navbar-expand-sm .navbar-collapse .navbar-nav .nav-link {
        padding: 0.5rem 1.5rem;
        justify-content: flex-start; }
    .navbar-expand-sm .navbar-collapse .dropdown-menu-columns {
      flex-direction: column; }
    .navbar-expand-sm .navbar-collapse .dropdown-menu {
      padding: 0;
      background: transparent;
      position: static;
      color: inherit;
      box-shadow: none;
      border: none;
C
codecalm 已提交
7851
      min-width: 0;
C
codecalm 已提交
7852 7853 7854 7855 7856 7857 7858 7859 7860 7861 7862
      margin: 0; }
      .navbar-expand-sm .navbar-collapse .dropdown-menu .dropdown-item {
        min-width: 0;
        display: flex;
        width: auto;
        padding-left: 3.25rem; }
      .navbar-expand-sm .navbar-collapse .dropdown-menu .dropdown-menu .dropdown-item {
        padding-left: 4.75rem; }
      .navbar-expand-sm .navbar-collapse .dropdown-menu .dropdown-menu .dropdown-menu .dropdown-item {
        padding-left: 6.25rem; }
    .navbar-expand-sm .navbar-collapse .dropdown-toggle:after {
C
codecalm 已提交
7863
      margin-left: auto; }
C
codecalm 已提交
7864 7865 7866 7867 7868 7869
    .navbar-expand-sm .navbar-collapse .nav-item.active:after {
      border-bottom-width: 0;
      border-left-width: 2px;
      right: auto;
      top: 0;
      bottom: 0; } }
C
codecalm 已提交
7870

C
codecalm 已提交
7871
@media (min-width: 576px) {
C
codecalm 已提交
7872 7873 7874 7875 7876 7877 7878 7879 7880 7881 7882 7883 7884 7885 7886 7887 7888
  .navbar-expand-sm .navbar-collapse {
    width: auto;
    flex: 1 1 auto; }
  .navbar-expand-sm.navbar-dark .nav-item.active .nav-link,
  .navbar-expand-sm .navbar-dark .nav-item.active .nav-link {
    background-color: rgba(0, 0, 0, 0.1); }
  .navbar-expand-sm.navbar-light .nav-item.active,
  .navbar-expand-sm .navbar-light .nav-item.active {
    position: relative; }
    .navbar-expand-sm.navbar-light .nav-item.active:after,
    .navbar-expand-sm .navbar-light .nav-item.active:after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      bottom: -.25rem;
      border: 0 solid #206bc4;
C
codecalm 已提交
7889 7890 7891 7892 7893 7894 7895 7896
      border-bottom-width: 2px; }
  .navbar-expand-sm.navbar-light.navbar-vertical,
  .navbar-expand-sm .navbar-light.navbar-vertical {
    box-shadow: inset -1px 0 0 0 rgba(101, 109, 119, 0.16); }
    .navbar-expand-sm.navbar-light.navbar-vertical.navbar-right,
    .navbar-expand-sm .navbar-light.navbar-vertical.navbar-right {
      box-shadow: inset 1px 0 0 0 rgba(101, 109, 119, 0.16); }
  .navbar-expand-sm.navbar-vertical ~ .navbar,
C
codecalm 已提交
7897 7898 7899 7900 7901 7902
  .navbar-expand-sm.navbar-vertical ~ .page-wrapper {
    margin-left: 15rem; }
  .navbar-expand-sm.navbar-vertical.navbar-right ~ .navbar,
  .navbar-expand-sm.navbar-vertical.navbar-right ~ .page-wrapper {
    margin-left: 0;
    margin-right: 15rem; } }
C
codecalm 已提交
7903

C
codecalm 已提交
7904
@media (max-width: 767.98px) {
C
codecalm 已提交
7905 7906
  .navbar-expand-md .navbar-collapse {
    flex-direction: column; }
M
Michal Wolny 已提交
7907
    .navbar-expand-md .navbar-collapse [class^="container"] {
C
codecalm 已提交
7908 7909 7910
      flex-direction: column;
      align-items: stretch; }
    .navbar-expand-md .navbar-collapse .navbar-nav {
C
codecalm 已提交
7911 7912
      margin-left: calc( -1 * var(--tblr-gutter-x, 1.5rem));
      margin-right: calc( -1 * var(--tblr-gutter-x, 1.5rem)); }
C
codecalm 已提交
7913
      .navbar-expand-md .navbar-collapse .navbar-nav .nav-link {
C
codecalm 已提交
7914
        padding: 0.5rem 1.5rem;
C
codecalm 已提交
7915
        justify-content: flex-start; }
C
codecalm 已提交
7916 7917
    .navbar-expand-md .navbar-collapse .dropdown-menu-columns {
      flex-direction: column; }
C
codecalm 已提交
7918 7919 7920 7921 7922 7923 7924
    .navbar-expand-md .navbar-collapse .dropdown-menu {
      padding: 0;
      background: transparent;
      position: static;
      color: inherit;
      box-shadow: none;
      border: none;
C
codecalm 已提交
7925 7926
      min-width: 0;
      margin: 0; }
C
codecalm 已提交
7927 7928 7929 7930
      .navbar-expand-md .navbar-collapse .dropdown-menu .dropdown-item {
        min-width: 0;
        display: flex;
        width: auto;
C
codecalm 已提交
7931 7932 7933 7934 7935
        padding-left: 3.25rem; }
      .navbar-expand-md .navbar-collapse .dropdown-menu .dropdown-menu .dropdown-item {
        padding-left: 4.75rem; }
      .navbar-expand-md .navbar-collapse .dropdown-menu .dropdown-menu .dropdown-menu .dropdown-item {
        padding-left: 6.25rem; }
C
codecalm 已提交
7936
    .navbar-expand-md .navbar-collapse .dropdown-toggle:after {
C
codecalm 已提交
7937
      margin-left: auto; }
C
codecalm 已提交
7938 7939 7940 7941 7942 7943 7944
    .navbar-expand-md .navbar-collapse .nav-item.active:after {
      border-bottom-width: 0;
      border-left-width: 2px;
      right: auto;
      top: 0;
      bottom: 0; } }

C
codecalm 已提交
7945
@media (min-width: 768px) {
C
codecalm 已提交
7946 7947 7948 7949 7950 7951 7952 7953 7954 7955 7956 7957 7958 7959 7960 7961 7962
  .navbar-expand-md .navbar-collapse {
    width: auto;
    flex: 1 1 auto; }
  .navbar-expand-md.navbar-dark .nav-item.active .nav-link,
  .navbar-expand-md .navbar-dark .nav-item.active .nav-link {
    background-color: rgba(0, 0, 0, 0.1); }
  .navbar-expand-md.navbar-light .nav-item.active,
  .navbar-expand-md .navbar-light .nav-item.active {
    position: relative; }
    .navbar-expand-md.navbar-light .nav-item.active:after,
    .navbar-expand-md .navbar-light .nav-item.active:after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      bottom: -.25rem;
      border: 0 solid #206bc4;
C
codecalm 已提交
7963 7964 7965 7966 7967 7968 7969 7970
      border-bottom-width: 2px; }
  .navbar-expand-md.navbar-light.navbar-vertical,
  .navbar-expand-md .navbar-light.navbar-vertical {
    box-shadow: inset -1px 0 0 0 rgba(101, 109, 119, 0.16); }
    .navbar-expand-md.navbar-light.navbar-vertical.navbar-right,
    .navbar-expand-md .navbar-light.navbar-vertical.navbar-right {
      box-shadow: inset 1px 0 0 0 rgba(101, 109, 119, 0.16); }
  .navbar-expand-md.navbar-vertical ~ .navbar,
C
codecalm 已提交
7971 7972 7973 7974 7975 7976
  .navbar-expand-md.navbar-vertical ~ .page-wrapper {
    margin-left: 15rem; }
  .navbar-expand-md.navbar-vertical.navbar-right ~ .navbar,
  .navbar-expand-md.navbar-vertical.navbar-right ~ .page-wrapper {
    margin-left: 0;
    margin-right: 15rem; } }
C
codecalm 已提交
7977

C
codecalm 已提交
7978
@media (max-width: 991.98px) {
C
codecalm 已提交
7979 7980
  .navbar-expand-lg .navbar-collapse {
    flex-direction: column; }
M
Michal Wolny 已提交
7981
    .navbar-expand-lg .navbar-collapse [class^="container"] {
C
codecalm 已提交
7982 7983 7984
      flex-direction: column;
      align-items: stretch; }
    .navbar-expand-lg .navbar-collapse .navbar-nav {
C
codecalm 已提交
7985 7986
      margin-left: calc( -1 * var(--tblr-gutter-x, 1.5rem));
      margin-right: calc( -1 * var(--tblr-gutter-x, 1.5rem)); }
C
codecalm 已提交
7987
      .navbar-expand-lg .navbar-collapse .navbar-nav .nav-link {
C
codecalm 已提交
7988
        padding: 0.5rem 1.5rem;
C
codecalm 已提交
7989
        justify-content: flex-start; }
C
codecalm 已提交
7990 7991
    .navbar-expand-lg .navbar-collapse .dropdown-menu-columns {
      flex-direction: column; }
C
codecalm 已提交
7992 7993 7994 7995 7996 7997 7998
    .navbar-expand-lg .navbar-collapse .dropdown-menu {
      padding: 0;
      background: transparent;
      position: static;
      color: inherit;
      box-shadow: none;
      border: none;
C
codecalm 已提交
7999 8000
      min-width: 0;
      margin: 0; }
C
codecalm 已提交
8001 8002 8003 8004
      .navbar-expand-lg .navbar-collapse .dropdown-menu .dropdown-item {
        min-width: 0;
        display: flex;
        width: auto;
C
codecalm 已提交
8005 8006 8007 8008 8009
        padding-left: 3.25rem; }
      .navbar-expand-lg .navbar-collapse .dropdown-menu .dropdown-menu .dropdown-item {
        padding-left: 4.75rem; }
      .navbar-expand-lg .navbar-collapse .dropdown-menu .dropdown-menu .dropdown-menu .dropdown-item {
        padding-left: 6.25rem; }
C
codecalm 已提交
8010
    .navbar-expand-lg .navbar-collapse .dropdown-toggle:after {
C
codecalm 已提交
8011
      margin-left: auto; }
C
codecalm 已提交
8012 8013 8014 8015 8016 8017 8018
    .navbar-expand-lg .navbar-collapse .nav-item.active:after {
      border-bottom-width: 0;
      border-left-width: 2px;
      right: auto;
      top: 0;
      bottom: 0; } }

C
codecalm 已提交
8019
@media (min-width: 992px) {
C
codecalm 已提交
8020 8021 8022 8023 8024 8025 8026 8027 8028 8029 8030 8031 8032 8033 8034 8035 8036
  .navbar-expand-lg .navbar-collapse {
    width: auto;
    flex: 1 1 auto; }
  .navbar-expand-lg.navbar-dark .nav-item.active .nav-link,
  .navbar-expand-lg .navbar-dark .nav-item.active .nav-link {
    background-color: rgba(0, 0, 0, 0.1); }
  .navbar-expand-lg.navbar-light .nav-item.active,
  .navbar-expand-lg .navbar-light .nav-item.active {
    position: relative; }
    .navbar-expand-lg.navbar-light .nav-item.active:after,
    .navbar-expand-lg .navbar-light .nav-item.active:after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      bottom: -.25rem;
      border: 0 solid #206bc4;
C
codecalm 已提交
8037 8038 8039 8040 8041 8042 8043 8044
      border-bottom-width: 2px; }
  .navbar-expand-lg.navbar-light.navbar-vertical,
  .navbar-expand-lg .navbar-light.navbar-vertical {
    box-shadow: inset -1px 0 0 0 rgba(101, 109, 119, 0.16); }
    .navbar-expand-lg.navbar-light.navbar-vertical.navbar-right,
    .navbar-expand-lg .navbar-light.navbar-vertical.navbar-right {
      box-shadow: inset 1px 0 0 0 rgba(101, 109, 119, 0.16); }
  .navbar-expand-lg.navbar-vertical ~ .navbar,
C
codecalm 已提交
8045 8046 8047 8048 8049 8050
  .navbar-expand-lg.navbar-vertical ~ .page-wrapper {
    margin-left: 15rem; }
  .navbar-expand-lg.navbar-vertical.navbar-right ~ .navbar,
  .navbar-expand-lg.navbar-vertical.navbar-right ~ .page-wrapper {
    margin-left: 0;
    margin-right: 15rem; } }
C
codecalm 已提交
8051

C
codecalm 已提交
8052
@media (max-width: 1199.98px) {
C
codecalm 已提交
8053 8054
  .navbar-expand-xl .navbar-collapse {
    flex-direction: column; }
M
Michal Wolny 已提交
8055
    .navbar-expand-xl .navbar-collapse [class^="container"] {
C
codecalm 已提交
8056 8057 8058
      flex-direction: column;
      align-items: stretch; }
    .navbar-expand-xl .navbar-collapse .navbar-nav {
C
codecalm 已提交
8059 8060
      margin-left: calc( -1 * var(--tblr-gutter-x, 1.5rem));
      margin-right: calc( -1 * var(--tblr-gutter-x, 1.5rem)); }
C
codecalm 已提交
8061
      .navbar-expand-xl .navbar-collapse .navbar-nav .nav-link {
C
codecalm 已提交
8062
        padding: 0.5rem 1.5rem;
C
codecalm 已提交
8063
        justify-content: flex-start; }
C
codecalm 已提交
8064 8065
    .navbar-expand-xl .navbar-collapse .dropdown-menu-columns {
      flex-direction: column; }
C
codecalm 已提交
8066 8067 8068 8069 8070 8071 8072
    .navbar-expand-xl .navbar-collapse .dropdown-menu {
      padding: 0;
      background: transparent;
      position: static;
      color: inherit;
      box-shadow: none;
      border: none;
C
codecalm 已提交
8073 8074
      min-width: 0;
      margin: 0; }
C
codecalm 已提交
8075 8076 8077 8078
      .navbar-expand-xl .navbar-collapse .dropdown-menu .dropdown-item {
        min-width: 0;
        display: flex;
        width: auto;
C
codecalm 已提交
8079 8080 8081 8082 8083
        padding-left: 3.25rem; }
      .navbar-expand-xl .navbar-collapse .dropdown-menu .dropdown-menu .dropdown-item {
        padding-left: 4.75rem; }
      .navbar-expand-xl .navbar-collapse .dropdown-menu .dropdown-menu .dropdown-menu .dropdown-item {
        padding-left: 6.25rem; }
C
codecalm 已提交
8084
    .navbar-expand-xl .navbar-collapse .dropdown-toggle:after {
C
codecalm 已提交
8085
      margin-left: auto; }
C
codecalm 已提交
8086 8087 8088 8089 8090 8091 8092
    .navbar-expand-xl .navbar-collapse .nav-item.active:after {
      border-bottom-width: 0;
      border-left-width: 2px;
      right: auto;
      top: 0;
      bottom: 0; } }

C
codecalm 已提交
8093
@media (min-width: 1200px) {
C
codecalm 已提交
8094 8095 8096 8097 8098 8099 8100 8101 8102 8103 8104 8105 8106 8107 8108 8109 8110
  .navbar-expand-xl .navbar-collapse {
    width: auto;
    flex: 1 1 auto; }
  .navbar-expand-xl.navbar-dark .nav-item.active .nav-link,
  .navbar-expand-xl .navbar-dark .nav-item.active .nav-link {
    background-color: rgba(0, 0, 0, 0.1); }
  .navbar-expand-xl.navbar-light .nav-item.active,
  .navbar-expand-xl .navbar-light .nav-item.active {
    position: relative; }
    .navbar-expand-xl.navbar-light .nav-item.active:after,
    .navbar-expand-xl .navbar-light .nav-item.active:after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      bottom: -.25rem;
      border: 0 solid #206bc4;
C
codecalm 已提交
8111 8112 8113 8114 8115 8116 8117 8118
      border-bottom-width: 2px; }
  .navbar-expand-xl.navbar-light.navbar-vertical,
  .navbar-expand-xl .navbar-light.navbar-vertical {
    box-shadow: inset -1px 0 0 0 rgba(101, 109, 119, 0.16); }
    .navbar-expand-xl.navbar-light.navbar-vertical.navbar-right,
    .navbar-expand-xl .navbar-light.navbar-vertical.navbar-right {
      box-shadow: inset 1px 0 0 0 rgba(101, 109, 119, 0.16); }
  .navbar-expand-xl.navbar-vertical ~ .navbar,
C
codecalm 已提交
8119 8120 8121 8122 8123 8124
  .navbar-expand-xl.navbar-vertical ~ .page-wrapper {
    margin-left: 15rem; }
  .navbar-expand-xl.navbar-vertical.navbar-right ~ .navbar,
  .navbar-expand-xl.navbar-vertical.navbar-right ~ .page-wrapper {
    margin-left: 0;
    margin-right: 15rem; } }
C
codecalm 已提交
8125

C
codecalm 已提交
8126
@media (max-width: 1399.98px) {
C
codecalm 已提交
8127 8128
  .navbar-expand-xxl .navbar-collapse {
    flex-direction: column; }
M
Michal Wolny 已提交
8129
    .navbar-expand-xxl .navbar-collapse [class^="container"] {
C
codecalm 已提交
8130 8131 8132
      flex-direction: column;
      align-items: stretch; }
    .navbar-expand-xxl .navbar-collapse .navbar-nav {
C
codecalm 已提交
8133 8134
      margin-left: calc( -1 * var(--tblr-gutter-x, 1.5rem));
      margin-right: calc( -1 * var(--tblr-gutter-x, 1.5rem)); }
C
codecalm 已提交
8135 8136 8137
      .navbar-expand-xxl .navbar-collapse .navbar-nav .nav-link {
        padding: 0.5rem 1.5rem;
        justify-content: flex-start; }
C
codecalm 已提交
8138 8139
    .navbar-expand-xxl .navbar-collapse .dropdown-menu-columns {
      flex-direction: column; }
C
codecalm 已提交
8140 8141 8142 8143 8144 8145 8146
    .navbar-expand-xxl .navbar-collapse .dropdown-menu {
      padding: 0;
      background: transparent;
      position: static;
      color: inherit;
      box-shadow: none;
      border: none;
C
codecalm 已提交
8147 8148
      min-width: 0;
      margin: 0; }
C
codecalm 已提交
8149 8150 8151 8152
      .navbar-expand-xxl .navbar-collapse .dropdown-menu .dropdown-item {
        min-width: 0;
        display: flex;
        width: auto;
C
codecalm 已提交
8153 8154 8155 8156 8157
        padding-left: 3.25rem; }
      .navbar-expand-xxl .navbar-collapse .dropdown-menu .dropdown-menu .dropdown-item {
        padding-left: 4.75rem; }
      .navbar-expand-xxl .navbar-collapse .dropdown-menu .dropdown-menu .dropdown-menu .dropdown-item {
        padding-left: 6.25rem; }
C
codecalm 已提交
8158
    .navbar-expand-xxl .navbar-collapse .dropdown-toggle:after {
C
codecalm 已提交
8159
      margin-left: auto; }
C
codecalm 已提交
8160 8161 8162 8163 8164 8165 8166 8167 8168 8169 8170 8171 8172 8173 8174 8175 8176 8177 8178 8179 8180 8181 8182 8183 8184
    .navbar-expand-xxl .navbar-collapse .nav-item.active:after {
      border-bottom-width: 0;
      border-left-width: 2px;
      right: auto;
      top: 0;
      bottom: 0; } }

@media (min-width: 1400px) {
  .navbar-expand-xxl .navbar-collapse {
    width: auto;
    flex: 1 1 auto; }
  .navbar-expand-xxl.navbar-dark .nav-item.active .nav-link,
  .navbar-expand-xxl .navbar-dark .nav-item.active .nav-link {
    background-color: rgba(0, 0, 0, 0.1); }
  .navbar-expand-xxl.navbar-light .nav-item.active,
  .navbar-expand-xxl .navbar-light .nav-item.active {
    position: relative; }
    .navbar-expand-xxl.navbar-light .nav-item.active:after,
    .navbar-expand-xxl .navbar-light .nav-item.active:after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      bottom: -.25rem;
      border: 0 solid #206bc4;
C
codecalm 已提交
8185 8186 8187 8188 8189 8190 8191 8192
      border-bottom-width: 2px; }
  .navbar-expand-xxl.navbar-light.navbar-vertical,
  .navbar-expand-xxl .navbar-light.navbar-vertical {
    box-shadow: inset -1px 0 0 0 rgba(101, 109, 119, 0.16); }
    .navbar-expand-xxl.navbar-light.navbar-vertical.navbar-right,
    .navbar-expand-xxl .navbar-light.navbar-vertical.navbar-right {
      box-shadow: inset 1px 0 0 0 rgba(101, 109, 119, 0.16); }
  .navbar-expand-xxl.navbar-vertical ~ .navbar,
C
codecalm 已提交
8193 8194 8195 8196 8197 8198
  .navbar-expand-xxl.navbar-vertical ~ .page-wrapper {
    margin-left: 15rem; }
  .navbar-expand-xxl.navbar-vertical.navbar-right ~ .navbar,
  .navbar-expand-xxl.navbar-vertical.navbar-right ~ .page-wrapper {
    margin-left: 0;
    margin-right: 15rem; } }
C
codecalm 已提交
8199

C
codecalm 已提交
8200 8201 8202 8203 8204 8205
.navbar-expand .navbar-collapse {
  flex-direction: column; }
  .navbar-expand .navbar-collapse [class^="container"] {
    flex-direction: column;
    align-items: stretch; }
  .navbar-expand .navbar-collapse .navbar-nav {
C
codecalm 已提交
8206 8207
    margin-left: calc( -1 * var(--tblr-gutter-x, 1.5rem));
    margin-right: calc( -1 * var(--tblr-gutter-x, 1.5rem)); }
C
codecalm 已提交
8208 8209 8210 8211
    .navbar-expand .navbar-collapse .navbar-nav .nav-link {
      padding: 0.5rem 1.5rem;
      justify-content: flex-start; }
  .navbar-expand .navbar-collapse .dropdown-menu-columns {
C
codecalm 已提交
8212
    flex-direction: column; }
C
codecalm 已提交
8213 8214 8215 8216 8217 8218 8219 8220 8221 8222 8223 8224 8225 8226 8227 8228 8229 8230 8231
  .navbar-expand .navbar-collapse .dropdown-menu {
    padding: 0;
    background: transparent;
    position: static;
    color: inherit;
    box-shadow: none;
    border: none;
    min-width: 0;
    margin: 0; }
    .navbar-expand .navbar-collapse .dropdown-menu .dropdown-item {
      min-width: 0;
      display: flex;
      width: auto;
      padding-left: 3.25rem; }
    .navbar-expand .navbar-collapse .dropdown-menu .dropdown-menu .dropdown-item {
      padding-left: 4.75rem; }
    .navbar-expand .navbar-collapse .dropdown-menu .dropdown-menu .dropdown-menu .dropdown-item {
      padding-left: 6.25rem; }
  .navbar-expand .navbar-collapse .dropdown-toggle:after {
C
codecalm 已提交
8232
    margin-left: auto; }
C
codecalm 已提交
8233 8234 8235 8236 8237 8238
  .navbar-expand .navbar-collapse .nav-item.active:after {
    border-bottom-width: 0;
    border-left-width: 2px;
    right: auto;
    top: 0;
    bottom: 0; }
C
codecalm 已提交
8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 8249 8250 8251 8252 8253 8254 8255 8256 8257 8258 8259 8260

.navbar-expand .navbar-collapse {
  width: auto;
  flex: 1 1 auto; }

.navbar-expand.navbar-dark .nav-item.active .nav-link,
.navbar-expand .navbar-dark .nav-item.active .nav-link {
  background-color: rgba(0, 0, 0, 0.1); }

.navbar-expand.navbar-light .nav-item.active,
.navbar-expand .navbar-light .nav-item.active {
  position: relative; }
  .navbar-expand.navbar-light .nav-item.active:after,
  .navbar-expand .navbar-light .nav-item.active:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -.25rem;
    border: 0 solid #206bc4;
    border-bottom-width: 2px; }

C
codecalm 已提交
8261 8262 8263 8264 8265 8266 8267 8268
.navbar-expand.navbar-light.navbar-vertical,
.navbar-expand .navbar-light.navbar-vertical {
  box-shadow: inset -1px 0 0 0 rgba(101, 109, 119, 0.16); }
  .navbar-expand.navbar-light.navbar-vertical.navbar-right,
  .navbar-expand .navbar-light.navbar-vertical.navbar-right {
    box-shadow: inset 1px 0 0 0 rgba(101, 109, 119, 0.16); }

.navbar-expand.navbar-vertical ~ .navbar,
C
codecalm 已提交
8269 8270 8271 8272 8273 8274 8275
.navbar-expand.navbar-vertical ~ .page-wrapper {
  margin-left: 15rem; }

.navbar-expand.navbar-vertical.navbar-right ~ .navbar,
.navbar-expand.navbar-vertical.navbar-right ~ .page-wrapper {
  margin-left: 0;
  margin-right: 15rem; }
C
codecalm 已提交
8276

C
codecalm 已提交
8277 8278 8279 8280 8281 8282
/**
Navbar brand
 */
.navbar-brand {
  display: inline-flex;
  align-items: center;
M
Michal Wolny 已提交
8283 8284
  font-weight: 600;
  margin: 0; }
C
codecalm 已提交
8285 8286 8287

.navbar-brand-image {
  display: block;
C
codecalm 已提交
8288 8289
  height: 2rem;
  width: auto; }
C
codecalm 已提交
8290 8291 8292 8293 8294 8295 8296 8297 8298 8299 8300 8301 8302 8303 8304 8305 8306 8307 8308 8309 8310 8311 8312 8313 8314 8315 8316 8317 8318 8319 8320 8321 8322 8323 8324 8325 8326 8327 8328 8329 8330 8331 8332 8333 8334 8335 8336 8337

/**
Navbar toggler
 */
.navbar-toggler {
  border: 0;
  width: 2rem;
  height: 2rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center; }

.navbar-toggler-icon {
  height: 2px;
  width: 1.25em;
  background: currentColor;
  border-radius: 10px;
  transition: 0.2s 0.2s top, 0.2s 0.2s bottom, 0.2s transform, 0s 0.2s opacity;
  position: relative; }
  .navbar-toggler-icon:before, .navbar-toggler-icon:after {
    content: '';
    display: block;
    height: inherit;
    width: inherit;
    border-radius: inherit;
    background: inherit;
    position: absolute;
    left: 0;
    transition: inherit; }
  .navbar-toggler-icon:before {
    top: -.45em; }
  .navbar-toggler-icon:after {
    bottom: -.45em; }
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    transform: rotate(45deg);
    transition: .3s top, .3s bottom, .3s .3s transform, 0s .3s opacity; }
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
      top: 0;
      transform: rotate(-90deg); }
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
      bottom: 0;
      opacity: 0; }

/**
Navbar light
 */
.navbar-light {
C
codecalm 已提交
8338
  box-shadow: inset 0 -1px 0 0 rgba(101, 109, 119, 0.16);
C
codecalm 已提交
8339 8340 8341 8342 8343 8344
  background-color: #ffffff; }

/**
Navbar dark
 */
.navbar-dark {
C
codecalm 已提交
8345
  background: #232e3c;
C
codecalm 已提交
8346
  color: rgba(255, 255, 255, 0.7); }
C
codecalm 已提交
8347 8348 8349 8350 8351 8352 8353
  .navbar-dark::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    -webkit-transition: .3s background;
    transition: .3s background; }
  .navbar-dark::-webkit-scrollbar-thumb {
    border-radius: 5px;
C
codecalm 已提交
8354 8355 8356
    background: #a0a6ae; }
  .navbar-dark::-webkit-scrollbar-track {
    background: #e7eaef; }
C
codecalm 已提交
8357 8358 8359
  .navbar-dark::-webkit-scrollbar-corner {
    background: transparent; }
  .navbar-dark:hover::-webkit-scrollbar-thumb {
C
codecalm 已提交
8360
    background: #a0a6ae; }
C
codecalm 已提交
8361
  .navbar-dark .text-muted {
C
codecalm 已提交
8362
    color: rgba(255, 255, 255, 0.7) !important; }
C
codecalm 已提交
8363 8364 8365 8366 8367 8368
  .navbar-dark .navbar-brand {
    color: #ffffff; }
    .navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
      color: #ffffff;
      opacity: .8; }
  .navbar-dark .navbar-nav .nav-link {
C
codecalm 已提交
8369
    color: rgba(255, 255, 255, 0.7); }
C
codecalm 已提交
8370 8371 8372 8373 8374 8375 8376 8377 8378 8379 8380 8381 8382
    .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
      color: #ffffff; }
    .navbar-dark .navbar-nav .nav-link.disabled {
      color: rgba(255, 255, 255, 0.3); }
  .navbar-dark .navbar-nav .show > .nav-link,
  .navbar-dark .navbar-nav .active > .nav-link,
  .navbar-dark .navbar-nav .nav-link.show,
  .navbar-dark .navbar-nav .nav-link.active {
    color: #ffffff; }
  .navbar-dark .navbar-toggler {
    color: #ffffff;
    border-color: transparent; }
  .navbar-dark .navbar-text {
C
codecalm 已提交
8383
    color: rgba(255, 255, 255, 0.7); }
C
codecalm 已提交
8384 8385 8386
    .navbar-dark .navbar-text a,
    .navbar-dark .navbar-text a:hover,
    .navbar-dark .navbar-text a:focus {
C
codecalm 已提交
8387
      color: rgba(255, 255, 255, 0.7); }
C
codecalm 已提交
8388 8389 8390 8391 8392 8393 8394 8395
  .navbar-dark::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    -webkit-transition: .3s background;
    transition: .3s background; }
  .navbar-dark::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: transparent; }
C
codecalm 已提交
8396 8397
  .navbar-dark::-webkit-scrollbar-track {
    background: transparent; }
C
codecalm 已提交
8398 8399 8400
  .navbar-dark::-webkit-scrollbar-corner {
    background: transparent; }
  .navbar-dark:hover::-webkit-scrollbar-thumb {
C
codecalm 已提交
8401
    background: #4f5863; }
C
codecalm 已提交
8402
  .navbar-dark .input-icon-addon {
C
codecalm 已提交
8403
    color: rgba(244, 246, 250, 0.64); }
C
codecalm 已提交
8404 8405 8406 8407
  .navbar-dark .form-control {
    border-color: transparent;
    background-color: rgba(0, 0, 0, 0.1); }
    .navbar-dark .form-control::-webkit-input-placeholder {
C
codecalm 已提交
8408
      color: rgba(244, 246, 250, 0.64); }
C
codecalm 已提交
8409
    .navbar-dark .form-control::-moz-placeholder {
C
codecalm 已提交
8410
      color: rgba(244, 246, 250, 0.64); }
C
codecalm 已提交
8411
    .navbar-dark .form-control:-ms-input-placeholder {
C
codecalm 已提交
8412
      color: rgba(244, 246, 250, 0.64); }
C
codecalm 已提交
8413
    .navbar-dark .form-control::-ms-input-placeholder {
C
codecalm 已提交
8414
      color: rgba(244, 246, 250, 0.64); }
C
codecalm 已提交
8415
    .navbar-dark .form-control::placeholder {
C
codecalm 已提交
8416
      color: rgba(244, 246, 250, 0.64); }
C
codecalm 已提交
8417 8418 8419 8420 8421 8422 8423 8424 8425 8426 8427 8428 8429 8430 8431 8432 8433 8434 8435 8436 8437 8438 8439 8440

/**
Navbar nav
 */
.navbar-nav {
  align-items: stretch; }
  .navbar-nav .nav-item {
    display: flex;
    flex-direction: column;
    justify-content: center; }

/**
Navbar side
 */
.navbar-side {
  margin: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around; }

/**
Navbar vertical
 */
C
codecalm 已提交
8441
@media (min-width: 576px) {
C
codecalm 已提交
8442 8443 8444 8445 8446 8447 8448 8449 8450 8451 8452 8453 8454 8455 8456 8457 8458 8459 8460 8461 8462 8463 8464 8465 8466
  .navbar-vertical.navbar-expand-sm {
    width: 15rem;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1030;
    align-items: flex-start;
    transition: .3s transform;
    overflow-x: auto; }
    .navbar-vertical.navbar-expand-sm.navbar-right {
      left: auto;
      right: 0; }
    .navbar-vertical.navbar-expand-sm .navbar-brand {
      padding: 0.75rem 0;
      justify-content: center; }
    .navbar-vertical.navbar-expand-sm .navbar-collapse {
      align-items: stretch; }
    .navbar-vertical.navbar-expand-sm .navbar-nav {
      flex-direction: column;
      flex-grow: 1;
      min-height: auto; }
      .navbar-vertical.navbar-expand-sm .navbar-nav .nav-link {
        padding-top: .5rem;
        padding-bottom: .5rem; }
M
Michal Wolny 已提交
8467
    .navbar-vertical.navbar-expand-sm > [class^="container"] {
C
codecalm 已提交
8468 8469 8470 8471 8472 8473
      flex-direction: column;
      align-items: stretch;
      min-height: 100%;
      justify-content: flex-start; }
    .navbar-vertical.navbar-expand-sm ~ .page {
      padding-left: 15rem; }
M
Michal Wolny 已提交
8474
      .navbar-vertical.navbar-expand-sm ~ .page [class^="container"] {
C
codecalm 已提交
8475 8476 8477 8478 8479 8480 8481
        padding-left: 1.5rem;
        padding-right: 1.5rem; }
    .navbar-vertical.navbar-expand-sm.navbar-right ~ .page {
      padding-left: 0;
      padding-right: 15rem; }
    .navbar-vertical.navbar-expand-sm .navbar-collapse {
      flex-direction: column; }
M
Michal Wolny 已提交
8482
      .navbar-vertical.navbar-expand-sm .navbar-collapse [class^="container"] {
C
codecalm 已提交
8483 8484 8485
        flex-direction: column;
        align-items: stretch; }
      .navbar-vertical.navbar-expand-sm .navbar-collapse .navbar-nav {
C
codecalm 已提交
8486 8487
        margin-left: calc( -1 * var(--tblr-gutter-x, 1.5rem));
        margin-right: calc( -1 * var(--tblr-gutter-x, 1.5rem)); }
C
codecalm 已提交
8488
        .navbar-vertical.navbar-expand-sm .navbar-collapse .navbar-nav .nav-link {
C
codecalm 已提交
8489
          padding: 0.5rem 1.5rem;
C
codecalm 已提交
8490
          justify-content: flex-start; }
C
codecalm 已提交
8491 8492
      .navbar-vertical.navbar-expand-sm .navbar-collapse .dropdown-menu-columns {
        flex-direction: column; }
C
codecalm 已提交
8493 8494 8495 8496 8497 8498 8499
      .navbar-vertical.navbar-expand-sm .navbar-collapse .dropdown-menu {
        padding: 0;
        background: transparent;
        position: static;
        color: inherit;
        box-shadow: none;
        border: none;
C
codecalm 已提交
8500 8501
        min-width: 0;
        margin: 0; }
C
codecalm 已提交
8502 8503 8504 8505
        .navbar-vertical.navbar-expand-sm .navbar-collapse .dropdown-menu .dropdown-item {
          min-width: 0;
          display: flex;
          width: auto;
C
codecalm 已提交
8506 8507 8508 8509 8510
          padding-left: 3.25rem; }
        .navbar-vertical.navbar-expand-sm .navbar-collapse .dropdown-menu .dropdown-menu .dropdown-item {
          padding-left: 4.75rem; }
        .navbar-vertical.navbar-expand-sm .navbar-collapse .dropdown-menu .dropdown-menu .dropdown-menu .dropdown-item {
          padding-left: 6.25rem; }
C
codecalm 已提交
8511
      .navbar-vertical.navbar-expand-sm .navbar-collapse .dropdown-toggle:after {
C
codecalm 已提交
8512
        margin-left: auto; }
C
codecalm 已提交
8513 8514 8515 8516 8517 8518 8519
      .navbar-vertical.navbar-expand-sm .navbar-collapse .nav-item.active:after {
        border-bottom-width: 0;
        border-left-width: 2px;
        right: auto;
        top: 0;
        bottom: 0; } }

C
codecalm 已提交
8520
@media (min-width: 768px) {
C
codecalm 已提交
8521 8522 8523 8524 8525 8526 8527 8528 8529 8530 8531 8532 8533 8534 8535 8536 8537 8538 8539 8540 8541 8542 8543 8544 8545
  .navbar-vertical.navbar-expand-md {
    width: 15rem;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1030;
    align-items: flex-start;
    transition: .3s transform;
    overflow-x: auto; }
    .navbar-vertical.navbar-expand-md.navbar-right {
      left: auto;
      right: 0; }
    .navbar-vertical.navbar-expand-md .navbar-brand {
      padding: 0.75rem 0;
      justify-content: center; }
    .navbar-vertical.navbar-expand-md .navbar-collapse {
      align-items: stretch; }
    .navbar-vertical.navbar-expand-md .navbar-nav {
      flex-direction: column;
      flex-grow: 1;
      min-height: auto; }
      .navbar-vertical.navbar-expand-md .navbar-nav .nav-link {
        padding-top: .5rem;
        padding-bottom: .5rem; }
M
Michal Wolny 已提交
8546
    .navbar-vertical.navbar-expand-md > [class^="container"] {
C
codecalm 已提交
8547 8548 8549 8550 8551 8552
      flex-direction: column;
      align-items: stretch;
      min-height: 100%;
      justify-content: flex-start; }
    .navbar-vertical.navbar-expand-md ~ .page {
      padding-left: 15rem; }
M
Michal Wolny 已提交
8553
      .navbar-vertical.navbar-expand-md ~ .page [class^="container"] {
C
codecalm 已提交
8554 8555 8556 8557 8558 8559 8560
        padding-left: 1.5rem;
        padding-right: 1.5rem; }
    .navbar-vertical.navbar-expand-md.navbar-right ~ .page {
      padding-left: 0;
      padding-right: 15rem; }
    .navbar-vertical.navbar-expand-md .navbar-collapse {
      flex-direction: column; }
M
Michal Wolny 已提交
8561
      .navbar-vertical.navbar-expand-md .navbar-collapse [class^="container"] {
C
codecalm 已提交
8562 8563 8564
        flex-direction: column;
        align-items: stretch; }
      .navbar-vertical.navbar-expand-md .navbar-collapse .navbar-nav {
C
codecalm 已提交
8565 8566
        margin-left: calc( -1 * var(--tblr-gutter-x, 1.5rem));
        margin-right: calc( -1 * var(--tblr-gutter-x, 1.5rem)); }
C
codecalm 已提交
8567
        .navbar-vertical.navbar-expand-md .navbar-collapse .navbar-nav .nav-link {
C
codecalm 已提交
8568
          padding: 0.5rem 1.5rem;
C
codecalm 已提交
8569
          justify-content: flex-start; }
C
codecalm 已提交
8570 8571
      .navbar-vertical.navbar-expand-md .navbar-collapse .dropdown-menu-columns {
        flex-direction: column; }
C
codecalm 已提交
8572 8573 8574 8575 8576 8577 8578
      .navbar-vertical.navbar-expand-md .navbar-collapse .dropdown-menu {
        padding: 0;
        background: transparent;
        position: static;
        color: inherit;
        box-shadow: none;
        border: none;
C
codecalm 已提交
8579 8580
        min-width: 0;
        margin: 0; }
C
codecalm 已提交
8581 8582 8583 8584
        .navbar-vertical.navbar-expand-md .navbar-collapse .dropdown-menu .dropdown-item {
          min-width: 0;
          display: flex;
          width: auto;
C
codecalm 已提交
8585 8586 8587 8588 8589
          padding-left: 3.25rem; }
        .navbar-vertical.navbar-expand-md .navbar-collapse .dropdown-menu .dropdown-menu .dropdown-item {
          padding-left: 4.75rem; }
        .navbar-vertical.navbar-expand-md .navbar-collapse .dropdown-menu .dropdown-menu .dropdown-menu .dropdown-item {
          padding-left: 6.25rem; }
C
codecalm 已提交
8590
      .navbar-vertical.navbar-expand-md .navbar-collapse .dropdown-toggle:after {
C
codecalm 已提交
8591
        margin-left: auto; }
C
codecalm 已提交
8592 8593 8594 8595 8596 8597 8598
      .navbar-vertical.navbar-expand-md .navbar-collapse .nav-item.active:after {
        border-bottom-width: 0;
        border-left-width: 2px;
        right: auto;
        top: 0;
        bottom: 0; } }

C
codecalm 已提交
8599
@media (min-width: 992px) {
C
codecalm 已提交
8600 8601 8602 8603 8604 8605 8606 8607 8608 8609 8610 8611 8612 8613 8614 8615 8616 8617 8618 8619 8620 8621 8622 8623 8624
  .navbar-vertical.navbar-expand-lg {
    width: 15rem;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1030;
    align-items: flex-start;
    transition: .3s transform;
    overflow-x: auto; }
    .navbar-vertical.navbar-expand-lg.navbar-right {
      left: auto;
      right: 0; }
    .navbar-vertical.navbar-expand-lg .navbar-brand {
      padding: 0.75rem 0;
      justify-content: center; }
    .navbar-vertical.navbar-expand-lg .navbar-collapse {
      align-items: stretch; }
    .navbar-vertical.navbar-expand-lg .navbar-nav {
      flex-direction: column;
      flex-grow: 1;
      min-height: auto; }
      .navbar-vertical.navbar-expand-lg .navbar-nav .nav-link {
        padding-top: .5rem;
        padding-bottom: .5rem; }
M
Michal Wolny 已提交
8625
    .navbar-vertical.navbar-expand-lg > [class^="container"] {
C
codecalm 已提交
8626 8627 8628 8629 8630 8631
      flex-direction: column;
      align-items: stretch;
      min-height: 100%;
      justify-content: flex-start; }
    .navbar-vertical.navbar-expand-lg ~ .page {
      padding-left: 15rem; }
M
Michal Wolny 已提交
8632
      .navbar-vertical.navbar-expand-lg ~ .page [class^="container"] {
C
codecalm 已提交
8633 8634 8635 8636 8637 8638 8639
        padding-left: 1.5rem;
        padding-right: 1.5rem; }
    .navbar-vertical.navbar-expand-lg.navbar-right ~ .page {
      padding-left: 0;
      padding-right: 15rem; }
    .navbar-vertical.navbar-expand-lg .navbar-collapse {
      flex-direction: column; }
M
Michal Wolny 已提交
8640
      .navbar-vertical.navbar-expand-lg .navbar-collapse [class^="container"] {
C
codecalm 已提交
8641 8642 8643
        flex-direction: column;
        align-items: stretch; }
      .navbar-vertical.navbar-expand-lg .navbar-collapse .navbar-nav {
C
codecalm 已提交
8644 8645
        margin-left: calc( -1 * var(--tblr-gutter-x, 1.5rem));
        margin-right: calc( -1 * var(--tblr-gutter-x, 1.5rem)); }
C
codecalm 已提交
8646
        .navbar-vertical.navbar-expand-lg .navbar-collapse .navbar-nav .nav-link {
C
codecalm 已提交
8647
          padding: 0.5rem 1.5rem;
C
codecalm 已提交
8648
          justify-content: flex-start; }
C
codecalm 已提交
8649 8650
      .navbar-vertical.navbar-expand-lg .navbar-collapse .dropdown-menu-columns {
        flex-direction: column; }
C
codecalm 已提交
8651 8652 8653 8654 8655 8656 8657
      .navbar-vertical.navbar-expand-lg .navbar-collapse .dropdown-menu {
        padding: 0;
        background: transparent;
        position: static;
        color: inherit;
        box-shadow: none;
        border: none;
C
codecalm 已提交
8658 8659
        min-width: 0;
        margin: 0; }
C
codecalm 已提交
8660 8661 8662 8663
        .navbar-vertical.navbar-expand-lg .navbar-collapse .dropdown-menu .dropdown-item {
          min-width: 0;
          display: flex;
          width: auto;
C
codecalm 已提交
8664 8665 8666 8667 8668
          padding-left: 3.25rem; }
        .navbar-vertical.navbar-expand-lg .navbar-collapse .dropdown-menu .dropdown-menu .dropdown-item {
          padding-left: 4.75rem; }
        .navbar-vertical.navbar-expand-lg .navbar-collapse .dropdown-menu .dropdown-menu .dropdown-menu .dropdown-item {
          padding-left: 6.25rem; }
C
codecalm 已提交
8669
      .navbar-vertical.navbar-expand-lg .navbar-collapse .dropdown-toggle:after {
C
codecalm 已提交
8670
        margin-left: auto; }
C
codecalm 已提交
8671 8672 8673 8674 8675 8676 8677
      .navbar-vertical.navbar-expand-lg .navbar-collapse .nav-item.active:after {
        border-bottom-width: 0;
        border-left-width: 2px;
        right: auto;
        top: 0;
        bottom: 0; } }

C
codecalm 已提交
8678
@media (min-width: 1200px) {
C
codecalm 已提交
8679 8680 8681 8682 8683 8684 8685 8686 8687 8688 8689 8690 8691 8692 8693 8694 8695 8696 8697 8698 8699 8700 8701 8702 8703
  .navbar-vertical.navbar-expand-xl {
    width: 15rem;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1030;
    align-items: flex-start;
    transition: .3s transform;
    overflow-x: auto; }
    .navbar-vertical.navbar-expand-xl.navbar-right {
      left: auto;
      right: 0; }
    .navbar-vertical.navbar-expand-xl .navbar-brand {
      padding: 0.75rem 0;
      justify-content: center; }
    .navbar-vertical.navbar-expand-xl .navbar-collapse {
      align-items: stretch; }
    .navbar-vertical.navbar-expand-xl .navbar-nav {
      flex-direction: column;
      flex-grow: 1;
      min-height: auto; }
      .navbar-vertical.navbar-expand-xl .navbar-nav .nav-link {
        padding-top: .5rem;
        padding-bottom: .5rem; }
M
Michal Wolny 已提交
8704
    .navbar-vertical.navbar-expand-xl > [class^="container"] {
C
codecalm 已提交
8705 8706 8707 8708 8709 8710
      flex-direction: column;
      align-items: stretch;
      min-height: 100%;
      justify-content: flex-start; }
    .navbar-vertical.navbar-expand-xl ~ .page {
      padding-left: 15rem; }
M
Michal Wolny 已提交
8711
      .navbar-vertical.navbar-expand-xl ~ .page [class^="container"] {
C
codecalm 已提交
8712 8713 8714 8715 8716 8717 8718
        padding-left: 1.5rem;
        padding-right: 1.5rem; }
    .navbar-vertical.navbar-expand-xl.navbar-right ~ .page {
      padding-left: 0;
      padding-right: 15rem; }
    .navbar-vertical.navbar-expand-xl .navbar-collapse {
      flex-direction: column; }
M
Michal Wolny 已提交
8719
      .navbar-vertical.navbar-expand-xl .navbar-collapse [class^="container"] {
C
codecalm 已提交
8720 8721 8722
        flex-direction: column;
        align-items: stretch; }
      .navbar-vertical.navbar-expand-xl .navbar-collapse .navbar-nav {
C
codecalm 已提交
8723 8724
        margin-left: calc( -1 * var(--tblr-gutter-x, 1.5rem));
        margin-right: calc( -1 * var(--tblr-gutter-x, 1.5rem)); }
C
codecalm 已提交
8725
        .navbar-vertical.navbar-expand-xl .navbar-collapse .navbar-nav .nav-link {
C
codecalm 已提交
8726
          padding: 0.5rem 1.5rem;
C
codecalm 已提交
8727
          justify-content: flex-start; }
C
codecalm 已提交
8728 8729
      .navbar-vertical.navbar-expand-xl .navbar-collapse .dropdown-menu-columns {
        flex-direction: column; }
C
codecalm 已提交
8730 8731 8732 8733 8734 8735 8736
      .navbar-vertical.navbar-expand-xl .navbar-collapse .dropdown-menu {
        padding: 0;
        background: transparent;
        position: static;
        color: inherit;
        box-shadow: none;
        border: none;
C
codecalm 已提交
8737 8738
        min-width: 0;
        margin: 0; }
C
codecalm 已提交
8739 8740 8741 8742
        .navbar-vertical.navbar-expand-xl .navbar-collapse .dropdown-menu .dropdown-item {
          min-width: 0;
          display: flex;
          width: auto;
C
codecalm 已提交
8743 8744 8745 8746 8747
          padding-left: 3.25rem; }
        .navbar-vertical.navbar-expand-xl .navbar-collapse .dropdown-menu .dropdown-menu .dropdown-item {
          padding-left: 4.75rem; }
        .navbar-vertical.navbar-expand-xl .navbar-collapse .dropdown-menu .dropdown-menu .dropdown-menu .dropdown-item {
          padding-left: 6.25rem; }
C
codecalm 已提交
8748
      .navbar-vertical.navbar-expand-xl .navbar-collapse .dropdown-toggle:after {
C
codecalm 已提交
8749
        margin-left: auto; }
C
codecalm 已提交
8750 8751 8752 8753 8754 8755 8756
      .navbar-vertical.navbar-expand-xl .navbar-collapse .nav-item.active:after {
        border-bottom-width: 0;
        border-left-width: 2px;
        right: auto;
        top: 0;
        bottom: 0; } }

C
codecalm 已提交
8757 8758 8759 8760 8761 8762 8763 8764 8765 8766 8767 8768 8769 8770 8771 8772 8773 8774 8775 8776 8777 8778 8779 8780 8781 8782
@media (min-width: 1400px) {
  .navbar-vertical.navbar-expand-xxl {
    width: 15rem;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1030;
    align-items: flex-start;
    transition: .3s transform;
    overflow-x: auto; }
    .navbar-vertical.navbar-expand-xxl.navbar-right {
      left: auto;
      right: 0; }
    .navbar-vertical.navbar-expand-xxl .navbar-brand {
      padding: 0.75rem 0;
      justify-content: center; }
    .navbar-vertical.navbar-expand-xxl .navbar-collapse {
      align-items: stretch; }
    .navbar-vertical.navbar-expand-xxl .navbar-nav {
      flex-direction: column;
      flex-grow: 1;
      min-height: auto; }
      .navbar-vertical.navbar-expand-xxl .navbar-nav .nav-link {
        padding-top: .5rem;
        padding-bottom: .5rem; }
M
Michal Wolny 已提交
8783
    .navbar-vertical.navbar-expand-xxl > [class^="container"] {
C
codecalm 已提交
8784 8785 8786 8787 8788 8789
      flex-direction: column;
      align-items: stretch;
      min-height: 100%;
      justify-content: flex-start; }
    .navbar-vertical.navbar-expand-xxl ~ .page {
      padding-left: 15rem; }
M
Michal Wolny 已提交
8790
      .navbar-vertical.navbar-expand-xxl ~ .page [class^="container"] {
C
codecalm 已提交
8791 8792 8793 8794 8795 8796 8797
        padding-left: 1.5rem;
        padding-right: 1.5rem; }
    .navbar-vertical.navbar-expand-xxl.navbar-right ~ .page {
      padding-left: 0;
      padding-right: 15rem; }
    .navbar-vertical.navbar-expand-xxl .navbar-collapse {
      flex-direction: column; }
M
Michal Wolny 已提交
8798
      .navbar-vertical.navbar-expand-xxl .navbar-collapse [class^="container"] {
C
codecalm 已提交
8799 8800 8801
        flex-direction: column;
        align-items: stretch; }
      .navbar-vertical.navbar-expand-xxl .navbar-collapse .navbar-nav {
C
codecalm 已提交
8802 8803
        margin-left: calc( -1 * var(--tblr-gutter-x, 1.5rem));
        margin-right: calc( -1 * var(--tblr-gutter-x, 1.5rem)); }
C
codecalm 已提交
8804 8805 8806
        .navbar-vertical.navbar-expand-xxl .navbar-collapse .navbar-nav .nav-link {
          padding: 0.5rem 1.5rem;
          justify-content: flex-start; }
C
codecalm 已提交
8807 8808
      .navbar-vertical.navbar-expand-xxl .navbar-collapse .dropdown-menu-columns {
        flex-direction: column; }
C
codecalm 已提交
8809 8810 8811 8812 8813 8814 8815
      .navbar-vertical.navbar-expand-xxl .navbar-collapse .dropdown-menu {
        padding: 0;
        background: transparent;
        position: static;
        color: inherit;
        box-shadow: none;
        border: none;
C
codecalm 已提交
8816 8817
        min-width: 0;
        margin: 0; }
C
codecalm 已提交
8818 8819 8820 8821
        .navbar-vertical.navbar-expand-xxl .navbar-collapse .dropdown-menu .dropdown-item {
          min-width: 0;
          display: flex;
          width: auto;
C
codecalm 已提交
8822 8823 8824 8825 8826
          padding-left: 3.25rem; }
        .navbar-vertical.navbar-expand-xxl .navbar-collapse .dropdown-menu .dropdown-menu .dropdown-item {
          padding-left: 4.75rem; }
        .navbar-vertical.navbar-expand-xxl .navbar-collapse .dropdown-menu .dropdown-menu .dropdown-menu .dropdown-item {
          padding-left: 6.25rem; }
C
codecalm 已提交
8827
      .navbar-vertical.navbar-expand-xxl .navbar-collapse .dropdown-toggle:after {
C
codecalm 已提交
8828
        margin-left: auto; }
C
codecalm 已提交
8829 8830 8831 8832 8833 8834 8835
      .navbar-vertical.navbar-expand-xxl .navbar-collapse .nav-item.active:after {
        border-bottom-width: 0;
        border-left-width: 2px;
        right: auto;
        top: 0;
        bottom: 0; } }

C
codecalm 已提交
8836 8837 8838 8839 8840 8841 8842 8843 8844 8845 8846 8847 8848 8849 8850 8851 8852 8853 8854 8855 8856 8857 8858 8859 8860
.navbar-vertical.navbar-expand {
  width: 15rem;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 1030;
  align-items: flex-start;
  transition: .3s transform;
  overflow-x: auto; }
  .navbar-vertical.navbar-expand.navbar-right {
    left: auto;
    right: 0; }
  .navbar-vertical.navbar-expand .navbar-brand {
    padding: 0.75rem 0;
    justify-content: center; }
  .navbar-vertical.navbar-expand .navbar-collapse {
    align-items: stretch; }
  .navbar-vertical.navbar-expand .navbar-nav {
    flex-direction: column;
    flex-grow: 1;
    min-height: auto; }
    .navbar-vertical.navbar-expand .navbar-nav .nav-link {
      padding-top: .5rem;
      padding-bottom: .5rem; }
M
Michal Wolny 已提交
8861
  .navbar-vertical.navbar-expand > [class^="container"] {
C
codecalm 已提交
8862 8863 8864 8865 8866 8867
    flex-direction: column;
    align-items: stretch;
    min-height: 100%;
    justify-content: flex-start; }
  .navbar-vertical.navbar-expand ~ .page {
    padding-left: 15rem; }
M
Michal Wolny 已提交
8868
    .navbar-vertical.navbar-expand ~ .page [class^="container"] {
C
codecalm 已提交
8869 8870 8871 8872 8873 8874 8875
      padding-left: 1.5rem;
      padding-right: 1.5rem; }
  .navbar-vertical.navbar-expand.navbar-right ~ .page {
    padding-left: 0;
    padding-right: 15rem; }
  .navbar-vertical.navbar-expand .navbar-collapse {
    flex-direction: column; }
M
Michal Wolny 已提交
8876
    .navbar-vertical.navbar-expand .navbar-collapse [class^="container"] {
C
codecalm 已提交
8877 8878 8879
      flex-direction: column;
      align-items: stretch; }
    .navbar-vertical.navbar-expand .navbar-collapse .navbar-nav {
C
codecalm 已提交
8880 8881
      margin-left: calc( -1 * var(--tblr-gutter-x, 1.5rem));
      margin-right: calc( -1 * var(--tblr-gutter-x, 1.5rem)); }
C
codecalm 已提交
8882
      .navbar-vertical.navbar-expand .navbar-collapse .navbar-nav .nav-link {
C
codecalm 已提交
8883
        padding: 0.5rem 1.5rem;
C
codecalm 已提交
8884
        justify-content: flex-start; }
C
codecalm 已提交
8885 8886
    .navbar-vertical.navbar-expand .navbar-collapse .dropdown-menu-columns {
      flex-direction: column; }
C
codecalm 已提交
8887 8888 8889 8890 8891 8892 8893
    .navbar-vertical.navbar-expand .navbar-collapse .dropdown-menu {
      padding: 0;
      background: transparent;
      position: static;
      color: inherit;
      box-shadow: none;
      border: none;
C
codecalm 已提交
8894 8895
      min-width: 0;
      margin: 0; }
C
codecalm 已提交
8896 8897 8898 8899
      .navbar-vertical.navbar-expand .navbar-collapse .dropdown-menu .dropdown-item {
        min-width: 0;
        display: flex;
        width: auto;
C
codecalm 已提交
8900 8901 8902 8903 8904
        padding-left: 3.25rem; }
      .navbar-vertical.navbar-expand .navbar-collapse .dropdown-menu .dropdown-menu .dropdown-item {
        padding-left: 4.75rem; }
      .navbar-vertical.navbar-expand .navbar-collapse .dropdown-menu .dropdown-menu .dropdown-menu .dropdown-item {
        padding-left: 6.25rem; }
C
codecalm 已提交
8905
    .navbar-vertical.navbar-expand .navbar-collapse .dropdown-toggle:after {
C
codecalm 已提交
8906
      margin-left: auto; }
C
codecalm 已提交
8907 8908 8909 8910 8911 8912 8913 8914 8915 8916 8917 8918 8919 8920 8921 8922 8923 8924 8925 8926 8927 8928 8929 8930
    .navbar-vertical.navbar-expand .navbar-collapse .nav-item.active:after {
      border-bottom-width: 0;
      border-left-width: 2px;
      right: auto;
      top: 0;
      bottom: 0; }

.navbar-overlap:after {
  content: '';
  height: 9rem;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: inherit;
  z-index: -1;
  box-shadow: inherit; }

.page {
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 100vh; }

C
codecalm 已提交
8931 8932 8933 8934
.page-center {
  justify-content: center; }

.page-wrapper {
C
codecalm 已提交
8935 8936 8937 8938
  flex: 1;
  display: flex;
  flex-direction: column; }
  @media print {
C
codecalm 已提交
8939
    .page-wrapper {
C
codecalm 已提交
8940 8941
      margin: 0 !important; } }

C
codecalm 已提交
8942 8943 8944 8945 8946 8947 8948 8949 8950 8951 8952 8953 8954 8955 8956 8957 8958 8959 8960 8961 8962 8963 8964 8965 8966 8967 8968 8969 8970 8971 8972 8973 8974 8975 8976 8977 8978
.page-wrapper-full .page-body:first-child {
  margin: 0;
  border-top: 0; }

.page-body {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem; }

.page-body-card {
  background: #ffffff;
  border-top: 1px solid rgba(101, 109, 119, 0.16);
  padding: 1.25rem 0;
  margin-bottom: 0;
  flex: 1; }
  .page-body ~ .page-body-card {
    margin-top: 0; }

.page-cover {
  background: no-repeat center/cover;
  min-height: 9rem; }
  @media (min-width: 768px) {
    .page-cover {
      min-height: 12rem; } }
  @media (min-width: 992px) {
    .page-cover {
      min-height: 15rem; } }

.page-cover-overlay {
  position: relative; }
  .page-cover-overlay:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%); }
C
codecalm 已提交
8979

C
codecalm 已提交
8980 8981
.page-header {
  display: flex;
C
codecalm 已提交
8982
  flex-wrap: wrap;
C
codecalm 已提交
8983
  min-height: 2.25rem;
C
codecalm 已提交
8984 8985
  flex-direction: column;
  justify-content: center; }
C
codecalm 已提交
8986 8987
  .page-wrapper .page-header {
    margin: 1.25rem 0 0; }
C
codecalm 已提交
8988

C
codecalm 已提交
8989 8990 8991 8992
.page-header-border {
  border-bottom: 1px solid rgba(101, 109, 119, 0.16);
  padding-bottom: 1.25rem; }

C
codecalm 已提交
8993 8994
.page-pretitle {
  font-size: 0.625rem;
C
codecalm 已提交
8995
  font-weight: 600;
C
codecalm 已提交
8996 8997 8998
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.6;
C
codecalm 已提交
8999
  color: #656d77; }
C
codecalm 已提交
9000 9001 9002

.page-title {
  margin: 0;
C
codecalm 已提交
9003 9004
  font-size: 1.25rem;
  line-height: 1.4;
C
codecalm 已提交
9005 9006 9007 9008 9009 9010 9011
  font-weight: 500;
  color: inherit;
  display: flex;
  align-items: center; }
  .page-title svg {
    width: 1.5rem;
    height: 1.5rem;
C
codecalm 已提交
9012
    margin-right: .25rem; }
C
codecalm 已提交
9013

C
codecalm 已提交
9014 9015 9016 9017 9018 9019 9020 9021
.page-title-lg {
  font-size: 1.5rem;
  line-height: 1.3333333; }

.page-subtitle {
  margin-top: .25rem;
  color: #656d77; }

C
codecalm 已提交
9022
.page-tabs {
C
codecalm 已提交
9023 9024 9025 9026 9027 9028 9029 9030
  margin-top: .5rem;
  position: relative; }

.page-header-tabs .nav-bordered {
  border: 0; }

.page-header-tabs + .page-body-card {
  margin-top: 0; }
C
codecalm 已提交
9031

C
codecalm 已提交
9032
.footer {
C
codecalm 已提交
9033
  border-top: 1px solid #e6e8e9;
C
codecalm 已提交
9034
  background-color: #ffffff;
C
codecalm 已提交
9035
  padding: 2rem 0;
C
codecalm 已提交
9036
  color: #656d77;
C
codecalm 已提交
9037
  margin-top: auto; }
C
codecalm 已提交
9038 9039 9040 9041 9042

.footer-transparent {
  background-color: transparent;
  border-top: 0; }

C
codecalm 已提交
9043 9044 9045 9046 9047 9048 9049 9050 9051 9052 9053 9054 9055
.accordion-button:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none; }

.accordion-button:after {
  opacity: 0.7; }

.accordion-button:not(.collapsed) {
  font-weight: 600;
  border-bottom-color: transparent; }
  .accordion-button:not(.collapsed):after {
    opacity: 1; }

C
codecalm 已提交
9056 9057
.alert {
  --tblr-alert-color: #656d77;
C
codecalm 已提交
9058
  background: #ffffff;
C
codecalm 已提交
9059 9060 9061 9062 9063 9064 9065 9066 9067
  border: 1px solid rgba(101, 109, 119, 0.16);
  border-left: 0.25rem solid var(--tblr-alert-color);
  box-shadow: rgba(35, 46, 60, 0.04) 0 2px 4px 0; }
  .alert > :last-child {
    margin-bottom: 0; }

.alert-important {
  border-color: transparent;
  background: var(--tblr-alert-color);
C
codecalm 已提交
9068 9069 9070 9071 9072
  color: #fff; }
  .alert-important .alert-icon,
  .alert-important .alert-link {
    color: inherit; }
  .alert-important .alert-link:hover {
C
codecalm 已提交
9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 9100 9101 9102 9103 9104 9105 9106 9107 9108 9109 9110
    color: inherit; }

.alert-link, .alert-link:hover {
  color: var(--tblr-alert-color); }

.alert-primary {
  --tblr-alert-color: #206bc4; }

.alert-secondary {
  --tblr-alert-color: #656d77; }

.alert-success {
  --tblr-alert-color: #2fb344; }

.alert-info {
  --tblr-alert-color: #4299e1; }

.alert-warning {
  --tblr-alert-color: #f76707; }

.alert-danger {
  --tblr-alert-color: #d63939; }

.alert-light {
  --tblr-alert-color: #f4f6fa; }

.alert-dark {
  --tblr-alert-color: #232e3c; }

.alert-icon {
  color: var(--tblr-alert-color);
  width: 1.5rem !important;
  height: 1.5rem !important;
  margin: -0.125rem 1rem -0.125rem 0; }

.alert-title {
  font-size: 0.875rem;
  line-height: 1.4285714;
C
codecalm 已提交
9111 9112 9113
  font-weight: 600;
  margin-bottom: .25rem;
  color: var(--tblr-alert-color); }
C
codecalm 已提交
9114

C
codecalm 已提交
9115
.avatar {
C
codecalm 已提交
9116
  --tblr-avatar-size: 2.5rem;
C
codecalm 已提交
9117
  position: relative;
C
codecalm 已提交
9118 9119 9120
  width: var(--tblr-avatar-size);
  height: var(--tblr-avatar-size);
  font-size: calc(var(--tblr-avatar-size) / 2.8571429);
M
Michal Wolny 已提交
9121
  font-weight: 500;
C
codecalm 已提交
9122 9123 9124
  display: inline-flex;
  align-items: center;
  justify-content: center;
C
codecalm 已提交
9125
  color: #656d77;
C
codecalm 已提交
9126 9127 9128 9129 9130 9131 9132
  text-align: center;
  text-transform: uppercase;
  vertical-align: bottom;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
C
codecalm 已提交
9133
  background: #f0f2f6 no-repeat center/cover;
C
codecalm 已提交
9134
  border-radius: 4px; }
C
codecalm 已提交
9135
  .avatar svg {
C
codecalm 已提交
9136 9137
    width: calc(var(--tblr-avatar-size) / 1.6666667);
    height: calc(var(--tblr-avatar-size) / 1.6666667); }
C
codecalm 已提交
9138 9139 9140 9141
  .avatar .badge {
    position: absolute;
    right: 0;
    bottom: 0;
C
codecalm 已提交
9142
    border-radius: 100rem;
C
codecalm 已提交
9143
    box-shadow: 0 0 0 2px #ffffff; }
C
codecalm 已提交
9144 9145 9146
  a.avatar {
    cursor: pointer; }

C
codecalm 已提交
9147
.avatar-rounded {
C
codecalm 已提交
9148
  border-radius: 100rem; }
C
codecalm 已提交
9149 9150 9151 9152

.avatar-xs {
  --tblr-avatar-size: 1.25rem; }

C
codecalm 已提交
9153 9154 9155 9156
.avatar-xs .badge:empty {
  width: 0.3125rem;
  height: 0.3125rem; }

C
codecalm 已提交
9157
.avatar-sm {
C
codecalm 已提交
9158
  --tblr-avatar-size: 2rem; }
C
codecalm 已提交
9159

C
codecalm 已提交
9160 9161 9162 9163
.avatar-sm .badge:empty {
  width: 0.5rem;
  height: 0.5rem; }

C
codecalm 已提交
9164
.avatar-md {
C
codecalm 已提交
9165
  --tblr-avatar-size: 3.75rem; }
C
codecalm 已提交
9166

C
codecalm 已提交
9167 9168 9169 9170
.avatar-md .badge:empty {
  width: 0.9375rem;
  height: 0.9375rem; }

C
codecalm 已提交
9171
.avatar-lg {
C
codecalm 已提交
9172
  --tblr-avatar-size: 5rem; }
C
codecalm 已提交
9173

C
codecalm 已提交
9174 9175 9176 9177
.avatar-lg .badge:empty {
  width: 1.25rem;
  height: 1.25rem; }

C
codecalm 已提交
9178
.avatar-xl {
C
codecalm 已提交
9179
  --tblr-avatar-size: 7rem; }
C
codecalm 已提交
9180

C
codecalm 已提交
9181 9182 9183 9184
.avatar-xl .badge:empty {
  width: 1.75rem;
  height: 1.75rem; }

C
codecalm 已提交
9185 9186 9187 9188 9189 9190 9191
.avatar-2xl {
  --tblr-avatar-size: 11rem; }

.avatar-2xl .badge:empty {
  width: 2.75rem;
  height: 2.75rem; }

C
codecalm 已提交
9192 9193 9194
.avatar-list {
  display: inline-flex;
  padding: 0;
C
codecalm 已提交
9195 9196
  margin: 0 0 -.5rem;
  flex-wrap: wrap; }
C
codecalm 已提交
9197 9198 9199 9200 9201 9202 9203 9204 9205
  .avatar-list .avatar {
    margin-bottom: .5rem; }
    .avatar-list .avatar:not(:last-child) {
      margin-right: .5rem; }
  .avatar-list a.avatar:hover {
    z-index: 1; }

.avatar-list-stacked .avatar {
  margin-right: -.5rem !important;
C
codecalm 已提交
9206
  box-shadow: 0 0 0 2px #ffffff; }
C
codecalm 已提交
9207
  .card-footer .avatar-list-stacked .avatar {
C
codecalm 已提交
9208
    box-shadow: 0 0 0 2px #ffffff; }
C
codecalm 已提交
9209 9210 9211 9212

.avatar-upload {
  width: 4rem;
  height: 4rem;
C
codecalm 已提交
9213
  border: 1px dashed #e6e8e9;
C
codecalm 已提交
9214 9215 9216 9217 9218 9219 9220 9221 9222 9223 9224 9225 9226 9227 9228 9229 9230
  background: #ffffff;
  flex-direction: column;
  transition: .3s color, .3s background-color; }
  .avatar-upload svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke-width: 1; }
  .avatar-upload:hover {
    border-color: #206bc4;
    color: #206bc4;
    text-decoration: none; }

.avatar-upload-text {
  font-size: 0.625rem;
  line-height: 1;
  margin-top: .25rem; }

C
codecalm 已提交
9231
.page-cover ~ * .page-avatar {
9232
  margin-top: calc(calc(-1 * calc(var(--tblr-avatar-size) * .5)) - 1.25rem);
C
codecalm 已提交
9233 9234
  box-shadow: 0 0 0 0.25rem #f4f6fa; }

C
codecalm 已提交
9235 9236 9237
.badge {
  display: inline-flex;
  justify-content: center;
C
codecalm 已提交
9238
  align-items: center;
C
codecalm 已提交
9239
  background: #c6cad0;
C
codecalm 已提交
9240 9241 9242 9243
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
C
codecalm 已提交
9244 9245 9246 9247
          user-select: none;
  padding: calc(.25rem - 1px) 0.25rem;
  height: 1.25rem;
  border: 1px solid transparent;
C
codecalm 已提交
9248 9249 9250 9251
  min-width: 1.25rem;
  font-weight: 600;
  font-size: 0.625rem;
  letter-spacing: .04em;
C
codecalm 已提交
9252
  text-transform: uppercase; }
C
codecalm 已提交
9253 9254 9255 9256 9257 9258 9259 9260 9261
  a.badge {
    color: #ffffff; }
  .badge:empty {
    display: inline-block;
    width: 0.5rem;
    height: 0.5rem;
    min-width: 0;
    min-height: auto;
    padding: 0;
C
codecalm 已提交
9262
    border-radius: 100rem; }
C
codecalm 已提交
9263 9264 9265 9266 9267
  .badge .avatar {
    box-sizing: content-box;
    width: 1.25rem;
    height: 1.25rem;
    margin: 0 .5rem 0 -.5rem; }
C
codecalm 已提交
9268 9269 9270 9271 9272
  .badge .icon {
    width: 1em;
    height: 1em;
    font-size: 1rem;
    margin: 0 .25rem 0 0; }
C
codecalm 已提交
9273 9274 9275 9276 9277 9278 9279 9280 9281 9282 9283 9284 9285

.badge-outline {
  background-color: transparent;
  border: 1px solid currentColor; }

.badge-pill {
  border-radius: 100px;
  min-width: 1.75em; }

.breadcrumb {
  padding: 0;
  margin: 0;
  background: transparent; }
C
codecalm 已提交
9286 9287 9288 9289
  .breadcrumb a {
    color: #656d77; }
    .breadcrumb a:hover {
      text-decoration: underline; }
C
codecalm 已提交
9290 9291 9292 9293 9294 9295 9296 9297 9298 9299 9300 9301 9302 9303 9304 9305 9306

.breadcrumb-item.active a {
  color: inherit;
  pointer-events: none; }

.breadcrumb-dots .breadcrumb-item + .breadcrumb-item:before {
  content: "·"; }

.breadcrumb-arrows .breadcrumb-item + .breadcrumb-item:before {
  content: "›"; }

.breadcrumb-bullets .breadcrumb-item + .breadcrumb-item:before {
  content: "•"; }

.btn {
  display: inline-flex;
  align-items: center;
C
codecalm 已提交
9307 9308 9309
  justify-content: center;
  color: #232e3c;
  background-color: #ffffff;
C
codecalm 已提交
9310 9311
  border-color: rgba(101, 109, 119, 0.24);
  white-space: nowrap; }
C
codecalm 已提交
9312 9313
  .btn:hover {
    color: #232e3c;
C
codecalm 已提交
9314 9315
    border-color: #a7abb1;
    background-color: #f4f6fa; }
C
codecalm 已提交
9316 9317 9318
  .btn:focus {
    border-color: rgba(var(--tblr-btn-color, 32, 107, 196), 0.5);
    box-shadow: 0 0 0 0.25rem rgba(var(--tblr-btn-color, 32, 107, 196), 0.25); }
C
codecalm 已提交
9319 9320
  .btn:disabled, .btn.disabled {
    cursor: not-allowed; }
C
codecalm 已提交
9321
  .btn .icon {
C
codecalm 已提交
9322 9323
    width: 1.25rem;
    height: 1.25rem;
C
codecalm 已提交
9324
    min-width: 1.25rem;
C
codecalm 已提交
9325
    margin: 0 .5rem 0 -.25rem;
C
codecalm 已提交
9326 9327
    vertical-align: bottom;
    color: #656d77; }
C
codecalm 已提交
9328 9329 9330 9331
  .btn .avatar {
    width: 1.25rem;
    height: 1.25rem;
    vertical-align: text-top;
C
codecalm 已提交
9332
    margin: 0 .5rem 0 -.25rem; }
C
codecalm 已提交
9333
  .btn .icon-right {
C
codecalm 已提交
9334
    margin: 0 -.25rem 0 .5rem; }
C
codecalm 已提交
9335 9336 9337
  .btn .badge {
    top: auto; }

C
codecalm 已提交
9338
.btn-primary, .btn-secondary, .btn-success, .btn-info, .btn-warning, .btn-danger, .btn-light, .btn-dark, .btn-blue, .btn-azure, .btn-indigo, .btn-purple, .btn-pink, .btn-red, .btn-orange, .btn-yellow, .btn-lime, .btn-green, .btn-teal, .btn-cyan, .btn-facebook, .btn-twitter, .btn-linkedin, .btn-google, .btn-youtube, .btn-vimeo, .btn-dribbble, .btn-github, .btn-instagram, .btn-pinterest, .btn-vk, .btn-rss, .btn-flickr, .btn-bitbucket, .btn-tabler {
C
codecalm 已提交
9339 9340
  background-color: rgba(var(--tblr-btn-color), 1);
  color: var(--tblr-btn-color-text); }
C
codecalm 已提交
9341
  .btn-primary .icon, .btn-secondary .icon, .btn-success .icon, .btn-info .icon, .btn-warning .icon, .btn-danger .icon, .btn-light .icon, .btn-dark .icon, .btn-blue .icon, .btn-azure .icon, .btn-indigo .icon, .btn-purple .icon, .btn-pink .icon, .btn-red .icon, .btn-orange .icon, .btn-yellow .icon, .btn-lime .icon, .btn-green .icon, .btn-teal .icon, .btn-cyan .icon, .btn-facebook .icon, .btn-twitter .icon, .btn-linkedin .icon, .btn-google .icon, .btn-youtube .icon, .btn-vimeo .icon, .btn-dribbble .icon, .btn-github .icon, .btn-instagram .icon, .btn-pinterest .icon, .btn-vk .icon, .btn-rss .icon, .btn-flickr .icon, .btn-bitbucket .icon, .btn-tabler .icon {
C
codecalm 已提交
9342
    color: inherit; }
C
codecalm 已提交
9343
  .btn-primary:hover, .btn-secondary:hover, .btn-success:hover, .btn-info:hover, .btn-warning:hover, .btn-danger:hover, .btn-light:hover, .btn-dark:hover, .btn-blue:hover, .btn-azure:hover, .btn-indigo:hover, .btn-purple:hover, .btn-pink:hover, .btn-red:hover, .btn-orange:hover, .btn-yellow:hover, .btn-lime:hover, .btn-green:hover, .btn-teal:hover, .btn-cyan:hover, .btn-facebook:hover, .btn-twitter:hover, .btn-linkedin:hover, .btn-google:hover, .btn-youtube:hover, .btn-vimeo:hover, .btn-dribbble:hover, .btn-github:hover, .btn-instagram:hover, .btn-pinterest:hover, .btn-vk:hover, .btn-rss:hover, .btn-flickr:hover, .btn-bitbucket:hover, .btn-tabler:hover {
C
codecalm 已提交
9344 9345 9346 9347
    color: var(--tblr-btn-color-text);
    background: rgba(var(--tblr-btn-color-darker), 1);
    border-color: transparent; }

C
codecalm 已提交
9348
.btn-outline-primary, .btn-outline-secondary, .btn-outline-success, .btn-outline-info, .btn-outline-warning, .btn-outline-danger, .btn-outline-light, .btn-outline-dark, .btn-outline-blue, .btn-outline-azure, .btn-outline-indigo, .btn-outline-purple, .btn-outline-pink, .btn-outline-red, .btn-outline-orange, .btn-outline-yellow, .btn-outline-lime, .btn-outline-green, .btn-outline-teal, .btn-outline-cyan, .btn-outline-facebook, .btn-outline-twitter, .btn-outline-linkedin, .btn-outline-google, .btn-outline-youtube, .btn-outline-vimeo, .btn-outline-dribbble, .btn-outline-github, .btn-outline-instagram, .btn-outline-pinterest, .btn-outline-vk, .btn-outline-rss, .btn-outline-flickr, .btn-outline-bitbucket, .btn-outline-tabler {
C
codecalm 已提交
9349 9350
  background-color: transparent;
  color: rgba(var(--tblr-btn-color), 1);
C
codecalm 已提交
9351
  border-color: rgba(101, 109, 119, 0.16); }
C
codecalm 已提交
9352
  .btn-outline-primary .icon, .btn-outline-secondary .icon, .btn-outline-success .icon, .btn-outline-info .icon, .btn-outline-warning .icon, .btn-outline-danger .icon, .btn-outline-light .icon, .btn-outline-dark .icon, .btn-outline-blue .icon, .btn-outline-azure .icon, .btn-outline-indigo .icon, .btn-outline-purple .icon, .btn-outline-pink .icon, .btn-outline-red .icon, .btn-outline-orange .icon, .btn-outline-yellow .icon, .btn-outline-lime .icon, .btn-outline-green .icon, .btn-outline-teal .icon, .btn-outline-cyan .icon, .btn-outline-facebook .icon, .btn-outline-twitter .icon, .btn-outline-linkedin .icon, .btn-outline-google .icon, .btn-outline-youtube .icon, .btn-outline-vimeo .icon, .btn-outline-dribbble .icon, .btn-outline-github .icon, .btn-outline-instagram .icon, .btn-outline-pinterest .icon, .btn-outline-vk .icon, .btn-outline-rss .icon, .btn-outline-flickr .icon, .btn-outline-bitbucket .icon, .btn-outline-tabler .icon {
C
codecalm 已提交
9353
    color: inherit; }
C
codecalm 已提交
9354
  .btn-outline-primary:hover, .btn-outline-secondary:hover, .btn-outline-success:hover, .btn-outline-info:hover, .btn-outline-warning:hover, .btn-outline-danger:hover, .btn-outline-light:hover, .btn-outline-dark:hover, .btn-outline-blue:hover, .btn-outline-azure:hover, .btn-outline-indigo:hover, .btn-outline-purple:hover, .btn-outline-pink:hover, .btn-outline-red:hover, .btn-outline-orange:hover, .btn-outline-yellow:hover, .btn-outline-lime:hover, .btn-outline-green:hover, .btn-outline-teal:hover, .btn-outline-cyan:hover, .btn-outline-facebook:hover, .btn-outline-twitter:hover, .btn-outline-linkedin:hover, .btn-outline-google:hover, .btn-outline-youtube:hover, .btn-outline-vimeo:hover, .btn-outline-dribbble:hover, .btn-outline-github:hover, .btn-outline-instagram:hover, .btn-outline-pinterest:hover, .btn-outline-vk:hover, .btn-outline-rss:hover, .btn-outline-flickr:hover, .btn-outline-bitbucket:hover, .btn-outline-tabler:hover {
C
codecalm 已提交
9355 9356 9357 9358
    background-color: rgba(var(--tblr-btn-color), 1);
    color: var(--tblr-btn-color-text);
    border-color: rgba(var(--tblr-btn-color), 1); }

C
codecalm 已提交
9359
.btn-ghost-primary, .btn-ghost-secondary, .btn-ghost-success, .btn-ghost-info, .btn-ghost-warning, .btn-ghost-danger, .btn-ghost-light, .btn-ghost-dark, .btn-ghost-blue, .btn-ghost-azure, .btn-ghost-indigo, .btn-ghost-purple, .btn-ghost-pink, .btn-ghost-red, .btn-ghost-orange, .btn-ghost-yellow, .btn-ghost-lime, .btn-ghost-green, .btn-ghost-teal, .btn-ghost-cyan, .btn-ghost-facebook, .btn-ghost-twitter, .btn-ghost-linkedin, .btn-ghost-google, .btn-ghost-youtube, .btn-ghost-vimeo, .btn-ghost-dribbble, .btn-ghost-github, .btn-ghost-instagram, .btn-ghost-pinterest, .btn-ghost-vk, .btn-ghost-rss, .btn-ghost-flickr, .btn-ghost-bitbucket, .btn-ghost-tabler {
C
codecalm 已提交
9360 9361 9362
  background: transparent;
  color: rgba(var(--tblr-btn-color), 1);
  border-color: transparent; }
C
codecalm 已提交
9363
  .btn-ghost-primary:hover, .btn-ghost-secondary:hover, .btn-ghost-success:hover, .btn-ghost-info:hover, .btn-ghost-warning:hover, .btn-ghost-danger:hover, .btn-ghost-light:hover, .btn-ghost-dark:hover, .btn-ghost-blue:hover, .btn-ghost-azure:hover, .btn-ghost-indigo:hover, .btn-ghost-purple:hover, .btn-ghost-pink:hover, .btn-ghost-red:hover, .btn-ghost-orange:hover, .btn-ghost-yellow:hover, .btn-ghost-lime:hover, .btn-ghost-green:hover, .btn-ghost-teal:hover, .btn-ghost-cyan:hover, .btn-ghost-facebook:hover, .btn-ghost-twitter:hover, .btn-ghost-linkedin:hover, .btn-ghost-google:hover, .btn-ghost-youtube:hover, .btn-ghost-vimeo:hover, .btn-ghost-dribbble:hover, .btn-ghost-github:hover, .btn-ghost-instagram:hover, .btn-ghost-pinterest:hover, .btn-ghost-vk:hover, .btn-ghost-rss:hover, .btn-ghost-flickr:hover, .btn-ghost-bitbucket:hover, .btn-ghost-tabler:hover {
C
codecalm 已提交
9364 9365 9366 9367 9368 9369 9370 9371
    background-color: rgba(var(--tblr-btn-color), 1);
    color: var(--tblr-btn-color-text);
    border-color: rgba(var(--tblr-btn-color), 1); }

.btn-link {
  color: #206bc4;
  background-color: transparent;
  border-color: transparent; }
C
codecalm 已提交
9372 9373
  .btn-link .icon {
    color: inherit; }
C
codecalm 已提交
9374 9375 9376
  .btn-link:hover {
    color: #1a569d;
    border-color: transparent; }
C
codecalm 已提交
9377 9378 9379 9380 9381 9382 9383 9384 9385 9386 9387 9388 9389 9390

.btn-lg svg.icon, .btn-group-lg > .btn svg.icon {
  stroke-width: 2; }

.btn-pill {
  padding-right: 1.5em;
  padding-left: 1.5em;
  border-radius: 10rem; }
  .btn-pill[class*="btn-icon"] {
    padding: 0.375rem 15px; }

.btn-icon {
  min-width: calc(2.125rem + 2px); }
  .btn-icon.btn-sm, .btn-group-sm > .btn-icon.btn {
C
codecalm 已提交
9391
    min-width: calc(1.3214286rem + 2px); }
C
codecalm 已提交
9392 9393 9394 9395 9396 9397 9398 9399 9400 9401
  .btn-icon .icon {
    margin: 0 -1em; }

.btn-square {
  border-radius: 0; }

.btn-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -.5rem !important;
C
codecalm 已提交
9402
  margin-right: -.5rem; }
C
codecalm 已提交
9403
  .btn-list > * {
C
codecalm 已提交
9404
    margin: 0 .5rem .5rem 0 !important; }
C
codecalm 已提交
9405 9406 9407 9408 9409 9410

.btn-floating {
  position: fixed;
  z-index: 1030;
  bottom: 1.5rem;
  right: 1.5rem;
C
codecalm 已提交
9411
  border-radius: 100rem; }
C
codecalm 已提交
9412 9413 9414 9415 9416 9417 9418 9419 9420 9421 9422 9423

.btn-loading {
  position: relative;
  color: transparent !important;
  text-shadow: none !important;
  pointer-events: none; }
  .btn-loading:after {
    content: '';
    display: inline-block;
    vertical-align: text-bottom;
    border: 1px solid currentColor;
    border-right-color: transparent;
C
codecalm 已提交
9424
    border-radius: 100rem;
C
codecalm 已提交
9425 9426 9427 9428 9429 9430 9431 9432 9433
    color: #ffffff;
    position: absolute;
    width: 1rem;
    height: 1rem;
    left: calc(50% - .5rem);
    top: calc(50% - .5rem);
    -webkit-animation: spinner-border .75s linear infinite;
            animation: spinner-border .75s linear infinite; }

C
codecalm 已提交
9434 9435 9436 9437
.btn-primary,
.btn-outline-primary,
.btn-ghost-primary {
  --tblr-btn-color: 32, 107, 196;
M
Michal Wolny 已提交
9438
  --tblr-btn-color-darker: 29, 96, 176;
C
codecalm 已提交
9439
  --tblr-btn-color-text: #f4f6fa; }
C
codecalm 已提交
9440 9441 9442 9443

.btn-secondary,
.btn-outline-secondary,
.btn-ghost-secondary {
C
codecalm 已提交
9444
  --tblr-btn-color: 101, 109, 119;
M
Michal Wolny 已提交
9445
  --tblr-btn-color-darker: 91, 98, 107;
C
codecalm 已提交
9446
  --tblr-btn-color-text: #f4f6fa; }
C
codecalm 已提交
9447 9448 9449 9450

.btn-success,
.btn-outline-success,
.btn-ghost-success {
M
Michal Wolny 已提交
9451 9452
  --tblr-btn-color: 47, 179, 68;
  --tblr-btn-color-darker: 42, 161, 61;
C
codecalm 已提交
9453
  --tblr-btn-color-text: #f4f6fa; }
C
codecalm 已提交
9454 9455 9456 9457 9458

.btn-info,
.btn-outline-info,
.btn-ghost-info {
  --tblr-btn-color: 66, 153, 225;
M
Michal Wolny 已提交
9459
  --tblr-btn-color-darker: 59, 138, 203;
C
codecalm 已提交
9460
  --tblr-btn-color-text: #f4f6fa; }
C
codecalm 已提交
9461 9462 9463 9464

.btn-warning,
.btn-outline-warning,
.btn-ghost-warning {
M
Michal Wolny 已提交
9465 9466
  --tblr-btn-color: 247, 103, 7;
  --tblr-btn-color-darker: 222, 93, 6;
C
codecalm 已提交
9467
  --tblr-btn-color-text: #f4f6fa; }
C
codecalm 已提交
9468 9469 9470 9471

.btn-danger,
.btn-outline-danger,
.btn-ghost-danger {
M
Michal Wolny 已提交
9472 9473
  --tblr-btn-color: 214, 57, 57;
  --tblr-btn-color-darker: 193, 51, 51;
C
codecalm 已提交
9474
  --tblr-btn-color-text: #f4f6fa; }
C
codecalm 已提交
9475 9476 9477 9478

.btn-light,
.btn-outline-light,
.btn-ghost-light {
C
codecalm 已提交
9479
  --tblr-btn-color: 244, 246, 250;
M
Michal Wolny 已提交
9480
  --tblr-btn-color-darker: 220, 221, 225;
C
codecalm 已提交
9481 9482 9483 9484 9485 9486
  --tblr-btn-color-text: #232e3c; }

.btn-dark,
.btn-outline-dark,
.btn-ghost-dark {
  --tblr-btn-color: 35, 46, 60;
M
Michal Wolny 已提交
9487
  --tblr-btn-color-darker: 32, 41, 54;
C
codecalm 已提交
9488
  --tblr-btn-color-text: #f4f6fa; }
C
codecalm 已提交
9489 9490 9491 9492 9493

.btn-blue,
.btn-outline-blue,
.btn-ghost-blue {
  --tblr-btn-color: 32, 107, 196;
M
Michal Wolny 已提交
9494
  --tblr-btn-color-darker: 29, 96, 176;
C
codecalm 已提交
9495
  --tblr-btn-color-text: #f4f6fa; }
C
codecalm 已提交
9496 9497 9498 9499 9500

.btn-azure,
.btn-outline-azure,
.btn-ghost-azure {
  --tblr-btn-color: 66, 153, 225;
M
Michal Wolny 已提交
9501
  --tblr-btn-color-darker: 59, 138, 203;
C
codecalm 已提交
9502
  --tblr-btn-color-text: #f4f6fa; }
C
codecalm 已提交
9503 9504 9505 9506

.btn-indigo,
.btn-outline-indigo,
.btn-ghost-indigo {
M
Michal Wolny 已提交
9507 9508
  --tblr-btn-color: 66, 99, 235;
  --tblr-btn-color-darker: 59, 89, 212;
C
codecalm 已提交
9509
  --tblr-btn-color-text: #f4f6fa; }
C
codecalm 已提交
9510 9511 9512 9513

.btn-purple,
.btn-outline-purple,
.btn-ghost-purple {
M
Michal Wolny 已提交
9514 9515
  --tblr-btn-color: 174, 62, 201;
  --tblr-btn-color-darker: 157, 56, 181;
C
codecalm 已提交
9516
  --tblr-btn-color-text: #f4f6fa; }
C
codecalm 已提交
9517 9518 9519 9520

.btn-pink,
.btn-outline-pink,
.btn-ghost-pink {
M
Michal Wolny 已提交
9521 9522
  --tblr-btn-color: 214, 51, 108;
  --tblr-btn-color-darker: 193, 46, 97;
C
codecalm 已提交
9523
  --tblr-btn-color-text: #f4f6fa; }
C
codecalm 已提交
9524 9525 9526 9527

.btn-red,
.btn-outline-red,
.btn-ghost-red {
M
Michal Wolny 已提交
9528 9529
  --tblr-btn-color: 214, 57, 57;
  --tblr-btn-color-darker: 193, 51, 51;
C
codecalm 已提交
9530
  --tblr-btn-color-text: #f4f6fa; }
C
codecalm 已提交
9531 9532 9533 9534

.btn-orange,
.btn-outline-orange,
.btn-ghost-orange {
M
Michal Wolny 已提交
9535 9536
  --tblr-btn-color: 247, 103, 7;
  --tblr-btn-color-darker: 222, 93, 6;
C
codecalm 已提交
9537
  --tblr-btn-color-text: #f4f6fa; }
C
codecalm 已提交
9538 9539 9540 9541

.btn-yellow,
.btn-outline-yellow,
.btn-ghost-yellow {
M
Michal Wolny 已提交
9542 9543
  --tblr-btn-color: 245, 159, 0;
  --tblr-btn-color-darker: 221, 143, 0;
C
codecalm 已提交
9544
  --tblr-btn-color-text: #f4f6fa; }
C
codecalm 已提交
9545 9546 9547 9548

.btn-lime,
.btn-outline-lime,
.btn-ghost-lime {
M
Michal Wolny 已提交
9549 9550
  --tblr-btn-color: 116, 184, 22;
  --tblr-btn-color-darker: 104, 166, 20;
C
codecalm 已提交
9551
  --tblr-btn-color-text: #f4f6fa; }
C
codecalm 已提交
9552 9553 9554 9555

.btn-green,
.btn-outline-green,
.btn-ghost-green {
M
Michal Wolny 已提交
9556 9557
  --tblr-btn-color: 47, 179, 68;
  --tblr-btn-color-darker: 42, 161, 61;
C
codecalm 已提交
9558
  --tblr-btn-color-text: #f4f6fa; }
C
codecalm 已提交
9559 9560 9561 9562

.btn-teal,
.btn-outline-teal,
.btn-ghost-teal {
M
Michal Wolny 已提交
9563 9564
  --tblr-btn-color: 12, 166, 120;
  --tblr-btn-color-darker: 11, 149, 108;
C
codecalm 已提交
9565
  --tblr-btn-color-text: #f4f6fa; }
C
codecalm 已提交
9566 9567 9568 9569 9570

.btn-cyan,
.btn-outline-cyan,
.btn-ghost-cyan {
  --tblr-btn-color: 23, 162, 184;
M
Michal Wolny 已提交
9571
  --tblr-btn-color-darker: 21, 146, 166;
C
codecalm 已提交
9572
  --tblr-btn-color-text: #f4f6fa; }
C
codecalm 已提交
9573 9574 9575 9576 9577

.btn-facebook,
.btn-outline-facebook,
.btn-ghost-facebook {
  --tblr-btn-color: 59, 89, 152;
M
Michal Wolny 已提交
9578
  --tblr-btn-color-darker: 53, 80, 137;
C
codecalm 已提交
9579
  --tblr-btn-color-text: #f4f6fa; }
C
codecalm 已提交
9580 9581 9582 9583 9584

.btn-twitter,
.btn-outline-twitter,
.btn-ghost-twitter {
  --tblr-btn-color: 29, 161, 242;
M
Michal Wolny 已提交
9585
  --tblr-btn-color-darker: 26, 145, 218;
C
codecalm 已提交
9586
  --tblr-btn-color-text: #f4f6fa; }
C
codecalm 已提交
9587

C
codecalm 已提交
9588 9589 9590 9591 9592 9593 9594
.btn-linkedin,
.btn-outline-linkedin,
.btn-ghost-linkedin {
  --tblr-btn-color: 10, 102, 194;
  --tblr-btn-color-darker: 9, 92, 175;
  --tblr-btn-color-text: #f4f6fa; }

C
codecalm 已提交
9595 9596 9597 9598
.btn-google,
.btn-outline-google,
.btn-ghost-google {
  --tblr-btn-color: 220, 78, 65;
M
Michal Wolny 已提交
9599
  --tblr-btn-color-darker: 198, 70, 59;
C
codecalm 已提交
9600
  --tblr-btn-color-text: #f4f6fa; }
C
codecalm 已提交
9601 9602 9603 9604 9605

.btn-youtube,
.btn-outline-youtube,
.btn-ghost-youtube {
  --tblr-btn-color: 255, 0, 0;
M
Michal Wolny 已提交
9606
  --tblr-btn-color-darker: 230, 0, 0;
C
codecalm 已提交
9607
  --tblr-btn-color-text: #f4f6fa; }
C
codecalm 已提交
9608 9609 9610 9611 9612

.btn-vimeo,
.btn-outline-vimeo,
.btn-ghost-vimeo {
  --tblr-btn-color: 26, 183, 234;
M
Michal Wolny 已提交
9613
  --tblr-btn-color-darker: 23, 165, 211;
C
codecalm 已提交
9614
  --tblr-btn-color-text: #f4f6fa; }
C
codecalm 已提交
9615 9616 9617 9618 9619

.btn-dribbble,
.btn-outline-dribbble,
.btn-ghost-dribbble {
  --tblr-btn-color: 234, 76, 137;
M
Michal Wolny 已提交
9620
  --tblr-btn-color-darker: 211, 68, 123;
C
codecalm 已提交
9621
  --tblr-btn-color-text: #f4f6fa; }
C
codecalm 已提交
9622 9623 9624 9625 9626

.btn-github,
.btn-outline-github,
.btn-ghost-github {
  --tblr-btn-color: 24, 23, 23;
M
Michal Wolny 已提交
9627
  --tblr-btn-color-darker: 22, 21, 21;
C
codecalm 已提交
9628
  --tblr-btn-color-text: #f4f6fa; }
C
codecalm 已提交
9629 9630 9631 9632 9633

.btn-instagram,
.btn-outline-instagram,
.btn-ghost-instagram {
  --tblr-btn-color: 228, 64, 95;
M
Michal Wolny 已提交
9634
  --tblr-btn-color-darker: 205, 58, 86;
C
codecalm 已提交
9635
  --tblr-btn-color-text: #f4f6fa; }
C
codecalm 已提交
9636 9637 9638 9639 9640

.btn-pinterest,
.btn-outline-pinterest,
.btn-ghost-pinterest {
  --tblr-btn-color: 189, 8, 28;
M
Michal Wolny 已提交
9641
  --tblr-btn-color-darker: 170, 7, 25;
C
codecalm 已提交
9642
  --tblr-btn-color-text: #f4f6fa; }
C
codecalm 已提交
9643 9644 9645 9646 9647

.btn-vk,
.btn-outline-vk,
.btn-ghost-vk {
  --tblr-btn-color: 99, 131, 168;
M
Michal Wolny 已提交
9648
  --tblr-btn-color-darker: 89, 118, 151;
C
codecalm 已提交
9649
  --tblr-btn-color-text: #f4f6fa; }
C
codecalm 已提交
9650 9651 9652 9653 9654

.btn-rss,
.btn-outline-rss,
.btn-ghost-rss {
  --tblr-btn-color: 255, 165, 0;
M
Michal Wolny 已提交
9655
  --tblr-btn-color-darker: 230, 149, 0;
C
codecalm 已提交
9656
  --tblr-btn-color-text: #f4f6fa; }
C
codecalm 已提交
9657 9658 9659 9660 9661

.btn-flickr,
.btn-outline-flickr,
.btn-ghost-flickr {
  --tblr-btn-color: 0, 99, 220;
M
Michal Wolny 已提交
9662
  --tblr-btn-color-darker: 0, 89, 198;
C
codecalm 已提交
9663
  --tblr-btn-color-text: #f4f6fa; }
C
codecalm 已提交
9664 9665 9666 9667 9668

.btn-bitbucket,
.btn-outline-bitbucket,
.btn-ghost-bitbucket {
  --tblr-btn-color: 0, 82, 204;
M
Michal Wolny 已提交
9669
  --tblr-btn-color-darker: 0, 74, 184;
C
codecalm 已提交
9670
  --tblr-btn-color-text: #f4f6fa; }
C
codecalm 已提交
9671 9672 9673 9674 9675

.btn-tabler,
.btn-outline-tabler,
.btn-ghost-tabler {
  --tblr-btn-color: 32, 107, 196;
M
Michal Wolny 已提交
9676
  --tblr-btn-color-darker: 29, 96, 176;
C
codecalm 已提交
9677
  --tblr-btn-color-text: #f4f6fa; }
C
codecalm 已提交
9678

C
codecalm 已提交
9679 9680
.calendar {
  display: block;
C
codecalm 已提交
9681
  font-size: 0.765625rem;
C
codecalm 已提交
9682
  border: 1px solid #e6e8e9;
C
codecalm 已提交
9683
  border-radius: 4px; }
C
codecalm 已提交
9684 9685 9686 9687 9688 9689 9690 9691 9692 9693 9694 9695 9696 9697 9698 9699 9700

.calendar-nav {
  display: flex;
  align-items: center; }

.calendar-title {
  flex: 1;
  text-align: center; }

.calendar-body,
.calendar-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: .5rem 0; }

.calendar-header {
C
codecalm 已提交
9701
  color: #656d77; }
C
codecalm 已提交
9702 9703

.calendar-date {
C
codecalm 已提交
9704 9705
  flex: 0 0 14.2857143%;
  max-width: 14.2857143%;
C
codecalm 已提交
9706 9707 9708 9709 9710 9711 9712 9713 9714 9715 9716 9717 9718 9719 9720 9721 9722 9723 9724
  padding: .2rem;
  text-align: center;
  border: 0; }
  .calendar-date.prev-month, .calendar-date.next-month {
    opacity: .25; }
  .calendar-date .date-item {
    position: relative;
    display: inline-block;
    width: 1.4rem;
    height: 1.4rem;
    line-height: 1.4rem;
    color: #66758c;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    background: 0 0;
    border: 1px solid transparent;
C
codecalm 已提交
9725
    border-radius: 100rem;
C
codecalm 已提交
9726 9727 9728 9729 9730 9731
    outline: 0;
    transition: background .3s, border .3s, box-shadow .32s, color .3s; }
    .calendar-date .date-item:hover {
      color: #206bc4;
      text-decoration: none;
      background: #fefeff;
C
codecalm 已提交
9732
      border-color: #e6e8e9; }
C
codecalm 已提交
9733 9734
  .calendar-date .date-today {
    color: #206bc4;
C
codecalm 已提交
9735
    border-color: #e6e8e9; }
C
codecalm 已提交
9736 9737 9738 9739 9740 9741 9742 9743 9744 9745 9746 9747 9748

.calendar-range {
  position: relative; }
  .calendar-range:before {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    height: 1.4rem;
    content: "";
    background: rgba(32, 107, 196, 0.1);
    transform: translateY(-50%); }
  .calendar-range.range-start .date-item, .calendar-range.range-end .date-item {
C
codecalm 已提交
9749
    color: #ffffff;
C
codecalm 已提交
9750 9751 9752 9753 9754 9755 9756
    background: #206bc4;
    border-color: #206bc4; }
  .calendar-range.range-start:before {
    left: 50%; }
  .calendar-range.range-end:before {
    right: 50%; }

C
codecalm 已提交
9757 9758 9759 9760 9761 9762
.border-0 .card, .border-0 .nav-link {
  border: 0 !important; }

.border-0 .card-stacked::after {
  border: 1px solid rgba(101, 109, 119, 0.07) !important; }

C
codecalm 已提交
9763
.card {
C
codecalm 已提交
9764 9765
  box-shadow: rgba(35, 46, 60, 0.04) 0 2px 4px 0;
  border: 1px solid rgba(101, 109, 119, 0.16); }
C
codecalm 已提交
9766 9767 9768 9769 9770 9771 9772 9773 9774
  @media print {
    .card {
      border: none;
      box-shadow: none; } }
  a.card {
    color: inherit;
    transition: .3s box-shadow; }
    a.card:hover {
      text-decoration: none;
C
codecalm 已提交
9775
      box-shadow: rgba(35, 46, 60, 0.16) 0 2px 16px 0; }
C
codecalm 已提交
9776

C
codecalm 已提交
9777
.card-img,
C
codecalm 已提交
9778
.card-img-start {
C
codecalm 已提交
9779 9780
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px; }
C
codecalm 已提交
9781 9782

.card-img,
C
codecalm 已提交
9783
.card-img-end {
C
codecalm 已提交
9784 9785
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px; }
C
codecalm 已提交
9786

C
codecalm 已提交
9787 9788 9789 9790 9791 9792 9793 9794
.card-img-overlay {
  display: flex;
  flex-direction: column;
  justify-content: flex-end; }

.card-img-overlay-dark {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%); }

C
codecalm 已提交
9795 9796 9797 9798 9799 9800 9801 9802
.card-inactive {
  pointer-events: none;
  box-shadow: none; }
  .card-inactive .card-body {
    opacity: .64; }

.card-active {
  position: relative;
C
codecalm 已提交
9803 9804
  background-color: rgba(32, 107, 196, 0.03);
  z-index: 1; }
C
codecalm 已提交
9805 9806 9807 9808 9809 9810 9811 9812 9813 9814 9815 9816 9817 9818 9819 9820 9821 9822
  .card-active:before {
    position: absolute;
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    content: "";
    border: 1px solid #206bc4;
    border-radius: inherit; }

.card-link {
  color: inherit; }
  .card-link:hover {
    color: inherit;
    text-decoration: none;
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.08); }

.card-btn {
C
codecalm 已提交
9823 9824 9825
  display: flex;
  align-items: center;
  justify-content: center;
C
codecalm 已提交
9826 9827
  padding: 1rem 1rem;
  text-align: center;
C
codecalm 已提交
9828 9829 9830 9831 9832
  transition: .3s background;
  border-top: 1px solid #e6e8e9;
  flex: 1;
  color: inherit;
  font-weight: 500; }
C
codecalm 已提交
9833 9834 9835
  .card-btn:hover {
    text-decoration: none;
    background: rgba(32, 107, 196, 0.06); }
C
codecalm 已提交
9836 9837
  .card-btn:not(:first-child) {
    border-left: 1px solid #e6e8e9; }
C
codecalm 已提交
9838 9839 9840 9841 9842 9843 9844 9845 9846 9847 9848

.card-stacked {
  position: relative; }
  .card-stacked:after {
    position: absolute;
    top: -5px;
    right: 5px;
    left: 5px;
    height: 5px;
    content: "";
    background: #ffffff;
C
codecalm 已提交
9849
    border: 1px solid rgba(101, 109, 119, 0.16);
C
codecalm 已提交
9850
    border-radius: 4px 4px 0 0; }
C
codecalm 已提交
9851 9852 9853 9854 9855 9856 9857 9858 9859 9860 9861 9862

.card-cover {
  position: relative;
  padding: 1rem 1rem;
  background: #666666 no-repeat center/cover; }
  .card-cover:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
M
Michal Wolny 已提交
9863
    background: rgba(35, 46, 60, 0.48); }
C
codecalm 已提交
9864
  .card-cover:first-child, .card-cover:first-child:before {
C
codecalm 已提交
9865
    border-radius: 4px 4px 0 0; }
C
codecalm 已提交
9866 9867 9868 9869 9870 9871 9872 9873 9874 9875 9876 9877

.card-cover-blurred:before {
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px); }

.card-actions {
  margin-left: auto;
  font-size: 0.75rem; }
  .card-actions a {
    text-decoration: none; }

.card-header {
C
codecalm 已提交
9878
  color: inherit;
C
codecalm 已提交
9879 9880 9881 9882 9883 9884 9885 9886 9887 9888 9889
  display: flex;
  align-items: center;
  background: transparent; }

.card-header-tabs {
  flex: 1;
  margin: -1rem -1rem; }

.card-header-pills {
  flex: 1; }

C
codecalm 已提交
9890 9891 9892
/*
Card footer
 */
C
codecalm 已提交
9893
.card-footer {
M
Michal Wolny 已提交
9894
  margin-top: auto; }
C
codecalm 已提交
9895

C
codecalm 已提交
9896 9897 9898 9899
.card-footer-gray {
  border-top: 0;
  background: rgba(35, 46, 60, 0.024); }

C
codecalm 已提交
9900 9901 9902 9903 9904 9905 9906 9907
.card-progress {
  height: .25rem; }
  .card-progress:last-child {
    border-radius: 0 0 2px 2px; }
  .card-progress:first-child {
    border-radius: 2px 2px 0 0; }

.card-meta {
C
codecalm 已提交
9908
  color: #656d77; }
C
codecalm 已提交
9909 9910 9911 9912 9913 9914 9915 9916 9917 9918 9919 9920 9921 9922

.card-title {
  display: block;
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem; }
  a.card-title:hover {
    color: inherit; }
  .card-header .card-title {
    margin: .125rem 0; }

.card-subtitle {
  margin-top: -1rem;
C
codecalm 已提交
9923
  margin-bottom: 1.25rem;
C
codecalm 已提交
9924
  color: #656d77; }
C
codecalm 已提交
9925 9926
  .card-header .card-subtitle {
    margin: -.125rem 0 0; }
C
codecalm 已提交
9927 9928 9929 9930 9931 9932 9933

.card-body > :last-child {
  margin-bottom: 0; }

.card-sm > .card-body {
  padding: .75rem; }

C
codecalm 已提交
9934
@media (min-width: 768px) {
C
codecalm 已提交
9935
  .card-md > .card-body {
M
Michal Wolny 已提交
9936
    padding: 2rem; } }
C
codecalm 已提交
9937

C
codecalm 已提交
9938
@media (min-width: 768px) {
C
codecalm 已提交
9939 9940 9941
  .card-lg > .card-body {
    padding: 2rem; } }

C
codecalm 已提交
9942
@media (min-width: 992px) {
C
codecalm 已提交
9943 9944 9945 9946 9947 9948 9949 9950
  .card-lg > .card-body {
    padding: 4rem; } }

@media print {
  .card-body {
    padding: 0; } }

.card-body + .card-body {
C
codecalm 已提交
9951
  border-top: 1px solid #e6e8e9; }
C
codecalm 已提交
9952 9953 9954 9955 9956 9957 9958 9959 9960 9961 9962 9963 9964 9965 9966 9967 9968

.card-body-scrollable {
  overflow: auto; }

/**
Card optinos
 */
.card-options {
  top: 1.5rem;
  right: .75rem;
  display: flex;
  margin-left: auto; }

.card-options-link {
  display: inline-block;
  min-width: 1rem;
  margin-left: .25rem;
C
codecalm 已提交
9969
  color: #656d77; }
C
codecalm 已提交
9970

M
Michal Wolny 已提交
9971
.card-dropdown {
C
codecalm 已提交
9972
  line-height: 1;
C
codecalm 已提交
9973
  color: #656d77; }
M
Michal Wolny 已提交
9974
  .card-dropdown .icon {
C
codecalm 已提交
9975 9976
    width: 1.5rem;
    height: 1.5rem;
C
codecalm 已提交
9977
    font-size: 1.5rem;
C
codecalm 已提交
9978 9979 9980 9981 9982 9983 9984 9985 9986 9987 9988
    stroke-width: 1; }

/**
Card status
 */
.card-status-top {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
C
codecalm 已提交
9989
  border-radius: 4px 4px 0 0; }
C
codecalm 已提交
9990

C
codecalm 已提交
9991
.card-status-start {
C
codecalm 已提交
9992 9993 9994 9995 9996
  position: absolute;
  right: auto;
  bottom: 0;
  width: 2px;
  height: 100%;
C
codecalm 已提交
9997
  border-radius: 4px 0 0 4px; }
C
codecalm 已提交
9998 9999 10000 10001 10002 10003 10004

.card-status-bottom {
  position: absolute;
  top: initial;
  bottom: 0;
  width: 100%;
  height: 2px;
C
codecalm 已提交
10005
  border-radius: 0 0 4px 4px; }
C
codecalm 已提交
10006 10007 10008 10009 10010

/**
Card table
 */
.card-table {
M
Michal Wolny 已提交
10011
  margin-bottom: 0 !important; }
C
codecalm 已提交
10012 10013 10014 10015 10016 10017 10018 10019 10020 10021 10022 10023 10024
  .card-table tr td:first-child,
  .card-table tr th:first-child {
    padding-left: 1rem; }
  .card-table tr td:last-child,
  .card-table tr th:last-child {
    padding-right: 1rem; }
  .card-table thead tr:first-child td,
  .card-table thead tr:first-child th {
    border-top: 0; }
  .card-table tbody tr:last-child td,
  .card-table tbody tr:last-child th {
    border-bottom: 0; }
  .card-body + .card-table {
C
codecalm 已提交
10025
    border-top: 1px solid #e6e8e9; }
C
codecalm 已提交
10026 10027 10028 10029 10030 10031 10032 10033 10034 10035

/*
Card code
 */
.card-code {
  padding: 0; }
  .card-code .highlight {
    margin: 0;
    border: 0; }
  .card-code pre {
M
Michal Wolny 已提交
10036 10037
    margin: 0 !important;
    border: 0 !important; }
C
codecalm 已提交
10038 10039 10040 10041 10042 10043 10044 10045 10046 10047 10048 10049 10050

/*
Card chart
 */
.card-chart {
  position: relative;
  z-index: 1;
  height: 3.5rem; }

/**
Card avatar
 */
.card-avatar {
C
codecalm 已提交
10051 10052 10053
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 0 0.25rem #ffffff;
10054
  margin-top: calc(-1 * calc(var(--tblr-avatar-size) * .5)); }
C
codecalm 已提交
10055 10056 10057 10058 10059

/*
Card list group
 */
.card-body + .card-list-group {
C
codecalm 已提交
10060
  border-top: 1px solid #e6e8e9; }
C
codecalm 已提交
10061 10062 10063 10064 10065 10066 10067 10068 10069 10070 10071 10072 10073 10074 10075

.card-list-group .list-group-item {
  padding-right: 1rem;
  padding-left: 1rem;
  border-right: 0;
  border-left: 0;
  border-radius: 0; }
  .card-list-group .list-group-item:last-child {
    border-bottom: 0; }
  .card-list-group .list-group-item:first-child {
    border-top: 0; }

/**
Card tabs
 */
C
codecalm 已提交
10076 10077 10078 10079 10080
.card-tabs .nav-tabs {
  position: relative;
  z-index: 1000;
  border-bottom: 0; }
  .card-tabs .nav-tabs .nav-link {
C
codecalm 已提交
10081
    background: #ffffff;
C
codecalm 已提交
10082
    border: 1px solid rgba(101, 109, 119, 0.16);
C
codecalm 已提交
10083
    border-bottom: 0; }
C
codecalm 已提交
10084
    .card-tabs .nav-tabs .nav-link.active, .card-tabs .nav-tabs .nav-link:active, .card-tabs .nav-tabs .nav-link:hover {
C
codecalm 已提交
10085
      border-color: rgba(101, 109, 119, 0.16); }
C
codecalm 已提交
10086 10087 10088
    .card-tabs .nav-tabs .nav-link.active {
      background: #ffffff; }
  .card-tabs .nav-tabs .nav-item:not(:first-child) .nav-link {
C
codecalm 已提交
10089
    border-top-left-radius: 0; }
C
codecalm 已提交
10090 10091 10092 10093 10094 10095 10096 10097 10098 10099 10100 10101
  .card-tabs .nav-tabs .nav-item:not(:last-child) .nav-link {
    border-top-right-radius: 0; }
  .card-tabs .nav-tabs .nav-item + .nav-item {
    margin-left: -1px; }

.card-tabs .nav-tabs-bottom {
  margin-bottom: 0; }
  .card-tabs .nav-tabs-bottom .nav-item {
    margin-top: -1px;
    margin-bottom: 0; }
    .card-tabs .nav-tabs-bottom .nav-item .nav-link {
      border-top-width: 0;
C
codecalm 已提交
10102
      border-bottom: 1px solid rgba(101, 109, 119, 0.16);
C
codecalm 已提交
10103 10104 10105 10106 10107 10108
      border-top-left-radius: 0;
      border-top-right-radius: 0; }

.card-tabs .card {
  margin: 0;
  border-top-left-radius: 0; }
C
codecalm 已提交
10109

C
codecalm 已提交
10110 10111 10112 10113
.btn-close {
  cursor: pointer; }
  .btn-close:focus {
    outline: none; }
C
codecalm 已提交
10114 10115 10116 10117 10118 10119 10120

.dropdown-menu {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
C
codecalm 已提交
10121
  margin: 0 !important; }
C
codecalm 已提交
10122 10123 10124 10125 10126 10127 10128 10129
  .dropdown-menu.card {
    padding: 0;
    min-width: 25rem;
    display: none; }
    .dropdown-menu.card.show {
      display: flex; }

.dropdown-item {
M
Michal Wolny 已提交
10130
  min-width: 11rem;
C
codecalm 已提交
10131 10132 10133
  display: flex;
  align-items: center;
  margin: 0;
C
codecalm 已提交
10134
  line-height: 1.4285714; }
C
codecalm 已提交
10135 10136

.dropdown-item-icon {
C
codecalm 已提交
10137
  width: 1.25rem !important;
C
codecalm 已提交
10138
  height: 1.25rem !important;
C
codecalm 已提交
10139
  margin-right: .5rem;
C
codecalm 已提交
10140 10141
  color: #656d77;
  opacity: 0.7;
C
codecalm 已提交
10142
  text-align: center; }
C
codecalm 已提交
10143

C
codecalm 已提交
10144 10145 10146 10147 10148 10149 10150 10151 10152
.dropdown-item-indicator {
  margin-right: .5rem;
  margin-left: -.25rem;
  height: 1.25rem;
  display: inline-flex;
  line-height: 1;
  vertical-align: bottom;
  align-items: center; }

C
codecalm 已提交
10153 10154
.dropdown-header {
  font-size: 0.625rem;
C
codecalm 已提交
10155
  font-weight: 600;
C
codecalm 已提交
10156 10157 10158
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.6;
C
codecalm 已提交
10159
  color: #656d77;
C
codecalm 已提交
10160 10161 10162 10163 10164
  padding-bottom: .25rem;
  pointer-events: none; }

.dropdown-menu-scrollable {
  height: auto;
C
codecalm 已提交
10165
  max-height: 13rem;
C
codecalm 已提交
10166 10167
  overflow-x: hidden; }

M
Michal Wolny 已提交
10168 10169 10170 10171 10172
.dropdown-menu-column {
  min-width: 11rem; }
  .dropdown-menu-column .dropdown-item {
    min-width: 0; }

C
codecalm 已提交
10173
.dropdown-menu-columns {
M
Michal Wolny 已提交
10174
  display: flex; }
C
codecalm 已提交
10175

C
codecalm 已提交
10176 10177 10178 10179 10180 10181 10182 10183 10184 10185 10186 10187 10188 10189 10190 10191
.dropdown-menu-arrow:before {
  content: "";
  position: absolute;
  top: -.25rem;
  left: .75rem;
  display: block;
  background: inherit;
  width: 14px;
  height: 14px;
  transform: rotate(45deg);
  transform-origin: center;
  border: 1px solid;
  border-color: inherit;
  z-index: -1;
  clip: rect(0px, 9px, 9px, 0px); }

C
codecalm 已提交
10192
.dropdown-menu-arrow.dropdown-menu-end:before {
C
codecalm 已提交
10193 10194
  right: .75rem;
  left: auto; }
C
codecalm 已提交
10195

C
codecalm 已提交
10196
.dropend > .dropdown-menu {
C
codecalm 已提交
10197
  margin-top: calc(-0.25rem - 1px);
M
Michal Wolny 已提交
10198
  margin-left: -.25rem; }
C
codecalm 已提交
10199

C
codecalm 已提交
10200
.dropend .dropdown-toggle:after {
C
codecalm 已提交
10201 10202 10203 10204 10205 10206 10207 10208 10209 10210 10211 10212 10213 10214 10215 10216 10217
  margin-left: auto; }

.dropdown-menu-card {
  padding: 0; }
  .dropdown-menu-card > .card {
    margin: 0;
    border: 0;
    box-shadow: none; }

.empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 1rem;
  text-align: center; }
C
codecalm 已提交
10218
  @media (min-width: 768px) {
C
codecalm 已提交
10219 10220
    .empty {
      padding: 3rem; } }
C
codecalm 已提交
10221 10222 10223 10224 10225 10226

.empty-icon {
  margin: 0 0 1rem;
  width: 3rem;
  height: 3rem;
  line-height: 1;
C
codecalm 已提交
10227
  color: #656d77; }
C
codecalm 已提交
10228 10229 10230 10231 10232 10233 10234 10235 10236 10237 10238 10239 10240 10241 10242 10243
  .empty-icon svg {
    width: 100%;
    height: 100%; }

.empty-img {
  margin: 0 0 2rem;
  line-height: 1; }
  .empty-img img {
    height: 8rem;
    width: auto; }

.empty-header {
  margin: 0 0 1rem;
  font-size: 4rem;
  font-weight: 300;
  line-height: 1;
C
codecalm 已提交
10244
  color: #656d77; }
C
codecalm 已提交
10245 10246

.empty-title {
C
codecalm 已提交
10247 10248 10249
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 600; }
C
codecalm 已提交
10250 10251 10252 10253 10254 10255 10256

.empty-title,
.empty-subtitle {
  margin: 0 0 .5rem; }

.empty-action {
  margin-top: 1.5rem; }
C
codecalm 已提交
10257 10258

.empty-bordered {
C
codecalm 已提交
10259
  border: 1px solid #e6e8e9;
C
codecalm 已提交
10260
  border-radius: 4px; }
C
codecalm 已提交
10261

C
codecalm 已提交
10262 10263 10264
.row > * {
  min-width: 0; }

C
codecalm 已提交
10265
.col-separator {
C
codecalm 已提交
10266
  border-left: 1px solid #e6e8e9; }
C
codecalm 已提交
10267 10268 10269 10270

@media (max-width: 991.98px) {
  .container,
  .container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
C
codecalm 已提交
10271
    --tblr-gutter-x: 1rem; } }
C
codecalm 已提交
10272 10273

.container-tight {
C
codecalm 已提交
10274
  width: 100%;
C
codecalm 已提交
10275 10276
  padding-right: var(--tblr-gutter-x, 1.5rem);
  padding-left: var(--tblr-gutter-x, 1.5rem);
C
codecalm 已提交
10277 10278
  margin-right: auto;
  margin-left: auto;
M
Michal Wolny 已提交
10279
  max-width: 30rem; }
C
codecalm 已提交
10280 10281

.container-narrow {
C
codecalm 已提交
10282
  width: 100%;
C
codecalm 已提交
10283 10284
  padding-right: var(--tblr-gutter-x, 1.5rem);
  padding-left: var(--tblr-gutter-x, 1.5rem);
C
codecalm 已提交
10285 10286
  margin-right: auto;
  margin-left: auto;
C
codecalm 已提交
10287 10288 10289 10290 10291 10292 10293 10294 10295 10296 10297 10298 10299 10300 10301 10302 10303 10304 10305 10306 10307 10308 10309 10310 10311 10312 10313 10314 10315 10316 10317 10318 10319 10320 10321 10322 10323 10324 10325 10326 10327 10328 10329 10330 10331 10332 10333 10334 10335 10336 10337
  max-width: 45rem; }

.row-0 {
  margin-right: 0;
  margin-left: 0; }
  .row-0 > .col,
  .row-0 > [class*="col-"] {
    padding-right: 0;
    padding-left: 0; }
  .row-0 .card {
    margin-bottom: 0; }

.row-sm {
  margin-right: -0.375rem;
  margin-left: -0.375rem; }
  .row-sm > .col,
  .row-sm > [class*="col-"] {
    padding-right: 0.375rem;
    padding-left: 0.375rem; }
  .row-sm .card {
    margin-bottom: 0.75rem; }

.row-md {
  margin-right: -1.5rem;
  margin-left: -1.5rem; }
  .row-md > .col,
  .row-md > [class*="col-"] {
    padding-right: 1.5rem;
    padding-left: 1.5rem; }
  .row-md .card {
    margin-bottom: 3rem; }

.row-lg {
  margin-right: -3rem;
  margin-left: -3rem; }
  .row-lg > .col,
  .row-lg > [class*="col-"] {
    padding-right: 3rem;
    padding-left: 3rem; }
  .row-lg .card {
    margin-bottom: 6rem; }

.row-deck > .col,
.row-deck > [class*="col-"] {
  display: flex;
  align-items: stretch; }
  .row-deck > .col .card,
  .row-deck > [class*="col-"] .card {
    flex: 1 1 auto; }

.row-cards {
C
codecalm 已提交
10338 10339
  --tblr-gutter-x: 1rem;
  --tblr-gutter-y: 1rem; }
C
codecalm 已提交
10340 10341
  .row-cards .row-cards {
    flex: 1; }
C
codecalm 已提交
10342
  @media (max-width: 991.98px) {
C
codecalm 已提交
10343
    .row-cards {
C
codecalm 已提交
10344 10345
      --tblr-gutter-x: 0.5rem;
      --tblr-gutter-y: 0.5rem; } }
C
codecalm 已提交
10346

C
codecalm 已提交
10347 10348 10349 10350 10351 10352 10353 10354 10355 10356 10357 10358 10359 10360 10361 10362 10363 10364 10365 10366 10367 10368 10369 10370 10371 10372 10373 10374 10375 10376 10377
.space-y > :not(template) ~ :not(template) {
  margin-top: 1rem !important; }

.space-x > :not(template) ~ :not(template) {
  margin-left: 1rem !important; }

.space-y-0 > :not(template) ~ :not(template) {
  margin-top: 0 !important; }

.space-x-0 > :not(template) ~ :not(template) {
  margin-left: 0 !important; }

.space-y-1 > :not(template) ~ :not(template) {
  margin-top: 0.25rem !important; }

.space-x-1 > :not(template) ~ :not(template) {
  margin-left: 0.25rem !important; }

.space-y-2 > :not(template) ~ :not(template) {
  margin-top: 0.5rem !important; }

.space-x-2 > :not(template) ~ :not(template) {
  margin-left: 0.5rem !important; }

.space-y-3 > :not(template) ~ :not(template) {
  margin-top: 1rem !important; }

.space-x-3 > :not(template) ~ :not(template) {
  margin-left: 1rem !important; }

.space-y-4 > :not(template) ~ :not(template) {
C
codecalm 已提交
10378
  margin-top: 2rem !important; }
C
codecalm 已提交
10379 10380

.space-x-4 > :not(template) ~ :not(template) {
C
codecalm 已提交
10381
  margin-left: 2rem !important; }
C
codecalm 已提交
10382 10383

.space-y-5 > :not(template) ~ :not(template) {
C
codecalm 已提交
10384
  margin-top: 4rem !important; }
C
codecalm 已提交
10385 10386

.space-x-5 > :not(template) ~ :not(template) {
C
codecalm 已提交
10387
  margin-left: 4rem !important; }
C
codecalm 已提交
10388 10389

.divide-y > :not(template) ~ :not(template) {
C
codecalm 已提交
10390
  border-top: 1px solid rgba(101, 109, 119, 0.16) !important; }
C
codecalm 已提交
10391 10392

.divide-y > :not(template):not(:first-child) {
C
codecalm 已提交
10393
  padding-top: 1rem !important; }
C
codecalm 已提交
10394 10395

.divide-y > :not(template):not(:last-child) {
C
codecalm 已提交
10396
  padding-bottom: 1rem !important; }
C
codecalm 已提交
10397 10398

.divide-x > :not(template) ~ :not(template) {
C
codecalm 已提交
10399
  border-left: 1px solid rgba(101, 109, 119, 0.16) !important; }
C
codecalm 已提交
10400 10401

.divide-x > :not(template):not(:first-child) {
C
codecalm 已提交
10402
  padding-left: 1rem !important; }
C
codecalm 已提交
10403 10404

.divide-x > :not(template):not(:last-child) {
C
codecalm 已提交
10405
  padding-right: 1rem !important; }
C
codecalm 已提交
10406 10407

.divide-y-0 > :not(template) ~ :not(template) {
C
codecalm 已提交
10408
  border-top: 1px solid rgba(101, 109, 119, 0.16) !important; }
C
codecalm 已提交
10409 10410 10411 10412 10413 10414 10415 10416

.divide-y-0 > :not(template):not(:first-child) {
  padding-top: 0 !important; }

.divide-y-0 > :not(template):not(:last-child) {
  padding-bottom: 0 !important; }

.divide-x-0 > :not(template) ~ :not(template) {
C
codecalm 已提交
10417
  border-left: 1px solid rgba(101, 109, 119, 0.16) !important; }
C
codecalm 已提交
10418 10419 10420 10421 10422 10423 10424 10425

.divide-x-0 > :not(template):not(:first-child) {
  padding-left: 0 !important; }

.divide-x-0 > :not(template):not(:last-child) {
  padding-right: 0 !important; }

.divide-y-1 > :not(template) ~ :not(template) {
C
codecalm 已提交
10426
  border-top: 1px solid rgba(101, 109, 119, 0.16) !important; }
C
codecalm 已提交
10427 10428

.divide-y-1 > :not(template):not(:first-child) {
C
codecalm 已提交
10429
  padding-top: 0.25rem !important; }
C
codecalm 已提交
10430 10431

.divide-y-1 > :not(template):not(:last-child) {
C
codecalm 已提交
10432
  padding-bottom: 0.25rem !important; }
C
codecalm 已提交
10433 10434

.divide-x-1 > :not(template) ~ :not(template) {
C
codecalm 已提交
10435
  border-left: 1px solid rgba(101, 109, 119, 0.16) !important; }
C
codecalm 已提交
10436 10437

.divide-x-1 > :not(template):not(:first-child) {
C
codecalm 已提交
10438
  padding-left: 0.25rem !important; }
C
codecalm 已提交
10439 10440

.divide-x-1 > :not(template):not(:last-child) {
C
codecalm 已提交
10441
  padding-right: 0.25rem !important; }
C
codecalm 已提交
10442 10443

.divide-y-2 > :not(template) ~ :not(template) {
C
codecalm 已提交
10444
  border-top: 1px solid rgba(101, 109, 119, 0.16) !important; }
C
codecalm 已提交
10445 10446

.divide-y-2 > :not(template):not(:first-child) {
C
codecalm 已提交
10447
  padding-top: 0.5rem !important; }
C
codecalm 已提交
10448 10449

.divide-y-2 > :not(template):not(:last-child) {
C
codecalm 已提交
10450
  padding-bottom: 0.5rem !important; }
C
codecalm 已提交
10451 10452

.divide-x-2 > :not(template) ~ :not(template) {
C
codecalm 已提交
10453
  border-left: 1px solid rgba(101, 109, 119, 0.16) !important; }
C
codecalm 已提交
10454 10455

.divide-x-2 > :not(template):not(:first-child) {
C
codecalm 已提交
10456
  padding-left: 0.5rem !important; }
C
codecalm 已提交
10457 10458

.divide-x-2 > :not(template):not(:last-child) {
C
codecalm 已提交
10459
  padding-right: 0.5rem !important; }
C
codecalm 已提交
10460 10461

.divide-y-3 > :not(template) ~ :not(template) {
C
codecalm 已提交
10462
  border-top: 1px solid rgba(101, 109, 119, 0.16) !important; }
C
codecalm 已提交
10463 10464

.divide-y-3 > :not(template):not(:first-child) {
C
codecalm 已提交
10465
  padding-top: 1rem !important; }
C
codecalm 已提交
10466 10467

.divide-y-3 > :not(template):not(:last-child) {
C
codecalm 已提交
10468
  padding-bottom: 1rem !important; }
C
codecalm 已提交
10469 10470

.divide-x-3 > :not(template) ~ :not(template) {
C
codecalm 已提交
10471
  border-left: 1px solid rgba(101, 109, 119, 0.16) !important; }
C
codecalm 已提交
10472 10473

.divide-x-3 > :not(template):not(:first-child) {
C
codecalm 已提交
10474
  padding-left: 1rem !important; }
C
codecalm 已提交
10475 10476

.divide-x-3 > :not(template):not(:last-child) {
C
codecalm 已提交
10477
  padding-right: 1rem !important; }
C
codecalm 已提交
10478 10479

.divide-y-4 > :not(template) ~ :not(template) {
C
codecalm 已提交
10480
  border-top: 1px solid rgba(101, 109, 119, 0.16) !important; }
C
codecalm 已提交
10481 10482

.divide-y-4 > :not(template):not(:first-child) {
C
codecalm 已提交
10483
  padding-top: 2rem !important; }
C
codecalm 已提交
10484 10485

.divide-y-4 > :not(template):not(:last-child) {
C
codecalm 已提交
10486
  padding-bottom: 2rem !important; }
C
codecalm 已提交
10487 10488

.divide-x-4 > :not(template) ~ :not(template) {
C
codecalm 已提交
10489
  border-left: 1px solid rgba(101, 109, 119, 0.16) !important; }
C
codecalm 已提交
10490 10491

.divide-x-4 > :not(template):not(:first-child) {
C
codecalm 已提交
10492
  padding-left: 2rem !important; }
C
codecalm 已提交
10493 10494

.divide-x-4 > :not(template):not(:last-child) {
C
codecalm 已提交
10495
  padding-right: 2rem !important; }
C
codecalm 已提交
10496 10497

.divide-y-5 > :not(template) ~ :not(template) {
C
codecalm 已提交
10498
  border-top: 1px solid rgba(101, 109, 119, 0.16) !important; }
C
codecalm 已提交
10499 10500

.divide-y-5 > :not(template):not(:first-child) {
C
codecalm 已提交
10501
  padding-top: 4rem !important; }
C
codecalm 已提交
10502 10503

.divide-y-5 > :not(template):not(:last-child) {
C
codecalm 已提交
10504
  padding-bottom: 4rem !important; }
C
codecalm 已提交
10505 10506

.divide-x-5 > :not(template) ~ :not(template) {
C
codecalm 已提交
10507
  border-left: 1px solid rgba(101, 109, 119, 0.16) !important; }
C
codecalm 已提交
10508 10509

.divide-x-5 > :not(template):not(:first-child) {
C
codecalm 已提交
10510
  padding-left: 4rem !important; }
C
codecalm 已提交
10511 10512

.divide-x-5 > :not(template):not(:last-child) {
C
codecalm 已提交
10513
  padding-right: 4rem !important; }
C
codecalm 已提交
10514

C
codecalm 已提交
10515
.icon {
C
codecalm 已提交
10516 10517
  width: 1.25rem;
  height: 1.25rem;
C
codecalm 已提交
10518
  font-size: 1.25rem;
C
codecalm 已提交
10519
  vertical-align: bottom;
C
codecalm 已提交
10520
  stroke-width: 1.5; }
C
codecalm 已提交
10521 10522 10523
  .icon:hover {
    text-decoration: none; }

C
codecalm 已提交
10524
.icon-inline {
C
codecalm 已提交
10525 10526 10527 10528
  width: 1em;
  height: 1em;
  font-size: 1.1428571em;
  vertical-align: -0.2em; }
C
codecalm 已提交
10529

C
codecalm 已提交
10530 10531
.icon-filled {
  fill: currentColor; }
C
codecalm 已提交
10532

C
codecalm 已提交
10533 10534
.icon-md {
  width: 2.5rem;
C
codecalm 已提交
10535 10536 10537 10538 10539 10540 10541
  height: 2.5rem;
  stroke-width: 1; }

.icon-lg {
  width: 3.5rem;
  height: 3.5rem;
  stroke-width: 1; }
C
codecalm 已提交
10542 10543 10544 10545 10546 10547 10548 10549 10550 10551 10552

.img-responsive {
  background: no-repeat center/cover;
  padding-top: 75%; }

.img-responsive-1x1 {
  padding-top: 100%; }

.img-responsive-4x3 {
  padding-top: calc(3 / 4 * 100%); }

C
codecalm 已提交
10553 10554 10555
.img-responsive-3x4 {
  padding-top: calc(4 / 3 * 100%); }

C
codecalm 已提交
10556 10557 10558
.img-responsive-16x9 {
  padding-top: calc(9 / 16 * 100%); }

C
codecalm 已提交
10559 10560 10561
.img-responsive-9x16 {
  padding-top: calc(16 / 9 * 100%); }

C
codecalm 已提交
10562 10563 10564
.img-responsive-21x9 {
  padding-top: calc(9 / 21 * 100%); }

C
codecalm 已提交
10565 10566 10567
.img-responsive-9x21 {
  padding-top: calc(21 / 9 * 100%); }

C
codecalm 已提交
10568 10569 10570 10571 10572 10573 10574
textarea[cols] {
  height: auto; }

/**
Form label
 */
.form-label {
C
codecalm 已提交
10575
  display: block; }
C
codecalm 已提交
10576 10577 10578
  .form-label.required:after {
    content: "*";
    margin-left: .25rem;
M
Michal Wolny 已提交
10579
    color: #d63939; }
C
codecalm 已提交
10580 10581 10582 10583

.form-label-description {
  float: right;
  font-weight: 400;
M
Michal Wolny 已提交
10584
  color: #656d77; }
C
codecalm 已提交
10585 10586 10587 10588 10589 10590

/**
Form hint
 */
.form-hint {
  display: block;
M
Michal Wolny 已提交
10591 10592 10593
  font-size: 0.75rem;
  line-height: 1.3333333;
  color: #656d77; }
C
codecalm 已提交
10594 10595 10596 10597 10598 10599 10600 10601 10602 10603 10604 10605 10606 10607 10608 10609 10610 10611
  .form-hint:last-child {
    margin-bottom: 0; }
  .form-hint + .form-control {
    margin-top: .25rem; }
  .form-label + .form-hint {
    margin-top: -.5rem; }
  .input-group + .form-hint,
  .form-control + .form-hint,
  .form-select + .form-hint {
    margin-top: .5rem; }

/**
Form control
 */
.form-control:-webkit-autofill {
  box-shadow: 0 0 0 1000px #ffffff inset; }

.form-control:disabled, .form-control.disabled {
C
codecalm 已提交
10612
  color: #656d77;
C
codecalm 已提交
10613 10614 10615 10616 10617 10618 10619 10620
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }

.form-control[size] {
  width: auto; }

M
Michal Wolny 已提交
10621 10622 10623 10624 10625 10626 10627 10628 10629 10630 10631 10632
.form-control[type="number"]::-webkit-inner-spin-button {
  opacity: 1;
  cursor: pointer;
  height: calc(calc(1.4285714em + 0.875rem + 2px) - 1px);
  margin: 0 -0.75rem 0 0; }

.form-control[type="number"]::-moz-inner-spin-button {
  opacity: 1;
  cursor: pointer;
  height: calc(calc(1.4285714em + 0.875rem + 2px) - 1px);
  margin: 0 -0.75rem 0 0; }

C
codecalm 已提交
10633
.form-control-light {
C
codecalm 已提交
10634
  background-color: #f4f6fa;
C
codecalm 已提交
10635 10636 10637 10638 10639 10640 10641 10642 10643 10644 10645 10646 10647 10648 10649 10650 10651 10652 10653 10654 10655 10656 10657 10658 10659 10660 10661 10662 10663 10664 10665 10666 10667 10668 10669 10670 10671 10672
  border-color: transparent; }

.form-control-dark {
  background-color: rgba(0, 0, 0, 0.1);
  color: #ffffff;
  border-color: transparent; }
  .form-control-dark:focus {
    background-color: rgba(0, 0, 0, 0.1);
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.24); }
  .form-control-dark::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.6); }
  .form-control-dark::-moz-placeholder {
    color: rgba(255, 255, 255, 0.6); }
  .form-control-dark:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.6); }
  .form-control-dark::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.6); }
  .form-control-dark::placeholder {
    color: rgba(255, 255, 255, 0.6); }

.form-control-rounded {
  border-radius: 10rem; }

.form-control-flush {
  padding: 0;
  background: none !important;
  border-color: transparent !important;
  resize: none;
  box-shadow: none !important;
  line-height: inherit; }

.form-footer {
  margin-top: 2rem; }

.form-fieldset {
  padding: 1rem;
  margin-bottom: 1rem;
C
codecalm 已提交
10673
  background: rgba(35, 46, 60, 0.024);
C
codecalm 已提交
10674
  border: 1px solid #e6e8e9;
C
codecalm 已提交
10675
  border-radius: 4px; }
C
codecalm 已提交
10676 10677 10678 10679 10680 10681

/**
Form help
 */
.form-help {
  display: inline-flex;
C
codecalm 已提交
10682
  font-weight: 600;
C
codecalm 已提交
10683 10684 10685 10686 10687
  align-items: center;
  justify-content: center;
  width: 1.125rem;
  height: 1.125rem;
  font-size: .75rem;
C
codecalm 已提交
10688
  color: #656d77;
C
codecalm 已提交
10689 10690 10691 10692 10693 10694 10695
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
C
codecalm 已提交
10696
  background: rgba(135, 142, 151, 0.1);
C
codecalm 已提交
10697
  border-radius: 100rem;
C
codecalm 已提交
10698 10699 10700 10701 10702 10703 10704 10705 10706 10707 10708 10709 10710
  transition: .3s background-color, .3s color; }
  .form-help:hover, .form-help[aria-describedby] {
    color: #ffffff;
    background: #206bc4; }

/**
Input group
 */
.input-group-link {
  font-size: 0.75rem; }

.input-group-flat:focus-within {
  box-shadow: 0 0 0 0.25rem rgba(32, 107, 196, 0.25);
C
codecalm 已提交
10711
  border-radius: 4px; }
C
codecalm 已提交
10712 10713
  .input-group-flat:focus-within .form-control,
  .input-group-flat:focus-within .input-group-text {
C
codecalm 已提交
10714
    border-color: #90b5e2 !important; }
C
codecalm 已提交
10715 10716

.input-group-flat .form-control:focus {
C
codecalm 已提交
10717
  border-color: #dadcde;
C
codecalm 已提交
10718 10719 10720 10721 10722 10723 10724 10725 10726 10727 10728 10729 10730 10731 10732 10733 10734 10735 10736 10737 10738 10739 10740 10741 10742 10743 10744 10745
  box-shadow: none; }

.input-group-flat .form-control:not(:last-child) {
  border-right: 0; }

.input-group-flat .form-control:not(:first-child) {
  border-left: 0; }

.input-group-flat .input-group-text {
  background: transparent;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
  .input-group-flat .input-group-text:first-child {
    padding-right: 0; }
  .input-group-flat .input-group-text:last-child {
    padding-left: 0; }

/**
Upload files
 */
.form-file-button {
  margin-left: 0;
  border-left: 0; }

/**
Icon input
 */
.input-icon {
  position: relative; }
C
codecalm 已提交
10746 10747
  .input-icon .form-control:not(:last-child),
  .input-icon .form-select:not(:last-child) {
C
codecalm 已提交
10748
    padding-right: 2.5rem; }
C
codecalm 已提交
10749 10750
  .input-icon .form-control:not(:first-child),
  .input-icon .form-select:not(:last-child) {
C
codecalm 已提交
10751 10752 10753 10754 10755 10756 10757 10758 10759 10760 10761
    padding-left: 2.5rem; }

.input-icon-addon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
C
codecalm 已提交
10762
  color: #656d77;
C
codecalm 已提交
10763 10764 10765 10766 10767 10768 10769 10770 10771 10772 10773 10774 10775 10776 10777 10778 10779 10780 10781 10782 10783 10784 10785 10786 10787
  pointer-events: none;
  font-size: 1.2em; }
  .input-icon-addon:last-child {
    right: 0;
    left: auto; }

/*
Color Input
 */
.form-colorinput {
  position: relative;
  display: inline-block;
  margin: 0;
  line-height: 1;
  cursor: pointer; }

.form-colorinput-input {
  position: absolute;
  z-index: -1;
  opacity: 0; }

.form-colorinput-color {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
C
codecalm 已提交
10788 10789
  color: #ffffff;
  border: 1px solid rgba(101, 109, 119, 0.16);
C
codecalm 已提交
10790 10791 10792 10793 10794 10795 10796 10797 10798 10799 10800 10801 10802 10803 10804 10805 10806 10807 10808
  border-radius: 3px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
  .form-colorinput-color:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: no-repeat center center/1rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' width='16' height='16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8.5l2.5 2.5l5.5 -5.5'/%3e%3c/svg%3e");
    opacity: 0;
    transition: .3s opacity; }
    .form-colorinput-input:checked ~ .form-colorinput-color:before {
      opacity: 1; }
  .form-colorinput-input:focus ~ .form-colorinput-color {
    border-color: #206bc4;
    box-shadow: 0 0 0 0.25rem rgba(32, 107, 196, 0.25); }
  .form-colorinput-light .form-colorinput-color:before {
C
codecalm 已提交
10809
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' width='16' height='16'%3e%3cpath fill='none' stroke='%23232e3c' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8.5l2.5 2.5l5.5 -5.5'/%3e%3c/svg%3e"); }
C
codecalm 已提交
10810 10811 10812 10813 10814 10815 10816 10817 10818 10819 10820 10821 10822 10823 10824 10825 10826 10827 10828 10829 10830 10831

/**
Image check
 */
.form-imagecheck {
  position: relative;
  margin: 0;
  cursor: pointer; }

.form-imagecheck-input {
  position: absolute;
  z-index: -1;
  opacity: 0; }

.form-imagecheck-figure {
  position: relative;
  display: block;
  margin: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
C
codecalm 已提交
10832
  border: 1px solid #e6e8e9;
C
codecalm 已提交
10833 10834 10835 10836 10837
  border-radius: 3px; }
  .form-imagecheck-input:focus ~ .form-imagecheck-figure {
    border-color: #206bc4;
    box-shadow: 0 0 0 0.25rem rgba(32, 107, 196, 0.25); }
  .form-imagecheck-input:checked ~ .form-imagecheck-figure {
C
codecalm 已提交
10838
    border-color: #e6e8e9; }
C
codecalm 已提交
10839 10840 10841 10842 10843 10844 10845 10846
  .form-imagecheck-figure:before {
    position: absolute;
    top: .25rem;
    left: .25rem;
    z-index: 1;
    display: block;
    width: 1rem;
    height: 1rem;
C
codecalm 已提交
10847
    color: #ffffff;
C
codecalm 已提交
10848 10849 10850 10851 10852 10853 10854
    pointer-events: none;
    content: "";
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    background: #ffffff;
C
codecalm 已提交
10855
    border: 1px solid #e6e8e9;
C
codecalm 已提交
10856 10857 10858 10859 10860 10861 10862 10863
    border-radius: 3px;
    transition: .3s opacity; }
    .form-imagecheck-input:checked ~ .form-imagecheck-figure:before {
      background-color: #206bc4;
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' width='16' height='16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8.5l2.5 2.5l5.5 -5.5'/%3e%3c/svg%3e");
      background-repeat: repeat;
      background-position: center;
      background-size: 1rem;
C
codecalm 已提交
10864
      border-color: rgba(101, 109, 119, 0.24); }
C
codecalm 已提交
10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 10879 10880 10881 10882 10883

.form-imagecheck-image {
  max-width: 100%;
  display: block;
  opacity: .64;
  transition: .3s opacity; }
  .form-imagecheck-image:first-child {
    border-top-left-radius: 2px;
    border-top-right-radius: 2px; }
  .form-imagecheck-image:last-child {
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px; }
  .form-imagecheck:hover .form-imagecheck-image,
  .form-imagecheck-input:focus ~ .form-imagecheck-figure .form-imagecheck-image,
  .form-imagecheck-input:checked ~ .form-imagecheck-figure .form-imagecheck-image {
    opacity: 1; }

.form-imagecheck-caption {
  padding: .25rem;
C
codecalm 已提交
10884
  font-size: 0.765625rem;
C
codecalm 已提交
10885
  color: #656d77;
C
codecalm 已提交
10886 10887 10888 10889 10890
  text-align: center;
  transition: .3s color; }
  .form-imagecheck:hover .form-imagecheck-caption,
  .form-imagecheck-input:focus ~ .form-imagecheck-figure .form-imagecheck-caption,
  .form-imagecheck-input:checked ~ .form-imagecheck-figure .form-imagecheck-caption {
C
codecalm 已提交
10891
    color: #232e3c; }
C
codecalm 已提交
10892 10893 10894 10895 10896 10897 10898 10899 10900 10901 10902 10903 10904 10905 10906 10907 10908 10909 10910 10911 10912 10913 10914 10915 10916 10917 10918 10919

/*
Select group
 */
.form-selectgroup {
  display: inline-flex;
  margin: 0 -.5rem -.5rem 0;
  flex-wrap: wrap; }
  .form-selectgroup .form-selectgroup-item {
    margin: 0 .5rem .5rem 0; }

.form-selectgroup-vertical {
  flex-direction: column; }

.form-selectgroup-item {
  display: block;
  position: relative; }

.form-selectgroup-input {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0; }

.form-selectgroup-label {
  position: relative;
  display: block;
C
codecalm 已提交
10920
  min-width: calc(1.4285714em + 0.875rem + 2px);
C
codecalm 已提交
10921 10922 10923
  margin: 0;
  padding: 0.4375rem 0.75rem;
  font-size: 0.875rem;
C
codecalm 已提交
10924
  line-height: 1.4285714;
C
codecalm 已提交
10925
  color: #656d77;
C
codecalm 已提交
10926 10927 10928 10929 10930 10931 10932
  background: #ffffff;
  text-align: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
C
codecalm 已提交
10933
  border: 1px solid #dadcde;
C
codecalm 已提交
10934 10935 10936 10937 10938
  border-radius: 3px;
  transition: border-color .3s, background .3s, color .3s; }
  .form-selectgroup-label .icon:only-child {
    margin: 0 -.25rem; }
  .form-selectgroup-label:hover {
C
codecalm 已提交
10939
    color: #232e3c; }
C
codecalm 已提交
10940 10941 10942 10943 10944

.form-selectgroup-check {
  display: inline-block;
  width: 1rem;
  height: 1rem;
C
codecalm 已提交
10945
  border: 1px solid rgba(101, 109, 119, 0.24);
C
codecalm 已提交
10946 10947
  vertical-align: middle; }
  .form-selectgroup-input[type="checkbox"] + .form-selectgroup-label .form-selectgroup-check {
C
codecalm 已提交
10948
    border-radius: 4px; }
C
codecalm 已提交
10949 10950 10951 10952 10953 10954 10955
  .form-selectgroup-input[type="radio"] + .form-selectgroup-label .form-selectgroup-check {
    border-radius: 50%; }
  .form-selectgroup-input:checked + .form-selectgroup-label .form-selectgroup-check {
    background-color: #206bc4;
    background-repeat: repeat;
    background-position: center;
    background-size: 1rem;
C
codecalm 已提交
10956
    border-color: rgba(101, 109, 119, 0.24); }
C
codecalm 已提交
10957 10958 10959 10960 10961 10962 10963 10964 10965
  .form-selectgroup-input[type="checkbox"]:checked + .form-selectgroup-label .form-selectgroup-check {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' width='16' height='16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8.5l2.5 2.5l5.5 -5.5'/%3e%3c/svg%3e"); }
  .form-selectgroup-input[type="radio"]:checked + .form-selectgroup-label .form-selectgroup-check {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3ccircle r='3' fill='%23ffffff' cx='8' cy='8' /%3e%3c/svg%3e"); }

.form-selectgroup-input:checked + .form-selectgroup-label {
  z-index: 1;
  color: #206bc4;
  background: rgba(32, 107, 196, 0.04);
C
codecalm 已提交
10966
  border-color: #90b5e2; }
C
codecalm 已提交
10967 10968 10969 10970

.form-selectgroup-input:focus + .form-selectgroup-label {
  z-index: 2;
  color: #206bc4;
C
codecalm 已提交
10971
  border-color: #90b5e2;
C
codecalm 已提交
10972 10973 10974 10975 10976 10977 10978 10979 10980 10981 10982 10983 10984 10985 10986 10987 10988 10989 10990 10991 10992 10993 10994 10995 10996 10997 10998 10999 11000 11001 11002 11003 11004 11005 11006 11007 11008 11009 11010 11011
  box-shadow: 0 0 0 0.25rem rgba(32, 107, 196, 0.25); }

/**
Alternate version of form select group
 */
.form-selectgroup-boxes .form-selectgroup-label {
  text-align: left;
  padding: 1rem 1rem;
  color: inherit; }

.form-selectgroup-boxes .form-selectgroup-input:checked + .form-selectgroup-label {
  color: inherit; }
  .form-selectgroup-boxes .form-selectgroup-input:checked + .form-selectgroup-label .form-selectgroup-title {
    color: #206bc4; }
  .form-selectgroup-boxes .form-selectgroup-input:checked + .form-selectgroup-label .form-selectgroup-label-content {
    opacity: 1; }

/**
Select group
 */
.form-selectgroup-pills {
  flex-wrap: wrap;
  align-items: flex-start; }
  .form-selectgroup-pills .form-selectgroup-item {
    flex-grow: 0; }
  .form-selectgroup-pills .form-selectgroup-label {
    border-radius: 50px; }

/**
Bootstrap color input
 */
.form-control-color::-webkit-color-swatch {
  border: none; }

/**
Remove the cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none; }

C
codecalm 已提交
11012 11013 11014 11015 11016 11017 11018 11019 11020 11021 11022 11023 11024 11025 11026 11027 11028 11029 11030
/*
Form check
 */
.form-check {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }
  .form-check.form-check-highlight .form-check-input:not(:checked) ~ .form-check-label {
    opacity: 0.7; }

.form-check-input {
  background-size: 1rem;
  margin-top: 0.125rem; }
  .form-switch .form-check-input {
    transition: .3s background-color, .3s background-position; }

.form-check-label {
  display: block; }
C
codecalm 已提交
11031 11032 11033 11034
  .form-check-label.required:after {
    content: "*";
    margin-left: .25rem;
    color: #d63939; }
C
codecalm 已提交
11035 11036 11037 11038 11039 11040 11041 11042 11043 11044 11045 11046 11047 11048 11049 11050 11051 11052 11053

.form-check-description {
  display: block;
  color: #656d77;
  font-size: 0.75rem;
  margin-top: .25rem; }

.form-check-single {
  margin: 0; }
  .form-check-single .form-check-input {
    margin: 0; }

/*
Form switch
 */
.form-switch .form-check-input {
  height: 1.125rem;
  margin-top: 0.0625rem; }

C
codecalm 已提交
11054 11055 11056 11057 11058
.form-switch-lg .form-check-input {
  height: 1.5rem;
  width: 2.75rem;
  background-size: 1.5rem; }

C
codecalm 已提交
11059
.form-control.is-valid-lite, .form-select.is-valid-lite, .form-control.is-invalid-lite, .form-select.is-invalid-lite {
C
codecalm 已提交
11060
  border-color: #dadcde; }
C
codecalm 已提交
11061 11062 11063

.legend {
  display: inline-block;
C
codecalm 已提交
11064
  background: #e6e8e9;
C
codecalm 已提交
11065 11066
  width: .75em;
  height: .75em;
C
codecalm 已提交
11067
  border-radius: 4px; }
C
codecalm 已提交
11068

C
codecalm 已提交
11069 11070 11071 11072
.list-group {
  margin-left: 0;
  margin-right: 0; }

C
codecalm 已提交
11073 11074 11075 11076 11077 11078 11079 11080 11081 11082 11083
.list-group-header {
  background: #f4f6fa;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  color: #656d77;
  border-bottom: 1px solid #e6e8e9; }
  .list-group-flush > .list-group-header:last-child {
    border-bottom-width: 0; }
C
codecalm 已提交
11084

C
codecalm 已提交
11085
.list-bordered .list-item {
C
codecalm 已提交
11086
  border-top: 1px solid #e6e8e9;
C
codecalm 已提交
11087
  margin-top: -1px; }
C
codecalm 已提交
11088
  .list-bordered .list-item:first-child {
C
codecalm 已提交
11089 11090
    border-top: none; }

C
codecalm 已提交
11091
.list-group-hoverable .list-group-item-actions {
C
codecalm 已提交
11092 11093 11094
  opacity: 0;
  transition: .3s opacity; }

C
codecalm 已提交
11095 11096
.list-group-hoverable .list-group-item:hover .list-group-item-actions,
.list-group-hoverable .list-group-item-actions.show {
C
codecalm 已提交
11097 11098 11099 11100 11101 11102 11103 11104 11105 11106 11107 11108 11109 11110 11111 11112
  opacity: 1; }

.list-timeline {
  position: relative;
  padding: 0;
  margin: 0;
  list-style: none; }
  .list-timeline > li {
    position: relative;
    margin-bottom: 1.5rem; }
    .list-timeline > li:last-child {
      margin-bottom: 0; }

.list-timeline-time {
  float: right;
  margin-left: 1rem;
C
codecalm 已提交
11113
  color: #656d77; }
C
codecalm 已提交
11114 11115 11116 11117 11118 11119 11120 11121 11122 11123 11124 11125

.list-timeline-icon {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: #ffffff;
  text-align: center;
C
codecalm 已提交
11126
  background: #656d77;
C
codecalm 已提交
11127
  border-radius: 100rem; }
C
codecalm 已提交
11128 11129
  .list-timeline-icon .icon {
    width: 1rem;
C
codecalm 已提交
11130 11131
    height: 1rem;
    font-size: 1rem; }
C
codecalm 已提交
11132 11133 11134

.list-timeline-title {
  margin: 0;
C
codecalm 已提交
11135
  font-weight: 600; }
C
codecalm 已提交
11136 11137 11138 11139 11140 11141 11142 11143 11144 11145 11146 11147 11148 11149

.list-timeline-content {
  margin-left: 3.5rem; }

@media screen and (min-width: 768px) {
  .list-timeline:not(.list-timeline-simple):before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(7.5rem + 2px);
    z-index: 1;
    display: block;
    width: 4px;
    content: "";
C
codecalm 已提交
11150
    background-color: #f4f6fa; }
C
codecalm 已提交
11151 11152 11153 11154 11155 11156 11157 11158 11159 11160 11161 11162 11163 11164 11165 11166 11167 11168
  .list-timeline:not(.list-timeline-simple) > li {
    z-index: 2;
    min-height: 40px; }
  .list-timeline:not(.list-timeline-simple) .list-timeline-time {
    position: absolute;
    top: .5rem;
    left: 0;
    width: 5.5rem;
    margin: 0;
    text-align: right; }
  .list-timeline:not(.list-timeline-simple) .list-timeline-icon {
    top: 0;
    left: 6.5rem; }
  .list-timeline:not(.list-timeline-simple) .list-timeline-content {
    padding: .625rem 0 0 10rem;
    margin: 0; } }

.list-group-transparent {
C
codecalm 已提交
11169
  margin: 0 -1rem; }
C
codecalm 已提交
11170 11171 11172 11173 11174
  .list-group-transparent .list-group-item {
    background: none;
    border: 0;
    border-radius: 3px; }
    .list-group-transparent .list-group-item .icon {
C
codecalm 已提交
11175
      color: #656d77; }
C
codecalm 已提交
11176
    .list-group-transparent .list-group-item.active {
C
codecalm 已提交
11177
      font-weight: 600;
C
codecalm 已提交
11178 11179 11180 11181 11182 11183 11184 11185 11186 11187 11188 11189
      color: inherit;
      background: rgba(32, 107, 196, 0.06); }
      .list-group-transparent .list-group-item.active .icon {
        color: inherit; }

.list-separated-item {
  padding: 1rem 0; }
  .list-separated-item:first-child {
    padding-top: 0; }
  .list-separated-item:last-child {
    padding-bottom: 0; }
  .list-separated-item + .list-separated-item {
C
codecalm 已提交
11190
    border-top: 1px solid #e6e8e9; }
C
codecalm 已提交
11191 11192 11193 11194

/**
Inline list
 */
C
codecalm 已提交
11195 11196 11197 11198 11199
.list-inline-item:not(:last-child) {
  margin-right: auto;
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem; }

C
codecalm 已提交
11200
.list-inline-dots .list-inline-item + .list-inline-item:before {
C
codecalm 已提交
11201 11202 11203
  content: ' · ';
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem; }
C
codecalm 已提交
11204 11205 11206 11207 11208 11209 11210 11211 11212 11213 11214 11215 11216 11217 11218 11219 11220 11221 11222 11223 11224 11225 11226 11227 11228 11229 11230 11231 11232 11233 11234

@-webkit-keyframes loader {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }

@keyframes loader {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }

.loader {
  position: relative;
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  color: #206bc4;
  vertical-align: middle; }
  .loader:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    border: 1px solid;
    border-color: transparent;
    border-top-color: currentColor;
    border-left-color: currentColor;
C
codecalm 已提交
11235
    border-radius: 100rem;
C
codecalm 已提交
11236 11237 11238 11239 11240 11241 11242 11243 11244 11245 11246 11247 11248 11249 11250 11251 11252 11253 11254 11255 11256 11257 11258 11259
    -webkit-animation: loader .6s linear;
            animation: loader .6s linear;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite; }

/**
Dimmer
*/
.dimmer {
  position: relative; }
  .dimmer .loader {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    display: none;
    margin: 0 auto;
    transform: translateY(-50%); }
  .dimmer.active .loader {
    display: block; }
  .dimmer.active .dimmer-content {
    pointer-events: none;
    opacity: .1; }

C
codecalm 已提交
11260 11261 11262 11263 11264 11265 11266 11267 11268 11269 11270 11271 11272 11273 11274 11275 11276 11277
@-webkit-keyframes animated-dots {
  0% {
    transform: translateX(-100%); } }

@keyframes animated-dots {
  0% {
    transform: translateX(-100%); } }

.animated-dots {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom; }
  .animated-dots:after {
    display: inline-block;
    content: "...";
    -webkit-animation: animated-dots 1.2s steps(4, jump-none) infinite;
            animation: animated-dots 1.2s steps(4, jump-none) infinite; }

C
codecalm 已提交
11278
.modal-content .btn-close {
C
codecalm 已提交
11279 11280 11281 11282 11283 11284 11285 11286 11287 11288 11289 11290 11291 11292 11293 11294 11295
  position: absolute;
  top: 0;
  right: 0;
  width: 3.5rem;
  height: 3.5rem;
  margin: 0;
  padding: 0;
  z-index: 10; }

.modal-body::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  -webkit-transition: .3s background;
  transition: .3s background; }

.modal-body::-webkit-scrollbar-thumb {
  border-radius: 5px;
C
codecalm 已提交
11296 11297 11298 11299
  background: #a0a6ae; }

.modal-body::-webkit-scrollbar-track {
  background: #e7eaef; }
C
codecalm 已提交
11300 11301 11302 11303 11304

.modal-body::-webkit-scrollbar-corner {
  background: transparent; }

.modal-body:hover::-webkit-scrollbar-thumb {
C
codecalm 已提交
11305
  background: #a0a6ae; }
C
codecalm 已提交
11306 11307 11308 11309 11310

.modal-body .modal-title {
  margin-bottom: 1rem; }

.modal-body + .modal-body {
C
codecalm 已提交
11311
  border-top: 1px solid #e6e8e9; }
C
codecalm 已提交
11312

C
codecalm 已提交
11313 11314 11315 11316 11317 11318 11319
.modal-status {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #656d77;
C
codecalm 已提交
11320
  border-radius: 4px 4px 0 0; }
C
codecalm 已提交
11321

C
codecalm 已提交
11322 11323 11324 11325 11326 11327 11328 11329
.modal-header {
  align-items: center;
  min-height: 3.5rem;
  background: #ffffff;
  padding: 0 3.5rem 0 1.5rem; }

.modal-title {
  font-size: 1rem;
C
codecalm 已提交
11330
  font-weight: 600;
11331
  line-height: 1.4285714; }
C
codecalm 已提交
11332 11333 11334 11335 11336 11337

.modal-footer {
  padding-top: 0;
  padding-bottom: .75rem; }

.modal-blur {
C
codecalm 已提交
11338 11339
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px); }
C
codecalm 已提交
11340 11341 11342 11343 11344

.modal-full-width {
  max-width: none;
  margin: 0 0.5rem; }

C
codecalm 已提交
11345 11346
.nav {
  margin: 0; }
C
codecalm 已提交
11347

C
codecalm 已提交
11348 11349 11350 11351 11352 11353
.nav-vertical,
.nav-vertical .nav {
  flex-direction: column;
  flex-wrap: nowrap; }

.nav-vertical .nav {
C
codecalm 已提交
11354
  margin-left: 1.25rem;
C
codecalm 已提交
11355
  border-left: 1px solid #e6e8e9;
C
codecalm 已提交
11356
  padding-left: .5rem; }
C
codecalm 已提交
11357 11358 11359 11360 11361 11362 11363 11364

.nav-vertical .nav-link.active,
.nav-vertical .nav-item.show .nav-link {
  font-weight: 600; }

.nav-vertical.nav-pills {
  margin: 0 -0.75rem; }

C
codecalm 已提交
11365 11366 11367 11368 11369 11370 11371 11372 11373 11374 11375 11376 11377 11378
.nav-bordered {
  border-bottom: 1px solid #e6e8e9; }
  .nav-bordered .nav-item + .nav-item {
    margin-left: 1.25rem; }
  .nav-bordered .nav-link {
    padding-left: 0;
    padding-right: 0;
    margin: 0 0 -1px;
    border: 0;
    border-bottom: 2px solid transparent; }
  .nav-bordered .nav-link.active,
  .nav-bordered .nav-item.show .nav-link {
    color: #206bc4;
    border-color: #206bc4; }
C
codecalm 已提交
11379 11380 11381

.nav-tabs-alt .nav-link {
  font-size: 13px;
C
codecalm 已提交
11382
  font-weight: 600;
C
codecalm 已提交
11383 11384 11385 11386 11387 11388 11389
  text-transform: uppercase; }

.nav-link {
  display: flex;
  transition: .3s color;
  align-items: center; }

C
codecalm 已提交
11390 11391 11392 11393 11394 11395 11396 11397 11398 11399 11400 11401
.nav-link-toggle {
  margin-left: auto;
  padding: 0 .25rem;
  transition: .3s transform; }
  .nav-link-toggle:after {
    content: "";
    display: inline-block;
    vertical-align: 0.306em;
    width: 0.36em;
    height: 0.36em;
    border-bottom: 1px solid;
    border-left: 1px solid;
C
codecalm 已提交
11402 11403
    margin-right: .1em;
    margin-left: 0.4em;
C
codecalm 已提交
11404 11405 11406 11407 11408 11409
    transform: rotate(-45deg); }
  .nav-link-toggle:after {
    margin: 0; }
  .nav-link[aria-expanded="true"] .nav-link-toggle {
    transform: rotate(180deg); }

C
codecalm 已提交
11410
.nav-link-icon {
C
codecalm 已提交
11411
  width: 1.5rem;
C
codecalm 已提交
11412
  height: 1.25rem;
C
codecalm 已提交
11413
  margin-right: .25rem;
C
codecalm 已提交
11414
  opacity: 0.7; }
C
codecalm 已提交
11415
  .nav-link-icon svg {
C
codecalm 已提交
11416 11417
    display: block;
    height: 100%; }
C
codecalm 已提交
11418 11419 11420

.stars {
  display: inline-flex;
C
codecalm 已提交
11421
  color: #dbdee3;
C
codecalm 已提交
11422 11423 11424 11425 11426 11427 11428 11429 11430 11431 11432
  font-size: 0.75rem; }
  .stars .star:not(:first-child) {
    margin-left: .25rem; }

.pagination {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }

.page-link {
C
codecalm 已提交
11433
  min-width: 1.75rem;
C
codecalm 已提交
11434
  border-radius: 4px; }
C
codecalm 已提交
11435 11436 11437 11438 11439 11440 11441 11442 11443 11444 11445 11446 11447 11448 11449
  .page-link:hover {
    background: transparent; }

.page-item {
  text-align: center; }
  .page-item.page-prev, .page-item.page-next {
    flex: 0 0 50%;
    text-align: left; }
  .page-item.page-next {
    margin-left: auto;
    text-align: right; }

.page-item-subtitle {
  margin-bottom: 2px;
  font-size: 12px;
C
codecalm 已提交
11450
  color: #656d77;
C
codecalm 已提交
11451 11452
  text-transform: uppercase; }
  .page-item.disabled .page-item-subtitle {
C
codecalm 已提交
11453
    color: rgba(101, 109, 119, 0.5); }
C
codecalm 已提交
11454 11455 11456 11457

.page-item-title {
  font-size: 1rem;
  font-weight: 400;
C
codecalm 已提交
11458
  color: #232e3c; }
C
codecalm 已提交
11459 11460 11461
  .page-link:hover .page-item-title {
    color: #206bc4; }
  .page-item.disabled .page-item-title {
C
codecalm 已提交
11462
    color: rgba(101, 109, 119, 0.5); }
C
codecalm 已提交
11463 11464 11465 11466 11467 11468 11469 11470 11471 11472 11473 11474 11475 11476 11477 11478 11479 11480 11481 11482 11483 11484 11485 11486 11487 11488 11489

@-webkit-keyframes progress-indeterminate {
  0% {
    right: 100%;
    left: -35%; }
  100%,
  60% {
    right: -90%;
    left: 100%; } }

@keyframes progress-indeterminate {
  0% {
    right: 100%;
    left: -35%; }
  100%,
  60% {
    right: -90%;
    left: 100%; } }

.progress {
  position: relative;
  width: 100%;
  line-height: 0.5rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
  .progress::-webkit-progress-bar {
C
codecalm 已提交
11490
    background: #f4f6fa; }
C
codecalm 已提交
11491 11492 11493 11494 11495 11496 11497 11498 11499 11500 11501 11502 11503 11504 11505 11506 11507 11508 11509 11510 11511 11512 11513 11514 11515 11516 11517
  .progress::-webkit-progress-value {
    background-color: #206bc4; }
  .progress::-moz-progress-bar {
    background-color: #206bc4; }
  .progress::-ms-fill {
    background-color: #206bc4;
    border: none; }

.progress-sm {
  height: .25rem; }

.progress-bar {
  height: 100%; }

.progress-bar-indeterminate:after, .progress-bar-indeterminate:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  content: "";
  background-color: inherit;
  will-change: left, right; }

.progress-bar-indeterminate:before {
  -webkit-animation: progress-indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
          animation: progress-indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite; }

C
codecalm 已提交
11518 11519 11520
.progress-separated .progress-bar {
  border-right: 2px solid #ffffff; }

C
codecalm 已提交
11521 11522 11523 11524 11525 11526 11527
.ribbon {
  position: absolute;
  top: .75rem;
  right: -0.25rem;
  z-index: 1;
  padding: .25rem .75rem;
  font-size: 0.625rem;
C
codecalm 已提交
11528
  font-weight: 600;
C
codecalm 已提交
11529
  line-height: 1.5rem;
C
codecalm 已提交
11530
  color: #ffffff;
C
codecalm 已提交
11531 11532 11533
  text-align: center;
  text-transform: uppercase;
  background: #206bc4;
C
codecalm 已提交
11534 11535 11536 11537 11538 11539
  border-color: #206bc4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  min-width: 2rem; }
C
codecalm 已提交
11540 11541 11542 11543 11544 11545 11546 11547 11548 11549 11550 11551 11552 11553 11554
  .ribbon:before {
    position: absolute;
    right: 0;
    bottom: 100%;
    width: 0;
    height: 0;
    content: "";
    filter: brightness(70%);
    border: 0.125rem solid;
    border-color: inherit;
    border-top-color: transparent;
    border-right-color: transparent; }
  .ribbon.bg-blue {
    border-color: #206bc4; }
  .ribbon.bg-blue-lt {
C
codecalm 已提交
11555
    border-color: #3478c9 !important; }
C
codecalm 已提交
11556
  .ribbon.bg-azure {
C
codecalm 已提交
11557
    border-color: #4299e1; }
C
codecalm 已提交
11558
  .ribbon.bg-azure-lt {
C
codecalm 已提交
11559
    border-color: #53a2e4 !important; }
C
codecalm 已提交
11560
  .ribbon.bg-indigo {
M
Michal Wolny 已提交
11561
    border-color: #4263eb; }
C
codecalm 已提交
11562
  .ribbon.bg-indigo-lt {
C
codecalm 已提交
11563
    border-color: #5371ed !important; }
C
codecalm 已提交
11564
  .ribbon.bg-purple {
M
Michal Wolny 已提交
11565
    border-color: #ae3ec9; }
C
codecalm 已提交
11566
  .ribbon.bg-purple-lt {
C
codecalm 已提交
11567
    border-color: #b54fce !important; }
C
codecalm 已提交
11568
  .ribbon.bg-pink {
M
Michal Wolny 已提交
11569
    border-color: #d6336c; }
C
codecalm 已提交
11570
  .ribbon.bg-pink-lt {
C
codecalm 已提交
11571
    border-color: #da4579 !important; }
C
codecalm 已提交
11572
  .ribbon.bg-red {
M
Michal Wolny 已提交
11573
    border-color: #d63939; }
C
codecalm 已提交
11574
  .ribbon.bg-red-lt {
C
codecalm 已提交
11575
    border-color: #da4b4b !important; }
C
codecalm 已提交
11576
  .ribbon.bg-orange {
M
Michal Wolny 已提交
11577
    border-color: #f76707; }
C
codecalm 已提交
11578
  .ribbon.bg-orange-lt {
C
codecalm 已提交
11579
    border-color: #f8751d !important; }
C
codecalm 已提交
11580
  .ribbon.bg-yellow {
M
Michal Wolny 已提交
11581
    border-color: #f59f00; }
C
codecalm 已提交
11582
  .ribbon.bg-yellow-lt {
C
codecalm 已提交
11583
    border-color: #f6a817 !important; }
C
codecalm 已提交
11584
  .ribbon.bg-lime {
M
Michal Wolny 已提交
11585
    border-color: #74b816; }
C
codecalm 已提交
11586
  .ribbon.bg-lime-lt {
C
codecalm 已提交
11587
    border-color: #81be2b !important; }
C
codecalm 已提交
11588
  .ribbon.bg-green {
M
Michal Wolny 已提交
11589
    border-color: #2fb344; }
C
codecalm 已提交
11590
  .ribbon.bg-green-lt {
C
codecalm 已提交
11591
    border-color: #42ba55 !important; }
C
codecalm 已提交
11592
  .ribbon.bg-teal {
M
Michal Wolny 已提交
11593
    border-color: #0ca678; }
C
codecalm 已提交
11594
  .ribbon.bg-teal-lt {
C
codecalm 已提交
11595
    border-color: #22ae84 !important; }
C
codecalm 已提交
11596 11597 11598
  .ribbon.bg-cyan {
    border-color: #17a2b8; }
  .ribbon.bg-cyan-lt {
C
codecalm 已提交
11599
    border-color: #2caabe !important; }
C
codecalm 已提交
11600
  .ribbon .icon {
M
Michal Wolny 已提交
11601 11602 11603
    width: 1.25rem;
    height: 1.25rem;
    font-size: 1.25rem; }
C
codecalm 已提交
11604 11605 11606 11607 11608

.ribbon-top {
  top: -0.25rem;
  right: .75rem;
  width: 2rem;
M
Michal Wolny 已提交
11609
  padding: .5rem 0; }
C
codecalm 已提交
11610 11611 11612 11613 11614 11615 11616
  .ribbon-top:before {
    top: 0;
    right: 100%;
    bottom: auto;
    border-color: inherit;
    border-top-color: transparent;
    border-left-color: transparent; }
C
codecalm 已提交
11617
  .ribbon-top.ribbon-start {
C
codecalm 已提交
11618 11619
    right: auto;
    left: .75rem; }
C
codecalm 已提交
11620
    .ribbon-top.ribbon-start:before {
C
codecalm 已提交
11621 11622 11623 11624
      top: 0;
      right: 100%;
      left: auto; }

C
codecalm 已提交
11625
.ribbon-start {
C
codecalm 已提交
11626 11627
  right: auto;
  left: -0.25rem; }
C
codecalm 已提交
11628
  .ribbon-start:before {
C
codecalm 已提交
11629 11630 11631 11632 11633 11634 11635 11636 11637 11638 11639 11640 11641 11642 11643 11644 11645 11646 11647 11648 11649 11650 11651 11652 11653 11654 11655 11656 11657 11658 11659 11660 11661 11662 11663 11664 11665 11666 11667 11668 11669 11670 11671 11672 11673 11674 11675 11676 11677
    top: auto;
    bottom: 100%;
    left: 0;
    border-color: inherit;
    border-top-color: transparent;
    border-left-color: transparent; }

.ribbon-bottom {
  top: auto;
  bottom: .75rem; }

.ribbon-bookmark {
  padding-left: .25rem; }
  .ribbon-bookmark:after {
    position: absolute;
    top: 0;
    right: 100%;
    display: block;
    width: 0;
    height: 0;
    content: "";
    border: 1rem solid;
    border-color: inherit;
    border-right-width: 0;
    border-left-color: transparent;
    border-left-width: .5rem; }
  .ribbon-bookmark.ribbon-left {
    padding-right: .5rem;
    padding-left: .5rem; }
    .ribbon-bookmark.ribbon-left:after {
      right: auto;
      left: 100%;
      border-right-color: transparent;
      border-right-width: .5rem;
      border-left-width: 0; }
  .ribbon-bookmark.ribbon-top {
    padding-right: 0;
    padding-bottom: .25rem;
    padding-left: 0; }
    .ribbon-bookmark.ribbon-top:after {
      top: 100%;
      right: 0;
      left: 0;
      border-color: inherit;
      border-width: 1rem;
      border-top-width: 0;
      border-bottom-color: transparent;
      border-bottom-width: .5rem; }

C
codecalm 已提交
11678 11679 11680 11681
/**
Markdown
 */
.markdown {
C
codecalm 已提交
11682
  line-height: 1.7142857; }
C
codecalm 已提交
11683 11684 11685 11686 11687 11688 11689 11690 11691
  .markdown > :first-child {
    margin-top: 0; }
  .markdown > :last-child,
  .markdown > :last-child .highlight {
    margin-bottom: 0; }
  @media (min-width: 768px) {
    .markdown > hr, .markdown > .hr {
      margin-top: 3em;
      margin-bottom: 3em; } }
C
codecalm 已提交
11692 11693 11694 11695 11696 11697 11698
  .markdown > h1, .markdown > .h1, .markdown > h2, .markdown > .h2, .markdown > h3, .markdown > .h3, .markdown > h4, .markdown > .h4, .markdown > h5, .markdown > .h5, .markdown > h6, .markdown > .h6 {
    font-weight: 600; }
  .markdown > blockquote {
    font-size: 1rem;
    margin: 1.5rem 0;
    padding: .5rem 1.5rem; }
  .markdown > img {
C
codecalm 已提交
11699
    border-radius: 4px; }
C
codecalm 已提交
11700

C
codecalm 已提交
11701 11702 11703 11704 11705 11706 11707 11708 11709 11710 11711 11712 11713
@-webkit-keyframes skeleton-load {
  from {
    background-position: 0 0; }
  to {
    background-position: 100vw 0; } }

@keyframes skeleton-load {
  from {
    background-position: 0 0; }
  to {
    background-position: 100vw 0; } }

.skeleton-avatar, .skeleton-line:after, .skeleton-heading:after, .skeleton-image {
C
codecalm 已提交
11714
  background-image: linear-gradient(to right, #f0f2f6 0, #dfe2e7 40%, #f0f2f6 80%);
C
codecalm 已提交
11715 11716 11717 11718 11719 11720 11721 11722 11723 11724
  background-size: 50vw 100%;
  background-attachment: fixed;
  -webkit-animation: skeleton-load 2s linear infinite;
          animation: skeleton-load 2s linear infinite; }

.skeleton-avatar {
  display: inline-block;
  vertical-align: bottom;
  width: 2.5rem;
  height: 2.5rem;
C
codecalm 已提交
11725
  border-radius: 100rem; }
C
codecalm 已提交
11726 11727 11728 11729 11730 11731 11732 11733 11734 11735 11736 11737 11738 11739 11740
  .skeleton-avatar-xs {
    width: 1.25rem;
    height: 1.25rem; }
  .skeleton-avatar-sm {
    width: 2rem;
    height: 2rem; }
  .skeleton-avatar-md {
    width: 3.75rem;
    height: 3.75rem; }
  .skeleton-avatar-lg {
    width: 5rem;
    height: 5rem; }
  .skeleton-avatar-xl {
    width: 7rem;
    height: 7rem; }
C
codecalm 已提交
11741 11742 11743
  .skeleton-avatar-2xl {
    width: 11rem;
    height: 11rem; }
C
codecalm 已提交
11744 11745 11746 11747 11748 11749 11750 11751 11752 11753

.skeleton-line, .skeleton-heading {
  padding: .375rem 0;
  display: block;
  line-height: 0;
  height: 1.25rem; }
  .skeleton-line:after, .skeleton-heading:after {
    content: '';
    display: inline-block;
    height: 100%;
C
codecalm 已提交
11754
    border-radius: 4px;
C
codecalm 已提交
11755 11756 11757 11758 11759 11760 11761 11762 11763 11764 11765 11766 11767 11768 11769 11770 11771 11772 11773 11774 11775 11776 11777 11778 11779 11780 11781 11782 11783 11784
    width: 100%; }
  .skeleton-line:nth-child(5n+2):after, .skeleton-heading:nth-child(5n+2):after {
    width: 80%; }
  .skeleton-line:nth-child(5n+3):after, .skeleton-heading:nth-child(5n+3):after {
    width: 90%; }
  .skeleton-line:nth-child(5n+4):after, .skeleton-heading:nth-child(5n+4):after {
    width: 95%; }
  .skeleton-line:nth-child(5n+5):after, .skeleton-heading:nth-child(5n+5):after {
    width: 85%; }

.skeleton-line-full:after {
  width: 100% !important; }

.skeleton-heading {
  height: 1.5rem;
  margin-bottom: .5rem; }
  .skeleton-heading:after {
    width: 70%; }

.skeleton-image:after {
  content: '';
  padding-top: 56.25%;
  display: block; }

.card-img-top .skeleton-image,
.card-img-bottom .skeleton-image,
.card-img-left .skeleton-image,
.card-img-right .skeleton-image {
  border-radius: inherit; }

C
codecalm 已提交
11785 11786 11787 11788 11789 11790 11791 11792 11793 11794 11795 11796 11797 11798 11799 11800 11801 11802 11803 11804 11805 11806 11807 11808 11809 11810 11811 11812 11813 11814 11815 11816
.steps {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  padding: 0;
  margin: 2rem 0;
  list-style: none; }
  .steps .step-item {
    padding-top: calc(0.5rem + 4px); }
    .steps .step-item:after {
      top: calc(0.25rem + 2px);
      height: 2px; }
    .steps .step-item:before {
      width: 0.5rem;
      height: 0.5rem; }
  .steps .step-item:after, .steps .step-item:before {
    color: #ffffff;
    background: #206bc4; }
  .steps .step-item.active:before {
    color: inherit;
    border-color: #206bc4; }

.steps-blue .step-item:after, .steps-blue .step-item:before {
  color: #ffffff;
  background: #206bc4; }

.steps-blue .step-item.active:before {
  color: inherit;
  border-color: #206bc4; }

.steps-azure .step-item:after, .steps-azure .step-item:before {
  color: #ffffff;
C
codecalm 已提交
11817
  background: #4299e1; }
C
codecalm 已提交
11818 11819 11820

.steps-azure .step-item.active:before {
  color: inherit;
C
codecalm 已提交
11821
  border-color: #4299e1; }
C
codecalm 已提交
11822 11823 11824

.steps-indigo .step-item:after, .steps-indigo .step-item:before {
  color: #ffffff;
M
Michal Wolny 已提交
11825
  background: #4263eb; }
C
codecalm 已提交
11826 11827 11828

.steps-indigo .step-item.active:before {
  color: inherit;
M
Michal Wolny 已提交
11829
  border-color: #4263eb; }
C
codecalm 已提交
11830 11831 11832

.steps-purple .step-item:after, .steps-purple .step-item:before {
  color: #ffffff;
M
Michal Wolny 已提交
11833
  background: #ae3ec9; }
C
codecalm 已提交
11834 11835 11836

.steps-purple .step-item.active:before {
  color: inherit;
M
Michal Wolny 已提交
11837
  border-color: #ae3ec9; }
C
codecalm 已提交
11838 11839 11840

.steps-pink .step-item:after, .steps-pink .step-item:before {
  color: #ffffff;
M
Michal Wolny 已提交
11841
  background: #d6336c; }
C
codecalm 已提交
11842 11843 11844

.steps-pink .step-item.active:before {
  color: inherit;
M
Michal Wolny 已提交
11845
  border-color: #d6336c; }
C
codecalm 已提交
11846 11847 11848

.steps-red .step-item:after, .steps-red .step-item:before {
  color: #ffffff;
M
Michal Wolny 已提交
11849
  background: #d63939; }
C
codecalm 已提交
11850 11851 11852

.steps-red .step-item.active:before {
  color: inherit;
M
Michal Wolny 已提交
11853
  border-color: #d63939; }
C
codecalm 已提交
11854 11855 11856

.steps-orange .step-item:after, .steps-orange .step-item:before {
  color: #ffffff;
M
Michal Wolny 已提交
11857
  background: #f76707; }
C
codecalm 已提交
11858 11859 11860

.steps-orange .step-item.active:before {
  color: inherit;
M
Michal Wolny 已提交
11861
  border-color: #f76707; }
C
codecalm 已提交
11862 11863 11864

.steps-yellow .step-item:after, .steps-yellow .step-item:before {
  color: #ffffff;
M
Michal Wolny 已提交
11865
  background: #f59f00; }
C
codecalm 已提交
11866 11867 11868

.steps-yellow .step-item.active:before {
  color: inherit;
M
Michal Wolny 已提交
11869
  border-color: #f59f00; }
C
codecalm 已提交
11870 11871 11872

.steps-lime .step-item:after, .steps-lime .step-item:before {
  color: #ffffff;
M
Michal Wolny 已提交
11873
  background: #74b816; }
C
codecalm 已提交
11874 11875 11876

.steps-lime .step-item.active:before {
  color: inherit;
M
Michal Wolny 已提交
11877
  border-color: #74b816; }
C
codecalm 已提交
11878 11879 11880

.steps-green .step-item:after, .steps-green .step-item:before {
  color: #ffffff;
M
Michal Wolny 已提交
11881
  background: #2fb344; }
C
codecalm 已提交
11882 11883 11884

.steps-green .step-item.active:before {
  color: inherit;
M
Michal Wolny 已提交
11885
  border-color: #2fb344; }
C
codecalm 已提交
11886 11887 11888

.steps-teal .step-item:after, .steps-teal .step-item:before {
  color: #ffffff;
M
Michal Wolny 已提交
11889
  background: #0ca678; }
C
codecalm 已提交
11890 11891 11892

.steps-teal .step-item.active:before {
  color: inherit;
M
Michal Wolny 已提交
11893
  border-color: #0ca678; }
C
codecalm 已提交
11894 11895 11896 11897 11898 11899 11900 11901 11902 11903 11904 11905 11906 11907 11908 11909 11910 11911 11912 11913 11914 11915 11916 11917 11918 11919 11920 11921 11922 11923 11924 11925 11926 11927 11928

.steps-cyan .step-item:after, .steps-cyan .step-item:before {
  color: #ffffff;
  background: #17a2b8; }

.steps-cyan .step-item.active:before {
  color: inherit;
  border-color: #17a2b8; }

.step-item {
  position: relative;
  flex: 1 1 0;
  min-height: 1rem;
  margin-top: 0;
  color: inherit;
  text-align: center;
  cursor: default; }
  a.step-item {
    cursor: pointer; }
    a.step-item:hover {
      color: inherit; }
  .step-item:not(:first-child):after {
    position: absolute;
    left: -50%;
    width: 100%;
    content: "";
    transform: translateY(-50%); }
  .step-item:before {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 1;
    box-sizing: content-box;
    display: block;
    content: "";
C
codecalm 已提交
11929
    border: 2px solid #ffffff;
C
codecalm 已提交
11930
    border-radius: 100rem;
C
codecalm 已提交
11931 11932
    transform: translateX(-50%); }
  .step-item.active {
C
codecalm 已提交
11933
    font-weight: 600; }
C
codecalm 已提交
11934
    .step-item.active:before {
C
codecalm 已提交
11935
      background: #ffffff; }
C
codecalm 已提交
11936
    .step-item.active ~ .step-item {
C
codecalm 已提交
11937
      color: #656d77; }
C
codecalm 已提交
11938 11939 11940
      .step-item.active ~ .step-item:after, .step-item.active ~ .step-item:before {
        background: #f3f5f5; }
      .step-item.active ~ .step-item:before {
C
codecalm 已提交
11941
        color: #656d77 !important; }
C
codecalm 已提交
11942 11943 11944 11945 11946 11947 11948 11949 11950 11951 11952 11953 11954 11955

.steps-counter {
  counter-reset: steps; }
  .steps-counter .step-item {
    padding-top: calc(1.5rem + 4px); }
    .steps-counter .step-item:after {
      top: calc(0.75rem + 2px);
      height: 2px; }
    .steps-counter .step-item:before {
      width: 1.5rem;
      height: 1.5rem; }
  .steps-counter .step-item {
    counter-increment: steps; }
    .steps-counter .step-item:before {
C
codecalm 已提交
11956
      font-size: 0.75rem;
C
codecalm 已提交
11957 11958 11959
      line-height: 1.5rem;
      content: counter(steps); }
    .steps-counter .step-item.active ~ .step-item:before {
C
codecalm 已提交
11960
      background: #ffffff; }
C
codecalm 已提交
11961

C
codecalm 已提交
11962 11963 11964 11965 11966 11967 11968 11969 11970 11971 11972 11973 11974 11975 11976 11977 11978 11979 11980 11981 11982 11983 11984 11985 11986 11987 11988 11989 11990 11991 11992 11993 11994 11995 11996 11997 11998 11999 12000 12001 12002 12003 12004 12005 12006 12007 12008 12009 12010 12011 12012 12013 12014 12015 12016 12017 12018 12019 12020 12021 12022 12023 12024 12025 12026 12027 12028 12029 12030 12031 12032 12033 12034 12035 12036 12037 12038 12039 12040 12041 12042 12043 12044 12045 12046 12047 12048 12049 12050 12051 12052 12053 12054 12055 12056 12057 12058 12059 12060 12061 12062 12063 12064 12065 12066 12067 12068 12069 12070 12071 12072 12073 12074 12075 12076 12077 12078 12079 12080 12081 12082 12083 12084 12085 12086 12087 12088 12089 12090 12091 12092 12093 12094 12095 12096 12097 12098 12099 12100 12101 12102 12103 12104 12105 12106 12107
.switch-icon {
  display: inline-block;
  line-height: 1;
  border: 0;
  padding: 0;
  background: transparent;
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
  cursor: pointer; }
  .switch-icon.disabled {
    pointer-events: none;
    opacity: 0.65; }
  .switch-icon:focus {
    outline: none; }
  .switch-icon svg {
    display: block;
    width: 100%;
    height: 100%; }
  .switch-icon .switch-icon-a,
  .switch-icon .switch-icon-b {
    display: block;
    width: 100%;
    height: 100%; }
  .switch-icon .switch-icon-a {
    opacity: 1; }
  .switch-icon .switch-icon-b {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0; }
  .switch-icon.active .switch-icon-a {
    opacity: 0; }
  .switch-icon.active .switch-icon-b {
    opacity: 1; }

.switch-icon-fade .switch-icon-a,
.switch-icon-fade .switch-icon-b {
  transition: opacity .5s; }

.switch-icon-scale .switch-icon-a,
.switch-icon-scale .switch-icon-b {
  transition: opacity .5s, transform .0s .5s; }

.switch-icon-scale .switch-icon-b {
  transform: scale(1.5); }

.switch-icon-scale.active .switch-icon-a,
.switch-icon-scale.active .switch-icon-b {
  transition: opacity .0s, transform .5s; }

.switch-icon-scale.active .switch-icon-b {
  transform: scale(1); }

.switch-icon-flip {
  perspective: 10em; }
  .switch-icon-flip .switch-icon-a,
  .switch-icon-flip .switch-icon-b {
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    transform-style: preserve-3d;
    transition: opacity 0s .2s, transform .4s ease-in-out; }
  .switch-icon-flip .switch-icon-a {
    opacity: 1;
    transform: rotateY(0deg); }
  .switch-icon-flip .switch-icon-b {
    opacity: 1;
    transform: rotateY(-180deg); }
  .switch-icon-flip.active .switch-icon-a {
    opacity: 1;
    transform: rotateY(180deg); }
  .switch-icon-flip.active .switch-icon-b {
    opacity: 1;
    transform: rotateY(0deg); }

.switch-icon-slide-up,
.switch-icon-slide-left,
.switch-icon-slide-right,
.switch-icon-slide-down {
  overflow: hidden; }
  .switch-icon-slide-up .switch-icon-a,
  .switch-icon-slide-up .switch-icon-b,
  .switch-icon-slide-left .switch-icon-a,
  .switch-icon-slide-left .switch-icon-b,
  .switch-icon-slide-right .switch-icon-a,
  .switch-icon-slide-right .switch-icon-b,
  .switch-icon-slide-down .switch-icon-a,
  .switch-icon-slide-down .switch-icon-b {
    transition: opacity .3s, transform .3s; }
  .switch-icon-slide-up .switch-icon-a,
  .switch-icon-slide-left .switch-icon-a,
  .switch-icon-slide-right .switch-icon-a,
  .switch-icon-slide-down .switch-icon-a {
    transform: translateY(0); }
  .switch-icon-slide-up .switch-icon-b,
  .switch-icon-slide-left .switch-icon-b,
  .switch-icon-slide-right .switch-icon-b,
  .switch-icon-slide-down .switch-icon-b {
    transform: translateY(100%); }
  .switch-icon-slide-up.active .switch-icon-a,
  .switch-icon-slide-left.active .switch-icon-a,
  .switch-icon-slide-right.active .switch-icon-a,
  .switch-icon-slide-down.active .switch-icon-a {
    transform: translateY(-100%); }
  .switch-icon-slide-up.active .switch-icon-b,
  .switch-icon-slide-left.active .switch-icon-b,
  .switch-icon-slide-right.active .switch-icon-b,
  .switch-icon-slide-down.active .switch-icon-b {
    transform: translateY(0); }

.switch-icon-slide-left .switch-icon-a {
  transform: translateX(0); }

.switch-icon-slide-left .switch-icon-b {
  transform: translateX(100%); }

.switch-icon-slide-left.active .switch-icon-a {
  transform: translateX(-100%); }

.switch-icon-slide-left.active .switch-icon-b {
  transform: translateX(0); }

.switch-icon-slide-right .switch-icon-a {
  transform: translateX(0); }

.switch-icon-slide-right .switch-icon-b {
  transform: translateX(-100%); }

.switch-icon-slide-right.active .switch-icon-a {
  transform: translateX(100%); }

.switch-icon-slide-right.active .switch-icon-b {
  transform: translateX(0); }

.switch-icon-slide-down .switch-icon-a {
  transform: translateY(0); }

.switch-icon-slide-down .switch-icon-b {
  transform: translateY(-100%); }

.switch-icon-slide-down.active .switch-icon-a {
  transform: translateY(100%); }

.switch-icon-slide-down.active .switch-icon-b {
  transform: translateY(0); }

C
codecalm 已提交
12108
.table thead th, .markdown > table thead th {
C
codecalm 已提交
12109
  color: #656d77;
C
codecalm 已提交
12110
  background: #f4f6fa;
C
codecalm 已提交
12111
  font-size: 0.625rem;
C
codecalm 已提交
12112
  font-weight: 600;
C
codecalm 已提交
12113 12114 12115
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.6;
C
codecalm 已提交
12116
  color: #656d77;
C
codecalm 已提交
12117 12118 12119 12120 12121 12122
  padding-top: 0.5rem;
  padding-bottom: 0.5rem; }
  @media print {
    .table thead th, .markdown > table thead th {
      background: transparent; } }

M
Michal Wolny 已提交
12123 12124 12125 12126 12127
.table-responsive {
  margin-bottom: 1rem; }
  .table-responsive .table, .table-responsive .markdown > table {
    margin-bottom: 0; }

M
Michal Wolny 已提交
12128 12129 12130
.table-transparent thead th {
  background: transparent; }

C
codecalm 已提交
12131 12132 12133 12134 12135 12136 12137 12138 12139 12140 12141 12142 12143 12144 12145 12146 12147 12148 12149 12150 12151 12152 12153 12154 12155
.table-nowrap > :not(caption) > * > * {
  white-space: nowrap; }

.table-vcenter > :not(caption) > * > * {
  vertical-align: middle; }

.table-center > :not(caption) > * > * {
  text-align: center; }

.td-truncate {
  max-width: 1px;
  width: 100%; }

.table-mobile {
  display: block; }
  .table-mobile thead {
    display: none; }
  .table-mobile tbody,
  .table-mobile tr {
    display: flex;
    flex-direction: column; }
  .table-mobile td {
    display: block;
    padding: 0.5rem 0.5rem !important;
    border: none;
C
codecalm 已提交
12156
    color: #232e3c !important; }
C
codecalm 已提交
12157 12158
    .table-mobile td[data-label]:before {
      font-size: 0.625rem;
C
codecalm 已提交
12159
      font-weight: 600;
C
codecalm 已提交
12160 12161 12162
      text-transform: uppercase;
      letter-spacing: .04em;
      line-height: 1.6;
C
codecalm 已提交
12163
      color: #656d77;
C
codecalm 已提交
12164 12165 12166
      content: attr(data-label);
      display: block; }
  .table-mobile tr {
C
codecalm 已提交
12167
    border-bottom: 1px solid rgba(101, 109, 119, 0.16); }
C
codecalm 已提交
12168 12169 12170
  .table-mobile .btn {
    display: block; }

C
codecalm 已提交
12171
@media (max-width: 575.98px) {
C
codecalm 已提交
12172 12173 12174 12175 12176 12177 12178 12179 12180 12181 12182 12183
  .table-mobile-sm {
    display: block; }
    .table-mobile-sm thead {
      display: none; }
    .table-mobile-sm tbody,
    .table-mobile-sm tr {
      display: flex;
      flex-direction: column; }
    .table-mobile-sm td {
      display: block;
      padding: 0.5rem 0.5rem !important;
      border: none;
C
codecalm 已提交
12184
      color: #232e3c !important; }
C
codecalm 已提交
12185 12186
      .table-mobile-sm td[data-label]:before {
        font-size: 0.625rem;
C
codecalm 已提交
12187
        font-weight: 600;
C
codecalm 已提交
12188 12189 12190
        text-transform: uppercase;
        letter-spacing: .04em;
        line-height: 1.6;
C
codecalm 已提交
12191
        color: #656d77;
C
codecalm 已提交
12192 12193 12194
        content: attr(data-label);
        display: block; }
    .table-mobile-sm tr {
C
codecalm 已提交
12195
      border-bottom: 1px solid rgba(101, 109, 119, 0.16); }
C
codecalm 已提交
12196 12197 12198
    .table-mobile-sm .btn {
      display: block; } }

C
codecalm 已提交
12199
@media (max-width: 767.98px) {
C
codecalm 已提交
12200 12201 12202 12203 12204 12205 12206 12207 12208 12209 12210 12211
  .table-mobile-md {
    display: block; }
    .table-mobile-md thead {
      display: none; }
    .table-mobile-md tbody,
    .table-mobile-md tr {
      display: flex;
      flex-direction: column; }
    .table-mobile-md td {
      display: block;
      padding: 0.5rem 0.5rem !important;
      border: none;
C
codecalm 已提交
12212
      color: #232e3c !important; }
C
codecalm 已提交
12213 12214
      .table-mobile-md td[data-label]:before {
        font-size: 0.625rem;
C
codecalm 已提交
12215
        font-weight: 600;
C
codecalm 已提交
12216 12217 12218
        text-transform: uppercase;
        letter-spacing: .04em;
        line-height: 1.6;
C
codecalm 已提交
12219
        color: #656d77;
C
codecalm 已提交
12220 12221 12222
        content: attr(data-label);
        display: block; }
    .table-mobile-md tr {
C
codecalm 已提交
12223
      border-bottom: 1px solid rgba(101, 109, 119, 0.16); }
C
codecalm 已提交
12224 12225 12226
    .table-mobile-md .btn {
      display: block; } }

C
codecalm 已提交
12227
@media (max-width: 991.98px) {
C
codecalm 已提交
12228 12229 12230 12231 12232 12233 12234 12235 12236 12237 12238 12239
  .table-mobile-lg {
    display: block; }
    .table-mobile-lg thead {
      display: none; }
    .table-mobile-lg tbody,
    .table-mobile-lg tr {
      display: flex;
      flex-direction: column; }
    .table-mobile-lg td {
      display: block;
      padding: 0.5rem 0.5rem !important;
      border: none;
C
codecalm 已提交
12240
      color: #232e3c !important; }
C
codecalm 已提交
12241 12242
      .table-mobile-lg td[data-label]:before {
        font-size: 0.625rem;
C
codecalm 已提交
12243
        font-weight: 600;
C
codecalm 已提交
12244 12245 12246
        text-transform: uppercase;
        letter-spacing: .04em;
        line-height: 1.6;
C
codecalm 已提交
12247
        color: #656d77;
C
codecalm 已提交
12248 12249 12250
        content: attr(data-label);
        display: block; }
    .table-mobile-lg tr {
C
codecalm 已提交
12251
      border-bottom: 1px solid rgba(101, 109, 119, 0.16); }
C
codecalm 已提交
12252 12253 12254
    .table-mobile-lg .btn {
      display: block; } }

C
codecalm 已提交
12255
@media (max-width: 1199.98px) {
C
codecalm 已提交
12256 12257 12258 12259 12260 12261 12262 12263 12264 12265 12266 12267
  .table-mobile-xl {
    display: block; }
    .table-mobile-xl thead {
      display: none; }
    .table-mobile-xl tbody,
    .table-mobile-xl tr {
      display: flex;
      flex-direction: column; }
    .table-mobile-xl td {
      display: block;
      padding: 0.5rem 0.5rem !important;
      border: none;
C
codecalm 已提交
12268
      color: #232e3c !important; }
C
codecalm 已提交
12269 12270
      .table-mobile-xl td[data-label]:before {
        font-size: 0.625rem;
C
codecalm 已提交
12271
        font-weight: 600;
C
codecalm 已提交
12272 12273 12274
        text-transform: uppercase;
        letter-spacing: .04em;
        line-height: 1.6;
C
codecalm 已提交
12275
        color: #656d77;
C
codecalm 已提交
12276 12277 12278
        content: attr(data-label);
        display: block; }
    .table-mobile-xl tr {
C
codecalm 已提交
12279
      border-bottom: 1px solid rgba(101, 109, 119, 0.16); }
C
codecalm 已提交
12280 12281 12282
    .table-mobile-xl .btn {
      display: block; } }

C
codecalm 已提交
12283 12284 12285 12286 12287 12288 12289 12290 12291 12292 12293 12294 12295 12296 12297 12298 12299 12300 12301 12302
@media (max-width: 1399.98px) {
  .table-mobile-xxl {
    display: block; }
    .table-mobile-xxl thead {
      display: none; }
    .table-mobile-xxl tbody,
    .table-mobile-xxl tr {
      display: flex;
      flex-direction: column; }
    .table-mobile-xxl td {
      display: block;
      padding: 0.5rem 0.5rem !important;
      border: none;
      color: #232e3c !important; }
      .table-mobile-xxl td[data-label]:before {
        font-size: 0.625rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .04em;
        line-height: 1.6;
C
codecalm 已提交
12303
        color: #656d77;
C
codecalm 已提交
12304 12305 12306
        content: attr(data-label);
        display: block; }
    .table-mobile-xxl tr {
C
codecalm 已提交
12307
      border-bottom: 1px solid rgba(101, 109, 119, 0.16); }
C
codecalm 已提交
12308 12309 12310
    .table-mobile-xxl .btn {
      display: block; } }

C
codecalm 已提交
12311 12312 12313 12314 12315 12316
.toast-header {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }

M
Michal Wolny 已提交
12317
.toast button[data-bs-dismiss="toast"] {
C
codecalm 已提交
12318 12319 12320 12321 12322 12323 12324 12325 12326 12327 12328 12329 12330 12331 12332 12333 12334 12335 12336 12337 12338
  outline: none; }

.toolbar {
  display: flex;
  flex-wrap: nowrap;
  flex-shrink: 0;
  margin: 0 -.5rem; }
  .toolbar > * {
    margin: 0 .5rem; }

/**
Horizontal rules
 */
/**
Hr text
 */
.hr-text {
  display: flex;
  align-items: center;
  margin: 2rem 0;
  font-size: 0.625rem;
C
codecalm 已提交
12339
  font-weight: 600;
C
codecalm 已提交
12340 12341 12342
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.6;
C
codecalm 已提交
12343
  color: #656d77;
C
codecalm 已提交
12344 12345 12346 12347 12348
  height: 1px; }
  .hr-text:after, .hr-text:before {
    flex: 1 1 auto;
    height: 1px;
    background-color: currentColor;
C
codecalm 已提交
12349
    opacity: 0.16; }
C
codecalm 已提交
12350 12351 12352 12353 12354 12355 12356 12357 12358
  .hr-text:before {
    content: "";
    margin-right: .5rem; }
  .hr-text:after {
    content: "";
    margin-left: .5rem; }
  .hr-text > *:first-child {
    padding-right: .5rem;
    padding-left: 0;
C
codecalm 已提交
12359
    color: #656d77; }
C
codecalm 已提交
12360 12361 12362 12363 12364 12365 12366 12367 12368 12369 12370 12371 12372 12373 12374 12375 12376 12377 12378 12379 12380 12381 12382 12383 12384 12385 12386 12387 12388 12389 12390 12391 12392 12393 12394 12395 12396 12397 12398 12399 12400 12401 12402
  .hr-text.hr-text-left:before {
    content: none; }
  .hr-text.hr-text-left > *:first-child {
    padding-right: .5rem;
    padding-left: .5rem; }
  .hr-text.hr-text-right:before {
    content: ""; }
  .hr-text.hr-text-right:after {
    content: none; }
  .hr-text.hr-text-right > *:first-child {
    padding-right: 0;
    padding-left: .5rem; }
  .card > .hr-text {
    margin: 0; }

.hr-text-spaceless {
  margin: -.5rem 0; }

.lead {
  line-height: 1.4; }

a {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto; }

h1 a, .h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a,
h6 a,
.h6 a,
.h1 a,
.h2 a,
.h3 a,
.h4 a,
.h5 a,
.h6 a {
  color: inherit; }
C
codecalm 已提交
12403 12404 12405 12406 12407 12408 12409 12410 12411 12412 12413 12414 12415 12416 12417 12418 12419 12420
  h1 a:hover, .h1 a:hover,
  h2 a:hover,
  .h2 a:hover,
  h3 a:hover,
  .h3 a:hover,
  h4 a:hover,
  .h4 a:hover,
  h5 a:hover,
  .h5 a:hover,
  h6 a:hover,
  .h6 a:hover,
  .h1 a:hover,
  .h2 a:hover,
  .h3 a:hover,
  .h4 a:hover,
  .h5 a:hover,
  .h6 a:hover {
    color: inherit; }
C
codecalm 已提交
12421 12422

h1, .h1 {
C
codecalm 已提交
12423
  line-height: 1.3333333; }
C
codecalm 已提交
12424 12425

h2, .h2 {
C
codecalm 已提交
12426
  line-height: 1.4; }
C
codecalm 已提交
12427 12428 12429 12430 12431

h3, .h3 {
  line-height: 1.5; }

h4, .h4 {
C
codecalm 已提交
12432
  line-height: 1.4285714; }
C
codecalm 已提交
12433 12434

h5, .h5 {
C
codecalm 已提交
12435
  line-height: 1.3333333; }
C
codecalm 已提交
12436 12437 12438 12439 12440 12441 12442

h6, .h6 {
  line-height: 1.6; }

strong,
.strong,
b {
C
codecalm 已提交
12443
  font-weight: 600; }
C
codecalm 已提交
12444 12445 12446

blockquote {
  padding-left: 1rem;
C
codecalm 已提交
12447
  border-left: 2px solid #e6e8e9; }
C
codecalm 已提交
12448 12449 12450 12451 12452 12453 12454 12455
  blockquote p {
    margin-bottom: 1rem; }
  blockquote cite {
    display: block;
    text-align: right; }
    blockquote cite:before {
      content: "— "; }

C
codecalm 已提交
12456 12457 12458
ul, ol {
  padding-left: 1.5rem; }

C
codecalm 已提交
12459 12460 12461 12462 12463 12464 12465 12466 12467 12468
hr, .hr {
  margin: 2rem 0; }

dl dd:last-child {
  margin-bottom: 0; }

code {
  padding: 2px 4px;
  background: rgba(32, 107, 196, 0.03);
  border: 1px solid rgba(32, 107, 196, 0.064);
C
codecalm 已提交
12469
  border-radius: 4px;
C
codecalm 已提交
12470
  font-weight: 400; }
C
codecalm 已提交
12471 12472 12473 12474

pre {
  padding: 1rem;
  overflow: auto;
C
codecalm 已提交
12475
  font-size: 85.7142857%;
C
codecalm 已提交
12476 12477 12478 12479 12480 12481 12482
  -webkit-hyphens: none;
      -ms-hyphens: none;
          hyphens: none;
  line-height: 1.25rem;
  -moz-tab-size: 3;
    -o-tab-size: 3;
       tab-size: 3;
C
codecalm 已提交
12483
  border-radius: 4px;
C
codecalm 已提交
12484
  white-space: pre-wrap;
C
codecalm 已提交
12485 12486 12487
  background: #fafbfd;
  border: 1px solid rgba(101, 109, 119, 0.16);
  -webkit-font-smoothing: auto; }
C
codecalm 已提交
12488 12489 12490 12491 12492 12493 12494 12495 12496
  pre code {
    padding: 0;
    background: none;
    border: none;
    border-radius: 0; }

img {
  max-width: 100%; }

C
codecalm 已提交
12497 12498 12499
.list-unstyled {
  margin-left: 0; }

C
codecalm 已提交
12500 12501 12502 12503
/**
Selection
 */
::-moz-selection {
C
codecalm 已提交
12504
  color: #ffffff;
C
codecalm 已提交
12505 12506
  background-color: #307fdd; }
::selection {
C
codecalm 已提交
12507
  color: #ffffff;
C
codecalm 已提交
12508 12509 12510 12511 12512 12513
  background-color: #307fdd; }

/**
Links
 */
[class^="link-"].disabled, [class*=" link-"].disabled {
C
codecalm 已提交
12514
  color: #a0a6ae;
C
codecalm 已提交
12515 12516 12517 12518 12519 12520 12521
  pointer-events: none; }

/**
Subheader
 */
.subheader {
  font-size: 0.625rem;
C
codecalm 已提交
12522
  font-weight: 600;
C
codecalm 已提交
12523 12524 12525
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.6;
C
codecalm 已提交
12526
  color: #656d77; }
C
codecalm 已提交
12527 12528 12529 12530 12531 12532 12533 12534 12535 12536 12537 12538 12539 12540 12541 12542 12543 12544 12545 12546 12547 12548 12549

.chart {
  display: block;
  min-height: 10rem; }
  .chart text {
    font-family: inherit; }

.chart-sm {
  height: 2.5rem; }

.chart-lg {
  height: 15rem; }

.chart-square {
  height: 5.75rem; }

/**
Chart sparkline
 */
.chart-sparkline {
  position: relative;
  width: 4rem;
  height: 2.5rem;
M
Michal Wolny 已提交
12550 12551
  line-height: 1;
  min-height: 0 !important; }
C
codecalm 已提交
12552

M
Michal Wolny 已提交
12553 12554 12555
.chart-sparkline-sm {
  height: 1.5rem; }

C
codecalm 已提交
12556 12557 12558 12559 12560 12561 12562 12563 12564 12565 12566 12567 12568 12569 12570 12571 12572 12573
.chart-sparkline-square {
  width: 2.5rem; }

.chart-sparkline-wide {
  width: 6rem; }

.chart-sparkline-label {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem; }
  .chart-sparkline-label .icon {
    width: 1rem;
C
codecalm 已提交
12574 12575
    height: 1rem;
    font-size: 1rem; }
C
codecalm 已提交
12576 12577

.bg-white-overlay {
C
codecalm 已提交
12578
  color: #ffffff;
C
codecalm 已提交
12579
  background-color: rgba(244, 246, 250, 0.24); }
C
codecalm 已提交
12580 12581

.bg-dark-overlay {
C
codecalm 已提交
12582
  color: #ffffff;
C
codecalm 已提交
12583
  background-color: rgba(35, 46, 60, 0.24); }
C
codecalm 已提交
12584 12585 12586 12587 12588 12589 12590 12591 12592 12593 12594 12595 12596 12597 12598 12599 12600 12601 12602 12603 12604 12605 12606

.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center; }

/**
SOCIAL COLORS
 */
.bg-facebook {
  color: #fff !important;
  background: #3b5998 !important; }

.text-facebook {
  color: #3b5998 !important; }

.bg-twitter {
  color: #fff !important;
  background: #1da1f2 !important; }

.text-twitter {
  color: #1da1f2 !important; }

C
codecalm 已提交
12607 12608 12609 12610 12611 12612 12613
.bg-linkedin {
  color: #fff !important;
  background: #0a66c2 !important; }

.text-linkedin {
  color: #0a66c2 !important; }

C
codecalm 已提交
12614 12615 12616 12617 12618 12619 12620 12621 12622 12623 12624 12625 12626 12627 12628 12629 12630 12631 12632 12633 12634 12635 12636 12637 12638 12639 12640 12641 12642 12643 12644 12645 12646 12647 12648 12649 12650 12651 12652 12653 12654 12655 12656 12657 12658 12659 12660 12661 12662 12663 12664 12665 12666 12667 12668 12669 12670 12671 12672 12673 12674 12675 12676 12677 12678 12679 12680 12681 12682 12683 12684 12685 12686 12687 12688 12689 12690 12691 12692 12693 12694 12695 12696 12697 12698 12699 12700 12701 12702 12703 12704
.bg-google {
  color: #fff !important;
  background: #dc4e41 !important; }

.text-google {
  color: #dc4e41 !important; }

.bg-youtube {
  color: #fff !important;
  background: #ff0000 !important; }

.text-youtube {
  color: #ff0000 !important; }

.bg-vimeo {
  color: #fff !important;
  background: #1ab7ea !important; }

.text-vimeo {
  color: #1ab7ea !important; }

.bg-dribbble {
  color: #fff !important;
  background: #ea4c89 !important; }

.text-dribbble {
  color: #ea4c89 !important; }

.bg-github {
  color: #fff !important;
  background: #181717 !important; }

.text-github {
  color: #181717 !important; }

.bg-instagram {
  color: #fff !important;
  background: #e4405f !important; }

.text-instagram {
  color: #e4405f !important; }

.bg-pinterest {
  color: #fff !important;
  background: #bd081c !important; }

.text-pinterest {
  color: #bd081c !important; }

.bg-vk {
  color: #fff !important;
  background: #6383a8 !important; }

.text-vk {
  color: #6383a8 !important; }

.bg-rss {
  color: #fff !important;
  background: #ffa500 !important; }

.text-rss {
  color: #ffa500 !important; }

.bg-flickr {
  color: #fff !important;
  background: #0063dc !important; }

.text-flickr {
  color: #0063dc !important; }

.bg-bitbucket {
  color: #fff !important;
  background: #0052cc !important; }

.text-bitbucket {
  color: #0052cc !important; }

.bg-tabler {
  color: #fff !important;
  background: #206bc4 !important; }

.text-tabler {
  color: #206bc4 !important; }

.bg-blue {
  background: #206bc4; }

.text-blue {
  color: #206bc4 !important; }

.bg-blue-lt {
C
codecalm 已提交
12705 12706
  color: #206bc4 !important;
  background: rgba(32, 107, 196, 0.1) !important; }
C
codecalm 已提交
12707 12708

.bg-azure {
C
codecalm 已提交
12709
  background: #4299e1; }
C
codecalm 已提交
12710 12711

.text-azure {
C
codecalm 已提交
12712
  color: #4299e1 !important; }
C
codecalm 已提交
12713 12714

.bg-azure-lt {
C
codecalm 已提交
12715 12716
  color: #4299e1 !important;
  background: rgba(66, 153, 225, 0.1) !important; }
C
codecalm 已提交
12717 12718

.bg-indigo {
M
Michal Wolny 已提交
12719
  background: #4263eb; }
C
codecalm 已提交
12720 12721

.text-indigo {
M
Michal Wolny 已提交
12722
  color: #4263eb !important; }
C
codecalm 已提交
12723 12724

.bg-indigo-lt {
C
codecalm 已提交
12725 12726
  color: #4263eb !important;
  background: rgba(66, 99, 235, 0.1) !important; }
C
codecalm 已提交
12727 12728

.bg-purple {
M
Michal Wolny 已提交
12729
  background: #ae3ec9; }
C
codecalm 已提交
12730 12731

.text-purple {
M
Michal Wolny 已提交
12732
  color: #ae3ec9 !important; }
C
codecalm 已提交
12733 12734

.bg-purple-lt {
C
codecalm 已提交
12735 12736
  color: #ae3ec9 !important;
  background: rgba(174, 62, 201, 0.1) !important; }
C
codecalm 已提交
12737 12738

.bg-pink {
M
Michal Wolny 已提交
12739
  background: #d6336c; }
C
codecalm 已提交
12740 12741

.text-pink {
M
Michal Wolny 已提交
12742
  color: #d6336c !important; }
C
codecalm 已提交
12743 12744

.bg-pink-lt {
C
codecalm 已提交
12745 12746
  color: #d6336c !important;
  background: rgba(214, 51, 108, 0.1) !important; }
C
codecalm 已提交
12747 12748

.bg-red {
M
Michal Wolny 已提交
12749
  background: #d63939; }
C
codecalm 已提交
12750 12751

.text-red {
M
Michal Wolny 已提交
12752
  color: #d63939 !important; }
C
codecalm 已提交
12753 12754

.bg-red-lt {
C
codecalm 已提交
12755 12756
  color: #d63939 !important;
  background: rgba(214, 57, 57, 0.1) !important; }
C
codecalm 已提交
12757 12758

.bg-orange {
M
Michal Wolny 已提交
12759
  background: #f76707; }
C
codecalm 已提交
12760 12761

.text-orange {
M
Michal Wolny 已提交
12762
  color: #f76707 !important; }
C
codecalm 已提交
12763 12764

.bg-orange-lt {
C
codecalm 已提交
12765 12766
  color: #f76707 !important;
  background: rgba(247, 103, 7, 0.1) !important; }
C
codecalm 已提交
12767 12768

.bg-yellow {
M
Michal Wolny 已提交
12769
  background: #f59f00; }
C
codecalm 已提交
12770 12771

.text-yellow {
M
Michal Wolny 已提交
12772
  color: #f59f00 !important; }
C
codecalm 已提交
12773 12774

.bg-yellow-lt {
C
codecalm 已提交
12775 12776
  color: #f59f00 !important;
  background: rgba(245, 159, 0, 0.1) !important; }
C
codecalm 已提交
12777 12778

.bg-lime {
M
Michal Wolny 已提交
12779
  background: #74b816; }
C
codecalm 已提交
12780 12781

.text-lime {
M
Michal Wolny 已提交
12782
  color: #74b816 !important; }
C
codecalm 已提交
12783 12784

.bg-lime-lt {
C
codecalm 已提交
12785 12786
  color: #74b816 !important;
  background: rgba(116, 184, 22, 0.1) !important; }
C
codecalm 已提交
12787 12788

.bg-green {
M
Michal Wolny 已提交
12789
  background: #2fb344; }
C
codecalm 已提交
12790 12791

.text-green {
M
Michal Wolny 已提交
12792
  color: #2fb344 !important; }
C
codecalm 已提交
12793 12794

.bg-green-lt {
C
codecalm 已提交
12795 12796
  color: #2fb344 !important;
  background: rgba(47, 179, 68, 0.1) !important; }
C
codecalm 已提交
12797 12798

.bg-teal {
M
Michal Wolny 已提交
12799
  background: #0ca678; }
C
codecalm 已提交
12800 12801

.text-teal {
M
Michal Wolny 已提交
12802
  color: #0ca678 !important; }
C
codecalm 已提交
12803 12804

.bg-teal-lt {
C
codecalm 已提交
12805 12806
  color: #0ca678 !important;
  background: rgba(12, 166, 120, 0.1) !important; }
C
codecalm 已提交
12807 12808 12809 12810 12811 12812 12813 12814

.bg-cyan {
  background: #17a2b8; }

.text-cyan {
  color: #17a2b8 !important; }

.bg-cyan-lt {
C
codecalm 已提交
12815 12816
  color: #17a2b8 !important;
  background: rgba(23, 162, 184, 0.1) !important; }
C
codecalm 已提交
12817

M
Michal Wolny 已提交
12818 12819 12820 12821 12822 12823 12824
.bg-dark {
  background: #232e3c; }

.text-dark {
  color: #232e3c !important; }

.bg-dark-lt {
C
codecalm 已提交
12825 12826
  color: #232e3c !important;
  background: rgba(35, 46, 60, 0.1) !important; }
M
Michal Wolny 已提交
12827 12828 12829 12830 12831 12832 12833 12834

.bg-muted {
  background: #656d77; }

.text-muted {
  color: #656d77 !important; }

.bg-muted-lt {
C
codecalm 已提交
12835 12836
  color: #656d77 !important;
  background: rgba(101, 109, 119, 0.1) !important; }
M
Michal Wolny 已提交
12837 12838 12839 12840 12841 12842 12843 12844

.bg-white {
  background: #ffffff; }

.text-white {
  color: #ffffff !important; }

.bg-white-lt {
C
codecalm 已提交
12845 12846
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.1) !important; }
M
Michal Wolny 已提交
12847

C
codecalm 已提交
12848 12849 12850 12851 12852 12853 12854 12855 12856 12857 12858 12859 12860 12861 12862 12863 12864 12865 12866 12867 12868 12869 12870 12871 12872 12873 12874 12875 12876 12877 12878 12879 12880 12881 12882 12883 12884 12885 12886 12887 12888 12889 12890 12891 12892 12893 12894 12895 12896 12897 12898 12899 12900 12901 12902 12903
/*
Scrollable
*/
.scrollable {
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; }
  .scrollable.hover {
    overflow-y: hidden; }
    .scrollable.hover > * {
      margin-top: -1px; }
    .scrollable.hover:hover, .scrollable.hover:focus, .scrollable.hover:active {
      overflow: visible;
      overflow-y: auto; }
  .touch .scrollable {
    overflow-y: auto !important; }

.scroll-x,
.scroll-y {
  overflow: hidden;
  -webkit-overflow-scrolling: touch; }

.scroll-y {
  overflow-y: auto; }

.scroll-x {
  overflow-x: auto; }

.no-scroll {
  overflow: hidden; }

.w-0 {
  width: 0 !important; }

.h-0 {
  height: 0 !important; }

.w-1 {
  width: 0.25rem !important; }

.h-1 {
  height: 0.25rem !important; }

.w-2 {
  width: 0.5rem !important; }

.h-2 {
  height: 0.5rem !important; }

.w-3 {
  width: 1rem !important; }

.h-3 {
  height: 1rem !important; }

.w-4 {
C
codecalm 已提交
12904
  width: 2rem !important; }
C
codecalm 已提交
12905 12906

.h-4 {
C
codecalm 已提交
12907
  height: 2rem !important; }
C
codecalm 已提交
12908 12909

.w-5 {
C
codecalm 已提交
12910
  width: 4rem !important; }
C
codecalm 已提交
12911 12912

.h-5 {
C
codecalm 已提交
12913
  height: 4rem !important; }
C
codecalm 已提交
12914 12915 12916 12917 12918 12919 12920 12921 12922 12923 12924 12925 12926 12927 12928 12929 12930 12931 12932 12933 12934 12935 12936 12937 12938 12939 12940 12941 12942 12943 12944 12945 12946 12947 12948 12949 12950 12951 12952 12953 12954 12955 12956 12957 12958 12959 12960 12961 12962 12963 12964 12965 12966 12967 12968 12969 12970 12971 12972 12973 12974 12975 12976 12977 12978 12979 12980 12981 12982 12983 12984 12985 12986 12987 12988 12989 12990 12991 12992 12993 12994 12995 12996 12997 12998 12999 13000 13001 13002 13003 13004 13005 13006 13007 13008 13009 13010 13011 13012 13013 13014 13015 13016 13017 13018 13019 13020

.w-auto {
  width: auto !important; }

.h-auto {
  height: auto !important; }

.w-px {
  width: 1px !important; }

.h-px {
  height: 1px !important; }

.w-full {
  width: 100% !important; }

.h-full {
  height: 100% !important; }

.opacity-0 {
  opacity: 0 !important; }

.opacity-5 {
  opacity: 0.05 !important; }

.opacity-10 {
  opacity: 0.1 !important; }

.opacity-15 {
  opacity: 0.15 !important; }

.opacity-20 {
  opacity: 0.2 !important; }

.opacity-25 {
  opacity: 0.25 !important; }

.opacity-30 {
  opacity: 0.3 !important; }

.opacity-35 {
  opacity: 0.35 !important; }

.opacity-40 {
  opacity: 0.4 !important; }

.opacity-45 {
  opacity: 0.45 !important; }

.opacity-50 {
  opacity: 0.5 !important; }

.opacity-55 {
  opacity: 0.55 !important; }

.opacity-60 {
  opacity: 0.6 !important; }

.opacity-65 {
  opacity: 0.65 !important; }

.opacity-70 {
  opacity: 0.7 !important; }

.opacity-75 {
  opacity: 0.75 !important; }

.opacity-80 {
  opacity: 0.8 !important; }

.opacity-85 {
  opacity: 0.85 !important; }

.opacity-90 {
  opacity: 0.9 !important; }

.opacity-95 {
  opacity: 0.95 !important; }

.opacity-100 {
  opacity: 1 !important; }

.hover-shadow-sm:hover {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; }

.hover-shadow:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; }

.hover-shadow-lg:hover {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; }

.hover-shadow-none:hover {
  box-shadow: none !important; }

/**
Antialiasing
 */
.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.subpixel-antialiased {
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto; }

@media not print {
  .theme-dark {
C
codecalm 已提交
13021
    color: #f4f6fa;
C
codecalm 已提交
13022
    background-color: #1f2936; }
C
codecalm 已提交
13023
  .theme-dark .card,
C
codecalm 已提交
13024 13025
  .theme-dark .card-footer,
  .theme-dark .card-stacked::after,
C
codecalm 已提交
13026
  .theme-dark .footer:not(.footer-transparent),
C
codecalm 已提交
13027 13028
  .theme-dark .modal-content,
  .theme-dark .modal-header,
C
codecalm 已提交
13029
  .theme-dark .dropdown-menu {
C
codecalm 已提交
13030
    background-color: #232e3c;
C
codecalm 已提交
13031 13032 13033
    color: inherit; }
  .theme-dark .card {
    border-color: transparent; }
C
codecalm 已提交
13034 13035 13036 13037 13038 13039
  .theme-dark .card-tabs .nav-tabs .nav-link {
    background-color: #1f2936;
    color: inherit; }
  .theme-dark .card-tabs .nav-tabs .nav-link.active {
    background-color: #232e3c;
    color: inherit; }
C
codecalm 已提交
13040 13041 13042 13043 13044 13045 13046 13047 13048 13049
  .theme-dark .btn-white,
  .theme-dark .form-file-button {
    background-image: none; }
  .theme-dark .form-check-input:not(:checked),
  .theme-dark .form-select,
  .theme-dark .form-file-text,
  .theme-dark .form-control,
  .theme-dark .form-selectgroup-label,
  .theme-dark .form-selectgroup-check,
  .theme-dark .form-imagecheck-figure:before {
C
codecalm 已提交
13050
    background-color: #1f2936;
C
codecalm 已提交
13051
    color: #f4f6fa; }
C
codecalm 已提交
13052
  .theme-dark .form-control-plaintext {
C
codecalm 已提交
13053
    color: #f4f6fa; }
C
codecalm 已提交
13054
  .theme-dark .input-group-flat .input-group-text {
C
codecalm 已提交
13055
    background-color: #1f2936; }
C
codecalm 已提交
13056
  .theme-dark .highlight {
C
codecalm 已提交
13057
    background-color: #1f2936; }
C
codecalm 已提交
13058
  .theme-dark .avatar {
C
codecalm 已提交
13059
    background-color: #273342; }
C
codecalm 已提交
13060
  .theme-dark .avatar-list-stacked .avatar {
C
codecalm 已提交
13061
    box-shadow: 0 0 0 2px #232e3c; }
C
codecalm 已提交
13062 13063
  .theme-dark .markdown,
  .theme-dark .markdown > *,
C
codecalm 已提交
13064 13065
  .theme-dark .btn-close,
  .theme-dark .accordion-button {
C
codecalm 已提交
13066 13067
    color: inherit; }
  .theme-dark .apexcharts-text {
C
codecalm 已提交
13068
    fill: #f4f6fa; }
C
codecalm 已提交
13069 13070 13071
  .theme-dark .apexcharts-legend-text {
    color: inherit !important; }
  .theme-dark .navbar-brand-autodark {
C
codecalm 已提交
13072 13073 13074 13075 13076 13077
    filter: brightness(0) invert(1); }
  .theme-dark .table thead th, .theme-dark .markdown > table thead th,
  .theme-dark .input-group-text {
    background: transparent; }
  .theme-dark .list-group-item,
  .theme-dark .form-fieldset {
C
codecalm 已提交
13078
    border-color: #dadcde; }
C
codecalm 已提交
13079 13080
  .theme-dark .list-group-header {
    background: #1f2936;
C
codecalm 已提交
13081
    border-color: #dadcde; } }
C
codecalm 已提交
13082 13083 13084

@media not print and (prefers-color-scheme: dark) {
  .theme-dark-auto {
C
codecalm 已提交
13085
    color: #f4f6fa;
C
codecalm 已提交
13086
    background-color: #1f2936; }
C
codecalm 已提交
13087
  .theme-dark-auto .card,
C
codecalm 已提交
13088 13089
  .theme-dark-auto .card-footer,
  .theme-dark-auto .card-stacked::after,
C
codecalm 已提交
13090
  .theme-dark-auto .footer:not(.footer-transparent),
C
codecalm 已提交
13091 13092
  .theme-dark-auto .modal-content,
  .theme-dark-auto .modal-header,
C
codecalm 已提交
13093
  .theme-dark-auto .dropdown-menu {
C
codecalm 已提交
13094
    background-color: #232e3c;
C
codecalm 已提交
13095 13096 13097
    color: inherit; }
  .theme-dark-auto .card {
    border-color: transparent; }
C
codecalm 已提交
13098 13099 13100 13101 13102 13103
  .theme-dark-auto .card-tabs .nav-tabs .nav-link {
    background-color: #1f2936;
    color: inherit; }
  .theme-dark-auto .card-tabs .nav-tabs .nav-link.active {
    background-color: #232e3c;
    color: inherit; }
C
codecalm 已提交
13104 13105 13106 13107 13108 13109 13110 13111 13112 13113
  .theme-dark-auto .btn-white,
  .theme-dark-auto .form-file-button {
    background-image: none; }
  .theme-dark-auto .form-check-input:not(:checked),
  .theme-dark-auto .form-select,
  .theme-dark-auto .form-file-text,
  .theme-dark-auto .form-control,
  .theme-dark-auto .form-selectgroup-label,
  .theme-dark-auto .form-selectgroup-check,
  .theme-dark-auto .form-imagecheck-figure:before {
C
codecalm 已提交
13114
    background-color: #1f2936;
C
codecalm 已提交
13115
    color: #f4f6fa; }
C
codecalm 已提交
13116
  .theme-dark-auto .form-control-plaintext {
C
codecalm 已提交
13117
    color: #f4f6fa; }
C
codecalm 已提交
13118
  .theme-dark-auto .input-group-flat .input-group-text {
C
codecalm 已提交
13119
    background-color: #1f2936; }
C
codecalm 已提交
13120
  .theme-dark-auto .highlight {
C
codecalm 已提交
13121
    background-color: #1f2936; }
C
codecalm 已提交
13122
  .theme-dark-auto .avatar {
C
codecalm 已提交
13123
    background-color: #273342; }
C
codecalm 已提交
13124
  .theme-dark-auto .avatar-list-stacked .avatar {
C
codecalm 已提交
13125
    box-shadow: 0 0 0 2px #232e3c; }
C
codecalm 已提交
13126 13127
  .theme-dark-auto .markdown,
  .theme-dark-auto .markdown > *,
C
codecalm 已提交
13128 13129
  .theme-dark-auto .btn-close,
  .theme-dark-auto .accordion-button {
C
codecalm 已提交
13130 13131
    color: inherit; }
  .theme-dark-auto .apexcharts-text {
C
codecalm 已提交
13132
    fill: #f4f6fa; }
C
codecalm 已提交
13133 13134 13135
  .theme-dark-auto .apexcharts-legend-text {
    color: inherit !important; }
  .theme-dark-auto .navbar-brand-autodark {
C
codecalm 已提交
13136 13137 13138 13139 13140 13141
    filter: brightness(0) invert(1); }
  .theme-dark-auto .table thead th, .theme-dark-auto .markdown > table thead th,
  .theme-dark-auto .input-group-text {
    background: transparent; }
  .theme-dark-auto .list-group-item,
  .theme-dark-auto .form-fieldset {
C
codecalm 已提交
13142
    border-color: #dadcde; }
C
codecalm 已提交
13143 13144
  .theme-dark-auto .list-group-header {
    background: #1f2936;
C
codecalm 已提交
13145
    border-color: #dadcde; } }