grid.css 35 KB

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