bootstrap-utilities.rtl.css 65 KB

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