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

4856 lines
70 KiB

  1. /*!
  2. * Bootstrap Utilities v5.1.3 (https://getbootstrap.com/)
  3. * Copyright 2011-2021 The Bootstrap Authors
  4. * Copyright 2011-2021 Twitter, Inc.
  5. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
  6. */
  7. .clearfix::after {
  8. display: block;
  9. clear: both;
  10. content: "";
  11. }
  12. .link-primary {
  13. color: #0d6efd;
  14. }
  15. .link-primary:hover, .link-primary:focus {
  16. color: #0a58ca;
  17. }
  18. .link-secondary {
  19. color: #6c757d;
  20. }
  21. .link-secondary:hover, .link-secondary:focus {
  22. color: #565e64;
  23. }
  24. .link-success {
  25. color: #198754;
  26. }
  27. .link-success:hover, .link-success:focus {
  28. color: #146c43;
  29. }
  30. .link-info {
  31. color: #0dcaf0;
  32. }
  33. .link-info:hover, .link-info:focus {
  34. color: #3dd5f3;
  35. }
  36. .link-warning {
  37. color: #ffc107;
  38. }
  39. .link-warning:hover, .link-warning:focus {
  40. color: #ffcd39;
  41. }
  42. .link-danger {
  43. color: #dc3545;
  44. }
  45. .link-danger:hover, .link-danger:focus {
  46. color: #b02a37;
  47. }
  48. .link-light {
  49. color: #f8f9fa;
  50. }
  51. .link-light:hover, .link-light:focus {
  52. color: #f9fafb;
  53. }
  54. .link-dark {
  55. color: #212529;
  56. }
  57. .link-dark:hover, .link-dark:focus {
  58. color: #1a1e21;
  59. }
  60. .ratio {
  61. position: relative;
  62. width: 100%;
  63. }
  64. .ratio::before {
  65. display: block;
  66. padding-top: var(--bs-aspect-ratio);
  67. content: "";
  68. }
  69. .ratio > * {
  70. position: absolute;
  71. top: 0;
  72. right: 0;
  73. width: 100%;
  74. height: 100%;
  75. }
  76. .ratio-1x1 {
  77. --bs-aspect-ratio: 100%;
  78. }
  79. .ratio-4x3 {
  80. --bs-aspect-ratio: 75%;
  81. }
  82. .ratio-16x9 {
  83. --bs-aspect-ratio: 56.25%;
  84. }
  85. .ratio-21x9 {
  86. --bs-aspect-ratio: 42.8571428571%;
  87. }
  88. .fixed-top {
  89. position: fixed;
  90. top: 0;
  91. left: 0;
  92. right: 0;
  93. z-index: 1030;
  94. }
  95. .fixed-bottom {
  96. position: fixed;
  97. left: 0;
  98. bottom: 0;
  99. right: 0;
  100. z-index: 1030;
  101. }
  102. .sticky-top {
  103. position: -webkit-sticky;
  104. position: sticky;
  105. top: 0;
  106. z-index: 1020;
  107. }
  108. @media (min-width: 576px) {
  109. .sticky-sm-top {
  110. position: -webkit-sticky;
  111. position: sticky;
  112. top: 0;
  113. z-index: 1020;
  114. }
  115. }
  116. @media (min-width: 768px) {
  117. .sticky-md-top {
  118. position: -webkit-sticky;
  119. position: sticky;
  120. top: 0;
  121. z-index: 1020;
  122. }
  123. }
  124. @media (min-width: 992px) {
  125. .sticky-lg-top {
  126. position: -webkit-sticky;
  127. position: sticky;
  128. top: 0;
  129. z-index: 1020;
  130. }
  131. }
  132. @media (min-width: 1200px) {
  133. .sticky-xl-top {
  134. position: -webkit-sticky;
  135. position: sticky;
  136. top: 0;
  137. z-index: 1020;
  138. }
  139. }
  140. @media (min-width: 1400px) {
  141. .sticky-xxl-top {
  142. position: -webkit-sticky;
  143. position: sticky;
  144. top: 0;
  145. z-index: 1020;
  146. }
  147. }
  148. .hstack {
  149. display: flex;
  150. flex-direction: row;
  151. align-items: center;
  152. align-self: stretch;
  153. }
  154. .vstack {
  155. display: flex;
  156. flex: 1 1 auto;
  157. flex-direction: column;
  158. align-self: stretch;
  159. }
  160. .visually-hidden,
  161. .visually-hidden-focusable:not(:focus):not(:focus-within) {
  162. position: absolute !important;
  163. width: 1px !important;
  164. height: 1px !important;
  165. padding: 0 !important;
  166. margin: -1px !important;
  167. overflow: hidden !important;
  168. clip: rect(0, 0, 0, 0) !important;
  169. white-space: nowrap !important;
  170. border: 0 !important;
  171. }
  172. .stretched-link::after {
  173. position: absolute;
  174. top: 0;
  175. left: 0;
  176. bottom: 0;
  177. right: 0;
  178. z-index: 1;
  179. content: "";
  180. }
  181. .text-truncate {
  182. overflow: hidden;
  183. text-overflow: ellipsis;
  184. white-space: nowrap;
  185. }
  186. .vr {
  187. display: inline-block;
  188. align-self: stretch;
  189. width: 1px;
  190. min-height: 1em;
  191. background-color: currentColor;
  192. opacity: 0.25;
  193. }
  194. .align-baseline {
  195. vertical-align: baseline !important;
  196. }
  197. .align-top {
  198. vertical-align: top !important;
  199. }
  200. .align-middle {
  201. vertical-align: middle !important;
  202. }
  203. .align-bottom {
  204. vertical-align: bottom !important;
  205. }
  206. .align-text-bottom {
  207. vertical-align: text-bottom !important;
  208. }
  209. .align-text-top {
  210. vertical-align: text-top !important;
  211. }
  212. .float-start {
  213. float: right !important;
  214. }
  215. .float-end {
  216. float: left !important;
  217. }
  218. .float-none {
  219. float: none !important;
  220. }
  221. .opacity-0 {
  222. opacity: 0 !important;
  223. }
  224. .opacity-25 {
  225. opacity: 0.25 !important;
  226. }
  227. .opacity-50 {
  228. opacity: 0.5 !important;
  229. }
  230. .opacity-75 {
  231. opacity: 0.75 !important;
  232. }
  233. .opacity-100 {
  234. opacity: 1 !important;
  235. }
  236. .overflow-auto {
  237. overflow: auto !important;
  238. }
  239. .overflow-hidden {
  240. overflow: hidden !important;
  241. }
  242. .overflow-visible {
  243. overflow: visible !important;
  244. }
  245. .overflow-scroll {
  246. overflow: scroll !important;
  247. }
  248. .d-inline {
  249. display: inline !important;
  250. }
  251. .d-inline-block {
  252. display: inline-block !important;
  253. }
  254. .d-block {
  255. display: block !important;
  256. }
  257. .d-grid {
  258. display: grid !important;
  259. }
  260. .d-table {
  261. display: table !important;
  262. }
  263. .d-table-row {
  264. display: table-row !important;
  265. }
  266. .d-table-cell {
  267. display: table-cell !important;
  268. }
  269. .d-flex {
  270. display: flex !important;
  271. }
  272. .d-inline-flex {
  273. display: inline-flex !important;
  274. }
  275. .d-none {
  276. display: none !important;
  277. }
  278. .shadow {
  279. box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  280. }
  281. .shadow-sm {
  282. box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  283. }
  284. .shadow-lg {
  285. box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
  286. }
  287. .shadow-none {
  288. box-shadow: none !important;
  289. }
  290. .position-static {
  291. position: static !important;
  292. }
  293. .position-relative {
  294. position: relative !important;
  295. }
  296. .position-absolute {
  297. position: absolute !important;
  298. }
  299. .position-fixed {
  300. position: fixed !important;
  301. }
  302. .position-sticky {
  303. position: -webkit-sticky !important;
  304. position: sticky !important;
  305. }
  306. .top-0 {
  307. top: 0 !important;
  308. }
  309. .top-50 {
  310. top: 50% !important;
  311. }
  312. .top-100 {
  313. top: 100% !important;
  314. }
  315. .bottom-0 {
  316. bottom: 0 !important;
  317. }
  318. .bottom-50 {
  319. bottom: 50% !important;
  320. }
  321. .bottom-100 {
  322. bottom: 100% !important;
  323. }
  324. .start-0 {
  325. right: 0 !important;
  326. }
  327. .start-50 {
  328. right: 50% !important;
  329. }
  330. .start-100 {
  331. right: 100% !important;
  332. }
  333. .end-0 {
  334. left: 0 !important;
  335. }
  336. .end-50 {
  337. left: 50% !important;
  338. }
  339. .end-100 {
  340. left: 100% !important;
  341. }
  342. .translate-middle {
  343. transform: translate(50%, -50%) !important;
  344. }
  345. .translate-middle-x {
  346. transform: translateX(50%) !important;
  347. }
  348. .translate-middle-y {
  349. transform: translateY(-50%) !important;
  350. }
  351. .border {
  352. border: 1px solid #dee2e6 !important;
  353. }
  354. .border-0 {
  355. border: 0 !important;
  356. }
  357. .border-top {
  358. border-top: 1px solid #dee2e6 !important;
  359. }
  360. .border-top-0 {
  361. border-top: 0 !important;
  362. }
  363. .border-end {
  364. border-left: 1px solid #dee2e6 !important;
  365. }
  366. .border-end-0 {
  367. border-left: 0 !important;
  368. }
  369. .border-bottom {
  370. border-bottom: 1px solid #dee2e6 !important;
  371. }
  372. .border-bottom-0 {
  373. border-bottom: 0 !important;
  374. }
  375. .border-start {
  376. border-right: 1px solid #dee2e6 !important;
  377. }
  378. .border-start-0 {
  379. border-right: 0 !important;
  380. }
  381. .border-primary {
  382. border-color: #0d6efd !important;
  383. }
  384. .border-secondary {
  385. border-color: #6c757d !important;
  386. }
  387. .border-success {
  388. border-color: #198754 !important;
  389. }
  390. .border-info {
  391. border-color: #0dcaf0 !important;
  392. }
  393. .border-warning {
  394. border-color: #ffc107 !important;
  395. }
  396. .border-danger {
  397. border-color: #dc3545 !important;
  398. }
  399. .border-light {
  400. border-color: #f8f9fa !important;
  401. }
  402. .border-dark {
  403. border-color: #212529 !important;
  404. }
  405. .border-white {
  406. border-color: #fff !important;
  407. }
  408. .border-1 {
  409. border-width: 1px !important;
  410. }
  411. .border-2 {
  412. border-width: 2px !important;
  413. }
  414. .border-3 {
  415. border-width: 3px !important;
  416. }
  417. .border-4 {
  418. border-width: 4px !important;
  419. }
  420. .border-5 {
  421. border-width: 5px !important;
  422. }
  423. .w-25 {
  424. width: 25% !important;
  425. }
  426. .w-50 {
  427. width: 50% !important;
  428. }
  429. .w-75 {
  430. width: 75% !important;
  431. }
  432. .w-100 {
  433. width: 100% !important;
  434. }
  435. .w-auto {
  436. width: auto !important;
  437. }
  438. .mw-100 {
  439. max-width: 100% !important;
  440. }
  441. .vw-100 {
  442. width: 100vw !important;
  443. }
  444. .min-vw-100 {
  445. min-width: 100vw !important;
  446. }
  447. .h-25 {
  448. height: 25% !important;
  449. }
  450. .h-50 {
  451. height: 50% !important;
  452. }
  453. .h-75 {
  454. height: 75% !important;
  455. }
  456. .h-100 {
  457. height: 100% !important;
  458. }
  459. .h-auto {
  460. height: auto !important;
  461. }
  462. .mh-100 {
  463. max-height: 100% !important;
  464. }
  465. .vh-100 {
  466. height: 100vh !important;
  467. }
  468. .min-vh-100 {
  469. min-height: 100vh !important;
  470. }
  471. .flex-fill {
  472. flex: 1 1 auto !important;
  473. }
  474. .flex-row {
  475. flex-direction: row !important;
  476. }
  477. .flex-column {
  478. flex-direction: column !important;
  479. }
  480. .flex-row-reverse {
  481. flex-direction: row-reverse !important;
  482. }
  483. .flex-column-reverse {
  484. flex-direction: column-reverse !important;
  485. }
  486. .flex-grow-0 {
  487. flex-grow: 0 !important;
  488. }
  489. .flex-grow-1 {
  490. flex-grow: 1 !important;
  491. }
  492. .flex-shrink-0 {
  493. flex-shrink: 0 !important;
  494. }
  495. .flex-shrink-1 {
  496. flex-shrink: 1 !important;
  497. }
  498. .flex-wrap {
  499. flex-wrap: wrap !important;
  500. }
  501. .flex-nowrap {
  502. flex-wrap: nowrap !important;
  503. }
  504. .flex-wrap-reverse {
  505. flex-wrap: wrap-reverse !important;
  506. }
  507. .gap-0 {
  508. gap: 0 !important;
  509. }
  510. .gap-1 {
  511. gap: 0.25rem !important;
  512. }
  513. .gap-2 {
  514. gap: 0.5rem !important;
  515. }
  516. .gap-3 {
  517. gap: 1rem !important;
  518. }
  519. .gap-4 {
  520. gap: 1.5rem !important;
  521. }
  522. .gap-5 {
  523. gap: 3rem !important;
  524. }
  525. .justify-content-start {
  526. justify-content: flex-start !important;
  527. }
  528. .justify-content-end {
  529. justify-content: flex-end !important;
  530. }
  531. .justify-content-center {
  532. justify-content: center !important;
  533. }
  534. .justify-content-between {
  535. justify-content: space-between !important;
  536. }
  537. .justify-content-around {
  538. justify-content: space-around !important;
  539. }
  540. .justify-content-evenly {
  541. justify-content: space-evenly !important;
  542. }
  543. .align-items-start {
  544. align-items: flex-start !important;
  545. }
  546. .align-items-end {
  547. align-items: flex-end !important;
  548. }
  549. .align-items-center {
  550. align-items: center !important;
  551. }
  552. .align-items-baseline {
  553. align-items: baseline !important;
  554. }
  555. .align-items-stretch {
  556. align-items: stretch !important;
  557. }
  558. .align-content-start {
  559. align-content: flex-start !important;
  560. }
  561. .align-content-end {
  562. align-content: flex-end !important;
  563. }
  564. .align-content-center {
  565. align-content: center !important;
  566. }
  567. .align-content-between {
  568. align-content: space-between !important;
  569. }
  570. .align-content-around {
  571. align-content: space-around !important;
  572. }
  573. .align-content-stretch {
  574. align-content: stretch !important;
  575. }
  576. .align-self-auto {
  577. align-self: auto !important;
  578. }
  579. .align-self-start {
  580. align-self: flex-start !important;
  581. }
  582. .align-self-end {
  583. align-self: flex-end !important;
  584. }
  585. .align-self-center {
  586. align-self: center !important;
  587. }
  588. .align-self-baseline {
  589. align-self: baseline !important;
  590. }
  591. .align-self-stretch {
  592. align-self: stretch !important;
  593. }
  594. .order-first {
  595. order: -1 !important;
  596. }
  597. .order-0 {
  598. order: 0 !important;
  599. }
  600. .order-1 {
  601. order: 1 !important;
  602. }
  603. .order-2 {
  604. order: 2 !important;
  605. }
  606. .order-3 {
  607. order: 3 !important;
  608. }
  609. .order-4 {
  610. order: 4 !important;
  611. }
  612. .order-5 {
  613. order: 5 !important;
  614. }
  615. .order-last {
  616. order: 6 !important;
  617. }
  618. .m-0 {
  619. margin: 0 !important;
  620. }
  621. .m-1 {
  622. margin: 0.25rem !important;
  623. }
  624. .m-2 {
  625. margin: 0.5rem !important;
  626. }
  627. .m-3 {
  628. margin: 1rem !important;
  629. }
  630. .m-4 {
  631. margin: 1.5rem !important;
  632. }
  633. .m-5 {
  634. margin: 3rem !important;
  635. }
  636. .m-auto {
  637. margin: auto !important;
  638. }
  639. .mx-0 {
  640. margin-left: 0 !important;
  641. margin-right: 0 !important;
  642. }
  643. .mx-1 {
  644. margin-left: 0.25rem !important;
  645. margin-right: 0.25rem !important;
  646. }
  647. .mx-2 {
  648. margin-left: 0.5rem !important;
  649. margin-right: 0.5rem !important;
  650. }
  651. .mx-3 {
  652. margin-left: 1rem !important;
  653. margin-right: 1rem !important;
  654. }
  655. .mx-4 {
  656. margin-left: 1.5rem !important;
  657. margin-right: 1.5rem !important;
  658. }
  659. .mx-5 {
  660. margin-left: 3rem !important;
  661. margin-right: 3rem !important;
  662. }
  663. .mx-auto {
  664. margin-left: auto !important;
  665. margin-right: auto !important;
  666. }
  667. .my-0 {
  668. margin-top: 0 !important;
  669. margin-bottom: 0 !important;
  670. }
  671. .my-1 {
  672. margin-top: 0.25rem !important;
  673. margin-bottom: 0.25rem !important;
  674. }
  675. .my-2 {
  676. margin-top: 0.5rem !important;
  677. margin-bottom: 0.5rem !important;
  678. }
  679. .my-3 {
  680. margin-top: 1rem !important;
  681. margin-bottom: 1rem !important;
  682. }
  683. .my-4 {
  684. margin-top: 1.5rem !important;
  685. margin-bottom: 1.5rem !important;
  686. }
  687. .my-5 {
  688. margin-top: 3rem !important;
  689. margin-bottom: 3rem !important;
  690. }
  691. .my-auto {
  692. margin-top: auto !important;
  693. margin-bottom: auto !important;
  694. }
  695. .mt-0 {
  696. margin-top: 0 !important;
  697. }
  698. .mt-1 {
  699. margin-top: 0.25rem !important;
  700. }
  701. .mt-2 {
  702. margin-top: 0.5rem !important;
  703. }
  704. .mt-3 {
  705. margin-top: 1rem !important;
  706. }
  707. .mt-4 {
  708. margin-top: 1.5rem !important;
  709. }
  710. .mt-5 {
  711. margin-top: 3rem !important;
  712. }
  713. .mt-auto {
  714. margin-top: auto !important;
  715. }
  716. .me-0 {
  717. margin-left: 0 !important;
  718. }
  719. .me-1 {
  720. margin-left: 0.25rem !important;
  721. }
  722. .me-2 {
  723. margin-left: 0.5rem !important;
  724. }
  725. .me-3 {
  726. margin-left: 1rem !important;
  727. }
  728. .me-4 {
  729. margin-left: 1.5rem !important;
  730. }
  731. .me-5 {
  732. margin-left: 3rem !important;
  733. }
  734. .me-auto {
  735. margin-left: auto !important;
  736. }
  737. .mb-0 {
  738. margin-bottom: 0 !important;
  739. }
  740. .mb-1 {
  741. margin-bottom: 0.25rem !important;
  742. }
  743. .mb-2 {
  744. margin-bottom: 0.5rem !important;
  745. }
  746. .mb-3 {
  747. margin-bottom: 1rem !important;
  748. }
  749. .mb-4 {
  750. margin-bottom: 1.5rem !important;
  751. }
  752. .mb-5 {
  753. margin-bottom: 3rem !important;
  754. }
  755. .mb-auto {
  756. margin-bottom: auto !important;
  757. }
  758. .ms-0 {
  759. margin-right: 0 !important;
  760. }
  761. .ms-1 {
  762. margin-right: 0.25rem !important;
  763. }
  764. .ms-2 {
  765. margin-right: 0.5rem !important;
  766. }
  767. .ms-3 {
  768. margin-right: 1rem !important;
  769. }
  770. .ms-4 {
  771. margin-right: 1.5rem !important;
  772. }
  773. .ms-5 {
  774. margin-right: 3rem !important;
  775. }
  776. .ms-auto {
  777. margin-right: auto !important;
  778. }
  779. .p-0 {
  780. padding: 0 !important;
  781. }
  782. .p-1 {
  783. padding: 0.25rem !important;
  784. }
  785. .p-2 {
  786. padding: 0.5rem !important;
  787. }
  788. .p-3 {
  789. padding: 1rem !important;
  790. }
  791. .p-4 {
  792. padding: 1.5rem !important;
  793. }
  794. .p-5 {
  795. padding: 3rem !important;
  796. }
  797. .px-0 {
  798. padding-left: 0 !important;
  799. padding-right: 0 !important;
  800. }
  801. .px-1 {
  802. padding-left: 0.25rem !important;
  803. padding-right: 0.25rem !important;
  804. }
  805. .px-2 {
  806. padding-left: 0.5rem !important;
  807. padding-right: 0.5rem !important;
  808. }
  809. .px-3 {
  810. padding-left: 1rem !important;
  811. padding-right: 1rem !important;
  812. }
  813. .px-4 {
  814. padding-left: 1.5rem !important;
  815. padding-right: 1.5rem !important;
  816. }
  817. .px-5 {
  818. padding-left: 3rem !important;
  819. padding-right: 3rem !important;
  820. }
  821. .py-0 {
  822. padding-top: 0 !important;
  823. padding-bottom: 0 !important;
  824. }
  825. .py-1 {
  826. padding-top: 0.25rem !important;
  827. padding-bottom: 0.25rem !important;
  828. }
  829. .py-2 {
  830. padding-top: 0.5rem !important;
  831. padding-bottom: 0.5rem !important;
  832. }
  833. .py-3 {
  834. padding-top: 1rem !important;
  835. padding-bottom: 1rem !important;
  836. }
  837. .py-4 {
  838. padding-top: 1.5rem !important;
  839. padding-bottom: 1.5rem !important;
  840. }
  841. .py-5 {
  842. padding-top: 3rem !important;
  843. padding-bottom: 3rem !important;
  844. }
  845. .pt-0 {
  846. padding-top: 0 !important;
  847. }
  848. .pt-1 {
  849. padding-top: 0.25rem !important;
  850. }
  851. .pt-2 {
  852. padding-top: 0.5rem !important;
  853. }
  854. .pt-3 {
  855. padding-top: 1rem !important;
  856. }
  857. .pt-4 {
  858. padding-top: 1.5rem !important;
  859. }
  860. .pt-5 {
  861. padding-top: 3rem !important;
  862. }
  863. .pe-0 {
  864. padding-left: 0 !important;
  865. }
  866. .pe-1 {
  867. padding-left: 0.25rem !important;
  868. }
  869. .pe-2 {
  870. padding-left: 0.5rem !important;
  871. }
  872. .pe-3 {
  873. padding-left: 1rem !important;
  874. }
  875. .pe-4 {
  876. padding-left: 1.5rem !important;
  877. }
  878. .pe-5 {
  879. padding-left: 3rem !important;
  880. }
  881. .pb-0 {
  882. padding-bottom: 0 !important;
  883. }
  884. .pb-1 {
  885. padding-bottom: 0.25rem !important;
  886. }
  887. .pb-2 {
  888. padding-bottom: 0.5rem !important;
  889. }
  890. .pb-3 {
  891. padding-bottom: 1rem !important;
  892. }
  893. .pb-4 {
  894. padding-bottom: 1.5rem !important;
  895. }
  896. .pb-5 {
  897. padding-bottom: 3rem !important;
  898. }
  899. .ps-0 {
  900. padding-right: 0 !important;
  901. }
  902. .ps-1 {
  903. padding-right: 0.25rem !important;
  904. }
  905. .ps-2 {
  906. padding-right: 0.5rem !important;
  907. }
  908. .ps-3 {
  909. padding-right: 1rem !important;
  910. }
  911. .ps-4 {
  912. padding-right: 1.5rem !important;
  913. }
  914. .ps-5 {
  915. padding-right: 3rem !important;
  916. }
  917. .font-monospace {
  918. font-family: var(--bs-font-monospace) !important;
  919. }
  920. .fs-1 {
  921. font-size: calc(1.375rem + 1.5vw) !important;
  922. }
  923. .fs-2 {
  924. font-size: calc(1.325rem + 0.9vw) !important;
  925. }
  926. .fs-3 {
  927. font-size: calc(1.3rem + 0.6vw) !important;
  928. }
  929. .fs-4 {
  930. font-size: calc(1.275rem + 0.3vw) !important;
  931. }
  932. .fs-5 {
  933. font-size: 1.25rem !important;
  934. }
  935. .fs-6 {
  936. font-size: 1rem !important;
  937. }
  938. .fst-italic {
  939. font-style: italic !important;
  940. }
  941. .fst-normal {
  942. font-style: normal !important;
  943. }
  944. .fw-light {
  945. font-weight: 300 !important;
  946. }
  947. .fw-lighter {
  948. font-weight: lighter !important;
  949. }
  950. .fw-normal {
  951. font-weight: 400 !important;
  952. }
  953. .fw-bold {
  954. font-weight: 700 !important;
  955. }
  956. .fw-bolder {
  957. font-weight: bolder !important;
  958. }
  959. .lh-1 {
  960. line-height: 1 !important;
  961. }
  962. .lh-sm {
  963. line-height: 1.25 !important;
  964. }
  965. .lh-base {
  966. line-height: 1.5 !important;
  967. }
  968. .lh-lg {
  969. line-height: 2 !important;
  970. }
  971. .text-start {
  972. text-align: right !important;
  973. }
  974. .text-end {
  975. text-align: left !important;
  976. }
  977. .text-center {
  978. text-align: center !important;
  979. }
  980. .text-decoration-none {
  981. text-decoration: none !important;
  982. }
  983. .text-decoration-underline {
  984. text-decoration: underline !important;
  985. }
  986. .text-decoration-line-through {
  987. text-decoration: line-through !important;
  988. }
  989. .text-lowercase {
  990. text-transform: lowercase !important;
  991. }
  992. .text-uppercase {
  993. text-transform: uppercase !important;
  994. }
  995. .text-capitalize {
  996. text-transform: capitalize !important;
  997. }
  998. .text-wrap {
  999. white-space: normal !important;
  1000. }
  1001. .text-nowrap {
  1002. white-space: nowrap !important;
  1003. }
  1004. .text-primary {
  1005. --bs-text-opacity: 1;
  1006. color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
  1007. }
  1008. .text-secondary {
  1009. --bs-text-opacity: 1;
  1010. color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
  1011. }
  1012. .text-success {
  1013. --bs-text-opacity: 1;
  1014. color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
  1015. }
  1016. .text-info {
  1017. --bs-text-opacity: 1;
  1018. color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
  1019. }
  1020. .text-warning {
  1021. --bs-text-opacity: 1;
  1022. color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
  1023. }
  1024. .text-danger {
  1025. --bs-text-opacity: 1;
  1026. color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
  1027. }
  1028. .text-light {
  1029. --bs-text-opacity: 1;
  1030. color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
  1031. }
  1032. .text-dark {
  1033. --bs-text-opacity: 1;
  1034. color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
  1035. }
  1036. .text-black {
  1037. --bs-text-opacity: 1;
  1038. color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
  1039. }
  1040. .text-white {
  1041. --bs-text-opacity: 1;
  1042. color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
  1043. }
  1044. .text-body {
  1045. --bs-text-opacity: 1;
  1046. color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
  1047. }
  1048. .text-muted {
  1049. --bs-text-opacity: 1;
  1050. color: #6c757d !important;
  1051. }
  1052. .text-black-50 {
  1053. --bs-text-opacity: 1;
  1054. color: rgba(0, 0, 0, 0.5) !important;
  1055. }
  1056. .text-white-50 {
  1057. --bs-text-opacity: 1;
  1058. color: rgba(255, 255, 255, 0.5) !important;
  1059. }
  1060. .text-reset {
  1061. --bs-text-opacity: 1;
  1062. color: inherit !important;
  1063. }
  1064. .text-opacity-25 {
  1065. --bs-text-opacity: 0.25;
  1066. }
  1067. .text-opacity-50 {
  1068. --bs-text-opacity: 0.5;
  1069. }
  1070. .text-opacity-75 {
  1071. --bs-text-opacity: 0.75;
  1072. }
  1073. .text-opacity-100 {
  1074. --bs-text-opacity: 1;
  1075. }
  1076. .bg-primary {
  1077. --bs-bg-opacity: 1;
  1078. background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
  1079. }
  1080. .bg-secondary {
  1081. --bs-bg-opacity: 1;
  1082. background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
  1083. }
  1084. .bg-success {
  1085. --bs-bg-opacity: 1;
  1086. background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
  1087. }
  1088. .bg-info {
  1089. --bs-bg-opacity: 1;
  1090. background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
  1091. }
  1092. .bg-warning {
  1093. --bs-bg-opacity: 1;
  1094. background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
  1095. }
  1096. .bg-danger {
  1097. --bs-bg-opacity: 1;
  1098. background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
  1099. }
  1100. .bg-light {
  1101. --bs-bg-opacity: 1;
  1102. background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
  1103. }
  1104. .bg-dark {
  1105. --bs-bg-opacity: 1;
  1106. background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
  1107. }
  1108. .bg-black {
  1109. --bs-bg-opacity: 1;
  1110. background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
  1111. }
  1112. .bg-white {
  1113. --bs-bg-opacity: 1;
  1114. background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
  1115. }
  1116. .bg-body {
  1117. --bs-bg-opacity: 1;
  1118. background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
  1119. }
  1120. .bg-transparent {
  1121. --bs-bg-opacity: 1;
  1122. background-color: transparent !important;
  1123. }
  1124. .bg-opacity-10 {
  1125. --bs-bg-opacity: 0.1;
  1126. }
  1127. .bg-opacity-25 {
  1128. --bs-bg-opacity: 0.25;
  1129. }
  1130. .bg-opacity-50 {
  1131. --bs-bg-opacity: 0.5;
  1132. }
  1133. .bg-opacity-75 {
  1134. --bs-bg-opacity: 0.75;
  1135. }
  1136. .bg-opacity-100 {
  1137. --bs-bg-opacity: 1;
  1138. }
  1139. .bg-gradient {
  1140. background-image: var(--bs-gradient) !important;
  1141. }
  1142. .user-select-all {
  1143. -webkit-user-select: all !important;
  1144. -moz-user-select: all !important;
  1145. user-select: all !important;
  1146. }
  1147. .user-select-auto {
  1148. -webkit-user-select: auto !important;
  1149. -moz-user-select: auto !important;
  1150. user-select: auto !important;
  1151. }
  1152. .user-select-none {
  1153. -webkit-user-select: none !important;
  1154. -moz-user-select: none !important;
  1155. user-select: none !important;
  1156. }
  1157. .pe-none {
  1158. pointer-events: none !important;
  1159. }
  1160. .pe-auto {
  1161. pointer-events: auto !important;
  1162. }
  1163. .rounded {
  1164. border-radius: 0.25rem !important;
  1165. }
  1166. .rounded-0 {
  1167. border-radius: 0 !important;
  1168. }
  1169. .rounded-1 {
  1170. border-radius: 0.2rem !important;
  1171. }
  1172. .rounded-2 {
  1173. border-radius: 0.25rem !important;
  1174. }
  1175. .rounded-3 {
  1176. border-radius: 0.3rem !important;
  1177. }
  1178. .rounded-circle {
  1179. border-radius: 50% !important;
  1180. }
  1181. .rounded-pill {
  1182. border-radius: 50rem !important;
  1183. }
  1184. .rounded-top {
  1185. border-top-right-radius: 0.25rem !important;
  1186. border-top-left-radius: 0.25rem !important;
  1187. }
  1188. .rounded-end {
  1189. border-top-left-radius: 0.25rem !important;
  1190. border-bottom-left-radius: 0.25rem !important;
  1191. }
  1192. .rounded-bottom {
  1193. border-bottom-left-radius: 0.25rem !important;
  1194. border-bottom-right-radius: 0.25rem !important;
  1195. }
  1196. .rounded-start {
  1197. border-bottom-right-radius: 0.25rem !important;
  1198. border-top-right-radius: 0.25rem !important;
  1199. }
  1200. .visible {
  1201. visibility: visible !important;
  1202. }
  1203. .invisible {
  1204. visibility: hidden !important;
  1205. }
  1206. @media (min-width: 576px) {
  1207. .float-sm-start {
  1208. float: right !important;
  1209. }
  1210. .float-sm-end {
  1211. float: left !important;
  1212. }
  1213. .float-sm-none {
  1214. float: none !important;
  1215. }
  1216. .d-sm-inline {
  1217. display: inline !important;
  1218. }
  1219. .d-sm-inline-block {
  1220. display: inline-block !important;
  1221. }
  1222. .d-sm-block {
  1223. display: block !important;
  1224. }
  1225. .d-sm-grid {
  1226. display: grid !important;
  1227. }
  1228. .d-sm-table {
  1229. display: table !important;
  1230. }
  1231. .d-sm-table-row {
  1232. display: table-row !important;
  1233. }
  1234. .d-sm-table-cell {
  1235. display: table-cell !important;
  1236. }
  1237. .d-sm-flex {
  1238. display: flex !important;
  1239. }
  1240. .d-sm-inline-flex {
  1241. display: inline-flex !important;
  1242. }
  1243. .d-sm-none {
  1244. display: none !important;
  1245. }
  1246. .flex-sm-fill {
  1247. flex: 1 1 auto !important;
  1248. }
  1249. .flex-sm-row {
  1250. flex-direction: row !important;
  1251. }
  1252. .flex-sm-column {
  1253. flex-direction: column !important;
  1254. }
  1255. .flex-sm-row-reverse {
  1256. flex-direction: row-reverse !important;
  1257. }
  1258. .flex-sm-column-reverse {
  1259. flex-direction: column-reverse !important;
  1260. }
  1261. .flex-sm-grow-0 {
  1262. flex-grow: 0 !important;
  1263. }
  1264. .flex-sm-grow-1 {
  1265. flex-grow: 1 !important;
  1266. }
  1267. .flex-sm-shrink-0 {
  1268. flex-shrink: 0 !important;
  1269. }
  1270. .flex-sm-shrink-1 {
  1271. flex-shrink: 1 !important;
  1272. }
  1273. .flex-sm-wrap {
  1274. flex-wrap: wrap !important;
  1275. }
  1276. .flex-sm-nowrap {
  1277. flex-wrap: nowrap !important;
  1278. }
  1279. .flex-sm-wrap-reverse {
  1280. flex-wrap: wrap-reverse !important;
  1281. }
  1282. .gap-sm-0 {
  1283. gap: 0 !important;
  1284. }
  1285. .gap-sm-1 {
  1286. gap: 0.25rem !important;
  1287. }
  1288. .gap-sm-2 {
  1289. gap: 0.5rem !important;
  1290. }
  1291. .gap-sm-3 {
  1292. gap: 1rem !important;
  1293. }
  1294. .gap-sm-4 {
  1295. gap: 1.5rem !important;
  1296. }
  1297. .gap-sm-5 {
  1298. gap: 3rem !important;
  1299. }
  1300. .justify-content-sm-start {
  1301. justify-content: flex-start !important;
  1302. }
  1303. .justify-content-sm-end {
  1304. justify-content: flex-end !important;
  1305. }
  1306. .justify-content-sm-center {
  1307. justify-content: center !important;
  1308. }
  1309. .justify-content-sm-between {
  1310. justify-content: space-between !important;
  1311. }
  1312. .justify-content-sm-around {
  1313. justify-content: space-around !important;
  1314. }
  1315. .justify-content-sm-evenly {
  1316. justify-content: space-evenly !important;
  1317. }
  1318. .align-items-sm-start {
  1319. align-items: flex-start !important;
  1320. }
  1321. .align-items-sm-end {
  1322. align-items: flex-end !important;
  1323. }
  1324. .align-items-sm-center {
  1325. align-items: center !important;
  1326. }
  1327. .align-items-sm-baseline {
  1328. align-items: baseline !important;
  1329. }
  1330. .align-items-sm-stretch {
  1331. align-items: stretch !important;
  1332. }
  1333. .align-content-sm-start {
  1334. align-content: flex-start !important;
  1335. }
  1336. .align-content-sm-end {
  1337. align-content: flex-end !important;
  1338. }
  1339. .align-content-sm-center {
  1340. align-content: center !important;
  1341. }
  1342. .align-content-sm-between {
  1343. align-content: space-between !important;
  1344. }
  1345. .align-content-sm-around {
  1346. align-content: space-around !important;
  1347. }
  1348. .align-content-sm-stretch {
  1349. align-content: stretch !important;
  1350. }
  1351. .align-self-sm-auto {
  1352. align-self: auto !important;
  1353. }
  1354. .align-self-sm-start {
  1355. align-self: flex-start !important;
  1356. }
  1357. .align-self-sm-end {
  1358. align-self: flex-end !important;
  1359. }
  1360. .align-self-sm-center {
  1361. align-self: center !important;
  1362. }
  1363. .align-self-sm-baseline {
  1364. align-self: baseline !important;
  1365. }
  1366. .align-self-sm-stretch {
  1367. align-self: stretch !important;
  1368. }
  1369. .order-sm-first {
  1370. order: -1 !important;
  1371. }
  1372. .order-sm-0 {
  1373. order: 0 !important;
  1374. }
  1375. .order-sm-1 {
  1376. order: 1 !important;
  1377. }
  1378. .order-sm-2 {
  1379. order: 2 !important;
  1380. }
  1381. .order-sm-3 {
  1382. order: 3 !important;
  1383. }
  1384. .order-sm-4 {
  1385. order: 4 !important;
  1386. }
  1387. .order-sm-5 {
  1388. order: 5 !important;
  1389. }
  1390. .order-sm-last {
  1391. order: 6 !important;
  1392. }
  1393. .m-sm-0 {
  1394. margin: 0 !important;
  1395. }
  1396. .m-sm-1 {
  1397. margin: 0.25rem !important;
  1398. }
  1399. .m-sm-2 {
  1400. margin: 0.5rem !important;
  1401. }
  1402. .m-sm-3 {
  1403. margin: 1rem !important;
  1404. }
  1405. .m-sm-4 {
  1406. margin: 1.5rem !important;
  1407. }
  1408. .m-sm-5 {
  1409. margin: 3rem !important;
  1410. }
  1411. .m-sm-auto {
  1412. margin: auto !important;
  1413. }
  1414. .mx-sm-0 {
  1415. margin-left: 0 !important;
  1416. margin-right: 0 !important;
  1417. }
  1418. .mx-sm-1 {
  1419. margin-left: 0.25rem !important;
  1420. margin-right: 0.25rem !important;
  1421. }
  1422. .mx-sm-2 {
  1423. margin-left: 0.5rem !important;
  1424. margin-right: 0.5rem !important;
  1425. }
  1426. .mx-sm-3 {
  1427. margin-left: 1rem !important;
  1428. margin-right: 1rem !important;
  1429. }
  1430. .mx-sm-4 {
  1431. margin-left: 1.5rem !important;
  1432. margin-right: 1.5rem !important;
  1433. }
  1434. .mx-sm-5 {
  1435. margin-left: 3rem !important;
  1436. margin-right: 3rem !important;
  1437. }
  1438. .mx-sm-auto {
  1439. margin-left: auto !important;
  1440. margin-right: auto !important;
  1441. }
  1442. .my-sm-0 {
  1443. margin-top: 0 !important;
  1444. margin-bottom: 0 !important;
  1445. }
  1446. .my-sm-1 {
  1447. margin-top: 0.25rem !important;
  1448. margin-bottom: 0.25rem !important;
  1449. }
  1450. .my-sm-2 {
  1451. margin-top: 0.5rem !important;
  1452. margin-bottom: 0.5rem !important;
  1453. }
  1454. .my-sm-3 {
  1455. margin-top: 1rem !important;
  1456. margin-bottom: 1rem !important;
  1457. }
  1458. .my-sm-4 {
  1459. margin-top: 1.5rem !important;
  1460. margin-bottom: 1.5rem !important;
  1461. }
  1462. .my-sm-5 {
  1463. margin-top: 3rem !important;
  1464. margin-bottom: 3rem !important;
  1465. }
  1466. .my-sm-auto {
  1467. margin-top: auto !important;
  1468. margin-bottom: auto !important;
  1469. }
  1470. .mt-sm-0 {
  1471. margin-top: 0 !important;
  1472. }
  1473. .mt-sm-1 {
  1474. margin-top: 0.25rem !important;
  1475. }
  1476. .mt-sm-2 {
  1477. margin-top: 0.5rem !important;
  1478. }
  1479. .mt-sm-3 {
  1480. margin-top: 1rem !important;
  1481. }
  1482. .mt-sm-4 {
  1483. margin-top: 1.5rem !important;
  1484. }
  1485. .mt-sm-5 {
  1486. margin-top: 3rem !important;
  1487. }
  1488. .mt-sm-auto {
  1489. margin-top: auto !important;
  1490. }
  1491. .me-sm-0 {
  1492. margin-left: 0 !important;
  1493. }
  1494. .me-sm-1 {
  1495. margin-left: 0.25rem !important;
  1496. }
  1497. .me-sm-2 {
  1498. margin-left: 0.5rem !important;
  1499. }
  1500. .me-sm-3 {
  1501. margin-left: 1rem !important;
  1502. }
  1503. .me-sm-4 {
  1504. margin-left: 1.5rem !important;
  1505. }
  1506. .me-sm-5 {
  1507. margin-left: 3rem !important;
  1508. }
  1509. .me-sm-auto {
  1510. margin-left: auto !important;
  1511. }
  1512. .mb-sm-0 {
  1513. margin-bottom: 0 !important;
  1514. }
  1515. .mb-sm-1 {
  1516. margin-bottom: 0.25rem !important;
  1517. }
  1518. .mb-sm-2 {
  1519. margin-bottom: 0.5rem !important;
  1520. }
  1521. .mb-sm-3 {
  1522. margin-bottom: 1rem !important;
  1523. }
  1524. .mb-sm-4 {
  1525. margin-bottom: 1.5rem !important;
  1526. }
  1527. .mb-sm-5 {
  1528. margin-bottom: 3rem !important;
  1529. }
  1530. .mb-sm-auto {
  1531. margin-bottom: auto !important;
  1532. }
  1533. .ms-sm-0 {
  1534. margin-right: 0 !important;
  1535. }
  1536. .ms-sm-1 {
  1537. margin-right: 0.25rem !important;
  1538. }
  1539. .ms-sm-2 {
  1540. margin-right: 0.5rem !important;
  1541. }
  1542. .ms-sm-3 {
  1543. margin-right: 1rem !important;
  1544. }
  1545. .ms-sm-4 {
  1546. margin-right: 1.5rem !important;
  1547. }
  1548. .ms-sm-5 {
  1549. margin-right: 3rem !important;
  1550. }
  1551. .ms-sm-auto {
  1552. margin-right: auto !important;
  1553. }
  1554. .p-sm-0 {
  1555. padding: 0 !important;
  1556. }
  1557. .p-sm-1 {
  1558. padding: 0.25rem !important;
  1559. }
  1560. .p-sm-2 {
  1561. padding: 0.5rem !important;
  1562. }
  1563. .p-sm-3 {
  1564. padding: 1rem !important;
  1565. }
  1566. .p-sm-4 {
  1567. padding: 1.5rem !important;
  1568. }
  1569. .p-sm-5 {
  1570. padding: 3rem !important;
  1571. }
  1572. .px-sm-0 {
  1573. padding-left: 0 !important;
  1574. padding-right: 0 !important;
  1575. }
  1576. .px-sm-1 {
  1577. padding-left: 0.25rem !important;
  1578. padding-right: 0.25rem !important;
  1579. }
  1580. .px-sm-2 {
  1581. padding-left: 0.5rem !important;
  1582. padding-right: 0.5rem !important;
  1583. }
  1584. .px-sm-3 {
  1585. padding-left: 1rem !important;
  1586. padding-right: 1rem !important;
  1587. }
  1588. .px-sm-4 {
  1589. padding-left: 1.5rem !important;
  1590. padding-right: 1.5rem !important;
  1591. }
  1592. .px-sm-5 {
  1593. padding-left: 3rem !important;
  1594. padding-right: 3rem !important;
  1595. }
  1596. .py-sm-0 {
  1597. padding-top: 0 !important;
  1598. padding-bottom: 0 !important;
  1599. }
  1600. .py-sm-1 {
  1601. padding-top: 0.25rem !important;
  1602. padding-bottom: 0.25rem !important;
  1603. }
  1604. .py-sm-2 {
  1605. padding-top: 0.5rem !important;
  1606. padding-bottom: 0.5rem !important;
  1607. }
  1608. .py-sm-3 {
  1609. padding-top: 1rem !important;
  1610. padding-bottom: 1rem !important;
  1611. }
  1612. .py-sm-4 {
  1613. padding-top: 1.5rem !important;
  1614. padding-bottom: 1.5rem !important;
  1615. }
  1616. .py-sm-5 {
  1617. padding-top: 3rem !important;
  1618. padding-bottom: 3rem !important;
  1619. }
  1620. .pt-sm-0 {
  1621. padding-top: 0 !important;
  1622. }
  1623. .pt-sm-1 {
  1624. padding-top: 0.25rem !important;
  1625. }
  1626. .pt-sm-2 {
  1627. padding-top: 0.5rem !important;
  1628. }
  1629. .pt-sm-3 {
  1630. padding-top: 1rem !important;
  1631. }
  1632. .pt-sm-4 {
  1633. padding-top: 1.5rem !important;
  1634. }
  1635. .pt-sm-5 {
  1636. padding-top: 3rem !important;
  1637. }
  1638. .pe-sm-0 {
  1639. padding-left: 0 !important;
  1640. }
  1641. .pe-sm-1 {
  1642. padding-left: 0.25rem !important;
  1643. }
  1644. .pe-sm-2 {
  1645. padding-left: 0.5rem !important;
  1646. }
  1647. .pe-sm-3 {
  1648. padding-left: 1rem !important;
  1649. }
  1650. .pe-sm-4 {
  1651. padding-left: 1.5rem !important;
  1652. }
  1653. .pe-sm-5 {
  1654. padding-left: 3rem !important;
  1655. }
  1656. .pb-sm-0 {
  1657. padding-bottom: 0 !important;
  1658. }
  1659. .pb-sm-1 {
  1660. padding-bottom: 0.25rem !important;
  1661. }
  1662. .pb-sm-2 {
  1663. padding-bottom: 0.5rem !important;
  1664. }
  1665. .pb-sm-3 {
  1666. padding-bottom: 1rem !important;
  1667. }
  1668. .pb-sm-4 {
  1669. padding-bottom: 1.5rem !important;
  1670. }
  1671. .pb-sm-5 {
  1672. padding-bottom: 3rem !important;
  1673. }
  1674. .ps-sm-0 {
  1675. padding-right: 0 !important;
  1676. }
  1677. .ps-sm-1 {
  1678. padding-right: 0.25rem !important;
  1679. }
  1680. .ps-sm-2 {
  1681. padding-right: 0.5rem !important;
  1682. }
  1683. .ps-sm-3 {
  1684. padding-right: 1rem !important;
  1685. }
  1686. .ps-sm-4 {
  1687. padding-right: 1.5rem !important;
  1688. }
  1689. .ps-sm-5 {
  1690. padding-right: 3rem !important;
  1691. }
  1692. .text-sm-start {
  1693. text-align: right !important;
  1694. }
  1695. .text-sm-end {
  1696. text-align: left !important;
  1697. }
  1698. .text-sm-center {
  1699. text-align: center !important;
  1700. }
  1701. }
  1702. @media (min-width: 768px) {
  1703. .float-md-start {
  1704. float: right !important;
  1705. }
  1706. .float-md-end {
  1707. float: left !important;
  1708. }
  1709. .float-md-none {
  1710. float: none !important;
  1711. }
  1712. .d-md-inline {
  1713. display: inline !important;
  1714. }
  1715. .d-md-inline-block {
  1716. display: inline-block !important;
  1717. }
  1718. .d-md-block {
  1719. display: block !important;
  1720. }
  1721. .d-md-grid {
  1722. display: grid !important;
  1723. }
  1724. .d-md-table {
  1725. display: table !important;
  1726. }
  1727. .d-md-table-row {
  1728. display: table-row !important;
  1729. }
  1730. .d-md-table-cell {
  1731. display: table-cell !important;
  1732. }
  1733. .d-md-flex {
  1734. display: flex !important;
  1735. }
  1736. .d-md-inline-flex {
  1737. display: inline-flex !important;
  1738. }
  1739. .d-md-none {
  1740. display: none !important;
  1741. }
  1742. .flex-md-fill {
  1743. flex: 1 1 auto !important;
  1744. }
  1745. .flex-md-row {
  1746. flex-direction: row !important;
  1747. }
  1748. .flex-md-column {
  1749. flex-direction: column !important;
  1750. }
  1751. .flex-md-row-reverse {
  1752. flex-direction: row-reverse !important;
  1753. }
  1754. .flex-md-column-reverse {
  1755. flex-direction: column-reverse !important;
  1756. }
  1757. .flex-md-grow-0 {
  1758. flex-grow: 0 !important;
  1759. }
  1760. .flex-md-grow-1 {
  1761. flex-grow: 1 !important;
  1762. }
  1763. .flex-md-shrink-0 {
  1764. flex-shrink: 0 !important;
  1765. }
  1766. .flex-md-shrink-1 {
  1767. flex-shrink: 1 !important;
  1768. }
  1769. .flex-md-wrap {
  1770. flex-wrap: wrap !important;
  1771. }
  1772. .flex-md-nowrap {
  1773. flex-wrap: nowrap !important;
  1774. }
  1775. .flex-md-wrap-reverse {
  1776. flex-wrap: wrap-reverse !important;
  1777. }
  1778. .gap-md-0 {
  1779. gap: 0 !important;
  1780. }
  1781. .gap-md-1 {
  1782. gap: 0.25rem !important;
  1783. }
  1784. .gap-md-2 {
  1785. gap: 0.5rem !important;
  1786. }
  1787. .gap-md-3 {
  1788. gap: 1rem !important;
  1789. }
  1790. .gap-md-4 {
  1791. gap: 1.5rem !important;
  1792. }
  1793. .gap-md-5 {
  1794. gap: 3rem !important;
  1795. }
  1796. .justify-content-md-start {
  1797. justify-content: flex-start !important;
  1798. }
  1799. .justify-content-md-end {
  1800. justify-content: flex-end !important;
  1801. }
  1802. .justify-content-md-center {
  1803. justify-content: center !important;
  1804. }
  1805. .justify-content-md-between {
  1806. justify-content: space-between !important;
  1807. }
  1808. .justify-content-md-around {
  1809. justify-content: space-around !important;
  1810. }
  1811. .justify-content-md-evenly {
  1812. justify-content: space-evenly !important;
  1813. }
  1814. .align-items-md-start {
  1815. align-items: flex-start !important;
  1816. }
  1817. .align-items-md-end {
  1818. align-items: flex-end !important;
  1819. }
  1820. .align-items-md-center {
  1821. align-items: center !important;
  1822. }
  1823. .align-items-md-baseline {
  1824. align-items: baseline !important;
  1825. }
  1826. .align-items-md-stretch {
  1827. align-items: stretch !important;
  1828. }
  1829. .align-content-md-start {
  1830. align-content: flex-start !important;
  1831. }
  1832. .align-content-md-end {
  1833. align-content: flex-end !important;
  1834. }
  1835. .align-content-md-center {
  1836. align-content: center !important;
  1837. }
  1838. .align-content-md-between {
  1839. align-content: space-between !important;
  1840. }
  1841. .align-content-md-around {
  1842. align-content: space-around !important;
  1843. }
  1844. .align-content-md-stretch {
  1845. align-content: stretch !important;
  1846. }
  1847. .align-self-md-auto {
  1848. align-self: auto !important;
  1849. }
  1850. .align-self-md-start {
  1851. align-self: flex-start !important;
  1852. }
  1853. .align-self-md-end {
  1854. align-self: flex-end !important;
  1855. }
  1856. .align-self-md-center {
  1857. align-self: center !important;
  1858. }
  1859. .align-self-md-baseline {
  1860. align-self: baseline !important;
  1861. }
  1862. .align-self-md-stretch {
  1863. align-self: stretch !important;
  1864. }
  1865. .order-md-first {
  1866. order: -1 !important;
  1867. }
  1868. .order-md-0 {
  1869. order: 0 !important;
  1870. }
  1871. .order-md-1 {
  1872. order: 1 !important;
  1873. }
  1874. .order-md-2 {
  1875. order: 2 !important;
  1876. }
  1877. .order-md-3 {
  1878. order: 3 !important;
  1879. }
  1880. .order-md-4 {
  1881. order: 4 !important;
  1882. }
  1883. .order-md-5 {
  1884. order: 5 !important;
  1885. }
  1886. .order-md-last {
  1887. order: 6 !important;
  1888. }
  1889. .m-md-0 {
  1890. margin: 0 !important;
  1891. }
  1892. .m-md-1 {
  1893. margin: 0.25rem !important;
  1894. }
  1895. .m-md-2 {
  1896. margin: 0.5rem !important;
  1897. }
  1898. .m-md-3 {
  1899. margin: 1rem !important;
  1900. }
  1901. .m-md-4 {
  1902. margin: 1.5rem !important;
  1903. }
  1904. .m-md-5 {
  1905. margin: 3rem !important;
  1906. }
  1907. .m-md-auto {
  1908. margin: auto !important;
  1909. }
  1910. .mx-md-0 {
  1911. margin-left: 0 !important;
  1912. margin-right: 0 !important;
  1913. }
  1914. .mx-md-1 {
  1915. margin-left: 0.25rem !important;
  1916. margin-right: 0.25rem !important;
  1917. }
  1918. .mx-md-2 {
  1919. margin-left: 0.5rem !important;
  1920. margin-right: 0.5rem !important;
  1921. }
  1922. .mx-md-3 {
  1923. margin-left: 1rem !important;
  1924. margin-right: 1rem !important;
  1925. }
  1926. .mx-md-4 {
  1927. margin-left: 1.5rem !important;
  1928. margin-right: 1.5rem !important;
  1929. }
  1930. .mx-md-5 {
  1931. margin-left: 3rem !important;
  1932. margin-right: 3rem !important;
  1933. }
  1934. .mx-md-auto {
  1935. margin-left: auto !important;
  1936. margin-right: auto !important;
  1937. }
  1938. .my-md-0 {
  1939. margin-top: 0 !important;
  1940. margin-bottom: 0 !important;
  1941. }
  1942. .my-md-1 {
  1943. margin-top: 0.25rem !important;
  1944. margin-bottom: 0.25rem !important;
  1945. }
  1946. .my-md-2 {
  1947. margin-top: 0.5rem !important;
  1948. margin-bottom: 0.5rem !important;
  1949. }
  1950. .my-md-3 {
  1951. margin-top: 1rem !important;
  1952. margin-bottom: 1rem !important;
  1953. }
  1954. .my-md-4 {
  1955. margin-top: 1.5rem !important;
  1956. margin-bottom: 1.5rem !important;
  1957. }
  1958. .my-md-5 {
  1959. margin-top: 3rem !important;
  1960. margin-bottom: 3rem !important;
  1961. }
  1962. .my-md-auto {
  1963. margin-top: auto !important;
  1964. margin-bottom: auto !important;
  1965. }
  1966. .mt-md-0 {
  1967. margin-top: 0 !important;
  1968. }
  1969. .mt-md-1 {
  1970. margin-top: 0.25rem !important;
  1971. }
  1972. .mt-md-2 {
  1973. margin-top: 0.5rem !important;
  1974. }
  1975. .mt-md-3 {
  1976. margin-top: 1rem !important;
  1977. }
  1978. .mt-md-4 {
  1979. margin-top: 1.5rem !important;
  1980. }
  1981. .mt-md-5 {
  1982. margin-top: 3rem !important;
  1983. }
  1984. .mt-md-auto {
  1985. margin-top: auto !important;
  1986. }
  1987. .me-md-0 {
  1988. margin-left: 0 !important;
  1989. }
  1990. .me-md-1 {
  1991. margin-left: 0.25rem !important;
  1992. }
  1993. .me-md-2 {
  1994. margin-left: 0.5rem !important;
  1995. }
  1996. .me-md-3 {
  1997. margin-left: 1rem !important;
  1998. }
  1999. .me-md-4 {
  2000. margin-left: 1.5rem !important;
  2001. }
  2002. .me-md-5 {
  2003. margin-left: 3rem !important;
  2004. }
  2005. .me-md-auto {
  2006. margin-left: auto !important;
  2007. }
  2008. .mb-md-0 {
  2009. margin-bottom: 0 !important;
  2010. }
  2011. .mb-md-1 {
  2012. margin-bottom: 0.25rem !important;
  2013. }
  2014. .mb-md-2 {
  2015. margin-bottom: 0.5rem !important;
  2016. }
  2017. .mb-md-3 {
  2018. margin-bottom: 1rem !important;
  2019. }
  2020. .mb-md-4 {
  2021. margin-bottom: 1.5rem !important;
  2022. }
  2023. .mb-md-5 {
  2024. margin-bottom: 3rem !important;
  2025. }
  2026. .mb-md-auto {
  2027. margin-bottom: auto !important;
  2028. }
  2029. .ms-md-0 {
  2030. margin-right: 0 !important;
  2031. }
  2032. .ms-md-1 {
  2033. margin-right: 0.25rem !important;
  2034. }
  2035. .ms-md-2 {
  2036. margin-right: 0.5rem !important;
  2037. }
  2038. .ms-md-3 {
  2039. margin-right: 1rem !important;
  2040. }
  2041. .ms-md-4 {
  2042. margin-right: 1.5rem !important;
  2043. }
  2044. .ms-md-5 {
  2045. margin-right: 3rem !important;
  2046. }
  2047. .ms-md-auto {
  2048. margin-right: auto !important;
  2049. }
  2050. .p-md-0 {
  2051. padding: 0 !important;
  2052. }
  2053. .p-md-1 {
  2054. padding: 0.25rem !important;
  2055. }
  2056. .p-md-2 {
  2057. padding: 0.5rem !important;
  2058. }
  2059. .p-md-3 {
  2060. padding: 1rem !important;
  2061. }
  2062. .p-md-4 {
  2063. padding: 1.5rem !important;
  2064. }
  2065. .p-md-5 {
  2066. padding: 3rem !important;
  2067. }
  2068. .px-md-0 {
  2069. padding-left: 0 !important;
  2070. padding-right: 0 !important;
  2071. }
  2072. .px-md-1 {
  2073. padding-left: 0.25rem !important;
  2074. padding-right: 0.25rem !important;
  2075. }
  2076. .px-md-2 {
  2077. padding-left: 0.5rem !important;
  2078. padding-right: 0.5rem !important;
  2079. }
  2080. .px-md-3 {
  2081. padding-left: 1rem !important;
  2082. padding-right: 1rem !important;
  2083. }
  2084. .px-md-4 {
  2085. padding-left: 1.5rem !important;
  2086. padding-right: 1.5rem !important;
  2087. }
  2088. .px-md-5 {
  2089. padding-left: 3rem !important;
  2090. padding-right: 3rem !important;
  2091. }
  2092. .py-md-0 {
  2093. padding-top: 0 !important;
  2094. padding-bottom: 0 !important;
  2095. }
  2096. .py-md-1 {
  2097. padding-top: 0.25rem !important;
  2098. padding-bottom: 0.25rem !important;
  2099. }
  2100. .py-md-2 {
  2101. padding-top: 0.5rem !important;
  2102. padding-bottom: 0.5rem !important;
  2103. }
  2104. .py-md-3 {
  2105. padding-top: 1rem !important;
  2106. padding-bottom: 1rem !important;
  2107. }
  2108. .py-md-4 {
  2109. padding-top: 1.5rem !important;
  2110. padding-bottom: 1.5rem !important;
  2111. }
  2112. .py-md-5 {
  2113. padding-top: 3rem !important;
  2114. padding-bottom: 3rem !important;
  2115. }
  2116. .pt-md-0 {
  2117. padding-top: 0 !important;
  2118. }
  2119. .pt-md-1 {
  2120. padding-top: 0.25rem !important;
  2121. }
  2122. .pt-md-2 {
  2123. padding-top: 0.5rem !important;
  2124. }
  2125. .pt-md-3 {
  2126. padding-top: 1rem !important;
  2127. }
  2128. .pt-md-4 {
  2129. padding-top: 1.5rem !important;
  2130. }
  2131. .pt-md-5 {
  2132. padding-top: 3rem !important;
  2133. }
  2134. .pe-md-0 {
  2135. padding-left: 0 !important;
  2136. }
  2137. .pe-md-1 {
  2138. padding-left: 0.25rem !important;
  2139. }
  2140. .pe-md-2 {
  2141. padding-left: 0.5rem !important;
  2142. }
  2143. .pe-md-3 {
  2144. padding-left: 1rem !important;
  2145. }
  2146. .pe-md-4 {
  2147. padding-left: 1.5rem !important;
  2148. }
  2149. .pe-md-5 {
  2150. padding-left: 3rem !important;
  2151. }
  2152. .pb-md-0 {
  2153. padding-bottom: 0 !important;
  2154. }
  2155. .pb-md-1 {
  2156. padding-bottom: 0.25rem !important;
  2157. }
  2158. .pb-md-2 {
  2159. padding-bottom: 0.5rem !important;
  2160. }
  2161. .pb-md-3 {
  2162. padding-bottom: 1rem !important;
  2163. }
  2164. .pb-md-4 {
  2165. padding-bottom: 1.5rem !important;
  2166. }
  2167. .pb-md-5 {
  2168. padding-bottom: 3rem !important;
  2169. }
  2170. .ps-md-0 {
  2171. padding-right: 0 !important;
  2172. }
  2173. .ps-md-1 {
  2174. padding-right: 0.25rem !important;
  2175. }
  2176. .ps-md-2 {
  2177. padding-right: 0.5rem !important;
  2178. }
  2179. .ps-md-3 {
  2180. padding-right: 1rem !important;
  2181. }
  2182. .ps-md-4 {
  2183. padding-right: 1.5rem !important;
  2184. }
  2185. .ps-md-5 {
  2186. padding-right: 3rem !important;
  2187. }
  2188. .text-md-start {
  2189. text-align: right !important;
  2190. }
  2191. .text-md-end {
  2192. text-align: left !important;
  2193. }
  2194. .text-md-center {
  2195. text-align: center !important;
  2196. }
  2197. }
  2198. @media (min-width: 992px) {
  2199. .float-lg-start {
  2200. float: right !important;
  2201. }
  2202. .float-lg-end {
  2203. float: left !important;
  2204. }
  2205. .float-lg-none {
  2206. float: none !important;
  2207. }
  2208. .d-lg-inline {
  2209. display: inline !important;
  2210. }
  2211. .d-lg-inline-block {
  2212. display: inline-block !important;
  2213. }
  2214. .d-lg-block {
  2215. display: block !important;
  2216. }
  2217. .d-lg-grid {
  2218. display: grid !important;
  2219. }
  2220. .d-lg-table {
  2221. display: table !important;
  2222. }
  2223. .d-lg-table-row {
  2224. display: table-row !important;
  2225. }
  2226. .d-lg-table-cell {
  2227. display: table-cell !important;
  2228. }
  2229. .d-lg-flex {
  2230. display: flex !important;
  2231. }
  2232. .d-lg-inline-flex {
  2233. display: inline-flex !important;
  2234. }
  2235. .d-lg-none {
  2236. display: none !important;
  2237. }
  2238. .flex-lg-fill {
  2239. flex: 1 1 auto !important;
  2240. }
  2241. .flex-lg-row {
  2242. flex-direction: row !important;
  2243. }
  2244. .flex-lg-column {
  2245. flex-direction: column !important;
  2246. }
  2247. .flex-lg-row-reverse {
  2248. flex-direction: row-reverse !important;
  2249. }
  2250. .flex-lg-column-reverse {
  2251. flex-direction: column-reverse !important;
  2252. }
  2253. .flex-lg-grow-0 {
  2254. flex-grow: 0 !important;
  2255. }
  2256. .flex-lg-grow-1 {
  2257. flex-grow: 1 !important;
  2258. }
  2259. .flex-lg-shrink-0 {
  2260. flex-shrink: 0 !important;
  2261. }
  2262. .flex-lg-shrink-1 {
  2263. flex-shrink: 1 !important;
  2264. }
  2265. .flex-lg-wrap {
  2266. flex-wrap: wrap !important;
  2267. }
  2268. .flex-lg-nowrap {
  2269. flex-wrap: nowrap !important;
  2270. }
  2271. .flex-lg-wrap-reverse {
  2272. flex-wrap: wrap-reverse !important;
  2273. }
  2274. .gap-lg-0 {
  2275. gap: 0 !important;
  2276. }
  2277. .gap-lg-1 {
  2278. gap: 0.25rem !important;
  2279. }
  2280. .gap-lg-2 {
  2281. gap: 0.5rem !important;
  2282. }
  2283. .gap-lg-3 {
  2284. gap: 1rem !important;
  2285. }
  2286. .gap-lg-4 {
  2287. gap: 1.5rem !important;
  2288. }
  2289. .gap-lg-5 {
  2290. gap: 3rem !important;
  2291. }
  2292. .justify-content-lg-start {
  2293. justify-content: flex-start !important;
  2294. }
  2295. .justify-content-lg-end {
  2296. justify-content: flex-end !important;
  2297. }
  2298. .justify-content-lg-center {
  2299. justify-content: center !important;
  2300. }
  2301. .justify-content-lg-between {
  2302. justify-content: space-between !important;
  2303. }
  2304. .justify-content-lg-around {
  2305. justify-content: space-around !important;
  2306. }
  2307. .justify-content-lg-evenly {
  2308. justify-content: space-evenly !important;
  2309. }
  2310. .align-items-lg-start {
  2311. align-items: flex-start !important;
  2312. }
  2313. .align-items-lg-end {
  2314. align-items: flex-end !important;
  2315. }
  2316. .align-items-lg-center {
  2317. align-items: center !important;
  2318. }
  2319. .align-items-lg-baseline {
  2320. align-items: baseline !important;
  2321. }
  2322. .align-items-lg-stretch {
  2323. align-items: stretch !important;
  2324. }
  2325. .align-content-lg-start {
  2326. align-content: flex-start !important;
  2327. }
  2328. .align-content-lg-end {
  2329. align-content: flex-end !important;
  2330. }
  2331. .align-content-lg-center {
  2332. align-content: center !important;
  2333. }
  2334. .align-content-lg-between {
  2335. align-content: space-between !important;
  2336. }
  2337. .align-content-lg-around {
  2338. align-content: space-around !important;
  2339. }
  2340. .align-content-lg-stretch {
  2341. align-content: stretch !important;
  2342. }
  2343. .align-self-lg-auto {
  2344. align-self: auto !important;
  2345. }
  2346. .align-self-lg-start {
  2347. align-self: flex-start !important;
  2348. }
  2349. .align-self-lg-end {
  2350. align-self: flex-end !important;
  2351. }
  2352. .align-self-lg-center {
  2353. align-self: center !important;
  2354. }
  2355. .align-self-lg-baseline {
  2356. align-self: baseline !important;
  2357. }
  2358. .align-self-lg-stretch {
  2359. align-self: stretch !important;
  2360. }
  2361. .order-lg-first {
  2362. order: -1 !important;
  2363. }
  2364. .order-lg-0 {
  2365. order: 0 !important;
  2366. }
  2367. .order-lg-1 {
  2368. order: 1 !important;
  2369. }
  2370. .order-lg-2 {
  2371. order: 2 !important;
  2372. }
  2373. .order-lg-3 {
  2374. order: 3 !important;
  2375. }
  2376. .order-lg-4 {
  2377. order: 4 !important;
  2378. }
  2379. .order-lg-5 {
  2380. order: 5 !important;
  2381. }
  2382. .order-lg-last {
  2383. order: 6 !important;
  2384. }
  2385. .m-lg-0 {
  2386. margin: 0 !important;
  2387. }
  2388. .m-lg-1 {
  2389. margin: 0.25rem !important;
  2390. }
  2391. .m-lg-2 {
  2392. margin: 0.5rem !important;
  2393. }
  2394. .m-lg-3 {
  2395. margin: 1rem !important;
  2396. }
  2397. .m-lg-4 {
  2398. margin: 1.5rem !important;
  2399. }
  2400. .m-lg-5 {
  2401. margin: 3rem !important;
  2402. }
  2403. .m-lg-auto {
  2404. margin: auto !important;
  2405. }
  2406. .mx-lg-0 {
  2407. margin-left: 0 !important;
  2408. margin-right: 0 !important;
  2409. }
  2410. .mx-lg-1 {
  2411. margin-left: 0.25rem !important;
  2412. margin-right: 0.25rem !important;
  2413. }
  2414. .mx-lg-2 {
  2415. margin-left: 0.5rem !important;
  2416. margin-right: 0.5rem !important;
  2417. }
  2418. .mx-lg-3 {
  2419. margin-left: 1rem !important;
  2420. margin-right: 1rem !important;
  2421. }
  2422. .mx-lg-4 {
  2423. margin-left: 1.5rem !important;
  2424. margin-right: 1.5rem !important;
  2425. }
  2426. .mx-lg-5 {
  2427. margin-left: 3rem !important;
  2428. margin-right: 3rem !important;
  2429. }
  2430. .mx-lg-auto {
  2431. margin-left: auto !important;
  2432. margin-right: auto !important;
  2433. }
  2434. .my-lg-0 {
  2435. margin-top: 0 !important;
  2436. margin-bottom: 0 !important;
  2437. }
  2438. .my-lg-1 {
  2439. margin-top: 0.25rem !important;
  2440. margin-bottom: 0.25rem !important;
  2441. }
  2442. .my-lg-2 {
  2443. margin-top: 0.5rem !important;
  2444. margin-bottom: 0.5rem !important;
  2445. }
  2446. .my-lg-3 {
  2447. margin-top: 1rem !important;
  2448. margin-bottom: 1rem !important;
  2449. }
  2450. .my-lg-4 {
  2451. margin-top: 1.5rem !important;
  2452. margin-bottom: 1.5rem !important;
  2453. }
  2454. .my-lg-5 {
  2455. margin-top: 3rem !important;
  2456. margin-bottom: 3rem !important;
  2457. }
  2458. .my-lg-auto {
  2459. margin-top: auto !important;
  2460. margin-bottom: auto !important;
  2461. }
  2462. .mt-lg-0 {
  2463. margin-top: 0 !important;
  2464. }
  2465. .mt-lg-1 {
  2466. margin-top: 0.25rem !important;
  2467. }
  2468. .mt-lg-2 {
  2469. margin-top: 0.5rem !important;
  2470. }
  2471. .mt-lg-3 {
  2472. margin-top: 1rem !important;
  2473. }
  2474. .mt-lg-4 {
  2475. margin-top: 1.5rem !important;
  2476. }
  2477. .mt-lg-5 {
  2478. margin-top: 3rem !important;
  2479. }
  2480. .mt-lg-auto {
  2481. margin-top: auto !important;
  2482. }
  2483. .me-lg-0 {
  2484. margin-left: 0 !important;
  2485. }
  2486. .me-lg-1 {
  2487. margin-left: 0.25rem !important;
  2488. }
  2489. .me-lg-2 {
  2490. margin-left: 0.5rem !important;
  2491. }
  2492. .me-lg-3 {
  2493. margin-left: 1rem !important;
  2494. }
  2495. .me-lg-4 {
  2496. margin-left: 1.5rem !important;
  2497. }
  2498. .me-lg-5 {
  2499. margin-left: 3rem !important;
  2500. }
  2501. .me-lg-auto {
  2502. margin-left: auto !important;
  2503. }
  2504. .mb-lg-0 {
  2505. margin-bottom: 0 !important;
  2506. }
  2507. .mb-lg-1 {
  2508. margin-bottom: 0.25rem !important;
  2509. }
  2510. .mb-lg-2 {
  2511. margin-bottom: 0.5rem !important;
  2512. }
  2513. .mb-lg-3 {
  2514. margin-bottom: 1rem !important;
  2515. }
  2516. .mb-lg-4 {
  2517. margin-bottom: 1.5rem !important;
  2518. }
  2519. .mb-lg-5 {
  2520. margin-bottom: 3rem !important;
  2521. }
  2522. .mb-lg-auto {
  2523. margin-bottom: auto !important;
  2524. }
  2525. .ms-lg-0 {
  2526. margin-right: 0 !important;
  2527. }
  2528. .ms-lg-1 {
  2529. margin-right: 0.25rem !important;
  2530. }
  2531. .ms-lg-2 {
  2532. margin-right: 0.5rem !important;
  2533. }
  2534. .ms-lg-3 {
  2535. margin-right: 1rem !important;
  2536. }
  2537. .ms-lg-4 {
  2538. margin-right: 1.5rem !important;
  2539. }
  2540. .ms-lg-5 {
  2541. margin-right: 3rem !important;
  2542. }
  2543. .ms-lg-auto {
  2544. margin-right: auto !important;
  2545. }
  2546. .p-lg-0 {
  2547. padding: 0 !important;
  2548. }
  2549. .p-lg-1 {
  2550. padding: 0.25rem !important;
  2551. }
  2552. .p-lg-2 {
  2553. padding: 0.5rem !important;
  2554. }
  2555. .p-lg-3 {
  2556. padding: 1rem !important;
  2557. }
  2558. .p-lg-4 {
  2559. padding: 1.5rem !important;
  2560. }
  2561. .p-lg-5 {
  2562. padding: 3rem !important;
  2563. }
  2564. .px-lg-0 {
  2565. padding-left: 0 !important;
  2566. padding-right: 0 !important;
  2567. }
  2568. .px-lg-1 {
  2569. padding-left: 0.25rem !important;
  2570. padding-right: 0.25rem !important;
  2571. }
  2572. .px-lg-2 {
  2573. padding-left: 0.5rem !important;
  2574. padding-right: 0.5rem !important;
  2575. }
  2576. .px-lg-3 {
  2577. padding-left: 1rem !important;
  2578. padding-right: 1rem !important;
  2579. }
  2580. .px-lg-4 {
  2581. padding-left: 1.5rem !important;
  2582. padding-right: 1.5rem !important;
  2583. }
  2584. .px-lg-5 {
  2585. padding-left: 3rem !important;
  2586. padding-right: 3rem !important;
  2587. }
  2588. .py-lg-0 {
  2589. padding-top: 0 !important;
  2590. padding-bottom: 0 !important;
  2591. }
  2592. .py-lg-1 {
  2593. padding-top: 0.25rem !important;
  2594. padding-bottom: 0.25rem !important;
  2595. }
  2596. .py-lg-2 {
  2597. padding-top: 0.5rem !important;
  2598. padding-bottom: 0.5rem !important;
  2599. }
  2600. .py-lg-3 {
  2601. padding-top: 1rem !important;
  2602. padding-bottom: 1rem !important;
  2603. }
  2604. .py-lg-4 {
  2605. padding-top: 1.5rem !important;
  2606. padding-bottom: 1.5rem !important;
  2607. }
  2608. .py-lg-5 {
  2609. padding-top: 3rem !important;
  2610. padding-bottom: 3rem !important;
  2611. }
  2612. .pt-lg-0 {
  2613. padding-top: 0 !important;
  2614. }
  2615. .pt-lg-1 {
  2616. padding-top: 0.25rem !important;
  2617. }
  2618. .pt-lg-2 {
  2619. padding-top: 0.5rem !important;
  2620. }
  2621. .pt-lg-3 {
  2622. padding-top: 1rem !important;
  2623. }
  2624. .pt-lg-4 {
  2625. padding-top: 1.5rem !important;
  2626. }
  2627. .pt-lg-5 {
  2628. padding-top: 3rem !important;
  2629. }
  2630. .pe-lg-0 {
  2631. padding-left: 0 !important;
  2632. }
  2633. .pe-lg-1 {
  2634. padding-left: 0.25rem !important;
  2635. }
  2636. .pe-lg-2 {
  2637. padding-left: 0.5rem !important;
  2638. }
  2639. .pe-lg-3 {
  2640. padding-left: 1rem !important;
  2641. }
  2642. .pe-lg-4 {
  2643. padding-left: 1.5rem !important;
  2644. }
  2645. .pe-lg-5 {
  2646. padding-left: 3rem !important;
  2647. }
  2648. .pb-lg-0 {
  2649. padding-bottom: 0 !important;
  2650. }
  2651. .pb-lg-1 {
  2652. padding-bottom: 0.25rem !important;
  2653. }
  2654. .pb-lg-2 {
  2655. padding-bottom: 0.5rem !important;
  2656. }
  2657. .pb-lg-3 {
  2658. padding-bottom: 1rem !important;
  2659. }
  2660. .pb-lg-4 {
  2661. padding-bottom: 1.5rem !important;
  2662. }
  2663. .pb-lg-5 {
  2664. padding-bottom: 3rem !important;
  2665. }
  2666. .ps-lg-0 {
  2667. padding-right: 0 !important;
  2668. }
  2669. .ps-lg-1 {
  2670. padding-right: 0.25rem !important;
  2671. }
  2672. .ps-lg-2 {
  2673. padding-right: 0.5rem !important;
  2674. }
  2675. .ps-lg-3 {
  2676. padding-right: 1rem !important;
  2677. }
  2678. .ps-lg-4 {
  2679. padding-right: 1.5rem !important;
  2680. }
  2681. .ps-lg-5 {
  2682. padding-right: 3rem !important;
  2683. }
  2684. .text-lg-start {
  2685. text-align: right !important;
  2686. }
  2687. .text-lg-end {
  2688. text-align: left !important;
  2689. }
  2690. .text-lg-center {
  2691. text-align: center !important;
  2692. }
  2693. }
  2694. @media (min-width: 1200px) {
  2695. .float-xl-start {
  2696. float: right !important;
  2697. }
  2698. .float-xl-end {
  2699. float: left !important;
  2700. }
  2701. .float-xl-none {
  2702. float: none !important;
  2703. }
  2704. .d-xl-inline {
  2705. display: inline !important;
  2706. }
  2707. .d-xl-inline-block {
  2708. display: inline-block !important;
  2709. }
  2710. .d-xl-block {
  2711. display: block !important;
  2712. }
  2713. .d-xl-grid {
  2714. display: grid !important;
  2715. }
  2716. .d-xl-table {
  2717. display: table !important;
  2718. }
  2719. .d-xl-table-row {
  2720. display: table-row !important;
  2721. }
  2722. .d-xl-table-cell {
  2723. display: table-cell !important;
  2724. }
  2725. .d-xl-flex {
  2726. display: flex !important;
  2727. }
  2728. .d-xl-inline-flex {
  2729. display: inline-flex !important;
  2730. }
  2731. .d-xl-none {
  2732. display: none !important;
  2733. }
  2734. .flex-xl-fill {
  2735. flex: 1 1 auto !important;
  2736. }
  2737. .flex-xl-row {
  2738. flex-direction: row !important;
  2739. }
  2740. .flex-xl-column {
  2741. flex-direction: column !important;
  2742. }
  2743. .flex-xl-row-reverse {
  2744. flex-direction: row-reverse !important;
  2745. }
  2746. .flex-xl-column-reverse {
  2747. flex-direction: column-reverse !important;
  2748. }
  2749. .flex-xl-grow-0 {
  2750. flex-grow: 0 !important;
  2751. }
  2752. .flex-xl-grow-1 {
  2753. flex-grow: 1 !important;
  2754. }
  2755. .flex-xl-shrink-0 {
  2756. flex-shrink: 0 !important;
  2757. }
  2758. .flex-xl-shrink-1 {
  2759. flex-shrink: 1 !important;
  2760. }
  2761. .flex-xl-wrap {
  2762. flex-wrap: wrap !important;
  2763. }
  2764. .flex-xl-nowrap {
  2765. flex-wrap: nowrap !important;
  2766. }
  2767. .flex-xl-wrap-reverse {
  2768. flex-wrap: wrap-reverse !important;
  2769. }
  2770. .gap-xl-0 {
  2771. gap: 0 !important;
  2772. }
  2773. .gap-xl-1 {
  2774. gap: 0.25rem !important;
  2775. }
  2776. .gap-xl-2 {
  2777. gap: 0.5rem !important;
  2778. }
  2779. .gap-xl-3 {
  2780. gap: 1rem !important;
  2781. }
  2782. .gap-xl-4 {
  2783. gap: 1.5rem !important;
  2784. }
  2785. .gap-xl-5 {
  2786. gap: 3rem !important;
  2787. }
  2788. .justify-content-xl-start {
  2789. justify-content: flex-start !important;
  2790. }
  2791. .justify-content-xl-end {
  2792. justify-content: flex-end !important;
  2793. }
  2794. .justify-content-xl-center {
  2795. justify-content: center !important;
  2796. }
  2797. .justify-content-xl-between {
  2798. justify-content: space-between !important;
  2799. }
  2800. .justify-content-xl-around {
  2801. justify-content: space-around !important;
  2802. }
  2803. .justify-content-xl-evenly {
  2804. justify-content: space-evenly !important;
  2805. }
  2806. .align-items-xl-start {
  2807. align-items: flex-start !important;
  2808. }
  2809. .align-items-xl-end {
  2810. align-items: flex-end !important;
  2811. }
  2812. .align-items-xl-center {
  2813. align-items: center !important;
  2814. }
  2815. .align-items-xl-baseline {
  2816. align-items: baseline !important;
  2817. }
  2818. .align-items-xl-stretch {
  2819. align-items: stretch !important;
  2820. }
  2821. .align-content-xl-start {
  2822. align-content: flex-start !important;
  2823. }
  2824. .align-content-xl-end {
  2825. align-content: flex-end !important;
  2826. }
  2827. .align-content-xl-center {
  2828. align-content: center !important;
  2829. }
  2830. .align-content-xl-between {
  2831. align-content: space-between !important;
  2832. }
  2833. .align-content-xl-around {
  2834. align-content: space-around !important;
  2835. }
  2836. .align-content-xl-stretch {
  2837. align-content: stretch !important;
  2838. }
  2839. .align-self-xl-auto {
  2840. align-self: auto !important;
  2841. }
  2842. .align-self-xl-start {
  2843. align-self: flex-start !important;
  2844. }
  2845. .align-self-xl-end {
  2846. align-self: flex-end !important;
  2847. }
  2848. .align-self-xl-center {
  2849. align-self: center !important;
  2850. }
  2851. .align-self-xl-baseline {
  2852. align-self: baseline !important;
  2853. }
  2854. .align-self-xl-stretch {
  2855. align-self: stretch !important;
  2856. }
  2857. .order-xl-first {
  2858. order: -1 !important;
  2859. }
  2860. .order-xl-0 {
  2861. order: 0 !important;
  2862. }
  2863. .order-xl-1 {
  2864. order: 1 !important;
  2865. }
  2866. .order-xl-2 {
  2867. order: 2 !important;
  2868. }
  2869. .order-xl-3 {
  2870. order: 3 !important;
  2871. }
  2872. .order-xl-4 {
  2873. order: 4 !important;
  2874. }
  2875. .order-xl-5 {
  2876. order: 5 !important;
  2877. }
  2878. .order-xl-last {
  2879. order: 6 !important;
  2880. }
  2881. .m-xl-0 {
  2882. margin: 0 !important;
  2883. }
  2884. .m-xl-1 {
  2885. margin: 0.25rem !important;
  2886. }
  2887. .m-xl-2 {
  2888. margin: 0.5rem !important;
  2889. }
  2890. .m-xl-3 {
  2891. margin: 1rem !important;
  2892. }
  2893. .m-xl-4 {
  2894. margin: 1.5rem !important;
  2895. }
  2896. .m-xl-5 {
  2897. margin: 3rem !important;
  2898. }
  2899. .m-xl-auto {
  2900. margin: auto !important;
  2901. }
  2902. .mx-xl-0 {
  2903. margin-left: 0 !important;
  2904. margin-right: 0 !important;
  2905. }
  2906. .mx-xl-1 {
  2907. margin-left: 0.25rem !important;
  2908. margin-right: 0.25rem !important;
  2909. }
  2910. .mx-xl-2 {
  2911. margin-left: 0.5rem !important;
  2912. margin-right: 0.5rem !important;
  2913. }
  2914. .mx-xl-3 {
  2915. margin-left: 1rem !important;
  2916. margin-right: 1rem !important;
  2917. }
  2918. .mx-xl-4 {
  2919. margin-left: 1.5rem !important;
  2920. margin-right: 1.5rem !important;
  2921. }
  2922. .mx-xl-5 {
  2923. margin-left: 3rem !important;
  2924. margin-right: 3rem !important;
  2925. }
  2926. .mx-xl-auto {
  2927. margin-left: auto !important;
  2928. margin-right: auto !important;
  2929. }
  2930. .my-xl-0 {
  2931. margin-top: 0 !important;
  2932. margin-bottom: 0 !important;
  2933. }
  2934. .my-xl-1 {
  2935. margin-top: 0.25rem !important;
  2936. margin-bottom: 0.25rem !important;
  2937. }
  2938. .my-xl-2 {
  2939. margin-top: 0.5rem !important;
  2940. margin-bottom: 0.5rem !important;
  2941. }
  2942. .my-xl-3 {
  2943. margin-top: 1rem !important;
  2944. margin-bottom: 1rem !important;
  2945. }
  2946. .my-xl-4 {
  2947. margin-top: 1.5rem !important;
  2948. margin-bottom: 1.5rem !important;
  2949. }
  2950. .my-xl-5 {
  2951. margin-top: 3rem !important;
  2952. margin-bottom: 3rem !important;
  2953. }
  2954. .my-xl-auto {
  2955. margin-top: auto !important;
  2956. margin-bottom: auto !important;
  2957. }
  2958. .mt-xl-0 {
  2959. margin-top: 0 !important;
  2960. }
  2961. .mt-xl-1 {
  2962. margin-top: 0.25rem !important;
  2963. }
  2964. .mt-xl-2 {
  2965. margin-top: 0.5rem !important;
  2966. }
  2967. .mt-xl-3 {
  2968. margin-top: 1rem !important;
  2969. }
  2970. .mt-xl-4 {
  2971. margin-top: 1.5rem !important;
  2972. }
  2973. .mt-xl-5 {
  2974. margin-top: 3rem !important;
  2975. }
  2976. .mt-xl-auto {
  2977. margin-top: auto !important;
  2978. }
  2979. .me-xl-0 {
  2980. margin-left: 0 !important;
  2981. }
  2982. .me-xl-1 {
  2983. margin-left: 0.25rem !important;
  2984. }
  2985. .me-xl-2 {
  2986. margin-left: 0.5rem !important;
  2987. }
  2988. .me-xl-3 {
  2989. margin-left: 1rem !important;
  2990. }
  2991. .me-xl-4 {
  2992. margin-left: 1.5rem !important;
  2993. }
  2994. .me-xl-5 {
  2995. margin-left: 3rem !important;
  2996. }
  2997. .me-xl-auto {
  2998. margin-left: auto !important;
  2999. }
  3000. .mb-xl-0 {
  3001. margin-bottom: 0 !important;
  3002. }
  3003. .mb-xl-1 {
  3004. margin-bottom: 0.25rem !important;
  3005. }
  3006. .mb-xl-2 {
  3007. margin-bottom: 0.5rem !important;
  3008. }
  3009. .mb-xl-3 {
  3010. margin-bottom: 1rem !important;
  3011. }
  3012. .mb-xl-4 {
  3013. margin-bottom: 1.5rem !important;
  3014. }
  3015. .mb-xl-5 {
  3016. margin-bottom: 3rem !important;
  3017. }
  3018. .mb-xl-auto {
  3019. margin-bottom: auto !important;
  3020. }
  3021. .ms-xl-0 {
  3022. margin-right: 0 !important;
  3023. }
  3024. .ms-xl-1 {
  3025. margin-right: 0.25rem !important;
  3026. }
  3027. .ms-xl-2 {
  3028. margin-right: 0.5rem !important;
  3029. }
  3030. .ms-xl-3 {
  3031. margin-right: 1rem !important;
  3032. }
  3033. .ms-xl-4 {
  3034. margin-right: 1.5rem !important;
  3035. }
  3036. .ms-xl-5 {
  3037. margin-right: 3rem !important;
  3038. }
  3039. .ms-xl-auto {
  3040. margin-right: auto !important;
  3041. }
  3042. .p-xl-0 {
  3043. padding: 0 !important;
  3044. }
  3045. .p-xl-1 {
  3046. padding: 0.25rem !important;
  3047. }
  3048. .p-xl-2 {
  3049. padding: 0.5rem !important;
  3050. }
  3051. .p-xl-3 {
  3052. padding: 1rem !important;
  3053. }
  3054. .p-xl-4 {
  3055. padding: 1.5rem !important;
  3056. }
  3057. .p-xl-5 {
  3058. padding: 3rem !important;
  3059. }
  3060. .px-xl-0 {
  3061. padding-left: 0 !important;
  3062. padding-right: 0 !important;
  3063. }
  3064. .px-xl-1 {
  3065. padding-left: 0.25rem !important;
  3066. padding-right: 0.25rem !important;
  3067. }
  3068. .px-xl-2 {
  3069. padding-left: 0.5rem !important;
  3070. padding-right: 0.5rem !important;
  3071. }
  3072. .px-xl-3 {
  3073. padding-left: 1rem !important;
  3074. padding-right: 1rem !important;
  3075. }
  3076. .px-xl-4 {
  3077. padding-left: 1.5rem !important;
  3078. padding-right: 1.5rem !important;
  3079. }
  3080. .px-xl-5 {
  3081. padding-left: 3rem !important;
  3082. padding-right: 3rem !important;
  3083. }
  3084. .py-xl-0 {
  3085. padding-top: 0 !important;
  3086. padding-bottom: 0 !important;
  3087. }
  3088. .py-xl-1 {
  3089. padding-top: 0.25rem !important;
  3090. padding-bottom: 0.25rem !important;
  3091. }
  3092. .py-xl-2 {
  3093. padding-top: 0.5rem !important;
  3094. padding-bottom: 0.5rem !important;
  3095. }
  3096. .py-xl-3 {
  3097. padding-top: 1rem !important;
  3098. padding-bottom: 1rem !important;
  3099. }
  3100. .py-xl-4 {
  3101. padding-top: 1.5rem !important;
  3102. padding-bottom: 1.5rem !important;
  3103. }
  3104. .py-xl-5 {
  3105. padding-top: 3rem !important;
  3106. padding-bottom: 3rem !important;
  3107. }
  3108. .pt-xl-0 {
  3109. padding-top: 0 !important;
  3110. }
  3111. .pt-xl-1 {
  3112. padding-top: 0.25rem !important;
  3113. }
  3114. .pt-xl-2 {
  3115. padding-top: 0.5rem !important;
  3116. }
  3117. .pt-xl-3 {
  3118. padding-top: 1rem !important;
  3119. }
  3120. .pt-xl-4 {
  3121. padding-top: 1.5rem !important;
  3122. }
  3123. .pt-xl-5 {
  3124. padding-top: 3rem !important;
  3125. }
  3126. .pe-xl-0 {
  3127. padding-left: 0 !important;
  3128. }
  3129. .pe-xl-1 {
  3130. padding-left: 0.25rem !important;
  3131. }
  3132. .pe-xl-2 {
  3133. padding-left: 0.5rem !important;
  3134. }
  3135. .pe-xl-3 {
  3136. padding-left: 1rem !important;
  3137. }
  3138. .pe-xl-4 {
  3139. padding-left: 1.5rem !important;
  3140. }
  3141. .pe-xl-5 {
  3142. padding-left: 3rem !important;
  3143. }
  3144. .pb-xl-0 {
  3145. padding-bottom: 0 !important;
  3146. }
  3147. .pb-xl-1 {
  3148. padding-bottom: 0.25rem !important;
  3149. }
  3150. .pb-xl-2 {
  3151. padding-bottom: 0.5rem !important;
  3152. }
  3153. .pb-xl-3 {
  3154. padding-bottom: 1rem !important;
  3155. }
  3156. .pb-xl-4 {
  3157. padding-bottom: 1.5rem !important;
  3158. }
  3159. .pb-xl-5 {
  3160. padding-bottom: 3rem !important;
  3161. }
  3162. .ps-xl-0 {
  3163. padding-right: 0 !important;
  3164. }
  3165. .ps-xl-1 {
  3166. padding-right: 0.25rem !important;
  3167. }
  3168. .ps-xl-2 {
  3169. padding-right: 0.5rem !important;
  3170. }
  3171. .ps-xl-3 {
  3172. padding-right: 1rem !important;
  3173. }
  3174. .ps-xl-4 {
  3175. padding-right: 1.5rem !important;
  3176. }
  3177. .ps-xl-5 {
  3178. padding-right: 3rem !important;
  3179. }
  3180. .text-xl-start {
  3181. text-align: right !important;
  3182. }
  3183. .text-xl-end {
  3184. text-align: left !important;
  3185. }
  3186. .text-xl-center {
  3187. text-align: center !important;
  3188. }
  3189. }
  3190. @media (min-width: 1400px) {
  3191. .float-xxl-start {
  3192. float: right !important;
  3193. }
  3194. .float-xxl-end {
  3195. float: left !important;
  3196. }
  3197. .float-xxl-none {
  3198. float: none !important;
  3199. }
  3200. .d-xxl-inline {
  3201. display: inline !important;
  3202. }
  3203. .d-xxl-inline-block {
  3204. display: inline-block !important;
  3205. }
  3206. .d-xxl-block {
  3207. display: block !important;
  3208. }
  3209. .d-xxl-grid {
  3210. display: grid !important;
  3211. }
  3212. .d-xxl-table {
  3213. display: table !important;
  3214. }
  3215. .d-xxl-table-row {
  3216. display: table-row !important;
  3217. }
  3218. .d-xxl-table-cell {
  3219. display: table-cell !important;
  3220. }
  3221. .d-xxl-flex {
  3222. display: flex !important;
  3223. }
  3224. .d-xxl-inline-flex {
  3225. display: inline-flex !important;
  3226. }
  3227. .d-xxl-none {
  3228. display: none !important;
  3229. }
  3230. .flex-xxl-fill {
  3231. flex: 1 1 auto !important;
  3232. }
  3233. .flex-xxl-row {
  3234. flex-direction: row !important;
  3235. }
  3236. .flex-xxl-column {
  3237. flex-direction: column !important;
  3238. }
  3239. .flex-xxl-row-reverse {
  3240. flex-direction: row-reverse !important;
  3241. }
  3242. .flex-xxl-column-reverse {
  3243. flex-direction: column-reverse !important;
  3244. }
  3245. .flex-xxl-grow-0 {
  3246. flex-grow: 0 !important;
  3247. }
  3248. .flex-xxl-grow-1 {
  3249. flex-grow: 1 !important;
  3250. }
  3251. .flex-xxl-shrink-0 {
  3252. flex-shrink: 0 !important;
  3253. }
  3254. .flex-xxl-shrink-1 {
  3255. flex-shrink: 1 !important;
  3256. }
  3257. .flex-xxl-wrap {
  3258. flex-wrap: wrap !important;
  3259. }
  3260. .flex-xxl-nowrap {
  3261. flex-wrap: nowrap !important;
  3262. }
  3263. .flex-xxl-wrap-reverse {
  3264. flex-wrap: wrap-reverse !important;
  3265. }
  3266. .gap-xxl-0 {
  3267. gap: 0 !important;
  3268. }
  3269. .gap-xxl-1 {
  3270. gap: 0.25rem !important;
  3271. }
  3272. .gap-xxl-2 {
  3273. gap: 0.5rem !important;
  3274. }
  3275. .gap-xxl-3 {
  3276. gap: 1rem !important;
  3277. }
  3278. .gap-xxl-4 {
  3279. gap: 1.5rem !important;
  3280. }
  3281. .gap-xxl-5 {
  3282. gap: 3rem !important;
  3283. }
  3284. .justify-content-xxl-start {
  3285. justify-content: flex-start !important;
  3286. }
  3287. .justify-content-xxl-end {
  3288. justify-content: flex-end !important;
  3289. }
  3290. .justify-content-xxl-center {
  3291. justify-content: center !important;
  3292. }
  3293. .justify-content-xxl-between {
  3294. justify-content: space-between !important;
  3295. }
  3296. .justify-content-xxl-around {
  3297. justify-content: space-around !important;
  3298. }
  3299. .justify-content-xxl-evenly {
  3300. justify-content: space-evenly !important;
  3301. }
  3302. .align-items-xxl-start {
  3303. align-items: flex-start !important;
  3304. }
  3305. .align-items-xxl-end {
  3306. align-items: flex-end !important;
  3307. }
  3308. .align-items-xxl-center {
  3309. align-items: center !important;
  3310. }
  3311. .align-items-xxl-baseline {
  3312. align-items: baseline !important;
  3313. }
  3314. .align-items-xxl-stretch {
  3315. align-items: stretch !important;
  3316. }
  3317. .align-content-xxl-start {
  3318. align-content: flex-start !important;
  3319. }
  3320. .align-content-xxl-end {
  3321. align-content: flex-end !important;
  3322. }
  3323. .align-content-xxl-center {
  3324. align-content: center !important;
  3325. }
  3326. .align-content-xxl-between {
  3327. align-content: space-between !important;
  3328. }
  3329. .align-content-xxl-around {
  3330. align-content: space-around !important;
  3331. }
  3332. .align-content-xxl-stretch {
  3333. align-content: stretch !important;
  3334. }
  3335. .align-self-xxl-auto {
  3336. align-self: auto !important;
  3337. }
  3338. .align-self-xxl-start {
  3339. align-self: flex-start !important;
  3340. }
  3341. .align-self-xxl-end {
  3342. align-self: flex-end !important;
  3343. }
  3344. .align-self-xxl-center {
  3345. align-self: center !important;
  3346. }
  3347. .align-self-xxl-baseline {
  3348. align-self: baseline !important;
  3349. }
  3350. .align-self-xxl-stretch {
  3351. align-self: stretch !important;
  3352. }
  3353. .order-xxl-first {
  3354. order: -1 !important;
  3355. }
  3356. .order-xxl-0 {
  3357. order: 0 !important;
  3358. }
  3359. .order-xxl-1 {
  3360. order: 1 !important;
  3361. }
  3362. .order-xxl-2 {
  3363. order: 2 !important;
  3364. }
  3365. .order-xxl-3 {
  3366. order: 3 !important;
  3367. }
  3368. .order-xxl-4 {
  3369. order: 4 !important;
  3370. }
  3371. .order-xxl-5 {
  3372. order: 5 !important;
  3373. }
  3374. .order-xxl-last {
  3375. order: 6 !important;
  3376. }
  3377. .m-xxl-0 {
  3378. margin: 0 !important;
  3379. }
  3380. .m-xxl-1 {
  3381. margin: 0.25rem !important;
  3382. }
  3383. .m-xxl-2 {
  3384. margin: 0.5rem !important;
  3385. }
  3386. .m-xxl-3 {
  3387. margin: 1rem !important;
  3388. }
  3389. .m-xxl-4 {
  3390. margin: 1.5rem !important;
  3391. }
  3392. .m-xxl-5 {
  3393. margin: 3rem !important;
  3394. }
  3395. .m-xxl-auto {
  3396. margin: auto !important;
  3397. }
  3398. .mx-xxl-0 {
  3399. margin-left: 0 !important;
  3400. margin-right: 0 !important;
  3401. }
  3402. .mx-xxl-1 {
  3403. margin-left: 0.25rem !important;
  3404. margin-right: 0.25rem !important;
  3405. }
  3406. .mx-xxl-2 {
  3407. margin-left: 0.5rem !important;
  3408. margin-right: 0.5rem !important;
  3409. }
  3410. .mx-xxl-3 {
  3411. margin-left: 1rem !important;
  3412. margin-right: 1rem !important;
  3413. }
  3414. .mx-xxl-4 {
  3415. margin-left: 1.5rem !important;
  3416. margin-right: 1.5rem !important;
  3417. }
  3418. .mx-xxl-5 {
  3419. margin-left: 3rem !important;
  3420. margin-right: 3rem !important;
  3421. }
  3422. .mx-xxl-auto {
  3423. margin-left: auto !important;
  3424. margin-right: auto !important;
  3425. }
  3426. .my-xxl-0 {
  3427. margin-top: 0 !important;
  3428. margin-bottom: 0 !important;
  3429. }
  3430. .my-xxl-1 {
  3431. margin-top: 0.25rem !important;
  3432. margin-bottom: 0.25rem !important;
  3433. }
  3434. .my-xxl-2 {
  3435. margin-top: 0.5rem !important;
  3436. margin-bottom: 0.5rem !important;
  3437. }
  3438. .my-xxl-3 {
  3439. margin-top: 1rem !important;
  3440. margin-bottom: 1rem !important;
  3441. }
  3442. .my-xxl-4 {
  3443. margin-top: 1.5rem !important;
  3444. margin-bottom: 1.5rem !important;
  3445. }
  3446. .my-xxl-5 {
  3447. margin-top: 3rem !important;
  3448. margin-bottom: 3rem !important;
  3449. }
  3450. .my-xxl-auto {
  3451. margin-top: auto !important;
  3452. margin-bottom: auto !important;
  3453. }
  3454. .mt-xxl-0 {
  3455. margin-top: 0 !important;
  3456. }
  3457. .mt-xxl-1 {
  3458. margin-top: 0.25rem !important;
  3459. }
  3460. .mt-xxl-2 {
  3461. margin-top: 0.5rem !important;
  3462. }
  3463. .mt-xxl-3 {
  3464. margin-top: 1rem !important;
  3465. }
  3466. .mt-xxl-4 {
  3467. margin-top: 1.5rem !important;
  3468. }
  3469. .mt-xxl-5 {
  3470. margin-top: 3rem !important;
  3471. }
  3472. .mt-xxl-auto {
  3473. margin-top: auto !important;
  3474. }
  3475. .me-xxl-0 {
  3476. margin-left: 0 !important;
  3477. }
  3478. .me-xxl-1 {
  3479. margin-left: 0.25rem !important;
  3480. }
  3481. .me-xxl-2 {
  3482. margin-left: 0.5rem !important;
  3483. }
  3484. .me-xxl-3 {
  3485. margin-left: 1rem !important;
  3486. }
  3487. .me-xxl-4 {
  3488. margin-left: 1.5rem !important;
  3489. }
  3490. .me-xxl-5 {
  3491. margin-left: 3rem !important;
  3492. }
  3493. .me-xxl-auto {
  3494. margin-left: auto !important;
  3495. }
  3496. .mb-xxl-0 {
  3497. margin-bottom: 0 !important;
  3498. }
  3499. .mb-xxl-1 {
  3500. margin-bottom: 0.25rem !important;
  3501. }
  3502. .mb-xxl-2 {
  3503. margin-bottom: 0.5rem !important;
  3504. }
  3505. .mb-xxl-3 {
  3506. margin-bottom: 1rem !important;
  3507. }
  3508. .mb-xxl-4 {
  3509. margin-bottom: 1.5rem !important;
  3510. }
  3511. .mb-xxl-5 {
  3512. margin-bottom: 3rem !important;
  3513. }
  3514. .mb-xxl-auto {
  3515. margin-bottom: auto !important;
  3516. }
  3517. .ms-xxl-0 {
  3518. margin-right: 0 !important;
  3519. }
  3520. .ms-xxl-1 {
  3521. margin-right: 0.25rem !important;
  3522. }
  3523. .ms-xxl-2 {
  3524. margin-right: 0.5rem !important;
  3525. }
  3526. .ms-xxl-3 {
  3527. margin-right: 1rem !important;
  3528. }
  3529. .ms-xxl-4 {
  3530. margin-right: 1.5rem !important;
  3531. }
  3532. .ms-xxl-5 {
  3533. margin-right: 3rem !important;
  3534. }
  3535. .ms-xxl-auto {
  3536. margin-right: auto !important;
  3537. }
  3538. .p-xxl-0 {
  3539. padding: 0 !important;
  3540. }
  3541. .p-xxl-1 {
  3542. padding: 0.25rem !important;
  3543. }
  3544. .p-xxl-2 {
  3545. padding: 0.5rem !important;
  3546. }
  3547. .p-xxl-3 {
  3548. padding: 1rem !important;
  3549. }
  3550. .p-xxl-4 {
  3551. padding: 1.5rem !important;
  3552. }
  3553. .p-xxl-5 {
  3554. padding: 3rem !important;
  3555. }
  3556. .px-xxl-0 {
  3557. padding-left: 0 !important;
  3558. padding-right: 0 !important;
  3559. }
  3560. .px-xxl-1 {
  3561. padding-left: 0.25rem !important;
  3562. padding-right: 0.25rem !important;
  3563. }
  3564. .px-xxl-2 {
  3565. padding-left: 0.5rem !important;
  3566. padding-right: 0.5rem !important;
  3567. }
  3568. .px-xxl-3 {
  3569. padding-left: 1rem !important;
  3570. padding-right: 1rem !important;
  3571. }
  3572. .px-xxl-4 {
  3573. padding-left: 1.5rem !important;
  3574. padding-right: 1.5rem !important;
  3575. }
  3576. .px-xxl-5 {
  3577. padding-left: 3rem !important;
  3578. padding-right: 3rem !important;
  3579. }
  3580. .py-xxl-0 {
  3581. padding-top: 0 !important;
  3582. padding-bottom: 0 !important;
  3583. }
  3584. .py-xxl-1 {
  3585. padding-top: 0.25rem !important;
  3586. padding-bottom: 0.25rem !important;
  3587. }
  3588. .py-xxl-2 {
  3589. padding-top: 0.5rem !important;
  3590. padding-bottom: 0.5rem !important;
  3591. }
  3592. .py-xxl-3 {
  3593. padding-top: 1rem !important;
  3594. padding-bottom: 1rem !important;
  3595. }
  3596. .py-xxl-4 {
  3597. padding-top: 1.5rem !important;
  3598. padding-bottom: 1.5rem !important;
  3599. }
  3600. .py-xxl-5 {
  3601. padding-top: 3rem !important;
  3602. padding-bottom: 3rem !important;
  3603. }
  3604. .pt-xxl-0 {
  3605. padding-top: 0 !important;
  3606. }
  3607. .pt-xxl-1 {
  3608. padding-top: 0.25rem !important;
  3609. }
  3610. .pt-xxl-2 {
  3611. padding-top: 0.5rem !important;
  3612. }
  3613. .pt-xxl-3 {
  3614. padding-top: 1rem !important;
  3615. }
  3616. .pt-xxl-4 {
  3617. padding-top: 1.5rem !important;
  3618. }
  3619. .pt-xxl-5 {
  3620. padding-top: 3rem !important;
  3621. }
  3622. .pe-xxl-0 {
  3623. padding-left: 0 !important;
  3624. }
  3625. .pe-xxl-1 {
  3626. padding-left: 0.25rem !important;
  3627. }
  3628. .pe-xxl-2 {
  3629. padding-left: 0.5rem !important;
  3630. }
  3631. .pe-xxl-3 {
  3632. padding-left: 1rem !important;
  3633. }
  3634. .pe-xxl-4 {
  3635. padding-left: 1.5rem !important;
  3636. }
  3637. .pe-xxl-5 {
  3638. padding-left: 3rem !important;
  3639. }
  3640. .pb-xxl-0 {
  3641. padding-bottom: 0 !important;
  3642. }
  3643. .pb-xxl-1 {
  3644. padding-bottom: 0.25rem !important;
  3645. }
  3646. .pb-xxl-2 {
  3647. padding-bottom: 0.5rem !important;
  3648. }
  3649. .pb-xxl-3 {
  3650. padding-bottom: 1rem !important;
  3651. }
  3652. .pb-xxl-4 {
  3653. padding-bottom: 1.5rem !important;
  3654. }
  3655. .pb-xxl-5 {
  3656. padding-bottom: 3rem !important;
  3657. }
  3658. .ps-xxl-0 {
  3659. padding-right: 0 !important;
  3660. }
  3661. .ps-xxl-1 {
  3662. padding-right: 0.25rem !important;
  3663. }
  3664. .ps-xxl-2 {
  3665. padding-right: 0.5rem !important;
  3666. }
  3667. .ps-xxl-3 {
  3668. padding-right: 1rem !important;
  3669. }
  3670. .ps-xxl-4 {
  3671. padding-right: 1.5rem !important;
  3672. }
  3673. .ps-xxl-5 {
  3674. padding-right: 3rem !important;
  3675. }
  3676. .text-xxl-start {
  3677. text-align: right !important;
  3678. }
  3679. .text-xxl-end {
  3680. text-align: left !important;
  3681. }
  3682. .text-xxl-center {
  3683. text-align: center !important;
  3684. }
  3685. }
  3686. @media (min-width: 1200px) {
  3687. .fs-1 {
  3688. font-size: 2.5rem !important;
  3689. }
  3690. .fs-2 {
  3691. font-size: 2rem !important;
  3692. }
  3693. .fs-3 {
  3694. font-size: 1.75rem !important;
  3695. }
  3696. .fs-4 {
  3697. font-size: 1.5rem !important;
  3698. }
  3699. }
  3700. @media print {
  3701. .d-print-inline {
  3702. display: inline !important;
  3703. }
  3704. .d-print-inline-block {
  3705. display: inline-block !important;
  3706. }
  3707. .d-print-block {
  3708. display: block !important;
  3709. }
  3710. .d-print-grid {
  3711. display: grid !important;
  3712. }
  3713. .d-print-table {
  3714. display: table !important;
  3715. }
  3716. .d-print-table-row {
  3717. display: table-row !important;
  3718. }
  3719. .d-print-table-cell {
  3720. display: table-cell !important;
  3721. }
  3722. .d-print-flex {
  3723. display: flex !important;
  3724. }
  3725. .d-print-inline-flex {
  3726. display: inline-flex !important;
  3727. }
  3728. .d-print-none {
  3729. display: none !important;
  3730. }
  3731. }
  3732. /*# sourceMappingURL=bootstrap-utilities.rtl.css.map */