Guest User

Untitled

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