You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10224 lines
192 KiB

  1. /*!
  2. * Bootstrap v4.4.1 (https://getbootstrap.com/)
  3. * Copyright 2011-2019 The Bootstrap Authors
  4. * Copyright 2011-2019 Twitter, Inc.
  5. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
  6. */
  7. :root {
  8. --blue: #007bff;
  9. --indigo: #6610f2;
  10. --purple: #6f42c1;
  11. --pink: #e83e8c;
  12. --red: #dc3545;
  13. --orange: #fd7e14;
  14. --yellow: #ffc107;
  15. --green: #28a745;
  16. --teal: #20c997;
  17. --cyan: #17a2b8;
  18. --white: #fff;
  19. --gray: #6c757d;
  20. --gray-dark: #343a40;
  21. --primary: #007bff;
  22. --secondary: #6c757d;
  23. --success: #28a745;
  24. --info: #17a2b8;
  25. --warning: #ffc107;
  26. --danger: #dc3545;
  27. --light: #f8f9fa;
  28. --dark: #343a40;
  29. --breakpoint-xs: 0;
  30. --breakpoint-sm: 576px;
  31. --breakpoint-md: 768px;
  32. --breakpoint-lg: 992px;
  33. --breakpoint-xl: 1200px;
  34. --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  35. --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  36. }
  37. *,
  38. *::before,
  39. *::after {
  40. box-sizing: border-box;
  41. }
  42. html {
  43. font-family: sans-serif;
  44. line-height: 1.15;
  45. -webkit-text-size-adjust: 100%;
  46. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  47. }
  48. article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  49. display: block;
  50. }
  51. body {
  52. margin: 0;
  53. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  54. font-size: 1rem;
  55. font-weight: 400;
  56. line-height: 1.5;
  57. color: #212529;
  58. text-align: left;
  59. background-color: #fff;
  60. }
  61. [tabindex="-1"]:focus:not(:focus-visible) {
  62. outline: 0 !important;
  63. }
  64. hr {
  65. box-sizing: content-box;
  66. height: 0;
  67. overflow: visible;
  68. }
  69. h1, h2, h3, h4, h5, h6 {
  70. margin-top: 0;
  71. margin-bottom: 0.5rem;
  72. }
  73. p {
  74. margin-top: 0;
  75. margin-bottom: 1rem;
  76. }
  77. abbr[title],
  78. abbr[data-original-title] {
  79. text-decoration: underline;
  80. -webkit-text-decoration: underline dotted;
  81. text-decoration: underline dotted;
  82. cursor: help;
  83. border-bottom: 0;
  84. -webkit-text-decoration-skip-ink: none;
  85. text-decoration-skip-ink: none;
  86. }
  87. address {
  88. margin-bottom: 1rem;
  89. font-style: normal;
  90. line-height: inherit;
  91. }
  92. ol,
  93. ul,
  94. dl {
  95. margin-top: 0;
  96. margin-bottom: 1rem;
  97. }
  98. ol ol,
  99. ul ul,
  100. ol ul,
  101. ul ol {
  102. margin-bottom: 0;
  103. }
  104. dt {
  105. font-weight: 700;
  106. }
  107. dd {
  108. margin-bottom: .5rem;
  109. margin-left: 0;
  110. }
  111. blockquote {
  112. margin: 0 0 1rem;
  113. }
  114. b,
  115. strong {
  116. font-weight: bolder;
  117. }
  118. small {
  119. font-size: 80%;
  120. }
  121. sub,
  122. sup {
  123. position: relative;
  124. font-size: 75%;
  125. line-height: 0;
  126. vertical-align: baseline;
  127. }
  128. sub {
  129. bottom: -.25em;
  130. }
  131. sup {
  132. top: -.5em;
  133. }
  134. a {
  135. color: #007bff;
  136. text-decoration: none;
  137. background-color: transparent;
  138. }
  139. a:hover {
  140. color: #0056b3;
  141. text-decoration: underline;
  142. }
  143. a:not([href]) {
  144. color: inherit;
  145. text-decoration: none;
  146. }
  147. a:not([href]):hover {
  148. color: inherit;
  149. text-decoration: none;
  150. }
  151. pre,
  152. code,
  153. kbd,
  154. samp {
  155. font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  156. font-size: 1em;
  157. }
  158. pre {
  159. margin-top: 0;
  160. margin-bottom: 1rem;
  161. overflow: auto;
  162. }
  163. figure {
  164. margin: 0 0 1rem;
  165. }
  166. img {
  167. vertical-align: middle;
  168. border-style: none;
  169. }
  170. svg {
  171. overflow: hidden;
  172. vertical-align: middle;
  173. }
  174. table {
  175. border-collapse: collapse;
  176. }
  177. caption {
  178. padding-top: 0.75rem;
  179. padding-bottom: 0.75rem;
  180. color: #6c757d;
  181. text-align: left;
  182. caption-side: bottom;
  183. }
  184. th {
  185. text-align: inherit;
  186. }
  187. label {
  188. display: inline-block;
  189. margin-bottom: 0.5rem;
  190. }
  191. button {
  192. border-radius: 0;
  193. }
  194. button:focus {
  195. outline: 1px dotted;
  196. outline: 5px auto -webkit-focus-ring-color;
  197. }
  198. input,
  199. button,
  200. select,
  201. optgroup,
  202. textarea {
  203. margin: 0;
  204. font-family: inherit;
  205. font-size: inherit;
  206. line-height: inherit;
  207. }
  208. button,
  209. input {
  210. overflow: visible;
  211. }
  212. button,
  213. select {
  214. text-transform: none;
  215. }
  216. select {
  217. word-wrap: normal;
  218. }
  219. button,
  220. [type="button"],
  221. [type="reset"],
  222. [type="submit"] {
  223. -webkit-appearance: button;
  224. }
  225. button:not(:disabled),
  226. [type="button"]:not(:disabled),
  227. [type="reset"]:not(:disabled),
  228. [type="submit"]:not(:disabled) {
  229. cursor: pointer;
  230. }
  231. button::-moz-focus-inner,
  232. [type="button"]::-moz-focus-inner,
  233. [type="reset"]::-moz-focus-inner,
  234. [type="submit"]::-moz-focus-inner {
  235. padding: 0;
  236. border-style: none;
  237. }
  238. input[type="radio"],
  239. input[type="checkbox"] {
  240. box-sizing: border-box;
  241. padding: 0;
  242. }
  243. input[type="date"],
  244. input[type="time"],
  245. input[type="datetime-local"],
  246. input[type="month"] {
  247. -webkit-appearance: listbox;
  248. }
  249. textarea {
  250. overflow: auto;
  251. resize: vertical;
  252. }
  253. fieldset {
  254. min-width: 0;
  255. padding: 0;
  256. margin: 0;
  257. border: 0;
  258. }
  259. legend {
  260. display: block;
  261. width: 100%;
  262. max-width: 100%;
  263. padding: 0;
  264. margin-bottom: .5rem;
  265. font-size: 1.5rem;
  266. line-height: inherit;
  267. color: inherit;
  268. white-space: normal;
  269. }
  270. progress {
  271. vertical-align: baseline;
  272. }
  273. [type="number"]::-webkit-inner-spin-button,
  274. [type="number"]::-webkit-outer-spin-button {
  275. height: auto;
  276. }
  277. [type="search"] {
  278. outline-offset: -2px;
  279. -webkit-appearance: none;
  280. }
  281. [type="search"]::-webkit-search-decoration {
  282. -webkit-appearance: none;
  283. }
  284. ::-webkit-file-upload-button {
  285. font: inherit;
  286. -webkit-appearance: button;
  287. }
  288. output {
  289. display: inline-block;
  290. }
  291. summary {
  292. display: list-item;
  293. cursor: pointer;
  294. }
  295. template {
  296. display: none;
  297. }
  298. [hidden] {
  299. display: none !important;
  300. }
  301. h1, h2, h3, h4, h5, h6,
  302. .h1, .h2, .h3, .h4, .h5, .h6 {
  303. margin-bottom: 0.5rem;
  304. font-weight: 500;
  305. line-height: 1.2;
  306. }
  307. h1, .h1 {
  308. font-size: 2.5rem;
  309. }
  310. h2, .h2 {
  311. font-size: 2rem;
  312. }
  313. h3, .h3 {
  314. font-size: 1.75rem;
  315. }
  316. h4, .h4 {
  317. font-size: 1.5rem;
  318. }
  319. h5, .h5 {
  320. font-size: 1.25rem;
  321. }
  322. h6, .h6 {
  323. font-size: 1rem;
  324. }
  325. .lead {
  326. font-size: 1.25rem;
  327. font-weight: 300;
  328. }
  329. .display-1 {
  330. font-size: 6rem;
  331. font-weight: 300;
  332. line-height: 1.2;
  333. }
  334. .display-2 {
  335. font-size: 5.5rem;
  336. font-weight: 300;
  337. line-height: 1.2;
  338. }
  339. .display-3 {
  340. font-size: 4.5rem;
  341. font-weight: 300;
  342. line-height: 1.2;
  343. }
  344. .display-4 {
  345. font-size: 3.5rem;
  346. font-weight: 300;
  347. line-height: 1.2;
  348. }
  349. hr {
  350. margin-top: 1rem;
  351. margin-bottom: 1rem;
  352. border: 0;
  353. border-top: 1px solid rgba(0, 0, 0, 0.1);
  354. }
  355. small,
  356. .small {
  357. font-size: 80%;
  358. font-weight: 400;
  359. }
  360. mark,
  361. .mark {
  362. padding: 0.2em;
  363. background-color: #fcf8e3;
  364. }
  365. .list-unstyled {
  366. padding-left: 0;
  367. list-style: none;
  368. }
  369. .list-inline {
  370. padding-left: 0;
  371. list-style: none;
  372. }
  373. .list-inline-item {
  374. display: inline-block;
  375. }
  376. .list-inline-item:not(:last-child) {
  377. margin-right: 0.5rem;
  378. }
  379. .initialism {
  380. font-size: 90%;
  381. text-transform: uppercase;
  382. }
  383. .blockquote {
  384. margin-bottom: 1rem;
  385. font-size: 1.25rem;
  386. }
  387. .blockquote-footer {
  388. display: block;
  389. font-size: 80%;
  390. color: #6c757d;
  391. }
  392. .blockquote-footer::before {
  393. content: "\2014\00A0";
  394. }
  395. .img-fluid {
  396. max-width: 100%;
  397. height: auto;
  398. }
  399. .img-thumbnail {
  400. padding: 0.25rem;
  401. background-color: #fff;
  402. border: 1px solid #dee2e6;
  403. border-radius: 0.25rem;
  404. max-width: 100%;
  405. height: auto;
  406. }
  407. .figure {
  408. display: inline-block;
  409. }
  410. .figure-img {
  411. margin-bottom: 0.5rem;
  412. line-height: 1;
  413. }
  414. .figure-caption {
  415. font-size: 90%;
  416. color: #6c757d;
  417. }
  418. code {
  419. font-size: 87.5%;
  420. color: #e83e8c;
  421. word-wrap: break-word;
  422. }
  423. a > code {
  424. color: inherit;
  425. }
  426. kbd {
  427. padding: 0.2rem 0.4rem;
  428. font-size: 87.5%;
  429. color: #fff;
  430. background-color: #212529;
  431. border-radius: 0.2rem;
  432. }
  433. kbd kbd {
  434. padding: 0;
  435. font-size: 100%;
  436. font-weight: 700;
  437. }
  438. pre {
  439. display: block;
  440. font-size: 87.5%;
  441. color: #212529;
  442. }
  443. pre code {
  444. font-size: inherit;
  445. color: inherit;
  446. word-break: normal;
  447. }
  448. .pre-scrollable {
  449. max-height: 340px;
  450. overflow-y: scroll;
  451. }
  452. .container {
  453. width: 100%;
  454. padding-right: 15px;
  455. padding-left: 15px;
  456. margin-right: auto;
  457. margin-left: auto;
  458. }
  459. @media (min-width: 576px) {
  460. .container {
  461. max-width: 540px;
  462. }
  463. }
  464. @media (min-width: 768px) {
  465. .container {
  466. max-width: 720px;
  467. }
  468. }
  469. @media (min-width: 992px) {
  470. .container {
  471. max-width: 960px;
  472. }
  473. }
  474. @media (min-width: 1200px) {
  475. .container {
  476. max-width: 1140px;
  477. }
  478. }
  479. .container-fluid, .container-sm, .container-md, .container-lg, .container-xl {
  480. width: 100%;
  481. padding-right: 15px;
  482. padding-left: 15px;
  483. margin-right: auto;
  484. margin-left: auto;
  485. }
  486. @media (min-width: 576px) {
  487. .container, .container-sm {
  488. max-width: 540px;
  489. }
  490. }
  491. @media (min-width: 768px) {
  492. .container, .container-sm, .container-md {
  493. max-width: 720px;
  494. }
  495. }
  496. @media (min-width: 992px) {
  497. .container, .container-sm, .container-md, .container-lg {
  498. max-width: 960px;
  499. }
  500. }
  501. @media (min-width: 1200px) {
  502. .container, .container-sm, .container-md, .container-lg, .container-xl {
  503. max-width: 1140px;
  504. }
  505. }
  506. .row {
  507. display: -ms-flexbox;
  508. display: flex;
  509. -ms-flex-wrap: wrap;
  510. flex-wrap: wrap;
  511. margin-right: -15px;
  512. margin-left: -15px;
  513. }
  514. .no-gutters {
  515. margin-right: 0;
  516. margin-left: 0;
  517. }
  518. .no-gutters > .col,
  519. .no-gutters > [class*="col-"] {
  520. padding-right: 0;
  521. padding-left: 0;
  522. }
  523. .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
  524. .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
  525. .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
  526. .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
  527. .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
  528. .col-xl-auto {
  529. position: relative;
  530. width: 100%;
  531. padding-right: 15px;
  532. padding-left: 15px;
  533. }
  534. .col {
  535. -ms-flex-preferred-size: 0;
  536. flex-basis: 0;
  537. -ms-flex-positive: 1;
  538. flex-grow: 1;
  539. max-width: 100%;
  540. }
  541. .row-cols-1 > * {
  542. -ms-flex: 0 0 100%;
  543. flex: 0 0 100%;
  544. max-width: 100%;
  545. }
  546. .row-cols-2 > * {
  547. -ms-flex: 0 0 50%;
  548. flex: 0 0 50%;
  549. max-width: 50%;
  550. }
  551. .row-cols-3 > * {
  552. -ms-flex: 0 0 33.333333%;
  553. flex: 0 0 33.333333%;
  554. max-width: 33.333333%;
  555. }
  556. .row-cols-4 > * {
  557. -ms-flex: 0 0 25%;
  558. flex: 0 0 25%;
  559. max-width: 25%;
  560. }
  561. .row-cols-5 > * {
  562. -ms-flex: 0 0 20%;
  563. flex: 0 0 20%;
  564. max-width: 20%;
  565. }
  566. .row-cols-6 > * {
  567. -ms-flex: 0 0 16.666667%;
  568. flex: 0 0 16.666667%;
  569. max-width: 16.666667%;
  570. }
  571. .col-auto {
  572. -ms-flex: 0 0 auto;
  573. flex: 0 0 auto;
  574. width: auto;
  575. max-width: 100%;
  576. }
  577. .col-1 {
  578. -ms-flex: 0 0 8.333333%;
  579. flex: 0 0 8.333333%;
  580. max-width: 8.333333%;
  581. }
  582. .col-2 {
  583. -ms-flex: 0 0 16.666667%;
  584. flex: 0 0 16.666667%;
  585. max-width: 16.666667%;
  586. }
  587. .col-3 {
  588. -ms-flex: 0 0 25%;
  589. flex: 0 0 25%;
  590. max-width: 25%;
  591. }
  592. .col-4 {
  593. -ms-flex: 0 0 33.333333%;
  594. flex: 0 0 33.333333%;
  595. max-width: 33.333333%;
  596. }
  597. .col-5 {
  598. -ms-flex: 0 0 41.666667%;
  599. flex: 0 0 41.666667%;
  600. max-width: 41.666667%;
  601. }
  602. .col-6 {
  603. -ms-flex: 0 0 50%;
  604. flex: 0 0 50%;
  605. max-width: 50%;
  606. }
  607. .col-7 {
  608. -ms-flex: 0 0 58.333333%;
  609. flex: 0 0 58.333333%;
  610. max-width: 58.333333%;
  611. }
  612. .col-8 {
  613. -ms-flex: 0 0 66.666667%;
  614. flex: 0 0 66.666667%;
  615. max-width: 66.666667%;
  616. }
  617. .col-9 {
  618. -ms-flex: 0 0 75%;
  619. flex: 0 0 75%;
  620. max-width: 75%;
  621. }
  622. .col-10 {
  623. -ms-flex: 0 0 83.333333%;
  624. flex: 0 0 83.333333%;
  625. max-width: 83.333333%;
  626. }
  627. .col-11 {
  628. -ms-flex: 0 0 91.666667%;
  629. flex: 0 0 91.666667%;
  630. max-width: 91.666667%;
  631. }
  632. .col-12 {
  633. -ms-flex: 0 0 100%;
  634. flex: 0 0 100%;
  635. max-width: 100%;
  636. }
  637. .order-first {
  638. -ms-flex-order: -1;
  639. order: -1;
  640. }
  641. .order-last {
  642. -ms-flex-order: 13;
  643. order: 13;
  644. }
  645. .order-0 {
  646. -ms-flex-order: 0;
  647. order: 0;
  648. }
  649. .order-1 {
  650. -ms-flex-order: 1;
  651. order: 1;
  652. }
  653. .order-2 {
  654. -ms-flex-order: 2;
  655. order: 2;
  656. }
  657. .order-3 {
  658. -ms-flex-order: 3;
  659. order: 3;
  660. }
  661. .order-4 {
  662. -ms-flex-order: 4;
  663. order: 4;
  664. }
  665. .order-5 {
  666. -ms-flex-order: 5;
  667. order: 5;
  668. }
  669. .order-6 {
  670. -ms-flex-order: 6;
  671. order: 6;
  672. }
  673. .order-7 {
  674. -ms-flex-order: 7;
  675. order: 7;
  676. }
  677. .order-8 {
  678. -ms-flex-order: 8;
  679. order: 8;
  680. }
  681. .order-9 {
  682. -ms-flex-order: 9;
  683. order: 9;
  684. }
  685. .order-10 {
  686. -ms-flex-order: 10;
  687. order: 10;
  688. }
  689. .order-11 {
  690. -ms-flex-order: 11;
  691. order: 11;
  692. }
  693. .order-12 {
  694. -ms-flex-order: 12;
  695. order: 12;
  696. }
  697. .offset-1 {
  698. margin-left: 8.333333%;
  699. }
  700. .offset-2 {
  701. margin-left: 16.666667%;
  702. }
  703. .offset-3 {
  704. margin-left: 25%;
  705. }
  706. .offset-4 {
  707. margin-left: 33.333333%;
  708. }
  709. .offset-5 {
  710. margin-left: 41.666667%;
  711. }
  712. .offset-6 {
  713. margin-left: 50%;
  714. }
  715. .offset-7 {
  716. margin-left: 58.333333%;
  717. }
  718. .offset-8 {
  719. margin-left: 66.666667%;
  720. }
  721. .offset-9 {
  722. margin-left: 75%;
  723. }
  724. .offset-10 {
  725. margin-left: 83.333333%;
  726. }
  727. .offset-11 {
  728. margin-left: 91.666667%;
  729. }
  730. @media (min-width: 576px) {
  731. .col-sm {
  732. -ms-flex-preferred-size: 0;
  733. flex-basis: 0;
  734. -ms-flex-positive: 1;
  735. flex-grow: 1;
  736. max-width: 100%;
  737. }
  738. .row-cols-sm-1 > * {
  739. -ms-flex: 0 0 100%;
  740. flex: 0 0 100%;
  741. max-width: 100%;
  742. }
  743. .row-cols-sm-2 > * {
  744. -ms-flex: 0 0 50%;
  745. flex: 0 0 50%;
  746. max-width: 50%;
  747. }
  748. .row-cols-sm-3 > * {
  749. -ms-flex: 0 0 33.333333%;
  750. flex: 0 0 33.333333%;
  751. max-width: 33.333333%;
  752. }
  753. .row-cols-sm-4 > * {
  754. -ms-flex: 0 0 25%;
  755. flex: 0 0 25%;
  756. max-width: 25%;
  757. }
  758. .row-cols-sm-5 > * {
  759. -ms-flex: 0 0 20%;
  760. flex: 0 0 20%;
  761. max-width: 20%;
  762. }
  763. .row-cols-sm-6 > * {
  764. -ms-flex: 0 0 16.666667%;
  765. flex: 0 0 16.666667%;
  766. max-width: 16.666667%;
  767. }
  768. .col-sm-auto {
  769. -ms-flex: 0 0 auto;
  770. flex: 0 0 auto;
  771. width: auto;
  772. max-width: 100%;
  773. }
  774. .col-sm-1 {
  775. -ms-flex: 0 0 8.333333%;
  776. flex: 0 0 8.333333%;
  777. max-width: 8.333333%;
  778. }
  779. .col-sm-2 {
  780. -ms-flex: 0 0 16.666667%;
  781. flex: 0 0 16.666667%;
  782. max-width: 16.666667%;
  783. }
  784. .col-sm-3 {
  785. -ms-flex: 0 0 25%;
  786. flex: 0 0 25%;
  787. max-width: 25%;
  788. }
  789. .col-sm-4 {
  790. -ms-flex: 0 0 33.333333%;
  791. flex: 0 0 33.333333%;
  792. max-width: 33.333333%;
  793. }
  794. .col-sm-5 {
  795. -ms-flex: 0 0 41.666667%;
  796. flex: 0 0 41.666667%;
  797. max-width: 41.666667%;
  798. }
  799. .col-sm-6 {
  800. -ms-flex: 0 0 50%;
  801. flex: 0 0 50%;
  802. max-width: 50%;
  803. }
  804. .col-sm-7 {
  805. -ms-flex: 0 0 58.333333%;
  806. flex: 0 0 58.333333%;
  807. max-width: 58.333333%;
  808. }
  809. .col-sm-8 {
  810. -ms-flex: 0 0 66.666667%;
  811. flex: 0 0 66.666667%;
  812. max-width: 66.666667%;
  813. }
  814. .col-sm-9 {
  815. -ms-flex: 0 0 75%;
  816. flex: 0 0 75%;
  817. max-width: 75%;
  818. }
  819. .col-sm-10 {
  820. -ms-flex: 0 0 83.333333%;
  821. flex: 0 0 83.333333%;
  822. max-width: 83.333333%;
  823. }
  824. .col-sm-11 {
  825. -ms-flex: 0 0 91.666667%;
  826. flex: 0 0 91.666667%;
  827. max-width: 91.666667%;
  828. }
  829. .col-sm-12 {
  830. -ms-flex: 0 0 100%;
  831. flex: 0 0 100%;
  832. max-width: 100%;
  833. }
  834. .order-sm-first {
  835. -ms-flex-order: -1;
  836. order: -1;
  837. }
  838. .order-sm-last {
  839. -ms-flex-order: 13;
  840. order: 13;
  841. }
  842. .order-sm-0 {
  843. -ms-flex-order: 0;
  844. order: 0;
  845. }
  846. .order-sm-1 {
  847. -ms-flex-order: 1;
  848. order: 1;
  849. }
  850. .order-sm-2 {
  851. -ms-flex-order: 2;
  852. order: 2;
  853. }
  854. .order-sm-3 {
  855. -ms-flex-order: 3;
  856. order: 3;
  857. }
  858. .order-sm-4 {
  859. -ms-flex-order: 4;
  860. order: 4;
  861. }
  862. .order-sm-5 {
  863. -ms-flex-order: 5;
  864. order: 5;
  865. }
  866. .order-sm-6 {
  867. -ms-flex-order: 6;
  868. order: 6;
  869. }
  870. .order-sm-7 {
  871. -ms-flex-order: 7;
  872. order: 7;
  873. }
  874. .order-sm-8 {
  875. -ms-flex-order: 8;
  876. order: 8;
  877. }
  878. .order-sm-9 {
  879. -ms-flex-order: 9;
  880. order: 9;
  881. }
  882. .order-sm-10 {
  883. -ms-flex-order: 10;
  884. order: 10;
  885. }
  886. .order-sm-11 {
  887. -ms-flex-order: 11;
  888. order: 11;
  889. }
  890. .order-sm-12 {
  891. -ms-flex-order: 12;
  892. order: 12;
  893. }
  894. .offset-sm-0 {
  895. margin-left: 0;
  896. }
  897. .offset-sm-1 {
  898. margin-left: 8.333333%;
  899. }
  900. .offset-sm-2 {
  901. margin-left: 16.666667%;
  902. }
  903. .offset-sm-3 {
  904. margin-left: 25%;
  905. }
  906. .offset-sm-4 {
  907. margin-left: 33.333333%;
  908. }
  909. .offset-sm-5 {
  910. margin-left: 41.666667%;
  911. }
  912. .offset-sm-6 {
  913. margin-left: 50%;
  914. }
  915. .offset-sm-7 {
  916. margin-left: 58.333333%;
  917. }
  918. .offset-sm-8 {
  919. margin-left: 66.666667%;
  920. }
  921. .offset-sm-9 {
  922. margin-left: 75%;
  923. }
  924. .offset-sm-10 {
  925. margin-left: 83.333333%;
  926. }
  927. .offset-sm-11 {
  928. margin-left: 91.666667%;
  929. }
  930. }
  931. @media (min-width: 768px) {
  932. .col-md {
  933. -ms-flex-preferred-size: 0;
  934. flex-basis: 0;
  935. -ms-flex-positive: 1;
  936. flex-grow: 1;
  937. max-width: 100%;
  938. }
  939. .row-cols-md-1 > * {
  940. -ms-flex: 0 0 100%;
  941. flex: 0 0 100%;
  942. max-width: 100%;
  943. }
  944. .row-cols-md-2 > * {
  945. -ms-flex: 0 0 50%;
  946. flex: 0 0 50%;
  947. max-width: 50%;
  948. }
  949. .row-cols-md-3 > * {
  950. -ms-flex: 0 0 33.333333%;
  951. flex: 0 0 33.333333%;
  952. max-width: 33.333333%;
  953. }
  954. .row-cols-md-4 > * {
  955. -ms-flex: 0 0 25%;
  956. flex: 0 0 25%;
  957. max-width: 25%;
  958. }
  959. .row-cols-md-5 > * {
  960. -ms-flex: 0 0 20%;
  961. flex: 0 0 20%;
  962. max-width: 20%;
  963. }
  964. .row-cols-md-6 > * {
  965. -ms-flex: 0 0 16.666667%;
  966. flex: 0 0 16.666667%;
  967. max-width: 16.666667%;
  968. }
  969. .col-md-auto {
  970. -ms-flex: 0 0 auto;
  971. flex: 0 0 auto;
  972. width: auto;
  973. max-width: 100%;
  974. }
  975. .col-md-1 {
  976. -ms-flex: 0 0 8.333333%;
  977. flex: 0 0 8.333333%;
  978. max-width: 8.333333%;
  979. }
  980. .col-md-2 {
  981. -ms-flex: 0 0 16.666667%;
  982. flex: 0 0 16.666667%;
  983. max-width: 16.666667%;
  984. }
  985. .col-md-3 {
  986. -ms-flex: 0 0 25%;
  987. flex: 0 0 25%;
  988. max-width: 25%;
  989. }
  990. .col-md-4 {
  991. -ms-flex: 0 0 33.333333%;
  992. flex: 0 0 33.333333%;
  993. max-width: 33.333333%;
  994. }
  995. .col-md-5 {
  996. -ms-flex: 0 0 41.666667%;
  997. flex: 0 0 41.666667%;
  998. max-width: 41.666667%;
  999. }
  1000. .col-md-6 {
  1001. -ms-flex: 0 0 50%;
  1002. flex: 0 0 50%;
  1003. max-width: 50%;
  1004. }
  1005. .col-md-7 {
  1006. -ms-flex: 0 0 58.333333%;
  1007. flex: 0 0 58.333333%;
  1008. max-width: 58.333333%;
  1009. }
  1010. .col-md-8 {
  1011. -ms-flex: 0 0 66.666667%;
  1012. flex: 0 0 66.666667%;
  1013. max-width: 66.666667%;
  1014. }
  1015. .col-md-9 {
  1016. -ms-flex: 0 0 75%;
  1017. flex: 0 0 75%;
  1018. max-width: 75%;
  1019. }
  1020. .col-md-10 {
  1021. -ms-flex: 0 0 83.333333%;
  1022. flex: 0 0 83.333333%;
  1023. max-width: 83.333333%;
  1024. }
  1025. .col-md-11 {
  1026. -ms-flex: 0 0 91.666667%;
  1027. flex: 0 0 91.666667%;
  1028. max-width: 91.666667%;
  1029. }
  1030. .col-md-12 {
  1031. -ms-flex: 0 0 100%;
  1032. flex: 0 0 100%;
  1033. max-width: 100%;
  1034. }
  1035. .order-md-first {
  1036. -ms-flex-order: -1;
  1037. order: -1;
  1038. }
  1039. .order-md-last {
  1040. -ms-flex-order: 13;
  1041. order: 13;
  1042. }
  1043. .order-md-0 {
  1044. -ms-flex-order: 0;
  1045. order: 0;
  1046. }
  1047. .order-md-1 {
  1048. -ms-flex-order: 1;
  1049. order: 1;
  1050. }
  1051. .order-md-2 {
  1052. -ms-flex-order: 2;
  1053. order: 2;
  1054. }
  1055. .order-md-3 {
  1056. -ms-flex-order: 3;
  1057. order: 3;
  1058. }
  1059. .order-md-4 {
  1060. -ms-flex-order: 4;
  1061. order: 4;
  1062. }
  1063. .order-md-5 {
  1064. -ms-flex-order: 5;
  1065. order: 5;
  1066. }
  1067. .order-md-6 {
  1068. -ms-flex-order: 6;
  1069. order: 6;
  1070. }
  1071. .order-md-7 {
  1072. -ms-flex-order: 7;
  1073. order: 7;
  1074. }
  1075. .order-md-8 {
  1076. -ms-flex-order: 8;
  1077. order: 8;
  1078. }
  1079. .order-md-9 {
  1080. -ms-flex-order: 9;
  1081. order: 9;
  1082. }
  1083. .order-md-10 {
  1084. -ms-flex-order: 10;
  1085. order: 10;
  1086. }
  1087. .order-md-11 {
  1088. -ms-flex-order: 11;
  1089. order: 11;
  1090. }
  1091. .order-md-12 {
  1092. -ms-flex-order: 12;
  1093. order: 12;
  1094. }
  1095. .offset-md-0 {
  1096. margin-left: 0;
  1097. }
  1098. .offset-md-1 {
  1099. margin-left: 8.333333%;
  1100. }
  1101. .offset-md-2 {
  1102. margin-left: 16.666667%;
  1103. }
  1104. .offset-md-3 {
  1105. margin-left: 25%;
  1106. }
  1107. .offset-md-4 {
  1108. margin-left: 33.333333%;
  1109. }
  1110. .offset-md-5 {
  1111. margin-left: 41.666667%;
  1112. }
  1113. .offset-md-6 {
  1114. margin-left: 50%;
  1115. }
  1116. .offset-md-7 {
  1117. margin-left: 58.333333%;
  1118. }
  1119. .offset-md-8 {
  1120. margin-left: 66.666667%;
  1121. }
  1122. .offset-md-9 {
  1123. margin-left: 75%;
  1124. }
  1125. .offset-md-10 {
  1126. margin-left: 83.333333%;
  1127. }
  1128. .offset-md-11 {
  1129. margin-left: 91.666667%;
  1130. }
  1131. }
  1132. @media (min-width: 992px) {
  1133. .col-lg {
  1134. -ms-flex-preferred-size: 0;
  1135. flex-basis: 0;
  1136. -ms-flex-positive: 1;
  1137. flex-grow: 1;
  1138. max-width: 100%;
  1139. }
  1140. .row-cols-lg-1 > * {
  1141. -ms-flex: 0 0 100%;
  1142. flex: 0 0 100%;
  1143. max-width: 100%;
  1144. }
  1145. .row-cols-lg-2 > * {
  1146. -ms-flex: 0 0 50%;
  1147. flex: 0 0 50%;
  1148. max-width: 50%;
  1149. }
  1150. .row-cols-lg-3 > * {
  1151. -ms-flex: 0 0 33.333333%;
  1152. flex: 0 0 33.333333%;
  1153. max-width: 33.333333%;
  1154. }
  1155. .row-cols-lg-4 > * {
  1156. -ms-flex: 0 0 25%;
  1157. flex: 0 0 25%;
  1158. max-width: 25%;
  1159. }
  1160. .row-cols-lg-5 > * {
  1161. -ms-flex: 0 0 20%;
  1162. flex: 0 0 20%;
  1163. max-width: 20%;
  1164. }
  1165. .row-cols-lg-6 > * {
  1166. -ms-flex: 0 0 16.666667%;
  1167. flex: 0 0 16.666667%;
  1168. max-width: 16.666667%;
  1169. }
  1170. .col-lg-auto {
  1171. -ms-flex: 0 0 auto;
  1172. flex: 0 0 auto;
  1173. width: auto;
  1174. max-width: 100%;
  1175. }
  1176. .col-lg-1 {
  1177. -ms-flex: 0 0 8.333333%;
  1178. flex: 0 0 8.333333%;
  1179. max-width: 8.333333%;
  1180. }
  1181. .col-lg-2 {
  1182. -ms-flex: 0 0 16.666667%;
  1183. flex: 0 0 16.666667%;
  1184. max-width: 16.666667%;
  1185. }
  1186. .col-lg-3 {
  1187. -ms-flex: 0 0 25%;
  1188. flex: 0 0 25%;
  1189. max-width: 25%;
  1190. }
  1191. .col-lg-4 {
  1192. -ms-flex: 0 0 33.333333%;
  1193. flex: 0 0 33.333333%;
  1194. max-width: 33.333333%;
  1195. }
  1196. .col-lg-5 {
  1197. -ms-flex: 0 0 41.666667%;
  1198. flex: 0 0 41.666667%;
  1199. max-width: 41.666667%;
  1200. }
  1201. .col-lg-6 {
  1202. -ms-flex: 0 0 50%;
  1203. flex: 0 0 50%;
  1204. max-width: 50%;
  1205. }
  1206. .col-lg-7 {
  1207. -ms-flex: 0 0 58.333333%;
  1208. flex: 0 0 58.333333%;
  1209. max-width: 58.333333%;
  1210. }
  1211. .col-lg-8 {
  1212. -ms-flex: 0 0 66.666667%;
  1213. flex: 0 0 66.666667%;
  1214. max-width: 66.666667%;
  1215. }
  1216. .col-lg-9 {
  1217. -ms-flex: 0 0 75%;
  1218. flex: 0 0 75%;
  1219. max-width: 75%;
  1220. }
  1221. .col-lg-10 {
  1222. -ms-flex: 0 0 83.333333%;
  1223. flex: 0 0 83.333333%;
  1224. max-width: 83.333333%;
  1225. }
  1226. .col-lg-11 {
  1227. -ms-flex: 0 0 91.666667%;
  1228. flex: 0 0 91.666667%;
  1229. max-width: 91.666667%;
  1230. }
  1231. .col-lg-12 {
  1232. -ms-flex: 0 0 100%;
  1233. flex: 0 0 100%;
  1234. max-width: 100%;
  1235. }
  1236. .order-lg-first {
  1237. -ms-flex-order: -1;
  1238. order: -1;
  1239. }
  1240. .order-lg-last {
  1241. -ms-flex-order: 13;
  1242. order: 13;
  1243. }
  1244. .order-lg-0 {
  1245. -ms-flex-order: 0;
  1246. order: 0;
  1247. }
  1248. .order-lg-1 {
  1249. -ms-flex-order: 1;
  1250. order: 1;
  1251. }
  1252. .order-lg-2 {
  1253. -ms-flex-order: 2;
  1254. order: 2;
  1255. }
  1256. .order-lg-3 {
  1257. -ms-flex-order: 3;
  1258. order: 3;
  1259. }
  1260. .order-lg-4 {
  1261. -ms-flex-order: 4;
  1262. order: 4;
  1263. }
  1264. .order-lg-5 {
  1265. -ms-flex-order: 5;
  1266. order: 5;
  1267. }
  1268. .order-lg-6 {
  1269. -ms-flex-order: 6;
  1270. order: 6;
  1271. }
  1272. .order-lg-7 {
  1273. -ms-flex-order: 7;
  1274. order: 7;
  1275. }
  1276. .order-lg-8 {
  1277. -ms-flex-order: 8;
  1278. order: 8;
  1279. }
  1280. .order-lg-9 {
  1281. -ms-flex-order: 9;
  1282. order: 9;
  1283. }
  1284. .order-lg-10 {
  1285. -ms-flex-order: 10;
  1286. order: 10;
  1287. }
  1288. .order-lg-11 {
  1289. -ms-flex-order: 11;
  1290. order: 11;
  1291. }
  1292. .order-lg-12 {
  1293. -ms-flex-order: 12;
  1294. order: 12;
  1295. }
  1296. .offset-lg-0 {
  1297. margin-left: 0;
  1298. }
  1299. .offset-lg-1 {
  1300. margin-left: 8.333333%;
  1301. }
  1302. .offset-lg-2 {
  1303. margin-left: 16.666667%;
  1304. }
  1305. .offset-lg-3 {
  1306. margin-left: 25%;
  1307. }
  1308. .offset-lg-4 {
  1309. margin-left: 33.333333%;
  1310. }
  1311. .offset-lg-5 {
  1312. margin-left: 41.666667%;
  1313. }
  1314. .offset-lg-6 {
  1315. margin-left: 50%;
  1316. }
  1317. .offset-lg-7 {
  1318. margin-left: 58.333333%;
  1319. }
  1320. .offset-lg-8 {
  1321. margin-left: 66.666667%;
  1322. }
  1323. .offset-lg-9 {
  1324. margin-left: 75%;
  1325. }
  1326. .offset-lg-10 {
  1327. margin-left: 83.333333%;
  1328. }
  1329. .offset-lg-11 {
  1330. margin-left: 91.666667%;
  1331. }
  1332. }
  1333. @media (min-width: 1200px) {
  1334. .col-xl {
  1335. -ms-flex-preferred-size: 0;
  1336. flex-basis: 0;
  1337. -ms-flex-positive: 1;
  1338. flex-grow: 1;
  1339. max-width: 100%;
  1340. }
  1341. .row-cols-xl-1 > * {
  1342. -ms-flex: 0 0 100%;
  1343. flex: 0 0 100%;
  1344. max-width: 100%;
  1345. }
  1346. .row-cols-xl-2 > * {
  1347. -ms-flex: 0 0 50%;
  1348. flex: 0 0 50%;
  1349. max-width: 50%;
  1350. }
  1351. .row-cols-xl-3 > * {
  1352. -ms-flex: 0 0 33.333333%;
  1353. flex: 0 0 33.333333%;
  1354. max-width: 33.333333%;
  1355. }
  1356. .row-cols-xl-4 > * {
  1357. -ms-flex: 0 0 25%;
  1358. flex: 0 0 25%;
  1359. max-width: 25%;
  1360. }
  1361. .row-cols-xl-5 > * {
  1362. -ms-flex: 0 0 20%;
  1363. flex: 0 0 20%;
  1364. max-width: 20%;
  1365. }
  1366. .row-cols-xl-6 > * {
  1367. -ms-flex: 0 0 16.666667%;
  1368. flex: 0 0 16.666667%;
  1369. max-width: 16.666667%;
  1370. }
  1371. .col-xl-auto {
  1372. -ms-flex: 0 0 auto;
  1373. flex: 0 0 auto;
  1374. width: auto;
  1375. max-width: 100%;
  1376. }
  1377. .col-xl-1 {
  1378. -ms-flex: 0 0 8.333333%;
  1379. flex: 0 0 8.333333%;
  1380. max-width: 8.333333%;
  1381. }
  1382. .col-xl-2 {
  1383. -ms-flex: 0 0 16.666667%;
  1384. flex: 0 0 16.666667%;
  1385. max-width: 16.666667%;
  1386. }
  1387. .col-xl-3 {
  1388. -ms-flex: 0 0 25%;
  1389. flex: 0 0 25%;
  1390. max-width: 25%;
  1391. }
  1392. .col-xl-4 {
  1393. -ms-flex: 0 0 33.333333%;
  1394. flex: 0 0 33.333333%;
  1395. max-width: 33.333333%;
  1396. }
  1397. .col-xl-5 {
  1398. -ms-flex: 0 0 41.666667%;
  1399. flex: 0 0 41.666667%;
  1400. max-width: 41.666667%;
  1401. }
  1402. .col-xl-6 {
  1403. -ms-flex: 0 0 50%;
  1404. flex: 0 0 50%;
  1405. max-width: 50%;
  1406. }
  1407. .col-xl-7 {
  1408. -ms-flex: 0 0 58.333333%;
  1409. flex: 0 0 58.333333%;
  1410. max-width: 58.333333%;
  1411. }
  1412. .col-xl-8 {
  1413. -ms-flex: 0 0 66.666667%;
  1414. flex: 0 0 66.666667%;
  1415. max-width: 66.666667%;
  1416. }
  1417. .col-xl-9 {
  1418. -ms-flex: 0 0 75%;
  1419. flex: 0 0 75%;
  1420. max-width: 75%;
  1421. }
  1422. .col-xl-10 {
  1423. -ms-flex: 0 0 83.333333%;
  1424. flex: 0 0 83.333333%;
  1425. max-width: 83.333333%;
  1426. }
  1427. .col-xl-11 {
  1428. -ms-flex: 0 0 91.666667%;
  1429. flex: 0 0 91.666667%;
  1430. max-width: 91.666667%;
  1431. }
  1432. .col-xl-12 {
  1433. -ms-flex: 0 0 100%;
  1434. flex: 0 0 100%;
  1435. max-width: 100%;
  1436. }
  1437. .order-xl-first {
  1438. -ms-flex-order: -1;
  1439. order: -1;
  1440. }
  1441. .order-xl-last {
  1442. -ms-flex-order: 13;
  1443. order: 13;
  1444. }
  1445. .order-xl-0 {
  1446. -ms-flex-order: 0;
  1447. order: 0;
  1448. }
  1449. .order-xl-1 {
  1450. -ms-flex-order: 1;
  1451. order: 1;
  1452. }
  1453. .order-xl-2 {
  1454. -ms-flex-order: 2;
  1455. order: 2;
  1456. }
  1457. .order-xl-3 {
  1458. -ms-flex-order: 3;
  1459. order: 3;
  1460. }
  1461. .order-xl-4 {
  1462. -ms-flex-order: 4;
  1463. order: 4;
  1464. }
  1465. .order-xl-5 {
  1466. -ms-flex-order: 5;
  1467. order: 5;
  1468. }
  1469. .order-xl-6 {
  1470. -ms-flex-order: 6;
  1471. order: 6;
  1472. }
  1473. .order-xl-7 {
  1474. -ms-flex-order: 7;
  1475. order: 7;
  1476. }
  1477. .order-xl-8 {
  1478. -ms-flex-order: 8;
  1479. order: 8;
  1480. }
  1481. .order-xl-9 {
  1482. -ms-flex-order: 9;
  1483. order: 9;
  1484. }
  1485. .order-xl-10 {
  1486. -ms-flex-order: 10;
  1487. order: 10;
  1488. }
  1489. .order-xl-11 {
  1490. -ms-flex-order: 11;
  1491. order: 11;
  1492. }
  1493. .order-xl-12 {
  1494. -ms-flex-order: 12;
  1495. order: 12;
  1496. }
  1497. .offset-xl-0 {
  1498. margin-left: 0;
  1499. }
  1500. .offset-xl-1 {
  1501. margin-left: 8.333333%;
  1502. }
  1503. .offset-xl-2 {
  1504. margin-left: 16.666667%;
  1505. }
  1506. .offset-xl-3 {
  1507. margin-left: 25%;
  1508. }
  1509. .offset-xl-4 {
  1510. margin-left: 33.333333%;
  1511. }
  1512. .offset-xl-5 {
  1513. margin-left: 41.666667%;
  1514. }
  1515. .offset-xl-6 {
  1516. margin-left: 50%;
  1517. }
  1518. .offset-xl-7 {
  1519. margin-left: 58.333333%;
  1520. }
  1521. .offset-xl-8 {
  1522. margin-left: 66.666667%;
  1523. }
  1524. .offset-xl-9 {
  1525. margin-left: 75%;
  1526. }
  1527. .offset-xl-10 {
  1528. margin-left: 83.333333%;
  1529. }
  1530. .offset-xl-11 {
  1531. margin-left: 91.666667%;
  1532. }
  1533. }
  1534. .table {
  1535. width: 100%;
  1536. margin-bottom: 1rem;
  1537. color: #212529;
  1538. }
  1539. .table th,
  1540. .table td {
  1541. padding: 0.75rem;
  1542. vertical-align: top;
  1543. border-top: 1px solid #dee2e6;
  1544. }
  1545. .table thead th {
  1546. vertical-align: bottom;
  1547. border-bottom: 2px solid #dee2e6;
  1548. }
  1549. .table tbody + tbody {
  1550. border-top: 2px solid #dee2e6;
  1551. }
  1552. .table-sm th,
  1553. .table-sm td {
  1554. padding: 0.3rem;
  1555. }
  1556. .table-bordered {
  1557. border: 1px solid #dee2e6;
  1558. }
  1559. .table-bordered th,
  1560. .table-bordered td {
  1561. border: 1px solid #dee2e6;
  1562. }
  1563. .table-bordered thead th,
  1564. .table-bordered thead td {
  1565. border-bottom-width: 2px;
  1566. }
  1567. .table-borderless th,
  1568. .table-borderless td,
  1569. .table-borderless thead th,
  1570. .table-borderless tbody + tbody {
  1571. border: 0;
  1572. }
  1573. .table-striped tbody tr:nth-of-type(odd) {
  1574. background-color: rgba(0, 0, 0, 0.05);
  1575. }
  1576. .table-hover tbody tr:hover {
  1577. color: #212529;
  1578. background-color: rgba(0, 0, 0, 0.075);
  1579. }
  1580. .table-primary,
  1581. .table-primary > th,
  1582. .table-primary > td {
  1583. background-color: #b8daff;
  1584. }
  1585. .table-primary th,
  1586. .table-primary td,
  1587. .table-primary thead th,
  1588. .table-primary tbody + tbody {
  1589. border-color: #7abaff;
  1590. }
  1591. .table-hover .table-primary:hover {
  1592. background-color: #9fcdff;
  1593. }
  1594. .table-hover .table-primary:hover > td,
  1595. .table-hover .table-primary:hover > th {
  1596. background-color: #9fcdff;
  1597. }
  1598. .table-secondary,
  1599. .table-secondary > th,
  1600. .table-secondary > td {
  1601. background-color: #d6d8db;
  1602. }
  1603. .table-secondary th,
  1604. .table-secondary td,
  1605. .table-secondary thead th,
  1606. .table-secondary tbody + tbody {
  1607. border-color: #b3b7bb;
  1608. }
  1609. .table-hover .table-secondary:hover {
  1610. background-color: #c8cbcf;
  1611. }
  1612. .table-hover .table-secondary:hover > td,
  1613. .table-hover .table-secondary:hover > th {
  1614. background-color: #c8cbcf;
  1615. }
  1616. .table-success,
  1617. .table-success > th,
  1618. .table-success > td {
  1619. background-color: #c3e6cb;
  1620. }
  1621. .table-success th,
  1622. .table-success td,
  1623. .table-success thead th,
  1624. .table-success tbody + tbody {
  1625. border-color: #8fd19e;
  1626. }
  1627. .table-hover .table-success:hover {
  1628. background-color: #b1dfbb;
  1629. }
  1630. .table-hover .table-success:hover > td,
  1631. .table-hover .table-success:hover > th {
  1632. background-color: #b1dfbb;
  1633. }
  1634. .table-info,
  1635. .table-info > th,
  1636. .table-info > td {
  1637. background-color: #bee5eb;
  1638. }
  1639. .table-info th,
  1640. .table-info td,
  1641. .table-info thead th,
  1642. .table-info tbody + tbody {
  1643. border-color: #86cfda;
  1644. }
  1645. .table-hover .table-info:hover {
  1646. background-color: #abdde5;
  1647. }
  1648. .table-hover .table-info:hover > td,
  1649. .table-hover .table-info:hover > th {
  1650. background-color: #abdde5;
  1651. }
  1652. .table-warning,
  1653. .table-warning > th,
  1654. .table-warning > td {
  1655. background-color: #ffeeba;
  1656. }
  1657. .table-warning th,
  1658. .table-warning td,
  1659. .table-warning thead th,
  1660. .table-warning tbody + tbody {
  1661. border-color: #ffdf7e;
  1662. }
  1663. .table-hover .table-warning:hover {
  1664. background-color: #ffe8a1;
  1665. }
  1666. .table-hover .table-warning:hover > td,
  1667. .table-hover .table-warning:hover > th {
  1668. background-color: #ffe8a1;
  1669. }
  1670. .table-danger,
  1671. .table-danger > th,
  1672. .table-danger > td {
  1673. background-color: #f5c6cb;
  1674. }
  1675. .table-danger th,
  1676. .table-danger td,
  1677. .table-danger thead th,
  1678. .table-danger tbody + tbody {
  1679. border-color: #ed969e;
  1680. }
  1681. .table-hover .table-danger:hover {
  1682. background-color: #f1b0b7;
  1683. }
  1684. .table-hover .table-danger:hover > td,
  1685. .table-hover .table-danger:hover > th {
  1686. background-color: #f1b0b7;
  1687. }
  1688. .table-light,
  1689. .table-light > th,
  1690. .table-light > td {
  1691. background-color: #fdfdfe;
  1692. }
  1693. .table-light th,
  1694. .table-light td,
  1695. .table-light thead th,
  1696. .table-light tbody + tbody {
  1697. border-color: #fbfcfc;
  1698. }
  1699. .table-hover .table-light:hover {
  1700. background-color: #ececf6;
  1701. }
  1702. .table-hover .table-light:hover > td,
  1703. .table-hover .table-light:hover > th {
  1704. background-color: #ececf6;
  1705. }
  1706. .table-dark,
  1707. .table-dark > th,
  1708. .table-dark > td {
  1709. background-color: #c6c8ca;
  1710. }
  1711. .table-dark th,
  1712. .table-dark td,
  1713. .table-dark thead th,
  1714. .table-dark tbody + tbody {
  1715. border-color: #95999c;
  1716. }
  1717. .table-hover .table-dark:hover {
  1718. background-color: #b9bbbe;
  1719. }
  1720. .table-hover .table-dark:hover > td,
  1721. .table-hover .table-dark:hover > th {
  1722. background-color: #b9bbbe;
  1723. }
  1724. .table-active,
  1725. .table-active > th,
  1726. .table-active > td {
  1727. background-color: rgba(0, 0, 0, 0.075);
  1728. }
  1729. .table-hover .table-active:hover {
  1730. background-color: rgba(0, 0, 0, 0.075);
  1731. }
  1732. .table-hover .table-active:hover > td,
  1733. .table-hover .table-active:hover > th {
  1734. background-color: rgba(0, 0, 0, 0.075);
  1735. }
  1736. .table .thead-dark th {
  1737. color: #fff;
  1738. background-color: #343a40;
  1739. border-color: #454d55;
  1740. }
  1741. .table .thead-light th {
  1742. color: #495057;
  1743. background-color: #e9ecef;
  1744. border-color: #dee2e6;
  1745. }
  1746. .table-dark {
  1747. color: #fff;
  1748. background-color: #343a40;
  1749. }
  1750. .table-dark th,
  1751. .table-dark td,
  1752. .table-dark thead th {
  1753. border-color: #454d55;
  1754. }
  1755. .table-dark.table-bordered {
  1756. border: 0;
  1757. }
  1758. .table-dark.table-striped tbody tr:nth-of-type(odd) {
  1759. background-color: rgba(255, 255, 255, 0.05);
  1760. }
  1761. .table-dark.table-hover tbody tr:hover {
  1762. color: #fff;
  1763. background-color: rgba(255, 255, 255, 0.075);
  1764. }
  1765. @media (max-width: 575.98px) {
  1766. .table-responsive-sm {
  1767. display: block;
  1768. width: 100%;
  1769. overflow-x: auto;
  1770. -webkit-overflow-scrolling: touch;
  1771. }
  1772. .table-responsive-sm > .table-bordered {
  1773. border: 0;
  1774. }
  1775. }
  1776. @media (max-width: 767.98px) {
  1777. .table-responsive-md {
  1778. display: block;
  1779. width: 100%;
  1780. overflow-x: auto;
  1781. -webkit-overflow-scrolling: touch;
  1782. }
  1783. .table-responsive-md > .table-bordered {
  1784. border: 0;
  1785. }
  1786. }
  1787. @media (max-width: 991.98px) {
  1788. .table-responsive-lg {
  1789. display: block;
  1790. width: 100%;
  1791. overflow-x: auto;
  1792. -webkit-overflow-scrolling: touch;
  1793. }
  1794. .table-responsive-lg > .table-bordered {
  1795. border: 0;
  1796. }
  1797. }
  1798. @media (max-width: 1199.98px) {
  1799. .table-responsive-xl {
  1800. display: block;
  1801. width: 100%;
  1802. overflow-x: auto;
  1803. -webkit-overflow-scrolling: touch;
  1804. }
  1805. .table-responsive-xl > .table-bordered {
  1806. border: 0;
  1807. }
  1808. }
  1809. .table-responsive {
  1810. display: block;
  1811. width: 100%;
  1812. overflow-x: auto;
  1813. -webkit-overflow-scrolling: touch;
  1814. }
  1815. .table-responsive > .table-bordered {
  1816. border: 0;
  1817. }
  1818. .form-control {
  1819. display: block;
  1820. width: 100%;
  1821. height: calc(1.5em + 0.75rem + 2px);
  1822. padding: 0.375rem 0.75rem;
  1823. font-size: 1rem;
  1824. font-weight: 400;
  1825. line-height: 1.5;
  1826. color: #495057;
  1827. background-color: #fff;
  1828. background-clip: padding-box;
  1829. border: 1px solid #ced4da;
  1830. border-radius: 0.25rem;
  1831. transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  1832. }
  1833. @media (prefers-reduced-motion: reduce) {
  1834. .form-control {
  1835. transition: none;
  1836. }
  1837. }
  1838. .form-control::-ms-expand {
  1839. background-color: transparent;
  1840. border: 0;
  1841. }
  1842. .form-control:-moz-focusring {
  1843. color: transparent;
  1844. text-shadow: 0 0 0 #495057;
  1845. }
  1846. .form-control:focus {
  1847. color: #495057;
  1848. background-color: #fff;
  1849. border-color: #80bdff;
  1850. outline: 0;
  1851. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  1852. }
  1853. .form-control::-webkit-input-placeholder {
  1854. color: #6c757d;
  1855. opacity: 1;
  1856. }
  1857. .form-control::-moz-placeholder {
  1858. color: #6c757d;
  1859. opacity: 1;
  1860. }
  1861. .form-control:-ms-input-placeholder {
  1862. color: #6c757d;
  1863. opacity: 1;
  1864. }
  1865. .form-control::-ms-input-placeholder {
  1866. color: #6c757d;
  1867. opacity: 1;
  1868. }
  1869. .form-control::placeholder {
  1870. color: #6c757d;
  1871. opacity: 1;
  1872. }
  1873. .form-control:disabled, .form-control[readonly] {
  1874. background-color: #e9ecef;
  1875. opacity: 1;
  1876. }
  1877. select.form-control:focus::-ms-value {
  1878. color: #495057;
  1879. background-color: #fff;
  1880. }
  1881. .form-control-file,
  1882. .form-control-range {
  1883. display: block;
  1884. width: 100%;
  1885. }
  1886. .col-form-label {
  1887. padding-top: calc(0.375rem + 1px);
  1888. padding-bottom: calc(0.375rem + 1px);
  1889. margin-bottom: 0;
  1890. font-size: inherit;
  1891. line-height: 1.5;
  1892. }
  1893. .col-form-label-lg {
  1894. padding-top: calc(0.5rem + 1px);
  1895. padding-bottom: calc(0.5rem + 1px);
  1896. font-size: 1.25rem;
  1897. line-height: 1.5;
  1898. }
  1899. .col-form-label-sm {
  1900. padding-top: calc(0.25rem + 1px);
  1901. padding-bottom: calc(0.25rem + 1px);
  1902. font-size: 0.875rem;
  1903. line-height: 1.5;
  1904. }
  1905. .form-control-plaintext {
  1906. display: block;
  1907. width: 100%;
  1908. padding: 0.375rem 0;
  1909. margin-bottom: 0;
  1910. font-size: 1rem;
  1911. line-height: 1.5;
  1912. color: #212529;
  1913. background-color: transparent;
  1914. border: solid transparent;
  1915. border-width: 1px 0;
  1916. }
  1917. .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  1918. padding-right: 0;
  1919. padding-left: 0;
  1920. }
  1921. .form-control-sm {
  1922. height: calc(1.5em + 0.5rem + 2px);
  1923. padding: 0.25rem 0.5rem;
  1924. font-size: 0.875rem;
  1925. line-height: 1.5;
  1926. border-radius: 0.2rem;
  1927. }
  1928. .form-control-lg {
  1929. height: calc(1.5em + 1rem + 2px);
  1930. padding: 0.5rem 1rem;
  1931. font-size: 1.25rem;
  1932. line-height: 1.5;
  1933. border-radius: 0.3rem;
  1934. }
  1935. select.form-control[size], select.form-control[multiple] {
  1936. height: auto;
  1937. }
  1938. textarea.form-control {
  1939. height: auto;
  1940. }
  1941. .form-group {
  1942. margin-bottom: 1rem;
  1943. }
  1944. .form-text {
  1945. display: block;
  1946. margin-top: 0.25rem;
  1947. }
  1948. .form-row {
  1949. display: -ms-flexbox;
  1950. display: flex;
  1951. -ms-flex-wrap: wrap;
  1952. flex-wrap: wrap;
  1953. margin-right: -5px;
  1954. margin-left: -5px;
  1955. }
  1956. .form-row > .col,
  1957. .form-row > [class*="col-"] {
  1958. padding-right: 5px;
  1959. padding-left: 5px;
  1960. }
  1961. .form-check {
  1962. position: relative;
  1963. display: block;
  1964. padding-left: 1.25rem;
  1965. }
  1966. .form-check-input {
  1967. position: absolute;
  1968. margin-top: 0.3rem;
  1969. margin-left: -1.25rem;
  1970. }
  1971. .form-check-input[disabled] ~ .form-check-label,
  1972. .form-check-input:disabled ~ .form-check-label {
  1973. color: #6c757d;
  1974. }
  1975. .form-check-label {
  1976. margin-bottom: 0;
  1977. }
  1978. .form-check-inline {
  1979. display: -ms-inline-flexbox;
  1980. display: inline-flex;
  1981. -ms-flex-align: center;
  1982. align-items: center;
  1983. padding-left: 0;
  1984. margin-right: 0.75rem;
  1985. }
  1986. .form-check-inline .form-check-input {
  1987. position: static;
  1988. margin-top: 0;
  1989. margin-right: 0.3125rem;
  1990. margin-left: 0;
  1991. }
  1992. .valid-feedback {
  1993. display: none;
  1994. width: 100%;
  1995. margin-top: 0.25rem;
  1996. font-size: 80%;
  1997. color: #28a745;
  1998. }
  1999. .valid-tooltip {
  2000. position: absolute;
  2001. top: 100%;
  2002. z-index: 5;
  2003. display: none;
  2004. max-width: 100%;
  2005. padding: 0.25rem 0.5rem;
  2006. margin-top: .1rem;
  2007. font-size: 0.875rem;
  2008. line-height: 1.5;
  2009. color: #fff;
  2010. background-color: rgba(40, 167, 69, 0.9);
  2011. border-radius: 0.25rem;
  2012. }
  2013. .was-validated :valid ~ .valid-feedback,
  2014. .was-validated :valid ~ .valid-tooltip,
  2015. .is-valid ~ .valid-feedback,
  2016. .is-valid ~ .valid-tooltip {
  2017. display: block;
  2018. }
  2019. .was-validated .form-control:valid, .form-control.is-valid {
  2020. border-color: #28a745;
  2021. padding-right: calc(1.5em + 0.75rem);
  2022. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  2023. background-repeat: no-repeat;
  2024. background-position: right calc(0.375em + 0.1875rem) center;
  2025. background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  2026. }
  2027. .was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  2028. border-color: #28a745;
  2029. box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
  2030. }
  2031. .was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  2032. padding-right: calc(1.5em + 0.75rem);
  2033. background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
  2034. }
  2035. .was-validated .custom-select:valid, .custom-select.is-valid {
  2036. border-color: #28a745;
  2037. padding-right: calc(0.75em + 2.3125rem);
  2038. background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  2039. }
  2040. .was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
  2041. border-color: #28a745;
  2042. box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
  2043. }
  2044. .was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  2045. color: #28a745;
  2046. }
  2047. .was-validated .form-check-input:valid ~ .valid-feedback,
  2048. .was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
  2049. .form-check-input.is-valid ~ .valid-tooltip {
  2050. display: block;
  2051. }
  2052. .was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  2053. color: #28a745;
  2054. }
  2055. .was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  2056. border-color: #28a745;
  2057. }
  2058. .was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  2059. border-color: #34ce57;
  2060. background-color: #34ce57;
  2061. }
  2062. .was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  2063. box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
  2064. }
  2065. .was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  2066. border-color: #28a745;
  2067. }
  2068. .was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  2069. border-color: #28a745;
  2070. }
  2071. .was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  2072. border-color: #28a745;
  2073. box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
  2074. }
  2075. .invalid-feedback {
  2076. display: none;
  2077. width: 100%;
  2078. margin-top: 0.25rem;
  2079. font-size: 80%;
  2080. color: #dc3545;
  2081. }
  2082. .invalid-tooltip {
  2083. position: absolute;
  2084. top: 100%;
  2085. z-index: 5;
  2086. display: none;
  2087. max-width: 100%;
  2088. padding: 0.25rem 0.5rem;
  2089. margin-top: .1rem;
  2090. font-size: 0.875rem;
  2091. line-height: 1.5;
  2092. color: #fff;
  2093. background-color: rgba(220, 53, 69, 0.9);
  2094. border-radius: 0.25rem;
  2095. }
  2096. .was-validated :invalid ~ .invalid-feedback,
  2097. .was-validated :invalid ~ .invalid-tooltip,
  2098. .is-invalid ~ .invalid-feedback,
  2099. .is-invalid ~ .invalid-tooltip {
  2100. display: block;
  2101. }
  2102. .was-validated .form-control:invalid, .form-control.is-invalid {
  2103. border-color: #dc3545;
  2104. padding-right: calc(1.5em + 0.75rem);
  2105. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  2106. background-repeat: no-repeat;
  2107. background-position: right calc(0.375em + 0.1875rem) center;
  2108. background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  2109. }
  2110. .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  2111. border-color: #dc3545;
  2112. box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
  2113. }
  2114. .was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  2115. padding-right: calc(1.5em + 0.75rem);
  2116. background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
  2117. }
  2118. .was-validated .custom-select:invalid, .custom-select.is-invalid {
  2119. border-color: #dc3545;
  2120. padding-right: calc(0.75em + 2.3125rem);
  2121. background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  2122. }
  2123. .was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
  2124. border-color: #dc3545;
  2125. box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
  2126. }
  2127. .was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  2128. color: #dc3545;
  2129. }
  2130. .was-validated .form-check-input:invalid ~ .invalid-feedback,
  2131. .was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
  2132. .form-check-input.is-invalid ~ .invalid-tooltip {
  2133. display: block;
  2134. }
  2135. .was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  2136. color: #dc3545;
  2137. }
  2138. .was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  2139. border-color: #dc3545;
  2140. }
  2141. .was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  2142. border-color: #e4606d;
  2143. background-color: #e4606d;
  2144. }
  2145. .was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  2146. box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
  2147. }
  2148. .was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  2149. border-color: #dc3545;
  2150. }
  2151. .was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  2152. border-color: #dc3545;
  2153. }
  2154. .was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  2155. border-color: #dc3545;
  2156. box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
  2157. }
  2158. .form-inline {
  2159. display: -ms-flexbox;
  2160. display: flex;
  2161. -ms-flex-flow: row wrap;
  2162. flex-flow: row wrap;
  2163. -ms-flex-align: center;
  2164. align-items: center;
  2165. }
  2166. .form-inline .form-check {
  2167. width: 100%;
  2168. }
  2169. @media (min-width: 576px) {
  2170. .form-inline label {
  2171. display: -ms-flexbox;
  2172. display: flex;
  2173. -ms-flex-align: center;
  2174. align-items: center;
  2175. -ms-flex-pack: center;
  2176. justify-content: center;
  2177. margin-bottom: 0;
  2178. }
  2179. .form-inline .form-group {
  2180. display: -ms-flexbox;
  2181. display: flex;
  2182. -ms-flex: 0 0 auto;
  2183. flex: 0 0 auto;
  2184. -ms-flex-flow: row wrap;
  2185. flex-flow: row wrap;
  2186. -ms-flex-align: center;
  2187. align-items: center;
  2188. margin-bottom: 0;
  2189. }
  2190. .form-inline .form-control {
  2191. display: inline-block;
  2192. width: auto;
  2193. vertical-align: middle;
  2194. }
  2195. .form-inline .form-control-plaintext {
  2196. display: inline-block;
  2197. }
  2198. .form-inline .input-group,
  2199. .form-inline .custom-select {
  2200. width: auto;
  2201. }
  2202. .form-inline .form-check {
  2203. display: -ms-flexbox;
  2204. display: flex;
  2205. -ms-flex-align: center;
  2206. align-items: center;
  2207. -ms-flex-pack: center;
  2208. justify-content: center;
  2209. width: auto;
  2210. padding-left: 0;
  2211. }
  2212. .form-inline .form-check-input {
  2213. position: relative;
  2214. -ms-flex-negative: 0;
  2215. flex-shrink: 0;
  2216. margin-top: 0;
  2217. margin-right: 0.25rem;
  2218. margin-left: 0;
  2219. }
  2220. .form-inline .custom-control {
  2221. -ms-flex-align: center;
  2222. align-items: center;
  2223. -ms-flex-pack: center;
  2224. justify-content: center;
  2225. }
  2226. .form-inline .custom-control-label {
  2227. margin-bottom: 0;
  2228. }
  2229. }
  2230. .btn {
  2231. display: inline-block;
  2232. font-weight: 400;
  2233. color: #212529;
  2234. text-align: center;
  2235. vertical-align: middle;
  2236. cursor: pointer;
  2237. -webkit-user-select: none;
  2238. -moz-user-select: none;
  2239. -ms-user-select: none;
  2240. user-select: none;
  2241. background-color: transparent;
  2242. border: 1px solid transparent;
  2243. padding: 0.375rem 0.75rem;
  2244. font-size: 1rem;
  2245. line-height: 1.5;
  2246. border-radius: 0.25rem;
  2247. 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;
  2248. }
  2249. @media (prefers-reduced-motion: reduce) {
  2250. .btn {
  2251. transition: none;
  2252. }
  2253. }
  2254. .btn:hover {
  2255. color: #212529;
  2256. text-decoration: none;
  2257. }
  2258. .btn:focus, .btn.focus {
  2259. outline: 0;
  2260. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  2261. }
  2262. .btn.disabled, .btn:disabled {
  2263. opacity: 0.65;
  2264. }
  2265. a.btn.disabled,
  2266. fieldset:disabled a.btn {
  2267. pointer-events: none;
  2268. }
  2269. .btn-primary {
  2270. color: #fff;
  2271. background-color: #007bff;
  2272. border-color: #007bff;
  2273. }
  2274. .btn-primary:hover {
  2275. color: #fff;
  2276. background-color: #0069d9;
  2277. border-color: #0062cc;
  2278. }
  2279. .btn-primary:focus, .btn-primary.focus {
  2280. color: #fff;
  2281. background-color: #0069d9;
  2282. border-color: #0062cc;
  2283. box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
  2284. }
  2285. .btn-primary.disabled, .btn-primary:disabled {
  2286. color: #fff;
  2287. background-color: #007bff;
  2288. border-color: #007bff;
  2289. }
  2290. .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
  2291. .show > .btn-primary.dropdown-toggle {
  2292. color: #fff;
  2293. background-color: #0062cc;
  2294. border-color: #005cbf;
  2295. }
  2296. .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
  2297. .show > .btn-primary.dropdown-toggle:focus {
  2298. box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
  2299. }
  2300. .btn-secondary {
  2301. color: #fff;
  2302. background-color: #6c757d;
  2303. border-color: #6c757d;
  2304. }
  2305. .btn-secondary:hover {
  2306. color: #fff;
  2307. background-color: #5a6268;
  2308. border-color: #545b62;
  2309. }
  2310. .btn-secondary:focus, .btn-secondary.focus {
  2311. color: #fff;
  2312. background-color: #5a6268;
  2313. border-color: #545b62;
  2314. box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
  2315. }
  2316. .btn-secondary.disabled, .btn-secondary:disabled {
  2317. color: #fff;
  2318. background-color: #6c757d;
  2319. border-color: #6c757d;
  2320. }
  2321. .btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active,
  2322. .show > .btn-secondary.dropdown-toggle {
  2323. color: #fff;
  2324. background-color: #545b62;
  2325. border-color: #4e555b;
  2326. }
  2327. .btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus,
  2328. .show > .btn-secondary.dropdown-toggle:focus {
  2329. box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
  2330. }
  2331. .btn-success {
  2332. color: #fff;
  2333. background-color: #28a745;
  2334. border-color: #28a745;
  2335. }
  2336. .btn-success:hover {
  2337. color: #fff;
  2338. background-color: #218838;
  2339. border-color: #1e7e34;
  2340. }
  2341. .btn-success:focus, .btn-success.focus {
  2342. color: #fff;
  2343. background-color: #218838;
  2344. border-color: #1e7e34;
  2345. box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
  2346. }
  2347. .btn-success.disabled, .btn-success:disabled {
  2348. color: #fff;
  2349. background-color: #28a745;
  2350. border-color: #28a745;
  2351. }
  2352. .btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active,
  2353. .show > .btn-success.dropdown-toggle {
  2354. color: #fff;
  2355. background-color: #1e7e34;
  2356. border-color: #1c7430;
  2357. }
  2358. .btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus,
  2359. .show > .btn-success.dropdown-toggle:focus {
  2360. box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
  2361. }
  2362. .btn-info {
  2363. color: #fff;
  2364. background-color: #17a2b8;
  2365. border-color: #17a2b8;
  2366. }
  2367. .btn-info:hover {
  2368. color: #fff;
  2369. background-color: #138496;
  2370. border-color: #117a8b;
  2371. }
  2372. .btn-info:focus, .btn-info.focus {
  2373. color: #fff;
  2374. background-color: #138496;
  2375. border-color: #117a8b;
  2376. box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
  2377. }
  2378. .btn-info.disabled, .btn-info:disabled {
  2379. color: #fff;
  2380. background-color: #17a2b8;
  2381. border-color: #17a2b8;
  2382. }
  2383. .btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active,
  2384. .show > .btn-info.dropdown-toggle {
  2385. color: #fff;
  2386. background-color: #117a8b;
  2387. border-color: #10707f;
  2388. }
  2389. .btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus,
  2390. .show > .btn-info.dropdown-toggle:focus {
  2391. box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
  2392. }
  2393. .btn-warning {
  2394. color: #212529;
  2395. background-color: #ffc107;
  2396. border-color: #ffc107;
  2397. }
  2398. .btn-warning:hover {
  2399. color: #212529;
  2400. background-color: #e0a800;
  2401. border-color: #d39e00;
  2402. }
  2403. .btn-warning:focus, .btn-warning.focus {
  2404. color: #212529;
  2405. background-color: #e0a800;
  2406. border-color: #d39e00;
  2407. box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
  2408. }
  2409. .btn-warning.disabled, .btn-warning:disabled {
  2410. color: #212529;
  2411. background-color: #ffc107;
  2412. border-color: #ffc107;
  2413. }
  2414. .btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active,
  2415. .show > .btn-warning.dropdown-toggle {
  2416. color: #212529;
  2417. background-color: #d39e00;
  2418. border-color: #c69500;
  2419. }
  2420. .btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus,
  2421. .show > .btn-warning.dropdown-toggle:focus {
  2422. box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
  2423. }
  2424. .btn-danger {
  2425. color: #fff;
  2426. background-color: #dc3545;
  2427. border-color: #dc3545;
  2428. }
  2429. .btn-danger:hover {
  2430. color: #fff;
  2431. background-color: #c82333;
  2432. border-color: #bd2130;
  2433. }
  2434. .btn-danger:focus, .btn-danger.focus {
  2435. color: #fff;
  2436. background-color: #c82333;
  2437. border-color: #bd2130;
  2438. box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
  2439. }
  2440. .btn-danger.disabled, .btn-danger:disabled {
  2441. color: #fff;
  2442. background-color: #dc3545;
  2443. border-color: #dc3545;
  2444. }
  2445. .btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active,
  2446. .show > .btn-danger.dropdown-toggle {
  2447. color: #fff;
  2448. background-color: #bd2130;
  2449. border-color: #b21f2d;
  2450. }
  2451. .btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus,
  2452. .show > .btn-danger.dropdown-toggle:focus {
  2453. box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
  2454. }
  2455. .btn-light {
  2456. color: #212529;
  2457. background-color: #f8f9fa;
  2458. border-color: #f8f9fa;
  2459. }
  2460. .btn-light:hover {
  2461. color: #212529;
  2462. background-color: #e2e6ea;
  2463. border-color: #dae0e5;
  2464. }
  2465. .btn-light:focus, .btn-light.focus {
  2466. color: #212529;
  2467. background-color: #e2e6ea;
  2468. border-color: #dae0e5;
  2469. box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
  2470. }
  2471. .btn-light.disabled, .btn-light:disabled {
  2472. color: #212529;
  2473. background-color: #f8f9fa;
  2474. border-color: #f8f9fa;
  2475. }
  2476. .btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active,
  2477. .show > .btn-light.dropdown-toggle {
  2478. color: #212529;
  2479. background-color: #dae0e5;
  2480. border-color: #d3d9df;
  2481. }
  2482. .btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus,
  2483. .show > .btn-light.dropdown-toggle:focus {
  2484. box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
  2485. }
  2486. .btn-dark {
  2487. color: #fff;
  2488. background-color: #343a40;
  2489. border-color: #343a40;
  2490. }
  2491. .btn-dark:hover {
  2492. color: #fff;
  2493. background-color: #23272b;
  2494. border-color: #1d2124;
  2495. }
  2496. .btn-dark:focus, .btn-dark.focus {
  2497. color: #fff;
  2498. background-color: #23272b;
  2499. border-color: #1d2124;
  2500. box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
  2501. }
  2502. .btn-dark.disabled, .btn-dark:disabled {
  2503. color: #fff;
  2504. background-color: #343a40;
  2505. border-color: #343a40;
  2506. }
  2507. .btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active,
  2508. .show > .btn-dark.dropdown-toggle {
  2509. color: #fff;
  2510. background-color: #1d2124;
  2511. border-color: #171a1d;
  2512. }
  2513. .btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus,
  2514. .show > .btn-dark.dropdown-toggle:focus {
  2515. box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
  2516. }
  2517. .btn-outline-primary {
  2518. color: #007bff;
  2519. border-color: #007bff;
  2520. }
  2521. .btn-outline-primary:hover {
  2522. color: #fff;
  2523. background-color: #007bff;
  2524. border-color: #007bff;
  2525. }
  2526. .btn-outline-primary:focus, .btn-outline-primary.focus {
  2527. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
  2528. }
  2529. .btn-outline-primary.disabled, .btn-outline-primary:disabled {
  2530. color: #007bff;
  2531. background-color: transparent;
  2532. }
  2533. .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,
  2534. .show > .btn-outline-primary.dropdown-toggle {
  2535. color: #fff;
  2536. background-color: #007bff;
  2537. border-color: #007bff;
  2538. }
  2539. .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
  2540. .show > .btn-outline-primary.dropdown-toggle:focus {
  2541. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
  2542. }
  2543. .btn-outline-secondary {
  2544. color: #6c757d;
  2545. border-color: #6c757d;
  2546. }
  2547. .btn-outline-secondary:hover {
  2548. color: #fff;
  2549. background-color: #6c757d;
  2550. border-color: #6c757d;
  2551. }
  2552. .btn-outline-secondary:focus, .btn-outline-secondary.focus {
  2553. box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
  2554. }
  2555. .btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  2556. color: #6c757d;
  2557. background-color: transparent;
  2558. }
  2559. .btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active,
  2560. .show > .btn-outline-secondary.dropdown-toggle {
  2561. color: #fff;
  2562. background-color: #6c757d;
  2563. border-color: #6c757d;
  2564. }
  2565. .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
  2566. .show > .btn-outline-secondary.dropdown-toggle:focus {
  2567. box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
  2568. }
  2569. .btn-outline-success {
  2570. color: #28a745;
  2571. border-color: #28a745;
  2572. }
  2573. .btn-outline-success:hover {
  2574. color: #fff;
  2575. background-color: #28a745;
  2576. border-color: #28a745;
  2577. }
  2578. .btn-outline-success:focus, .btn-outline-success.focus {
  2579. box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
  2580. }
  2581. .btn-outline-success.disabled, .btn-outline-success:disabled {
  2582. color: #28a745;
  2583. background-color: transparent;
  2584. }
  2585. .btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active,
  2586. .show > .btn-outline-success.dropdown-toggle {
  2587. color: #fff;
  2588. background-color: #28a745;
  2589. border-color: #28a745;
  2590. }
  2591. .btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus,
  2592. .show > .btn-outline-success.dropdown-toggle:focus {
  2593. box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
  2594. }
  2595. .btn-outline-info {
  2596. color: #17a2b8;
  2597. border-color: #17a2b8;
  2598. }
  2599. .btn-outline-info:hover {
  2600. color: #fff;
  2601. background-color: #17a2b8;
  2602. border-color: #17a2b8;
  2603. }
  2604. .btn-outline-info:focus, .btn-outline-info.focus {
  2605. box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
  2606. }
  2607. .btn-outline-info.disabled, .btn-outline-info:disabled {
  2608. color: #17a2b8;
  2609. background-color: transparent;
  2610. }
  2611. .btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active,
  2612. .show > .btn-outline-info.dropdown-toggle {
  2613. color: #fff;
  2614. background-color: #17a2b8;
  2615. border-color: #17a2b8;
  2616. }
  2617. .btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus,
  2618. .show > .btn-outline-info.dropdown-toggle:focus {
  2619. box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
  2620. }
  2621. .btn-outline-warning {
  2622. color: #ffc107;
  2623. border-color: #ffc107;
  2624. }
  2625. .btn-outline-warning:hover {
  2626. color: #212529;
  2627. background-color: #ffc107;
  2628. border-color: #ffc107;
  2629. }
  2630. .btn-outline-warning:focus, .btn-outline-warning.focus {
  2631. box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
  2632. }
  2633. .btn-outline-warning.disabled, .btn-outline-warning:disabled {
  2634. color: #ffc107;
  2635. background-color: transparent;
  2636. }
  2637. .btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active,
  2638. .show > .btn-outline-warning.dropdown-toggle {
  2639. color: #212529;
  2640. background-color: #ffc107;
  2641. border-color: #ffc107;
  2642. }
  2643. .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus,
  2644. .show > .btn-outline-warning.dropdown-toggle:focus {
  2645. box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
  2646. }
  2647. .btn-outline-danger {
  2648. color: #dc3545;
  2649. border-color: #dc3545;
  2650. }
  2651. .btn-outline-danger:hover {
  2652. color: #fff;
  2653. background-color: #dc3545;
  2654. border-color: #dc3545;
  2655. }
  2656. .btn-outline-danger:focus, .btn-outline-danger.focus {
  2657. box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
  2658. }
  2659. .btn-outline-danger.disabled, .btn-outline-danger:disabled {
  2660. color: #dc3545;
  2661. background-color: transparent;
  2662. }
  2663. .btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active,
  2664. .show > .btn-outline-danger.dropdown-toggle {
  2665. color: #fff;
  2666. background-color: #dc3545;
  2667. border-color: #dc3545;
  2668. }
  2669. .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus,
  2670. .show > .btn-outline-danger.dropdown-toggle:focus {
  2671. box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
  2672. }
  2673. .btn-outline-light {
  2674. color: #f8f9fa;
  2675. border-color: #f8f9fa;
  2676. }
  2677. .btn-outline-light:hover {
  2678. color: #212529;
  2679. background-color: #f8f9fa;
  2680. border-color: #f8f9fa;
  2681. }
  2682. .btn-outline-light:focus, .btn-outline-light.focus {
  2683. box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
  2684. }
  2685. .btn-outline-light.disabled, .btn-outline-light:disabled {
  2686. color: #f8f9fa;
  2687. background-color: transparent;
  2688. }
  2689. .btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active,
  2690. .show > .btn-outline-light.dropdown-toggle {
  2691. color: #212529;
  2692. background-color: #f8f9fa;
  2693. border-color: #f8f9fa;
  2694. }
  2695. .btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus,
  2696. .show > .btn-outline-light.dropdown-toggle:focus {
  2697. box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
  2698. }
  2699. .btn-outline-dark {
  2700. color: #343a40;
  2701. border-color: #343a40;
  2702. }
  2703. .btn-outline-dark:hover {
  2704. color: #fff;
  2705. background-color: #343a40;
  2706. border-color: #343a40;
  2707. }
  2708. .btn-outline-dark:focus, .btn-outline-dark.focus {
  2709. box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
  2710. }
  2711. .btn-outline-dark.disabled, .btn-outline-dark:disabled {
  2712. color: #343a40;
  2713. background-color: transparent;
  2714. }
  2715. .btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active,
  2716. .show > .btn-outline-dark.dropdown-toggle {
  2717. color: #fff;
  2718. background-color: #343a40;
  2719. border-color: #343a40;
  2720. }
  2721. .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus,
  2722. .show > .btn-outline-dark.dropdown-toggle:focus {
  2723. box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
  2724. }
  2725. .btn-link {
  2726. font-weight: 400;
  2727. color: #007bff;
  2728. text-decoration: none;
  2729. }
  2730. .btn-link:hover {
  2731. color: #0056b3;
  2732. text-decoration: underline;
  2733. }
  2734. .btn-link:focus, .btn-link.focus {
  2735. text-decoration: underline;
  2736. box-shadow: none;
  2737. }
  2738. .btn-link:disabled, .btn-link.disabled {
  2739. color: #6c757d;
  2740. pointer-events: none;
  2741. }
  2742. .btn-lg, .btn-group-lg > .btn {
  2743. padding: 0.5rem 1rem;
  2744. font-size: 1.25rem;
  2745. line-height: 1.5;
  2746. border-radius: 0.3rem;
  2747. }
  2748. .btn-sm, .btn-group-sm > .btn {
  2749. padding: 0.25rem 0.5rem;
  2750. font-size: 0.875rem;
  2751. line-height: 1.5;
  2752. border-radius: 0.2rem;
  2753. }
  2754. .btn-block {
  2755. display: block;
  2756. width: 100%;
  2757. }
  2758. .btn-block + .btn-block {
  2759. margin-top: 0.5rem;
  2760. }
  2761. input[type="submit"].btn-block,
  2762. input[type="reset"].btn-block,
  2763. input[type="button"].btn-block {
  2764. width: 100%;
  2765. }
  2766. .fade {
  2767. transition: opacity 0.15s linear;
  2768. }
  2769. @media (prefers-reduced-motion: reduce) {
  2770. .fade {
  2771. transition: none;
  2772. }
  2773. }
  2774. .fade:not(.show) {
  2775. opacity: 0;
  2776. }
  2777. .collapse:not(.show) {
  2778. display: none;
  2779. }
  2780. .collapsing {
  2781. position: relative;
  2782. height: 0;
  2783. overflow: hidden;
  2784. transition: height 0.35s ease;
  2785. }
  2786. @media (prefers-reduced-motion: reduce) {
  2787. .collapsing {
  2788. transition: none;
  2789. }
  2790. }
  2791. .dropup,
  2792. .dropright,
  2793. .dropdown,
  2794. .dropleft {
  2795. position: relative;
  2796. }
  2797. .dropdown-toggle {
  2798. white-space: nowrap;
  2799. }
  2800. .dropdown-toggle::after {
  2801. display: inline-block;
  2802. margin-left: 0.255em;
  2803. vertical-align: 0.255em;
  2804. content: "";
  2805. border-top: 0.3em solid;
  2806. border-right: 0.3em solid transparent;
  2807. border-bottom: 0;
  2808. border-left: 0.3em solid transparent;
  2809. }
  2810. .dropdown-toggle:empty::after {
  2811. margin-left: 0;
  2812. }
  2813. .dropdown-menu {
  2814. position: absolute;
  2815. top: 100%;
  2816. left: 0;
  2817. z-index: 1000;
  2818. display: none;
  2819. float: left;
  2820. min-width: 10rem;
  2821. padding: 0.5rem 0;
  2822. margin: 0.125rem 0 0;
  2823. font-size: 1rem;
  2824. color: #212529;
  2825. text-align: left;
  2826. list-style: none;
  2827. background-color: #fff;
  2828. background-clip: padding-box;
  2829. border: 1px solid rgba(0, 0, 0, 0.15);
  2830. border-radius: 0.25rem;
  2831. }
  2832. .dropdown-menu-left {
  2833. right: auto;
  2834. left: 0;
  2835. }
  2836. .dropdown-menu-right {
  2837. right: 0;
  2838. left: auto;
  2839. }
  2840. @media (min-width: 576px) {
  2841. .dropdown-menu-sm-left {
  2842. right: auto;
  2843. left: 0;
  2844. }
  2845. .dropdown-menu-sm-right {
  2846. right: 0;
  2847. left: auto;
  2848. }
  2849. }
  2850. @media (min-width: 768px) {
  2851. .dropdown-menu-md-left {
  2852. right: auto;
  2853. left: 0;
  2854. }
  2855. .dropdown-menu-md-right {
  2856. right: 0;
  2857. left: auto;
  2858. }
  2859. }
  2860. @media (min-width: 992px) {
  2861. .dropdown-menu-lg-left {
  2862. right: auto;
  2863. left: 0;
  2864. }
  2865. .dropdown-menu-lg-right {
  2866. right: 0;
  2867. left: auto;
  2868. }
  2869. }
  2870. @media (min-width: 1200px) {
  2871. .dropdown-menu-xl-left {
  2872. right: auto;
  2873. left: 0;
  2874. }
  2875. .dropdown-menu-xl-right {
  2876. right: 0;
  2877. left: auto;
  2878. }
  2879. }
  2880. .dropup .dropdown-menu {
  2881. top: auto;
  2882. bottom: 100%;
  2883. margin-top: 0;
  2884. margin-bottom: 0.125rem;
  2885. }
  2886. .dropup .dropdown-toggle::after {
  2887. display: inline-block;
  2888. margin-left: 0.255em;
  2889. vertical-align: 0.255em;
  2890. content: "";
  2891. border-top: 0;
  2892. border-right: 0.3em solid transparent;
  2893. border-bottom: 0.3em solid;
  2894. border-left: 0.3em solid transparent;
  2895. }
  2896. .dropup .dropdown-toggle:empty::after {
  2897. margin-left: 0;
  2898. }
  2899. .dropright .dropdown-menu {
  2900. top: 0;
  2901. right: auto;
  2902. left: 100%;
  2903. margin-top: 0;
  2904. margin-left: 0.125rem;
  2905. }
  2906. .dropright .dropdown-toggle::after {
  2907. display: inline-block;
  2908. margin-left: 0.255em;
  2909. vertical-align: 0.255em;
  2910. content: "";
  2911. border-top: 0.3em solid transparent;
  2912. border-right: 0;
  2913. border-bottom: 0.3em solid transparent;
  2914. border-left: 0.3em solid;
  2915. }
  2916. .dropright .dropdown-toggle:empty::after {
  2917. margin-left: 0;
  2918. }
  2919. .dropright .dropdown-toggle::after {
  2920. vertical-align: 0;
  2921. }
  2922. .dropleft .dropdown-menu {
  2923. top: 0;
  2924. right: 100%;
  2925. left: auto;
  2926. margin-top: 0;
  2927. margin-right: 0.125rem;
  2928. }
  2929. .dropleft .dropdown-toggle::after {
  2930. display: inline-block;
  2931. margin-left: 0.255em;
  2932. vertical-align: 0.255em;
  2933. content: "";
  2934. }
  2935. .dropleft .dropdown-toggle::after {
  2936. display: none;
  2937. }
  2938. .dropleft .dropdown-toggle::before {
  2939. display: inline-block;
  2940. margin-right: 0.255em;
  2941. vertical-align: 0.255em;
  2942. content: "";
  2943. border-top: 0.3em solid transparent;
  2944. border-right: 0.3em solid;
  2945. border-bottom: 0.3em solid transparent;
  2946. }
  2947. .dropleft .dropdown-toggle:empty::after {
  2948. margin-left: 0;
  2949. }
  2950. .dropleft .dropdown-toggle::before {
  2951. vertical-align: 0;
  2952. }
  2953. .dropdown-menu[x-placement^="top"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"] {
  2954. right: auto;
  2955. bottom: auto;
  2956. }
  2957. .dropdown-divider {
  2958. height: 0;
  2959. margin: 0.5rem 0;
  2960. overflow: hidden;
  2961. border-top: 1px solid #e9ecef;
  2962. }
  2963. .dropdown-item {
  2964. display: block;
  2965. width: 100%;
  2966. padding: 0.25rem 1.5rem;
  2967. clear: both;
  2968. font-weight: 400;
  2969. color: #212529;
  2970. text-align: inherit;
  2971. white-space: nowrap;
  2972. background-color: transparent;
  2973. border: 0;
  2974. }
  2975. .dropdown-item:hover, .dropdown-item:focus {
  2976. color: #16181b;
  2977. text-decoration: none;
  2978. background-color: #f8f9fa;
  2979. }
  2980. .dropdown-item.active, .dropdown-item:active {
  2981. color: #fff;
  2982. text-decoration: none;
  2983. background-color: #007bff;
  2984. }
  2985. .dropdown-item.disabled, .dropdown-item:disabled {
  2986. color: #6c757d;
  2987. pointer-events: none;
  2988. background-color: transparent;
  2989. }
  2990. .dropdown-menu.show {
  2991. display: block;
  2992. }
  2993. .dropdown-header {
  2994. display: block;
  2995. padding: 0.5rem 1.5rem;
  2996. margin-bottom: 0;
  2997. font-size: 0.875rem;
  2998. color: #6c757d;
  2999. white-space: nowrap;
  3000. }
  3001. .dropdown-item-text {
  3002. display: block;
  3003. padding: 0.25rem 1.5rem;
  3004. color: #212529;
  3005. }
  3006. .btn-group,
  3007. .btn-group-vertical {
  3008. position: relative;
  3009. display: -ms-inline-flexbox;
  3010. display: inline-flex;
  3011. vertical-align: middle;
  3012. }
  3013. .btn-group > .btn,
  3014. .btn-group-vertical > .btn {
  3015. position: relative;
  3016. -ms-flex: 1 1 auto;
  3017. flex: 1 1 auto;
  3018. }
  3019. .btn-group > .btn:hover,
  3020. .btn-group-vertical > .btn:hover {
  3021. z-index: 1;
  3022. }
  3023. .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
  3024. .btn-group-vertical > .btn:focus,
  3025. .btn-group-vertical > .btn:active,
  3026. .btn-group-vertical > .btn.active {
  3027. z-index: 1;
  3028. }
  3029. .btn-toolbar {
  3030. display: -ms-flexbox;
  3031. display: flex;
  3032. -ms-flex-wrap: wrap;
  3033. flex-wrap: wrap;
  3034. -ms-flex-pack: start;
  3035. justify-content: flex-start;
  3036. }
  3037. .btn-toolbar .input-group {
  3038. width: auto;
  3039. }
  3040. .btn-group > .btn:not(:first-child),
  3041. .btn-group > .btn-group:not(:first-child) {
  3042. margin-left: -1px;
  3043. }
  3044. .btn-group > .btn:not(:last-child):not(.dropdown-toggle),
  3045. .btn-group > .btn-group:not(:last-child) > .btn {
  3046. border-top-right-radius: 0;
  3047. border-bottom-right-radius: 0;
  3048. }
  3049. .btn-group > .btn:not(:first-child),
  3050. .btn-group > .btn-group:not(:first-child) > .btn {
  3051. border-top-left-radius: 0;
  3052. border-bottom-left-radius: 0;
  3053. }
  3054. .dropdown-toggle-split {
  3055. padding-right: 0.5625rem;
  3056. padding-left: 0.5625rem;
  3057. }
  3058. .dropdown-toggle-split::after,
  3059. .dropup .dropdown-toggle-split::after,
  3060. .dropright .dropdown-toggle-split::after {
  3061. margin-left: 0;
  3062. }
  3063. .dropleft .dropdown-toggle-split::before {
  3064. margin-right: 0;
  3065. }
  3066. .btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  3067. padding-right: 0.375rem;
  3068. padding-left: 0.375rem;
  3069. }
  3070. .btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  3071. padding-right: 0.75rem;
  3072. padding-left: 0.75rem;
  3073. }
  3074. .btn-group-vertical {
  3075. -ms-flex-direction: column;
  3076. flex-direction: column;
  3077. -ms-flex-align: start;
  3078. align-items: flex-start;
  3079. -ms-flex-pack: center;
  3080. justify-content: center;
  3081. }
  3082. .btn-group-vertical > .btn,
  3083. .btn-group-vertical > .btn-group {
  3084. width: 100%;
  3085. }
  3086. .btn-group-vertical > .btn:not(:first-child),
  3087. .btn-group-vertical > .btn-group:not(:first-child) {
  3088. margin-top: -1px;
  3089. }
  3090. .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
  3091. .btn-group-vertical > .btn-group:not(:last-child) > .btn {
  3092. border-bottom-right-radius: 0;
  3093. border-bottom-left-radius: 0;
  3094. }
  3095. .btn-group-vertical > .btn:not(:first-child),
  3096. .btn-group-vertical > .btn-group:not(:first-child) > .btn {
  3097. border-top-left-radius: 0;
  3098. border-top-right-radius: 0;
  3099. }
  3100. .btn-group-toggle > .btn,
  3101. .btn-group-toggle > .btn-group > .btn {
  3102. margin-bottom: 0;
  3103. }
  3104. .btn-group-toggle > .btn input[type="radio"],
  3105. .btn-group-toggle > .btn input[type="checkbox"],
  3106. .btn-group-toggle > .btn-group > .btn input[type="radio"],
  3107. .btn-group-toggle > .btn-group > .btn input[type="checkbox"] {
  3108. position: absolute;
  3109. clip: rect(0, 0, 0, 0);
  3110. pointer-events: none;
  3111. }
  3112. .input-group {
  3113. position: relative;
  3114. display: -ms-flexbox;
  3115. display: flex;
  3116. -ms-flex-wrap: wrap;
  3117. flex-wrap: wrap;
  3118. -ms-flex-align: stretch;
  3119. align-items: stretch;
  3120. width: 100%;
  3121. }
  3122. .input-group > .form-control,
  3123. .input-group > .form-control-plaintext,
  3124. .input-group > .custom-select,
  3125. .input-group > .custom-file {
  3126. position: relative;
  3127. -ms-flex: 1 1 0%;
  3128. flex: 1 1 0%;
  3129. min-width: 0;
  3130. margin-bottom: 0;
  3131. }
  3132. .input-group > .form-control + .form-control,
  3133. .input-group > .form-control + .custom-select,
  3134. .input-group > .form-control + .custom-file,
  3135. .input-group > .form-control-plaintext + .form-control,
  3136. .input-group > .form-control-plaintext + .custom-select,
  3137. .input-group > .form-control-plaintext + .custom-file,
  3138. .input-group > .custom-select + .form-control,
  3139. .input-group > .custom-select + .custom-select,
  3140. .input-group > .custom-select + .custom-file,
  3141. .input-group > .custom-file + .form-control,
  3142. .input-group > .custom-file + .custom-select,
  3143. .input-group > .custom-file + .custom-file {
  3144. margin-left: -1px;
  3145. }
  3146. .input-group > .form-control:focus,
  3147. .input-group > .custom-select:focus,
  3148. .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  3149. z-index: 3;
  3150. }
  3151. .input-group > .custom-file .custom-file-input:focus {
  3152. z-index: 4;
  3153. }
  3154. .input-group > .form-control:not(:last-child),
  3155. .input-group > .custom-select:not(:last-child) {
  3156. border-top-right-radius: 0;
  3157. border-bottom-right-radius: 0;
  3158. }
  3159. .input-group > .form-control:not(:first-child),
  3160. .input-group > .custom-select:not(:first-child) {
  3161. border-top-left-radius: 0;
  3162. border-bottom-left-radius: 0;
  3163. }
  3164. .input-group > .custom-file {
  3165. display: -ms-flexbox;
  3166. display: flex;
  3167. -ms-flex-align: center;
  3168. align-items: center;
  3169. }
  3170. .input-group > .custom-file:not(:last-child) .custom-file-label,
  3171. .input-group > .custom-file:not(:last-child) .custom-file-label::after {
  3172. border-top-right-radius: 0;
  3173. border-bottom-right-radius: 0;
  3174. }
  3175. .input-group > .custom-file:not(:first-child) .custom-file-label {
  3176. border-top-left-radius: 0;
  3177. border-bottom-left-radius: 0;
  3178. }
  3179. .input-group-prepend,
  3180. .input-group-append {
  3181. display: -ms-flexbox;
  3182. display: flex;
  3183. }
  3184. .input-group-prepend .btn,
  3185. .input-group-append .btn {
  3186. position: relative;
  3187. z-index: 2;
  3188. }
  3189. .input-group-prepend .btn:focus,
  3190. .input-group-append .btn:focus {
  3191. z-index: 3;
  3192. }
  3193. .input-group-prepend .btn + .btn,
  3194. .input-group-prepend .btn + .input-group-text,
  3195. .input-group-prepend .input-group-text + .input-group-text,
  3196. .input-group-prepend .input-group-text + .btn,
  3197. .input-group-append .btn + .btn,
  3198. .input-group-append .btn + .input-group-text,
  3199. .input-group-append .input-group-text + .input-group-text,
  3200. .input-group-append .input-group-text + .btn {
  3201. margin-left: -1px;
  3202. }
  3203. .input-group-prepend {
  3204. margin-right: -1px;
  3205. }
  3206. .input-group-append {
  3207. margin-left: -1px;
  3208. }
  3209. .input-group-text {
  3210. display: -ms-flexbox;
  3211. display: flex;
  3212. -ms-flex-align: center;
  3213. align-items: center;
  3214. padding: 0.375rem 0.75rem;
  3215. margin-bottom: 0;
  3216. font-size: 1rem;
  3217. font-weight: 400;
  3218. line-height: 1.5;
  3219. color: #495057;
  3220. text-align: center;
  3221. white-space: nowrap;
  3222. background-color: #e9ecef;
  3223. border: 1px solid #ced4da;
  3224. border-radius: 0.25rem;
  3225. }
  3226. .input-group-text input[type="radio"],
  3227. .input-group-text input[type="checkbox"] {
  3228. margin-top: 0;
  3229. }
  3230. .input-group-lg > .form-control:not(textarea),
  3231. .input-group-lg > .custom-select {
  3232. height: calc(1.5em + 1rem + 2px);
  3233. }
  3234. .input-group-lg > .form-control,
  3235. .input-group-lg > .custom-select,
  3236. .input-group-lg > .input-group-prepend > .input-group-text,
  3237. .input-group-lg > .input-group-append > .input-group-text,
  3238. .input-group-lg > .input-group-prepend > .btn,
  3239. .input-group-lg > .input-group-append > .btn {
  3240. padding: 0.5rem 1rem;
  3241. font-size: 1.25rem;
  3242. line-height: 1.5;
  3243. border-radius: 0.3rem;
  3244. }
  3245. .input-group-sm > .form-control:not(textarea),
  3246. .input-group-sm > .custom-select {
  3247. height: calc(1.5em + 0.5rem + 2px);
  3248. }
  3249. .input-group-sm > .form-control,
  3250. .input-group-sm > .custom-select,
  3251. .input-group-sm > .input-group-prepend > .input-group-text,
  3252. .input-group-sm > .input-group-append > .input-group-text,
  3253. .input-group-sm > .input-group-prepend > .btn,
  3254. .input-group-sm > .input-group-append > .btn {
  3255. padding: 0.25rem 0.5rem;
  3256. font-size: 0.875rem;
  3257. line-height: 1.5;
  3258. border-radius: 0.2rem;
  3259. }
  3260. .input-group-lg > .custom-select,
  3261. .input-group-sm > .custom-select {
  3262. padding-right: 1.75rem;
  3263. }
  3264. .input-group > .input-group-prepend > .btn,
  3265. .input-group > .input-group-prepend > .input-group-text,
  3266. .input-group > .input-group-append:not(:last-child) > .btn,
  3267. .input-group > .input-group-append:not(:last-child) > .input-group-text,
  3268. .input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
  3269. .input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  3270. border-top-right-radius: 0;
  3271. border-bottom-right-radius: 0;
  3272. }
  3273. .input-group > .input-group-append > .btn,
  3274. .input-group > .input-group-append > .input-group-text,
  3275. .input-group > .input-group-prepend:not(:first-child) > .btn,
  3276. .input-group > .input-group-prepend:not(:first-child) > .input-group-text,
  3277. .input-group > .input-group-prepend:first-child > .btn:not(:first-child),
  3278. .input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  3279. border-top-left-radius: 0;
  3280. border-bottom-left-radius: 0;
  3281. }
  3282. .custom-control {
  3283. position: relative;
  3284. display: block;
  3285. min-height: 1.5rem;
  3286. padding-left: 1.5rem;
  3287. }
  3288. .custom-control-inline {
  3289. display: -ms-inline-flexbox;
  3290. display: inline-flex;
  3291. margin-right: 1rem;
  3292. }
  3293. .custom-control-input {
  3294. position: absolute;
  3295. left: 0;
  3296. z-index: -1;
  3297. width: 1rem;
  3298. height: 1.25rem;
  3299. opacity: 0;
  3300. }
  3301. .custom-control-input:checked ~ .custom-control-label::before {
  3302. color: #fff;
  3303. border-color: #007bff;
  3304. background-color: #007bff;
  3305. }
  3306. .custom-control-input:focus ~ .custom-control-label::before {
  3307. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  3308. }
  3309. .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  3310. border-color: #80bdff;
  3311. }
  3312. .custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  3313. color: #fff;
  3314. background-color: #b3d7ff;
  3315. border-color: #b3d7ff;
  3316. }
  3317. .custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label {
  3318. color: #6c757d;
  3319. }
  3320. .custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before {
  3321. background-color: #e9ecef;
  3322. }
  3323. .custom-control-label {
  3324. position: relative;
  3325. margin-bottom: 0;
  3326. vertical-align: top;
  3327. }
  3328. .custom-control-label::before {
  3329. position: absolute;
  3330. top: 0.25rem;
  3331. left: -1.5rem;
  3332. display: block;
  3333. width: 1rem;
  3334. height: 1rem;
  3335. pointer-events: none;
  3336. content: "";
  3337. background-color: #fff;
  3338. border: #adb5bd solid 1px;
  3339. }
  3340. .custom-control-label::after {
  3341. position: absolute;
  3342. top: 0.25rem;
  3343. left: -1.5rem;
  3344. display: block;
  3345. width: 1rem;
  3346. height: 1rem;
  3347. content: "";
  3348. background: no-repeat 50% / 50% 50%;
  3349. }
  3350. .custom-checkbox .custom-control-label::before {
  3351. border-radius: 0.25rem;
  3352. }
  3353. .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  3354. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
  3355. }
  3356. .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  3357. border-color: #007bff;
  3358. background-color: #007bff;
  3359. }
  3360. .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  3361. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
  3362. }
  3363. .custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  3364. background-color: rgba(0, 123, 255, 0.5);
  3365. }
  3366. .custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  3367. background-color: rgba(0, 123, 255, 0.5);
  3368. }
  3369. .custom-radio .custom-control-label::before {
  3370. border-radius: 50%;
  3371. }
  3372. .custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  3373. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
  3374. }
  3375. .custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  3376. background-color: rgba(0, 123, 255, 0.5);
  3377. }
  3378. .custom-switch {
  3379. padding-left: 2.25rem;
  3380. }
  3381. .custom-switch .custom-control-label::before {
  3382. left: -2.25rem;
  3383. width: 1.75rem;
  3384. pointer-events: all;
  3385. border-radius: 0.5rem;
  3386. }
  3387. .custom-switch .custom-control-label::after {
  3388. top: calc(0.25rem + 2px);
  3389. left: calc(-2.25rem + 2px);
  3390. width: calc(1rem - 4px);
  3391. height: calc(1rem - 4px);
  3392. background-color: #adb5bd;
  3393. border-radius: 0.5rem;
  3394. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
  3395. transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3396. transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
  3397. }
  3398. @media (prefers-reduced-motion: reduce) {
  3399. .custom-switch .custom-control-label::after {
  3400. transition: none;
  3401. }
  3402. }
  3403. .custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  3404. background-color: #fff;
  3405. -webkit-transform: translateX(0.75rem);
  3406. transform: translateX(0.75rem);
  3407. }
  3408. .custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  3409. background-color: rgba(0, 123, 255, 0.5);
  3410. }
  3411. .custom-select {
  3412. display: inline-block;
  3413. width: 100%;
  3414. height: calc(1.5em + 0.75rem + 2px);
  3415. padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  3416. font-size: 1rem;
  3417. font-weight: 400;
  3418. line-height: 1.5;
  3419. color: #495057;
  3420. vertical-align: middle;
  3421. background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px;
  3422. border: 1px solid #ced4da;
  3423. border-radius: 0.25rem;
  3424. -webkit-appearance: none;
  3425. -moz-appearance: none;
  3426. appearance: none;
  3427. }
  3428. .custom-select:focus {
  3429. border-color: #80bdff;
  3430. outline: 0;
  3431. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  3432. }
  3433. .custom-select:focus::-ms-value {
  3434. color: #495057;
  3435. background-color: #fff;
  3436. }
  3437. .custom-select[multiple], .custom-select[size]:not([size="1"]) {
  3438. height: auto;
  3439. padding-right: 0.75rem;
  3440. background-image: none;
  3441. }
  3442. .custom-select:disabled {
  3443. color: #6c757d;
  3444. background-color: #e9ecef;
  3445. }
  3446. .custom-select::-ms-expand {
  3447. display: none;
  3448. }
  3449. .custom-select:-moz-focusring {
  3450. color: transparent;
  3451. text-shadow: 0 0 0 #495057;
  3452. }
  3453. .custom-select-sm {
  3454. height: calc(1.5em + 0.5rem + 2px);
  3455. padding-top: 0.25rem;
  3456. padding-bottom: 0.25rem;
  3457. padding-left: 0.5rem;
  3458. font-size: 0.875rem;
  3459. }
  3460. .custom-select-lg {
  3461. height: calc(1.5em + 1rem + 2px);
  3462. padding-top: 0.5rem;
  3463. padding-bottom: 0.5rem;
  3464. padding-left: 1rem;
  3465. font-size: 1.25rem;
  3466. }
  3467. .custom-file {
  3468. position: relative;
  3469. display: inline-block;
  3470. width: 100%;
  3471. height: calc(1.5em + 0.75rem + 2px);
  3472. margin-bottom: 0;
  3473. }
  3474. .custom-file-input {
  3475. position: relative;
  3476. z-index: 2;
  3477. width: 100%;
  3478. height: calc(1.5em + 0.75rem + 2px);
  3479. margin: 0;
  3480. opacity: 0;
  3481. }
  3482. .custom-file-input:focus ~ .custom-file-label {
  3483. border-color: #80bdff;
  3484. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  3485. }
  3486. .custom-file-input[disabled] ~ .custom-file-label,
  3487. .custom-file-input:disabled ~ .custom-file-label {
  3488. background-color: #e9ecef;
  3489. }
  3490. .custom-file-input:lang(en) ~ .custom-file-label::after {
  3491. content: "Browse";
  3492. }
  3493. .custom-file-input ~ .custom-file-label[data-browse]::after {
  3494. content: attr(data-browse);
  3495. }
  3496. .custom-file-label {
  3497. position: absolute;
  3498. top: 0;
  3499. right: 0;
  3500. left: 0;
  3501. z-index: 1;
  3502. height: calc(1.5em + 0.75rem + 2px);
  3503. padding: 0.375rem 0.75rem;
  3504. font-weight: 400;
  3505. line-height: 1.5;
  3506. color: #495057;
  3507. background-color: #fff;
  3508. border: 1px solid #ced4da;
  3509. border-radius: 0.25rem;
  3510. }
  3511. .custom-file-label::after {
  3512. position: absolute;
  3513. top: 0;
  3514. right: 0;
  3515. bottom: 0;
  3516. z-index: 3;
  3517. display: block;
  3518. height: calc(1.5em + 0.75rem);
  3519. padding: 0.375rem 0.75rem;
  3520. line-height: 1.5;
  3521. color: #495057;
  3522. content: "Browse";
  3523. background-color: #e9ecef;
  3524. border-left: inherit;
  3525. border-radius: 0 0.25rem 0.25rem 0;
  3526. }
  3527. .custom-range {
  3528. width: 100%;
  3529. height: 1.4rem;
  3530. padding: 0;
  3531. background-color: transparent;
  3532. -webkit-appearance: none;
  3533. -moz-appearance: none;
  3534. appearance: none;
  3535. }
  3536. .custom-range:focus {
  3537. outline: none;
  3538. }
  3539. .custom-range:focus::-webkit-slider-thumb {
  3540. box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  3541. }
  3542. .custom-range:focus::-moz-range-thumb {
  3543. box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  3544. }
  3545. .custom-range:focus::-ms-thumb {
  3546. box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  3547. }
  3548. .custom-range::-moz-focus-outer {
  3549. border: 0;
  3550. }
  3551. .custom-range::-webkit-slider-thumb {
  3552. width: 1rem;
  3553. height: 1rem;
  3554. margin-top: -0.25rem;
  3555. background-color: #007bff;
  3556. border: 0;
  3557. border-radius: 1rem;
  3558. -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3559. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3560. -webkit-appearance: none;
  3561. appearance: none;
  3562. }
  3563. @media (prefers-reduced-motion: reduce) {
  3564. .custom-range::-webkit-slider-thumb {
  3565. -webkit-transition: none;
  3566. transition: none;
  3567. }
  3568. }
  3569. .custom-range::-webkit-slider-thumb:active {
  3570. background-color: #b3d7ff;
  3571. }
  3572. .custom-range::-webkit-slider-runnable-track {
  3573. width: 100%;
  3574. height: 0.5rem;
  3575. color: transparent;
  3576. cursor: pointer;
  3577. background-color: #dee2e6;
  3578. border-color: transparent;
  3579. border-radius: 1rem;
  3580. }
  3581. .custom-range::-moz-range-thumb {
  3582. width: 1rem;
  3583. height: 1rem;
  3584. background-color: #007bff;
  3585. border: 0;
  3586. border-radius: 1rem;
  3587. -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3588. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3589. -moz-appearance: none;
  3590. appearance: none;
  3591. }
  3592. @media (prefers-reduced-motion: reduce) {
  3593. .custom-range::-moz-range-thumb {
  3594. -moz-transition: none;
  3595. transition: none;
  3596. }
  3597. }
  3598. .custom-range::-moz-range-thumb:active {
  3599. background-color: #b3d7ff;
  3600. }
  3601. .custom-range::-moz-range-track {
  3602. width: 100%;
  3603. height: 0.5rem;
  3604. color: transparent;
  3605. cursor: pointer;
  3606. background-color: #dee2e6;
  3607. border-color: transparent;
  3608. border-radius: 1rem;
  3609. }
  3610. .custom-range::-ms-thumb {
  3611. width: 1rem;
  3612. height: 1rem;
  3613. margin-top: 0;
  3614. margin-right: 0.2rem;
  3615. margin-left: 0.2rem;
  3616. background-color: #007bff;
  3617. border: 0;
  3618. border-radius: 1rem;
  3619. -ms-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3620. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3621. appearance: none;
  3622. }
  3623. @media (prefers-reduced-motion: reduce) {
  3624. .custom-range::-ms-thumb {
  3625. -ms-transition: none;
  3626. transition: none;
  3627. }
  3628. }
  3629. .custom-range::-ms-thumb:active {
  3630. background-color: #b3d7ff;
  3631. }
  3632. .custom-range::-ms-track {
  3633. width: 100%;
  3634. height: 0.5rem;
  3635. color: transparent;
  3636. cursor: pointer;
  3637. background-color: transparent;
  3638. border-color: transparent;
  3639. border-width: 0.5rem;
  3640. }
  3641. .custom-range::-ms-fill-lower {
  3642. background-color: #dee2e6;
  3643. border-radius: 1rem;
  3644. }
  3645. .custom-range::-ms-fill-upper {
  3646. margin-right: 15px;
  3647. background-color: #dee2e6;
  3648. border-radius: 1rem;
  3649. }
  3650. .custom-range:disabled::-webkit-slider-thumb {
  3651. background-color: #adb5bd;
  3652. }
  3653. .custom-range:disabled::-webkit-slider-runnable-track {
  3654. cursor: default;
  3655. }
  3656. .custom-range:disabled::-moz-range-thumb {
  3657. background-color: #adb5bd;
  3658. }
  3659. .custom-range:disabled::-moz-range-track {
  3660. cursor: default;
  3661. }
  3662. .custom-range:disabled::-ms-thumb {
  3663. background-color: #adb5bd;
  3664. }
  3665. .custom-control-label::before,
  3666. .custom-file-label,
  3667. .custom-select {
  3668. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3669. }
  3670. @media (prefers-reduced-motion: reduce) {
  3671. .custom-control-label::before,
  3672. .custom-file-label,
  3673. .custom-select {
  3674. transition: none;
  3675. }
  3676. }
  3677. .nav {
  3678. display: -ms-flexbox;
  3679. display: flex;
  3680. -ms-flex-wrap: wrap;
  3681. flex-wrap: wrap;
  3682. padding-left: 0;
  3683. margin-bottom: 0;
  3684. list-style: none;
  3685. }
  3686. .nav-link {
  3687. display: block;
  3688. padding: 0.5rem 1rem;
  3689. }
  3690. .nav-link:hover, .nav-link:focus {
  3691. text-decoration: none;
  3692. }
  3693. .nav-link.disabled {
  3694. color: #6c757d;
  3695. pointer-events: none;
  3696. cursor: default;
  3697. }
  3698. .nav-tabs {
  3699. border-bottom: 1px solid #dee2e6;
  3700. }
  3701. .nav-tabs .nav-item {
  3702. margin-bottom: -1px;
  3703. }
  3704. .nav-tabs .nav-link {
  3705. border: 1px solid transparent;
  3706. border-top-left-radius: 0.25rem;
  3707. border-top-right-radius: 0.25rem;
  3708. }
  3709. .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  3710. border-color: #e9ecef #e9ecef #dee2e6;
  3711. }
  3712. .nav-tabs .nav-link.disabled {
  3713. color: #6c757d;
  3714. background-color: transparent;
  3715. border-color: transparent;
  3716. }
  3717. .nav-tabs .nav-link.active,
  3718. .nav-tabs .nav-item.show .nav-link {
  3719. color: #495057;
  3720. background-color: #fff;
  3721. border-color: #dee2e6 #dee2e6 #fff;
  3722. }
  3723. .nav-tabs .dropdown-menu {
  3724. margin-top: -1px;
  3725. border-top-left-radius: 0;
  3726. border-top-right-radius: 0;
  3727. }
  3728. .nav-pills .nav-link {
  3729. border-radius: 0.25rem;
  3730. }
  3731. .nav-pills .nav-link.active,
  3732. .nav-pills .show > .nav-link {
  3733. color: #fff;
  3734. background-color: #007bff;
  3735. }
  3736. .nav-fill .nav-item {
  3737. -ms-flex: 1 1 auto;
  3738. flex: 1 1 auto;
  3739. text-align: center;
  3740. }
  3741. .nav-justified .nav-item {
  3742. -ms-flex-preferred-size: 0;
  3743. flex-basis: 0;
  3744. -ms-flex-positive: 1;
  3745. flex-grow: 1;
  3746. text-align: center;
  3747. }
  3748. .tab-content > .tab-pane {
  3749. display: none;
  3750. }
  3751. .tab-content > .active {
  3752. display: block;
  3753. }
  3754. .navbar {
  3755. position: relative;
  3756. display: -ms-flexbox;
  3757. display: flex;
  3758. -ms-flex-wrap: wrap;
  3759. flex-wrap: wrap;
  3760. -ms-flex-align: center;
  3761. align-items: center;
  3762. -ms-flex-pack: justify;
  3763. justify-content: space-between;
  3764. padding: 0.5rem 1rem;
  3765. }
  3766. .navbar .container,
  3767. .navbar .container-fluid, .navbar .container-sm, .navbar .container-md, .navbar .container-lg, .navbar .container-xl {
  3768. display: -ms-flexbox;
  3769. display: flex;
  3770. -ms-flex-wrap: wrap;
  3771. flex-wrap: wrap;
  3772. -ms-flex-align: center;
  3773. align-items: center;
  3774. -ms-flex-pack: justify;
  3775. justify-content: space-between;
  3776. }
  3777. .navbar-brand {
  3778. display: inline-block;
  3779. padding-top: 0.3125rem;
  3780. padding-bottom: 0.3125rem;
  3781. margin-right: 1rem;
  3782. font-size: 1.25rem;
  3783. line-height: inherit;
  3784. white-space: nowrap;
  3785. }
  3786. .navbar-brand:hover, .navbar-brand:focus {
  3787. text-decoration: none;
  3788. }
  3789. .navbar-nav {
  3790. display: -ms-flexbox;
  3791. display: flex;
  3792. -ms-flex-direction: column;
  3793. flex-direction: column;
  3794. padding-left: 0;
  3795. margin-bottom: 0;
  3796. list-style: none;
  3797. }
  3798. .navbar-nav .nav-link {
  3799. padding-right: 0;
  3800. padding-left: 0;
  3801. }
  3802. .navbar-nav .dropdown-menu {
  3803. position: static;
  3804. float: none;
  3805. }
  3806. .navbar-text {
  3807. display: inline-block;
  3808. padding-top: 0.5rem;
  3809. padding-bottom: 0.5rem;
  3810. }
  3811. .navbar-collapse {
  3812. -ms-flex-preferred-size: 100%;
  3813. flex-basis: 100%;
  3814. -ms-flex-positive: 1;
  3815. flex-grow: 1;
  3816. -ms-flex-align: center;
  3817. align-items: center;
  3818. }
  3819. .navbar-toggler {
  3820. padding: 0.25rem 0.75rem;
  3821. font-size: 1.25rem;
  3822. line-height: 1;
  3823. background-color: transparent;
  3824. border: 1px solid transparent;
  3825. border-radius: 0.25rem;
  3826. }
  3827. .navbar-toggler:hover, .navbar-toggler:focus {
  3828. text-decoration: none;
  3829. }
  3830. .navbar-toggler-icon {
  3831. display: inline-block;
  3832. width: 1.5em;
  3833. height: 1.5em;
  3834. vertical-align: middle;
  3835. content: "";
  3836. background: no-repeat center center;
  3837. background-size: 100% 100%;
  3838. }
  3839. @media (max-width: 575.98px) {
  3840. .navbar-expand-sm > .container,
  3841. .navbar-expand-sm > .container-fluid, .navbar-expand-sm > .container-sm, .navbar-expand-sm > .container-md, .navbar-expand-sm > .container-lg, .navbar-expand-sm > .container-xl {
  3842. padding-right: 0;
  3843. padding-left: 0;
  3844. }
  3845. }
  3846. @media (min-width: 576px) {
  3847. .navbar-expand-sm {
  3848. -ms-flex-flow: row nowrap;
  3849. flex-flow: row nowrap;
  3850. -ms-flex-pack: start;
  3851. justify-content: flex-start;
  3852. }
  3853. .navbar-expand-sm .navbar-nav {
  3854. -ms-flex-direction: row;
  3855. flex-direction: row;
  3856. }
  3857. .navbar-expand-sm .navbar-nav .dropdown-menu {
  3858. position: absolute;
  3859. }
  3860. .navbar-expand-sm .navbar-nav .nav-link {
  3861. padding-right: 0.5rem;
  3862. padding-left: 0.5rem;
  3863. }
  3864. .navbar-expand-sm > .container,
  3865. .navbar-expand-sm > .container-fluid, .navbar-expand-sm > .container-sm, .navbar-expand-sm > .container-md, .navbar-expand-sm > .container-lg, .navbar-expand-sm > .container-xl {
  3866. -ms-flex-wrap: nowrap;
  3867. flex-wrap: nowrap;
  3868. }
  3869. .navbar-expand-sm .navbar-collapse {
  3870. display: -ms-flexbox !important;
  3871. display: flex !important;
  3872. -ms-flex-preferred-size: auto;
  3873. flex-basis: auto;
  3874. }
  3875. .navbar-expand-sm .navbar-toggler {
  3876. display: none;
  3877. }
  3878. }
  3879. @media (max-width: 767.98px) {
  3880. .navbar-expand-md > .container,
  3881. .navbar-expand-md > .container-fluid, .navbar-expand-md > .container-sm, .navbar-expand-md > .container-md, .navbar-expand-md > .container-lg, .navbar-expand-md > .container-xl {
  3882. padding-right: 0;
  3883. padding-left: 0;
  3884. }
  3885. }
  3886. @media (min-width: 768px) {
  3887. .navbar-expand-md {
  3888. -ms-flex-flow: row nowrap;
  3889. flex-flow: row nowrap;
  3890. -ms-flex-pack: start;
  3891. justify-content: flex-start;
  3892. }
  3893. .navbar-expand-md .navbar-nav {
  3894. -ms-flex-direction: row;
  3895. flex-direction: row;
  3896. }
  3897. .navbar-expand-md .navbar-nav .dropdown-menu {
  3898. position: absolute;
  3899. }
  3900. .navbar-expand-md .navbar-nav .nav-link {
  3901. padding-right: 0.5rem;
  3902. padding-left: 0.5rem;
  3903. }
  3904. .navbar-expand-md > .container,
  3905. .navbar-expand-md > .container-fluid, .navbar-expand-md > .container-sm, .navbar-expand-md > .container-md, .navbar-expand-md > .container-lg, .navbar-expand-md > .container-xl {
  3906. -ms-flex-wrap: nowrap;
  3907. flex-wrap: nowrap;
  3908. }
  3909. .navbar-expand-md .navbar-collapse {
  3910. display: -ms-flexbox !important;
  3911. display: flex !important;
  3912. -ms-flex-preferred-size: auto;
  3913. flex-basis: auto;
  3914. }
  3915. .navbar-expand-md .navbar-toggler {
  3916. display: none;
  3917. }
  3918. }
  3919. @media (max-width: 991.98px) {
  3920. .navbar-expand-lg > .container,
  3921. .navbar-expand-lg > .container-fluid, .navbar-expand-lg > .container-sm, .navbar-expand-lg > .container-md, .navbar-expand-lg > .container-lg, .navbar-expand-lg > .container-xl {
  3922. padding-right: 0;
  3923. padding-left: 0;
  3924. }
  3925. }
  3926. @media (min-width: 992px) {
  3927. .navbar-expand-lg {
  3928. -ms-flex-flow: row nowrap;
  3929. flex-flow: row nowrap;
  3930. -ms-flex-pack: start;
  3931. justify-content: flex-start;
  3932. }
  3933. .navbar-expand-lg .navbar-nav {
  3934. -ms-flex-direction: row;
  3935. flex-direction: row;
  3936. }
  3937. .navbar-expand-lg .navbar-nav .dropdown-menu {
  3938. position: absolute;
  3939. }
  3940. .navbar-expand-lg .navbar-nav .nav-link {
  3941. padding-right: 0.5rem;
  3942. padding-left: 0.5rem;
  3943. }
  3944. .navbar-expand-lg > .container,
  3945. .navbar-expand-lg > .container-fluid, .navbar-expand-lg > .container-sm, .navbar-expand-lg > .container-md, .navbar-expand-lg > .container-lg, .navbar-expand-lg > .container-xl {
  3946. -ms-flex-wrap: nowrap;
  3947. flex-wrap: nowrap;
  3948. }
  3949. .navbar-expand-lg .navbar-collapse {
  3950. display: -ms-flexbox !important;
  3951. display: flex !important;
  3952. -ms-flex-preferred-size: auto;
  3953. flex-basis: auto;
  3954. }
  3955. .navbar-expand-lg .navbar-toggler {
  3956. display: none;
  3957. }
  3958. }
  3959. @media (max-width: 1199.98px) {
  3960. .navbar-expand-xl > .container,
  3961. .navbar-expand-xl > .container-fluid, .navbar-expand-xl > .container-sm, .navbar-expand-xl > .container-md, .navbar-expand-xl > .container-lg, .navbar-expand-xl > .container-xl {
  3962. padding-right: 0;
  3963. padding-left: 0;
  3964. }
  3965. }
  3966. @media (min-width: 1200px) {
  3967. .navbar-expand-xl {
  3968. -ms-flex-flow: row nowrap;
  3969. flex-flow: row nowrap;
  3970. -ms-flex-pack: start;
  3971. justify-content: flex-start;
  3972. }
  3973. .navbar-expand-xl .navbar-nav {
  3974. -ms-flex-direction: row;
  3975. flex-direction: row;
  3976. }
  3977. .navbar-expand-xl .navbar-nav .dropdown-menu {
  3978. position: absolute;
  3979. }
  3980. .navbar-expand-xl .navbar-nav .nav-link {
  3981. padding-right: 0.5rem;
  3982. padding-left: 0.5rem;
  3983. }
  3984. .navbar-expand-xl > .container,
  3985. .navbar-expand-xl > .container-fluid, .navbar-expand-xl > .container-sm, .navbar-expand-xl > .container-md, .navbar-expand-xl > .container-lg, .navbar-expand-xl > .container-xl {
  3986. -ms-flex-wrap: nowrap;
  3987. flex-wrap: nowrap;
  3988. }
  3989. .navbar-expand-xl .navbar-collapse {
  3990. display: -ms-flexbox !important;
  3991. display: flex !important;
  3992. -ms-flex-preferred-size: auto;
  3993. flex-basis: auto;
  3994. }
  3995. .navbar-expand-xl .navbar-toggler {
  3996. display: none;
  3997. }
  3998. }
  3999. .navbar-expand {
  4000. -ms-flex-flow: row nowrap;
  4001. flex-flow: row nowrap;
  4002. -ms-flex-pack: start;
  4003. justify-content: flex-start;
  4004. }
  4005. .navbar-expand > .container,
  4006. .navbar-expand > .container-fluid, .navbar-expand > .container-sm, .navbar-expand > .container-md, .navbar-expand > .container-lg, .navbar-expand > .container-xl {
  4007. padding-right: 0;
  4008. padding-left: 0;
  4009. }
  4010. .navbar-expand .navbar-nav {
  4011. -ms-flex-direction: row;
  4012. flex-direction: row;
  4013. }
  4014. .navbar-expand .navbar-nav .dropdown-menu {
  4015. position: absolute;
  4016. }
  4017. .navbar-expand .navbar-nav .nav-link {
  4018. padding-right: 0.5rem;
  4019. padding-left: 0.5rem;
  4020. }
  4021. .navbar-expand > .container,
  4022. .navbar-expand > .container-fluid, .navbar-expand > .container-sm, .navbar-expand > .container-md, .navbar-expand > .container-lg, .navbar-expand > .container-xl {
  4023. -ms-flex-wrap: nowrap;
  4024. flex-wrap: nowrap;
  4025. }
  4026. .navbar-expand .navbar-collapse {
  4027. display: -ms-flexbox !important;
  4028. display: flex !important;
  4029. -ms-flex-preferred-size: auto;
  4030. flex-basis: auto;
  4031. }
  4032. .navbar-expand .navbar-toggler {
  4033. display: none;
  4034. }
  4035. .navbar-light .navbar-brand {
  4036. color: rgba(0, 0, 0, 0.9);
  4037. }
  4038. .navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  4039. color: rgba(0, 0, 0, 0.9);
  4040. }
  4041. .navbar-light .navbar-nav .nav-link {
  4042. color: rgba(0, 0, 0, 0.5);
  4043. }
  4044. .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  4045. color: rgba(0, 0, 0, 0.7);
  4046. }
  4047. .navbar-light .navbar-nav .nav-link.disabled {
  4048. color: rgba(0, 0, 0, 0.3);
  4049. }
  4050. .navbar-light .navbar-nav .show > .nav-link,
  4051. .navbar-light .navbar-nav .active > .nav-link,
  4052. .navbar-light .navbar-nav .nav-link.show,
  4053. .navbar-light .navbar-nav .nav-link.active {
  4054. color: rgba(0, 0, 0, 0.9);
  4055. }
  4056. .navbar-light .navbar-toggler {
  4057. color: rgba(0, 0, 0, 0.5);
  4058. border-color: rgba(0, 0, 0, 0.1);
  4059. }
  4060. .navbar-light .navbar-toggler-icon {
  4061. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  4062. }
  4063. .navbar-light .navbar-text {
  4064. color: rgba(0, 0, 0, 0.5);
  4065. }
  4066. .navbar-light .navbar-text a {
  4067. color: rgba(0, 0, 0, 0.9);
  4068. }
  4069. .navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
  4070. color: rgba(0, 0, 0, 0.9);
  4071. }
  4072. .navbar-dark .navbar-brand {
  4073. color: #fff;
  4074. }
  4075. .navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  4076. color: #fff;
  4077. }
  4078. .navbar-dark .navbar-nav .nav-link {
  4079. color: rgba(255, 255, 255, 0.5);
  4080. }
  4081. .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  4082. color: rgba(255, 255, 255, 0.75);
  4083. }
  4084. .navbar-dark .navbar-nav .nav-link.disabled {
  4085. color: rgba(255, 255, 255, 0.25);
  4086. }
  4087. .navbar-dark .navbar-nav .show > .nav-link,
  4088. .navbar-dark .navbar-nav .active > .nav-link,
  4089. .navbar-dark .navbar-nav .nav-link.show,
  4090. .navbar-dark .navbar-nav .nav-link.active {
  4091. color: #fff;
  4092. }
  4093. .navbar-dark .navbar-toggler {
  4094. color: rgba(255, 255, 255, 0.5);
  4095. border-color: rgba(255, 255, 255, 0.1);
  4096. }
  4097. .navbar-dark .navbar-toggler-icon {
  4098. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  4099. }
  4100. .navbar-dark .navbar-text {
  4101. color: rgba(255, 255, 255, 0.5);
  4102. }
  4103. .navbar-dark .navbar-text a {
  4104. color: #fff;
  4105. }
  4106. .navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
  4107. color: #fff;
  4108. }
  4109. .card {
  4110. position: relative;
  4111. display: -ms-flexbox;
  4112. display: flex;
  4113. -ms-flex-direction: column;
  4114. flex-direction: column;
  4115. min-width: 0;
  4116. word-wrap: break-word;
  4117. background-color: #fff;
  4118. background-clip: border-box;
  4119. border: 1px solid rgba(0, 0, 0, 0.125);
  4120. border-radius: 0.25rem;
  4121. }
  4122. .card > hr {
  4123. margin-right: 0;
  4124. margin-left: 0;
  4125. }
  4126. .card > .list-group:first-child .list-group-item:first-child {
  4127. border-top-left-radius: 0.25rem;
  4128. border-top-right-radius: 0.25rem;
  4129. }
  4130. .card > .list-group:last-child .list-group-item:last-child {
  4131. border-bottom-right-radius: 0.25rem;
  4132. border-bottom-left-radius: 0.25rem;
  4133. }
  4134. .card-body {
  4135. -ms-flex: 1 1 auto;
  4136. flex: 1 1 auto;
  4137. min-height: 1px;
  4138. padding: 1.25rem;
  4139. }
  4140. .card-title {
  4141. margin-bottom: 0.75rem;
  4142. }
  4143. .card-subtitle {
  4144. margin-top: -0.375rem;
  4145. margin-bottom: 0;
  4146. }
  4147. .card-text:last-child {
  4148. margin-bottom: 0;
  4149. }
  4150. .card-link:hover {
  4151. text-decoration: none;
  4152. }
  4153. .card-link + .card-link {
  4154. margin-left: 1.25rem;
  4155. }
  4156. .card-header {
  4157. padding: 0.75rem 1.25rem;
  4158. margin-bottom: 0;
  4159. background-color: rgba(0, 0, 0, 0.03);
  4160. border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  4161. }
  4162. .card-header:first-child {
  4163. border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
  4164. }
  4165. .card-header + .list-group .list-group-item:first-child {
  4166. border-top: 0;
  4167. }
  4168. .card-footer {
  4169. padding: 0.75rem 1.25rem;
  4170. background-color: rgba(0, 0, 0, 0.03);
  4171. border-top: 1px solid rgba(0, 0, 0, 0.125);
  4172. }
  4173. .card-footer:last-child {
  4174. border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
  4175. }
  4176. .card-header-tabs {
  4177. margin-right: -0.625rem;
  4178. margin-bottom: -0.75rem;
  4179. margin-left: -0.625rem;
  4180. border-bottom: 0;
  4181. }
  4182. .card-header-pills {
  4183. margin-right: -0.625rem;
  4184. margin-left: -0.625rem;
  4185. }
  4186. .card-img-overlay {
  4187. position: absolute;
  4188. top: 0;
  4189. right: 0;
  4190. bottom: 0;
  4191. left: 0;
  4192. padding: 1.25rem;
  4193. }
  4194. .card-img,
  4195. .card-img-top,
  4196. .card-img-bottom {
  4197. -ms-flex-negative: 0;
  4198. flex-shrink: 0;
  4199. width: 100%;
  4200. }
  4201. .card-img,
  4202. .card-img-top {
  4203. border-top-left-radius: calc(0.25rem - 1px);
  4204. border-top-right-radius: calc(0.25rem - 1px);
  4205. }
  4206. .card-img,
  4207. .card-img-bottom {
  4208. border-bottom-right-radius: calc(0.25rem - 1px);
  4209. border-bottom-left-radius: calc(0.25rem - 1px);
  4210. }
  4211. .card-deck .card {
  4212. margin-bottom: 15px;
  4213. }
  4214. @media (min-width: 576px) {
  4215. .card-deck {
  4216. display: -ms-flexbox;
  4217. display: flex;
  4218. -ms-flex-flow: row wrap;
  4219. flex-flow: row wrap;
  4220. margin-right: -15px;
  4221. margin-left: -15px;
  4222. }
  4223. .card-deck .card {
  4224. -ms-flex: 1 0 0%;
  4225. flex: 1 0 0%;
  4226. margin-right: 15px;
  4227. margin-bottom: 0;
  4228. margin-left: 15px;
  4229. }
  4230. }
  4231. .card-group > .card {
  4232. margin-bottom: 15px;
  4233. }
  4234. @media (min-width: 576px) {
  4235. .card-group {
  4236. display: -ms-flexbox;
  4237. display: flex;
  4238. -ms-flex-flow: row wrap;
  4239. flex-flow: row wrap;
  4240. }
  4241. .card-group > .card {
  4242. -ms-flex: 1 0 0%;
  4243. flex: 1 0 0%;
  4244. margin-bottom: 0;
  4245. }
  4246. .card-group > .card + .card {
  4247. margin-left: 0;
  4248. border-left: 0;
  4249. }
  4250. .card-group > .card:not(:last-child) {
  4251. border-top-right-radius: 0;
  4252. border-bottom-right-radius: 0;
  4253. }
  4254. .card-group > .card:not(:last-child) .card-img-top,
  4255. .card-group > .card:not(:last-child) .card-header {
  4256. border-top-right-radius: 0;
  4257. }
  4258. .card-group > .card:not(:last-child) .card-img-bottom,
  4259. .card-group > .card:not(:last-child) .card-footer {
  4260. border-bottom-right-radius: 0;
  4261. }
  4262. .card-group > .card:not(:first-child) {
  4263. border-top-left-radius: 0;
  4264. border-bottom-left-radius: 0;
  4265. }
  4266. .card-group > .card:not(:first-child) .card-img-top,
  4267. .card-group > .card:not(:first-child) .card-header {
  4268. border-top-left-radius: 0;
  4269. }
  4270. .card-group > .card:not(:first-child) .card-img-bottom,
  4271. .card-group > .card:not(:first-child) .card-footer {
  4272. border-bottom-left-radius: 0;
  4273. }
  4274. }
  4275. .card-columns .card {
  4276. margin-bottom: 0.75rem;
  4277. }
  4278. @media (min-width: 576px) {
  4279. .card-columns {
  4280. -webkit-column-count: 3;
  4281. -moz-column-count: 3;
  4282. column-count: 3;
  4283. -webkit-column-gap: 1.25rem;
  4284. -moz-column-gap: 1.25rem;
  4285. column-gap: 1.25rem;
  4286. orphans: 1;
  4287. widows: 1;
  4288. }
  4289. .card-columns .card {
  4290. display: inline-block;
  4291. width: 100%;
  4292. }
  4293. }
  4294. .accordion > .card {
  4295. overflow: hidden;
  4296. }
  4297. .accordion > .card:not(:last-of-type) {
  4298. border-bottom: 0;
  4299. border-bottom-right-radius: 0;
  4300. border-bottom-left-radius: 0;
  4301. }
  4302. .accordion > .card:not(:first-of-type) {
  4303. border-top-left-radius: 0;
  4304. border-top-right-radius: 0;
  4305. }
  4306. .accordion > .card > .card-header {
  4307. border-radius: 0;
  4308. margin-bottom: -1px;
  4309. }
  4310. .breadcrumb {
  4311. display: -ms-flexbox;
  4312. display: flex;
  4313. -ms-flex-wrap: wrap;
  4314. flex-wrap: wrap;
  4315. padding: 0.75rem 1rem;
  4316. margin-bottom: 1rem;
  4317. list-style: none;
  4318. background-color: #e9ecef;
  4319. border-radius: 0.25rem;
  4320. }
  4321. .breadcrumb-item + .breadcrumb-item {
  4322. padding-left: 0.5rem;
  4323. }
  4324. .breadcrumb-item + .breadcrumb-item::before {
  4325. display: inline-block;
  4326. padding-right: 0.5rem;
  4327. color: #6c757d;
  4328. content: "/";
  4329. }
  4330. .breadcrumb-item + .breadcrumb-item:hover::before {
  4331. text-decoration: underline;
  4332. }
  4333. .breadcrumb-item + .breadcrumb-item:hover::before {
  4334. text-decoration: none;
  4335. }
  4336. .breadcrumb-item.active {
  4337. color: #6c757d;
  4338. }
  4339. .pagination {
  4340. display: -ms-flexbox;
  4341. display: flex;
  4342. padding-left: 0;
  4343. list-style: none;
  4344. border-radius: 0.25rem;
  4345. }
  4346. .page-link {
  4347. position: relative;
  4348. display: block;
  4349. padding: 0.5rem 0.75rem;
  4350. margin-left: -1px;
  4351. line-height: 1.25;
  4352. color: #007bff;
  4353. background-color: #fff;
  4354. border: 1px solid #dee2e6;
  4355. }
  4356. .page-link:hover {
  4357. z-index: 2;
  4358. color: #0056b3;
  4359. text-decoration: none;
  4360. background-color: #e9ecef;
  4361. border-color: #dee2e6;
  4362. }
  4363. .page-link:focus {
  4364. z-index: 3;
  4365. outline: 0;
  4366. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  4367. }
  4368. .page-item:first-child .page-link {
  4369. margin-left: 0;
  4370. border-top-left-radius: 0.25rem;
  4371. border-bottom-left-radius: 0.25rem;
  4372. }
  4373. .page-item:last-child .page-link {
  4374. border-top-right-radius: 0.25rem;
  4375. border-bottom-right-radius: 0.25rem;
  4376. }
  4377. .page-item.active .page-link {
  4378. z-index: 3;
  4379. color: #fff;
  4380. background-color: #007bff;
  4381. border-color: #007bff;
  4382. }
  4383. .page-item.disabled .page-link {
  4384. color: #6c757d;
  4385. pointer-events: none;
  4386. cursor: auto;
  4387. background-color: #fff;
  4388. border-color: #dee2e6;
  4389. }
  4390. .pagination-lg .page-link {
  4391. padding: 0.75rem 1.5rem;
  4392. font-size: 1.25rem;
  4393. line-height: 1.5;
  4394. }
  4395. .pagination-lg .page-item:first-child .page-link {
  4396. border-top-left-radius: 0.3rem;
  4397. border-bottom-left-radius: 0.3rem;
  4398. }
  4399. .pagination-lg .page-item:last-child .page-link {
  4400. border-top-right-radius: 0.3rem;
  4401. border-bottom-right-radius: 0.3rem;
  4402. }
  4403. .pagination-sm .page-link {
  4404. padding: 0.25rem 0.5rem;
  4405. font-size: 0.875rem;
  4406. line-height: 1.5;
  4407. }
  4408. .pagination-sm .page-item:first-child .page-link {
  4409. border-top-left-radius: 0.2rem;
  4410. border-bottom-left-radius: 0.2rem;
  4411. }
  4412. .pagination-sm .page-item:last-child .page-link {
  4413. border-top-right-radius: 0.2rem;
  4414. border-bottom-right-radius: 0.2rem;
  4415. }
  4416. .badge {
  4417. display: inline-block;
  4418. padding: 0.25em 0.4em;
  4419. font-size: 75%;
  4420. font-weight: 700;
  4421. line-height: 1;
  4422. text-align: center;
  4423. white-space: nowrap;
  4424. vertical-align: baseline;
  4425. border-radius: 0.25rem;
  4426. 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;
  4427. }
  4428. @media (prefers-reduced-motion: reduce) {
  4429. .badge {
  4430. transition: none;
  4431. }
  4432. }
  4433. a.badge:hover, a.badge:focus {
  4434. text-decoration: none;
  4435. }
  4436. .badge:empty {
  4437. display: none;
  4438. }
  4439. .btn .badge {
  4440. position: relative;
  4441. top: -1px;
  4442. }
  4443. .badge-pill {
  4444. padding-right: 0.6em;
  4445. padding-left: 0.6em;
  4446. border-radius: 10rem;
  4447. }
  4448. .badge-primary {
  4449. color: #fff;
  4450. background-color: #007bff;
  4451. }
  4452. a.badge-primary:hover, a.badge-primary:focus {
  4453. color: #fff;
  4454. background-color: #0062cc;
  4455. }
  4456. a.badge-primary:focus, a.badge-primary.focus {
  4457. outline: 0;
  4458. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
  4459. }
  4460. .badge-secondary {
  4461. color: #fff;
  4462. background-color: #6c757d;
  4463. }
  4464. a.badge-secondary:hover, a.badge-secondary:focus {
  4465. color: #fff;
  4466. background-color: #545b62;
  4467. }
  4468. a.badge-secondary:focus, a.badge-secondary.focus {
  4469. outline: 0;
  4470. box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
  4471. }
  4472. .badge-success {
  4473. color: #fff;
  4474. background-color: #28a745;
  4475. }
  4476. a.badge-success:hover, a.badge-success:focus {
  4477. color: #fff;
  4478. background-color: #1e7e34;
  4479. }
  4480. a.badge-success:focus, a.badge-success.focus {
  4481. outline: 0;
  4482. box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
  4483. }
  4484. .badge-info {
  4485. color: #fff;
  4486. background-color: #17a2b8;
  4487. }
  4488. a.badge-info:hover, a.badge-info:focus {
  4489. color: #fff;
  4490. background-color: #117a8b;
  4491. }
  4492. a.badge-info:focus, a.badge-info.focus {
  4493. outline: 0;
  4494. box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
  4495. }
  4496. .badge-warning {
  4497. color: #212529;
  4498. background-color: #ffc107;
  4499. }
  4500. a.badge-warning:hover, a.badge-warning:focus {
  4501. color: #212529;
  4502. background-color: #d39e00;
  4503. }
  4504. a.badge-warning:focus, a.badge-warning.focus {
  4505. outline: 0;
  4506. box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
  4507. }
  4508. .badge-danger {
  4509. color: #fff;
  4510. background-color: #dc3545;
  4511. }
  4512. a.badge-danger:hover, a.badge-danger:focus {
  4513. color: #fff;
  4514. background-color: #bd2130;
  4515. }
  4516. a.badge-danger:focus, a.badge-danger.focus {
  4517. outline: 0;
  4518. box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
  4519. }
  4520. .badge-light {
  4521. color: #212529;
  4522. background-color: #f8f9fa;
  4523. }
  4524. a.badge-light:hover, a.badge-light:focus {
  4525. color: #212529;
  4526. background-color: #dae0e5;
  4527. }
  4528. a.badge-light:focus, a.badge-light.focus {
  4529. outline: 0;
  4530. box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
  4531. }
  4532. .badge-dark {
  4533. color: #fff;
  4534. background-color: #343a40;
  4535. }
  4536. a.badge-dark:hover, a.badge-dark:focus {
  4537. color: #fff;
  4538. background-color: #1d2124;
  4539. }
  4540. a.badge-dark:focus, a.badge-dark.focus {
  4541. outline: 0;
  4542. box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
  4543. }
  4544. .jumbotron {
  4545. padding: 2rem 1rem;
  4546. margin-bottom: 2rem;
  4547. background-color: #e9ecef;
  4548. border-radius: 0.3rem;
  4549. }
  4550. @media (min-width: 576px) {
  4551. .jumbotron {
  4552. padding: 4rem 2rem;
  4553. }
  4554. }
  4555. .jumbotron-fluid {
  4556. padding-right: 0;
  4557. padding-left: 0;
  4558. border-radius: 0;
  4559. }
  4560. .alert {
  4561. position: relative;
  4562. padding: 0.75rem 1.25rem;
  4563. margin-bottom: 1rem;
  4564. border: 1px solid transparent;
  4565. border-radius: 0.25rem;
  4566. }
  4567. .alert-heading {
  4568. color: inherit;
  4569. }
  4570. .alert-link {
  4571. font-weight: 700;
  4572. }
  4573. .alert-dismissible {
  4574. padding-right: 4rem;
  4575. }
  4576. .alert-dismissible .close {
  4577. position: absolute;
  4578. top: 0;
  4579. right: 0;
  4580. padding: 0.75rem 1.25rem;
  4581. color: inherit;
  4582. }
  4583. .alert-primary {
  4584. color: #004085;
  4585. background-color: #cce5ff;
  4586. border-color: #b8daff;
  4587. }
  4588. .alert-primary hr {
  4589. border-top-color: #9fcdff;
  4590. }
  4591. .alert-primary .alert-link {
  4592. color: #002752;
  4593. }
  4594. .alert-secondary {
  4595. color: #383d41;
  4596. background-color: #e2e3e5;
  4597. border-color: #d6d8db;
  4598. }
  4599. .alert-secondary hr {
  4600. border-top-color: #c8cbcf;
  4601. }
  4602. .alert-secondary .alert-link {
  4603. color: #202326;
  4604. }
  4605. .alert-success {
  4606. color: #155724;
  4607. background-color: #d4edda;
  4608. border-color: #c3e6cb;
  4609. }
  4610. .alert-success hr {
  4611. border-top-color: #b1dfbb;
  4612. }
  4613. .alert-success .alert-link {
  4614. color: #0b2e13;
  4615. }
  4616. .alert-info {
  4617. color: #0c5460;
  4618. background-color: #d1ecf1;
  4619. border-color: #bee5eb;
  4620. }
  4621. .alert-info hr {
  4622. border-top-color: #abdde5;
  4623. }
  4624. .alert-info .alert-link {
  4625. color: #062c33;
  4626. }
  4627. .alert-warning {
  4628. color: #856404;
  4629. background-color: #fff3cd;
  4630. border-color: #ffeeba;
  4631. }
  4632. .alert-warning hr {
  4633. border-top-color: #ffe8a1;
  4634. }
  4635. .alert-warning .alert-link {
  4636. color: #533f03;
  4637. }
  4638. .alert-danger {
  4639. color: #721c24;
  4640. background-color: #f8d7da;
  4641. border-color: #f5c6cb;
  4642. }
  4643. .alert-danger hr {
  4644. border-top-color: #f1b0b7;
  4645. }
  4646. .alert-danger .alert-link {
  4647. color: #491217;
  4648. }
  4649. .alert-light {
  4650. color: #818182;
  4651. background-color: #fefefe;
  4652. border-color: #fdfdfe;
  4653. }
  4654. .alert-light hr {
  4655. border-top-color: #ececf6;
  4656. }
  4657. .alert-light .alert-link {
  4658. color: #686868;
  4659. }
  4660. .alert-dark {
  4661. color: #1b1e21;
  4662. background-color: #d6d8d9;
  4663. border-color: #c6c8ca;
  4664. }
  4665. .alert-dark hr {
  4666. border-top-color: #b9bbbe;
  4667. }
  4668. .alert-dark .alert-link {
  4669. color: #040505;
  4670. }
  4671. @-webkit-keyframes progress-bar-stripes {
  4672. from {
  4673. background-position: 1rem 0;
  4674. }
  4675. to {
  4676. background-position: 0 0;
  4677. }
  4678. }
  4679. @keyframes progress-bar-stripes {
  4680. from {
  4681. background-position: 1rem 0;
  4682. }
  4683. to {
  4684. background-position: 0 0;
  4685. }
  4686. }
  4687. .progress {
  4688. display: -ms-flexbox;
  4689. display: flex;
  4690. height: 1rem;
  4691. overflow: hidden;
  4692. font-size: 0.75rem;
  4693. background-color: #e9ecef;
  4694. border-radius: 0.25rem;
  4695. }
  4696. .progress-bar {
  4697. display: -ms-flexbox;
  4698. display: flex;
  4699. -ms-flex-direction: column;
  4700. flex-direction: column;
  4701. -ms-flex-pack: center;
  4702. justify-content: center;
  4703. overflow: hidden;
  4704. color: #fff;
  4705. text-align: center;
  4706. white-space: nowrap;
  4707. background-color: #007bff;
  4708. transition: width 0.6s ease;
  4709. }
  4710. @media (prefers-reduced-motion: reduce) {
  4711. .progress-bar {
  4712. transition: none;
  4713. }
  4714. }
  4715. .progress-bar-striped {
  4716. 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);
  4717. background-size: 1rem 1rem;
  4718. }
  4719. .progress-bar-animated {
  4720. -webkit-animation: progress-bar-stripes 1s linear infinite;
  4721. animation: progress-bar-stripes 1s linear infinite;
  4722. }
  4723. @media (prefers-reduced-motion: reduce) {
  4724. .progress-bar-animated {
  4725. -webkit-animation: none;
  4726. animation: none;
  4727. }
  4728. }
  4729. .media {
  4730. display: -ms-flexbox;
  4731. display: flex;
  4732. -ms-flex-align: start;
  4733. align-items: flex-start;
  4734. }
  4735. .media-body {
  4736. -ms-flex: 1;
  4737. flex: 1;
  4738. }
  4739. .list-group {
  4740. display: -ms-flexbox;
  4741. display: flex;
  4742. -ms-flex-direction: column;
  4743. flex-direction: column;
  4744. padding-left: 0;
  4745. margin-bottom: 0;
  4746. }
  4747. .list-group-item-action {
  4748. width: 100%;
  4749. color: #495057;
  4750. text-align: inherit;
  4751. }
  4752. .list-group-item-action:hover, .list-group-item-action:focus {
  4753. z-index: 1;
  4754. color: #495057;
  4755. text-decoration: none;
  4756. background-color: #f8f9fa;
  4757. }
  4758. .list-group-item-action:active {
  4759. color: #212529;
  4760. background-color: #e9ecef;
  4761. }
  4762. .list-group-item {
  4763. position: relative;
  4764. display: block;
  4765. padding: 0.75rem 1.25rem;
  4766. background-color: #fff;
  4767. border: 1px solid rgba(0, 0, 0, 0.125);
  4768. }
  4769. .list-group-item:first-child {
  4770. border-top-left-radius: 0.25rem;
  4771. border-top-right-radius: 0.25rem;
  4772. }
  4773. .list-group-item:last-child {
  4774. border-bottom-right-radius: 0.25rem;
  4775. border-bottom-left-radius: 0.25rem;
  4776. }
  4777. .list-group-item.disabled, .list-group-item:disabled {
  4778. color: #6c757d;
  4779. pointer-events: none;
  4780. background-color: #fff;
  4781. }
  4782. .list-group-item.active {
  4783. z-index: 2;
  4784. color: #fff;
  4785. background-color: #007bff;
  4786. border-color: #007bff;
  4787. }
  4788. .list-group-item + .list-group-item {
  4789. border-top-width: 0;
  4790. }
  4791. .list-group-item + .list-group-item.active {
  4792. margin-top: -1px;
  4793. border-top-width: 1px;
  4794. }
  4795. .list-group-horizontal {
  4796. -ms-flex-direction: row;
  4797. flex-direction: row;
  4798. }
  4799. .list-group-horizontal .list-group-item:first-child {
  4800. border-bottom-left-radius: 0.25rem;
  4801. border-top-right-radius: 0;
  4802. }
  4803. .list-group-horizontal .list-group-item:last-child {
  4804. border-top-right-radius: 0.25rem;
  4805. border-bottom-left-radius: 0;
  4806. }
  4807. .list-group-horizontal .list-group-item.active {
  4808. margin-top: 0;
  4809. }
  4810. .list-group-horizontal .list-group-item + .list-group-item {
  4811. border-top-width: 1px;
  4812. border-left-width: 0;
  4813. }
  4814. .list-group-horizontal .list-group-item + .list-group-item.active {
  4815. margin-left: -1px;
  4816. border-left-width: 1px;
  4817. }
  4818. @media (min-width: 576px) {
  4819. .list-group-horizontal-sm {
  4820. -ms-flex-direction: row;
  4821. flex-direction: row;
  4822. }
  4823. .list-group-horizontal-sm .list-group-item:first-child {
  4824. border-bottom-left-radius: 0.25rem;
  4825. border-top-right-radius: 0;
  4826. }
  4827. .list-group-horizontal-sm .list-group-item:last-child {
  4828. border-top-right-radius: 0.25rem;
  4829. border-bottom-left-radius: 0;
  4830. }
  4831. .list-group-horizontal-sm .list-group-item.active {
  4832. margin-top: 0;
  4833. }
  4834. .list-group-horizontal-sm .list-group-item + .list-group-item {
  4835. border-top-width: 1px;
  4836. border-left-width: 0;
  4837. }
  4838. .list-group-horizontal-sm .list-group-item + .list-group-item.active {
  4839. margin-left: -1px;
  4840. border-left-width: 1px;
  4841. }
  4842. }
  4843. @media (min-width: 768px) {
  4844. .list-group-horizontal-md {
  4845. -ms-flex-direction: row;
  4846. flex-direction: row;
  4847. }
  4848. .list-group-horizontal-md .list-group-item:first-child {
  4849. border-bottom-left-radius: 0.25rem;
  4850. border-top-right-radius: 0;
  4851. }
  4852. .list-group-horizontal-md .list-group-item:last-child {
  4853. border-top-right-radius: 0.25rem;
  4854. border-bottom-left-radius: 0;
  4855. }
  4856. .list-group-horizontal-md .list-group-item.active {
  4857. margin-top: 0;
  4858. }
  4859. .list-group-horizontal-md .list-group-item + .list-group-item {
  4860. border-top-width: 1px;
  4861. border-left-width: 0;
  4862. }
  4863. .list-group-horizontal-md .list-group-item + .list-group-item.active {
  4864. margin-left: -1px;
  4865. border-left-width: 1px;
  4866. }
  4867. }
  4868. @media (min-width: 992px) {
  4869. .list-group-horizontal-lg {
  4870. -ms-flex-direction: row;
  4871. flex-direction: row;
  4872. }
  4873. .list-group-horizontal-lg .list-group-item:first-child {
  4874. border-bottom-left-radius: 0.25rem;
  4875. border-top-right-radius: 0;
  4876. }
  4877. .list-group-horizontal-lg .list-group-item:last-child {
  4878. border-top-right-radius: 0.25rem;
  4879. border-bottom-left-radius: 0;
  4880. }
  4881. .list-group-horizontal-lg .list-group-item.active {
  4882. margin-top: 0;
  4883. }
  4884. .list-group-horizontal-lg .list-group-item + .list-group-item {
  4885. border-top-width: 1px;
  4886. border-left-width: 0;
  4887. }
  4888. .list-group-horizontal-lg .list-group-item + .list-group-item.active {
  4889. margin-left: -1px;
  4890. border-left-width: 1px;
  4891. }
  4892. }
  4893. @media (min-width: 1200px) {
  4894. .list-group-horizontal-xl {
  4895. -ms-flex-direction: row;
  4896. flex-direction: row;
  4897. }
  4898. .list-group-horizontal-xl .list-group-item:first-child {
  4899. border-bottom-left-radius: 0.25rem;
  4900. border-top-right-radius: 0;
  4901. }
  4902. .list-group-horizontal-xl .list-group-item:last-child {
  4903. border-top-right-radius: 0.25rem;
  4904. border-bottom-left-radius: 0;
  4905. }
  4906. .list-group-horizontal-xl .list-group-item.active {
  4907. margin-top: 0;
  4908. }
  4909. .list-group-horizontal-xl .list-group-item + .list-group-item {
  4910. border-top-width: 1px;
  4911. border-left-width: 0;
  4912. }
  4913. .list-group-horizontal-xl .list-group-item + .list-group-item.active {
  4914. margin-left: -1px;
  4915. border-left-width: 1px;
  4916. }
  4917. }
  4918. .list-group-flush .list-group-item {
  4919. border-right-width: 0;
  4920. border-left-width: 0;
  4921. border-radius: 0;
  4922. }
  4923. .list-group-flush .list-group-item:first-child {
  4924. border-top-width: 0;
  4925. }
  4926. .list-group-flush:last-child .list-group-item:last-child {
  4927. border-bottom-width: 0;
  4928. }
  4929. .list-group-item-primary {
  4930. color: #004085;
  4931. background-color: #b8daff;
  4932. }
  4933. .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  4934. color: #004085;
  4935. background-color: #9fcdff;
  4936. }
  4937. .list-group-item-primary.list-group-item-action.active {
  4938. color: #fff;
  4939. background-color: #004085;
  4940. border-color: #004085;
  4941. }
  4942. .list-group-item-secondary {
  4943. color: #383d41;
  4944. background-color: #d6d8db;
  4945. }
  4946. .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  4947. color: #383d41;
  4948. background-color: #c8cbcf;
  4949. }
  4950. .list-group-item-secondary.list-group-item-action.active {
  4951. color: #fff;
  4952. background-color: #383d41;
  4953. border-color: #383d41;
  4954. }
  4955. .list-group-item-success {
  4956. color: #155724;
  4957. background-color: #c3e6cb;
  4958. }
  4959. .list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  4960. color: #155724;
  4961. background-color: #b1dfbb;
  4962. }
  4963. .list-group-item-success.list-group-item-action.active {
  4964. color: #fff;
  4965. background-color: #155724;
  4966. border-color: #155724;
  4967. }
  4968. .list-group-item-info {
  4969. color: #0c5460;
  4970. background-color: #bee5eb;
  4971. }
  4972. .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  4973. color: #0c5460;
  4974. background-color: #abdde5;
  4975. }
  4976. .list-group-item-info.list-group-item-action.active {
  4977. color: #fff;
  4978. background-color: #0c5460;
  4979. border-color: #0c5460;
  4980. }
  4981. .list-group-item-warning {
  4982. color: #856404;
  4983. background-color: #ffeeba;
  4984. }
  4985. .list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  4986. color: #856404;
  4987. background-color: #ffe8a1;
  4988. }
  4989. .list-group-item-warning.list-group-item-action.active {
  4990. color: #fff;
  4991. background-color: #856404;
  4992. border-color: #856404;
  4993. }
  4994. .list-group-item-danger {
  4995. color: #721c24;
  4996. background-color: #f5c6cb;
  4997. }
  4998. .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  4999. color: #721c24;
  5000. background-color: #f1b0b7;
  5001. }
  5002. .list-group-item-danger.list-group-item-action.active {
  5003. color: #fff;
  5004. background-color: #721c24;
  5005. border-color: #721c24;
  5006. }
  5007. .list-group-item-light {
  5008. color: #818182;
  5009. background-color: #fdfdfe;
  5010. }
  5011. .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  5012. color: #818182;
  5013. background-color: #ececf6;
  5014. }
  5015. .list-group-item-light.list-group-item-action.active {
  5016. color: #fff;
  5017. background-color: #818182;
  5018. border-color: #818182;
  5019. }
  5020. .list-group-item-dark {
  5021. color: #1b1e21;
  5022. background-color: #c6c8ca;
  5023. }
  5024. .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  5025. color: #1b1e21;
  5026. background-color: #b9bbbe;
  5027. }
  5028. .list-group-item-dark.list-group-item-action.active {
  5029. color: #fff;
  5030. background-color: #1b1e21;
  5031. border-color: #1b1e21;
  5032. }
  5033. .close {
  5034. float: right;
  5035. font-size: 1.5rem;
  5036. font-weight: 700;
  5037. line-height: 1;
  5038. color: #000;
  5039. text-shadow: 0 1px 0 #fff;
  5040. opacity: .5;
  5041. }
  5042. .close:hover {
  5043. color: #000;
  5044. text-decoration: none;
  5045. }
  5046. .close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
  5047. opacity: .75;
  5048. }
  5049. button.close {
  5050. padding: 0;
  5051. background-color: transparent;
  5052. border: 0;
  5053. -webkit-appearance: none;
  5054. -moz-appearance: none;
  5055. appearance: none;
  5056. }
  5057. a.close.disabled {
  5058. pointer-events: none;
  5059. }
  5060. .toast {
  5061. max-width: 350px;
  5062. overflow: hidden;
  5063. font-size: 0.875rem;
  5064. background-color: rgba(255, 255, 255, 0.85);
  5065. background-clip: padding-box;
  5066. border: 1px solid rgba(0, 0, 0, 0.1);
  5067. box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  5068. -webkit-backdrop-filter: blur(10px);
  5069. backdrop-filter: blur(10px);
  5070. opacity: 0;
  5071. border-radius: 0.25rem;
  5072. }
  5073. .toast:not(:last-child) {
  5074. margin-bottom: 0.75rem;
  5075. }
  5076. .toast.showing {
  5077. opacity: 1;
  5078. }
  5079. .toast.show {
  5080. display: block;
  5081. opacity: 1;
  5082. }
  5083. .toast.hide {
  5084. display: none;
  5085. }
  5086. .toast-header {
  5087. display: -ms-flexbox;
  5088. display: flex;
  5089. -ms-flex-align: center;
  5090. align-items: center;
  5091. padding: 0.25rem 0.75rem;
  5092. color: #6c757d;
  5093. background-color: rgba(255, 255, 255, 0.85);
  5094. background-clip: padding-box;
  5095. border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  5096. }
  5097. .toast-body {
  5098. padding: 0.75rem;
  5099. }
  5100. .modal-open {
  5101. overflow: hidden;
  5102. }
  5103. .modal-open .modal {
  5104. overflow-x: hidden;
  5105. overflow-y: auto;
  5106. }
  5107. .modal {
  5108. position: fixed;
  5109. top: 0;
  5110. left: 0;
  5111. z-index: 1050;
  5112. display: none;
  5113. width: 100%;
  5114. height: 100%;
  5115. overflow: hidden;
  5116. outline: 0;
  5117. }
  5118. .modal-dialog {
  5119. position: relative;
  5120. width: auto;
  5121. margin: 0.5rem;
  5122. pointer-events: none;
  5123. }
  5124. .modal.fade .modal-dialog {
  5125. transition: -webkit-transform 0.3s ease-out;
  5126. transition: transform 0.3s ease-out;
  5127. transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  5128. -webkit-transform: translate(0, -50px);
  5129. transform: translate(0, -50px);
  5130. }
  5131. @media (prefers-reduced-motion: reduce) {
  5132. .modal.fade .modal-dialog {
  5133. transition: none;
  5134. }
  5135. }
  5136. .modal.show .modal-dialog {
  5137. -webkit-transform: none;
  5138. transform: none;
  5139. }
  5140. .modal.modal-static .modal-dialog {
  5141. -webkit-transform: scale(1.02);
  5142. transform: scale(1.02);
  5143. }
  5144. .modal-dialog-scrollable {
  5145. display: -ms-flexbox;
  5146. display: flex;
  5147. max-height: calc(100% - 1rem);
  5148. }
  5149. .modal-dialog-scrollable .modal-content {
  5150. max-height: calc(100vh - 1rem);
  5151. overflow: hidden;
  5152. }
  5153. .modal-dialog-scrollable .modal-header,
  5154. .modal-dialog-scrollable .modal-footer {
  5155. -ms-flex-negative: 0;
  5156. flex-shrink: 0;
  5157. }
  5158. .modal-dialog-scrollable .modal-body {
  5159. overflow-y: auto;
  5160. }
  5161. .modal-dialog-centered {
  5162. display: -ms-flexbox;
  5163. display: flex;
  5164. -ms-flex-align: center;
  5165. align-items: center;
  5166. min-height: calc(100% - 1rem);
  5167. }
  5168. .modal-dialog-centered::before {
  5169. display: block;
  5170. height: calc(100vh - 1rem);
  5171. content: "";
  5172. }
  5173. .modal-dialog-centered.modal-dialog-scrollable {
  5174. -ms-flex-direction: column;
  5175. flex-direction: column;
  5176. -ms-flex-pack: center;
  5177. justify-content: center;
  5178. height: 100%;
  5179. }
  5180. .modal-dialog-centered.modal-dialog-scrollable .modal-content {
  5181. max-height: none;
  5182. }
  5183. .modal-dialog-centered.modal-dialog-scrollable::before {
  5184. content: none;
  5185. }
  5186. .modal-content {
  5187. position: relative;
  5188. display: -ms-flexbox;
  5189. display: flex;
  5190. -ms-flex-direction: column;
  5191. flex-direction: column;
  5192. width: 100%;
  5193. pointer-events: auto;
  5194. background-color: #fff;
  5195. background-clip: padding-box;
  5196. border: 1px solid rgba(0, 0, 0, 0.2);
  5197. border-radius: 0.3rem;
  5198. outline: 0;
  5199. }
  5200. .modal-backdrop {
  5201. position: fixed;
  5202. top: 0;
  5203. left: 0;
  5204. z-index: 1040;
  5205. width: 100vw;
  5206. height: 100vh;
  5207. background-color: #000;
  5208. }
  5209. .modal-backdrop.fade {
  5210. opacity: 0;
  5211. }
  5212. .modal-backdrop.show {
  5213. opacity: 0.5;
  5214. }
  5215. .modal-header {
  5216. display: -ms-flexbox;
  5217. display: flex;
  5218. -ms-flex-align: start;
  5219. align-items: flex-start;
  5220. -ms-flex-pack: justify;
  5221. justify-content: space-between;
  5222. padding: 1rem 1rem;
  5223. border-bottom: 1px solid #dee2e6;
  5224. border-top-left-radius: calc(0.3rem - 1px);
  5225. border-top-right-radius: calc(0.3rem - 1px);
  5226. }
  5227. .modal-header .close {
  5228. padding: 1rem 1rem;
  5229. margin: -1rem -1rem -1rem auto;
  5230. }
  5231. .modal-title {
  5232. margin-bottom: 0;
  5233. line-height: 1.5;
  5234. }
  5235. .modal-body {
  5236. position: relative;
  5237. -ms-flex: 1 1 auto;
  5238. flex: 1 1 auto;
  5239. padding: 1rem;
  5240. }
  5241. .modal-footer {
  5242. display: -ms-flexbox;
  5243. display: flex;
  5244. -ms-flex-wrap: wrap;
  5245. flex-wrap: wrap;
  5246. -ms-flex-align: center;
  5247. align-items: center;
  5248. -ms-flex-pack: end;
  5249. justify-content: flex-end;
  5250. padding: 0.75rem;
  5251. border-top: 1px solid #dee2e6;
  5252. border-bottom-right-radius: calc(0.3rem - 1px);
  5253. border-bottom-left-radius: calc(0.3rem - 1px);
  5254. }
  5255. .modal-footer > * {
  5256. margin: 0.25rem;
  5257. }
  5258. .modal-scrollbar-measure {
  5259. position: absolute;
  5260. top: -9999px;
  5261. width: 50px;
  5262. height: 50px;
  5263. overflow: scroll;
  5264. }
  5265. @media (min-width: 576px) {
  5266. .modal-dialog {
  5267. max-width: 500px;
  5268. margin: 1.75rem auto;
  5269. }
  5270. .modal-dialog-scrollable {
  5271. max-height: calc(100% - 3.5rem);
  5272. }
  5273. .modal-dialog-scrollable .modal-content {
  5274. max-height: calc(100vh - 3.5rem);
  5275. }
  5276. .modal-dialog-centered {
  5277. min-height: calc(100% - 3.5rem);
  5278. }
  5279. .modal-dialog-centered::before {
  5280. height: calc(100vh - 3.5rem);
  5281. }
  5282. .modal-sm {
  5283. max-width: 300px;
  5284. }
  5285. }
  5286. @media (min-width: 992px) {
  5287. .modal-lg,
  5288. .modal-xl {
  5289. max-width: 800px;
  5290. }
  5291. }
  5292. @media (min-width: 1200px) {
  5293. .modal-xl {
  5294. max-width: 1140px;
  5295. }
  5296. }
  5297. .tooltip {
  5298. position: absolute;
  5299. z-index: 1070;
  5300. display: block;
  5301. margin: 0;
  5302. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  5303. font-style: normal;
  5304. font-weight: 400;
  5305. line-height: 1.5;
  5306. text-align: left;
  5307. text-align: start;
  5308. text-decoration: none;
  5309. text-shadow: none;
  5310. text-transform: none;
  5311. letter-spacing: normal;
  5312. word-break: normal;
  5313. word-spacing: normal;
  5314. white-space: normal;
  5315. line-break: auto;
  5316. font-size: 0.875rem;
  5317. word-wrap: break-word;
  5318. opacity: 0;
  5319. }
  5320. .tooltip.show {
  5321. opacity: 0.9;
  5322. }
  5323. .tooltip .arrow {
  5324. position: absolute;
  5325. display: block;
  5326. width: 0.8rem;
  5327. height: 0.4rem;
  5328. }
  5329. .tooltip .arrow::before {
  5330. position: absolute;
  5331. content: "";
  5332. border-color: transparent;
  5333. border-style: solid;
  5334. }
  5335. .bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] {
  5336. padding: 0.4rem 0;
  5337. }
  5338. .bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow {
  5339. bottom: 0;
  5340. }
  5341. .bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before {
  5342. top: 0;
  5343. border-width: 0.4rem 0.4rem 0;
  5344. border-top-color: #000;
  5345. }
  5346. .bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] {
  5347. padding: 0 0.4rem;
  5348. }
  5349. .bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow {
  5350. left: 0;
  5351. width: 0.4rem;
  5352. height: 0.8rem;
  5353. }
  5354. .bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before {
  5355. right: 0;
  5356. border-width: 0.4rem 0.4rem 0.4rem 0;
  5357. border-right-color: #000;
  5358. }
  5359. .bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] {
  5360. padding: 0.4rem 0;
  5361. }
  5362. .bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow {
  5363. top: 0;
  5364. }
  5365. .bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
  5366. bottom: 0;
  5367. border-width: 0 0.4rem 0.4rem;
  5368. border-bottom-color: #000;
  5369. }
  5370. .bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] {
  5371. padding: 0 0.4rem;
  5372. }
  5373. .bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow {
  5374. right: 0;
  5375. width: 0.4rem;
  5376. height: 0.8rem;
  5377. }
  5378. .bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before {
  5379. left: 0;
  5380. border-width: 0.4rem 0 0.4rem 0.4rem;
  5381. border-left-color: #000;
  5382. }
  5383. .tooltip-inner {
  5384. max-width: 200px;
  5385. padding: 0.25rem 0.5rem;
  5386. color: #fff;
  5387. text-align: center;
  5388. background-color: #000;
  5389. border-radius: 0.25rem;
  5390. }
  5391. .popover {
  5392. position: absolute;
  5393. top: 0;
  5394. left: 0;
  5395. z-index: 1060;
  5396. display: block;
  5397. max-width: 276px;
  5398. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  5399. font-style: normal;
  5400. font-weight: 400;
  5401. line-height: 1.5;
  5402. text-align: left;
  5403. text-align: start;
  5404. text-decoration: none;
  5405. text-shadow: none;
  5406. text-transform: none;
  5407. letter-spacing: normal;
  5408. word-break: normal;
  5409. word-spacing: normal;
  5410. white-space: normal;
  5411. line-break: auto;
  5412. font-size: 0.875rem;
  5413. word-wrap: break-word;
  5414. background-color: #fff;
  5415. background-clip: padding-box;
  5416. border: 1px solid rgba(0, 0, 0, 0.2);
  5417. border-radius: 0.3rem;
  5418. }
  5419. .popover .arrow {
  5420. position: absolute;
  5421. display: block;
  5422. width: 1rem;
  5423. height: 0.5rem;
  5424. margin: 0 0.3rem;
  5425. }
  5426. .popover .arrow::before, .popover .arrow::after {
  5427. position: absolute;
  5428. display: block;
  5429. content: "";
  5430. border-color: transparent;
  5431. border-style: solid;
  5432. }
  5433. .bs-popover-top, .bs-popover-auto[x-placement^="top"] {
  5434. margin-bottom: 0.5rem;
  5435. }
  5436. .bs-popover-top > .arrow, .bs-popover-auto[x-placement^="top"] > .arrow {
  5437. bottom: calc(-0.5rem - 1px);
  5438. }
  5439. .bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^="top"] > .arrow::before {
  5440. bottom: 0;
  5441. border-width: 0.5rem 0.5rem 0;
  5442. border-top-color: rgba(0, 0, 0, 0.25);
  5443. }
  5444. .bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^="top"] > .arrow::after {
  5445. bottom: 1px;
  5446. border-width: 0.5rem 0.5rem 0;
  5447. border-top-color: #fff;
  5448. }
  5449. .bs-popover-right, .bs-popover-auto[x-placement^="right"] {
  5450. margin-left: 0.5rem;
  5451. }
  5452. .bs-popover-right > .arrow, .bs-popover-auto[x-placement^="right"] > .arrow {
  5453. left: calc(-0.5rem - 1px);
  5454. width: 0.5rem;
  5455. height: 1rem;
  5456. margin: 0.3rem 0;
  5457. }
  5458. .bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^="right"] > .arrow::before {
  5459. left: 0;
  5460. border-width: 0.5rem 0.5rem 0.5rem 0;
  5461. border-right-color: rgba(0, 0, 0, 0.25);
  5462. }
  5463. .bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^="right"] > .arrow::after {
  5464. left: 1px;
  5465. border-width: 0.5rem 0.5rem 0.5rem 0;
  5466. border-right-color: #fff;
  5467. }
  5468. .bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] {
  5469. margin-top: 0.5rem;
  5470. }
  5471. .bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^="bottom"] > .arrow {
  5472. top: calc(-0.5rem - 1px);
  5473. }
  5474. .bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^="bottom"] > .arrow::before {
  5475. top: 0;
  5476. border-width: 0 0.5rem 0.5rem 0.5rem;
  5477. border-bottom-color: rgba(0, 0, 0, 0.25);
  5478. }
  5479. .bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^="bottom"] > .arrow::after {
  5480. top: 1px;
  5481. border-width: 0 0.5rem 0.5rem 0.5rem;
  5482. border-bottom-color: #fff;
  5483. }
  5484. .bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before {
  5485. position: absolute;
  5486. top: 0;
  5487. left: 50%;
  5488. display: block;
  5489. width: 1rem;
  5490. margin-left: -0.5rem;
  5491. content: "";
  5492. border-bottom: 1px solid #f7f7f7;
  5493. }
  5494. .bs-popover-left, .bs-popover-auto[x-placement^="left"] {
  5495. margin-right: 0.5rem;
  5496. }
  5497. .bs-popover-left > .arrow, .bs-popover-auto[x-placement^="left"] > .arrow {
  5498. right: calc(-0.5rem - 1px);
  5499. width: 0.5rem;
  5500. height: 1rem;
  5501. margin: 0.3rem 0;
  5502. }
  5503. .bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^="left"] > .arrow::before {
  5504. right: 0;
  5505. border-width: 0.5rem 0 0.5rem 0.5rem;
  5506. border-left-color: rgba(0, 0, 0, 0.25);
  5507. }
  5508. .bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^="left"] > .arrow::after {
  5509. right: 1px;
  5510. border-width: 0.5rem 0 0.5rem 0.5rem;
  5511. border-left-color: #fff;
  5512. }
  5513. .popover-header {
  5514. padding: 0.5rem 0.75rem;
  5515. margin-bottom: 0;
  5516. font-size: 1rem;
  5517. background-color: #f7f7f7;
  5518. border-bottom: 1px solid #ebebeb;
  5519. border-top-left-radius: calc(0.3rem - 1px);
  5520. border-top-right-radius: calc(0.3rem - 1px);
  5521. }
  5522. .popover-header:empty {
  5523. display: none;
  5524. }
  5525. .popover-body {
  5526. padding: 0.5rem 0.75rem;
  5527. color: #212529;
  5528. }
  5529. .carousel {
  5530. position: relative;
  5531. }
  5532. .carousel.pointer-event {
  5533. -ms-touch-action: pan-y;
  5534. touch-action: pan-y;
  5535. }
  5536. .carousel-inner {
  5537. position: relative;
  5538. width: 100%;
  5539. overflow: hidden;
  5540. }
  5541. .carousel-inner::after {
  5542. display: block;
  5543. clear: both;
  5544. content: "";
  5545. }
  5546. .carousel-item {
  5547. position: relative;
  5548. display: none;
  5549. float: left;
  5550. width: 100%;
  5551. margin-right: -100%;
  5552. -webkit-backface-visibility: hidden;
  5553. backface-visibility: hidden;
  5554. transition: -webkit-transform 0.6s ease-in-out;
  5555. transition: transform 0.6s ease-in-out;
  5556. transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
  5557. }
  5558. @media (prefers-reduced-motion: reduce) {
  5559. .carousel-item {
  5560. transition: none;
  5561. }
  5562. }
  5563. .carousel-item.active,
  5564. .carousel-item-next,
  5565. .carousel-item-prev {
  5566. display: block;
  5567. }
  5568. .carousel-item-next:not(.carousel-item-left),
  5569. .active.carousel-item-right {
  5570. -webkit-transform: translateX(100%);
  5571. transform: translateX(100%);
  5572. }
  5573. .carousel-item-prev:not(.carousel-item-right),
  5574. .active.carousel-item-left {
  5575. -webkit-transform: translateX(-100%);
  5576. transform: translateX(-100%);
  5577. }
  5578. .carousel-fade .carousel-item {
  5579. opacity: 0;
  5580. transition-property: opacity;
  5581. -webkit-transform: none;
  5582. transform: none;
  5583. }
  5584. .carousel-fade .carousel-item.active,
  5585. .carousel-fade .carousel-item-next.carousel-item-left,
  5586. .carousel-fade .carousel-item-prev.carousel-item-right {
  5587. z-index: 1;
  5588. opacity: 1;
  5589. }
  5590. .carousel-fade .active.carousel-item-left,
  5591. .carousel-fade .active.carousel-item-right {
  5592. z-index: 0;
  5593. opacity: 0;
  5594. transition: opacity 0s 0.6s;
  5595. }
  5596. @media (prefers-reduced-motion: reduce) {
  5597. .carousel-fade .active.carousel-item-left,
  5598. .carousel-fade .active.carousel-item-right {
  5599. transition: none;
  5600. }
  5601. }
  5602. .carousel-control-prev,
  5603. .carousel-control-next {
  5604. position: absolute;
  5605. top: 0;
  5606. bottom: 0;
  5607. z-index: 1;
  5608. display: -ms-flexbox;
  5609. display: flex;
  5610. -ms-flex-align: center;
  5611. align-items: center;
  5612. -ms-flex-pack: center;
  5613. justify-content: center;
  5614. width: 15%;
  5615. color: #fff;
  5616. text-align: center;
  5617. opacity: 0.5;
  5618. transition: opacity 0.15s ease;
  5619. }
  5620. @media (prefers-reduced-motion: reduce) {
  5621. .carousel-control-prev,
  5622. .carousel-control-next {
  5623. transition: none;
  5624. }
  5625. }
  5626. .carousel-control-prev:hover, .carousel-control-prev:focus,
  5627. .carousel-control-next:hover,
  5628. .carousel-control-next:focus {
  5629. color: #fff;
  5630. text-decoration: none;
  5631. outline: 0;
  5632. opacity: 0.9;
  5633. }
  5634. .carousel-control-prev {
  5635. left: 0;
  5636. }
  5637. .carousel-control-next {
  5638. right: 0;
  5639. }
  5640. .carousel-control-prev-icon,
  5641. .carousel-control-next-icon {
  5642. display: inline-block;
  5643. width: 20px;
  5644. height: 20px;
  5645. background: no-repeat 50% / 100% 100%;
  5646. }
  5647. .carousel-control-prev-icon {
  5648. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
  5649. }
  5650. .carousel-control-next-icon {
  5651. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
  5652. }
  5653. .carousel-indicators {
  5654. position: absolute;
  5655. right: 0;
  5656. bottom: 0;
  5657. left: 0;
  5658. z-index: 15;
  5659. display: -ms-flexbox;
  5660. display: flex;
  5661. -ms-flex-pack: center;
  5662. justify-content: center;
  5663. padding-left: 0;
  5664. margin-right: 15%;
  5665. margin-left: 15%;
  5666. list-style: none;
  5667. }
  5668. .carousel-indicators li {
  5669. box-sizing: content-box;
  5670. -ms-flex: 0 1 auto;
  5671. flex: 0 1 auto;
  5672. width: 30px;
  5673. height: 3px;
  5674. margin-right: 3px;
  5675. margin-left: 3px;
  5676. text-indent: -999px;
  5677. cursor: pointer;
  5678. background-color: #fff;
  5679. background-clip: padding-box;
  5680. border-top: 10px solid transparent;
  5681. border-bottom: 10px solid transparent;
  5682. opacity: .5;
  5683. transition: opacity 0.6s ease;
  5684. }
  5685. @media (prefers-reduced-motion: reduce) {
  5686. .carousel-indicators li {
  5687. transition: none;
  5688. }
  5689. }
  5690. .carousel-indicators .active {
  5691. opacity: 1;
  5692. }
  5693. .carousel-caption {
  5694. position: absolute;
  5695. right: 15%;
  5696. bottom: 20px;
  5697. left: 15%;
  5698. z-index: 10;
  5699. padding-top: 20px;
  5700. padding-bottom: 20px;
  5701. color: #fff;
  5702. text-align: center;
  5703. }
  5704. @-webkit-keyframes spinner-border {
  5705. to {
  5706. -webkit-transform: rotate(360deg);
  5707. transform: rotate(360deg);
  5708. }
  5709. }
  5710. @keyframes spinner-border {
  5711. to {
  5712. -webkit-transform: rotate(360deg);
  5713. transform: rotate(360deg);
  5714. }
  5715. }
  5716. .spinner-border {
  5717. display: inline-block;
  5718. width: 2rem;
  5719. height: 2rem;
  5720. vertical-align: text-bottom;
  5721. border: 0.25em solid currentColor;
  5722. border-right-color: transparent;
  5723. border-radius: 50%;
  5724. -webkit-animation: spinner-border .75s linear infinite;
  5725. animation: spinner-border .75s linear infinite;
  5726. }
  5727. .spinner-border-sm {
  5728. width: 1rem;
  5729. height: 1rem;
  5730. border-width: 0.2em;
  5731. }
  5732. @-webkit-keyframes spinner-grow {
  5733. 0% {
  5734. -webkit-transform: scale(0);
  5735. transform: scale(0);
  5736. }
  5737. 50% {
  5738. opacity: 1;
  5739. }
  5740. }
  5741. @keyframes spinner-grow {
  5742. 0% {
  5743. -webkit-transform: scale(0);
  5744. transform: scale(0);
  5745. }
  5746. 50% {
  5747. opacity: 1;
  5748. }
  5749. }
  5750. .spinner-grow {
  5751. display: inline-block;
  5752. width: 2rem;
  5753. height: 2rem;
  5754. vertical-align: text-bottom;
  5755. background-color: currentColor;
  5756. border-radius: 50%;
  5757. opacity: 0;
  5758. -webkit-animation: spinner-grow .75s linear infinite;
  5759. animation: spinner-grow .75s linear infinite;
  5760. }
  5761. .spinner-grow-sm {
  5762. width: 1rem;
  5763. height: 1rem;
  5764. }
  5765. .align-baseline {
  5766. vertical-align: baseline !important;
  5767. }
  5768. .align-top {
  5769. vertical-align: top !important;
  5770. }
  5771. .align-middle {
  5772. vertical-align: middle !important;
  5773. }
  5774. .align-bottom {
  5775. vertical-align: bottom !important;
  5776. }
  5777. .align-text-bottom {
  5778. vertical-align: text-bottom !important;
  5779. }
  5780. .align-text-top {
  5781. vertical-align: text-top !important;
  5782. }
  5783. .bg-primary {
  5784. background-color: #007bff !important;
  5785. }
  5786. a.bg-primary:hover, a.bg-primary:focus,
  5787. button.bg-primary:hover,
  5788. button.bg-primary:focus {
  5789. background-color: #0062cc !important;
  5790. }
  5791. .bg-secondary {
  5792. background-color: #6c757d !important;
  5793. }
  5794. a.bg-secondary:hover, a.bg-secondary:focus,
  5795. button.bg-secondary:hover,
  5796. button.bg-secondary:focus {
  5797. background-color: #545b62 !important;
  5798. }
  5799. .bg-success {
  5800. background-color: #28a745 !important;
  5801. }
  5802. a.bg-success:hover, a.bg-success:focus,
  5803. button.bg-success:hover,
  5804. button.bg-success:focus {
  5805. background-color: #1e7e34 !important;
  5806. }
  5807. .bg-info {
  5808. background-color: #17a2b8 !important;
  5809. }
  5810. a.bg-info:hover, a.bg-info:focus,
  5811. button.bg-info:hover,
  5812. button.bg-info:focus {
  5813. background-color: #117a8b !important;
  5814. }
  5815. .bg-warning {
  5816. background-color: #ffc107 !important;
  5817. }
  5818. a.bg-warning:hover, a.bg-warning:focus,
  5819. button.bg-warning:hover,
  5820. button.bg-warning:focus {
  5821. background-color: #d39e00 !important;
  5822. }
  5823. .bg-danger {
  5824. background-color: #dc3545 !important;
  5825. }
  5826. a.bg-danger:hover, a.bg-danger:focus,
  5827. button.bg-danger:hover,
  5828. button.bg-danger:focus {
  5829. background-color: #bd2130 !important;
  5830. }
  5831. .bg-light {
  5832. background-color: #f8f9fa !important;
  5833. }
  5834. a.bg-light:hover, a.bg-light:focus,
  5835. button.bg-light:hover,
  5836. button.bg-light:focus {
  5837. background-color: #dae0e5 !important;
  5838. }
  5839. .bg-dark {
  5840. background-color: #343a40 !important;
  5841. }
  5842. a.bg-dark:hover, a.bg-dark:focus,
  5843. button.bg-dark:hover,
  5844. button.bg-dark:focus {
  5845. background-color: #1d2124 !important;
  5846. }
  5847. .bg-white {
  5848. background-color: #fff !important;
  5849. }
  5850. .bg-transparent {
  5851. background-color: transparent !important;
  5852. }
  5853. .border {
  5854. border: 1px solid #dee2e6 !important;
  5855. }
  5856. .border-top {
  5857. border-top: 1px solid #dee2e6 !important;
  5858. }
  5859. .border-right {
  5860. border-right: 1px solid #dee2e6 !important;
  5861. }
  5862. .border-bottom {
  5863. border-bottom: 1px solid #dee2e6 !important;
  5864. }
  5865. .border-left {
  5866. border-left: 1px solid #dee2e6 !important;
  5867. }
  5868. .border-0 {
  5869. border: 0 !important;
  5870. }
  5871. .border-top-0 {
  5872. border-top: 0 !important;
  5873. }
  5874. .border-right-0 {
  5875. border-right: 0 !important;
  5876. }
  5877. .border-bottom-0 {
  5878. border-bottom: 0 !important;
  5879. }
  5880. .border-left-0 {
  5881. border-left: 0 !important;
  5882. }
  5883. .border-primary {
  5884. border-color: #007bff !important;
  5885. }
  5886. .border-secondary {
  5887. border-color: #6c757d !important;
  5888. }
  5889. .border-success {
  5890. border-color: #28a745 !important;
  5891. }
  5892. .border-info {
  5893. border-color: #17a2b8 !important;
  5894. }
  5895. .border-warning {
  5896. border-color: #ffc107 !important;
  5897. }
  5898. .border-danger {
  5899. border-color: #dc3545 !important;
  5900. }
  5901. .border-light {
  5902. border-color: #f8f9fa !important;
  5903. }
  5904. .border-dark {
  5905. border-color: #343a40 !important;
  5906. }
  5907. .border-white {
  5908. border-color: #fff !important;
  5909. }
  5910. .rounded-sm {
  5911. border-radius: 0.2rem !important;
  5912. }
  5913. .rounded {
  5914. border-radius: 0.25rem !important;
  5915. }
  5916. .rounded-top {
  5917. border-top-left-radius: 0.25rem !important;
  5918. border-top-right-radius: 0.25rem !important;
  5919. }
  5920. .rounded-right {
  5921. border-top-right-radius: 0.25rem !important;
  5922. border-bottom-right-radius: 0.25rem !important;
  5923. }
  5924. .rounded-bottom {
  5925. border-bottom-right-radius: 0.25rem !important;
  5926. border-bottom-left-radius: 0.25rem !important;
  5927. }
  5928. .rounded-left {
  5929. border-top-left-radius: 0.25rem !important;
  5930. border-bottom-left-radius: 0.25rem !important;
  5931. }
  5932. .rounded-lg {
  5933. border-radius: 0.3rem !important;
  5934. }
  5935. .rounded-circle {
  5936. border-radius: 50% !important;
  5937. }
  5938. .rounded-pill {
  5939. border-radius: 50rem !important;
  5940. }
  5941. .rounded-0 {
  5942. border-radius: 0 !important;
  5943. }
  5944. .clearfix::after {
  5945. display: block;
  5946. clear: both;
  5947. content: "";
  5948. }
  5949. .d-none {
  5950. display: none !important;
  5951. }
  5952. .d-inline {
  5953. display: inline !important;
  5954. }
  5955. .d-inline-block {
  5956. display: inline-block !important;
  5957. }
  5958. .d-block {
  5959. display: block !important;
  5960. }
  5961. .d-table {
  5962. display: table !important;
  5963. }
  5964. .d-table-row {
  5965. display: table-row !important;
  5966. }
  5967. .d-table-cell {
  5968. display: table-cell !important;
  5969. }
  5970. .d-flex {
  5971. display: -ms-flexbox !important;
  5972. display: flex !important;
  5973. }
  5974. .d-inline-flex {
  5975. display: -ms-inline-flexbox !important;
  5976. display: inline-flex !important;
  5977. }
  5978. @media (min-width: 576px) {
  5979. .d-sm-none {
  5980. display: none !important;
  5981. }
  5982. .d-sm-inline {
  5983. display: inline !important;
  5984. }
  5985. .d-sm-inline-block {
  5986. display: inline-block !important;
  5987. }
  5988. .d-sm-block {
  5989. display: block !important;
  5990. }
  5991. .d-sm-table {
  5992. display: table !important;
  5993. }
  5994. .d-sm-table-row {
  5995. display: table-row !important;
  5996. }
  5997. .d-sm-table-cell {
  5998. display: table-cell !important;
  5999. }
  6000. .d-sm-flex {
  6001. display: -ms-flexbox !important;
  6002. display: flex !important;
  6003. }
  6004. .d-sm-inline-flex {
  6005. display: -ms-inline-flexbox !important;
  6006. display: inline-flex !important;
  6007. }
  6008. }
  6009. @media (min-width: 768px) {
  6010. .d-md-none {
  6011. display: none !important;
  6012. }
  6013. .d-md-inline {
  6014. display: inline !important;
  6015. }
  6016. .d-md-inline-block {
  6017. display: inline-block !important;
  6018. }
  6019. .d-md-block {
  6020. display: block !important;
  6021. }
  6022. .d-md-table {
  6023. display: table !important;
  6024. }
  6025. .d-md-table-row {
  6026. display: table-row !important;
  6027. }
  6028. .d-md-table-cell {
  6029. display: table-cell !important;
  6030. }
  6031. .d-md-flex {
  6032. display: -ms-flexbox !important;
  6033. display: flex !important;
  6034. }
  6035. .d-md-inline-flex {
  6036. display: -ms-inline-flexbox !important;
  6037. display: inline-flex !important;
  6038. }
  6039. }
  6040. @media (min-width: 992px) {
  6041. .d-lg-none {
  6042. display: none !important;
  6043. }
  6044. .d-lg-inline {
  6045. display: inline !important;
  6046. }
  6047. .d-lg-inline-block {
  6048. display: inline-block !important;
  6049. }
  6050. .d-lg-block {
  6051. display: block !important;
  6052. }
  6053. .d-lg-table {
  6054. display: table !important;
  6055. }
  6056. .d-lg-table-row {
  6057. display: table-row !important;
  6058. }
  6059. .d-lg-table-cell {
  6060. display: table-cell !important;
  6061. }
  6062. .d-lg-flex {
  6063. display: -ms-flexbox !important;
  6064. display: flex !important;
  6065. }
  6066. .d-lg-inline-flex {
  6067. display: -ms-inline-flexbox !important;
  6068. display: inline-flex !important;
  6069. }
  6070. }
  6071. @media (min-width: 1200px) {
  6072. .d-xl-none {
  6073. display: none !important;
  6074. }
  6075. .d-xl-inline {
  6076. display: inline !important;
  6077. }
  6078. .d-xl-inline-block {
  6079. display: inline-block !important;
  6080. }
  6081. .d-xl-block {
  6082. display: block !important;
  6083. }
  6084. .d-xl-table {
  6085. display: table !important;
  6086. }
  6087. .d-xl-table-row {
  6088. display: table-row !important;
  6089. }
  6090. .d-xl-table-cell {
  6091. display: table-cell !important;
  6092. }
  6093. .d-xl-flex {
  6094. display: -ms-flexbox !important;
  6095. display: flex !important;
  6096. }
  6097. .d-xl-inline-flex {
  6098. display: -ms-inline-flexbox !important;
  6099. display: inline-flex !important;
  6100. }
  6101. }
  6102. @media print {
  6103. .d-print-none {
  6104. display: none !important;
  6105. }
  6106. .d-print-inline {
  6107. display: inline !important;
  6108. }
  6109. .d-print-inline-block {
  6110. display: inline-block !important;
  6111. }
  6112. .d-print-block {
  6113. display: block !important;
  6114. }
  6115. .d-print-table {
  6116. display: table !important;
  6117. }
  6118. .d-print-table-row {
  6119. display: table-row !important;
  6120. }
  6121. .d-print-table-cell {
  6122. display: table-cell !important;
  6123. }
  6124. .d-print-flex {
  6125. display: -ms-flexbox !important;
  6126. display: flex !important;
  6127. }
  6128. .d-print-inline-flex {
  6129. display: -ms-inline-flexbox !important;
  6130. display: inline-flex !important;
  6131. }
  6132. }
  6133. .embed-responsive {
  6134. position: relative;
  6135. display: block;
  6136. width: 100%;
  6137. padding: 0;
  6138. overflow: hidden;
  6139. }
  6140. .embed-responsive::before {
  6141. display: block;
  6142. content: "";
  6143. }
  6144. .embed-responsive .embed-responsive-item,
  6145. .embed-responsive iframe,
  6146. .embed-responsive embed,
  6147. .embed-responsive object,
  6148. .embed-responsive video {
  6149. position: absolute;
  6150. top: 0;
  6151. bottom: 0;
  6152. left: 0;
  6153. width: 100%;
  6154. height: 100%;
  6155. border: 0;
  6156. }
  6157. .embed-responsive-21by9::before {
  6158. padding-top: 42.857143%;
  6159. }
  6160. .embed-responsive-16by9::before {
  6161. padding-top: 56.25%;
  6162. }
  6163. .embed-responsive-4by3::before {
  6164. padding-top: 75%;
  6165. }
  6166. .embed-responsive-1by1::before {
  6167. padding-top: 100%;
  6168. }
  6169. .flex-row {
  6170. -ms-flex-direction: row !important;
  6171. flex-direction: row !important;
  6172. }
  6173. .flex-column {
  6174. -ms-flex-direction: column !important;
  6175. flex-direction: column !important;
  6176. }
  6177. .flex-row-reverse {
  6178. -ms-flex-direction: row-reverse !important;
  6179. flex-direction: row-reverse !important;
  6180. }
  6181. .flex-column-reverse {
  6182. -ms-flex-direction: column-reverse !important;
  6183. flex-direction: column-reverse !important;
  6184. }
  6185. .flex-wrap {
  6186. -ms-flex-wrap: wrap !important;
  6187. flex-wrap: wrap !important;
  6188. }
  6189. .flex-nowrap {
  6190. -ms-flex-wrap: nowrap !important;
  6191. flex-wrap: nowrap !important;
  6192. }
  6193. .flex-wrap-reverse {
  6194. -ms-flex-wrap: wrap-reverse !important;
  6195. flex-wrap: wrap-reverse !important;
  6196. }
  6197. .flex-fill {
  6198. -ms-flex: 1 1 auto !important;
  6199. flex: 1 1 auto !important;
  6200. }
  6201. .flex-grow-0 {
  6202. -ms-flex-positive: 0 !important;
  6203. flex-grow: 0 !important;
  6204. }
  6205. .flex-grow-1 {
  6206. -ms-flex-positive: 1 !important;
  6207. flex-grow: 1 !important;
  6208. }
  6209. .flex-shrink-0 {
  6210. -ms-flex-negative: 0 !important;
  6211. flex-shrink: 0 !important;
  6212. }
  6213. .flex-shrink-1 {
  6214. -ms-flex-negative: 1 !important;
  6215. flex-shrink: 1 !important;
  6216. }
  6217. .justify-content-start {
  6218. -ms-flex-pack: start !important;
  6219. justify-content: flex-start !important;
  6220. }
  6221. .justify-content-end {
  6222. -ms-flex-pack: end !important;
  6223. justify-content: flex-end !important;
  6224. }
  6225. .justify-content-center {
  6226. -ms-flex-pack: center !important;
  6227. justify-content: center !important;
  6228. }
  6229. .justify-content-between {
  6230. -ms-flex-pack: justify !important;
  6231. justify-content: space-between !important;
  6232. }
  6233. .justify-content-around {
  6234. -ms-flex-pack: distribute !important;
  6235. justify-content: space-around !important;
  6236. }
  6237. .align-items-start {
  6238. -ms-flex-align: start !important;
  6239. align-items: flex-start !important;
  6240. }
  6241. .align-items-end {
  6242. -ms-flex-align: end !important;
  6243. align-items: flex-end !important;
  6244. }
  6245. .align-items-center {
  6246. -ms-flex-align: center !important;
  6247. align-items: center !important;
  6248. }
  6249. .align-items-baseline {
  6250. -ms-flex-align: baseline !important;
  6251. align-items: baseline !important;
  6252. }
  6253. .align-items-stretch {
  6254. -ms-flex-align: stretch !important;
  6255. align-items: stretch !important;
  6256. }
  6257. .align-content-start {
  6258. -ms-flex-line-pack: start !important;
  6259. align-content: flex-start !important;
  6260. }
  6261. .align-content-end {
  6262. -ms-flex-line-pack: end !important;
  6263. align-content: flex-end !important;
  6264. }
  6265. .align-content-center {
  6266. -ms-flex-line-pack: center !important;
  6267. align-content: center !important;
  6268. }
  6269. .align-content-between {
  6270. -ms-flex-line-pack: justify !important;
  6271. align-content: space-between !important;
  6272. }
  6273. .align-content-around {
  6274. -ms-flex-line-pack: distribute !important;
  6275. align-content: space-around !important;
  6276. }
  6277. .align-content-stretch {
  6278. -ms-flex-line-pack: stretch !important;
  6279. align-content: stretch !important;
  6280. }
  6281. .align-self-auto {
  6282. -ms-flex-item-align: auto !important;
  6283. align-self: auto !important;
  6284. }
  6285. .align-self-start {
  6286. -ms-flex-item-align: start !important;
  6287. align-self: flex-start !important;
  6288. }
  6289. .align-self-end {
  6290. -ms-flex-item-align: end !important;
  6291. align-self: flex-end !important;
  6292. }
  6293. .align-self-center {
  6294. -ms-flex-item-align: center !important;
  6295. align-self: center !important;
  6296. }
  6297. .align-self-baseline {
  6298. -ms-flex-item-align: baseline !important;
  6299. align-self: baseline !important;
  6300. }
  6301. .align-self-stretch {
  6302. -ms-flex-item-align: stretch !important;
  6303. align-self: stretch !important;
  6304. }
  6305. @media (min-width: 576px) {
  6306. .flex-sm-row {
  6307. -ms-flex-direction: row !important;
  6308. flex-direction: row !important;
  6309. }
  6310. .flex-sm-column {
  6311. -ms-flex-direction: column !important;
  6312. flex-direction: column !important;
  6313. }
  6314. .flex-sm-row-reverse {
  6315. -ms-flex-direction: row-reverse !important;
  6316. flex-direction: row-reverse !important;
  6317. }
  6318. .flex-sm-column-reverse {
  6319. -ms-flex-direction: column-reverse !important;
  6320. flex-direction: column-reverse !important;
  6321. }
  6322. .flex-sm-wrap {
  6323. -ms-flex-wrap: wrap !important;
  6324. flex-wrap: wrap !important;
  6325. }
  6326. .flex-sm-nowrap {
  6327. -ms-flex-wrap: nowrap !important;
  6328. flex-wrap: nowrap !important;
  6329. }
  6330. .flex-sm-wrap-reverse {
  6331. -ms-flex-wrap: wrap-reverse !important;
  6332. flex-wrap: wrap-reverse !important;
  6333. }
  6334. .flex-sm-fill {
  6335. -ms-flex: 1 1 auto !important;
  6336. flex: 1 1 auto !important;
  6337. }
  6338. .flex-sm-grow-0 {
  6339. -ms-flex-positive: 0 !important;
  6340. flex-grow: 0 !important;
  6341. }
  6342. .flex-sm-grow-1 {
  6343. -ms-flex-positive: 1 !important;
  6344. flex-grow: 1 !important;
  6345. }
  6346. .flex-sm-shrink-0 {
  6347. -ms-flex-negative: 0 !important;
  6348. flex-shrink: 0 !important;
  6349. }
  6350. .flex-sm-shrink-1 {
  6351. -ms-flex-negative: 1 !important;
  6352. flex-shrink: 1 !important;
  6353. }
  6354. .justify-content-sm-start {
  6355. -ms-flex-pack: start !important;
  6356. justify-content: flex-start !important;
  6357. }
  6358. .justify-content-sm-end {
  6359. -ms-flex-pack: end !important;
  6360. justify-content: flex-end !important;
  6361. }
  6362. .justify-content-sm-center {
  6363. -ms-flex-pack: center !important;
  6364. justify-content: center !important;
  6365. }
  6366. .justify-content-sm-between {
  6367. -ms-flex-pack: justify !important;
  6368. justify-content: space-between !important;
  6369. }
  6370. .justify-content-sm-around {
  6371. -ms-flex-pack: distribute !important;
  6372. justify-content: space-around !important;
  6373. }
  6374. .align-items-sm-start {
  6375. -ms-flex-align: start !important;
  6376. align-items: flex-start !important;
  6377. }
  6378. .align-items-sm-end {
  6379. -ms-flex-align: end !important;
  6380. align-items: flex-end !important;
  6381. }
  6382. .align-items-sm-center {
  6383. -ms-flex-align: center !important;
  6384. align-items: center !important;
  6385. }
  6386. .align-items-sm-baseline {
  6387. -ms-flex-align: baseline !important;
  6388. align-items: baseline !important;
  6389. }
  6390. .align-items-sm-stretch {
  6391. -ms-flex-align: stretch !important;
  6392. align-items: stretch !important;
  6393. }
  6394. .align-content-sm-start {
  6395. -ms-flex-line-pack: start !important;
  6396. align-content: flex-start !important;
  6397. }
  6398. .align-content-sm-end {
  6399. -ms-flex-line-pack: end !important;
  6400. align-content: flex-end !important;
  6401. }
  6402. .align-content-sm-center {
  6403. -ms-flex-line-pack: center !important;
  6404. align-content: center !important;
  6405. }
  6406. .align-content-sm-between {
  6407. -ms-flex-line-pack: justify !important;
  6408. align-content: space-between !important;
  6409. }
  6410. .align-content-sm-around {
  6411. -ms-flex-line-pack: distribute !important;
  6412. align-content: space-around !important;
  6413. }
  6414. .align-content-sm-stretch {
  6415. -ms-flex-line-pack: stretch !important;
  6416. align-content: stretch !important;
  6417. }
  6418. .align-self-sm-auto {
  6419. -ms-flex-item-align: auto !important;
  6420. align-self: auto !important;
  6421. }
  6422. .align-self-sm-start {
  6423. -ms-flex-item-align: start !important;
  6424. align-self: flex-start !important;
  6425. }
  6426. .align-self-sm-end {
  6427. -ms-flex-item-align: end !important;
  6428. align-self: flex-end !important;
  6429. }
  6430. .align-self-sm-center {
  6431. -ms-flex-item-align: center !important;
  6432. align-self: center !important;
  6433. }
  6434. .align-self-sm-baseline {
  6435. -ms-flex-item-align: baseline !important;
  6436. align-self: baseline !important;
  6437. }
  6438. .align-self-sm-stretch {
  6439. -ms-flex-item-align: stretch !important;
  6440. align-self: stretch !important;
  6441. }
  6442. }
  6443. @media (min-width: 768px) {
  6444. .flex-md-row {
  6445. -ms-flex-direction: row !important;
  6446. flex-direction: row !important;
  6447. }
  6448. .flex-md-column {
  6449. -ms-flex-direction: column !important;
  6450. flex-direction: column !important;
  6451. }
  6452. .flex-md-row-reverse {
  6453. -ms-flex-direction: row-reverse !important;
  6454. flex-direction: row-reverse !important;
  6455. }
  6456. .flex-md-column-reverse {
  6457. -ms-flex-direction: column-reverse !important;
  6458. flex-direction: column-reverse !important;
  6459. }
  6460. .flex-md-wrap {
  6461. -ms-flex-wrap: wrap !important;
  6462. flex-wrap: wrap !important;
  6463. }
  6464. .flex-md-nowrap {
  6465. -ms-flex-wrap: nowrap !important;
  6466. flex-wrap: nowrap !important;
  6467. }
  6468. .flex-md-wrap-reverse {
  6469. -ms-flex-wrap: wrap-reverse !important;
  6470. flex-wrap: wrap-reverse !important;
  6471. }
  6472. .flex-md-fill {
  6473. -ms-flex: 1 1 auto !important;
  6474. flex: 1 1 auto !important;
  6475. }
  6476. .flex-md-grow-0 {
  6477. -ms-flex-positive: 0 !important;
  6478. flex-grow: 0 !important;
  6479. }
  6480. .flex-md-grow-1 {
  6481. -ms-flex-positive: 1 !important;
  6482. flex-grow: 1 !important;
  6483. }
  6484. .flex-md-shrink-0 {
  6485. -ms-flex-negative: 0 !important;
  6486. flex-shrink: 0 !important;
  6487. }
  6488. .flex-md-shrink-1 {
  6489. -ms-flex-negative: 1 !important;
  6490. flex-shrink: 1 !important;
  6491. }
  6492. .justify-content-md-start {
  6493. -ms-flex-pack: start !important;
  6494. justify-content: flex-start !important;
  6495. }
  6496. .justify-content-md-end {
  6497. -ms-flex-pack: end !important;
  6498. justify-content: flex-end !important;
  6499. }
  6500. .justify-content-md-center {
  6501. -ms-flex-pack: center !important;
  6502. justify-content: center !important;
  6503. }
  6504. .justify-content-md-between {
  6505. -ms-flex-pack: justify !important;
  6506. justify-content: space-between !important;
  6507. }
  6508. .justify-content-md-around {
  6509. -ms-flex-pack: distribute !important;
  6510. justify-content: space-around !important;
  6511. }
  6512. .align-items-md-start {
  6513. -ms-flex-align: start !important;
  6514. align-items: flex-start !important;
  6515. }
  6516. .align-items-md-end {
  6517. -ms-flex-align: end !important;
  6518. align-items: flex-end !important;
  6519. }
  6520. .align-items-md-center {
  6521. -ms-flex-align: center !important;
  6522. align-items: center !important;
  6523. }
  6524. .align-items-md-baseline {
  6525. -ms-flex-align: baseline !important;
  6526. align-items: baseline !important;
  6527. }
  6528. .align-items-md-stretch {
  6529. -ms-flex-align: stretch !important;
  6530. align-items: stretch !important;
  6531. }
  6532. .align-content-md-start {
  6533. -ms-flex-line-pack: start !important;
  6534. align-content: flex-start !important;
  6535. }
  6536. .align-content-md-end {
  6537. -ms-flex-line-pack: end !important;
  6538. align-content: flex-end !important;
  6539. }
  6540. .align-content-md-center {
  6541. -ms-flex-line-pack: center !important;
  6542. align-content: center !important;
  6543. }
  6544. .align-content-md-between {
  6545. -ms-flex-line-pack: justify !important;
  6546. align-content: space-between !important;
  6547. }
  6548. .align-content-md-around {
  6549. -ms-flex-line-pack: distribute !important;
  6550. align-content: space-around !important;
  6551. }
  6552. .align-content-md-stretch {
  6553. -ms-flex-line-pack: stretch !important;
  6554. align-content: stretch !important;
  6555. }
  6556. .align-self-md-auto {
  6557. -ms-flex-item-align: auto !important;
  6558. align-self: auto !important;
  6559. }
  6560. .align-self-md-start {
  6561. -ms-flex-item-align: start !important;
  6562. align-self: flex-start !important;
  6563. }
  6564. .align-self-md-end {
  6565. -ms-flex-item-align: end !important;
  6566. align-self: flex-end !important;
  6567. }
  6568. .align-self-md-center {
  6569. -ms-flex-item-align: center !important;
  6570. align-self: center !important;
  6571. }
  6572. .align-self-md-baseline {
  6573. -ms-flex-item-align: baseline !important;
  6574. align-self: baseline !important;
  6575. }
  6576. .align-self-md-stretch {
  6577. -ms-flex-item-align: stretch !important;
  6578. align-self: stretch !important;
  6579. }
  6580. }
  6581. @media (min-width: 992px) {
  6582. .flex-lg-row {
  6583. -ms-flex-direction: row !important;
  6584. flex-direction: row !important;
  6585. }
  6586. .flex-lg-column {
  6587. -ms-flex-direction: column !important;
  6588. flex-direction: column !important;
  6589. }
  6590. .flex-lg-row-reverse {
  6591. -ms-flex-direction: row-reverse !important;
  6592. flex-direction: row-reverse !important;
  6593. }
  6594. .flex-lg-column-reverse {
  6595. -ms-flex-direction: column-reverse !important;
  6596. flex-direction: column-reverse !important;
  6597. }
  6598. .flex-lg-wrap {
  6599. -ms-flex-wrap: wrap !important;
  6600. flex-wrap: wrap !important;
  6601. }
  6602. .flex-lg-nowrap {
  6603. -ms-flex-wrap: nowrap !important;
  6604. flex-wrap: nowrap !important;
  6605. }
  6606. .flex-lg-wrap-reverse {
  6607. -ms-flex-wrap: wrap-reverse !important;
  6608. flex-wrap: wrap-reverse !important;
  6609. }
  6610. .flex-lg-fill {
  6611. -ms-flex: 1 1 auto !important;
  6612. flex: 1 1 auto !important;
  6613. }
  6614. .flex-lg-grow-0 {
  6615. -ms-flex-positive: 0 !important;
  6616. flex-grow: 0 !important;
  6617. }
  6618. .flex-lg-grow-1 {
  6619. -ms-flex-positive: 1 !important;
  6620. flex-grow: 1 !important;
  6621. }
  6622. .flex-lg-shrink-0 {
  6623. -ms-flex-negative: 0 !important;
  6624. flex-shrink: 0 !important;
  6625. }
  6626. .flex-lg-shrink-1 {
  6627. -ms-flex-negative: 1 !important;
  6628. flex-shrink: 1 !important;
  6629. }
  6630. .justify-content-lg-start {
  6631. -ms-flex-pack: start !important;
  6632. justify-content: flex-start !important;
  6633. }
  6634. .justify-content-lg-end {
  6635. -ms-flex-pack: end !important;
  6636. justify-content: flex-end !important;
  6637. }
  6638. .justify-content-lg-center {
  6639. -ms-flex-pack: center !important;
  6640. justify-content: center !important;
  6641. }
  6642. .justify-content-lg-between {
  6643. -ms-flex-pack: justify !important;
  6644. justify-content: space-between !important;
  6645. }
  6646. .justify-content-lg-around {
  6647. -ms-flex-pack: distribute !important;
  6648. justify-content: space-around !important;
  6649. }
  6650. .align-items-lg-start {
  6651. -ms-flex-align: start !important;
  6652. align-items: flex-start !important;
  6653. }
  6654. .align-items-lg-end {
  6655. -ms-flex-align: end !important;
  6656. align-items: flex-end !important;
  6657. }
  6658. .align-items-lg-center {
  6659. -ms-flex-align: center !important;
  6660. align-items: center !important;
  6661. }
  6662. .align-items-lg-baseline {
  6663. -ms-flex-align: baseline !important;
  6664. align-items: baseline !important;
  6665. }
  6666. .align-items-lg-stretch {
  6667. -ms-flex-align: stretch !important;
  6668. align-items: stretch !important;
  6669. }
  6670. .align-content-lg-start {
  6671. -ms-flex-line-pack: start !important;
  6672. align-content: flex-start !important;
  6673. }
  6674. .align-content-lg-end {
  6675. -ms-flex-line-pack: end !important;
  6676. align-content: flex-end !important;
  6677. }
  6678. .align-content-lg-center {
  6679. -ms-flex-line-pack: center !important;
  6680. align-content: center !important;
  6681. }
  6682. .align-content-lg-between {
  6683. -ms-flex-line-pack: justify !important;
  6684. align-content: space-between !important;
  6685. }
  6686. .align-content-lg-around {
  6687. -ms-flex-line-pack: distribute !important;
  6688. align-content: space-around !important;
  6689. }
  6690. .align-content-lg-stretch {
  6691. -ms-flex-line-pack: stretch !important;
  6692. align-content: stretch !important;
  6693. }
  6694. .align-self-lg-auto {
  6695. -ms-flex-item-align: auto !important;
  6696. align-self: auto !important;
  6697. }
  6698. .align-self-lg-start {
  6699. -ms-flex-item-align: start !important;
  6700. align-self: flex-start !important;
  6701. }
  6702. .align-self-lg-end {
  6703. -ms-flex-item-align: end !important;
  6704. align-self: flex-end !important;
  6705. }
  6706. .align-self-lg-center {
  6707. -ms-flex-item-align: center !important;
  6708. align-self: center !important;
  6709. }
  6710. .align-self-lg-baseline {
  6711. -ms-flex-item-align: baseline !important;
  6712. align-self: baseline !important;
  6713. }
  6714. .align-self-lg-stretch {
  6715. -ms-flex-item-align: stretch !important;
  6716. align-self: stretch !important;
  6717. }
  6718. }
  6719. @media (min-width: 1200px) {
  6720. .flex-xl-row {
  6721. -ms-flex-direction: row !important;
  6722. flex-direction: row !important;
  6723. }
  6724. .flex-xl-column {
  6725. -ms-flex-direction: column !important;
  6726. flex-direction: column !important;
  6727. }
  6728. .flex-xl-row-reverse {
  6729. -ms-flex-direction: row-reverse !important;
  6730. flex-direction: row-reverse !important;
  6731. }
  6732. .flex-xl-column-reverse {
  6733. -ms-flex-direction: column-reverse !important;
  6734. flex-direction: column-reverse !important;
  6735. }
  6736. .flex-xl-wrap {
  6737. -ms-flex-wrap: wrap !important;
  6738. flex-wrap: wrap !important;
  6739. }
  6740. .flex-xl-nowrap {
  6741. -ms-flex-wrap: nowrap !important;
  6742. flex-wrap: nowrap !important;
  6743. }
  6744. .flex-xl-wrap-reverse {
  6745. -ms-flex-wrap: wrap-reverse !important;
  6746. flex-wrap: wrap-reverse !important;
  6747. }
  6748. .flex-xl-fill {
  6749. -ms-flex: 1 1 auto !important;
  6750. flex: 1 1 auto !important;
  6751. }
  6752. .flex-xl-grow-0 {
  6753. -ms-flex-positive: 0 !important;
  6754. flex-grow: 0 !important;
  6755. }
  6756. .flex-xl-grow-1 {
  6757. -ms-flex-positive: 1 !important;
  6758. flex-grow: 1 !important;
  6759. }
  6760. .flex-xl-shrink-0 {
  6761. -ms-flex-negative: 0 !important;
  6762. flex-shrink: 0 !important;
  6763. }
  6764. .flex-xl-shrink-1 {
  6765. -ms-flex-negative: 1 !important;
  6766. flex-shrink: 1 !important;
  6767. }
  6768. .justify-content-xl-start {
  6769. -ms-flex-pack: start !important;
  6770. justify-content: flex-start !important;
  6771. }
  6772. .justify-content-xl-end {
  6773. -ms-flex-pack: end !important;
  6774. justify-content: flex-end !important;
  6775. }
  6776. .justify-content-xl-center {
  6777. -ms-flex-pack: center !important;
  6778. justify-content: center !important;
  6779. }
  6780. .justify-content-xl-between {
  6781. -ms-flex-pack: justify !important;
  6782. justify-content: space-between !important;
  6783. }
  6784. .justify-content-xl-around {
  6785. -ms-flex-pack: distribute !important;
  6786. justify-content: space-around !important;
  6787. }
  6788. .align-items-xl-start {
  6789. -ms-flex-align: start !important;
  6790. align-items: flex-start !important;
  6791. }
  6792. .align-items-xl-end {
  6793. -ms-flex-align: end !important;
  6794. align-items: flex-end !important;
  6795. }
  6796. .align-items-xl-center {
  6797. -ms-flex-align: center !important;
  6798. align-items: center !important;
  6799. }
  6800. .align-items-xl-baseline {
  6801. -ms-flex-align: baseline !important;
  6802. align-items: baseline !important;
  6803. }
  6804. .align-items-xl-stretch {
  6805. -ms-flex-align: stretch !important;
  6806. align-items: stretch !important;
  6807. }
  6808. .align-content-xl-start {
  6809. -ms-flex-line-pack: start !important;
  6810. align-content: flex-start !important;
  6811. }
  6812. .align-content-xl-end {
  6813. -ms-flex-line-pack: end !important;
  6814. align-content: flex-end !important;
  6815. }
  6816. .align-content-xl-center {
  6817. -ms-flex-line-pack: center !important;
  6818. align-content: center !important;
  6819. }
  6820. .align-content-xl-between {
  6821. -ms-flex-line-pack: justify !important;
  6822. align-content: space-between !important;
  6823. }
  6824. .align-content-xl-around {
  6825. -ms-flex-line-pack: distribute !important;
  6826. align-content: space-around !important;
  6827. }
  6828. .align-content-xl-stretch {
  6829. -ms-flex-line-pack: stretch !important;
  6830. align-content: stretch !important;
  6831. }
  6832. .align-self-xl-auto {
  6833. -ms-flex-item-align: auto !important;
  6834. align-self: auto !important;
  6835. }
  6836. .align-self-xl-start {
  6837. -ms-flex-item-align: start !important;
  6838. align-self: flex-start !important;
  6839. }
  6840. .align-self-xl-end {
  6841. -ms-flex-item-align: end !important;
  6842. align-self: flex-end !important;
  6843. }
  6844. .align-self-xl-center {
  6845. -ms-flex-item-align: center !important;
  6846. align-self: center !important;
  6847. }
  6848. .align-self-xl-baseline {
  6849. -ms-flex-item-align: baseline !important;
  6850. align-self: baseline !important;
  6851. }
  6852. .align-self-xl-stretch {
  6853. -ms-flex-item-align: stretch !important;
  6854. align-self: stretch !important;
  6855. }
  6856. }
  6857. .float-left {
  6858. float: left !important;
  6859. }
  6860. .float-right {
  6861. float: right !important;
  6862. }
  6863. .float-none {
  6864. float: none !important;
  6865. }
  6866. @media (min-width: 576px) {
  6867. .float-sm-left {
  6868. float: left !important;
  6869. }
  6870. .float-sm-right {
  6871. float: right !important;
  6872. }
  6873. .float-sm-none {
  6874. float: none !important;
  6875. }
  6876. }
  6877. @media (min-width: 768px) {
  6878. .float-md-left {
  6879. float: left !important;
  6880. }
  6881. .float-md-right {
  6882. float: right !important;
  6883. }
  6884. .float-md-none {
  6885. float: none !important;
  6886. }
  6887. }
  6888. @media (min-width: 992px) {
  6889. .float-lg-left {
  6890. float: left !important;
  6891. }
  6892. .float-lg-right {
  6893. float: right !important;
  6894. }
  6895. .float-lg-none {
  6896. float: none !important;
  6897. }
  6898. }
  6899. @media (min-width: 1200px) {
  6900. .float-xl-left {
  6901. float: left !important;
  6902. }
  6903. .float-xl-right {
  6904. float: right !important;
  6905. }
  6906. .float-xl-none {
  6907. float: none !important;
  6908. }
  6909. }
  6910. .overflow-auto {
  6911. overflow: auto !important;
  6912. }
  6913. .overflow-hidden {
  6914. overflow: hidden !important;
  6915. }
  6916. .position-static {
  6917. position: static !important;
  6918. }
  6919. .position-relative {
  6920. position: relative !important;
  6921. }
  6922. .position-absolute {
  6923. position: absolute !important;
  6924. }
  6925. .position-fixed {
  6926. position: fixed !important;
  6927. }
  6928. .position-sticky {
  6929. position: -webkit-sticky !important;
  6930. position: sticky !important;
  6931. }
  6932. .fixed-top {
  6933. position: fixed;
  6934. top: 0;
  6935. right: 0;
  6936. left: 0;
  6937. z-index: 1030;
  6938. }
  6939. .fixed-bottom {
  6940. position: fixed;
  6941. right: 0;
  6942. bottom: 0;
  6943. left: 0;
  6944. z-index: 1030;
  6945. }
  6946. @supports ((position: -webkit-sticky) or (position: sticky)) {
  6947. .sticky-top {
  6948. position: -webkit-sticky;
  6949. position: sticky;
  6950. top: 0;
  6951. z-index: 1020;
  6952. }
  6953. }
  6954. .sr-only {
  6955. position: absolute;
  6956. width: 1px;
  6957. height: 1px;
  6958. padding: 0;
  6959. margin: -1px;
  6960. overflow: hidden;
  6961. clip: rect(0, 0, 0, 0);
  6962. white-space: nowrap;
  6963. border: 0;
  6964. }
  6965. .sr-only-focusable:active, .sr-only-focusable:focus {
  6966. position: static;
  6967. width: auto;
  6968. height: auto;
  6969. overflow: visible;
  6970. clip: auto;
  6971. white-space: normal;
  6972. }
  6973. .shadow-sm {
  6974. box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  6975. }
  6976. .shadow {
  6977. box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  6978. }
  6979. .shadow-lg {
  6980. box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
  6981. }
  6982. .shadow-none {
  6983. box-shadow: none !important;
  6984. }
  6985. .w-25 {
  6986. width: 25% !important;
  6987. }
  6988. .w-50 {
  6989. width: 50% !important;
  6990. }
  6991. .w-75 {
  6992. width: 75% !important;
  6993. }
  6994. .w-100 {
  6995. width: 100% !important;
  6996. }
  6997. .w-auto {
  6998. width: auto !important;
  6999. }
  7000. .h-25 {
  7001. height: 25% !important;
  7002. }
  7003. .h-50 {
  7004. height: 50% !important;
  7005. }
  7006. .h-75 {
  7007. height: 75% !important;
  7008. }
  7009. .h-100 {
  7010. height: 100% !important;
  7011. }
  7012. .h-auto {
  7013. height: auto !important;
  7014. }
  7015. .mw-100 {
  7016. max-width: 100% !important;
  7017. }
  7018. .mh-100 {
  7019. max-height: 100% !important;
  7020. }
  7021. .min-vw-100 {
  7022. min-width: 100vw !important;
  7023. }
  7024. .min-vh-100 {
  7025. min-height: 100vh !important;
  7026. }
  7027. .vw-100 {
  7028. width: 100vw !important;
  7029. }
  7030. .vh-100 {
  7031. height: 100vh !important;
  7032. }
  7033. .stretched-link::after {
  7034. position: absolute;
  7035. top: 0;
  7036. right: 0;
  7037. bottom: 0;
  7038. left: 0;
  7039. z-index: 1;
  7040. pointer-events: auto;
  7041. content: "";
  7042. background-color: rgba(0, 0, 0, 0);
  7043. }
  7044. .m-0 {
  7045. margin: 0 !important;
  7046. }
  7047. .mt-0,
  7048. .my-0 {
  7049. margin-top: 0 !important;
  7050. }
  7051. .mr-0,
  7052. .mx-0 {
  7053. margin-right: 0 !important;
  7054. }
  7055. .mb-0,
  7056. .my-0 {
  7057. margin-bottom: 0 !important;
  7058. }
  7059. .ml-0,
  7060. .mx-0 {
  7061. margin-left: 0 !important;
  7062. }
  7063. .m-1 {
  7064. margin: 0.25rem !important;
  7065. }
  7066. .mt-1,
  7067. .my-1 {
  7068. margin-top: 0.25rem !important;
  7069. }
  7070. .mr-1,
  7071. .mx-1 {
  7072. margin-right: 0.25rem !important;
  7073. }
  7074. .mb-1,
  7075. .my-1 {
  7076. margin-bottom: 0.25rem !important;
  7077. }
  7078. .ml-1,
  7079. .mx-1 {
  7080. margin-left: 0.25rem !important;
  7081. }
  7082. .m-2 {
  7083. margin: 0.5rem !important;
  7084. }
  7085. .mt-2,
  7086. .my-2 {
  7087. margin-top: 0.5rem !important;
  7088. }
  7089. .mr-2,
  7090. .mx-2 {
  7091. margin-right: 0.5rem !important;
  7092. }
  7093. .mb-2,
  7094. .my-2 {
  7095. margin-bottom: 0.5rem !important;
  7096. }
  7097. .ml-2,
  7098. .mx-2 {
  7099. margin-left: 0.5rem !important;
  7100. }
  7101. .m-3 {
  7102. margin: 1rem !important;
  7103. }
  7104. .mt-3,
  7105. .my-3 {
  7106. margin-top: 1rem !important;
  7107. }
  7108. .mr-3,
  7109. .mx-3 {
  7110. margin-right: 1rem !important;
  7111. }
  7112. .mb-3,
  7113. .my-3 {
  7114. margin-bottom: 1rem !important;
  7115. }
  7116. .ml-3,
  7117. .mx-3 {
  7118. margin-left: 1rem !important;
  7119. }
  7120. .m-4 {
  7121. margin: 1.5rem !important;
  7122. }
  7123. .mt-4,
  7124. .my-4 {
  7125. margin-top: 1.5rem !important;
  7126. }
  7127. .mr-4,
  7128. .mx-4 {
  7129. margin-right: 1.5rem !important;
  7130. }
  7131. .mb-4,
  7132. .my-4 {
  7133. margin-bottom: 1.5rem !important;
  7134. }
  7135. .ml-4,
  7136. .mx-4 {
  7137. margin-left: 1.5rem !important;
  7138. }
  7139. .m-5 {
  7140. margin: 3rem !important;
  7141. }
  7142. .mt-5,
  7143. .my-5 {
  7144. margin-top: 3rem !important;
  7145. }
  7146. .mr-5,
  7147. .mx-5 {
  7148. margin-right: 3rem !important;
  7149. }
  7150. .mb-5,
  7151. .my-5 {
  7152. margin-bottom: 3rem !important;
  7153. }
  7154. .ml-5,
  7155. .mx-5 {
  7156. margin-left: 3rem !important;
  7157. }
  7158. .p-0 {
  7159. padding: 0 !important;
  7160. }
  7161. .pt-0,
  7162. .py-0 {
  7163. padding-top: 0 !important;
  7164. }
  7165. .pr-0,
  7166. .px-0 {
  7167. padding-right: 0 !important;
  7168. }
  7169. .pb-0,
  7170. .py-0 {
  7171. padding-bottom: 0 !important;
  7172. }
  7173. .pl-0,
  7174. .px-0 {
  7175. padding-left: 0 !important;
  7176. }
  7177. .p-1 {
  7178. padding: 0.25rem !important;
  7179. }
  7180. .pt-1,
  7181. .py-1 {
  7182. padding-top: 0.25rem !important;
  7183. }
  7184. .pr-1,
  7185. .px-1 {
  7186. padding-right: 0.25rem !important;
  7187. }
  7188. .pb-1,
  7189. .py-1 {
  7190. padding-bottom: 0.25rem !important;
  7191. }
  7192. .pl-1,
  7193. .px-1 {
  7194. padding-left: 0.25rem !important;
  7195. }
  7196. .p-2 {
  7197. padding: 0.5rem !important;
  7198. }
  7199. .pt-2,
  7200. .py-2 {
  7201. padding-top: 0.5rem !important;
  7202. }
  7203. .pr-2,
  7204. .px-2 {
  7205. padding-right: 0.5rem !important;
  7206. }
  7207. .pb-2,
  7208. .py-2 {
  7209. padding-bottom: 0.5rem !important;
  7210. }
  7211. .pl-2,
  7212. .px-2 {
  7213. padding-left: 0.5rem !important;
  7214. }
  7215. .p-3 {
  7216. padding: 1rem !important;
  7217. }
  7218. .pt-3,
  7219. .py-3 {
  7220. padding-top: 1rem !important;
  7221. }
  7222. .pr-3,
  7223. .px-3 {
  7224. padding-right: 1rem !important;
  7225. }
  7226. .pb-3,
  7227. .py-3 {
  7228. padding-bottom: 1rem !important;
  7229. }
  7230. .pl-3,
  7231. .px-3 {
  7232. padding-left: 1rem !important;
  7233. }
  7234. .p-4 {
  7235. padding: 1.5rem !important;
  7236. }
  7237. .pt-4,
  7238. .py-4 {
  7239. padding-top: 1.5rem !important;
  7240. }
  7241. .pr-4,
  7242. .px-4 {
  7243. padding-right: 1.5rem !important;
  7244. }
  7245. .pb-4,
  7246. .py-4 {
  7247. padding-bottom: 1.5rem !important;
  7248. }
  7249. .pl-4,
  7250. .px-4 {
  7251. padding-left: 1.5rem !important;
  7252. }
  7253. .p-5 {
  7254. padding: 3rem !important;
  7255. }
  7256. .pt-5,
  7257. .py-5 {
  7258. padding-top: 3rem !important;
  7259. }
  7260. .pr-5,
  7261. .px-5 {
  7262. padding-right: 3rem !important;
  7263. }
  7264. .pb-5,
  7265. .py-5 {
  7266. padding-bottom: 3rem !important;
  7267. }
  7268. .pl-5,
  7269. .px-5 {
  7270. padding-left: 3rem !important;
  7271. }
  7272. .m-n1 {
  7273. margin: -0.25rem !important;
  7274. }
  7275. .mt-n1,
  7276. .my-n1 {
  7277. margin-top: -0.25rem !important;
  7278. }
  7279. .mr-n1,
  7280. .mx-n1 {
  7281. margin-right: -0.25rem !important;
  7282. }
  7283. .mb-n1,
  7284. .my-n1 {
  7285. margin-bottom: -0.25rem !important;
  7286. }
  7287. .ml-n1,
  7288. .mx-n1 {
  7289. margin-left: -0.25rem !important;
  7290. }
  7291. .m-n2 {
  7292. margin: -0.5rem !important;
  7293. }
  7294. .mt-n2,
  7295. .my-n2 {
  7296. margin-top: -0.5rem !important;
  7297. }
  7298. .mr-n2,
  7299. .mx-n2 {
  7300. margin-right: -0.5rem !important;
  7301. }
  7302. .mb-n2,
  7303. .my-n2 {
  7304. margin-bottom: -0.5rem !important;
  7305. }
  7306. .ml-n2,
  7307. .mx-n2 {
  7308. margin-left: -0.5rem !important;
  7309. }
  7310. .m-n3 {
  7311. margin: -1rem !important;
  7312. }
  7313. .mt-n3,
  7314. .my-n3 {
  7315. margin-top: -1rem !important;
  7316. }
  7317. .mr-n3,
  7318. .mx-n3 {
  7319. margin-right: -1rem !important;
  7320. }
  7321. .mb-n3,
  7322. .my-n3 {
  7323. margin-bottom: -1rem !important;
  7324. }
  7325. .ml-n3,
  7326. .mx-n3 {
  7327. margin-left: -1rem !important;
  7328. }
  7329. .m-n4 {
  7330. margin: -1.5rem !important;
  7331. }
  7332. .mt-n4,
  7333. .my-n4 {
  7334. margin-top: -1.5rem !important;
  7335. }
  7336. .mr-n4,
  7337. .mx-n4 {
  7338. margin-right: -1.5rem !important;
  7339. }
  7340. .mb-n4,
  7341. .my-n4 {
  7342. margin-bottom: -1.5rem !important;
  7343. }
  7344. .ml-n4,
  7345. .mx-n4 {
  7346. margin-left: -1.5rem !important;
  7347. }
  7348. .m-n5 {
  7349. margin: -3rem !important;
  7350. }
  7351. .mt-n5,
  7352. .my-n5 {
  7353. margin-top: -3rem !important;
  7354. }
  7355. .mr-n5,
  7356. .mx-n5 {
  7357. margin-right: -3rem !important;
  7358. }
  7359. .mb-n5,
  7360. .my-n5 {
  7361. margin-bottom: -3rem !important;
  7362. }
  7363. .ml-n5,
  7364. .mx-n5 {
  7365. margin-left: -3rem !important;
  7366. }
  7367. .m-auto {
  7368. margin: auto !important;
  7369. }
  7370. .mt-auto,
  7371. .my-auto {
  7372. margin-top: auto !important;
  7373. }
  7374. .mr-auto,
  7375. .mx-auto {
  7376. margin-right: auto !important;
  7377. }
  7378. .mb-auto,
  7379. .my-auto {
  7380. margin-bottom: auto !important;
  7381. }
  7382. .ml-auto,
  7383. .mx-auto {
  7384. margin-left: auto !important;
  7385. }
  7386. @media (min-width: 576px) {
  7387. .m-sm-0 {
  7388. margin: 0 !important;
  7389. }
  7390. .mt-sm-0,
  7391. .my-sm-0 {
  7392. margin-top: 0 !important;
  7393. }
  7394. .mr-sm-0,
  7395. .mx-sm-0 {
  7396. margin-right: 0 !important;
  7397. }
  7398. .mb-sm-0,
  7399. .my-sm-0 {
  7400. margin-bottom: 0 !important;
  7401. }
  7402. .ml-sm-0,
  7403. .mx-sm-0 {
  7404. margin-left: 0 !important;
  7405. }
  7406. .m-sm-1 {
  7407. margin: 0.25rem !important;
  7408. }
  7409. .mt-sm-1,
  7410. .my-sm-1 {
  7411. margin-top: 0.25rem !important;
  7412. }
  7413. .mr-sm-1,
  7414. .mx-sm-1 {
  7415. margin-right: 0.25rem !important;
  7416. }
  7417. .mb-sm-1,
  7418. .my-sm-1 {
  7419. margin-bottom: 0.25rem !important;
  7420. }
  7421. .ml-sm-1,
  7422. .mx-sm-1 {
  7423. margin-left: 0.25rem !important;
  7424. }
  7425. .m-sm-2 {
  7426. margin: 0.5rem !important;
  7427. }
  7428. .mt-sm-2,
  7429. .my-sm-2 {
  7430. margin-top: 0.5rem !important;
  7431. }
  7432. .mr-sm-2,
  7433. .mx-sm-2 {
  7434. margin-right: 0.5rem !important;
  7435. }
  7436. .mb-sm-2,
  7437. .my-sm-2 {
  7438. margin-bottom: 0.5rem !important;
  7439. }
  7440. .ml-sm-2,
  7441. .mx-sm-2 {
  7442. margin-left: 0.5rem !important;
  7443. }
  7444. .m-sm-3 {
  7445. margin: 1rem !important;
  7446. }
  7447. .mt-sm-3,
  7448. .my-sm-3 {
  7449. margin-top: 1rem !important;
  7450. }
  7451. .mr-sm-3,
  7452. .mx-sm-3 {
  7453. margin-right: 1rem !important;
  7454. }
  7455. .mb-sm-3,
  7456. .my-sm-3 {
  7457. margin-bottom: 1rem !important;
  7458. }
  7459. .ml-sm-3,
  7460. .mx-sm-3 {
  7461. margin-left: 1rem !important;
  7462. }
  7463. .m-sm-4 {
  7464. margin: 1.5rem !important;
  7465. }
  7466. .mt-sm-4,
  7467. .my-sm-4 {
  7468. margin-top: 1.5rem !important;
  7469. }
  7470. .mr-sm-4,
  7471. .mx-sm-4 {
  7472. margin-right: 1.5rem !important;
  7473. }
  7474. .mb-sm-4,
  7475. .my-sm-4 {
  7476. margin-bottom: 1.5rem !important;
  7477. }
  7478. .ml-sm-4,
  7479. .mx-sm-4 {
  7480. margin-left: 1.5rem !important;
  7481. }
  7482. .m-sm-5 {
  7483. margin: 3rem !important;
  7484. }
  7485. .mt-sm-5,
  7486. .my-sm-5 {
  7487. margin-top: 3rem !important;
  7488. }
  7489. .mr-sm-5,
  7490. .mx-sm-5 {
  7491. margin-right: 3rem !important;
  7492. }
  7493. .mb-sm-5,
  7494. .my-sm-5 {
  7495. margin-bottom: 3rem !important;
  7496. }
  7497. .ml-sm-5,
  7498. .mx-sm-5 {
  7499. margin-left: 3rem !important;
  7500. }
  7501. .p-sm-0 {
  7502. padding: 0 !important;
  7503. }
  7504. .pt-sm-0,
  7505. .py-sm-0 {
  7506. padding-top: 0 !important;
  7507. }
  7508. .pr-sm-0,
  7509. .px-sm-0 {
  7510. padding-right: 0 !important;
  7511. }
  7512. .pb-sm-0,
  7513. .py-sm-0 {
  7514. padding-bottom: 0 !important;
  7515. }
  7516. .pl-sm-0,
  7517. .px-sm-0 {
  7518. padding-left: 0 !important;
  7519. }
  7520. .p-sm-1 {
  7521. padding: 0.25rem !important;
  7522. }
  7523. .pt-sm-1,
  7524. .py-sm-1 {
  7525. padding-top: 0.25rem !important;
  7526. }
  7527. .pr-sm-1,
  7528. .px-sm-1 {
  7529. padding-right: 0.25rem !important;
  7530. }
  7531. .pb-sm-1,
  7532. .py-sm-1 {
  7533. padding-bottom: 0.25rem !important;
  7534. }
  7535. .pl-sm-1,
  7536. .px-sm-1 {
  7537. padding-left: 0.25rem !important;
  7538. }
  7539. .p-sm-2 {
  7540. padding: 0.5rem !important;
  7541. }
  7542. .pt-sm-2,
  7543. .py-sm-2 {
  7544. padding-top: 0.5rem !important;
  7545. }
  7546. .pr-sm-2,
  7547. .px-sm-2 {
  7548. padding-right: 0.5rem !important;
  7549. }
  7550. .pb-sm-2,
  7551. .py-sm-2 {
  7552. padding-bottom: 0.5rem !important;
  7553. }
  7554. .pl-sm-2,
  7555. .px-sm-2 {
  7556. padding-left: 0.5rem !important;
  7557. }
  7558. .p-sm-3 {
  7559. padding: 1rem !important;
  7560. }
  7561. .pt-sm-3,
  7562. .py-sm-3 {
  7563. padding-top: 1rem !important;
  7564. }
  7565. .pr-sm-3,
  7566. .px-sm-3 {
  7567. padding-right: 1rem !important;
  7568. }
  7569. .pb-sm-3,
  7570. .py-sm-3 {
  7571. padding-bottom: 1rem !important;
  7572. }
  7573. .pl-sm-3,
  7574. .px-sm-3 {
  7575. padding-left: 1rem !important;
  7576. }
  7577. .p-sm-4 {
  7578. padding: 1.5rem !important;
  7579. }
  7580. .pt-sm-4,
  7581. .py-sm-4 {
  7582. padding-top: 1.5rem !important;
  7583. }
  7584. .pr-sm-4,
  7585. .px-sm-4 {
  7586. padding-right: 1.5rem !important;
  7587. }
  7588. .pb-sm-4,
  7589. .py-sm-4 {
  7590. padding-bottom: 1.5rem !important;
  7591. }
  7592. .pl-sm-4,
  7593. .px-sm-4 {
  7594. padding-left: 1.5rem !important;
  7595. }
  7596. .p-sm-5 {
  7597. padding: 3rem !important;
  7598. }
  7599. .pt-sm-5,
  7600. .py-sm-5 {
  7601. padding-top: 3rem !important;
  7602. }
  7603. .pr-sm-5,
  7604. .px-sm-5 {
  7605. padding-right: 3rem !important;
  7606. }
  7607. .pb-sm-5,
  7608. .py-sm-5 {
  7609. padding-bottom: 3rem !important;
  7610. }
  7611. .pl-sm-5,
  7612. .px-sm-5 {
  7613. padding-left: 3rem !important;
  7614. }
  7615. .m-sm-n1 {
  7616. margin: -0.25rem !important;
  7617. }
  7618. .mt-sm-n1,
  7619. .my-sm-n1 {
  7620. margin-top: -0.25rem !important;
  7621. }
  7622. .mr-sm-n1,
  7623. .mx-sm-n1 {
  7624. margin-right: -0.25rem !important;
  7625. }
  7626. .mb-sm-n1,
  7627. .my-sm-n1 {
  7628. margin-bottom: -0.25rem !important;
  7629. }
  7630. .ml-sm-n1,
  7631. .mx-sm-n1 {
  7632. margin-left: -0.25rem !important;
  7633. }
  7634. .m-sm-n2 {
  7635. margin: -0.5rem !important;
  7636. }
  7637. .mt-sm-n2,
  7638. .my-sm-n2 {
  7639. margin-top: -0.5rem !important;
  7640. }
  7641. .mr-sm-n2,
  7642. .mx-sm-n2 {
  7643. margin-right: -0.5rem !important;
  7644. }
  7645. .mb-sm-n2,
  7646. .my-sm-n2 {
  7647. margin-bottom: -0.5rem !important;
  7648. }
  7649. .ml-sm-n2,
  7650. .mx-sm-n2 {
  7651. margin-left: -0.5rem !important;
  7652. }
  7653. .m-sm-n3 {
  7654. margin: -1rem !important;
  7655. }
  7656. .mt-sm-n3,
  7657. .my-sm-n3 {
  7658. margin-top: -1rem !important;
  7659. }
  7660. .mr-sm-n3,
  7661. .mx-sm-n3 {
  7662. margin-right: -1rem !important;
  7663. }
  7664. .mb-sm-n3,
  7665. .my-sm-n3 {
  7666. margin-bottom: -1rem !important;
  7667. }
  7668. .ml-sm-n3,
  7669. .mx-sm-n3 {
  7670. margin-left: -1rem !important;
  7671. }
  7672. .m-sm-n4 {
  7673. margin: -1.5rem !important;
  7674. }
  7675. .mt-sm-n4,
  7676. .my-sm-n4 {
  7677. margin-top: -1.5rem !important;
  7678. }
  7679. .mr-sm-n4,
  7680. .mx-sm-n4 {
  7681. margin-right: -1.5rem !important;
  7682. }
  7683. .mb-sm-n4,
  7684. .my-sm-n4 {
  7685. margin-bottom: -1.5rem !important;
  7686. }
  7687. .ml-sm-n4,
  7688. .mx-sm-n4 {
  7689. margin-left: -1.5rem !important;
  7690. }
  7691. .m-sm-n5 {
  7692. margin: -3rem !important;
  7693. }
  7694. .mt-sm-n5,
  7695. .my-sm-n5 {
  7696. margin-top: -3rem !important;
  7697. }
  7698. .mr-sm-n5,
  7699. .mx-sm-n5 {
  7700. margin-right: -3rem !important;
  7701. }
  7702. .mb-sm-n5,
  7703. .my-sm-n5 {
  7704. margin-bottom: -3rem !important;
  7705. }
  7706. .ml-sm-n5,
  7707. .mx-sm-n5 {
  7708. margin-left: -3rem !important;
  7709. }
  7710. .m-sm-auto {
  7711. margin: auto !important;
  7712. }
  7713. .mt-sm-auto,
  7714. .my-sm-auto {
  7715. margin-top: auto !important;
  7716. }
  7717. .mr-sm-auto,
  7718. .mx-sm-auto {
  7719. margin-right: auto !important;
  7720. }
  7721. .mb-sm-auto,
  7722. .my-sm-auto {
  7723. margin-bottom: auto !important;
  7724. }
  7725. .ml-sm-auto,
  7726. .mx-sm-auto {
  7727. margin-left: auto !important;
  7728. }
  7729. }
  7730. @media (min-width: 768px) {
  7731. .m-md-0 {
  7732. margin: 0 !important;
  7733. }
  7734. .mt-md-0,
  7735. .my-md-0 {
  7736. margin-top: 0 !important;
  7737. }
  7738. .mr-md-0,
  7739. .mx-md-0 {
  7740. margin-right: 0 !important;
  7741. }
  7742. .mb-md-0,
  7743. .my-md-0 {
  7744. margin-bottom: 0 !important;
  7745. }
  7746. .ml-md-0,
  7747. .mx-md-0 {
  7748. margin-left: 0 !important;
  7749. }
  7750. .m-md-1 {
  7751. margin: 0.25rem !important;
  7752. }
  7753. .mt-md-1,
  7754. .my-md-1 {
  7755. margin-top: 0.25rem !important;
  7756. }
  7757. .mr-md-1,
  7758. .mx-md-1 {
  7759. margin-right: 0.25rem !important;
  7760. }
  7761. .mb-md-1,
  7762. .my-md-1 {
  7763. margin-bottom: 0.25rem !important;
  7764. }
  7765. .ml-md-1,
  7766. .mx-md-1 {
  7767. margin-left: 0.25rem !important;
  7768. }
  7769. .m-md-2 {
  7770. margin: 0.5rem !important;
  7771. }
  7772. .mt-md-2,
  7773. .my-md-2 {
  7774. margin-top: 0.5rem !important;
  7775. }
  7776. .mr-md-2,
  7777. .mx-md-2 {
  7778. margin-right: 0.5rem !important;
  7779. }
  7780. .mb-md-2,
  7781. .my-md-2 {
  7782. margin-bottom: 0.5rem !important;
  7783. }
  7784. .ml-md-2,
  7785. .mx-md-2 {
  7786. margin-left: 0.5rem !important;
  7787. }
  7788. .m-md-3 {
  7789. margin: 1rem !important;
  7790. }
  7791. .mt-md-3,
  7792. .my-md-3 {
  7793. margin-top: 1rem !important;
  7794. }
  7795. .mr-md-3,
  7796. .mx-md-3 {
  7797. margin-right: 1rem !important;
  7798. }
  7799. .mb-md-3,
  7800. .my-md-3 {
  7801. margin-bottom: 1rem !important;
  7802. }
  7803. .ml-md-3,
  7804. .mx-md-3 {
  7805. margin-left: 1rem !important;
  7806. }
  7807. .m-md-4 {
  7808. margin: 1.5rem !important;
  7809. }
  7810. .mt-md-4,
  7811. .my-md-4 {
  7812. margin-top: 1.5rem !important;
  7813. }
  7814. .mr-md-4,
  7815. .mx-md-4 {
  7816. margin-right: 1.5rem !important;
  7817. }
  7818. .mb-md-4,
  7819. .my-md-4 {
  7820. margin-bottom: 1.5rem !important;
  7821. }
  7822. .ml-md-4,
  7823. .mx-md-4 {
  7824. margin-left: 1.5rem !important;
  7825. }
  7826. .m-md-5 {
  7827. margin: 3rem !important;
  7828. }
  7829. .mt-md-5,
  7830. .my-md-5 {
  7831. margin-top: 3rem !important;
  7832. }
  7833. .mr-md-5,
  7834. .mx-md-5 {
  7835. margin-right: 3rem !important;
  7836. }
  7837. .mb-md-5,
  7838. .my-md-5 {
  7839. margin-bottom: 3rem !important;
  7840. }
  7841. .ml-md-5,
  7842. .mx-md-5 {
  7843. margin-left: 3rem !important;
  7844. }
  7845. .p-md-0 {
  7846. padding: 0 !important;
  7847. }
  7848. .pt-md-0,
  7849. .py-md-0 {
  7850. padding-top: 0 !important;
  7851. }
  7852. .pr-md-0,
  7853. .px-md-0 {
  7854. padding-right: 0 !important;
  7855. }
  7856. .pb-md-0,
  7857. .py-md-0 {
  7858. padding-bottom: 0 !important;
  7859. }
  7860. .pl-md-0,
  7861. .px-md-0 {
  7862. padding-left: 0 !important;
  7863. }
  7864. .p-md-1 {
  7865. padding: 0.25rem !important;
  7866. }
  7867. .pt-md-1,
  7868. .py-md-1 {
  7869. padding-top: 0.25rem !important;
  7870. }
  7871. .pr-md-1,
  7872. .px-md-1 {
  7873. padding-right: 0.25rem !important;
  7874. }
  7875. .pb-md-1,
  7876. .py-md-1 {
  7877. padding-bottom: 0.25rem !important;
  7878. }
  7879. .pl-md-1,
  7880. .px-md-1 {
  7881. padding-left: 0.25rem !important;
  7882. }
  7883. .p-md-2 {
  7884. padding: 0.5rem !important;
  7885. }
  7886. .pt-md-2,
  7887. .py-md-2 {
  7888. padding-top: 0.5rem !important;
  7889. }
  7890. .pr-md-2,
  7891. .px-md-2 {
  7892. padding-right: 0.5rem !important;
  7893. }
  7894. .pb-md-2,
  7895. .py-md-2 {
  7896. padding-bottom: 0.5rem !important;
  7897. }
  7898. .pl-md-2,
  7899. .px-md-2 {
  7900. padding-left: 0.5rem !important;
  7901. }
  7902. .p-md-3 {
  7903. padding: 1rem !important;
  7904. }
  7905. .pt-md-3,
  7906. .py-md-3 {
  7907. padding-top: 1rem !important;
  7908. }
  7909. .pr-md-3,
  7910. .px-md-3 {
  7911. padding-right: 1rem !important;
  7912. }
  7913. .pb-md-3,
  7914. .py-md-3 {
  7915. padding-bottom: 1rem !important;
  7916. }
  7917. .pl-md-3,
  7918. .px-md-3 {
  7919. padding-left: 1rem !important;
  7920. }
  7921. .p-md-4 {
  7922. padding: 1.5rem !important;
  7923. }
  7924. .pt-md-4,
  7925. .py-md-4 {
  7926. padding-top: 1.5rem !important;
  7927. }
  7928. .pr-md-4,
  7929. .px-md-4 {
  7930. padding-right: 1.5rem !important;
  7931. }
  7932. .pb-md-4,
  7933. .py-md-4 {
  7934. padding-bottom: 1.5rem !important;
  7935. }
  7936. .pl-md-4,
  7937. .px-md-4 {
  7938. padding-left: 1.5rem !important;
  7939. }
  7940. .p-md-5 {
  7941. padding: 3rem !important;
  7942. }
  7943. .pt-md-5,
  7944. .py-md-5 {
  7945. padding-top: 3rem !important;
  7946. }
  7947. .pr-md-5,
  7948. .px-md-5 {
  7949. padding-right: 3rem !important;
  7950. }
  7951. .pb-md-5,
  7952. .py-md-5 {
  7953. padding-bottom: 3rem !important;
  7954. }
  7955. .pl-md-5,
  7956. .px-md-5 {
  7957. padding-left: 3rem !important;
  7958. }
  7959. .m-md-n1 {
  7960. margin: -0.25rem !important;
  7961. }
  7962. .mt-md-n1,
  7963. .my-md-n1 {
  7964. margin-top: -0.25rem !important;
  7965. }
  7966. .mr-md-n1,
  7967. .mx-md-n1 {
  7968. margin-right: -0.25rem !important;
  7969. }
  7970. .mb-md-n1,
  7971. .my-md-n1 {
  7972. margin-bottom: -0.25rem !important;
  7973. }
  7974. .ml-md-n1,
  7975. .mx-md-n1 {
  7976. margin-left: -0.25rem !important;
  7977. }
  7978. .m-md-n2 {
  7979. margin: -0.5rem !important;
  7980. }
  7981. .mt-md-n2,
  7982. .my-md-n2 {
  7983. margin-top: -0.5rem !important;
  7984. }
  7985. .mr-md-n2,
  7986. .mx-md-n2 {
  7987. margin-right: -0.5rem !important;
  7988. }
  7989. .mb-md-n2,
  7990. .my-md-n2 {
  7991. margin-bottom: -0.5rem !important;
  7992. }
  7993. .ml-md-n2,
  7994. .mx-md-n2 {
  7995. margin-left: -0.5rem !important;
  7996. }
  7997. .m-md-n3 {
  7998. margin: -1rem !important;
  7999. }
  8000. .mt-md-n3,
  8001. .my-md-n3 {
  8002. margin-top: -1rem !important;
  8003. }
  8004. .mr-md-n3,
  8005. .mx-md-n3 {
  8006. margin-right: -1rem !important;
  8007. }
  8008. .mb-md-n3,
  8009. .my-md-n3 {
  8010. margin-bottom: -1rem !important;
  8011. }
  8012. .ml-md-n3,
  8013. .mx-md-n3 {
  8014. margin-left: -1rem !important;
  8015. }
  8016. .m-md-n4 {
  8017. margin: -1.5rem !important;
  8018. }
  8019. .mt-md-n4,
  8020. .my-md-n4 {
  8021. margin-top: -1.5rem !important;
  8022. }
  8023. .mr-md-n4,
  8024. .mx-md-n4 {
  8025. margin-right: -1.5rem !important;
  8026. }
  8027. .mb-md-n4,
  8028. .my-md-n4 {
  8029. margin-bottom: -1.5rem !important;
  8030. }
  8031. .ml-md-n4,
  8032. .mx-md-n4 {
  8033. margin-left: -1.5rem !important;
  8034. }
  8035. .m-md-n5 {
  8036. margin: -3rem !important;
  8037. }
  8038. .mt-md-n5,
  8039. .my-md-n5 {
  8040. margin-top: -3rem !important;
  8041. }
  8042. .mr-md-n5,
  8043. .mx-md-n5 {
  8044. margin-right: -3rem !important;
  8045. }
  8046. .mb-md-n5,
  8047. .my-md-n5 {
  8048. margin-bottom: -3rem !important;
  8049. }
  8050. .ml-md-n5,
  8051. .mx-md-n5 {
  8052. margin-left: -3rem !important;
  8053. }
  8054. .m-md-auto {
  8055. margin: auto !important;
  8056. }
  8057. .mt-md-auto,
  8058. .my-md-auto {
  8059. margin-top: auto !important;
  8060. }
  8061. .mr-md-auto,
  8062. .mx-md-auto {
  8063. margin-right: auto !important;
  8064. }
  8065. .mb-md-auto,
  8066. .my-md-auto {
  8067. margin-bottom: auto !important;
  8068. }
  8069. .ml-md-auto,
  8070. .mx-md-auto {
  8071. margin-left: auto !important;
  8072. }
  8073. }
  8074. @media (min-width: 992px) {
  8075. .m-lg-0 {
  8076. margin: 0 !important;
  8077. }
  8078. .mt-lg-0,
  8079. .my-lg-0 {
  8080. margin-top: 0 !important;
  8081. }
  8082. .mr-lg-0,
  8083. .mx-lg-0 {
  8084. margin-right: 0 !important;
  8085. }
  8086. .mb-lg-0,
  8087. .my-lg-0 {
  8088. margin-bottom: 0 !important;
  8089. }
  8090. .ml-lg-0,
  8091. .mx-lg-0 {
  8092. margin-left: 0 !important;
  8093. }
  8094. .m-lg-1 {
  8095. margin: 0.25rem !important;
  8096. }
  8097. .mt-lg-1,
  8098. .my-lg-1 {
  8099. margin-top: 0.25rem !important;
  8100. }
  8101. .mr-lg-1,
  8102. .mx-lg-1 {
  8103. margin-right: 0.25rem !important;
  8104. }
  8105. .mb-lg-1,
  8106. .my-lg-1 {
  8107. margin-bottom: 0.25rem !important;
  8108. }
  8109. .ml-lg-1,
  8110. .mx-lg-1 {
  8111. margin-left: 0.25rem !important;
  8112. }
  8113. .m-lg-2 {
  8114. margin: 0.5rem !important;
  8115. }
  8116. .mt-lg-2,
  8117. .my-lg-2 {
  8118. margin-top: 0.5rem !important;
  8119. }
  8120. .mr-lg-2,
  8121. .mx-lg-2 {
  8122. margin-right: 0.5rem !important;
  8123. }
  8124. .mb-lg-2,
  8125. .my-lg-2 {
  8126. margin-bottom: 0.5rem !important;
  8127. }
  8128. .ml-lg-2,
  8129. .mx-lg-2 {
  8130. margin-left: 0.5rem !important;
  8131. }
  8132. .m-lg-3 {
  8133. margin: 1rem !important;
  8134. }
  8135. .mt-lg-3,
  8136. .my-lg-3 {
  8137. margin-top: 1rem !important;
  8138. }
  8139. .mr-lg-3,
  8140. .mx-lg-3 {
  8141. margin-right: 1rem !important;
  8142. }
  8143. .mb-lg-3,
  8144. .my-lg-3 {
  8145. margin-bottom: 1rem !important;
  8146. }
  8147. .ml-lg-3,
  8148. .mx-lg-3 {
  8149. margin-left: 1rem !important;
  8150. }
  8151. .m-lg-4 {
  8152. margin: 1.5rem !important;
  8153. }
  8154. .mt-lg-4,
  8155. .my-lg-4 {
  8156. margin-top: 1.5rem !important;
  8157. }
  8158. .mr-lg-4,
  8159. .mx-lg-4 {
  8160. margin-right: 1.5rem !important;
  8161. }
  8162. .mb-lg-4,
  8163. .my-lg-4 {
  8164. margin-bottom: 1.5rem !important;
  8165. }
  8166. .ml-lg-4,
  8167. .mx-lg-4 {
  8168. margin-left: 1.5rem !important;
  8169. }
  8170. .m-lg-5 {
  8171. margin: 3rem !important;
  8172. }
  8173. .mt-lg-5,
  8174. .my-lg-5 {
  8175. margin-top: 3rem !important;
  8176. }
  8177. .mr-lg-5,
  8178. .mx-lg-5 {
  8179. margin-right: 3rem !important;
  8180. }
  8181. .mb-lg-5,
  8182. .my-lg-5 {
  8183. margin-bottom: 3rem !important;
  8184. }
  8185. .ml-lg-5,
  8186. .mx-lg-5 {
  8187. margin-left: 3rem !important;
  8188. }
  8189. .p-lg-0 {
  8190. padding: 0 !important;
  8191. }
  8192. .pt-lg-0,
  8193. .py-lg-0 {
  8194. padding-top: 0 !important;
  8195. }
  8196. .pr-lg-0,
  8197. .px-lg-0 {
  8198. padding-right: 0 !important;
  8199. }
  8200. .pb-lg-0,
  8201. .py-lg-0 {
  8202. padding-bottom: 0 !important;
  8203. }
  8204. .pl-lg-0,
  8205. .px-lg-0 {
  8206. padding-left: 0 !important;
  8207. }
  8208. .p-lg-1 {
  8209. padding: 0.25rem !important;
  8210. }
  8211. .pt-lg-1,
  8212. .py-lg-1 {
  8213. padding-top: 0.25rem !important;
  8214. }
  8215. .pr-lg-1,
  8216. .px-lg-1 {
  8217. padding-right: 0.25rem !important;
  8218. }
  8219. .pb-lg-1,
  8220. .py-lg-1 {
  8221. padding-bottom: 0.25rem !important;
  8222. }
  8223. .pl-lg-1,
  8224. .px-lg-1 {
  8225. padding-left: 0.25rem !important;
  8226. }
  8227. .p-lg-2 {
  8228. padding: 0.5rem !important;
  8229. }
  8230. .pt-lg-2,
  8231. .py-lg-2 {
  8232. padding-top: 0.5rem !important;
  8233. }
  8234. .pr-lg-2,
  8235. .px-lg-2 {
  8236. padding-right: 0.5rem !important;
  8237. }
  8238. .pb-lg-2,
  8239. .py-lg-2 {
  8240. padding-bottom: 0.5rem !important;
  8241. }
  8242. .pl-lg-2,
  8243. .px-lg-2 {
  8244. padding-left: 0.5rem !important;
  8245. }
  8246. .p-lg-3 {
  8247. padding: 1rem !important;
  8248. }
  8249. .pt-lg-3,
  8250. .py-lg-3 {
  8251. padding-top: 1rem !important;
  8252. }
  8253. .pr-lg-3,
  8254. .px-lg-3 {
  8255. padding-right: 1rem !important;
  8256. }
  8257. .pb-lg-3,
  8258. .py-lg-3 {
  8259. padding-bottom: 1rem !important;
  8260. }
  8261. .pl-lg-3,
  8262. .px-lg-3 {
  8263. padding-left: 1rem !important;
  8264. }
  8265. .p-lg-4 {
  8266. padding: 1.5rem !important;
  8267. }
  8268. .pt-lg-4,
  8269. .py-lg-4 {
  8270. padding-top: 1.5rem !important;
  8271. }
  8272. .pr-lg-4,
  8273. .px-lg-4 {
  8274. padding-right: 1.5rem !important;
  8275. }
  8276. .pb-lg-4,
  8277. .py-lg-4 {
  8278. padding-bottom: 1.5rem !important;
  8279. }
  8280. .pl-lg-4,
  8281. .px-lg-4 {
  8282. padding-left: 1.5rem !important;
  8283. }
  8284. .p-lg-5 {
  8285. padding: 3rem !important;
  8286. }
  8287. .pt-lg-5,
  8288. .py-lg-5 {
  8289. padding-top: 3rem !important;
  8290. }
  8291. .pr-lg-5,
  8292. .px-lg-5 {
  8293. padding-right: 3rem !important;
  8294. }
  8295. .pb-lg-5,
  8296. .py-lg-5 {
  8297. padding-bottom: 3rem !important;
  8298. }
  8299. .pl-lg-5,
  8300. .px-lg-5 {
  8301. padding-left: 3rem !important;
  8302. }
  8303. .m-lg-n1 {
  8304. margin: -0.25rem !important;
  8305. }
  8306. .mt-lg-n1,
  8307. .my-lg-n1 {
  8308. margin-top: -0.25rem !important;
  8309. }
  8310. .mr-lg-n1,
  8311. .mx-lg-n1 {
  8312. margin-right: -0.25rem !important;
  8313. }
  8314. .mb-lg-n1,
  8315. .my-lg-n1 {
  8316. margin-bottom: -0.25rem !important;
  8317. }
  8318. .ml-lg-n1,
  8319. .mx-lg-n1 {
  8320. margin-left: -0.25rem !important;
  8321. }
  8322. .m-lg-n2 {
  8323. margin: -0.5rem !important;
  8324. }
  8325. .mt-lg-n2,
  8326. .my-lg-n2 {
  8327. margin-top: -0.5rem !important;
  8328. }
  8329. .mr-lg-n2,
  8330. .mx-lg-n2 {
  8331. margin-right: -0.5rem !important;
  8332. }
  8333. .mb-lg-n2,
  8334. .my-lg-n2 {
  8335. margin-bottom: -0.5rem !important;
  8336. }
  8337. .ml-lg-n2,
  8338. .mx-lg-n2 {
  8339. margin-left: -0.5rem !important;
  8340. }
  8341. .m-lg-n3 {
  8342. margin: -1rem !important;
  8343. }
  8344. .mt-lg-n3,
  8345. .my-lg-n3 {
  8346. margin-top: -1rem !important;
  8347. }
  8348. .mr-lg-n3,
  8349. .mx-lg-n3 {
  8350. margin-right: -1rem !important;
  8351. }
  8352. .mb-lg-n3,
  8353. .my-lg-n3 {
  8354. margin-bottom: -1rem !important;
  8355. }
  8356. .ml-lg-n3,
  8357. .mx-lg-n3 {
  8358. margin-left: -1rem !important;
  8359. }
  8360. .m-lg-n4 {
  8361. margin: -1.5rem !important;
  8362. }
  8363. .mt-lg-n4,
  8364. .my-lg-n4 {
  8365. margin-top: -1.5rem !important;
  8366. }
  8367. .mr-lg-n4,
  8368. .mx-lg-n4 {
  8369. margin-right: -1.5rem !important;
  8370. }
  8371. .mb-lg-n4,
  8372. .my-lg-n4 {
  8373. margin-bottom: -1.5rem !important;
  8374. }
  8375. .ml-lg-n4,
  8376. .mx-lg-n4 {
  8377. margin-left: -1.5rem !important;
  8378. }
  8379. .m-lg-n5 {
  8380. margin: -3rem !important;
  8381. }
  8382. .mt-lg-n5,
  8383. .my-lg-n5 {
  8384. margin-top: -3rem !important;
  8385. }
  8386. .mr-lg-n5,
  8387. .mx-lg-n5 {
  8388. margin-right: -3rem !important;
  8389. }
  8390. .mb-lg-n5,
  8391. .my-lg-n5 {
  8392. margin-bottom: -3rem !important;
  8393. }
  8394. .ml-lg-n5,
  8395. .mx-lg-n5 {
  8396. margin-left: -3rem !important;
  8397. }
  8398. .m-lg-auto {
  8399. margin: auto !important;
  8400. }
  8401. .mt-lg-auto,
  8402. .my-lg-auto {
  8403. margin-top: auto !important;
  8404. }
  8405. .mr-lg-auto,
  8406. .mx-lg-auto {
  8407. margin-right: auto !important;
  8408. }
  8409. .mb-lg-auto,
  8410. .my-lg-auto {
  8411. margin-bottom: auto !important;
  8412. }
  8413. .ml-lg-auto,
  8414. .mx-lg-auto {
  8415. margin-left: auto !important;
  8416. }
  8417. }
  8418. @media (min-width: 1200px) {
  8419. .m-xl-0 {
  8420. margin: 0 !important;
  8421. }
  8422. .mt-xl-0,
  8423. .my-xl-0 {
  8424. margin-top: 0 !important;
  8425. }
  8426. .mr-xl-0,
  8427. .mx-xl-0 {
  8428. margin-right: 0 !important;
  8429. }
  8430. .mb-xl-0,
  8431. .my-xl-0 {
  8432. margin-bottom: 0 !important;
  8433. }
  8434. .ml-xl-0,
  8435. .mx-xl-0 {
  8436. margin-left: 0 !important;
  8437. }
  8438. .m-xl-1 {
  8439. margin: 0.25rem !important;
  8440. }
  8441. .mt-xl-1,
  8442. .my-xl-1 {
  8443. margin-top: 0.25rem !important;
  8444. }
  8445. .mr-xl-1,
  8446. .mx-xl-1 {
  8447. margin-right: 0.25rem !important;
  8448. }
  8449. .mb-xl-1,
  8450. .my-xl-1 {
  8451. margin-bottom: 0.25rem !important;
  8452. }
  8453. .ml-xl-1,
  8454. .mx-xl-1 {
  8455. margin-left: 0.25rem !important;
  8456. }
  8457. .m-xl-2 {
  8458. margin: 0.5rem !important;
  8459. }
  8460. .mt-xl-2,
  8461. .my-xl-2 {
  8462. margin-top: 0.5rem !important;
  8463. }
  8464. .mr-xl-2,
  8465. .mx-xl-2 {
  8466. margin-right: 0.5rem !important;
  8467. }
  8468. .mb-xl-2,
  8469. .my-xl-2 {
  8470. margin-bottom: 0.5rem !important;
  8471. }
  8472. .ml-xl-2,
  8473. .mx-xl-2 {
  8474. margin-left: 0.5rem !important;
  8475. }
  8476. .m-xl-3 {
  8477. margin: 1rem !important;
  8478. }
  8479. .mt-xl-3,
  8480. .my-xl-3 {
  8481. margin-top: 1rem !important;
  8482. }
  8483. .mr-xl-3,
  8484. .mx-xl-3 {
  8485. margin-right: 1rem !important;
  8486. }
  8487. .mb-xl-3,
  8488. .my-xl-3 {
  8489. margin-bottom: 1rem !important;
  8490. }
  8491. .ml-xl-3,
  8492. .mx-xl-3 {
  8493. margin-left: 1rem !important;
  8494. }
  8495. .m-xl-4 {
  8496. margin: 1.5rem !important;
  8497. }
  8498. .mt-xl-4,
  8499. .my-xl-4 {
  8500. margin-top: 1.5rem !important;
  8501. }
  8502. .mr-xl-4,
  8503. .mx-xl-4 {
  8504. margin-right: 1.5rem !important;
  8505. }
  8506. .mb-xl-4,
  8507. .my-xl-4 {
  8508. margin-bottom: 1.5rem !important;
  8509. }
  8510. .ml-xl-4,
  8511. .mx-xl-4 {
  8512. margin-left: 1.5rem !important;
  8513. }
  8514. .m-xl-5 {
  8515. margin: 3rem !important;
  8516. }
  8517. .mt-xl-5,
  8518. .my-xl-5 {
  8519. margin-top: 3rem !important;
  8520. }
  8521. .mr-xl-5,
  8522. .mx-xl-5 {
  8523. margin-right: 3rem !important;
  8524. }
  8525. .mb-xl-5,
  8526. .my-xl-5 {
  8527. margin-bottom: 3rem !important;
  8528. }
  8529. .ml-xl-5,
  8530. .mx-xl-5 {
  8531. margin-left: 3rem !important;
  8532. }
  8533. .p-xl-0 {
  8534. padding: 0 !important;
  8535. }
  8536. .pt-xl-0,
  8537. .py-xl-0 {
  8538. padding-top: 0 !important;
  8539. }
  8540. .pr-xl-0,
  8541. .px-xl-0 {
  8542. padding-right: 0 !important;
  8543. }
  8544. .pb-xl-0,
  8545. .py-xl-0 {
  8546. padding-bottom: 0 !important;
  8547. }
  8548. .pl-xl-0,
  8549. .px-xl-0 {
  8550. padding-left: 0 !important;
  8551. }
  8552. .p-xl-1 {
  8553. padding: 0.25rem !important;
  8554. }
  8555. .pt-xl-1,
  8556. .py-xl-1 {
  8557. padding-top: 0.25rem !important;
  8558. }
  8559. .pr-xl-1,
  8560. .px-xl-1 {
  8561. padding-right: 0.25rem !important;
  8562. }
  8563. .pb-xl-1,
  8564. .py-xl-1 {
  8565. padding-bottom: 0.25rem !important;
  8566. }
  8567. .pl-xl-1,
  8568. .px-xl-1 {
  8569. padding-left: 0.25rem !important;
  8570. }
  8571. .p-xl-2 {
  8572. padding: 0.5rem !important;
  8573. }
  8574. .pt-xl-2,
  8575. .py-xl-2 {
  8576. padding-top: 0.5rem !important;
  8577. }
  8578. .pr-xl-2,
  8579. .px-xl-2 {
  8580. padding-right: 0.5rem !important;
  8581. }
  8582. .pb-xl-2,
  8583. .py-xl-2 {
  8584. padding-bottom: 0.5rem !important;
  8585. }
  8586. .pl-xl-2,
  8587. .px-xl-2 {
  8588. padding-left: 0.5rem !important;
  8589. }
  8590. .p-xl-3 {
  8591. padding: 1rem !important;
  8592. }
  8593. .pt-xl-3,
  8594. .py-xl-3 {
  8595. padding-top: 1rem !important;
  8596. }
  8597. .pr-xl-3,
  8598. .px-xl-3 {
  8599. padding-right: 1rem !important;
  8600. }
  8601. .pb-xl-3,
  8602. .py-xl-3 {
  8603. padding-bottom: 1rem !important;
  8604. }
  8605. .pl-xl-3,
  8606. .px-xl-3 {
  8607. padding-left: 1rem !important;
  8608. }
  8609. .p-xl-4 {
  8610. padding: 1.5rem !important;
  8611. }
  8612. .pt-xl-4,
  8613. .py-xl-4 {
  8614. padding-top: 1.5rem !important;
  8615. }
  8616. .pr-xl-4,
  8617. .px-xl-4 {
  8618. padding-right: 1.5rem !important;
  8619. }
  8620. .pb-xl-4,
  8621. .py-xl-4 {
  8622. padding-bottom: 1.5rem !important;
  8623. }
  8624. .pl-xl-4,
  8625. .px-xl-4 {
  8626. padding-left: 1.5rem !important;
  8627. }
  8628. .p-xl-5 {
  8629. padding: 3rem !important;
  8630. }
  8631. .pt-xl-5,
  8632. .py-xl-5 {
  8633. padding-top: 3rem !important;
  8634. }
  8635. .pr-xl-5,
  8636. .px-xl-5 {
  8637. padding-right: 3rem !important;
  8638. }
  8639. .pb-xl-5,
  8640. .py-xl-5 {
  8641. padding-bottom: 3rem !important;
  8642. }
  8643. .pl-xl-5,
  8644. .px-xl-5 {
  8645. padding-left: 3rem !important;
  8646. }
  8647. .m-xl-n1 {
  8648. margin: -0.25rem !important;
  8649. }
  8650. .mt-xl-n1,
  8651. .my-xl-n1 {
  8652. margin-top: -0.25rem !important;
  8653. }
  8654. .mr-xl-n1,
  8655. .mx-xl-n1 {
  8656. margin-right: -0.25rem !important;
  8657. }
  8658. .mb-xl-n1,
  8659. .my-xl-n1 {
  8660. margin-bottom: -0.25rem !important;
  8661. }
  8662. .ml-xl-n1,
  8663. .mx-xl-n1 {
  8664. margin-left: -0.25rem !important;
  8665. }
  8666. .m-xl-n2 {
  8667. margin: -0.5rem !important;
  8668. }
  8669. .mt-xl-n2,
  8670. .my-xl-n2 {
  8671. margin-top: -0.5rem !important;
  8672. }
  8673. .mr-xl-n2,
  8674. .mx-xl-n2 {
  8675. margin-right: -0.5rem !important;
  8676. }
  8677. .mb-xl-n2,
  8678. .my-xl-n2 {
  8679. margin-bottom: -0.5rem !important;
  8680. }
  8681. .ml-xl-n2,
  8682. .mx-xl-n2 {
  8683. margin-left: -0.5rem !important;
  8684. }
  8685. .m-xl-n3 {
  8686. margin: -1rem !important;
  8687. }
  8688. .mt-xl-n3,
  8689. .my-xl-n3 {
  8690. margin-top: -1rem !important;
  8691. }
  8692. .mr-xl-n3,
  8693. .mx-xl-n3 {
  8694. margin-right: -1rem !important;
  8695. }
  8696. .mb-xl-n3,
  8697. .my-xl-n3 {
  8698. margin-bottom: -1rem !important;
  8699. }
  8700. .ml-xl-n3,
  8701. .mx-xl-n3 {
  8702. margin-left: -1rem !important;
  8703. }
  8704. .m-xl-n4 {
  8705. margin: -1.5rem !important;
  8706. }
  8707. .mt-xl-n4,
  8708. .my-xl-n4 {
  8709. margin-top: -1.5rem !important;
  8710. }
  8711. .mr-xl-n4,
  8712. .mx-xl-n4 {
  8713. margin-right: -1.5rem !important;
  8714. }
  8715. .mb-xl-n4,
  8716. .my-xl-n4 {
  8717. margin-bottom: -1.5rem !important;
  8718. }
  8719. .ml-xl-n4,
  8720. .mx-xl-n4 {
  8721. margin-left: -1.5rem !important;
  8722. }
  8723. .m-xl-n5 {
  8724. margin: -3rem !important;
  8725. }
  8726. .mt-xl-n5,
  8727. .my-xl-n5 {
  8728. margin-top: -3rem !important;
  8729. }
  8730. .mr-xl-n5,
  8731. .mx-xl-n5 {
  8732. margin-right: -3rem !important;
  8733. }
  8734. .mb-xl-n5,
  8735. .my-xl-n5 {
  8736. margin-bottom: -3rem !important;
  8737. }
  8738. .ml-xl-n5,
  8739. .mx-xl-n5 {
  8740. margin-left: -3rem !important;
  8741. }
  8742. .m-xl-auto {
  8743. margin: auto !important;
  8744. }
  8745. .mt-xl-auto,
  8746. .my-xl-auto {
  8747. margin-top: auto !important;
  8748. }
  8749. .mr-xl-auto,
  8750. .mx-xl-auto {
  8751. margin-right: auto !important;
  8752. }
  8753. .mb-xl-auto,
  8754. .my-xl-auto {
  8755. margin-bottom: auto !important;
  8756. }
  8757. .ml-xl-auto,
  8758. .mx-xl-auto {
  8759. margin-left: auto !important;
  8760. }
  8761. }
  8762. .text-monospace {
  8763. font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
  8764. }
  8765. .text-justify {
  8766. text-align: justify !important;
  8767. }
  8768. .text-wrap {
  8769. white-space: normal !important;
  8770. }
  8771. .text-nowrap {
  8772. white-space: nowrap !important;
  8773. }
  8774. .text-truncate {
  8775. overflow: hidden;
  8776. text-overflow: ellipsis;
  8777. white-space: nowrap;
  8778. }
  8779. .text-left {
  8780. text-align: left !important;
  8781. }
  8782. .text-right {
  8783. text-align: right !important;
  8784. }
  8785. .text-center {
  8786. text-align: center !important;
  8787. }
  8788. @media (min-width: 576px) {
  8789. .text-sm-left {
  8790. text-align: left !important;
  8791. }
  8792. .text-sm-right {
  8793. text-align: right !important;
  8794. }
  8795. .text-sm-center {
  8796. text-align: center !important;
  8797. }
  8798. }
  8799. @media (min-width: 768px) {
  8800. .text-md-left {
  8801. text-align: left !important;
  8802. }
  8803. .text-md-right {
  8804. text-align: right !important;
  8805. }
  8806. .text-md-center {
  8807. text-align: center !important;
  8808. }
  8809. }
  8810. @media (min-width: 992px) {
  8811. .text-lg-left {
  8812. text-align: left !important;
  8813. }
  8814. .text-lg-right {
  8815. text-align: right !important;
  8816. }
  8817. .text-lg-center {
  8818. text-align: center !important;
  8819. }
  8820. }
  8821. @media (min-width: 1200px) {
  8822. .text-xl-left {
  8823. text-align: left !important;
  8824. }
  8825. .text-xl-right {
  8826. text-align: right !important;
  8827. }
  8828. .text-xl-center {
  8829. text-align: center !important;
  8830. }
  8831. }
  8832. .text-lowercase {
  8833. text-transform: lowercase !important;
  8834. }
  8835. .text-uppercase {
  8836. text-transform: uppercase !important;
  8837. }
  8838. .text-capitalize {
  8839. text-transform: capitalize !important;
  8840. }
  8841. .font-weight-light {
  8842. font-weight: 300 !important;
  8843. }
  8844. .font-weight-lighter {
  8845. font-weight: lighter !important;
  8846. }
  8847. .font-weight-normal {
  8848. font-weight: 400 !important;
  8849. }
  8850. .font-weight-bold {
  8851. font-weight: 700 !important;
  8852. }
  8853. .font-weight-bolder {
  8854. font-weight: bolder !important;
  8855. }
  8856. .font-italic {
  8857. font-style: italic !important;
  8858. }
  8859. .text-white {
  8860. color: #fff !important;
  8861. }
  8862. .text-primary {
  8863. color: #007bff !important;
  8864. }
  8865. a.text-primary:hover, a.text-primary:focus {
  8866. color: #0056b3 !important;
  8867. }
  8868. .text-secondary {
  8869. color: #6c757d !important;
  8870. }
  8871. a.text-secondary:hover, a.text-secondary:focus {
  8872. color: #494f54 !important;
  8873. }
  8874. .text-success {
  8875. color: #28a745 !important;
  8876. }
  8877. a.text-success:hover, a.text-success:focus {
  8878. color: #19692c !important;
  8879. }
  8880. .text-info {
  8881. color: #17a2b8 !important;
  8882. }
  8883. a.text-info:hover, a.text-info:focus {
  8884. color: #0f6674 !important;
  8885. }
  8886. .text-warning {
  8887. color: #ffc107 !important;
  8888. }
  8889. a.text-warning:hover, a.text-warning:focus {
  8890. color: #ba8b00 !important;
  8891. }
  8892. .text-danger {
  8893. color: #dc3545 !important;
  8894. }
  8895. a.text-danger:hover, a.text-danger:focus {
  8896. color: #a71d2a !important;
  8897. }
  8898. .text-light {
  8899. color: #f8f9fa !important;
  8900. }
  8901. a.text-light:hover, a.text-light:focus {
  8902. color: #cbd3da !important;
  8903. }
  8904. .text-dark {
  8905. color: #343a40 !important;
  8906. }
  8907. a.text-dark:hover, a.text-dark:focus {
  8908. color: #121416 !important;
  8909. }
  8910. .text-body {
  8911. color: #212529 !important;
  8912. }
  8913. .text-muted {
  8914. color: #6c757d !important;
  8915. }
  8916. .text-black-50 {
  8917. color: rgba(0, 0, 0, 0.5) !important;
  8918. }
  8919. .text-white-50 {
  8920. color: rgba(255, 255, 255, 0.5) !important;
  8921. }
  8922. .text-hide {
  8923. font: 0/0 a;
  8924. color: transparent;
  8925. text-shadow: none;
  8926. background-color: transparent;
  8927. border: 0;
  8928. }
  8929. .text-decoration-none {
  8930. text-decoration: none !important;
  8931. }
  8932. .text-break {
  8933. word-break: break-word !important;
  8934. overflow-wrap: break-word !important;
  8935. }
  8936. .text-reset {
  8937. color: inherit !important;
  8938. }
  8939. .visible {
  8940. visibility: visible !important;
  8941. }
  8942. .invisible {
  8943. visibility: hidden !important;
  8944. }
  8945. @media print {
  8946. *,
  8947. *::before,
  8948. *::after {
  8949. text-shadow: none !important;
  8950. box-shadow: none !important;
  8951. }
  8952. a:not(.btn) {
  8953. text-decoration: underline;
  8954. }
  8955. abbr[title]::after {
  8956. content: " (" attr(title) ")";
  8957. }
  8958. pre {
  8959. white-space: pre-wrap !important;
  8960. }
  8961. pre,
  8962. blockquote {
  8963. border: 1px solid #adb5bd;
  8964. page-break-inside: avoid;
  8965. }
  8966. thead {
  8967. display: table-header-group;
  8968. }
  8969. tr,
  8970. img {
  8971. page-break-inside: avoid;
  8972. }
  8973. p,
  8974. h2,
  8975. h3 {
  8976. orphans: 3;
  8977. widows: 3;
  8978. }
  8979. h2,
  8980. h3 {
  8981. page-break-after: avoid;
  8982. }
  8983. @page {
  8984. size: a3;
  8985. }
  8986. body {
  8987. min-width: 992px !important;
  8988. }
  8989. .container {
  8990. min-width: 992px !important;
  8991. }
  8992. .navbar {
  8993. display: none;
  8994. }
  8995. .badge {
  8996. border: 1px solid #000;
  8997. }
  8998. .table {
  8999. border-collapse: collapse !important;
  9000. }
  9001. .table td,
  9002. .table th {
  9003. background-color: #fff !important;
  9004. }
  9005. .table-bordered th,
  9006. .table-bordered td {
  9007. border: 1px solid #dee2e6 !important;
  9008. }
  9009. .table-dark {
  9010. color: inherit;
  9011. }
  9012. .table-dark th,
  9013. .table-dark td,
  9014. .table-dark thead th,
  9015. .table-dark tbody + tbody {
  9016. border-color: #dee2e6;
  9017. }
  9018. .table .thead-dark th {
  9019. color: inherit;
  9020. border-color: #dee2e6;
  9021. }
  9022. }
  9023. /*# sourceMappingURL=bootstrap.css.map */