bootstrap-utilities.css 67 KB

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