Guest User

bootstrap.min.css

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