bootstrap-grid.css 38 KB

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