Development of an internal social media platform with personalised dashboards for students
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.

bootstrap-grid.css 32KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567
  1. /*!
  2. * Bootstrap Grid v4.0.0-beta.2 (https://getbootstrap.com)
  3. * Copyright 2011-2017 The Bootstrap Authors
  4. * Copyright 2011-2017 Twitter, Inc.
  5. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
  6. */
  7. @-ms-viewport {
  8. width: device-width;
  9. }
  10. html {
  11. box-sizing: border-box;
  12. -ms-overflow-style: scrollbar;
  13. }
  14. *,
  15. *::before,
  16. *::after {
  17. box-sizing: inherit;
  18. }
  19. .container {
  20. width: 100%;
  21. padding-right: 15px;
  22. padding-left: 15px;
  23. margin-right: auto;
  24. margin-left: auto;
  25. }
  26. @media (min-width: 576px) {
  27. .container {
  28. max-width: 540px;
  29. }
  30. }
  31. @media (min-width: 768px) {
  32. .container {
  33. max-width: 720px;
  34. }
  35. }
  36. @media (min-width: 992px) {
  37. .container {
  38. max-width: 960px;
  39. }
  40. }
  41. @media (min-width: 1200px) {
  42. .container {
  43. max-width: 1140px;
  44. }
  45. }
  46. .container-fluid {
  47. width: 100%;
  48. padding-right: 15px;
  49. padding-left: 15px;
  50. margin-right: auto;
  51. margin-left: auto;
  52. }
  53. .row {
  54. display: -ms-flexbox;
  55. display: flex;
  56. -ms-flex-wrap: wrap;
  57. flex-wrap: wrap;
  58. margin-right: -15px;
  59. margin-left: -15px;
  60. }
  61. .no-gutters {
  62. margin-right: 0;
  63. margin-left: 0;
  64. }
  65. .no-gutters > .col,
  66. .no-gutters > [class*="col-"] {
  67. padding-right: 0;
  68. padding-left: 0;
  69. }
  70. .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
  71. .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
  72. .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
  73. .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
  74. .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
  75. .col-xl-auto {
  76. position: relative;
  77. width: 100%;
  78. min-height: 1px;
  79. padding-right: 15px;
  80. padding-left: 15px;
  81. }
  82. .col {
  83. -ms-flex-preferred-size: 0;
  84. flex-basis: 0;
  85. -ms-flex-positive: 1;
  86. flex-grow: 1;
  87. max-width: 100%;
  88. }
  89. .col-auto {
  90. -ms-flex: 0 0 auto;
  91. flex: 0 0 auto;
  92. width: auto;
  93. max-width: none;
  94. }
  95. .col-1 {
  96. -ms-flex: 0 0 8.333333%;
  97. flex: 0 0 8.333333%;
  98. max-width: 8.333333%;
  99. }
  100. .col-2 {
  101. -ms-flex: 0 0 16.666667%;
  102. flex: 0 0 16.666667%;
  103. max-width: 16.666667%;
  104. }
  105. .col-3 {
  106. -ms-flex: 0 0 25%;
  107. flex: 0 0 25%;
  108. max-width: 25%;
  109. }
  110. .col-4 {
  111. -ms-flex: 0 0 33.333333%;
  112. flex: 0 0 33.333333%;
  113. max-width: 33.333333%;
  114. }
  115. .col-5 {
  116. -ms-flex: 0 0 41.666667%;
  117. flex: 0 0 41.666667%;
  118. max-width: 41.666667%;
  119. }
  120. .col-6 {
  121. -ms-flex: 0 0 50%;
  122. flex: 0 0 50%;
  123. max-width: 50%;
  124. }
  125. .col-7 {
  126. -ms-flex: 0 0 58.333333%;
  127. flex: 0 0 58.333333%;
  128. max-width: 58.333333%;
  129. }
  130. .col-8 {
  131. -ms-flex: 0 0 66.666667%;
  132. flex: 0 0 66.666667%;
  133. max-width: 66.666667%;
  134. }
  135. .col-9 {
  136. -ms-flex: 0 0 75%;
  137. flex: 0 0 75%;
  138. max-width: 75%;
  139. }
  140. .col-10 {
  141. -ms-flex: 0 0 83.333333%;
  142. flex: 0 0 83.333333%;
  143. max-width: 83.333333%;
  144. }
  145. .col-11 {
  146. -ms-flex: 0 0 91.666667%;
  147. flex: 0 0 91.666667%;
  148. max-width: 91.666667%;
  149. }
  150. .col-12 {
  151. -ms-flex: 0 0 100%;
  152. flex: 0 0 100%;
  153. max-width: 100%;
  154. }
  155. .order-first {
  156. -ms-flex-order: -1;
  157. order: -1;
  158. }
  159. .order-1 {
  160. -ms-flex-order: 1;
  161. order: 1;
  162. }
  163. .order-2 {
  164. -ms-flex-order: 2;
  165. order: 2;
  166. }
  167. .order-3 {
  168. -ms-flex-order: 3;
  169. order: 3;
  170. }
  171. .order-4 {
  172. -ms-flex-order: 4;
  173. order: 4;
  174. }
  175. .order-5 {
  176. -ms-flex-order: 5;
  177. order: 5;
  178. }
  179. .order-6 {
  180. -ms-flex-order: 6;
  181. order: 6;
  182. }
  183. .order-7 {
  184. -ms-flex-order: 7;
  185. order: 7;
  186. }
  187. .order-8 {
  188. -ms-flex-order: 8;
  189. order: 8;
  190. }
  191. .order-9 {
  192. -ms-flex-order: 9;
  193. order: 9;
  194. }
  195. .order-10 {
  196. -ms-flex-order: 10;
  197. order: 10;
  198. }
  199. .order-11 {
  200. -ms-flex-order: 11;
  201. order: 11;
  202. }
  203. .order-12 {
  204. -ms-flex-order: 12;
  205. order: 12;
  206. }
  207. .offset-1 {
  208. margin-left: 8.333333%;
  209. }
  210. .offset-2 {
  211. margin-left: 16.666667%;
  212. }
  213. .offset-3 {
  214. margin-left: 25%;
  215. }
  216. .offset-4 {
  217. margin-left: 33.333333%;
  218. }
  219. .offset-5 {
  220. margin-left: 41.666667%;
  221. }
  222. .offset-6 {
  223. margin-left: 50%;
  224. }
  225. .offset-7 {
  226. margin-left: 58.333333%;
  227. }
  228. .offset-8 {
  229. margin-left: 66.666667%;
  230. }
  231. .offset-9 {
  232. margin-left: 75%;
  233. }
  234. .offset-10 {
  235. margin-left: 83.333333%;
  236. }
  237. .offset-11 {
  238. margin-left: 91.666667%;
  239. }
  240. @media (min-width: 576px) {
  241. .col-sm {
  242. -ms-flex-preferred-size: 0;
  243. flex-basis: 0;
  244. -ms-flex-positive: 1;
  245. flex-grow: 1;
  246. max-width: 100%;
  247. }
  248. .col-sm-auto {
  249. -ms-flex: 0 0 auto;
  250. flex: 0 0 auto;
  251. width: auto;
  252. max-width: none;
  253. }
  254. .col-sm-1 {
  255. -ms-flex: 0 0 8.333333%;
  256. flex: 0 0 8.333333%;
  257. max-width: 8.333333%;
  258. }
  259. .col-sm-2 {
  260. -ms-flex: 0 0 16.666667%;
  261. flex: 0 0 16.666667%;
  262. max-width: 16.666667%;
  263. }
  264. .col-sm-3 {
  265. -ms-flex: 0 0 25%;
  266. flex: 0 0 25%;
  267. max-width: 25%;
  268. }
  269. .col-sm-4 {
  270. -ms-flex: 0 0 33.333333%;
  271. flex: 0 0 33.333333%;
  272. max-width: 33.333333%;
  273. }
  274. .col-sm-5 {
  275. -ms-flex: 0 0 41.666667%;
  276. flex: 0 0 41.666667%;
  277. max-width: 41.666667%;
  278. }
  279. .col-sm-6 {
  280. -ms-flex: 0 0 50%;
  281. flex: 0 0 50%;
  282. max-width: 50%;
  283. }
  284. .col-sm-7 {
  285. -ms-flex: 0 0 58.333333%;
  286. flex: 0 0 58.333333%;
  287. max-width: 58.333333%;
  288. }
  289. .col-sm-8 {
  290. -ms-flex: 0 0 66.666667%;
  291. flex: 0 0 66.666667%;
  292. max-width: 66.666667%;
  293. }
  294. .col-sm-9 {
  295. -ms-flex: 0 0 75%;
  296. flex: 0 0 75%;
  297. max-width: 75%;
  298. }
  299. .col-sm-10 {
  300. -ms-flex: 0 0 83.333333%;
  301. flex: 0 0 83.333333%;
  302. max-width: 83.333333%;
  303. }
  304. .col-sm-11 {
  305. -ms-flex: 0 0 91.666667%;
  306. flex: 0 0 91.666667%;
  307. max-width: 91.666667%;
  308. }
  309. .col-sm-12 {
  310. -ms-flex: 0 0 100%;
  311. flex: 0 0 100%;
  312. max-width: 100%;
  313. }
  314. .order-sm-first {
  315. -ms-flex-order: -1;
  316. order: -1;
  317. }
  318. .order-sm-1 {
  319. -ms-flex-order: 1;
  320. order: 1;
  321. }
  322. .order-sm-2 {
  323. -ms-flex-order: 2;
  324. order: 2;
  325. }
  326. .order-sm-3 {
  327. -ms-flex-order: 3;
  328. order: 3;
  329. }
  330. .order-sm-4 {
  331. -ms-flex-order: 4;
  332. order: 4;
  333. }
  334. .order-sm-5 {
  335. -ms-flex-order: 5;
  336. order: 5;
  337. }
  338. .order-sm-6 {
  339. -ms-flex-order: 6;
  340. order: 6;
  341. }
  342. .order-sm-7 {
  343. -ms-flex-order: 7;
  344. order: 7;
  345. }
  346. .order-sm-8 {
  347. -ms-flex-order: 8;
  348. order: 8;
  349. }
  350. .order-sm-9 {
  351. -ms-flex-order: 9;
  352. order: 9;
  353. }
  354. .order-sm-10 {
  355. -ms-flex-order: 10;
  356. order: 10;
  357. }
  358. .order-sm-11 {
  359. -ms-flex-order: 11;
  360. order: 11;
  361. }
  362. .order-sm-12 {
  363. -ms-flex-order: 12;
  364. order: 12;
  365. }
  366. .offset-sm-0 {
  367. margin-left: 0;
  368. }
  369. .offset-sm-1 {
  370. margin-left: 8.333333%;
  371. }
  372. .offset-sm-2 {
  373. margin-left: 16.666667%;
  374. }
  375. .offset-sm-3 {
  376. margin-left: 25%;
  377. }
  378. .offset-sm-4 {
  379. margin-left: 33.333333%;
  380. }
  381. .offset-sm-5 {
  382. margin-left: 41.666667%;
  383. }
  384. .offset-sm-6 {
  385. margin-left: 50%;
  386. }
  387. .offset-sm-7 {
  388. margin-left: 58.333333%;
  389. }
  390. .offset-sm-8 {
  391. margin-left: 66.666667%;
  392. }
  393. .offset-sm-9 {
  394. margin-left: 75%;
  395. }
  396. .offset-sm-10 {
  397. margin-left: 83.333333%;
  398. }
  399. .offset-sm-11 {
  400. margin-left: 91.666667%;
  401. }
  402. }
  403. @media (min-width: 768px) {
  404. .col-md {
  405. -ms-flex-preferred-size: 0;
  406. flex-basis: 0;
  407. -ms-flex-positive: 1;
  408. flex-grow: 1;
  409. max-width: 100%;
  410. }
  411. .col-md-auto {
  412. -ms-flex: 0 0 auto;
  413. flex: 0 0 auto;
  414. width: auto;
  415. max-width: none;
  416. }
  417. .col-md-1 {
  418. -ms-flex: 0 0 8.333333%;
  419. flex: 0 0 8.333333%;
  420. max-width: 8.333333%;
  421. }
  422. .col-md-2 {
  423. -ms-flex: 0 0 16.666667%;
  424. flex: 0 0 16.666667%;
  425. max-width: 16.666667%;
  426. }
  427. .col-md-3 {
  428. -ms-flex: 0 0 25%;
  429. flex: 0 0 25%;
  430. max-width: 25%;
  431. }
  432. .col-md-4 {
  433. -ms-flex: 0 0 33.333333%;
  434. flex: 0 0 33.333333%;
  435. max-width: 33.333333%;
  436. }
  437. .col-md-5 {
  438. -ms-flex: 0 0 41.666667%;
  439. flex: 0 0 41.666667%;
  440. max-width: 41.666667%;
  441. }
  442. .col-md-6 {
  443. -ms-flex: 0 0 50%;
  444. flex: 0 0 50%;
  445. max-width: 50%;
  446. }
  447. .col-md-7 {
  448. -ms-flex: 0 0 58.333333%;
  449. flex: 0 0 58.333333%;
  450. max-width: 58.333333%;
  451. }
  452. .col-md-8 {
  453. -ms-flex: 0 0 66.666667%;
  454. flex: 0 0 66.666667%;
  455. max-width: 66.666667%;
  456. }
  457. .col-md-9 {
  458. -ms-flex: 0 0 75%;
  459. flex: 0 0 75%;
  460. max-width: 75%;
  461. }
  462. .col-md-10 {
  463. -ms-flex: 0 0 83.333333%;
  464. flex: 0 0 83.333333%;
  465. max-width: 83.333333%;
  466. }
  467. .col-md-11 {
  468. -ms-flex: 0 0 91.666667%;
  469. flex: 0 0 91.666667%;
  470. max-width: 91.666667%;
  471. }
  472. .col-md-12 {
  473. -ms-flex: 0 0 100%;
  474. flex: 0 0 100%;
  475. max-width: 100%;
  476. }
  477. .order-md-first {
  478. -ms-flex-order: -1;
  479. order: -1;
  480. }
  481. .order-md-1 {
  482. -ms-flex-order: 1;
  483. order: 1;
  484. }
  485. .order-md-2 {
  486. -ms-flex-order: 2;
  487. order: 2;
  488. }
  489. .order-md-3 {
  490. -ms-flex-order: 3;
  491. order: 3;
  492. }
  493. .order-md-4 {
  494. -ms-flex-order: 4;
  495. order: 4;
  496. }
  497. .order-md-5 {
  498. -ms-flex-order: 5;
  499. order: 5;
  500. }
  501. .order-md-6 {
  502. -ms-flex-order: 6;
  503. order: 6;
  504. }
  505. .order-md-7 {
  506. -ms-flex-order: 7;
  507. order: 7;
  508. }
  509. .order-md-8 {
  510. -ms-flex-order: 8;
  511. order: 8;
  512. }
  513. .order-md-9 {
  514. -ms-flex-order: 9;
  515. order: 9;
  516. }
  517. .order-md-10 {
  518. -ms-flex-order: 10;
  519. order: 10;
  520. }
  521. .order-md-11 {
  522. -ms-flex-order: 11;
  523. order: 11;
  524. }
  525. .order-md-12 {
  526. -ms-flex-order: 12;
  527. order: 12;
  528. }
  529. .offset-md-0 {
  530. margin-left: 0;
  531. }
  532. .offset-md-1 {
  533. margin-left: 8.333333%;
  534. }
  535. .offset-md-2 {
  536. margin-left: 16.666667%;
  537. }
  538. .offset-md-3 {
  539. margin-left: 25%;
  540. }
  541. .offset-md-4 {
  542. margin-left: 33.333333%;
  543. }
  544. .offset-md-5 {
  545. margin-left: 41.666667%;
  546. }
  547. .offset-md-6 {
  548. margin-left: 50%;
  549. }
  550. .offset-md-7 {
  551. margin-left: 58.333333%;
  552. }
  553. .offset-md-8 {
  554. margin-left: 66.666667%;
  555. }
  556. .offset-md-9 {
  557. margin-left: 75%;
  558. }
  559. .offset-md-10 {
  560. margin-left: 83.333333%;
  561. }
  562. .offset-md-11 {
  563. margin-left: 91.666667%;
  564. }
  565. }
  566. @media (min-width: 992px) {
  567. .col-lg {
  568. -ms-flex-preferred-size: 0;
  569. flex-basis: 0;
  570. -ms-flex-positive: 1;
  571. flex-grow: 1;
  572. max-width: 100%;
  573. }
  574. .col-lg-auto {
  575. -ms-flex: 0 0 auto;
  576. flex: 0 0 auto;
  577. width: auto;
  578. max-width: none;
  579. }
  580. .col-lg-1 {
  581. -ms-flex: 0 0 8.333333%;
  582. flex: 0 0 8.333333%;
  583. max-width: 8.333333%;
  584. }
  585. .col-lg-2 {
  586. -ms-flex: 0 0 16.666667%;
  587. flex: 0 0 16.666667%;
  588. max-width: 16.666667%;
  589. }
  590. .col-lg-3 {
  591. -ms-flex: 0 0 25%;
  592. flex: 0 0 25%;
  593. max-width: 25%;
  594. }
  595. .col-lg-4 {
  596. -ms-flex: 0 0 33.333333%;
  597. flex: 0 0 33.333333%;
  598. max-width: 33.333333%;
  599. }
  600. .col-lg-5 {
  601. -ms-flex: 0 0 41.666667%;
  602. flex: 0 0 41.666667%;
  603. max-width: 41.666667%;
  604. }
  605. .col-lg-6 {
  606. -ms-flex: 0 0 50%;
  607. flex: 0 0 50%;
  608. max-width: 50%;
  609. }
  610. .col-lg-7 {
  611. -ms-flex: 0 0 58.333333%;
  612. flex: 0 0 58.333333%;
  613. max-width: 58.333333%;
  614. }
  615. .col-lg-8 {
  616. -ms-flex: 0 0 66.666667%;
  617. flex: 0 0 66.666667%;
  618. max-width: 66.666667%;
  619. }
  620. .col-lg-9 {
  621. -ms-flex: 0 0 75%;
  622. flex: 0 0 75%;
  623. max-width: 75%;
  624. }
  625. .col-lg-10 {
  626. -ms-flex: 0 0 83.333333%;
  627. flex: 0 0 83.333333%;
  628. max-width: 83.333333%;
  629. }
  630. .col-lg-11 {
  631. -ms-flex: 0 0 91.666667%;
  632. flex: 0 0 91.666667%;
  633. max-width: 91.666667%;
  634. }
  635. .col-lg-12 {
  636. -ms-flex: 0 0 100%;
  637. flex: 0 0 100%;
  638. max-width: 100%;
  639. }
  640. .order-lg-first {
  641. -ms-flex-order: -1;
  642. order: -1;
  643. }
  644. .order-lg-1 {
  645. -ms-flex-order: 1;
  646. order: 1;
  647. }
  648. .order-lg-2 {
  649. -ms-flex-order: 2;
  650. order: 2;
  651. }
  652. .order-lg-3 {
  653. -ms-flex-order: 3;
  654. order: 3;
  655. }
  656. .order-lg-4 {
  657. -ms-flex-order: 4;
  658. order: 4;
  659. }
  660. .order-lg-5 {
  661. -ms-flex-order: 5;
  662. order: 5;
  663. }
  664. .order-lg-6 {
  665. -ms-flex-order: 6;
  666. order: 6;
  667. }
  668. .order-lg-7 {
  669. -ms-flex-order: 7;
  670. order: 7;
  671. }
  672. .order-lg-8 {
  673. -ms-flex-order: 8;
  674. order: 8;
  675. }
  676. .order-lg-9 {
  677. -ms-flex-order: 9;
  678. order: 9;
  679. }
  680. .order-lg-10 {
  681. -ms-flex-order: 10;
  682. order: 10;
  683. }
  684. .order-lg-11 {
  685. -ms-flex-order: 11;
  686. order: 11;
  687. }
  688. .order-lg-12 {
  689. -ms-flex-order: 12;
  690. order: 12;
  691. }
  692. .offset-lg-0 {
  693. margin-left: 0;
  694. }
  695. .offset-lg-1 {
  696. margin-left: 8.333333%;
  697. }
  698. .offset-lg-2 {
  699. margin-left: 16.666667%;
  700. }
  701. .offset-lg-3 {
  702. margin-left: 25%;
  703. }
  704. .offset-lg-4 {
  705. margin-left: 33.333333%;
  706. }
  707. .offset-lg-5 {
  708. margin-left: 41.666667%;
  709. }
  710. .offset-lg-6 {
  711. margin-left: 50%;
  712. }
  713. .offset-lg-7 {
  714. margin-left: 58.333333%;
  715. }
  716. .offset-lg-8 {
  717. margin-left: 66.666667%;
  718. }
  719. .offset-lg-9 {
  720. margin-left: 75%;
  721. }
  722. .offset-lg-10 {
  723. margin-left: 83.333333%;
  724. }
  725. .offset-lg-11 {
  726. margin-left: 91.666667%;
  727. }
  728. }
  729. @media (min-width: 1200px) {
  730. .col-xl {
  731. -ms-flex-preferred-size: 0;
  732. flex-basis: 0;
  733. -ms-flex-positive: 1;
  734. flex-grow: 1;
  735. max-width: 100%;
  736. }
  737. .col-xl-auto {
  738. -ms-flex: 0 0 auto;
  739. flex: 0 0 auto;
  740. width: auto;
  741. max-width: none;
  742. }
  743. .col-xl-1 {
  744. -ms-flex: 0 0 8.333333%;
  745. flex: 0 0 8.333333%;
  746. max-width: 8.333333%;
  747. }
  748. .col-xl-2 {
  749. -ms-flex: 0 0 16.666667%;
  750. flex: 0 0 16.666667%;
  751. max-width: 16.666667%;
  752. }
  753. .col-xl-3 {
  754. -ms-flex: 0 0 25%;
  755. flex: 0 0 25%;
  756. max-width: 25%;
  757. }
  758. .col-xl-4 {
  759. -ms-flex: 0 0 33.333333%;
  760. flex: 0 0 33.333333%;
  761. max-width: 33.333333%;
  762. }
  763. .col-xl-5 {
  764. -ms-flex: 0 0 41.666667%;
  765. flex: 0 0 41.666667%;
  766. max-width: 41.666667%;
  767. }
  768. .col-xl-6 {
  769. -ms-flex: 0 0 50%;
  770. flex: 0 0 50%;
  771. max-width: 50%;
  772. }
  773. .col-xl-7 {
  774. -ms-flex: 0 0 58.333333%;
  775. flex: 0 0 58.333333%;
  776. max-width: 58.333333%;
  777. }
  778. .col-xl-8 {
  779. -ms-flex: 0 0 66.666667%;
  780. flex: 0 0 66.666667%;
  781. max-width: 66.666667%;
  782. }
  783. .col-xl-9 {
  784. -ms-flex: 0 0 75%;
  785. flex: 0 0 75%;
  786. max-width: 75%;
  787. }
  788. .col-xl-10 {
  789. -ms-flex: 0 0 83.333333%;
  790. flex: 0 0 83.333333%;
  791. max-width: 83.333333%;
  792. }
  793. .col-xl-11 {
  794. -ms-flex: 0 0 91.666667%;
  795. flex: 0 0 91.666667%;
  796. max-width: 91.666667%;
  797. }
  798. .col-xl-12 {
  799. -ms-flex: 0 0 100%;
  800. flex: 0 0 100%;
  801. max-width: 100%;
  802. }
  803. .order-xl-first {
  804. -ms-flex-order: -1;
  805. order: -1;
  806. }
  807. .order-xl-1 {
  808. -ms-flex-order: 1;
  809. order: 1;
  810. }
  811. .order-xl-2 {
  812. -ms-flex-order: 2;
  813. order: 2;
  814. }
  815. .order-xl-3 {
  816. -ms-flex-order: 3;
  817. order: 3;
  818. }
  819. .order-xl-4 {
  820. -ms-flex-order: 4;
  821. order: 4;
  822. }
  823. .order-xl-5 {
  824. -ms-flex-order: 5;
  825. order: 5;
  826. }
  827. .order-xl-6 {
  828. -ms-flex-order: 6;
  829. order: 6;
  830. }
  831. .order-xl-7 {
  832. -ms-flex-order: 7;
  833. order: 7;
  834. }
  835. .order-xl-8 {
  836. -ms-flex-order: 8;
  837. order: 8;
  838. }
  839. .order-xl-9 {
  840. -ms-flex-order: 9;
  841. order: 9;
  842. }
  843. .order-xl-10 {
  844. -ms-flex-order: 10;
  845. order: 10;
  846. }
  847. .order-xl-11 {
  848. -ms-flex-order: 11;
  849. order: 11;
  850. }
  851. .order-xl-12 {
  852. -ms-flex-order: 12;
  853. order: 12;
  854. }
  855. .offset-xl-0 {
  856. margin-left: 0;
  857. }
  858. .offset-xl-1 {
  859. margin-left: 8.333333%;
  860. }
  861. .offset-xl-2 {
  862. margin-left: 16.666667%;
  863. }
  864. .offset-xl-3 {
  865. margin-left: 25%;
  866. }
  867. .offset-xl-4 {
  868. margin-left: 33.333333%;
  869. }
  870. .offset-xl-5 {
  871. margin-left: 41.666667%;
  872. }
  873. .offset-xl-6 {
  874. margin-left: 50%;
  875. }
  876. .offset-xl-7 {
  877. margin-left: 58.333333%;
  878. }
  879. .offset-xl-8 {
  880. margin-left: 66.666667%;
  881. }
  882. .offset-xl-9 {
  883. margin-left: 75%;
  884. }
  885. .offset-xl-10 {
  886. margin-left: 83.333333%;
  887. }
  888. .offset-xl-11 {
  889. margin-left: 91.666667%;
  890. }
  891. }
  892. .flex-row {
  893. -ms-flex-direction: row !important;
  894. flex-direction: row !important;
  895. }
  896. .flex-column {
  897. -ms-flex-direction: column !important;
  898. flex-direction: column !important;
  899. }
  900. .flex-row-reverse {
  901. -ms-flex-direction: row-reverse !important;
  902. flex-direction: row-reverse !important;
  903. }
  904. .flex-column-reverse {
  905. -ms-flex-direction: column-reverse !important;
  906. flex-direction: column-reverse !important;
  907. }
  908. .flex-wrap {
  909. -ms-flex-wrap: wrap !important;
  910. flex-wrap: wrap !important;
  911. }
  912. .flex-nowrap {
  913. -ms-flex-wrap: nowrap !important;
  914. flex-wrap: nowrap !important;
  915. }
  916. .flex-wrap-reverse {
  917. -ms-flex-wrap: wrap-reverse !important;
  918. flex-wrap: wrap-reverse !important;
  919. }
  920. .justify-content-start {
  921. -ms-flex-pack: start !important;
  922. justify-content: flex-start !important;
  923. }
  924. .justify-content-end {
  925. -ms-flex-pack: end !important;
  926. justify-content: flex-end !important;
  927. }
  928. .justify-content-center {
  929. -ms-flex-pack: center !important;
  930. justify-content: center !important;
  931. }
  932. .justify-content-between {
  933. -ms-flex-pack: justify !important;
  934. justify-content: space-between !important;
  935. }
  936. .justify-content-around {
  937. -ms-flex-pack: distribute !important;
  938. justify-content: space-around !important;
  939. }
  940. .align-items-start {
  941. -ms-flex-align: start !important;
  942. align-items: flex-start !important;
  943. }
  944. .align-items-end {
  945. -ms-flex-align: end !important;
  946. align-items: flex-end !important;
  947. }
  948. .align-items-center {
  949. -ms-flex-align: center !important;
  950. align-items: center !important;
  951. }
  952. .align-items-baseline {
  953. -ms-flex-align: baseline !important;
  954. align-items: baseline !important;
  955. }
  956. .align-items-stretch {
  957. -ms-flex-align: stretch !important;
  958. align-items: stretch !important;
  959. }
  960. .align-content-start {
  961. -ms-flex-line-pack: start !important;
  962. align-content: flex-start !important;
  963. }
  964. .align-content-end {
  965. -ms-flex-line-pack: end !important;
  966. align-content: flex-end !important;
  967. }
  968. .align-content-center {
  969. -ms-flex-line-pack: center !important;
  970. align-content: center !important;
  971. }
  972. .align-content-between {
  973. -ms-flex-line-pack: justify !important;
  974. align-content: space-between !important;
  975. }
  976. .align-content-around {
  977. -ms-flex-line-pack: distribute !important;
  978. align-content: space-around !important;
  979. }
  980. .align-content-stretch {
  981. -ms-flex-line-pack: stretch !important;
  982. align-content: stretch !important;
  983. }
  984. .align-self-auto {
  985. -ms-flex-item-align: auto !important;
  986. align-self: auto !important;
  987. }
  988. .align-self-start {
  989. -ms-flex-item-align: start !important;
  990. align-self: flex-start !important;
  991. }
  992. .align-self-end {
  993. -ms-flex-item-align: end !important;
  994. align-self: flex-end !important;
  995. }
  996. .align-self-center {
  997. -ms-flex-item-align: center !important;
  998. align-self: center !important;
  999. }
  1000. .align-self-baseline {
  1001. -ms-flex-item-align: baseline !important;
  1002. align-self: baseline !important;
  1003. }
  1004. .align-self-stretch {
  1005. -ms-flex-item-align: stretch !important;
  1006. align-self: stretch !important;
  1007. }
  1008. @media (min-width: 576px) {
  1009. .flex-sm-row {
  1010. -ms-flex-direction: row !important;
  1011. flex-direction: row !important;
  1012. }
  1013. .flex-sm-column {
  1014. -ms-flex-direction: column !important;
  1015. flex-direction: column !important;
  1016. }
  1017. .flex-sm-row-reverse {
  1018. -ms-flex-direction: row-reverse !important;
  1019. flex-direction: row-reverse !important;
  1020. }
  1021. .flex-sm-column-reverse {
  1022. -ms-flex-direction: column-reverse !important;
  1023. flex-direction: column-reverse !important;
  1024. }
  1025. .flex-sm-wrap {
  1026. -ms-flex-wrap: wrap !important;
  1027. flex-wrap: wrap !important;
  1028. }
  1029. .flex-sm-nowrap {
  1030. -ms-flex-wrap: nowrap !important;
  1031. flex-wrap: nowrap !important;
  1032. }
  1033. .flex-sm-wrap-reverse {
  1034. -ms-flex-wrap: wrap-reverse !important;
  1035. flex-wrap: wrap-reverse !important;
  1036. }
  1037. .justify-content-sm-start {
  1038. -ms-flex-pack: start !important;
  1039. justify-content: flex-start !important;
  1040. }
  1041. .justify-content-sm-end {
  1042. -ms-flex-pack: end !important;
  1043. justify-content: flex-end !important;
  1044. }
  1045. .justify-content-sm-center {
  1046. -ms-flex-pack: center !important;
  1047. justify-content: center !important;
  1048. }
  1049. .justify-content-sm-between {
  1050. -ms-flex-pack: justify !important;
  1051. justify-content: space-between !important;
  1052. }
  1053. .justify-content-sm-around {
  1054. -ms-flex-pack: distribute !important;
  1055. justify-content: space-around !important;
  1056. }
  1057. .align-items-sm-start {
  1058. -ms-flex-align: start !important;
  1059. align-items: flex-start !important;
  1060. }
  1061. .align-items-sm-end {
  1062. -ms-flex-align: end !important;
  1063. align-items: flex-end !important;
  1064. }
  1065. .align-items-sm-center {
  1066. -ms-flex-align: center !important;
  1067. align-items: center !important;
  1068. }
  1069. .align-items-sm-baseline {
  1070. -ms-flex-align: baseline !important;
  1071. align-items: baseline !important;
  1072. }
  1073. .align-items-sm-stretch {
  1074. -ms-flex-align: stretch !important;
  1075. align-items: stretch !important;
  1076. }
  1077. .align-content-sm-start {
  1078. -ms-flex-line-pack: start !important;
  1079. align-content: flex-start !important;
  1080. }
  1081. .align-content-sm-end {
  1082. -ms-flex-line-pack: end !important;
  1083. align-content: flex-end !important;
  1084. }
  1085. .align-content-sm-center {
  1086. -ms-flex-line-pack: center !important;
  1087. align-content: center !important;
  1088. }
  1089. .align-content-sm-between {
  1090. -ms-flex-line-pack: justify !important;
  1091. align-content: space-between !important;
  1092. }
  1093. .align-content-sm-around {
  1094. -ms-flex-line-pack: distribute !important;
  1095. align-content: space-around !important;
  1096. }
  1097. .align-content-sm-stretch {
  1098. -ms-flex-line-pack: stretch !important;
  1099. align-content: stretch !important;
  1100. }
  1101. .align-self-sm-auto {
  1102. -ms-flex-item-align: auto !important;
  1103. align-self: auto !important;
  1104. }
  1105. .align-self-sm-start {
  1106. -ms-flex-item-align: start !important;
  1107. align-self: flex-start !important;
  1108. }
  1109. .align-self-sm-end {
  1110. -ms-flex-item-align: end !important;
  1111. align-self: flex-end !important;
  1112. }
  1113. .align-self-sm-center {
  1114. -ms-flex-item-align: center !important;
  1115. align-self: center !important;
  1116. }
  1117. .align-self-sm-baseline {
  1118. -ms-flex-item-align: baseline !important;
  1119. align-self: baseline !important;
  1120. }
  1121. .align-self-sm-stretch {
  1122. -ms-flex-item-align: stretch !important;
  1123. align-self: stretch !important;
  1124. }
  1125. }
  1126. @media (min-width: 768px) {
  1127. .flex-md-row {
  1128. -ms-flex-direction: row !important;
  1129. flex-direction: row !important;
  1130. }
  1131. .flex-md-column {
  1132. -ms-flex-direction: column !important;
  1133. flex-direction: column !important;
  1134. }
  1135. .flex-md-row-reverse {
  1136. -ms-flex-direction: row-reverse !important;
  1137. flex-direction: row-reverse !important;
  1138. }
  1139. .flex-md-column-reverse {
  1140. -ms-flex-direction: column-reverse !important;
  1141. flex-direction: column-reverse !important;
  1142. }
  1143. .flex-md-wrap {
  1144. -ms-flex-wrap: wrap !important;
  1145. flex-wrap: wrap !important;
  1146. }
  1147. .flex-md-nowrap {
  1148. -ms-flex-wrap: nowrap !important;
  1149. flex-wrap: nowrap !important;
  1150. }
  1151. .flex-md-wrap-reverse {
  1152. -ms-flex-wrap: wrap-reverse !important;
  1153. flex-wrap: wrap-reverse !important;
  1154. }
  1155. .justify-content-md-start {
  1156. -ms-flex-pack: start !important;
  1157. justify-content: flex-start !important;
  1158. }
  1159. .justify-content-md-end {
  1160. -ms-flex-pack: end !important;
  1161. justify-content: flex-end !important;
  1162. }
  1163. .justify-content-md-center {
  1164. -ms-flex-pack: center !important;
  1165. justify-content: center !important;
  1166. }
  1167. .justify-content-md-between {
  1168. -ms-flex-pack: justify !important;
  1169. justify-content: space-between !important;
  1170. }
  1171. .justify-content-md-around {
  1172. -ms-flex-pack: distribute !important;
  1173. justify-content: space-around !important;
  1174. }
  1175. .align-items-md-start {
  1176. -ms-flex-align: start !important;
  1177. align-items: flex-start !important;
  1178. }
  1179. .align-items-md-end {
  1180. -ms-flex-align: end !important;
  1181. align-items: flex-end !important;
  1182. }
  1183. .align-items-md-center {
  1184. -ms-flex-align: center !important;
  1185. align-items: center !important;
  1186. }
  1187. .align-items-md-baseline {
  1188. -ms-flex-align: baseline !important;
  1189. align-items: baseline !important;
  1190. }
  1191. .align-items-md-stretch {
  1192. -ms-flex-align: stretch !important;
  1193. align-items: stretch !important;
  1194. }
  1195. .align-content-md-start {
  1196. -ms-flex-line-pack: start !important;
  1197. align-content: flex-start !important;
  1198. }
  1199. .align-content-md-end {
  1200. -ms-flex-line-pack: end !important;
  1201. align-content: flex-end !important;
  1202. }
  1203. .align-content-md-center {
  1204. -ms-flex-line-pack: center !important;
  1205. align-content: center !important;
  1206. }
  1207. .align-content-md-between {
  1208. -ms-flex-line-pack: justify !important;
  1209. align-content: space-between !important;
  1210. }
  1211. .align-content-md-around {
  1212. -ms-flex-line-pack: distribute !important;
  1213. align-content: space-around !important;
  1214. }
  1215. .align-content-md-stretch {
  1216. -ms-flex-line-pack: stretch !important;
  1217. align-content: stretch !important;
  1218. }
  1219. .align-self-md-auto {
  1220. -ms-flex-item-align: auto !important;
  1221. align-self: auto !important;
  1222. }
  1223. .align-self-md-start {
  1224. -ms-flex-item-align: start !important;
  1225. align-self: flex-start !important;
  1226. }
  1227. .align-self-md-end {
  1228. -ms-flex-item-align: end !important;
  1229. align-self: flex-end !important;
  1230. }
  1231. .align-self-md-center {
  1232. -ms-flex-item-align: center !important;
  1233. align-self: center !important;
  1234. }
  1235. .align-self-md-baseline {
  1236. -ms-flex-item-align: baseline !important;
  1237. align-self: baseline !important;
  1238. }
  1239. .align-self-md-stretch {
  1240. -ms-flex-item-align: stretch !important;
  1241. align-self: stretch !important;
  1242. }
  1243. }
  1244. @media (min-width: 992px) {
  1245. .flex-lg-row {
  1246. -ms-flex-direction: row !important;
  1247. flex-direction: row !important;
  1248. }
  1249. .flex-lg-column {
  1250. -ms-flex-direction: column !important;
  1251. flex-direction: column !important;
  1252. }
  1253. .flex-lg-row-reverse {
  1254. -ms-flex-direction: row-reverse !important;
  1255. flex-direction: row-reverse !important;
  1256. }
  1257. .flex-lg-column-reverse {
  1258. -ms-flex-direction: column-reverse !important;
  1259. flex-direction: column-reverse !important;
  1260. }
  1261. .flex-lg-wrap {
  1262. -ms-flex-wrap: wrap !important;
  1263. flex-wrap: wrap !important;
  1264. }
  1265. .flex-lg-nowrap {
  1266. -ms-flex-wrap: nowrap !important;
  1267. flex-wrap: nowrap !important;
  1268. }
  1269. .flex-lg-wrap-reverse {
  1270. -ms-flex-wrap: wrap-reverse !important;
  1271. flex-wrap: wrap-reverse !important;
  1272. }
  1273. .justify-content-lg-start {
  1274. -ms-flex-pack: start !important;
  1275. justify-content: flex-start !important;
  1276. }
  1277. .justify-content-lg-end {
  1278. -ms-flex-pack: end !important;
  1279. justify-content: flex-end !important;
  1280. }
  1281. .justify-content-lg-center {
  1282. -ms-flex-pack: center !important;
  1283. justify-content: center !important;
  1284. }
  1285. .justify-content-lg-between {
  1286. -ms-flex-pack: justify !important;
  1287. justify-content: space-between !important;
  1288. }
  1289. .justify-content-lg-around {
  1290. -ms-flex-pack: distribute !important;
  1291. justify-content: space-around !important;
  1292. }
  1293. .align-items-lg-start {
  1294. -ms-flex-align: start !important;
  1295. align-items: flex-start !important;
  1296. }
  1297. .align-items-lg-end {
  1298. -ms-flex-align: end !important;
  1299. align-items: flex-end !important;
  1300. }
  1301. .align-items-lg-center {
  1302. -ms-flex-align: center !important;
  1303. align-items: center !important;
  1304. }
  1305. .align-items-lg-baseline {
  1306. -ms-flex-align: baseline !important;
  1307. align-items: baseline !important;
  1308. }
  1309. .align-items-lg-stretch {
  1310. -ms-flex-align: stretch !important;
  1311. align-items: stretch !important;
  1312. }
  1313. .align-content-lg-start {
  1314. -ms-flex-line-pack: start !important;
  1315. align-content: flex-start !important;
  1316. }
  1317. .align-content-lg-end {
  1318. -ms-flex-line-pack: end !important;
  1319. align-content: flex-end !important;
  1320. }
  1321. .align-content-lg-center {
  1322. -ms-flex-line-pack: center !important;
  1323. align-content: center !important;
  1324. }
  1325. .align-content-lg-between {
  1326. -ms-flex-line-pack: justify !important;
  1327. align-content: space-between !important;
  1328. }
  1329. .align-content-lg-around {
  1330. -ms-flex-line-pack: distribute !important;
  1331. align-content: space-around !important;
  1332. }
  1333. .align-content-lg-stretch {
  1334. -ms-flex-line-pack: stretch !important;
  1335. align-content: stretch !important;
  1336. }
  1337. .align-self-lg-auto {
  1338. -ms-flex-item-align: auto !important;
  1339. align-self: auto !important;
  1340. }
  1341. .align-self-lg-start {
  1342. -ms-flex-item-align: start !important;
  1343. align-self: flex-start !important;
  1344. }
  1345. .align-self-lg-end {
  1346. -ms-flex-item-align: end !important;
  1347. align-self: flex-end !important;
  1348. }
  1349. .align-self-lg-center {
  1350. -ms-flex-item-align: center !important;
  1351. align-self: center !important;
  1352. }
  1353. .align-self-lg-baseline {
  1354. -ms-flex-item-align: baseline !important;
  1355. align-self: baseline !important;
  1356. }
  1357. .align-self-lg-stretch {
  1358. -ms-flex-item-align: stretch !important;
  1359. align-self: stretch !important;
  1360. }
  1361. }
  1362. @media (min-width: 1200px) {
  1363. .flex-xl-row {
  1364. -ms-flex-direction: row !important;
  1365. flex-direction: row !important;
  1366. }
  1367. .flex-xl-column {
  1368. -ms-flex-direction: column !important;
  1369. flex-direction: column !important;
  1370. }
  1371. .flex-xl-row-reverse {
  1372. -ms-flex-direction: row-reverse !important;
  1373. flex-direction: row-reverse !important;
  1374. }
  1375. .flex-xl-column-reverse {
  1376. -ms-flex-direction: column-reverse !important;
  1377. flex-direction: column-reverse !important;
  1378. }
  1379. .flex-xl-wrap {
  1380. -ms-flex-wrap: wrap !important;
  1381. flex-wrap: wrap !important;
  1382. }
  1383. .flex-xl-nowrap {
  1384. -ms-flex-wrap: nowrap !important;
  1385. flex-wrap: nowrap !important;
  1386. }
  1387. .flex-xl-wrap-reverse {
  1388. -ms-flex-wrap: wrap-reverse !important;
  1389. flex-wrap: wrap-reverse !important;
  1390. }
  1391. .justify-content-xl-start {
  1392. -ms-flex-pack: start !important;
  1393. justify-content: flex-start !important;
  1394. }
  1395. .justify-content-xl-end {
  1396. -ms-flex-pack: end !important;
  1397. justify-content: flex-end !important;
  1398. }
  1399. .justify-content-xl-center {
  1400. -ms-flex-pack: center !important;
  1401. justify-content: center !important;
  1402. }
  1403. .justify-content-xl-between {
  1404. -ms-flex-pack: justify !important;
  1405. justify-content: space-between !important;
  1406. }
  1407. .justify-content-xl-around {
  1408. -ms-flex-pack: distribute !important;
  1409. justify-content: space-around !important;
  1410. }
  1411. .align-items-xl-start {
  1412. -ms-flex-align: start !important;
  1413. align-items: flex-start !important;
  1414. }
  1415. .align-items-xl-end {
  1416. -ms-flex-align: end !important;
  1417. align-items: flex-end !important;
  1418. }
  1419. .align-items-xl-center {
  1420. -ms-flex-align: center !important;
  1421. align-items: center !important;
  1422. }
  1423. .align-items-xl-baseline {
  1424. -ms-flex-align: baseline !important;
  1425. align-items: baseline !important;
  1426. }
  1427. .align-items-xl-stretch {
  1428. -ms-flex-align: stretch !important;
  1429. align-items: stretch !important;
  1430. }
  1431. .align-content-xl-start {
  1432. -ms-flex-line-pack: start !important;
  1433. align-content: flex-start !important;
  1434. }
  1435. .align-content-xl-end {
  1436. -ms-flex-line-pack: end !important;
  1437. align-content: flex-end !important;
  1438. }
  1439. .align-content-xl-center {
  1440. -ms-flex-line-pack: center !important;
  1441. align-content: center !important;
  1442. }
  1443. .align-content-xl-between {
  1444. -ms-flex-line-pack: justify !important;
  1445. align-content: space-between !important;
  1446. }
  1447. .align-content-xl-around {
  1448. -ms-flex-line-pack: distribute !important;
  1449. align-content: space-around !important;
  1450. }
  1451. .align-content-xl-stretch {
  1452. -ms-flex-line-pack: stretch !important;
  1453. align-content: stretch !important;
  1454. }
  1455. .align-self-xl-auto {
  1456. -ms-flex-item-align: auto !important;
  1457. align-self: auto !important;
  1458. }
  1459. .align-self-xl-start {
  1460. -ms-flex-item-align: start !important;
  1461. align-self: flex-start !important;
  1462. }
  1463. .align-self-xl-end {
  1464. -ms-flex-item-align: end !important;
  1465. align-self: flex-end !important;
  1466. }
  1467. .align-self-xl-center {
  1468. -ms-flex-item-align: center !important;
  1469. align-self: center !important;
  1470. }
  1471. .align-self-xl-baseline {
  1472. -ms-flex-item-align: baseline !important;
  1473. align-self: baseline !important;
  1474. }
  1475. .align-self-xl-stretch {
  1476. -ms-flex-item-align: stretch !important;
  1477. align-self: stretch !important;
  1478. }
  1479. }
  1480. /*# sourceMappingURL=bootstrap-grid.css.map */