bootstrap-grid.css 63 KB

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