_margin.scss 19 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117
  1. /*--------- Margin--------------*/
  2. .m-0 {
  3. margin: 0 !important;
  4. }
  5. .mt-0,
  6. .my-0 {
  7. margin-block-start: 0 !important;
  8. }
  9. .me-0,
  10. .mx-0 {
  11. margin-inline-end: 0 !important;
  12. }
  13. .mb-0,
  14. .my-0 {
  15. margin-block-end: 0 !important;
  16. }
  17. .ms-0,
  18. .mx-0 {
  19. margin-inline-start: 0 !important;
  20. }
  21. .m-1 {
  22. margin: 0.25rem !important;
  23. }
  24. .mt-1,
  25. .my-1 {
  26. margin-block-start: 0.25rem !important;
  27. }
  28. .me-1,
  29. .mx-1 {
  30. margin-inline-end: 0.25rem !important;
  31. }
  32. .mb-1,
  33. .my-1 {
  34. margin-block-end: 0.25rem !important;
  35. }
  36. .ms-1,
  37. .mx-1 {
  38. margin-inline-start: 0.25rem !important;
  39. }
  40. .m-2 {
  41. margin: 0.5rem !important;
  42. }
  43. .mt-2,
  44. .my-2 {
  45. margin-block-start: 0.5rem !important;
  46. }
  47. .me-2,
  48. .mx-2 {
  49. margin-inline-end: 0.5rem !important;
  50. }
  51. .mb-2,
  52. .my-2 {
  53. margin-block-end: 0.5rem !important;
  54. }
  55. .ms-2,
  56. .mx-2 {
  57. margin-inline-start: 0.5rem !important;
  58. }
  59. .m-3 {
  60. margin: 0.75rem !important;
  61. }
  62. .mt-3,
  63. .my-3 {
  64. margin-block-start: 0.75rem !important;
  65. }
  66. .me-3,
  67. .mx-3 {
  68. margin-inline-end: 0.75rem !important;
  69. }
  70. .mb-3,
  71. .my-3 {
  72. margin-block-end: 0.75rem !important;
  73. }
  74. .ms-3,
  75. .mx-3 {
  76. margin-inline-start: 0.75rem !important;
  77. }
  78. .m-4 {
  79. margin: 1rem !important;
  80. }
  81. .mt-4,
  82. .my-4 {
  83. margin-block-start: 1rem !important;
  84. }
  85. .me-4,
  86. .mx-4 {
  87. margin-inline-end: 1rem !important;
  88. }
  89. .mb-4,
  90. .my-4 {
  91. margin-block-end: 1rem !important;
  92. }
  93. .ms-4,
  94. .mx-4 {
  95. margin-inline-start: 1rem !important;
  96. }
  97. .m-5 {
  98. margin: 1.5rem !important;
  99. }
  100. .mt-5,
  101. .my-5 {
  102. margin-block-start: 1.5rem !important;
  103. }
  104. .me-5,
  105. .mx-5 {
  106. margin-inline-end: 1.5rem;
  107. }
  108. .mb-5,
  109. .my-5 {
  110. margin-block-end: 1.5rem !important;
  111. }
  112. .ms-5,
  113. .mx-5 {
  114. margin-inline-start: 1.5rem !important;
  115. }
  116. .m-6 {
  117. margin: 2rem !important;
  118. }
  119. .mt-6,
  120. .my-6 {
  121. margin-block-start: 2rem !important;
  122. }
  123. .me-6,
  124. .mx-6 {
  125. margin-inline-end: 2rem !important;
  126. }
  127. .mb-6,
  128. .my-6 {
  129. margin-block-end: 2rem !important;
  130. }
  131. .ms-6,
  132. .mx-6 {
  133. margin-inline-start: 2rem !important;
  134. }
  135. .m-7 {
  136. margin: 3rem !important;
  137. }
  138. .mt-7,
  139. .my-7 {
  140. margin-block-start: 3rem !important;
  141. }
  142. .me-7,
  143. .mx-7 {
  144. margin-inline-end: 3rem !important;
  145. }
  146. .mb-7,
  147. .my-7 {
  148. margin-block-end: 3rem !important;
  149. }
  150. .ms-7,
  151. .mx-7 {
  152. margin-inline-start: 3rem !important;
  153. }
  154. .m-8 {
  155. margin: 4rem !important;
  156. }
  157. .mt-8,
  158. .my-8 {
  159. margin-block-start: 4rem !important;
  160. }
  161. .mt-10 {
  162. margin-block-start: 11rem !important;
  163. }
  164. .me-8,
  165. .mx-8 {
  166. margin-inline-end: 4rem !important;
  167. }
  168. .mb-8,
  169. .my-8 {
  170. margin-block-end: 4rem !important;
  171. }
  172. .ms-8,
  173. .mx-8 {
  174. margin-inline-start: 4rem !important;
  175. }
  176. .m-9 {
  177. margin: 6rem !important;
  178. }
  179. .mt-9,
  180. .my-9 {
  181. margin-block-start: 6rem !important;
  182. }
  183. .me-9,
  184. .mx-9 {
  185. margin-inline-end: 6rem !important;
  186. }
  187. .mb-9,
  188. .my-9 {
  189. margin-block-end: 6rem !important;
  190. }
  191. .ms-9,
  192. .mx-9 {
  193. margin-inline-start: 6rem !important;
  194. }
  195. .m-auto {
  196. margin: auto !important;
  197. }
  198. .mt-auto,
  199. .my-auto {
  200. margin-block-start: auto !important;
  201. }
  202. .me-auto,
  203. .mx-auto {
  204. margin-inline-end: auto !important;
  205. }
  206. .mb-auto,
  207. .my-auto {
  208. margin-block-end: auto !important;
  209. }
  210. .ms-auto,
  211. .mx-auto {
  212. margin-inline-start: auto !important;
  213. }
  214. @media (min-width: 576px) {
  215. .m-sm-0 {
  216. margin: 0 !important;
  217. }
  218. .mt-sm-0,
  219. .my-sm-0 {
  220. margin-block-start: 0 !important;
  221. }
  222. .me-sm-0,
  223. .mx-sm-0 {
  224. margin-inline-end: 0 !important;
  225. }
  226. .mb-sm-0,
  227. .my-sm-0 {
  228. margin-block-end: 0 !important;
  229. }
  230. .ms-sm-0,
  231. .mx-sm-0 {
  232. margin-inline-start: 0 !important;
  233. }
  234. .m-sm-1 {
  235. margin: 0.25rem !important;
  236. }
  237. .mt-sm-1,
  238. .my-sm-1 {
  239. margin-block-start: 0.25rem !important;
  240. }
  241. .me-sm-1,
  242. .mx-sm-1 {
  243. margin-inline-end: 0.25rem !important;
  244. }
  245. .mb-sm-1,
  246. .my-sm-1 {
  247. margin-block-end: 0.25rem !important;
  248. }
  249. .ms-sm-1,
  250. .mx-sm-1 {
  251. margin-inline-start: 0.25rem !important;
  252. }
  253. .m-sm-2 {
  254. margin: 0.5rem !important;
  255. }
  256. .mt-sm-2,
  257. .my-sm-2 {
  258. margin-block-start: 0.5rem !important;
  259. }
  260. .me-sm-2,
  261. .mx-sm-2 {
  262. margin-inline-end: 0.5rem !important;
  263. }
  264. .mb-sm-2,
  265. .my-sm-2 {
  266. margin-block-end: 0.5rem !important;
  267. }
  268. .ms-sm-2,
  269. .mx-sm-2 {
  270. margin-inline-start: 0.5rem !important;
  271. }
  272. .m-sm-3 {
  273. margin: 0.75rem !important;
  274. }
  275. .mt-sm-3,
  276. .my-sm-3 {
  277. margin-block-start: 0.75rem !important;
  278. }
  279. .me-sm-3,
  280. .mx-sm-3 {
  281. margin-inline-end: 0.75rem !important;
  282. }
  283. .mb-sm-3,
  284. .my-sm-3 {
  285. margin-block-end: 0.75rem !important;
  286. }
  287. .ms-sm-3,
  288. .mx-sm-3 {
  289. margin-inline-start: 0.75rem !important;
  290. }
  291. .m-sm-4 {
  292. margin: 1rem !important;
  293. }
  294. .mt-sm-4,
  295. .my-sm-4 {
  296. margin-block-start: 1rem !important;
  297. }
  298. .me-sm-4,
  299. .mx-sm-4 {
  300. margin-inline-end: 1rem !important;
  301. }
  302. .mb-sm-4,
  303. .my-sm-4 {
  304. margin-block-end: 1rem !important;
  305. }
  306. .ms-sm-4,
  307. .mx-sm-4 {
  308. margin-inline-start: 1rem !important;
  309. }
  310. .m-sm-5 {
  311. margin: 1.5rem !important;
  312. }
  313. .mt-sm-5,
  314. .my-sm-5 {
  315. margin-block-start: 1.5rem !important;
  316. }
  317. .me-sm-5,
  318. .mx-sm-5 {
  319. margin-inline-end: 1.5rem !important;
  320. }
  321. .mb-sm-5,
  322. .my-sm-5 {
  323. margin-block-end: 1.5rem !important;
  324. }
  325. .ms-sm-5,
  326. .mx-sm-5 {
  327. margin-inline-start: 1.5rem !important;
  328. }
  329. .m-sm-6 {
  330. margin: 2rem !important;
  331. }
  332. .mt-sm-6,
  333. .my-sm-6 {
  334. margin-block-start: 2rem !important;
  335. }
  336. .me-sm-6,
  337. .mx-sm-6 {
  338. margin-inline-end: 2rem !important;
  339. }
  340. .mb-sm-6,
  341. .my-sm-6 {
  342. margin-block-end: 2rem !important;
  343. }
  344. .ms-sm-6,
  345. .mx-sm-6 {
  346. margin-inline-start: 2rem !important;
  347. }
  348. .m-sm-7 {
  349. margin: 3rem !important;
  350. }
  351. .mt-sm-7,
  352. .my-sm-7 {
  353. margin-block-start: 3rem !important;
  354. }
  355. .me-sm-7,
  356. .mx-sm-7 {
  357. margin-inline-end: 3rem !important;
  358. }
  359. .mb-sm-7,
  360. .my-sm-7 {
  361. margin-block-end: 3rem !important;
  362. }
  363. .ms-sm-7,
  364. .mx-sm-7 {
  365. margin-inline-start: 3rem !important;
  366. }
  367. .m-sm-8 {
  368. margin: 4rem !important;
  369. }
  370. .mt-sm-8,
  371. .my-sm-8 {
  372. margin-block-start: 4rem !important;
  373. }
  374. .me-sm-8,
  375. .mx-sm-8 {
  376. margin-inline-end: 4rem !important;
  377. }
  378. .mb-sm-8,
  379. .my-sm-8 {
  380. margin-block-end: 4rem !important;
  381. }
  382. .ms-sm-8,
  383. .mx-sm-8 {
  384. margin-inline-start: 4rem !important;
  385. }
  386. .m-sm-9 {
  387. margin: 6rem !important;
  388. }
  389. .mt-sm-9,
  390. .my-sm-9 {
  391. margin-block-start: 6rem !important;
  392. }
  393. .me-sm-9,
  394. .mx-sm-9 {
  395. margin-inline-end: 6rem !important;
  396. }
  397. .mb-sm-9,
  398. .my-sm-9 {
  399. margin-block-end: 6rem !important;
  400. }
  401. .ms-sm-9,
  402. .mx-sm-9 {
  403. margin-inline-start: 6rem !important;
  404. }
  405. .m-sm-auto {
  406. margin: auto !important;
  407. }
  408. .mt-sm-auto,
  409. .my-sm-auto {
  410. margin-block-start: auto !important;
  411. }
  412. .me-sm-auto,
  413. .mx-sm-auto {
  414. margin-inline-end: auto !important;
  415. }
  416. .mb-sm-auto,
  417. .my-sm-auto {
  418. margin-block-end: auto !important;
  419. }
  420. .ms-sm-auto,
  421. .mx-sm-auto {
  422. margin-inline-start: auto !important;
  423. }
  424. }
  425. @media (min-width: 768px) {
  426. .m-md-0 {
  427. margin: 0 !important;
  428. }
  429. .mt-md-0,
  430. .my-md-0 {
  431. margin-block-start: 0 !important;
  432. }
  433. .me-md-0,
  434. .mx-md-0 {
  435. margin-inline-end: 0 !important;
  436. }
  437. .mb-md-0,
  438. .my-md-0 {
  439. margin-block-end: 0 !important;
  440. }
  441. .ms-md-0,
  442. .mx-md-0 {
  443. margin-inline-start: 0 !important;
  444. }
  445. .m-md-1 {
  446. margin: 0.25rem !important;
  447. }
  448. .mt-md-1,
  449. .my-md-1 {
  450. margin-block-start: 0.25rem !important;
  451. }
  452. .me-md-1,
  453. .mx-md-1 {
  454. margin-inline-end: 0.25rem !important;
  455. }
  456. .mb-md-1,
  457. .my-md-1 {
  458. margin-block-end: 0.25rem !important;
  459. }
  460. .ms-md-1,
  461. .mx-md-1 {
  462. margin-inline-start: 0.25rem !important;
  463. }
  464. .m-md-2 {
  465. margin: 0.5rem !important;
  466. }
  467. .mt-md-2,
  468. .my-md-2 {
  469. margin-block-start: 0.5rem !important;
  470. }
  471. .me-md-2,
  472. .mx-md-2 {
  473. margin-inline-end: 0.5rem !important;
  474. }
  475. .mb-md-2,
  476. .my-md-2 {
  477. margin-block-end: 0.5rem !important;
  478. }
  479. .ms-md-2,
  480. .mx-md-2 {
  481. margin-inline-start: 0.5rem !important;
  482. }
  483. .m-md-3 {
  484. margin: 0.75rem !important;
  485. }
  486. .mt-md-3,
  487. .my-md-3 {
  488. margin-block-start: 0.75rem !important;
  489. }
  490. .me-md-3,
  491. .mx-md-3 {
  492. margin-inline-end: 0.75rem !important;
  493. }
  494. .mb-md-3,
  495. .my-md-3 {
  496. margin-block-end: 0.75rem !important;
  497. }
  498. .ms-md-3,
  499. .mx-md-3 {
  500. margin-inline-start: 0.75rem !important;
  501. }
  502. .m-md-4 {
  503. margin: 1rem !important;
  504. }
  505. .mt-md-4,
  506. .my-md-4 {
  507. margin-block-start: 1rem !important;
  508. }
  509. .me-md-4,
  510. .mx-md-4 {
  511. margin-inline-end: 1rem !important;
  512. }
  513. .mb-md-4,
  514. .my-md-4 {
  515. margin-block-end: 1rem !important;
  516. }
  517. .ms-md-4,
  518. .mx-md-4 {
  519. margin-inline-start: 1rem !important;
  520. }
  521. .m-md-5 {
  522. margin: 1.5rem !important;
  523. }
  524. .mt-md-5,
  525. .my-md-5 {
  526. margin-block-start: 1.5rem !important;
  527. }
  528. .me-md-5,
  529. .mx-md-5 {
  530. margin-inline-end: 1.5rem !important;
  531. }
  532. .mb-md-5,
  533. .my-md-5 {
  534. margin-block-end: 1.5rem !important;
  535. }
  536. .ms-md-5,
  537. .mx-md-5 {
  538. margin-inline-start: 1.5rem !important;
  539. }
  540. .m-md-6 {
  541. margin: 2rem !important;
  542. }
  543. .mt-md-6,
  544. .my-md-6 {
  545. margin-block-start: 2rem !important;
  546. }
  547. .me-md-6,
  548. .mx-md-6 {
  549. margin-inline-end: 2rem !important;
  550. }
  551. .mb-md-6,
  552. .my-md-6 {
  553. margin-block-end: 2rem !important;
  554. }
  555. .ms-md-6,
  556. .mx-md-6 {
  557. margin-inline-start: 2rem !important;
  558. }
  559. .m-md-7 {
  560. margin: 3rem !important;
  561. }
  562. .mt-md-7,
  563. .my-md-7 {
  564. margin-block-start: 3rem !important;
  565. }
  566. .me-md-7,
  567. .mx-md-7 {
  568. margin-inline-end: 3rem !important;
  569. }
  570. .mb-md-7,
  571. .my-md-7 {
  572. margin-block-end: 3rem !important;
  573. }
  574. .ms-md-7,
  575. .mx-md-7 {
  576. margin-inline-start: 3rem !important;
  577. }
  578. .m-md-8 {
  579. margin: 4rem !important;
  580. }
  581. .mt-md-8,
  582. .my-md-8 {
  583. margin-block-start: 4rem !important;
  584. }
  585. .me-md-8,
  586. .mx-md-8 {
  587. margin-inline-end: 4rem !important;
  588. }
  589. .mb-md-8,
  590. .my-md-8 {
  591. margin-block-end: 4rem !important;
  592. }
  593. .ms-md-8,
  594. .mx-md-8 {
  595. margin-inline-start: 4rem !important;
  596. }
  597. .m-md-9 {
  598. margin: 6rem !important;
  599. }
  600. .mt-md-9,
  601. .my-md-9 {
  602. margin-block-start: 6rem !important;
  603. }
  604. .me-md-9,
  605. .mx-md-9 {
  606. margin-inline-end: 6rem !important;
  607. }
  608. .mb-md-9,
  609. .my-md-9 {
  610. margin-block-end: 6rem !important;
  611. }
  612. .ms-md-9,
  613. .mx-md-9 {
  614. margin-inline-start: 6rem !important;
  615. }
  616. .m-md-auto {
  617. margin: auto !important;
  618. }
  619. .mt-md-auto,
  620. .my-md-auto {
  621. margin-block-start: auto !important;
  622. }
  623. .me-md-auto,
  624. .mx-md-auto {
  625. margin-inline-end: auto !important;
  626. }
  627. .mb-md-auto,
  628. .my-md-auto {
  629. margin-block-end: auto !important;
  630. }
  631. .ms-md-auto,
  632. .mx-md-auto {
  633. margin-inline-start: auto !important;
  634. }
  635. }
  636. @media (min-width: 992px) {
  637. .m-lg-0 {
  638. margin: 0 !important;
  639. }
  640. .mt-lg-0,
  641. .my-lg-0 {
  642. margin-block-start: 0 !important;
  643. }
  644. .me-lg-0,
  645. .mx-lg-0 {
  646. margin-inline-end: 0 !important;
  647. }
  648. .mb-lg-0,
  649. .my-lg-0 {
  650. margin-block-end: 0 !important;
  651. }
  652. .ms-lg-0,
  653. .mx-lg-0 {
  654. margin-inline-start: 0 !important;
  655. }
  656. .m-lg-1 {
  657. margin: 0.25rem !important;
  658. }
  659. .mt-lg-1,
  660. .my-lg-1 {
  661. margin-block-start: 0.25rem !important;
  662. }
  663. .me-lg-1,
  664. .mx-lg-1 {
  665. margin-inline-end: 0.25rem !important;
  666. }
  667. .mb-lg-1,
  668. .my-lg-1 {
  669. margin-block-end: 0.25rem !important;
  670. }
  671. .ms-lg-1,
  672. .mx-lg-1 {
  673. margin-inline-start: 0.25rem !important;
  674. }
  675. .m-lg-2 {
  676. margin: 0.5rem !important;
  677. }
  678. .mt-lg-2,
  679. .my-lg-2 {
  680. margin-block-start: 0.5rem !important;
  681. }
  682. .me-lg-2,
  683. .mx-lg-2 {
  684. margin-inline-end: 0.5rem !important;
  685. }
  686. .mb-lg-2,
  687. .my-lg-2 {
  688. margin-block-end: 0.5rem !important;
  689. }
  690. .ms-lg-2,
  691. .mx-lg-2 {
  692. margin-inline-start: 0.5rem !important;
  693. }
  694. .m-lg-3 {
  695. margin: 0.75rem !important;
  696. }
  697. .mt-lg-3,
  698. .my-lg-3 {
  699. margin-block-start: 0.75rem !important;
  700. }
  701. .me-lg-3,
  702. .mx-lg-3 {
  703. margin-inline-end: 0.75rem !important;
  704. }
  705. .mb-lg-3,
  706. .my-lg-3 {
  707. margin-block-end: 0.75rem !important;
  708. }
  709. .ms-lg-3,
  710. .mx-lg-3 {
  711. margin-inline-start: 0.75rem !important;
  712. }
  713. .m-lg-4 {
  714. margin: 1rem !important;
  715. }
  716. .mt-lg-4,
  717. .my-lg-4 {
  718. margin-block-start: 1rem !important;
  719. }
  720. .me-lg-4,
  721. .mx-lg-4 {
  722. margin-inline-end: 1rem !important;
  723. }
  724. .mb-lg-4,
  725. .my-lg-4 {
  726. margin-block-end: 1rem !important;
  727. }
  728. .ms-lg-4,
  729. .mx-lg-4 {
  730. margin-inline-start: 1rem !important;
  731. }
  732. .m-lg-5 {
  733. margin: 1.5rem !important;
  734. }
  735. .mt-lg-5,
  736. .my-lg-5 {
  737. margin-block-start: 1.5rem !important;
  738. }
  739. .me-lg-5,
  740. .mx-lg-5 {
  741. margin-inline-end: 1.5rem !important;
  742. }
  743. .mb-lg-5,
  744. .my-lg-5 {
  745. margin-block-end: 1.5rem !important;
  746. }
  747. .ms-lg-5,
  748. .mx-lg-5 {
  749. margin-inline-start: 1.5rem !important;
  750. }
  751. .m-lg-6 {
  752. margin: 2rem !important;
  753. }
  754. .mt-lg-6,
  755. .my-lg-6 {
  756. margin-block-start: 2rem !important;
  757. }
  758. .me-lg-6,
  759. .mx-lg-6 {
  760. margin-inline-end: 2rem !important;
  761. }
  762. .mb-lg-6,
  763. .my-lg-6 {
  764. margin-block-end: 2rem !important;
  765. }
  766. .ms-lg-6,
  767. .mx-lg-6 {
  768. margin-inline-start: 2rem !important;
  769. }
  770. .m-lg-7 {
  771. margin: 3rem !important;
  772. }
  773. .mt-lg-7,
  774. .my-lg-7 {
  775. margin-block-start: 3rem !important;
  776. }
  777. .me-lg-7,
  778. .mx-lg-7 {
  779. margin-inline-end: 3rem !important;
  780. }
  781. .mb-lg-7,
  782. .my-lg-7 {
  783. margin-block-end: 3rem !important;
  784. }
  785. .ms-lg-7,
  786. .mx-lg-7 {
  787. margin-inline-start: 3rem !important;
  788. }
  789. .m-lg-8 {
  790. margin: 4rem !important;
  791. }
  792. .mt-lg-8,
  793. .my-lg-8 {
  794. margin-block-start: 4rem !important;
  795. }
  796. .me-lg-8,
  797. .mx-lg-8 {
  798. margin-inline-end: 4rem !important;
  799. }
  800. .mb-lg-8,
  801. .my-lg-8 {
  802. margin-block-end: 4rem !important;
  803. }
  804. .ms-lg-8,
  805. .mx-lg-8 {
  806. margin-inline-start: 4rem !important;
  807. }
  808. .m-lg-9 {
  809. margin: 6rem !important;
  810. }
  811. .mt-lg-9,
  812. .my-lg-9 {
  813. margin-block-start: 6rem !important;
  814. }
  815. .me-lg-9,
  816. .mx-lg-9 {
  817. margin-inline-end: 6rem !important;
  818. }
  819. .mb-lg-9,
  820. .my-lg-9 {
  821. margin-block-end: 6rem !important;
  822. }
  823. .ms-lg-9,
  824. .mx-lg-9 {
  825. margin-inline-start: 6rem !important;
  826. }
  827. .m-lg-auto {
  828. margin: auto !important;
  829. }
  830. .mt-lg-auto,
  831. .my-lg-auto {
  832. margin-block-start: auto !important;
  833. }
  834. .me-lg-auto,
  835. .mx-lg-auto {
  836. margin-inline-end: auto !important;
  837. }
  838. .mb-lg-auto,
  839. .my-lg-auto {
  840. margin-block-end: auto !important;
  841. }
  842. .ms-lg-auto,
  843. .mx-lg-auto {
  844. margin-inline-start: auto !important;
  845. }
  846. }
  847. @media (min-width: 1280px) {
  848. .m-xl-0 {
  849. margin: 0 !important;
  850. }
  851. .mt-xl-0,
  852. .my-xl-0 {
  853. margin-block-start: 0 !important;
  854. }
  855. .me-xl-0,
  856. .mx-xl-0 {
  857. margin-inline-end: 0 !important;
  858. }
  859. .mb-xl-0,
  860. .my-xl-0 {
  861. margin-block-end: 0 !important;
  862. }
  863. .ms-xl-0,
  864. .mx-xl-0 {
  865. margin-inline-start: 0 !important;
  866. }
  867. .m-xl-1 {
  868. margin: 0.25rem !important;
  869. }
  870. .mt-xl-1,
  871. .my-xl-1 {
  872. margin-block-start: 0.25rem !important;
  873. }
  874. .me-xl-1,
  875. .mx-xl-1 {
  876. margin-inline-end: 0.25rem !important;
  877. }
  878. .mb-xl-1,
  879. .my-xl-1 {
  880. margin-block-end: 0.25rem !important;
  881. }
  882. .ms-xl-1,
  883. .mx-xl-1 {
  884. margin-inline-start: 0.25rem !important;
  885. }
  886. .m-xl-2 {
  887. margin: 0.5rem !important;
  888. }
  889. .mt-xl-2,
  890. .my-xl-2 {
  891. margin-block-start: 0.5rem !important;
  892. }
  893. .me-xl-2,
  894. .mx-xl-2 {
  895. margin-inline-end: 0.5rem !important;
  896. }
  897. .mb-xl-2,
  898. .my-xl-2 {
  899. margin-block-end: 0.5rem !important;
  900. }
  901. .ms-xl-2,
  902. .mx-xl-2 {
  903. margin-inline-start: 0.5rem !important;
  904. }
  905. .m-xl-3 {
  906. margin: 0.75rem !important;
  907. }
  908. .mt-xl-3,
  909. .my-xl-3 {
  910. margin-block-start: 0.75rem !important;
  911. }
  912. .me-xl-3,
  913. .mx-xl-3 {
  914. margin-inline-end: 0.75rem !important;
  915. }
  916. .mb-xl-3,
  917. .my-xl-3 {
  918. margin-block-end: 0.75rem !important;
  919. }
  920. .ms-xl-3,
  921. .mx-xl-3 {
  922. margin-inline-start: 0.75rem !important;
  923. }
  924. .m-xl-4 {
  925. margin: 1rem !important;
  926. }
  927. .mt-xl-4,
  928. .my-xl-4 {
  929. margin-block-start: 1rem !important;
  930. }
  931. .me-xl-4,
  932. .mx-xl-4 {
  933. margin-inline-end: 1rem !important;
  934. }
  935. .mb-xl-4,
  936. .my-xl-4 {
  937. margin-block-end: 1rem !important;
  938. }
  939. .ms-xl-4,
  940. .mx-xl-4 {
  941. margin-inline-start: 1rem !important;
  942. }
  943. .m-xl-5 {
  944. margin: 1.5rem !important;
  945. }
  946. .mt-xl-5,
  947. .my-xl-5 {
  948. margin-block-start: 1.5rem !important;
  949. }
  950. .me-xl-5,
  951. .mx-xl-5 {
  952. margin-inline-end: 1.5rem !important;
  953. }
  954. .mb-xl-5,
  955. .my-xl-5 {
  956. margin-block-end: 1.5rem !important;
  957. }
  958. .ms-xl-5,
  959. .mx-xl-5 {
  960. margin-inline-start: 1.5rem !important;
  961. }
  962. .m-xl-6 {
  963. margin: 2rem !important;
  964. }
  965. .mt-xl-6,
  966. .my-xl-6 {
  967. margin-block-start: 2rem !important;
  968. }
  969. .me-xl-6,
  970. .mx-xl-6 {
  971. margin-inline-end: 2rem !important;
  972. }
  973. .mb-xl-6,
  974. .my-xl-6 {
  975. margin-block-end: 2rem !important;
  976. }
  977. .ms-xl-6,
  978. .mx-xl-6 {
  979. margin-inline-start: 2rem !important;
  980. }
  981. .m-xl-7 {
  982. margin: 3rem !important;
  983. }
  984. .mt-xl-7,
  985. .my-xl-7 {
  986. margin-block-start: 3rem !important;
  987. }
  988. .me-xl-7,
  989. .mx-xl-7 {
  990. margin-inline-end: 3rem !important;
  991. }
  992. .mb-xl-7,
  993. .my-xl-7 {
  994. margin-block-end: 3rem !important;
  995. }
  996. .ms-xl-7,
  997. .mx-xl-7 {
  998. margin-inline-start: 3rem !important;
  999. }
  1000. .m-xl-8 {
  1001. margin: 4rem !important;
  1002. }
  1003. .mt-xl-8,
  1004. .my-xl-8 {
  1005. margin-block-start: 4rem !important;
  1006. }
  1007. .me-xl-8,
  1008. .mx-xl-8 {
  1009. margin-inline-end: 4rem !important;
  1010. }
  1011. .mb-xl-8,
  1012. .my-xl-8 {
  1013. margin-block-end: 4rem !important;
  1014. }
  1015. .ms-xl-8,
  1016. .mx-xl-8 {
  1017. margin-inline-start: 4rem !important;
  1018. }
  1019. .m-xl-9 {
  1020. margin: 6rem !important;
  1021. }
  1022. .mt-xl-9,
  1023. .my-xl-9 {
  1024. margin-block-start: 6rem !important;
  1025. }
  1026. .me-xl-9,
  1027. .mx-xl-9 {
  1028. margin-inline-end: 6rem !important;
  1029. }
  1030. .mb-xl-9,
  1031. .my-xl-9 {
  1032. margin-block-end: 6rem !important;
  1033. }
  1034. .ms-xl-9,
  1035. .mx-xl-9 {
  1036. margin-inline-start: 6rem !important;
  1037. }
  1038. .m-xl-auto {
  1039. margin: auto !important;
  1040. }
  1041. .mt-xl-auto,
  1042. .my-xl-auto {
  1043. margin-block-start: auto !important;
  1044. }
  1045. .me-xl-auto,
  1046. .mx-xl-auto {
  1047. margin-inline-end: auto !important;
  1048. }
  1049. .mb-xl-auto,
  1050. .my-xl-auto {
  1051. margin-block-end: auto !important;
  1052. }
  1053. .ms-xl-auto,
  1054. .mx-xl-auto {
  1055. margin-inline-start: auto !important;
  1056. }
  1057. }