דברים שרואים מכאן לא רואים בכלל
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

bootstrap-utilities.rtl.css 105KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397
  1. /*!
  2. * Bootstrap Utilities v5.3.8 (https://getbootstrap.com/)
  3. * Copyright 2011-2025 The Bootstrap Authors
  4. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
  5. */
  6. :root,
  7. [data-bs-theme=light] {
  8. --bs-blue: #0d6efd;
  9. --bs-indigo: #6610f2;
  10. --bs-purple: #6f42c1;
  11. --bs-pink: #d63384;
  12. --bs-red: #dc3545;
  13. --bs-orange: #fd7e14;
  14. --bs-yellow: #ffc107;
  15. --bs-green: #198754;
  16. --bs-teal: #20c997;
  17. --bs-cyan: #0dcaf0;
  18. --bs-black: #000;
  19. --bs-white: #fff;
  20. --bs-gray: #6c757d;
  21. --bs-gray-dark: #343a40;
  22. --bs-gray-100: #f8f9fa;
  23. --bs-gray-200: #e9ecef;
  24. --bs-gray-300: #dee2e6;
  25. --bs-gray-400: #ced4da;
  26. --bs-gray-500: #adb5bd;
  27. --bs-gray-600: #6c757d;
  28. --bs-gray-700: #495057;
  29. --bs-gray-800: #343a40;
  30. --bs-gray-900: #212529;
  31. --bs-primary: #0d6efd;
  32. --bs-secondary: #6c757d;
  33. --bs-success: #198754;
  34. --bs-info: #0dcaf0;
  35. --bs-warning: #ffc107;
  36. --bs-danger: #dc3545;
  37. --bs-light: #f8f9fa;
  38. --bs-dark: #212529;
  39. --bs-primary-rgb: 13, 110, 253;
  40. --bs-secondary-rgb: 108, 117, 125;
  41. --bs-success-rgb: 25, 135, 84;
  42. --bs-info-rgb: 13, 202, 240;
  43. --bs-warning-rgb: 255, 193, 7;
  44. --bs-danger-rgb: 220, 53, 69;
  45. --bs-light-rgb: 248, 249, 250;
  46. --bs-dark-rgb: 33, 37, 41;
  47. --bs-primary-text-emphasis: #052c65;
  48. --bs-secondary-text-emphasis: #2b2f32;
  49. --bs-success-text-emphasis: #0a3622;
  50. --bs-info-text-emphasis: #055160;
  51. --bs-warning-text-emphasis: #664d03;
  52. --bs-danger-text-emphasis: #58151c;
  53. --bs-light-text-emphasis: #495057;
  54. --bs-dark-text-emphasis: #495057;
  55. --bs-primary-bg-subtle: #cfe2ff;
  56. --bs-secondary-bg-subtle: #e2e3e5;
  57. --bs-success-bg-subtle: #d1e7dd;
  58. --bs-info-bg-subtle: #cff4fc;
  59. --bs-warning-bg-subtle: #fff3cd;
  60. --bs-danger-bg-subtle: #f8d7da;
  61. --bs-light-bg-subtle: #fcfcfd;
  62. --bs-dark-bg-subtle: #ced4da;
  63. --bs-primary-border-subtle: #9ec5fe;
  64. --bs-secondary-border-subtle: #c4c8cb;
  65. --bs-success-border-subtle: #a3cfbb;
  66. --bs-info-border-subtle: #9eeaf9;
  67. --bs-warning-border-subtle: #ffe69c;
  68. --bs-danger-border-subtle: #f1aeb5;
  69. --bs-light-border-subtle: #e9ecef;
  70. --bs-dark-border-subtle: #adb5bd;
  71. --bs-white-rgb: 255, 255, 255;
  72. --bs-black-rgb: 0, 0, 0;
  73. --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  74. --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  75. --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  76. --bs-body-font-family: var(--bs-font-sans-serif);
  77. --bs-body-font-size: 1rem;
  78. --bs-body-font-weight: 400;
  79. --bs-body-line-height: 1.5;
  80. --bs-body-color: #212529;
  81. --bs-body-color-rgb: 33, 37, 41;
  82. --bs-body-bg: #fff;
  83. --bs-body-bg-rgb: 255, 255, 255;
  84. --bs-emphasis-color: #000;
  85. --bs-emphasis-color-rgb: 0, 0, 0;
  86. --bs-secondary-color: rgba(33, 37, 41, 0.75);
  87. --bs-secondary-color-rgb: 33, 37, 41;
  88. --bs-secondary-bg: #e9ecef;
  89. --bs-secondary-bg-rgb: 233, 236, 239;
  90. --bs-tertiary-color: rgba(33, 37, 41, 0.5);
  91. --bs-tertiary-color-rgb: 33, 37, 41;
  92. --bs-tertiary-bg: #f8f9fa;
  93. --bs-tertiary-bg-rgb: 248, 249, 250;
  94. --bs-heading-color: inherit;
  95. --bs-link-color: #0d6efd;
  96. --bs-link-color-rgb: 13, 110, 253;
  97. --bs-link-decoration: underline;
  98. --bs-link-hover-color: #0a58ca;
  99. --bs-link-hover-color-rgb: 10, 88, 202;
  100. --bs-code-color: #d63384;
  101. --bs-highlight-color: #212529;
  102. --bs-highlight-bg: #fff3cd;
  103. --bs-border-width: 1px;
  104. --bs-border-style: solid;
  105. --bs-border-color: #dee2e6;
  106. --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  107. --bs-border-radius: 0.375rem;
  108. --bs-border-radius-sm: 0.25rem;
  109. --bs-border-radius-lg: 0.5rem;
  110. --bs-border-radius-xl: 1rem;
  111. --bs-border-radius-xxl: 2rem;
  112. --bs-border-radius-2xl: var(--bs-border-radius-xxl);
  113. --bs-border-radius-pill: 50rem;
  114. --bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  115. --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  116. --bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  117. --bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  118. --bs-focus-ring-width: 0.25rem;
  119. --bs-focus-ring-opacity: 0.25;
  120. --bs-focus-ring-color: rgba(13, 110, 253, 0.25);
  121. --bs-form-valid-color: #198754;
  122. --bs-form-valid-border-color: #198754;
  123. --bs-form-invalid-color: #dc3545;
  124. --bs-form-invalid-border-color: #dc3545;
  125. }
  126. [data-bs-theme=dark] {
  127. color-scheme: dark;
  128. --bs-body-color: #dee2e6;
  129. --bs-body-color-rgb: 222, 226, 230;
  130. --bs-body-bg: #212529;
  131. --bs-body-bg-rgb: 33, 37, 41;
  132. --bs-emphasis-color: #fff;
  133. --bs-emphasis-color-rgb: 255, 255, 255;
  134. --bs-secondary-color: rgba(222, 226, 230, 0.75);
  135. --bs-secondary-color-rgb: 222, 226, 230;
  136. --bs-secondary-bg: #343a40;
  137. --bs-secondary-bg-rgb: 52, 58, 64;
  138. --bs-tertiary-color: rgba(222, 226, 230, 0.5);
  139. --bs-tertiary-color-rgb: 222, 226, 230;
  140. --bs-tertiary-bg: #2b3035;
  141. --bs-tertiary-bg-rgb: 43, 48, 53;
  142. --bs-primary-text-emphasis: #6ea8fe;
  143. --bs-secondary-text-emphasis: #a7acb1;
  144. --bs-success-text-emphasis: #75b798;
  145. --bs-info-text-emphasis: #6edff6;
  146. --bs-warning-text-emphasis: #ffda6a;
  147. --bs-danger-text-emphasis: #ea868f;
  148. --bs-light-text-emphasis: #f8f9fa;
  149. --bs-dark-text-emphasis: #dee2e6;
  150. --bs-primary-bg-subtle: #031633;
  151. --bs-secondary-bg-subtle: #161719;
  152. --bs-success-bg-subtle: #051b11;
  153. --bs-info-bg-subtle: #032830;
  154. --bs-warning-bg-subtle: #332701;
  155. --bs-danger-bg-subtle: #2c0b0e;
  156. --bs-light-bg-subtle: #343a40;
  157. --bs-dark-bg-subtle: #1a1d20;
  158. --bs-primary-border-subtle: #084298;
  159. --bs-secondary-border-subtle: #41464b;
  160. --bs-success-border-subtle: #0f5132;
  161. --bs-info-border-subtle: #087990;
  162. --bs-warning-border-subtle: #997404;
  163. --bs-danger-border-subtle: #842029;
  164. --bs-light-border-subtle: #495057;
  165. --bs-dark-border-subtle: #343a40;
  166. --bs-heading-color: inherit;
  167. --bs-link-color: #6ea8fe;
  168. --bs-link-hover-color: #8bb9fe;
  169. --bs-link-color-rgb: 110, 168, 254;
  170. --bs-link-hover-color-rgb: 139, 185, 254;
  171. --bs-code-color: #e685b5;
  172. --bs-highlight-color: #dee2e6;
  173. --bs-highlight-bg: #664d03;
  174. --bs-border-color: #495057;
  175. --bs-border-color-translucent: rgba(255, 255, 255, 0.15);
  176. --bs-form-valid-color: #75b798;
  177. --bs-form-valid-border-color: #75b798;
  178. --bs-form-invalid-color: #ea868f;
  179. --bs-form-invalid-border-color: #ea868f;
  180. }
  181. .clearfix::after {
  182. display: block;
  183. clear: both;
  184. content: "";
  185. }
  186. .text-bg-primary {
  187. color: #fff !important;
  188. background-color: RGBA(var(--bs-primary-rgb), var(--bs-bg-opacity, 1)) !important;
  189. }
  190. .text-bg-secondary {
  191. color: #fff !important;
  192. background-color: RGBA(var(--bs-secondary-rgb), var(--bs-bg-opacity, 1)) !important;
  193. }
  194. .text-bg-success {
  195. color: #fff !important;
  196. background-color: RGBA(var(--bs-success-rgb), var(--bs-bg-opacity, 1)) !important;
  197. }
  198. .text-bg-info {
  199. color: #000 !important;
  200. background-color: RGBA(var(--bs-info-rgb), var(--bs-bg-opacity, 1)) !important;
  201. }
  202. .text-bg-warning {
  203. color: #000 !important;
  204. background-color: RGBA(var(--bs-warning-rgb), var(--bs-bg-opacity, 1)) !important;
  205. }
  206. .text-bg-danger {
  207. color: #fff !important;
  208. background-color: RGBA(var(--bs-danger-rgb), var(--bs-bg-opacity, 1)) !important;
  209. }
  210. .text-bg-light {
  211. color: #000 !important;
  212. background-color: RGBA(var(--bs-light-rgb), var(--bs-bg-opacity, 1)) !important;
  213. }
  214. .text-bg-dark {
  215. color: #fff !important;
  216. background-color: RGBA(var(--bs-dark-rgb), var(--bs-bg-opacity, 1)) !important;
  217. }
  218. .link-primary {
  219. color: RGBA(var(--bs-primary-rgb), var(--bs-link-opacity, 1)) !important;
  220. -webkit-text-decoration-color: RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)) !important;
  221. text-decoration-color: RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)) !important;
  222. }
  223. .link-primary:hover, .link-primary:focus {
  224. color: RGBA(10, 88, 202, var(--bs-link-opacity, 1)) !important;
  225. -webkit-text-decoration-color: RGBA(10, 88, 202, var(--bs-link-underline-opacity, 1)) !important;
  226. text-decoration-color: RGBA(10, 88, 202, var(--bs-link-underline-opacity, 1)) !important;
  227. }
  228. .link-secondary {
  229. color: RGBA(var(--bs-secondary-rgb), var(--bs-link-opacity, 1)) !important;
  230. -webkit-text-decoration-color: RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important;
  231. text-decoration-color: RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important;
  232. }
  233. .link-secondary:hover, .link-secondary:focus {
  234. color: RGBA(86, 94, 100, var(--bs-link-opacity, 1)) !important;
  235. -webkit-text-decoration-color: RGBA(86, 94, 100, var(--bs-link-underline-opacity, 1)) !important;
  236. text-decoration-color: RGBA(86, 94, 100, var(--bs-link-underline-opacity, 1)) !important;
  237. }
  238. .link-success {
  239. color: RGBA(var(--bs-success-rgb), var(--bs-link-opacity, 1)) !important;
  240. -webkit-text-decoration-color: RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)) !important;
  241. text-decoration-color: RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)) !important;
  242. }
  243. .link-success:hover, .link-success:focus {
  244. color: RGBA(20, 108, 67, var(--bs-link-opacity, 1)) !important;
  245. -webkit-text-decoration-color: RGBA(20, 108, 67, var(--bs-link-underline-opacity, 1)) !important;
  246. text-decoration-color: RGBA(20, 108, 67, var(--bs-link-underline-opacity, 1)) !important;
  247. }
  248. .link-info {
  249. color: RGBA(var(--bs-info-rgb), var(--bs-link-opacity, 1)) !important;
  250. -webkit-text-decoration-color: RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)) !important;
  251. text-decoration-color: RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)) !important;
  252. }
  253. .link-info:hover, .link-info:focus {
  254. color: RGBA(61, 213, 243, var(--bs-link-opacity, 1)) !important;
  255. -webkit-text-decoration-color: RGBA(61, 213, 243, var(--bs-link-underline-opacity, 1)) !important;
  256. text-decoration-color: RGBA(61, 213, 243, var(--bs-link-underline-opacity, 1)) !important;
  257. }
  258. .link-warning {
  259. color: RGBA(var(--bs-warning-rgb), var(--bs-link-opacity, 1)) !important;
  260. -webkit-text-decoration-color: RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)) !important;
  261. text-decoration-color: RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)) !important;
  262. }
  263. .link-warning:hover, .link-warning:focus {
  264. color: RGBA(255, 205, 57, var(--bs-link-opacity, 1)) !important;
  265. -webkit-text-decoration-color: RGBA(255, 205, 57, var(--bs-link-underline-opacity, 1)) !important;
  266. text-decoration-color: RGBA(255, 205, 57, var(--bs-link-underline-opacity, 1)) !important;
  267. }
  268. .link-danger {
  269. color: RGBA(var(--bs-danger-rgb), var(--bs-link-opacity, 1)) !important;
  270. -webkit-text-decoration-color: RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)) !important;
  271. text-decoration-color: RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)) !important;
  272. }
  273. .link-danger:hover, .link-danger:focus {
  274. color: RGBA(176, 42, 55, var(--bs-link-opacity, 1)) !important;
  275. -webkit-text-decoration-color: RGBA(176, 42, 55, var(--bs-link-underline-opacity, 1)) !important;
  276. text-decoration-color: RGBA(176, 42, 55, var(--bs-link-underline-opacity, 1)) !important;
  277. }
  278. .link-light {
  279. color: RGBA(var(--bs-light-rgb), var(--bs-link-opacity, 1)) !important;
  280. -webkit-text-decoration-color: RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)) !important;
  281. text-decoration-color: RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)) !important;
  282. }
  283. .link-light:hover, .link-light:focus {
  284. color: RGBA(249, 250, 251, var(--bs-link-opacity, 1)) !important;
  285. -webkit-text-decoration-color: RGBA(249, 250, 251, var(--bs-link-underline-opacity, 1)) !important;
  286. text-decoration-color: RGBA(249, 250, 251, var(--bs-link-underline-opacity, 1)) !important;
  287. }
  288. .link-dark {
  289. color: RGBA(var(--bs-dark-rgb), var(--bs-link-opacity, 1)) !important;
  290. -webkit-text-decoration-color: RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)) !important;
  291. text-decoration-color: RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)) !important;
  292. }
  293. .link-dark:hover, .link-dark:focus {
  294. color: RGBA(26, 30, 33, var(--bs-link-opacity, 1)) !important;
  295. -webkit-text-decoration-color: RGBA(26, 30, 33, var(--bs-link-underline-opacity, 1)) !important;
  296. text-decoration-color: RGBA(26, 30, 33, var(--bs-link-underline-opacity, 1)) !important;
  297. }
  298. .link-body-emphasis {
  299. color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 1)) !important;
  300. -webkit-text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
  301. text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
  302. }
  303. .link-body-emphasis:hover, .link-body-emphasis:focus {
  304. color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 0.75)) !important;
  305. -webkit-text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75)) !important;
  306. text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75)) !important;
  307. }
  308. .focus-ring:focus {
  309. outline: 0;
  310. box-shadow: var(--bs-focus-ring-x, 0) var(--bs-focus-ring-y, 0) var(--bs-focus-ring-blur, 0) var(--bs-focus-ring-width) var(--bs-focus-ring-color);
  311. }
  312. .icon-link {
  313. display: inline-flex;
  314. gap: 0.375rem;
  315. align-items: center;
  316. -webkit-text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5));
  317. text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5));
  318. text-underline-offset: 0.25em;
  319. -webkit-backface-visibility: hidden;
  320. backface-visibility: hidden;
  321. }
  322. .icon-link > .bi {
  323. flex-shrink: 0;
  324. width: 1em;
  325. height: 1em;
  326. fill: currentcolor;
  327. transition: 0.2s ease-in-out transform;
  328. }
  329. @media (prefers-reduced-motion: reduce) {
  330. .icon-link > .bi {
  331. transition: none;
  332. }
  333. }
  334. .icon-link-hover:hover > .bi, .icon-link-hover:focus-visible > .bi {
  335. transform: var(--bs-icon-link-transform, translate3d(-0.25em, 0, 0));
  336. }
  337. .ratio {
  338. position: relative;
  339. width: 100%;
  340. }
  341. .ratio::before {
  342. display: block;
  343. padding-top: var(--bs-aspect-ratio);
  344. content: "";
  345. }
  346. .ratio > * {
  347. position: absolute;
  348. top: 0;
  349. right: 0;
  350. width: 100%;
  351. height: 100%;
  352. }
  353. .ratio-1x1 {
  354. --bs-aspect-ratio: 100%;
  355. }
  356. .ratio-4x3 {
  357. --bs-aspect-ratio: 75%;
  358. }
  359. .ratio-16x9 {
  360. --bs-aspect-ratio: 56.25%;
  361. }
  362. .ratio-21x9 {
  363. --bs-aspect-ratio: 42.8571428571%;
  364. }
  365. .fixed-top {
  366. position: fixed;
  367. top: 0;
  368. left: 0;
  369. right: 0;
  370. z-index: 1030;
  371. }
  372. .fixed-bottom {
  373. position: fixed;
  374. left: 0;
  375. bottom: 0;
  376. right: 0;
  377. z-index: 1030;
  378. }
  379. .sticky-top {
  380. position: -webkit-sticky;
  381. position: sticky;
  382. top: 0;
  383. z-index: 1020;
  384. }
  385. .sticky-bottom {
  386. position: -webkit-sticky;
  387. position: sticky;
  388. bottom: 0;
  389. z-index: 1020;
  390. }
  391. @media (min-width: 576px) {
  392. .sticky-sm-top {
  393. position: -webkit-sticky;
  394. position: sticky;
  395. top: 0;
  396. z-index: 1020;
  397. }
  398. .sticky-sm-bottom {
  399. position: -webkit-sticky;
  400. position: sticky;
  401. bottom: 0;
  402. z-index: 1020;
  403. }
  404. }
  405. @media (min-width: 768px) {
  406. .sticky-md-top {
  407. position: -webkit-sticky;
  408. position: sticky;
  409. top: 0;
  410. z-index: 1020;
  411. }
  412. .sticky-md-bottom {
  413. position: -webkit-sticky;
  414. position: sticky;
  415. bottom: 0;
  416. z-index: 1020;
  417. }
  418. }
  419. @media (min-width: 992px) {
  420. .sticky-lg-top {
  421. position: -webkit-sticky;
  422. position: sticky;
  423. top: 0;
  424. z-index: 1020;
  425. }
  426. .sticky-lg-bottom {
  427. position: -webkit-sticky;
  428. position: sticky;
  429. bottom: 0;
  430. z-index: 1020;
  431. }
  432. }
  433. @media (min-width: 1200px) {
  434. .sticky-xl-top {
  435. position: -webkit-sticky;
  436. position: sticky;
  437. top: 0;
  438. z-index: 1020;
  439. }
  440. .sticky-xl-bottom {
  441. position: -webkit-sticky;
  442. position: sticky;
  443. bottom: 0;
  444. z-index: 1020;
  445. }
  446. }
  447. @media (min-width: 1400px) {
  448. .sticky-xxl-top {
  449. position: -webkit-sticky;
  450. position: sticky;
  451. top: 0;
  452. z-index: 1020;
  453. }
  454. .sticky-xxl-bottom {
  455. position: -webkit-sticky;
  456. position: sticky;
  457. bottom: 0;
  458. z-index: 1020;
  459. }
  460. }
  461. .hstack {
  462. display: flex;
  463. flex-direction: row;
  464. align-items: center;
  465. align-self: stretch;
  466. }
  467. .vstack {
  468. display: flex;
  469. flex: 1 1 auto;
  470. flex-direction: column;
  471. align-self: stretch;
  472. }
  473. .visually-hidden,
  474. .visually-hidden-focusable:not(:focus):not(:focus-within) {
  475. width: 1px !important;
  476. height: 1px !important;
  477. padding: 0 !important;
  478. margin: -1px !important;
  479. overflow: hidden !important;
  480. clip: rect(0, 0, 0, 0) !important;
  481. white-space: nowrap !important;
  482. border: 0 !important;
  483. }
  484. .visually-hidden:not(caption),
  485. .visually-hidden-focusable:not(:focus):not(:focus-within):not(caption) {
  486. position: absolute !important;
  487. }
  488. .visually-hidden *,
  489. .visually-hidden-focusable:not(:focus):not(:focus-within) * {
  490. overflow: hidden !important;
  491. }
  492. .stretched-link::after {
  493. position: absolute;
  494. top: 0;
  495. left: 0;
  496. bottom: 0;
  497. right: 0;
  498. z-index: 1;
  499. content: "";
  500. }
  501. .text-truncate {
  502. overflow: hidden;
  503. text-overflow: ellipsis;
  504. white-space: nowrap;
  505. }
  506. .vr {
  507. display: inline-block;
  508. align-self: stretch;
  509. width: var(--bs-border-width);
  510. min-height: 1em;
  511. background-color: currentcolor;
  512. opacity: 0.25;
  513. }
  514. .align-baseline {
  515. vertical-align: baseline !important;
  516. }
  517. .align-top {
  518. vertical-align: top !important;
  519. }
  520. .align-middle {
  521. vertical-align: middle !important;
  522. }
  523. .align-bottom {
  524. vertical-align: bottom !important;
  525. }
  526. .align-text-bottom {
  527. vertical-align: text-bottom !important;
  528. }
  529. .align-text-top {
  530. vertical-align: text-top !important;
  531. }
  532. .float-start {
  533. float: right !important;
  534. }
  535. .float-end {
  536. float: left !important;
  537. }
  538. .float-none {
  539. float: none !important;
  540. }
  541. .object-fit-contain {
  542. -o-object-fit: contain !important;
  543. object-fit: contain !important;
  544. }
  545. .object-fit-cover {
  546. -o-object-fit: cover !important;
  547. object-fit: cover !important;
  548. }
  549. .object-fit-fill {
  550. -o-object-fit: fill !important;
  551. object-fit: fill !important;
  552. }
  553. .object-fit-scale {
  554. -o-object-fit: scale-down !important;
  555. object-fit: scale-down !important;
  556. }
  557. .object-fit-none {
  558. -o-object-fit: none !important;
  559. object-fit: none !important;
  560. }
  561. .opacity-0 {
  562. opacity: 0 !important;
  563. }
  564. .opacity-25 {
  565. opacity: 0.25 !important;
  566. }
  567. .opacity-50 {
  568. opacity: 0.5 !important;
  569. }
  570. .opacity-75 {
  571. opacity: 0.75 !important;
  572. }
  573. .opacity-100 {
  574. opacity: 1 !important;
  575. }
  576. .overflow-auto {
  577. overflow: auto !important;
  578. }
  579. .overflow-hidden {
  580. overflow: hidden !important;
  581. }
  582. .overflow-visible {
  583. overflow: visible !important;
  584. }
  585. .overflow-scroll {
  586. overflow: scroll !important;
  587. }
  588. .overflow-x-auto {
  589. overflow-x: auto !important;
  590. }
  591. .overflow-x-hidden {
  592. overflow-x: hidden !important;
  593. }
  594. .overflow-x-visible {
  595. overflow-x: visible !important;
  596. }
  597. .overflow-x-scroll {
  598. overflow-x: scroll !important;
  599. }
  600. .overflow-y-auto {
  601. overflow-y: auto !important;
  602. }
  603. .overflow-y-hidden {
  604. overflow-y: hidden !important;
  605. }
  606. .overflow-y-visible {
  607. overflow-y: visible !important;
  608. }
  609. .overflow-y-scroll {
  610. overflow-y: scroll !important;
  611. }
  612. .d-inline {
  613. display: inline !important;
  614. }
  615. .d-inline-block {
  616. display: inline-block !important;
  617. }
  618. .d-block {
  619. display: block !important;
  620. }
  621. .d-grid {
  622. display: grid !important;
  623. }
  624. .d-inline-grid {
  625. display: inline-grid !important;
  626. }
  627. .d-table {
  628. display: table !important;
  629. }
  630. .d-table-row {
  631. display: table-row !important;
  632. }
  633. .d-table-cell {
  634. display: table-cell !important;
  635. }
  636. .d-flex {
  637. display: flex !important;
  638. }
  639. .d-inline-flex {
  640. display: inline-flex !important;
  641. }
  642. .d-none {
  643. display: none !important;
  644. }
  645. .shadow {
  646. box-shadow: var(--bs-box-shadow) !important;
  647. }
  648. .shadow-sm {
  649. box-shadow: var(--bs-box-shadow-sm) !important;
  650. }
  651. .shadow-lg {
  652. box-shadow: var(--bs-box-shadow-lg) !important;
  653. }
  654. .shadow-none {
  655. box-shadow: none !important;
  656. }
  657. .focus-ring-primary {
  658. --bs-focus-ring-color: rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity));
  659. }
  660. .focus-ring-secondary {
  661. --bs-focus-ring-color: rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity));
  662. }
  663. .focus-ring-success {
  664. --bs-focus-ring-color: rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity));
  665. }
  666. .focus-ring-info {
  667. --bs-focus-ring-color: rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity));
  668. }
  669. .focus-ring-warning {
  670. --bs-focus-ring-color: rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity));
  671. }
  672. .focus-ring-danger {
  673. --bs-focus-ring-color: rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity));
  674. }
  675. .focus-ring-light {
  676. --bs-focus-ring-color: rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity));
  677. }
  678. .focus-ring-dark {
  679. --bs-focus-ring-color: rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity));
  680. }
  681. .position-static {
  682. position: static !important;
  683. }
  684. .position-relative {
  685. position: relative !important;
  686. }
  687. .position-absolute {
  688. position: absolute !important;
  689. }
  690. .position-fixed {
  691. position: fixed !important;
  692. }
  693. .position-sticky {
  694. position: -webkit-sticky !important;
  695. position: sticky !important;
  696. }
  697. .top-0 {
  698. top: 0 !important;
  699. }
  700. .top-50 {
  701. top: 50% !important;
  702. }
  703. .top-100 {
  704. top: 100% !important;
  705. }
  706. .bottom-0 {
  707. bottom: 0 !important;
  708. }
  709. .bottom-50 {
  710. bottom: 50% !important;
  711. }
  712. .bottom-100 {
  713. bottom: 100% !important;
  714. }
  715. .start-0 {
  716. right: 0 !important;
  717. }
  718. .start-50 {
  719. right: 50% !important;
  720. }
  721. .start-100 {
  722. right: 100% !important;
  723. }
  724. .end-0 {
  725. left: 0 !important;
  726. }
  727. .end-50 {
  728. left: 50% !important;
  729. }
  730. .end-100 {
  731. left: 100% !important;
  732. }
  733. .translate-middle {
  734. transform: translate(50%, -50%) !important;
  735. }
  736. .translate-middle-x {
  737. transform: translateX(50%) !important;
  738. }
  739. .translate-middle-y {
  740. transform: translateY(-50%) !important;
  741. }
  742. .border {
  743. border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  744. }
  745. .border-0 {
  746. border: 0 !important;
  747. }
  748. .border-top {
  749. border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  750. }
  751. .border-top-0 {
  752. border-top: 0 !important;
  753. }
  754. .border-end {
  755. border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  756. }
  757. .border-end-0 {
  758. border-left: 0 !important;
  759. }
  760. .border-bottom {
  761. border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  762. }
  763. .border-bottom-0 {
  764. border-bottom: 0 !important;
  765. }
  766. .border-start {
  767. border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  768. }
  769. .border-start-0 {
  770. border-right: 0 !important;
  771. }
  772. .border-primary {
  773. --bs-border-opacity: 1;
  774. border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
  775. }
  776. .border-secondary {
  777. --bs-border-opacity: 1;
  778. border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
  779. }
  780. .border-success {
  781. --bs-border-opacity: 1;
  782. border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
  783. }
  784. .border-info {
  785. --bs-border-opacity: 1;
  786. border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
  787. }
  788. .border-warning {
  789. --bs-border-opacity: 1;
  790. border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
  791. }
  792. .border-danger {
  793. --bs-border-opacity: 1;
  794. border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
  795. }
  796. .border-light {
  797. --bs-border-opacity: 1;
  798. border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
  799. }
  800. .border-dark {
  801. --bs-border-opacity: 1;
  802. border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
  803. }
  804. .border-black {
  805. --bs-border-opacity: 1;
  806. border-color: rgba(var(--bs-black-rgb), var(--bs-border-opacity)) !important;
  807. }
  808. .border-white {
  809. --bs-border-opacity: 1;
  810. border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
  811. }
  812. .border-primary-subtle {
  813. border-color: var(--bs-primary-border-subtle) !important;
  814. }
  815. .border-secondary-subtle {
  816. border-color: var(--bs-secondary-border-subtle) !important;
  817. }
  818. .border-success-subtle {
  819. border-color: var(--bs-success-border-subtle) !important;
  820. }
  821. .border-info-subtle {
  822. border-color: var(--bs-info-border-subtle) !important;
  823. }
  824. .border-warning-subtle {
  825. border-color: var(--bs-warning-border-subtle) !important;
  826. }
  827. .border-danger-subtle {
  828. border-color: var(--bs-danger-border-subtle) !important;
  829. }
  830. .border-light-subtle {
  831. border-color: var(--bs-light-border-subtle) !important;
  832. }
  833. .border-dark-subtle {
  834. border-color: var(--bs-dark-border-subtle) !important;
  835. }
  836. .border-1 {
  837. border-width: 1px !important;
  838. }
  839. .border-2 {
  840. border-width: 2px !important;
  841. }
  842. .border-3 {
  843. border-width: 3px !important;
  844. }
  845. .border-4 {
  846. border-width: 4px !important;
  847. }
  848. .border-5 {
  849. border-width: 5px !important;
  850. }
  851. .border-opacity-10 {
  852. --bs-border-opacity: 0.1;
  853. }
  854. .border-opacity-25 {
  855. --bs-border-opacity: 0.25;
  856. }
  857. .border-opacity-50 {
  858. --bs-border-opacity: 0.5;
  859. }
  860. .border-opacity-75 {
  861. --bs-border-opacity: 0.75;
  862. }
  863. .border-opacity-100 {
  864. --bs-border-opacity: 1;
  865. }
  866. .w-25 {
  867. width: 25% !important;
  868. }
  869. .w-50 {
  870. width: 50% !important;
  871. }
  872. .w-75 {
  873. width: 75% !important;
  874. }
  875. .w-100 {
  876. width: 100% !important;
  877. }
  878. .w-auto {
  879. width: auto !important;
  880. }
  881. .mw-100 {
  882. max-width: 100% !important;
  883. }
  884. .vw-100 {
  885. width: 100vw !important;
  886. }
  887. .min-vw-100 {
  888. min-width: 100vw !important;
  889. }
  890. .h-25 {
  891. height: 25% !important;
  892. }
  893. .h-50 {
  894. height: 50% !important;
  895. }
  896. .h-75 {
  897. height: 75% !important;
  898. }
  899. .h-100 {
  900. height: 100% !important;
  901. }
  902. .h-auto {
  903. height: auto !important;
  904. }
  905. .mh-100 {
  906. max-height: 100% !important;
  907. }
  908. .vh-100 {
  909. height: 100vh !important;
  910. }
  911. .min-vh-100 {
  912. min-height: 100vh !important;
  913. }
  914. .flex-fill {
  915. flex: 1 1 auto !important;
  916. }
  917. .flex-row {
  918. flex-direction: row !important;
  919. }
  920. .flex-column {
  921. flex-direction: column !important;
  922. }
  923. .flex-row-reverse {
  924. flex-direction: row-reverse !important;
  925. }
  926. .flex-column-reverse {
  927. flex-direction: column-reverse !important;
  928. }
  929. .flex-grow-0 {
  930. flex-grow: 0 !important;
  931. }
  932. .flex-grow-1 {
  933. flex-grow: 1 !important;
  934. }
  935. .flex-shrink-0 {
  936. flex-shrink: 0 !important;
  937. }
  938. .flex-shrink-1 {
  939. flex-shrink: 1 !important;
  940. }
  941. .flex-wrap {
  942. flex-wrap: wrap !important;
  943. }
  944. .flex-nowrap {
  945. flex-wrap: nowrap !important;
  946. }
  947. .flex-wrap-reverse {
  948. flex-wrap: wrap-reverse !important;
  949. }
  950. .justify-content-start {
  951. justify-content: flex-start !important;
  952. }
  953. .justify-content-end {
  954. justify-content: flex-end !important;
  955. }
  956. .justify-content-center {
  957. justify-content: center !important;
  958. }
  959. .justify-content-between {
  960. justify-content: space-between !important;
  961. }
  962. .justify-content-around {
  963. justify-content: space-around !important;
  964. }
  965. .justify-content-evenly {
  966. justify-content: space-evenly !important;
  967. }
  968. .align-items-start {
  969. align-items: flex-start !important;
  970. }
  971. .align-items-end {
  972. align-items: flex-end !important;
  973. }
  974. .align-items-center {
  975. align-items: center !important;
  976. }
  977. .align-items-baseline {
  978. align-items: baseline !important;
  979. }
  980. .align-items-stretch {
  981. align-items: stretch !important;
  982. }
  983. .align-content-start {
  984. align-content: flex-start !important;
  985. }
  986. .align-content-end {
  987. align-content: flex-end !important;
  988. }
  989. .align-content-center {
  990. align-content: center !important;
  991. }
  992. .align-content-between {
  993. align-content: space-between !important;
  994. }
  995. .align-content-around {
  996. align-content: space-around !important;
  997. }
  998. .align-content-stretch {
  999. align-content: stretch !important;
  1000. }
  1001. .align-self-auto {
  1002. align-self: auto !important;
  1003. }
  1004. .align-self-start {
  1005. align-self: flex-start !important;
  1006. }
  1007. .align-self-end {
  1008. align-self: flex-end !important;
  1009. }
  1010. .align-self-center {
  1011. align-self: center !important;
  1012. }
  1013. .align-self-baseline {
  1014. align-self: baseline !important;
  1015. }
  1016. .align-self-stretch {
  1017. align-self: stretch !important;
  1018. }
  1019. .order-first {
  1020. order: -1 !important;
  1021. }
  1022. .order-0 {
  1023. order: 0 !important;
  1024. }
  1025. .order-1 {
  1026. order: 1 !important;
  1027. }
  1028. .order-2 {
  1029. order: 2 !important;
  1030. }
  1031. .order-3 {
  1032. order: 3 !important;
  1033. }
  1034. .order-4 {
  1035. order: 4 !important;
  1036. }
  1037. .order-5 {
  1038. order: 5 !important;
  1039. }
  1040. .order-last {
  1041. order: 6 !important;
  1042. }
  1043. .m-0 {
  1044. margin: 0 !important;
  1045. }
  1046. .m-1 {
  1047. margin: 0.25rem !important;
  1048. }
  1049. .m-2 {
  1050. margin: 0.5rem !important;
  1051. }
  1052. .m-3 {
  1053. margin: 1rem !important;
  1054. }
  1055. .m-4 {
  1056. margin: 1.5rem !important;
  1057. }
  1058. .m-5 {
  1059. margin: 3rem !important;
  1060. }
  1061. .m-auto {
  1062. margin: auto !important;
  1063. }
  1064. .mx-0 {
  1065. margin-left: 0 !important;
  1066. margin-right: 0 !important;
  1067. }
  1068. .mx-1 {
  1069. margin-left: 0.25rem !important;
  1070. margin-right: 0.25rem !important;
  1071. }
  1072. .mx-2 {
  1073. margin-left: 0.5rem !important;
  1074. margin-right: 0.5rem !important;
  1075. }
  1076. .mx-3 {
  1077. margin-left: 1rem !important;
  1078. margin-right: 1rem !important;
  1079. }
  1080. .mx-4 {
  1081. margin-left: 1.5rem !important;
  1082. margin-right: 1.5rem !important;
  1083. }
  1084. .mx-5 {
  1085. margin-left: 3rem !important;
  1086. margin-right: 3rem !important;
  1087. }
  1088. .mx-auto {
  1089. margin-left: auto !important;
  1090. margin-right: auto !important;
  1091. }
  1092. .my-0 {
  1093. margin-top: 0 !important;
  1094. margin-bottom: 0 !important;
  1095. }
  1096. .my-1 {
  1097. margin-top: 0.25rem !important;
  1098. margin-bottom: 0.25rem !important;
  1099. }
  1100. .my-2 {
  1101. margin-top: 0.5rem !important;
  1102. margin-bottom: 0.5rem !important;
  1103. }
  1104. .my-3 {
  1105. margin-top: 1rem !important;
  1106. margin-bottom: 1rem !important;
  1107. }
  1108. .my-4 {
  1109. margin-top: 1.5rem !important;
  1110. margin-bottom: 1.5rem !important;
  1111. }
  1112. .my-5 {
  1113. margin-top: 3rem !important;
  1114. margin-bottom: 3rem !important;
  1115. }
  1116. .my-auto {
  1117. margin-top: auto !important;
  1118. margin-bottom: auto !important;
  1119. }
  1120. .mt-0 {
  1121. margin-top: 0 !important;
  1122. }
  1123. .mt-1 {
  1124. margin-top: 0.25rem !important;
  1125. }
  1126. .mt-2 {
  1127. margin-top: 0.5rem !important;
  1128. }
  1129. .mt-3 {
  1130. margin-top: 1rem !important;
  1131. }
  1132. .mt-4 {
  1133. margin-top: 1.5rem !important;
  1134. }
  1135. .mt-5 {
  1136. margin-top: 3rem !important;
  1137. }
  1138. .mt-auto {
  1139. margin-top: auto !important;
  1140. }
  1141. .me-0 {
  1142. margin-left: 0 !important;
  1143. }
  1144. .me-1 {
  1145. margin-left: 0.25rem !important;
  1146. }
  1147. .me-2 {
  1148. margin-left: 0.5rem !important;
  1149. }
  1150. .me-3 {
  1151. margin-left: 1rem !important;
  1152. }
  1153. .me-4 {
  1154. margin-left: 1.5rem !important;
  1155. }
  1156. .me-5 {
  1157. margin-left: 3rem !important;
  1158. }
  1159. .me-auto {
  1160. margin-left: auto !important;
  1161. }
  1162. .mb-0 {
  1163. margin-bottom: 0 !important;
  1164. }
  1165. .mb-1 {
  1166. margin-bottom: 0.25rem !important;
  1167. }
  1168. .mb-2 {
  1169. margin-bottom: 0.5rem !important;
  1170. }
  1171. .mb-3 {
  1172. margin-bottom: 1rem !important;
  1173. }
  1174. .mb-4 {
  1175. margin-bottom: 1.5rem !important;
  1176. }
  1177. .mb-5 {
  1178. margin-bottom: 3rem !important;
  1179. }
  1180. .mb-auto {
  1181. margin-bottom: auto !important;
  1182. }
  1183. .ms-0 {
  1184. margin-right: 0 !important;
  1185. }
  1186. .ms-1 {
  1187. margin-right: 0.25rem !important;
  1188. }
  1189. .ms-2 {
  1190. margin-right: 0.5rem !important;
  1191. }
  1192. .ms-3 {
  1193. margin-right: 1rem !important;
  1194. }
  1195. .ms-4 {
  1196. margin-right: 1.5rem !important;
  1197. }
  1198. .ms-5 {
  1199. margin-right: 3rem !important;
  1200. }
  1201. .ms-auto {
  1202. margin-right: auto !important;
  1203. }
  1204. .p-0 {
  1205. padding: 0 !important;
  1206. }
  1207. .p-1 {
  1208. padding: 0.25rem !important;
  1209. }
  1210. .p-2 {
  1211. padding: 0.5rem !important;
  1212. }
  1213. .p-3 {
  1214. padding: 1rem !important;
  1215. }
  1216. .p-4 {
  1217. padding: 1.5rem !important;
  1218. }
  1219. .p-5 {
  1220. padding: 3rem !important;
  1221. }
  1222. .px-0 {
  1223. padding-left: 0 !important;
  1224. padding-right: 0 !important;
  1225. }
  1226. .px-1 {
  1227. padding-left: 0.25rem !important;
  1228. padding-right: 0.25rem !important;
  1229. }
  1230. .px-2 {
  1231. padding-left: 0.5rem !important;
  1232. padding-right: 0.5rem !important;
  1233. }
  1234. .px-3 {
  1235. padding-left: 1rem !important;
  1236. padding-right: 1rem !important;
  1237. }
  1238. .px-4 {
  1239. padding-left: 1.5rem !important;
  1240. padding-right: 1.5rem !important;
  1241. }
  1242. .px-5 {
  1243. padding-left: 3rem !important;
  1244. padding-right: 3rem !important;
  1245. }
  1246. .py-0 {
  1247. padding-top: 0 !important;
  1248. padding-bottom: 0 !important;
  1249. }
  1250. .py-1 {
  1251. padding-top: 0.25rem !important;
  1252. padding-bottom: 0.25rem !important;
  1253. }
  1254. .py-2 {
  1255. padding-top: 0.5rem !important;
  1256. padding-bottom: 0.5rem !important;
  1257. }
  1258. .py-3 {
  1259. padding-top: 1rem !important;
  1260. padding-bottom: 1rem !important;
  1261. }
  1262. .py-4 {
  1263. padding-top: 1.5rem !important;
  1264. padding-bottom: 1.5rem !important;
  1265. }
  1266. .py-5 {
  1267. padding-top: 3rem !important;
  1268. padding-bottom: 3rem !important;
  1269. }
  1270. .pt-0 {
  1271. padding-top: 0 !important;
  1272. }
  1273. .pt-1 {
  1274. padding-top: 0.25rem !important;
  1275. }
  1276. .pt-2 {
  1277. padding-top: 0.5rem !important;
  1278. }
  1279. .pt-3 {
  1280. padding-top: 1rem !important;
  1281. }
  1282. .pt-4 {
  1283. padding-top: 1.5rem !important;
  1284. }
  1285. .pt-5 {
  1286. padding-top: 3rem !important;
  1287. }
  1288. .pe-0 {
  1289. padding-left: 0 !important;
  1290. }
  1291. .pe-1 {
  1292. padding-left: 0.25rem !important;
  1293. }
  1294. .pe-2 {
  1295. padding-left: 0.5rem !important;
  1296. }
  1297. .pe-3 {
  1298. padding-left: 1rem !important;
  1299. }
  1300. .pe-4 {
  1301. padding-left: 1.5rem !important;
  1302. }
  1303. .pe-5 {
  1304. padding-left: 3rem !important;
  1305. }
  1306. .pb-0 {
  1307. padding-bottom: 0 !important;
  1308. }
  1309. .pb-1 {
  1310. padding-bottom: 0.25rem !important;
  1311. }
  1312. .pb-2 {
  1313. padding-bottom: 0.5rem !important;
  1314. }
  1315. .pb-3 {
  1316. padding-bottom: 1rem !important;
  1317. }
  1318. .pb-4 {
  1319. padding-bottom: 1.5rem !important;
  1320. }
  1321. .pb-5 {
  1322. padding-bottom: 3rem !important;
  1323. }
  1324. .ps-0 {
  1325. padding-right: 0 !important;
  1326. }
  1327. .ps-1 {
  1328. padding-right: 0.25rem !important;
  1329. }
  1330. .ps-2 {
  1331. padding-right: 0.5rem !important;
  1332. }
  1333. .ps-3 {
  1334. padding-right: 1rem !important;
  1335. }
  1336. .ps-4 {
  1337. padding-right: 1.5rem !important;
  1338. }
  1339. .ps-5 {
  1340. padding-right: 3rem !important;
  1341. }
  1342. .gap-0 {
  1343. gap: 0 !important;
  1344. }
  1345. .gap-1 {
  1346. gap: 0.25rem !important;
  1347. }
  1348. .gap-2 {
  1349. gap: 0.5rem !important;
  1350. }
  1351. .gap-3 {
  1352. gap: 1rem !important;
  1353. }
  1354. .gap-4 {
  1355. gap: 1.5rem !important;
  1356. }
  1357. .gap-5 {
  1358. gap: 3rem !important;
  1359. }
  1360. .row-gap-0 {
  1361. row-gap: 0 !important;
  1362. }
  1363. .row-gap-1 {
  1364. row-gap: 0.25rem !important;
  1365. }
  1366. .row-gap-2 {
  1367. row-gap: 0.5rem !important;
  1368. }
  1369. .row-gap-3 {
  1370. row-gap: 1rem !important;
  1371. }
  1372. .row-gap-4 {
  1373. row-gap: 1.5rem !important;
  1374. }
  1375. .row-gap-5 {
  1376. row-gap: 3rem !important;
  1377. }
  1378. .column-gap-0 {
  1379. -moz-column-gap: 0 !important;
  1380. column-gap: 0 !important;
  1381. }
  1382. .column-gap-1 {
  1383. -moz-column-gap: 0.25rem !important;
  1384. column-gap: 0.25rem !important;
  1385. }
  1386. .column-gap-2 {
  1387. -moz-column-gap: 0.5rem !important;
  1388. column-gap: 0.5rem !important;
  1389. }
  1390. .column-gap-3 {
  1391. -moz-column-gap: 1rem !important;
  1392. column-gap: 1rem !important;
  1393. }
  1394. .column-gap-4 {
  1395. -moz-column-gap: 1.5rem !important;
  1396. column-gap: 1.5rem !important;
  1397. }
  1398. .column-gap-5 {
  1399. -moz-column-gap: 3rem !important;
  1400. column-gap: 3rem !important;
  1401. }
  1402. .font-monospace {
  1403. font-family: var(--bs-font-monospace) !important;
  1404. }
  1405. .fs-1 {
  1406. font-size: calc(1.375rem + 1.5vw) !important;
  1407. }
  1408. .fs-2 {
  1409. font-size: calc(1.325rem + 0.9vw) !important;
  1410. }
  1411. .fs-3 {
  1412. font-size: calc(1.3rem + 0.6vw) !important;
  1413. }
  1414. .fs-4 {
  1415. font-size: calc(1.275rem + 0.3vw) !important;
  1416. }
  1417. .fs-5 {
  1418. font-size: 1.25rem !important;
  1419. }
  1420. .fs-6 {
  1421. font-size: 1rem !important;
  1422. }
  1423. .fst-italic {
  1424. font-style: italic !important;
  1425. }
  1426. .fst-normal {
  1427. font-style: normal !important;
  1428. }
  1429. .fw-lighter {
  1430. font-weight: lighter !important;
  1431. }
  1432. .fw-light {
  1433. font-weight: 300 !important;
  1434. }
  1435. .fw-normal {
  1436. font-weight: 400 !important;
  1437. }
  1438. .fw-medium {
  1439. font-weight: 500 !important;
  1440. }
  1441. .fw-semibold {
  1442. font-weight: 600 !important;
  1443. }
  1444. .fw-bold {
  1445. font-weight: 700 !important;
  1446. }
  1447. .fw-bolder {
  1448. font-weight: bolder !important;
  1449. }
  1450. .lh-1 {
  1451. line-height: 1 !important;
  1452. }
  1453. .lh-sm {
  1454. line-height: 1.25 !important;
  1455. }
  1456. .lh-base {
  1457. line-height: 1.5 !important;
  1458. }
  1459. .lh-lg {
  1460. line-height: 2 !important;
  1461. }
  1462. .text-start {
  1463. text-align: right !important;
  1464. }
  1465. .text-end {
  1466. text-align: left !important;
  1467. }
  1468. .text-center {
  1469. text-align: center !important;
  1470. }
  1471. .text-decoration-none {
  1472. text-decoration: none !important;
  1473. }
  1474. .text-decoration-underline {
  1475. text-decoration: underline !important;
  1476. }
  1477. .text-decoration-line-through {
  1478. text-decoration: line-through !important;
  1479. }
  1480. .text-lowercase {
  1481. text-transform: lowercase !important;
  1482. }
  1483. .text-uppercase {
  1484. text-transform: uppercase !important;
  1485. }
  1486. .text-capitalize {
  1487. text-transform: capitalize !important;
  1488. }
  1489. .text-wrap {
  1490. white-space: normal !important;
  1491. }
  1492. .text-nowrap {
  1493. white-space: nowrap !important;
  1494. }
  1495. .text-primary {
  1496. --bs-text-opacity: 1;
  1497. color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
  1498. }
  1499. .text-secondary {
  1500. --bs-text-opacity: 1;
  1501. color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
  1502. }
  1503. .text-success {
  1504. --bs-text-opacity: 1;
  1505. color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
  1506. }
  1507. .text-info {
  1508. --bs-text-opacity: 1;
  1509. color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
  1510. }
  1511. .text-warning {
  1512. --bs-text-opacity: 1;
  1513. color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
  1514. }
  1515. .text-danger {
  1516. --bs-text-opacity: 1;
  1517. color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
  1518. }
  1519. .text-light {
  1520. --bs-text-opacity: 1;
  1521. color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
  1522. }
  1523. .text-dark {
  1524. --bs-text-opacity: 1;
  1525. color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
  1526. }
  1527. .text-black {
  1528. --bs-text-opacity: 1;
  1529. color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
  1530. }
  1531. .text-white {
  1532. --bs-text-opacity: 1;
  1533. color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
  1534. }
  1535. .text-body {
  1536. --bs-text-opacity: 1;
  1537. color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
  1538. }
  1539. .text-muted {
  1540. --bs-text-opacity: 1;
  1541. color: var(--bs-secondary-color) !important;
  1542. }
  1543. .text-black-50 {
  1544. --bs-text-opacity: 1;
  1545. color: rgba(0, 0, 0, 0.5) !important;
  1546. }
  1547. .text-white-50 {
  1548. --bs-text-opacity: 1;
  1549. color: rgba(255, 255, 255, 0.5) !important;
  1550. }
  1551. .text-body-secondary {
  1552. --bs-text-opacity: 1;
  1553. color: var(--bs-secondary-color) !important;
  1554. }
  1555. .text-body-tertiary {
  1556. --bs-text-opacity: 1;
  1557. color: var(--bs-tertiary-color) !important;
  1558. }
  1559. .text-body-emphasis {
  1560. --bs-text-opacity: 1;
  1561. color: var(--bs-emphasis-color) !important;
  1562. }
  1563. .text-reset {
  1564. --bs-text-opacity: 1;
  1565. color: inherit !important;
  1566. }
  1567. .text-opacity-25 {
  1568. --bs-text-opacity: 0.25;
  1569. }
  1570. .text-opacity-50 {
  1571. --bs-text-opacity: 0.5;
  1572. }
  1573. .text-opacity-75 {
  1574. --bs-text-opacity: 0.75;
  1575. }
  1576. .text-opacity-100 {
  1577. --bs-text-opacity: 1;
  1578. }
  1579. .text-primary-emphasis {
  1580. color: var(--bs-primary-text-emphasis) !important;
  1581. }
  1582. .text-secondary-emphasis {
  1583. color: var(--bs-secondary-text-emphasis) !important;
  1584. }
  1585. .text-success-emphasis {
  1586. color: var(--bs-success-text-emphasis) !important;
  1587. }
  1588. .text-info-emphasis {
  1589. color: var(--bs-info-text-emphasis) !important;
  1590. }
  1591. .text-warning-emphasis {
  1592. color: var(--bs-warning-text-emphasis) !important;
  1593. }
  1594. .text-danger-emphasis {
  1595. color: var(--bs-danger-text-emphasis) !important;
  1596. }
  1597. .text-light-emphasis {
  1598. color: var(--bs-light-text-emphasis) !important;
  1599. }
  1600. .text-dark-emphasis {
  1601. color: var(--bs-dark-text-emphasis) !important;
  1602. }
  1603. .link-opacity-10 {
  1604. --bs-link-opacity: 0.1;
  1605. }
  1606. .link-opacity-10-hover:hover {
  1607. --bs-link-opacity: 0.1;
  1608. }
  1609. .link-opacity-25 {
  1610. --bs-link-opacity: 0.25;
  1611. }
  1612. .link-opacity-25-hover:hover {
  1613. --bs-link-opacity: 0.25;
  1614. }
  1615. .link-opacity-50 {
  1616. --bs-link-opacity: 0.5;
  1617. }
  1618. .link-opacity-50-hover:hover {
  1619. --bs-link-opacity: 0.5;
  1620. }
  1621. .link-opacity-75 {
  1622. --bs-link-opacity: 0.75;
  1623. }
  1624. .link-opacity-75-hover:hover {
  1625. --bs-link-opacity: 0.75;
  1626. }
  1627. .link-opacity-100 {
  1628. --bs-link-opacity: 1;
  1629. }
  1630. .link-opacity-100-hover:hover {
  1631. --bs-link-opacity: 1;
  1632. }
  1633. .link-offset-1 {
  1634. text-underline-offset: 0.125em !important;
  1635. }
  1636. .link-offset-1-hover:hover {
  1637. text-underline-offset: 0.125em !important;
  1638. }
  1639. .link-offset-2 {
  1640. text-underline-offset: 0.25em !important;
  1641. }
  1642. .link-offset-2-hover:hover {
  1643. text-underline-offset: 0.25em !important;
  1644. }
  1645. .link-offset-3 {
  1646. text-underline-offset: 0.375em !important;
  1647. }
  1648. .link-offset-3-hover:hover {
  1649. text-underline-offset: 0.375em !important;
  1650. }
  1651. .link-underline-primary {
  1652. --bs-link-underline-opacity: 1;
  1653. -webkit-text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important;
  1654. text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important;
  1655. }
  1656. .link-underline-secondary {
  1657. --bs-link-underline-opacity: 1;
  1658. -webkit-text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important;
  1659. text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important;
  1660. }
  1661. .link-underline-success {
  1662. --bs-link-underline-opacity: 1;
  1663. -webkit-text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important;
  1664. text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important;
  1665. }
  1666. .link-underline-info {
  1667. --bs-link-underline-opacity: 1;
  1668. -webkit-text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important;
  1669. text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important;
  1670. }
  1671. .link-underline-warning {
  1672. --bs-link-underline-opacity: 1;
  1673. -webkit-text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important;
  1674. text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important;
  1675. }
  1676. .link-underline-danger {
  1677. --bs-link-underline-opacity: 1;
  1678. -webkit-text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important;
  1679. text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important;
  1680. }
  1681. .link-underline-light {
  1682. --bs-link-underline-opacity: 1;
  1683. -webkit-text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important;
  1684. text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important;
  1685. }
  1686. .link-underline-dark {
  1687. --bs-link-underline-opacity: 1;
  1688. -webkit-text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important;
  1689. text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important;
  1690. }
  1691. .link-underline {
  1692. --bs-link-underline-opacity: 1;
  1693. -webkit-text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
  1694. text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
  1695. }
  1696. .link-underline-opacity-0 {
  1697. --bs-link-underline-opacity: 0;
  1698. }
  1699. .link-underline-opacity-0-hover:hover {
  1700. --bs-link-underline-opacity: 0;
  1701. }
  1702. .link-underline-opacity-10 {
  1703. --bs-link-underline-opacity: 0.1;
  1704. }
  1705. .link-underline-opacity-10-hover:hover {
  1706. --bs-link-underline-opacity: 0.1;
  1707. }
  1708. .link-underline-opacity-25 {
  1709. --bs-link-underline-opacity: 0.25;
  1710. }
  1711. .link-underline-opacity-25-hover:hover {
  1712. --bs-link-underline-opacity: 0.25;
  1713. }
  1714. .link-underline-opacity-50 {
  1715. --bs-link-underline-opacity: 0.5;
  1716. }
  1717. .link-underline-opacity-50-hover:hover {
  1718. --bs-link-underline-opacity: 0.5;
  1719. }
  1720. .link-underline-opacity-75 {
  1721. --bs-link-underline-opacity: 0.75;
  1722. }
  1723. .link-underline-opacity-75-hover:hover {
  1724. --bs-link-underline-opacity: 0.75;
  1725. }
  1726. .link-underline-opacity-100 {
  1727. --bs-link-underline-opacity: 1;
  1728. }
  1729. .link-underline-opacity-100-hover:hover {
  1730. --bs-link-underline-opacity: 1;
  1731. }
  1732. .bg-primary {
  1733. --bs-bg-opacity: 1;
  1734. background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
  1735. }
  1736. .bg-secondary {
  1737. --bs-bg-opacity: 1;
  1738. background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
  1739. }
  1740. .bg-success {
  1741. --bs-bg-opacity: 1;
  1742. background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
  1743. }
  1744. .bg-info {
  1745. --bs-bg-opacity: 1;
  1746. background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
  1747. }
  1748. .bg-warning {
  1749. --bs-bg-opacity: 1;
  1750. background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
  1751. }
  1752. .bg-danger {
  1753. --bs-bg-opacity: 1;
  1754. background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
  1755. }
  1756. .bg-light {
  1757. --bs-bg-opacity: 1;
  1758. background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
  1759. }
  1760. .bg-dark {
  1761. --bs-bg-opacity: 1;
  1762. background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
  1763. }
  1764. .bg-black {
  1765. --bs-bg-opacity: 1;
  1766. background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
  1767. }
  1768. .bg-white {
  1769. --bs-bg-opacity: 1;
  1770. background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
  1771. }
  1772. .bg-body {
  1773. --bs-bg-opacity: 1;
  1774. background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
  1775. }
  1776. .bg-transparent {
  1777. --bs-bg-opacity: 1;
  1778. background-color: transparent !important;
  1779. }
  1780. .bg-body-secondary {
  1781. --bs-bg-opacity: 1;
  1782. background-color: rgba(var(--bs-secondary-bg-rgb), var(--bs-bg-opacity)) !important;
  1783. }
  1784. .bg-body-tertiary {
  1785. --bs-bg-opacity: 1;
  1786. background-color: rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)) !important;
  1787. }
  1788. .bg-opacity-10 {
  1789. --bs-bg-opacity: 0.1;
  1790. }
  1791. .bg-opacity-25 {
  1792. --bs-bg-opacity: 0.25;
  1793. }
  1794. .bg-opacity-50 {
  1795. --bs-bg-opacity: 0.5;
  1796. }
  1797. .bg-opacity-75 {
  1798. --bs-bg-opacity: 0.75;
  1799. }
  1800. .bg-opacity-100 {
  1801. --bs-bg-opacity: 1;
  1802. }
  1803. .bg-primary-subtle {
  1804. background-color: var(--bs-primary-bg-subtle) !important;
  1805. }
  1806. .bg-secondary-subtle {
  1807. background-color: var(--bs-secondary-bg-subtle) !important;
  1808. }
  1809. .bg-success-subtle {
  1810. background-color: var(--bs-success-bg-subtle) !important;
  1811. }
  1812. .bg-info-subtle {
  1813. background-color: var(--bs-info-bg-subtle) !important;
  1814. }
  1815. .bg-warning-subtle {
  1816. background-color: var(--bs-warning-bg-subtle) !important;
  1817. }
  1818. .bg-danger-subtle {
  1819. background-color: var(--bs-danger-bg-subtle) !important;
  1820. }
  1821. .bg-light-subtle {
  1822. background-color: var(--bs-light-bg-subtle) !important;
  1823. }
  1824. .bg-dark-subtle {
  1825. background-color: var(--bs-dark-bg-subtle) !important;
  1826. }
  1827. .bg-gradient {
  1828. background-image: var(--bs-gradient) !important;
  1829. }
  1830. .user-select-all {
  1831. -webkit-user-select: all !important;
  1832. -moz-user-select: all !important;
  1833. user-select: all !important;
  1834. }
  1835. .user-select-auto {
  1836. -webkit-user-select: auto !important;
  1837. -moz-user-select: auto !important;
  1838. user-select: auto !important;
  1839. }
  1840. .user-select-none {
  1841. -webkit-user-select: none !important;
  1842. -moz-user-select: none !important;
  1843. user-select: none !important;
  1844. }
  1845. .pe-none {
  1846. pointer-events: none !important;
  1847. }
  1848. .pe-auto {
  1849. pointer-events: auto !important;
  1850. }
  1851. .rounded {
  1852. border-radius: var(--bs-border-radius) !important;
  1853. }
  1854. .rounded-0 {
  1855. border-radius: 0 !important;
  1856. }
  1857. .rounded-1 {
  1858. border-radius: var(--bs-border-radius-sm) !important;
  1859. }
  1860. .rounded-2 {
  1861. border-radius: var(--bs-border-radius) !important;
  1862. }
  1863. .rounded-3 {
  1864. border-radius: var(--bs-border-radius-lg) !important;
  1865. }
  1866. .rounded-4 {
  1867. border-radius: var(--bs-border-radius-xl) !important;
  1868. }
  1869. .rounded-5 {
  1870. border-radius: var(--bs-border-radius-xxl) !important;
  1871. }
  1872. .rounded-circle {
  1873. border-radius: 50% !important;
  1874. }
  1875. .rounded-pill {
  1876. border-radius: var(--bs-border-radius-pill) !important;
  1877. }
  1878. .rounded-top {
  1879. border-top-right-radius: var(--bs-border-radius) !important;
  1880. border-top-left-radius: var(--bs-border-radius) !important;
  1881. }
  1882. .rounded-top-0 {
  1883. border-top-right-radius: 0 !important;
  1884. border-top-left-radius: 0 !important;
  1885. }
  1886. .rounded-top-1 {
  1887. border-top-right-radius: var(--bs-border-radius-sm) !important;
  1888. border-top-left-radius: var(--bs-border-radius-sm) !important;
  1889. }
  1890. .rounded-top-2 {
  1891. border-top-right-radius: var(--bs-border-radius) !important;
  1892. border-top-left-radius: var(--bs-border-radius) !important;
  1893. }
  1894. .rounded-top-3 {
  1895. border-top-right-radius: var(--bs-border-radius-lg) !important;
  1896. border-top-left-radius: var(--bs-border-radius-lg) !important;
  1897. }
  1898. .rounded-top-4 {
  1899. border-top-right-radius: var(--bs-border-radius-xl) !important;
  1900. border-top-left-radius: var(--bs-border-radius-xl) !important;
  1901. }
  1902. .rounded-top-5 {
  1903. border-top-right-radius: var(--bs-border-radius-xxl) !important;
  1904. border-top-left-radius: var(--bs-border-radius-xxl) !important;
  1905. }
  1906. .rounded-top-circle {
  1907. border-top-right-radius: 50% !important;
  1908. border-top-left-radius: 50% !important;
  1909. }
  1910. .rounded-top-pill {
  1911. border-top-right-radius: var(--bs-border-radius-pill) !important;
  1912. border-top-left-radius: var(--bs-border-radius-pill) !important;
  1913. }
  1914. .rounded-end {
  1915. border-top-left-radius: var(--bs-border-radius) !important;
  1916. border-bottom-left-radius: var(--bs-border-radius) !important;
  1917. }
  1918. .rounded-end-0 {
  1919. border-top-left-radius: 0 !important;
  1920. border-bottom-left-radius: 0 !important;
  1921. }
  1922. .rounded-end-1 {
  1923. border-top-left-radius: var(--bs-border-radius-sm) !important;
  1924. border-bottom-left-radius: var(--bs-border-radius-sm) !important;
  1925. }
  1926. .rounded-end-2 {
  1927. border-top-left-radius: var(--bs-border-radius) !important;
  1928. border-bottom-left-radius: var(--bs-border-radius) !important;
  1929. }
  1930. .rounded-end-3 {
  1931. border-top-left-radius: var(--bs-border-radius-lg) !important;
  1932. border-bottom-left-radius: var(--bs-border-radius-lg) !important;
  1933. }
  1934. .rounded-end-4 {
  1935. border-top-left-radius: var(--bs-border-radius-xl) !important;
  1936. border-bottom-left-radius: var(--bs-border-radius-xl) !important;
  1937. }
  1938. .rounded-end-5 {
  1939. border-top-left-radius: var(--bs-border-radius-xxl) !important;
  1940. border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
  1941. }
  1942. .rounded-end-circle {
  1943. border-top-left-radius: 50% !important;
  1944. border-bottom-left-radius: 50% !important;
  1945. }
  1946. .rounded-end-pill {
  1947. border-top-left-radius: var(--bs-border-radius-pill) !important;
  1948. border-bottom-left-radius: var(--bs-border-radius-pill) !important;
  1949. }
  1950. .rounded-bottom {
  1951. border-bottom-left-radius: var(--bs-border-radius) !important;
  1952. border-bottom-right-radius: var(--bs-border-radius) !important;
  1953. }
  1954. .rounded-bottom-0 {
  1955. border-bottom-left-radius: 0 !important;
  1956. border-bottom-right-radius: 0 !important;
  1957. }
  1958. .rounded-bottom-1 {
  1959. border-bottom-left-radius: var(--bs-border-radius-sm) !important;
  1960. border-bottom-right-radius: var(--bs-border-radius-sm) !important;
  1961. }
  1962. .rounded-bottom-2 {
  1963. border-bottom-left-radius: var(--bs-border-radius) !important;
  1964. border-bottom-right-radius: var(--bs-border-radius) !important;
  1965. }
  1966. .rounded-bottom-3 {
  1967. border-bottom-left-radius: var(--bs-border-radius-lg) !important;
  1968. border-bottom-right-radius: var(--bs-border-radius-lg) !important;
  1969. }
  1970. .rounded-bottom-4 {
  1971. border-bottom-left-radius: var(--bs-border-radius-xl) !important;
  1972. border-bottom-right-radius: var(--bs-border-radius-xl) !important;
  1973. }
  1974. .rounded-bottom-5 {
  1975. border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
  1976. border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
  1977. }
  1978. .rounded-bottom-circle {
  1979. border-bottom-left-radius: 50% !important;
  1980. border-bottom-right-radius: 50% !important;
  1981. }
  1982. .rounded-bottom-pill {
  1983. border-bottom-left-radius: var(--bs-border-radius-pill) !important;
  1984. border-bottom-right-radius: var(--bs-border-radius-pill) !important;
  1985. }
  1986. .rounded-start {
  1987. border-bottom-right-radius: var(--bs-border-radius) !important;
  1988. border-top-right-radius: var(--bs-border-radius) !important;
  1989. }
  1990. .rounded-start-0 {
  1991. border-bottom-right-radius: 0 !important;
  1992. border-top-right-radius: 0 !important;
  1993. }
  1994. .rounded-start-1 {
  1995. border-bottom-right-radius: var(--bs-border-radius-sm) !important;
  1996. border-top-right-radius: var(--bs-border-radius-sm) !important;
  1997. }
  1998. .rounded-start-2 {
  1999. border-bottom-right-radius: var(--bs-border-radius) !important;
  2000. border-top-right-radius: var(--bs-border-radius) !important;
  2001. }
  2002. .rounded-start-3 {
  2003. border-bottom-right-radius: var(--bs-border-radius-lg) !important;
  2004. border-top-right-radius: var(--bs-border-radius-lg) !important;
  2005. }
  2006. .rounded-start-4 {
  2007. border-bottom-right-radius: var(--bs-border-radius-xl) !important;
  2008. border-top-right-radius: var(--bs-border-radius-xl) !important;
  2009. }
  2010. .rounded-start-5 {
  2011. border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
  2012. border-top-right-radius: var(--bs-border-radius-xxl) !important;
  2013. }
  2014. .rounded-start-circle {
  2015. border-bottom-right-radius: 50% !important;
  2016. border-top-right-radius: 50% !important;
  2017. }
  2018. .rounded-start-pill {
  2019. border-bottom-right-radius: var(--bs-border-radius-pill) !important;
  2020. border-top-right-radius: var(--bs-border-radius-pill) !important;
  2021. }
  2022. .visible {
  2023. visibility: visible !important;
  2024. }
  2025. .invisible {
  2026. visibility: hidden !important;
  2027. }
  2028. .z-n1 {
  2029. z-index: -1 !important;
  2030. }
  2031. .z-0 {
  2032. z-index: 0 !important;
  2033. }
  2034. .z-1 {
  2035. z-index: 1 !important;
  2036. }
  2037. .z-2 {
  2038. z-index: 2 !important;
  2039. }
  2040. .z-3 {
  2041. z-index: 3 !important;
  2042. }
  2043. @media (min-width: 576px) {
  2044. .float-sm-start {
  2045. float: right !important;
  2046. }
  2047. .float-sm-end {
  2048. float: left !important;
  2049. }
  2050. .float-sm-none {
  2051. float: none !important;
  2052. }
  2053. .object-fit-sm-contain {
  2054. -o-object-fit: contain !important;
  2055. object-fit: contain !important;
  2056. }
  2057. .object-fit-sm-cover {
  2058. -o-object-fit: cover !important;
  2059. object-fit: cover !important;
  2060. }
  2061. .object-fit-sm-fill {
  2062. -o-object-fit: fill !important;
  2063. object-fit: fill !important;
  2064. }
  2065. .object-fit-sm-scale {
  2066. -o-object-fit: scale-down !important;
  2067. object-fit: scale-down !important;
  2068. }
  2069. .object-fit-sm-none {
  2070. -o-object-fit: none !important;
  2071. object-fit: none !important;
  2072. }
  2073. .d-sm-inline {
  2074. display: inline !important;
  2075. }
  2076. .d-sm-inline-block {
  2077. display: inline-block !important;
  2078. }
  2079. .d-sm-block {
  2080. display: block !important;
  2081. }
  2082. .d-sm-grid {
  2083. display: grid !important;
  2084. }
  2085. .d-sm-inline-grid {
  2086. display: inline-grid !important;
  2087. }
  2088. .d-sm-table {
  2089. display: table !important;
  2090. }
  2091. .d-sm-table-row {
  2092. display: table-row !important;
  2093. }
  2094. .d-sm-table-cell {
  2095. display: table-cell !important;
  2096. }
  2097. .d-sm-flex {
  2098. display: flex !important;
  2099. }
  2100. .d-sm-inline-flex {
  2101. display: inline-flex !important;
  2102. }
  2103. .d-sm-none {
  2104. display: none !important;
  2105. }
  2106. .flex-sm-fill {
  2107. flex: 1 1 auto !important;
  2108. }
  2109. .flex-sm-row {
  2110. flex-direction: row !important;
  2111. }
  2112. .flex-sm-column {
  2113. flex-direction: column !important;
  2114. }
  2115. .flex-sm-row-reverse {
  2116. flex-direction: row-reverse !important;
  2117. }
  2118. .flex-sm-column-reverse {
  2119. flex-direction: column-reverse !important;
  2120. }
  2121. .flex-sm-grow-0 {
  2122. flex-grow: 0 !important;
  2123. }
  2124. .flex-sm-grow-1 {
  2125. flex-grow: 1 !important;
  2126. }
  2127. .flex-sm-shrink-0 {
  2128. flex-shrink: 0 !important;
  2129. }
  2130. .flex-sm-shrink-1 {
  2131. flex-shrink: 1 !important;
  2132. }
  2133. .flex-sm-wrap {
  2134. flex-wrap: wrap !important;
  2135. }
  2136. .flex-sm-nowrap {
  2137. flex-wrap: nowrap !important;
  2138. }
  2139. .flex-sm-wrap-reverse {
  2140. flex-wrap: wrap-reverse !important;
  2141. }
  2142. .justify-content-sm-start {
  2143. justify-content: flex-start !important;
  2144. }
  2145. .justify-content-sm-end {
  2146. justify-content: flex-end !important;
  2147. }
  2148. .justify-content-sm-center {
  2149. justify-content: center !important;
  2150. }
  2151. .justify-content-sm-between {
  2152. justify-content: space-between !important;
  2153. }
  2154. .justify-content-sm-around {
  2155. justify-content: space-around !important;
  2156. }
  2157. .justify-content-sm-evenly {
  2158. justify-content: space-evenly !important;
  2159. }
  2160. .align-items-sm-start {
  2161. align-items: flex-start !important;
  2162. }
  2163. .align-items-sm-end {
  2164. align-items: flex-end !important;
  2165. }
  2166. .align-items-sm-center {
  2167. align-items: center !important;
  2168. }
  2169. .align-items-sm-baseline {
  2170. align-items: baseline !important;
  2171. }
  2172. .align-items-sm-stretch {
  2173. align-items: stretch !important;
  2174. }
  2175. .align-content-sm-start {
  2176. align-content: flex-start !important;
  2177. }
  2178. .align-content-sm-end {
  2179. align-content: flex-end !important;
  2180. }
  2181. .align-content-sm-center {
  2182. align-content: center !important;
  2183. }
  2184. .align-content-sm-between {
  2185. align-content: space-between !important;
  2186. }
  2187. .align-content-sm-around {
  2188. align-content: space-around !important;
  2189. }
  2190. .align-content-sm-stretch {
  2191. align-content: stretch !important;
  2192. }
  2193. .align-self-sm-auto {
  2194. align-self: auto !important;
  2195. }
  2196. .align-self-sm-start {
  2197. align-self: flex-start !important;
  2198. }
  2199. .align-self-sm-end {
  2200. align-self: flex-end !important;
  2201. }
  2202. .align-self-sm-center {
  2203. align-self: center !important;
  2204. }
  2205. .align-self-sm-baseline {
  2206. align-self: baseline !important;
  2207. }
  2208. .align-self-sm-stretch {
  2209. align-self: stretch !important;
  2210. }
  2211. .order-sm-first {
  2212. order: -1 !important;
  2213. }
  2214. .order-sm-0 {
  2215. order: 0 !important;
  2216. }
  2217. .order-sm-1 {
  2218. order: 1 !important;
  2219. }
  2220. .order-sm-2 {
  2221. order: 2 !important;
  2222. }
  2223. .order-sm-3 {
  2224. order: 3 !important;
  2225. }
  2226. .order-sm-4 {
  2227. order: 4 !important;
  2228. }
  2229. .order-sm-5 {
  2230. order: 5 !important;
  2231. }
  2232. .order-sm-last {
  2233. order: 6 !important;
  2234. }
  2235. .m-sm-0 {
  2236. margin: 0 !important;
  2237. }
  2238. .m-sm-1 {
  2239. margin: 0.25rem !important;
  2240. }
  2241. .m-sm-2 {
  2242. margin: 0.5rem !important;
  2243. }
  2244. .m-sm-3 {
  2245. margin: 1rem !important;
  2246. }
  2247. .m-sm-4 {
  2248. margin: 1.5rem !important;
  2249. }
  2250. .m-sm-5 {
  2251. margin: 3rem !important;
  2252. }
  2253. .m-sm-auto {
  2254. margin: auto !important;
  2255. }
  2256. .mx-sm-0 {
  2257. margin-left: 0 !important;
  2258. margin-right: 0 !important;
  2259. }
  2260. .mx-sm-1 {
  2261. margin-left: 0.25rem !important;
  2262. margin-right: 0.25rem !important;
  2263. }
  2264. .mx-sm-2 {
  2265. margin-left: 0.5rem !important;
  2266. margin-right: 0.5rem !important;
  2267. }
  2268. .mx-sm-3 {
  2269. margin-left: 1rem !important;
  2270. margin-right: 1rem !important;
  2271. }
  2272. .mx-sm-4 {
  2273. margin-left: 1.5rem !important;
  2274. margin-right: 1.5rem !important;
  2275. }
  2276. .mx-sm-5 {
  2277. margin-left: 3rem !important;
  2278. margin-right: 3rem !important;
  2279. }
  2280. .mx-sm-auto {
  2281. margin-left: auto !important;
  2282. margin-right: auto !important;
  2283. }
  2284. .my-sm-0 {
  2285. margin-top: 0 !important;
  2286. margin-bottom: 0 !important;
  2287. }
  2288. .my-sm-1 {
  2289. margin-top: 0.25rem !important;
  2290. margin-bottom: 0.25rem !important;
  2291. }
  2292. .my-sm-2 {
  2293. margin-top: 0.5rem !important;
  2294. margin-bottom: 0.5rem !important;
  2295. }
  2296. .my-sm-3 {
  2297. margin-top: 1rem !important;
  2298. margin-bottom: 1rem !important;
  2299. }
  2300. .my-sm-4 {
  2301. margin-top: 1.5rem !important;
  2302. margin-bottom: 1.5rem !important;
  2303. }
  2304. .my-sm-5 {
  2305. margin-top: 3rem !important;
  2306. margin-bottom: 3rem !important;
  2307. }
  2308. .my-sm-auto {
  2309. margin-top: auto !important;
  2310. margin-bottom: auto !important;
  2311. }
  2312. .mt-sm-0 {
  2313. margin-top: 0 !important;
  2314. }
  2315. .mt-sm-1 {
  2316. margin-top: 0.25rem !important;
  2317. }
  2318. .mt-sm-2 {
  2319. margin-top: 0.5rem !important;
  2320. }
  2321. .mt-sm-3 {
  2322. margin-top: 1rem !important;
  2323. }
  2324. .mt-sm-4 {
  2325. margin-top: 1.5rem !important;
  2326. }
  2327. .mt-sm-5 {
  2328. margin-top: 3rem !important;
  2329. }
  2330. .mt-sm-auto {
  2331. margin-top: auto !important;
  2332. }
  2333. .me-sm-0 {
  2334. margin-left: 0 !important;
  2335. }
  2336. .me-sm-1 {
  2337. margin-left: 0.25rem !important;
  2338. }
  2339. .me-sm-2 {
  2340. margin-left: 0.5rem !important;
  2341. }
  2342. .me-sm-3 {
  2343. margin-left: 1rem !important;
  2344. }
  2345. .me-sm-4 {
  2346. margin-left: 1.5rem !important;
  2347. }
  2348. .me-sm-5 {
  2349. margin-left: 3rem !important;
  2350. }
  2351. .me-sm-auto {
  2352. margin-left: auto !important;
  2353. }
  2354. .mb-sm-0 {
  2355. margin-bottom: 0 !important;
  2356. }
  2357. .mb-sm-1 {
  2358. margin-bottom: 0.25rem !important;
  2359. }
  2360. .mb-sm-2 {
  2361. margin-bottom: 0.5rem !important;
  2362. }
  2363. .mb-sm-3 {
  2364. margin-bottom: 1rem !important;
  2365. }
  2366. .mb-sm-4 {
  2367. margin-bottom: 1.5rem !important;
  2368. }
  2369. .mb-sm-5 {
  2370. margin-bottom: 3rem !important;
  2371. }
  2372. .mb-sm-auto {
  2373. margin-bottom: auto !important;
  2374. }
  2375. .ms-sm-0 {
  2376. margin-right: 0 !important;
  2377. }
  2378. .ms-sm-1 {
  2379. margin-right: 0.25rem !important;
  2380. }
  2381. .ms-sm-2 {
  2382. margin-right: 0.5rem !important;
  2383. }
  2384. .ms-sm-3 {
  2385. margin-right: 1rem !important;
  2386. }
  2387. .ms-sm-4 {
  2388. margin-right: 1.5rem !important;
  2389. }
  2390. .ms-sm-5 {
  2391. margin-right: 3rem !important;
  2392. }
  2393. .ms-sm-auto {
  2394. margin-right: auto !important;
  2395. }
  2396. .p-sm-0 {
  2397. padding: 0 !important;
  2398. }
  2399. .p-sm-1 {
  2400. padding: 0.25rem !important;
  2401. }
  2402. .p-sm-2 {
  2403. padding: 0.5rem !important;
  2404. }
  2405. .p-sm-3 {
  2406. padding: 1rem !important;
  2407. }
  2408. .p-sm-4 {
  2409. padding: 1.5rem !important;
  2410. }
  2411. .p-sm-5 {
  2412. padding: 3rem !important;
  2413. }
  2414. .px-sm-0 {
  2415. padding-left: 0 !important;
  2416. padding-right: 0 !important;
  2417. }
  2418. .px-sm-1 {
  2419. padding-left: 0.25rem !important;
  2420. padding-right: 0.25rem !important;
  2421. }
  2422. .px-sm-2 {
  2423. padding-left: 0.5rem !important;
  2424. padding-right: 0.5rem !important;
  2425. }
  2426. .px-sm-3 {
  2427. padding-left: 1rem !important;
  2428. padding-right: 1rem !important;
  2429. }
  2430. .px-sm-4 {
  2431. padding-left: 1.5rem !important;
  2432. padding-right: 1.5rem !important;
  2433. }
  2434. .px-sm-5 {
  2435. padding-left: 3rem !important;
  2436. padding-right: 3rem !important;
  2437. }
  2438. .py-sm-0 {
  2439. padding-top: 0 !important;
  2440. padding-bottom: 0 !important;
  2441. }
  2442. .py-sm-1 {
  2443. padding-top: 0.25rem !important;
  2444. padding-bottom: 0.25rem !important;
  2445. }
  2446. .py-sm-2 {
  2447. padding-top: 0.5rem !important;
  2448. padding-bottom: 0.5rem !important;
  2449. }
  2450. .py-sm-3 {
  2451. padding-top: 1rem !important;
  2452. padding-bottom: 1rem !important;
  2453. }
  2454. .py-sm-4 {
  2455. padding-top: 1.5rem !important;
  2456. padding-bottom: 1.5rem !important;
  2457. }
  2458. .py-sm-5 {
  2459. padding-top: 3rem !important;
  2460. padding-bottom: 3rem !important;
  2461. }
  2462. .pt-sm-0 {
  2463. padding-top: 0 !important;
  2464. }
  2465. .pt-sm-1 {
  2466. padding-top: 0.25rem !important;
  2467. }
  2468. .pt-sm-2 {
  2469. padding-top: 0.5rem !important;
  2470. }
  2471. .pt-sm-3 {
  2472. padding-top: 1rem !important;
  2473. }
  2474. .pt-sm-4 {
  2475. padding-top: 1.5rem !important;
  2476. }
  2477. .pt-sm-5 {
  2478. padding-top: 3rem !important;
  2479. }
  2480. .pe-sm-0 {
  2481. padding-left: 0 !important;
  2482. }
  2483. .pe-sm-1 {
  2484. padding-left: 0.25rem !important;
  2485. }
  2486. .pe-sm-2 {
  2487. padding-left: 0.5rem !important;
  2488. }
  2489. .pe-sm-3 {
  2490. padding-left: 1rem !important;
  2491. }
  2492. .pe-sm-4 {
  2493. padding-left: 1.5rem !important;
  2494. }
  2495. .pe-sm-5 {
  2496. padding-left: 3rem !important;
  2497. }
  2498. .pb-sm-0 {
  2499. padding-bottom: 0 !important;
  2500. }
  2501. .pb-sm-1 {
  2502. padding-bottom: 0.25rem !important;
  2503. }
  2504. .pb-sm-2 {
  2505. padding-bottom: 0.5rem !important;
  2506. }
  2507. .pb-sm-3 {
  2508. padding-bottom: 1rem !important;
  2509. }
  2510. .pb-sm-4 {
  2511. padding-bottom: 1.5rem !important;
  2512. }
  2513. .pb-sm-5 {
  2514. padding-bottom: 3rem !important;
  2515. }
  2516. .ps-sm-0 {
  2517. padding-right: 0 !important;
  2518. }
  2519. .ps-sm-1 {
  2520. padding-right: 0.25rem !important;
  2521. }
  2522. .ps-sm-2 {
  2523. padding-right: 0.5rem !important;
  2524. }
  2525. .ps-sm-3 {
  2526. padding-right: 1rem !important;
  2527. }
  2528. .ps-sm-4 {
  2529. padding-right: 1.5rem !important;
  2530. }
  2531. .ps-sm-5 {
  2532. padding-right: 3rem !important;
  2533. }
  2534. .gap-sm-0 {
  2535. gap: 0 !important;
  2536. }
  2537. .gap-sm-1 {
  2538. gap: 0.25rem !important;
  2539. }
  2540. .gap-sm-2 {
  2541. gap: 0.5rem !important;
  2542. }
  2543. .gap-sm-3 {
  2544. gap: 1rem !important;
  2545. }
  2546. .gap-sm-4 {
  2547. gap: 1.5rem !important;
  2548. }
  2549. .gap-sm-5 {
  2550. gap: 3rem !important;
  2551. }
  2552. .row-gap-sm-0 {
  2553. row-gap: 0 !important;
  2554. }
  2555. .row-gap-sm-1 {
  2556. row-gap: 0.25rem !important;
  2557. }
  2558. .row-gap-sm-2 {
  2559. row-gap: 0.5rem !important;
  2560. }
  2561. .row-gap-sm-3 {
  2562. row-gap: 1rem !important;
  2563. }
  2564. .row-gap-sm-4 {
  2565. row-gap: 1.5rem !important;
  2566. }
  2567. .row-gap-sm-5 {
  2568. row-gap: 3rem !important;
  2569. }
  2570. .column-gap-sm-0 {
  2571. -moz-column-gap: 0 !important;
  2572. column-gap: 0 !important;
  2573. }
  2574. .column-gap-sm-1 {
  2575. -moz-column-gap: 0.25rem !important;
  2576. column-gap: 0.25rem !important;
  2577. }
  2578. .column-gap-sm-2 {
  2579. -moz-column-gap: 0.5rem !important;
  2580. column-gap: 0.5rem !important;
  2581. }
  2582. .column-gap-sm-3 {
  2583. -moz-column-gap: 1rem !important;
  2584. column-gap: 1rem !important;
  2585. }
  2586. .column-gap-sm-4 {
  2587. -moz-column-gap: 1.5rem !important;
  2588. column-gap: 1.5rem !important;
  2589. }
  2590. .column-gap-sm-5 {
  2591. -moz-column-gap: 3rem !important;
  2592. column-gap: 3rem !important;
  2593. }
  2594. .text-sm-start {
  2595. text-align: right !important;
  2596. }
  2597. .text-sm-end {
  2598. text-align: left !important;
  2599. }
  2600. .text-sm-center {
  2601. text-align: center !important;
  2602. }
  2603. }
  2604. @media (min-width: 768px) {
  2605. .float-md-start {
  2606. float: right !important;
  2607. }
  2608. .float-md-end {
  2609. float: left !important;
  2610. }
  2611. .float-md-none {
  2612. float: none !important;
  2613. }
  2614. .object-fit-md-contain {
  2615. -o-object-fit: contain !important;
  2616. object-fit: contain !important;
  2617. }
  2618. .object-fit-md-cover {
  2619. -o-object-fit: cover !important;
  2620. object-fit: cover !important;
  2621. }
  2622. .object-fit-md-fill {
  2623. -o-object-fit: fill !important;
  2624. object-fit: fill !important;
  2625. }
  2626. .object-fit-md-scale {
  2627. -o-object-fit: scale-down !important;
  2628. object-fit: scale-down !important;
  2629. }
  2630. .object-fit-md-none {
  2631. -o-object-fit: none !important;
  2632. object-fit: none !important;
  2633. }
  2634. .d-md-inline {
  2635. display: inline !important;
  2636. }
  2637. .d-md-inline-block {
  2638. display: inline-block !important;
  2639. }
  2640. .d-md-block {
  2641. display: block !important;
  2642. }
  2643. .d-md-grid {
  2644. display: grid !important;
  2645. }
  2646. .d-md-inline-grid {
  2647. display: inline-grid !important;
  2648. }
  2649. .d-md-table {
  2650. display: table !important;
  2651. }
  2652. .d-md-table-row {
  2653. display: table-row !important;
  2654. }
  2655. .d-md-table-cell {
  2656. display: table-cell !important;
  2657. }
  2658. .d-md-flex {
  2659. display: flex !important;
  2660. }
  2661. .d-md-inline-flex {
  2662. display: inline-flex !important;
  2663. }
  2664. .d-md-none {
  2665. display: none !important;
  2666. }
  2667. .flex-md-fill {
  2668. flex: 1 1 auto !important;
  2669. }
  2670. .flex-md-row {
  2671. flex-direction: row !important;
  2672. }
  2673. .flex-md-column {
  2674. flex-direction: column !important;
  2675. }
  2676. .flex-md-row-reverse {
  2677. flex-direction: row-reverse !important;
  2678. }
  2679. .flex-md-column-reverse {
  2680. flex-direction: column-reverse !important;
  2681. }
  2682. .flex-md-grow-0 {
  2683. flex-grow: 0 !important;
  2684. }
  2685. .flex-md-grow-1 {
  2686. flex-grow: 1 !important;
  2687. }
  2688. .flex-md-shrink-0 {
  2689. flex-shrink: 0 !important;
  2690. }
  2691. .flex-md-shrink-1 {
  2692. flex-shrink: 1 !important;
  2693. }
  2694. .flex-md-wrap {
  2695. flex-wrap: wrap !important;
  2696. }
  2697. .flex-md-nowrap {
  2698. flex-wrap: nowrap !important;
  2699. }
  2700. .flex-md-wrap-reverse {
  2701. flex-wrap: wrap-reverse !important;
  2702. }
  2703. .justify-content-md-start {
  2704. justify-content: flex-start !important;
  2705. }
  2706. .justify-content-md-end {
  2707. justify-content: flex-end !important;
  2708. }
  2709. .justify-content-md-center {
  2710. justify-content: center !important;
  2711. }
  2712. .justify-content-md-between {
  2713. justify-content: space-between !important;
  2714. }
  2715. .justify-content-md-around {
  2716. justify-content: space-around !important;
  2717. }
  2718. .justify-content-md-evenly {
  2719. justify-content: space-evenly !important;
  2720. }
  2721. .align-items-md-start {
  2722. align-items: flex-start !important;
  2723. }
  2724. .align-items-md-end {
  2725. align-items: flex-end !important;
  2726. }
  2727. .align-items-md-center {
  2728. align-items: center !important;
  2729. }
  2730. .align-items-md-baseline {
  2731. align-items: baseline !important;
  2732. }
  2733. .align-items-md-stretch {
  2734. align-items: stretch !important;
  2735. }
  2736. .align-content-md-start {
  2737. align-content: flex-start !important;
  2738. }
  2739. .align-content-md-end {
  2740. align-content: flex-end !important;
  2741. }
  2742. .align-content-md-center {
  2743. align-content: center !important;
  2744. }
  2745. .align-content-md-between {
  2746. align-content: space-between !important;
  2747. }
  2748. .align-content-md-around {
  2749. align-content: space-around !important;
  2750. }
  2751. .align-content-md-stretch {
  2752. align-content: stretch !important;
  2753. }
  2754. .align-self-md-auto {
  2755. align-self: auto !important;
  2756. }
  2757. .align-self-md-start {
  2758. align-self: flex-start !important;
  2759. }
  2760. .align-self-md-end {
  2761. align-self: flex-end !important;
  2762. }
  2763. .align-self-md-center {
  2764. align-self: center !important;
  2765. }
  2766. .align-self-md-baseline {
  2767. align-self: baseline !important;
  2768. }
  2769. .align-self-md-stretch {
  2770. align-self: stretch !important;
  2771. }
  2772. .order-md-first {
  2773. order: -1 !important;
  2774. }
  2775. .order-md-0 {
  2776. order: 0 !important;
  2777. }
  2778. .order-md-1 {
  2779. order: 1 !important;
  2780. }
  2781. .order-md-2 {
  2782. order: 2 !important;
  2783. }
  2784. .order-md-3 {
  2785. order: 3 !important;
  2786. }
  2787. .order-md-4 {
  2788. order: 4 !important;
  2789. }
  2790. .order-md-5 {
  2791. order: 5 !important;
  2792. }
  2793. .order-md-last {
  2794. order: 6 !important;
  2795. }
  2796. .m-md-0 {
  2797. margin: 0 !important;
  2798. }
  2799. .m-md-1 {
  2800. margin: 0.25rem !important;
  2801. }
  2802. .m-md-2 {
  2803. margin: 0.5rem !important;
  2804. }
  2805. .m-md-3 {
  2806. margin: 1rem !important;
  2807. }
  2808. .m-md-4 {
  2809. margin: 1.5rem !important;
  2810. }
  2811. .m-md-5 {
  2812. margin: 3rem !important;
  2813. }
  2814. .m-md-auto {
  2815. margin: auto !important;
  2816. }
  2817. .mx-md-0 {
  2818. margin-left: 0 !important;
  2819. margin-right: 0 !important;
  2820. }
  2821. .mx-md-1 {
  2822. margin-left: 0.25rem !important;
  2823. margin-right: 0.25rem !important;
  2824. }
  2825. .mx-md-2 {
  2826. margin-left: 0.5rem !important;
  2827. margin-right: 0.5rem !important;
  2828. }
  2829. .mx-md-3 {
  2830. margin-left: 1rem !important;
  2831. margin-right: 1rem !important;
  2832. }
  2833. .mx-md-4 {
  2834. margin-left: 1.5rem !important;
  2835. margin-right: 1.5rem !important;
  2836. }
  2837. .mx-md-5 {
  2838. margin-left: 3rem !important;
  2839. margin-right: 3rem !important;
  2840. }
  2841. .mx-md-auto {
  2842. margin-left: auto !important;
  2843. margin-right: auto !important;
  2844. }
  2845. .my-md-0 {
  2846. margin-top: 0 !important;
  2847. margin-bottom: 0 !important;
  2848. }
  2849. .my-md-1 {
  2850. margin-top: 0.25rem !important;
  2851. margin-bottom: 0.25rem !important;
  2852. }
  2853. .my-md-2 {
  2854. margin-top: 0.5rem !important;
  2855. margin-bottom: 0.5rem !important;
  2856. }
  2857. .my-md-3 {
  2858. margin-top: 1rem !important;
  2859. margin-bottom: 1rem !important;
  2860. }
  2861. .my-md-4 {
  2862. margin-top: 1.5rem !important;
  2863. margin-bottom: 1.5rem !important;
  2864. }
  2865. .my-md-5 {
  2866. margin-top: 3rem !important;
  2867. margin-bottom: 3rem !important;
  2868. }
  2869. .my-md-auto {
  2870. margin-top: auto !important;
  2871. margin-bottom: auto !important;
  2872. }
  2873. .mt-md-0 {
  2874. margin-top: 0 !important;
  2875. }
  2876. .mt-md-1 {
  2877. margin-top: 0.25rem !important;
  2878. }
  2879. .mt-md-2 {
  2880. margin-top: 0.5rem !important;
  2881. }
  2882. .mt-md-3 {
  2883. margin-top: 1rem !important;
  2884. }
  2885. .mt-md-4 {
  2886. margin-top: 1.5rem !important;
  2887. }
  2888. .mt-md-5 {
  2889. margin-top: 3rem !important;
  2890. }
  2891. .mt-md-auto {
  2892. margin-top: auto !important;
  2893. }
  2894. .me-md-0 {
  2895. margin-left: 0 !important;
  2896. }
  2897. .me-md-1 {
  2898. margin-left: 0.25rem !important;
  2899. }
  2900. .me-md-2 {
  2901. margin-left: 0.5rem !important;
  2902. }
  2903. .me-md-3 {
  2904. margin-left: 1rem !important;
  2905. }
  2906. .me-md-4 {
  2907. margin-left: 1.5rem !important;
  2908. }
  2909. .me-md-5 {
  2910. margin-left: 3rem !important;
  2911. }
  2912. .me-md-auto {
  2913. margin-left: auto !important;
  2914. }
  2915. .mb-md-0 {
  2916. margin-bottom: 0 !important;
  2917. }
  2918. .mb-md-1 {
  2919. margin-bottom: 0.25rem !important;
  2920. }
  2921. .mb-md-2 {
  2922. margin-bottom: 0.5rem !important;
  2923. }
  2924. .mb-md-3 {
  2925. margin-bottom: 1rem !important;
  2926. }
  2927. .mb-md-4 {
  2928. margin-bottom: 1.5rem !important;
  2929. }
  2930. .mb-md-5 {
  2931. margin-bottom: 3rem !important;
  2932. }
  2933. .mb-md-auto {
  2934. margin-bottom: auto !important;
  2935. }
  2936. .ms-md-0 {
  2937. margin-right: 0 !important;
  2938. }
  2939. .ms-md-1 {
  2940. margin-right: 0.25rem !important;
  2941. }
  2942. .ms-md-2 {
  2943. margin-right: 0.5rem !important;
  2944. }
  2945. .ms-md-3 {
  2946. margin-right: 1rem !important;
  2947. }
  2948. .ms-md-4 {
  2949. margin-right: 1.5rem !important;
  2950. }
  2951. .ms-md-5 {
  2952. margin-right: 3rem !important;
  2953. }
  2954. .ms-md-auto {
  2955. margin-right: auto !important;
  2956. }
  2957. .p-md-0 {
  2958. padding: 0 !important;
  2959. }
  2960. .p-md-1 {
  2961. padding: 0.25rem !important;
  2962. }
  2963. .p-md-2 {
  2964. padding: 0.5rem !important;
  2965. }
  2966. .p-md-3 {
  2967. padding: 1rem !important;
  2968. }
  2969. .p-md-4 {
  2970. padding: 1.5rem !important;
  2971. }
  2972. .p-md-5 {
  2973. padding: 3rem !important;
  2974. }
  2975. .px-md-0 {
  2976. padding-left: 0 !important;
  2977. padding-right: 0 !important;
  2978. }
  2979. .px-md-1 {
  2980. padding-left: 0.25rem !important;
  2981. padding-right: 0.25rem !important;
  2982. }
  2983. .px-md-2 {
  2984. padding-left: 0.5rem !important;
  2985. padding-right: 0.5rem !important;
  2986. }
  2987. .px-md-3 {
  2988. padding-left: 1rem !important;
  2989. padding-right: 1rem !important;
  2990. }
  2991. .px-md-4 {
  2992. padding-left: 1.5rem !important;
  2993. padding-right: 1.5rem !important;
  2994. }
  2995. .px-md-5 {
  2996. padding-left: 3rem !important;
  2997. padding-right: 3rem !important;
  2998. }
  2999. .py-md-0 {
  3000. padding-top: 0 !important;
  3001. padding-bottom: 0 !important;
  3002. }
  3003. .py-md-1 {
  3004. padding-top: 0.25rem !important;
  3005. padding-bottom: 0.25rem !important;
  3006. }
  3007. .py-md-2 {
  3008. padding-top: 0.5rem !important;
  3009. padding-bottom: 0.5rem !important;
  3010. }
  3011. .py-md-3 {
  3012. padding-top: 1rem !important;
  3013. padding-bottom: 1rem !important;
  3014. }
  3015. .py-md-4 {
  3016. padding-top: 1.5rem !important;
  3017. padding-bottom: 1.5rem !important;
  3018. }
  3019. .py-md-5 {
  3020. padding-top: 3rem !important;
  3021. padding-bottom: 3rem !important;
  3022. }
  3023. .pt-md-0 {
  3024. padding-top: 0 !important;
  3025. }
  3026. .pt-md-1 {
  3027. padding-top: 0.25rem !important;
  3028. }
  3029. .pt-md-2 {
  3030. padding-top: 0.5rem !important;
  3031. }
  3032. .pt-md-3 {
  3033. padding-top: 1rem !important;
  3034. }
  3035. .pt-md-4 {
  3036. padding-top: 1.5rem !important;
  3037. }
  3038. .pt-md-5 {
  3039. padding-top: 3rem !important;
  3040. }
  3041. .pe-md-0 {
  3042. padding-left: 0 !important;
  3043. }
  3044. .pe-md-1 {
  3045. padding-left: 0.25rem !important;
  3046. }
  3047. .pe-md-2 {
  3048. padding-left: 0.5rem !important;
  3049. }
  3050. .pe-md-3 {
  3051. padding-left: 1rem !important;
  3052. }
  3053. .pe-md-4 {
  3054. padding-left: 1.5rem !important;
  3055. }
  3056. .pe-md-5 {
  3057. padding-left: 3rem !important;
  3058. }
  3059. .pb-md-0 {
  3060. padding-bottom: 0 !important;
  3061. }
  3062. .pb-md-1 {
  3063. padding-bottom: 0.25rem !important;
  3064. }
  3065. .pb-md-2 {
  3066. padding-bottom: 0.5rem !important;
  3067. }
  3068. .pb-md-3 {
  3069. padding-bottom: 1rem !important;
  3070. }
  3071. .pb-md-4 {
  3072. padding-bottom: 1.5rem !important;
  3073. }
  3074. .pb-md-5 {
  3075. padding-bottom: 3rem !important;
  3076. }
  3077. .ps-md-0 {
  3078. padding-right: 0 !important;
  3079. }
  3080. .ps-md-1 {
  3081. padding-right: 0.25rem !important;
  3082. }
  3083. .ps-md-2 {
  3084. padding-right: 0.5rem !important;
  3085. }
  3086. .ps-md-3 {
  3087. padding-right: 1rem !important;
  3088. }
  3089. .ps-md-4 {
  3090. padding-right: 1.5rem !important;
  3091. }
  3092. .ps-md-5 {
  3093. padding-right: 3rem !important;
  3094. }
  3095. .gap-md-0 {
  3096. gap: 0 !important;
  3097. }
  3098. .gap-md-1 {
  3099. gap: 0.25rem !important;
  3100. }
  3101. .gap-md-2 {
  3102. gap: 0.5rem !important;
  3103. }
  3104. .gap-md-3 {
  3105. gap: 1rem !important;
  3106. }
  3107. .gap-md-4 {
  3108. gap: 1.5rem !important;
  3109. }
  3110. .gap-md-5 {
  3111. gap: 3rem !important;
  3112. }
  3113. .row-gap-md-0 {
  3114. row-gap: 0 !important;
  3115. }
  3116. .row-gap-md-1 {
  3117. row-gap: 0.25rem !important;
  3118. }
  3119. .row-gap-md-2 {
  3120. row-gap: 0.5rem !important;
  3121. }
  3122. .row-gap-md-3 {
  3123. row-gap: 1rem !important;
  3124. }
  3125. .row-gap-md-4 {
  3126. row-gap: 1.5rem !important;
  3127. }
  3128. .row-gap-md-5 {
  3129. row-gap: 3rem !important;
  3130. }
  3131. .column-gap-md-0 {
  3132. -moz-column-gap: 0 !important;
  3133. column-gap: 0 !important;
  3134. }
  3135. .column-gap-md-1 {
  3136. -moz-column-gap: 0.25rem !important;
  3137. column-gap: 0.25rem !important;
  3138. }
  3139. .column-gap-md-2 {
  3140. -moz-column-gap: 0.5rem !important;
  3141. column-gap: 0.5rem !important;
  3142. }
  3143. .column-gap-md-3 {
  3144. -moz-column-gap: 1rem !important;
  3145. column-gap: 1rem !important;
  3146. }
  3147. .column-gap-md-4 {
  3148. -moz-column-gap: 1.5rem !important;
  3149. column-gap: 1.5rem !important;
  3150. }
  3151. .column-gap-md-5 {
  3152. -moz-column-gap: 3rem !important;
  3153. column-gap: 3rem !important;
  3154. }
  3155. .text-md-start {
  3156. text-align: right !important;
  3157. }
  3158. .text-md-end {
  3159. text-align: left !important;
  3160. }
  3161. .text-md-center {
  3162. text-align: center !important;
  3163. }
  3164. }
  3165. @media (min-width: 992px) {
  3166. .float-lg-start {
  3167. float: right !important;
  3168. }
  3169. .float-lg-end {
  3170. float: left !important;
  3171. }
  3172. .float-lg-none {
  3173. float: none !important;
  3174. }
  3175. .object-fit-lg-contain {
  3176. -o-object-fit: contain !important;
  3177. object-fit: contain !important;
  3178. }
  3179. .object-fit-lg-cover {
  3180. -o-object-fit: cover !important;
  3181. object-fit: cover !important;
  3182. }
  3183. .object-fit-lg-fill {
  3184. -o-object-fit: fill !important;
  3185. object-fit: fill !important;
  3186. }
  3187. .object-fit-lg-scale {
  3188. -o-object-fit: scale-down !important;
  3189. object-fit: scale-down !important;
  3190. }
  3191. .object-fit-lg-none {
  3192. -o-object-fit: none !important;
  3193. object-fit: none !important;
  3194. }
  3195. .d-lg-inline {
  3196. display: inline !important;
  3197. }
  3198. .d-lg-inline-block {
  3199. display: inline-block !important;
  3200. }
  3201. .d-lg-block {
  3202. display: block !important;
  3203. }
  3204. .d-lg-grid {
  3205. display: grid !important;
  3206. }
  3207. .d-lg-inline-grid {
  3208. display: inline-grid !important;
  3209. }
  3210. .d-lg-table {
  3211. display: table !important;
  3212. }
  3213. .d-lg-table-row {
  3214. display: table-row !important;
  3215. }
  3216. .d-lg-table-cell {
  3217. display: table-cell !important;
  3218. }
  3219. .d-lg-flex {
  3220. display: flex !important;
  3221. }
  3222. .d-lg-inline-flex {
  3223. display: inline-flex !important;
  3224. }
  3225. .d-lg-none {
  3226. display: none !important;
  3227. }
  3228. .flex-lg-fill {
  3229. flex: 1 1 auto !important;
  3230. }
  3231. .flex-lg-row {
  3232. flex-direction: row !important;
  3233. }
  3234. .flex-lg-column {
  3235. flex-direction: column !important;
  3236. }
  3237. .flex-lg-row-reverse {
  3238. flex-direction: row-reverse !important;
  3239. }
  3240. .flex-lg-column-reverse {
  3241. flex-direction: column-reverse !important;
  3242. }
  3243. .flex-lg-grow-0 {
  3244. flex-grow: 0 !important;
  3245. }
  3246. .flex-lg-grow-1 {
  3247. flex-grow: 1 !important;
  3248. }
  3249. .flex-lg-shrink-0 {
  3250. flex-shrink: 0 !important;
  3251. }
  3252. .flex-lg-shrink-1 {
  3253. flex-shrink: 1 !important;
  3254. }
  3255. .flex-lg-wrap {
  3256. flex-wrap: wrap !important;
  3257. }
  3258. .flex-lg-nowrap {
  3259. flex-wrap: nowrap !important;
  3260. }
  3261. .flex-lg-wrap-reverse {
  3262. flex-wrap: wrap-reverse !important;
  3263. }
  3264. .justify-content-lg-start {
  3265. justify-content: flex-start !important;
  3266. }
  3267. .justify-content-lg-end {
  3268. justify-content: flex-end !important;
  3269. }
  3270. .justify-content-lg-center {
  3271. justify-content: center !important;
  3272. }
  3273. .justify-content-lg-between {
  3274. justify-content: space-between !important;
  3275. }
  3276. .justify-content-lg-around {
  3277. justify-content: space-around !important;
  3278. }
  3279. .justify-content-lg-evenly {
  3280. justify-content: space-evenly !important;
  3281. }
  3282. .align-items-lg-start {
  3283. align-items: flex-start !important;
  3284. }
  3285. .align-items-lg-end {
  3286. align-items: flex-end !important;
  3287. }
  3288. .align-items-lg-center {
  3289. align-items: center !important;
  3290. }
  3291. .align-items-lg-baseline {
  3292. align-items: baseline !important;
  3293. }
  3294. .align-items-lg-stretch {
  3295. align-items: stretch !important;
  3296. }
  3297. .align-content-lg-start {
  3298. align-content: flex-start !important;
  3299. }
  3300. .align-content-lg-end {
  3301. align-content: flex-end !important;
  3302. }
  3303. .align-content-lg-center {
  3304. align-content: center !important;
  3305. }
  3306. .align-content-lg-between {
  3307. align-content: space-between !important;
  3308. }
  3309. .align-content-lg-around {
  3310. align-content: space-around !important;
  3311. }
  3312. .align-content-lg-stretch {
  3313. align-content: stretch !important;
  3314. }
  3315. .align-self-lg-auto {
  3316. align-self: auto !important;
  3317. }
  3318. .align-self-lg-start {
  3319. align-self: flex-start !important;
  3320. }
  3321. .align-self-lg-end {
  3322. align-self: flex-end !important;
  3323. }
  3324. .align-self-lg-center {
  3325. align-self: center !important;
  3326. }
  3327. .align-self-lg-baseline {
  3328. align-self: baseline !important;
  3329. }
  3330. .align-self-lg-stretch {
  3331. align-self: stretch !important;
  3332. }
  3333. .order-lg-first {
  3334. order: -1 !important;
  3335. }
  3336. .order-lg-0 {
  3337. order: 0 !important;
  3338. }
  3339. .order-lg-1 {
  3340. order: 1 !important;
  3341. }
  3342. .order-lg-2 {
  3343. order: 2 !important;
  3344. }
  3345. .order-lg-3 {
  3346. order: 3 !important;
  3347. }
  3348. .order-lg-4 {
  3349. order: 4 !important;
  3350. }
  3351. .order-lg-5 {
  3352. order: 5 !important;
  3353. }
  3354. .order-lg-last {
  3355. order: 6 !important;
  3356. }
  3357. .m-lg-0 {
  3358. margin: 0 !important;
  3359. }
  3360. .m-lg-1 {
  3361. margin: 0.25rem !important;
  3362. }
  3363. .m-lg-2 {
  3364. margin: 0.5rem !important;
  3365. }
  3366. .m-lg-3 {
  3367. margin: 1rem !important;
  3368. }
  3369. .m-lg-4 {
  3370. margin: 1.5rem !important;
  3371. }
  3372. .m-lg-5 {
  3373. margin: 3rem !important;
  3374. }
  3375. .m-lg-auto {
  3376. margin: auto !important;
  3377. }
  3378. .mx-lg-0 {
  3379. margin-left: 0 !important;
  3380. margin-right: 0 !important;
  3381. }
  3382. .mx-lg-1 {
  3383. margin-left: 0.25rem !important;
  3384. margin-right: 0.25rem !important;
  3385. }
  3386. .mx-lg-2 {
  3387. margin-left: 0.5rem !important;
  3388. margin-right: 0.5rem !important;
  3389. }
  3390. .mx-lg-3 {
  3391. margin-left: 1rem !important;
  3392. margin-right: 1rem !important;
  3393. }
  3394. .mx-lg-4 {
  3395. margin-left: 1.5rem !important;
  3396. margin-right: 1.5rem !important;
  3397. }
  3398. .mx-lg-5 {
  3399. margin-left: 3rem !important;
  3400. margin-right: 3rem !important;
  3401. }
  3402. .mx-lg-auto {
  3403. margin-left: auto !important;
  3404. margin-right: auto !important;
  3405. }
  3406. .my-lg-0 {
  3407. margin-top: 0 !important;
  3408. margin-bottom: 0 !important;
  3409. }
  3410. .my-lg-1 {
  3411. margin-top: 0.25rem !important;
  3412. margin-bottom: 0.25rem !important;
  3413. }
  3414. .my-lg-2 {
  3415. margin-top: 0.5rem !important;
  3416. margin-bottom: 0.5rem !important;
  3417. }
  3418. .my-lg-3 {
  3419. margin-top: 1rem !important;
  3420. margin-bottom: 1rem !important;
  3421. }
  3422. .my-lg-4 {
  3423. margin-top: 1.5rem !important;
  3424. margin-bottom: 1.5rem !important;
  3425. }
  3426. .my-lg-5 {
  3427. margin-top: 3rem !important;
  3428. margin-bottom: 3rem !important;
  3429. }
  3430. .my-lg-auto {
  3431. margin-top: auto !important;
  3432. margin-bottom: auto !important;
  3433. }
  3434. .mt-lg-0 {
  3435. margin-top: 0 !important;
  3436. }
  3437. .mt-lg-1 {
  3438. margin-top: 0.25rem !important;
  3439. }
  3440. .mt-lg-2 {
  3441. margin-top: 0.5rem !important;
  3442. }
  3443. .mt-lg-3 {
  3444. margin-top: 1rem !important;
  3445. }
  3446. .mt-lg-4 {
  3447. margin-top: 1.5rem !important;
  3448. }
  3449. .mt-lg-5 {
  3450. margin-top: 3rem !important;
  3451. }
  3452. .mt-lg-auto {
  3453. margin-top: auto !important;
  3454. }
  3455. .me-lg-0 {
  3456. margin-left: 0 !important;
  3457. }
  3458. .me-lg-1 {
  3459. margin-left: 0.25rem !important;
  3460. }
  3461. .me-lg-2 {
  3462. margin-left: 0.5rem !important;
  3463. }
  3464. .me-lg-3 {
  3465. margin-left: 1rem !important;
  3466. }
  3467. .me-lg-4 {
  3468. margin-left: 1.5rem !important;
  3469. }
  3470. .me-lg-5 {
  3471. margin-left: 3rem !important;
  3472. }
  3473. .me-lg-auto {
  3474. margin-left: auto !important;
  3475. }
  3476. .mb-lg-0 {
  3477. margin-bottom: 0 !important;
  3478. }
  3479. .mb-lg-1 {
  3480. margin-bottom: 0.25rem !important;
  3481. }
  3482. .mb-lg-2 {
  3483. margin-bottom: 0.5rem !important;
  3484. }
  3485. .mb-lg-3 {
  3486. margin-bottom: 1rem !important;
  3487. }
  3488. .mb-lg-4 {
  3489. margin-bottom: 1.5rem !important;
  3490. }
  3491. .mb-lg-5 {
  3492. margin-bottom: 3rem !important;
  3493. }
  3494. .mb-lg-auto {
  3495. margin-bottom: auto !important;
  3496. }
  3497. .ms-lg-0 {
  3498. margin-right: 0 !important;
  3499. }
  3500. .ms-lg-1 {
  3501. margin-right: 0.25rem !important;
  3502. }
  3503. .ms-lg-2 {
  3504. margin-right: 0.5rem !important;
  3505. }
  3506. .ms-lg-3 {
  3507. margin-right: 1rem !important;
  3508. }
  3509. .ms-lg-4 {
  3510. margin-right: 1.5rem !important;
  3511. }
  3512. .ms-lg-5 {
  3513. margin-right: 3rem !important;
  3514. }
  3515. .ms-lg-auto {
  3516. margin-right: auto !important;
  3517. }
  3518. .p-lg-0 {
  3519. padding: 0 !important;
  3520. }
  3521. .p-lg-1 {
  3522. padding: 0.25rem !important;
  3523. }
  3524. .p-lg-2 {
  3525. padding: 0.5rem !important;
  3526. }
  3527. .p-lg-3 {
  3528. padding: 1rem !important;
  3529. }
  3530. .p-lg-4 {
  3531. padding: 1.5rem !important;
  3532. }
  3533. .p-lg-5 {
  3534. padding: 3rem !important;
  3535. }
  3536. .px-lg-0 {
  3537. padding-left: 0 !important;
  3538. padding-right: 0 !important;
  3539. }
  3540. .px-lg-1 {
  3541. padding-left: 0.25rem !important;
  3542. padding-right: 0.25rem !important;
  3543. }
  3544. .px-lg-2 {
  3545. padding-left: 0.5rem !important;
  3546. padding-right: 0.5rem !important;
  3547. }
  3548. .px-lg-3 {
  3549. padding-left: 1rem !important;
  3550. padding-right: 1rem !important;
  3551. }
  3552. .px-lg-4 {
  3553. padding-left: 1.5rem !important;
  3554. padding-right: 1.5rem !important;
  3555. }
  3556. .px-lg-5 {
  3557. padding-left: 3rem !important;
  3558. padding-right: 3rem !important;
  3559. }
  3560. .py-lg-0 {
  3561. padding-top: 0 !important;
  3562. padding-bottom: 0 !important;
  3563. }
  3564. .py-lg-1 {
  3565. padding-top: 0.25rem !important;
  3566. padding-bottom: 0.25rem !important;
  3567. }
  3568. .py-lg-2 {
  3569. padding-top: 0.5rem !important;
  3570. padding-bottom: 0.5rem !important;
  3571. }
  3572. .py-lg-3 {
  3573. padding-top: 1rem !important;
  3574. padding-bottom: 1rem !important;
  3575. }
  3576. .py-lg-4 {
  3577. padding-top: 1.5rem !important;
  3578. padding-bottom: 1.5rem !important;
  3579. }
  3580. .py-lg-5 {
  3581. padding-top: 3rem !important;
  3582. padding-bottom: 3rem !important;
  3583. }
  3584. .pt-lg-0 {
  3585. padding-top: 0 !important;
  3586. }
  3587. .pt-lg-1 {
  3588. padding-top: 0.25rem !important;
  3589. }
  3590. .pt-lg-2 {
  3591. padding-top: 0.5rem !important;
  3592. }
  3593. .pt-lg-3 {
  3594. padding-top: 1rem !important;
  3595. }
  3596. .pt-lg-4 {
  3597. padding-top: 1.5rem !important;
  3598. }
  3599. .pt-lg-5 {
  3600. padding-top: 3rem !important;
  3601. }
  3602. .pe-lg-0 {
  3603. padding-left: 0 !important;
  3604. }
  3605. .pe-lg-1 {
  3606. padding-left: 0.25rem !important;
  3607. }
  3608. .pe-lg-2 {
  3609. padding-left: 0.5rem !important;
  3610. }
  3611. .pe-lg-3 {
  3612. padding-left: 1rem !important;
  3613. }
  3614. .pe-lg-4 {
  3615. padding-left: 1.5rem !important;
  3616. }
  3617. .pe-lg-5 {
  3618. padding-left: 3rem !important;
  3619. }
  3620. .pb-lg-0 {
  3621. padding-bottom: 0 !important;
  3622. }
  3623. .pb-lg-1 {
  3624. padding-bottom: 0.25rem !important;
  3625. }
  3626. .pb-lg-2 {
  3627. padding-bottom: 0.5rem !important;
  3628. }
  3629. .pb-lg-3 {
  3630. padding-bottom: 1rem !important;
  3631. }
  3632. .pb-lg-4 {
  3633. padding-bottom: 1.5rem !important;
  3634. }
  3635. .pb-lg-5 {
  3636. padding-bottom: 3rem !important;
  3637. }
  3638. .ps-lg-0 {
  3639. padding-right: 0 !important;
  3640. }
  3641. .ps-lg-1 {
  3642. padding-right: 0.25rem !important;
  3643. }
  3644. .ps-lg-2 {
  3645. padding-right: 0.5rem !important;
  3646. }
  3647. .ps-lg-3 {
  3648. padding-right: 1rem !important;
  3649. }
  3650. .ps-lg-4 {
  3651. padding-right: 1.5rem !important;
  3652. }
  3653. .ps-lg-5 {
  3654. padding-right: 3rem !important;
  3655. }
  3656. .gap-lg-0 {
  3657. gap: 0 !important;
  3658. }
  3659. .gap-lg-1 {
  3660. gap: 0.25rem !important;
  3661. }
  3662. .gap-lg-2 {
  3663. gap: 0.5rem !important;
  3664. }
  3665. .gap-lg-3 {
  3666. gap: 1rem !important;
  3667. }
  3668. .gap-lg-4 {
  3669. gap: 1.5rem !important;
  3670. }
  3671. .gap-lg-5 {
  3672. gap: 3rem !important;
  3673. }
  3674. .row-gap-lg-0 {
  3675. row-gap: 0 !important;
  3676. }
  3677. .row-gap-lg-1 {
  3678. row-gap: 0.25rem !important;
  3679. }
  3680. .row-gap-lg-2 {
  3681. row-gap: 0.5rem !important;
  3682. }
  3683. .row-gap-lg-3 {
  3684. row-gap: 1rem !important;
  3685. }
  3686. .row-gap-lg-4 {
  3687. row-gap: 1.5rem !important;
  3688. }
  3689. .row-gap-lg-5 {
  3690. row-gap: 3rem !important;
  3691. }
  3692. .column-gap-lg-0 {
  3693. -moz-column-gap: 0 !important;
  3694. column-gap: 0 !important;
  3695. }
  3696. .column-gap-lg-1 {
  3697. -moz-column-gap: 0.25rem !important;
  3698. column-gap: 0.25rem !important;
  3699. }
  3700. .column-gap-lg-2 {
  3701. -moz-column-gap: 0.5rem !important;
  3702. column-gap: 0.5rem !important;
  3703. }
  3704. .column-gap-lg-3 {
  3705. -moz-column-gap: 1rem !important;
  3706. column-gap: 1rem !important;
  3707. }
  3708. .column-gap-lg-4 {
  3709. -moz-column-gap: 1.5rem !important;
  3710. column-gap: 1.5rem !important;
  3711. }
  3712. .column-gap-lg-5 {
  3713. -moz-column-gap: 3rem !important;
  3714. column-gap: 3rem !important;
  3715. }
  3716. .text-lg-start {
  3717. text-align: right !important;
  3718. }
  3719. .text-lg-end {
  3720. text-align: left !important;
  3721. }
  3722. .text-lg-center {
  3723. text-align: center !important;
  3724. }
  3725. }
  3726. @media (min-width: 1200px) {
  3727. .float-xl-start {
  3728. float: right !important;
  3729. }
  3730. .float-xl-end {
  3731. float: left !important;
  3732. }
  3733. .float-xl-none {
  3734. float: none !important;
  3735. }
  3736. .object-fit-xl-contain {
  3737. -o-object-fit: contain !important;
  3738. object-fit: contain !important;
  3739. }
  3740. .object-fit-xl-cover {
  3741. -o-object-fit: cover !important;
  3742. object-fit: cover !important;
  3743. }
  3744. .object-fit-xl-fill {
  3745. -o-object-fit: fill !important;
  3746. object-fit: fill !important;
  3747. }
  3748. .object-fit-xl-scale {
  3749. -o-object-fit: scale-down !important;
  3750. object-fit: scale-down !important;
  3751. }
  3752. .object-fit-xl-none {
  3753. -o-object-fit: none !important;
  3754. object-fit: none !important;
  3755. }
  3756. .d-xl-inline {
  3757. display: inline !important;
  3758. }
  3759. .d-xl-inline-block {
  3760. display: inline-block !important;
  3761. }
  3762. .d-xl-block {
  3763. display: block !important;
  3764. }
  3765. .d-xl-grid {
  3766. display: grid !important;
  3767. }
  3768. .d-xl-inline-grid {
  3769. display: inline-grid !important;
  3770. }
  3771. .d-xl-table {
  3772. display: table !important;
  3773. }
  3774. .d-xl-table-row {
  3775. display: table-row !important;
  3776. }
  3777. .d-xl-table-cell {
  3778. display: table-cell !important;
  3779. }
  3780. .d-xl-flex {
  3781. display: flex !important;
  3782. }
  3783. .d-xl-inline-flex {
  3784. display: inline-flex !important;
  3785. }
  3786. .d-xl-none {
  3787. display: none !important;
  3788. }
  3789. .flex-xl-fill {
  3790. flex: 1 1 auto !important;
  3791. }
  3792. .flex-xl-row {
  3793. flex-direction: row !important;
  3794. }
  3795. .flex-xl-column {
  3796. flex-direction: column !important;
  3797. }
  3798. .flex-xl-row-reverse {
  3799. flex-direction: row-reverse !important;
  3800. }
  3801. .flex-xl-column-reverse {
  3802. flex-direction: column-reverse !important;
  3803. }
  3804. .flex-xl-grow-0 {
  3805. flex-grow: 0 !important;
  3806. }
  3807. .flex-xl-grow-1 {
  3808. flex-grow: 1 !important;
  3809. }
  3810. .flex-xl-shrink-0 {
  3811. flex-shrink: 0 !important;
  3812. }
  3813. .flex-xl-shrink-1 {
  3814. flex-shrink: 1 !important;
  3815. }
  3816. .flex-xl-wrap {
  3817. flex-wrap: wrap !important;
  3818. }
  3819. .flex-xl-nowrap {
  3820. flex-wrap: nowrap !important;
  3821. }
  3822. .flex-xl-wrap-reverse {
  3823. flex-wrap: wrap-reverse !important;
  3824. }
  3825. .justify-content-xl-start {
  3826. justify-content: flex-start !important;
  3827. }
  3828. .justify-content-xl-end {
  3829. justify-content: flex-end !important;
  3830. }
  3831. .justify-content-xl-center {
  3832. justify-content: center !important;
  3833. }
  3834. .justify-content-xl-between {
  3835. justify-content: space-between !important;
  3836. }
  3837. .justify-content-xl-around {
  3838. justify-content: space-around !important;
  3839. }
  3840. .justify-content-xl-evenly {
  3841. justify-content: space-evenly !important;
  3842. }
  3843. .align-items-xl-start {
  3844. align-items: flex-start !important;
  3845. }
  3846. .align-items-xl-end {
  3847. align-items: flex-end !important;
  3848. }
  3849. .align-items-xl-center {
  3850. align-items: center !important;
  3851. }
  3852. .align-items-xl-baseline {
  3853. align-items: baseline !important;
  3854. }
  3855. .align-items-xl-stretch {
  3856. align-items: stretch !important;
  3857. }
  3858. .align-content-xl-start {
  3859. align-content: flex-start !important;
  3860. }
  3861. .align-content-xl-end {
  3862. align-content: flex-end !important;
  3863. }
  3864. .align-content-xl-center {
  3865. align-content: center !important;
  3866. }
  3867. .align-content-xl-between {
  3868. align-content: space-between !important;
  3869. }
  3870. .align-content-xl-around {
  3871. align-content: space-around !important;
  3872. }
  3873. .align-content-xl-stretch {
  3874. align-content: stretch !important;
  3875. }
  3876. .align-self-xl-auto {
  3877. align-self: auto !important;
  3878. }
  3879. .align-self-xl-start {
  3880. align-self: flex-start !important;
  3881. }
  3882. .align-self-xl-end {
  3883. align-self: flex-end !important;
  3884. }
  3885. .align-self-xl-center {
  3886. align-self: center !important;
  3887. }
  3888. .align-self-xl-baseline {
  3889. align-self: baseline !important;
  3890. }
  3891. .align-self-xl-stretch {
  3892. align-self: stretch !important;
  3893. }
  3894. .order-xl-first {
  3895. order: -1 !important;
  3896. }
  3897. .order-xl-0 {
  3898. order: 0 !important;
  3899. }
  3900. .order-xl-1 {
  3901. order: 1 !important;
  3902. }
  3903. .order-xl-2 {
  3904. order: 2 !important;
  3905. }
  3906. .order-xl-3 {
  3907. order: 3 !important;
  3908. }
  3909. .order-xl-4 {
  3910. order: 4 !important;
  3911. }
  3912. .order-xl-5 {
  3913. order: 5 !important;
  3914. }
  3915. .order-xl-last {
  3916. order: 6 !important;
  3917. }
  3918. .m-xl-0 {
  3919. margin: 0 !important;
  3920. }
  3921. .m-xl-1 {
  3922. margin: 0.25rem !important;
  3923. }
  3924. .m-xl-2 {
  3925. margin: 0.5rem !important;
  3926. }
  3927. .m-xl-3 {
  3928. margin: 1rem !important;
  3929. }
  3930. .m-xl-4 {
  3931. margin: 1.5rem !important;
  3932. }
  3933. .m-xl-5 {
  3934. margin: 3rem !important;
  3935. }
  3936. .m-xl-auto {
  3937. margin: auto !important;
  3938. }
  3939. .mx-xl-0 {
  3940. margin-left: 0 !important;
  3941. margin-right: 0 !important;
  3942. }
  3943. .mx-xl-1 {
  3944. margin-left: 0.25rem !important;
  3945. margin-right: 0.25rem !important;
  3946. }
  3947. .mx-xl-2 {
  3948. margin-left: 0.5rem !important;
  3949. margin-right: 0.5rem !important;
  3950. }
  3951. .mx-xl-3 {
  3952. margin-left: 1rem !important;
  3953. margin-right: 1rem !important;
  3954. }
  3955. .mx-xl-4 {
  3956. margin-left: 1.5rem !important;
  3957. margin-right: 1.5rem !important;
  3958. }
  3959. .mx-xl-5 {
  3960. margin-left: 3rem !important;
  3961. margin-right: 3rem !important;
  3962. }
  3963. .mx-xl-auto {
  3964. margin-left: auto !important;
  3965. margin-right: auto !important;
  3966. }
  3967. .my-xl-0 {
  3968. margin-top: 0 !important;
  3969. margin-bottom: 0 !important;
  3970. }
  3971. .my-xl-1 {
  3972. margin-top: 0.25rem !important;
  3973. margin-bottom: 0.25rem !important;
  3974. }
  3975. .my-xl-2 {
  3976. margin-top: 0.5rem !important;
  3977. margin-bottom: 0.5rem !important;
  3978. }
  3979. .my-xl-3 {
  3980. margin-top: 1rem !important;
  3981. margin-bottom: 1rem !important;
  3982. }
  3983. .my-xl-4 {
  3984. margin-top: 1.5rem !important;
  3985. margin-bottom: 1.5rem !important;
  3986. }
  3987. .my-xl-5 {
  3988. margin-top: 3rem !important;
  3989. margin-bottom: 3rem !important;
  3990. }
  3991. .my-xl-auto {
  3992. margin-top: auto !important;
  3993. margin-bottom: auto !important;
  3994. }
  3995. .mt-xl-0 {
  3996. margin-top: 0 !important;
  3997. }
  3998. .mt-xl-1 {
  3999. margin-top: 0.25rem !important;
  4000. }
  4001. .mt-xl-2 {
  4002. margin-top: 0.5rem !important;
  4003. }
  4004. .mt-xl-3 {
  4005. margin-top: 1rem !important;
  4006. }
  4007. .mt-xl-4 {
  4008. margin-top: 1.5rem !important;
  4009. }
  4010. .mt-xl-5 {
  4011. margin-top: 3rem !important;
  4012. }
  4013. .mt-xl-auto {
  4014. margin-top: auto !important;
  4015. }
  4016. .me-xl-0 {
  4017. margin-left: 0 !important;
  4018. }
  4019. .me-xl-1 {
  4020. margin-left: 0.25rem !important;
  4021. }
  4022. .me-xl-2 {
  4023. margin-left: 0.5rem !important;
  4024. }
  4025. .me-xl-3 {
  4026. margin-left: 1rem !important;
  4027. }
  4028. .me-xl-4 {
  4029. margin-left: 1.5rem !important;
  4030. }
  4031. .me-xl-5 {
  4032. margin-left: 3rem !important;
  4033. }
  4034. .me-xl-auto {
  4035. margin-left: auto !important;
  4036. }
  4037. .mb-xl-0 {
  4038. margin-bottom: 0 !important;
  4039. }
  4040. .mb-xl-1 {
  4041. margin-bottom: 0.25rem !important;
  4042. }
  4043. .mb-xl-2 {
  4044. margin-bottom: 0.5rem !important;
  4045. }
  4046. .mb-xl-3 {
  4047. margin-bottom: 1rem !important;
  4048. }
  4049. .mb-xl-4 {
  4050. margin-bottom: 1.5rem !important;
  4051. }
  4052. .mb-xl-5 {
  4053. margin-bottom: 3rem !important;
  4054. }
  4055. .mb-xl-auto {
  4056. margin-bottom: auto !important;
  4057. }
  4058. .ms-xl-0 {
  4059. margin-right: 0 !important;
  4060. }
  4061. .ms-xl-1 {
  4062. margin-right: 0.25rem !important;
  4063. }
  4064. .ms-xl-2 {
  4065. margin-right: 0.5rem !important;
  4066. }
  4067. .ms-xl-3 {
  4068. margin-right: 1rem !important;
  4069. }
  4070. .ms-xl-4 {
  4071. margin-right: 1.5rem !important;
  4072. }
  4073. .ms-xl-5 {
  4074. margin-right: 3rem !important;
  4075. }
  4076. .ms-xl-auto {
  4077. margin-right: auto !important;
  4078. }
  4079. .p-xl-0 {
  4080. padding: 0 !important;
  4081. }
  4082. .p-xl-1 {
  4083. padding: 0.25rem !important;
  4084. }
  4085. .p-xl-2 {
  4086. padding: 0.5rem !important;
  4087. }
  4088. .p-xl-3 {
  4089. padding: 1rem !important;
  4090. }
  4091. .p-xl-4 {
  4092. padding: 1.5rem !important;
  4093. }
  4094. .p-xl-5 {
  4095. padding: 3rem !important;
  4096. }
  4097. .px-xl-0 {
  4098. padding-left: 0 !important;
  4099. padding-right: 0 !important;
  4100. }
  4101. .px-xl-1 {
  4102. padding-left: 0.25rem !important;
  4103. padding-right: 0.25rem !important;
  4104. }
  4105. .px-xl-2 {
  4106. padding-left: 0.5rem !important;
  4107. padding-right: 0.5rem !important;
  4108. }
  4109. .px-xl-3 {
  4110. padding-left: 1rem !important;
  4111. padding-right: 1rem !important;
  4112. }
  4113. .px-xl-4 {
  4114. padding-left: 1.5rem !important;
  4115. padding-right: 1.5rem !important;
  4116. }
  4117. .px-xl-5 {
  4118. padding-left: 3rem !important;
  4119. padding-right: 3rem !important;
  4120. }
  4121. .py-xl-0 {
  4122. padding-top: 0 !important;
  4123. padding-bottom: 0 !important;
  4124. }
  4125. .py-xl-1 {
  4126. padding-top: 0.25rem !important;
  4127. padding-bottom: 0.25rem !important;
  4128. }
  4129. .py-xl-2 {
  4130. padding-top: 0.5rem !important;
  4131. padding-bottom: 0.5rem !important;
  4132. }
  4133. .py-xl-3 {
  4134. padding-top: 1rem !important;
  4135. padding-bottom: 1rem !important;
  4136. }
  4137. .py-xl-4 {
  4138. padding-top: 1.5rem !important;
  4139. padding-bottom: 1.5rem !important;
  4140. }
  4141. .py-xl-5 {
  4142. padding-top: 3rem !important;
  4143. padding-bottom: 3rem !important;
  4144. }
  4145. .pt-xl-0 {
  4146. padding-top: 0 !important;
  4147. }
  4148. .pt-xl-1 {
  4149. padding-top: 0.25rem !important;
  4150. }
  4151. .pt-xl-2 {
  4152. padding-top: 0.5rem !important;
  4153. }
  4154. .pt-xl-3 {
  4155. padding-top: 1rem !important;
  4156. }
  4157. .pt-xl-4 {
  4158. padding-top: 1.5rem !important;
  4159. }
  4160. .pt-xl-5 {
  4161. padding-top: 3rem !important;
  4162. }
  4163. .pe-xl-0 {
  4164. padding-left: 0 !important;
  4165. }
  4166. .pe-xl-1 {
  4167. padding-left: 0.25rem !important;
  4168. }
  4169. .pe-xl-2 {
  4170. padding-left: 0.5rem !important;
  4171. }
  4172. .pe-xl-3 {
  4173. padding-left: 1rem !important;
  4174. }
  4175. .pe-xl-4 {
  4176. padding-left: 1.5rem !important;
  4177. }
  4178. .pe-xl-5 {
  4179. padding-left: 3rem !important;
  4180. }
  4181. .pb-xl-0 {
  4182. padding-bottom: 0 !important;
  4183. }
  4184. .pb-xl-1 {
  4185. padding-bottom: 0.25rem !important;
  4186. }
  4187. .pb-xl-2 {
  4188. padding-bottom: 0.5rem !important;
  4189. }
  4190. .pb-xl-3 {
  4191. padding-bottom: 1rem !important;
  4192. }
  4193. .pb-xl-4 {
  4194. padding-bottom: 1.5rem !important;
  4195. }
  4196. .pb-xl-5 {
  4197. padding-bottom: 3rem !important;
  4198. }
  4199. .ps-xl-0 {
  4200. padding-right: 0 !important;
  4201. }
  4202. .ps-xl-1 {
  4203. padding-right: 0.25rem !important;
  4204. }
  4205. .ps-xl-2 {
  4206. padding-right: 0.5rem !important;
  4207. }
  4208. .ps-xl-3 {
  4209. padding-right: 1rem !important;
  4210. }
  4211. .ps-xl-4 {
  4212. padding-right: 1.5rem !important;
  4213. }
  4214. .ps-xl-5 {
  4215. padding-right: 3rem !important;
  4216. }
  4217. .gap-xl-0 {
  4218. gap: 0 !important;
  4219. }
  4220. .gap-xl-1 {
  4221. gap: 0.25rem !important;
  4222. }
  4223. .gap-xl-2 {
  4224. gap: 0.5rem !important;
  4225. }
  4226. .gap-xl-3 {
  4227. gap: 1rem !important;
  4228. }
  4229. .gap-xl-4 {
  4230. gap: 1.5rem !important;
  4231. }
  4232. .gap-xl-5 {
  4233. gap: 3rem !important;
  4234. }
  4235. .row-gap-xl-0 {
  4236. row-gap: 0 !important;
  4237. }
  4238. .row-gap-xl-1 {
  4239. row-gap: 0.25rem !important;
  4240. }
  4241. .row-gap-xl-2 {
  4242. row-gap: 0.5rem !important;
  4243. }
  4244. .row-gap-xl-3 {
  4245. row-gap: 1rem !important;
  4246. }
  4247. .row-gap-xl-4 {
  4248. row-gap: 1.5rem !important;
  4249. }
  4250. .row-gap-xl-5 {
  4251. row-gap: 3rem !important;
  4252. }
  4253. .column-gap-xl-0 {
  4254. -moz-column-gap: 0 !important;
  4255. column-gap: 0 !important;
  4256. }
  4257. .column-gap-xl-1 {
  4258. -moz-column-gap: 0.25rem !important;
  4259. column-gap: 0.25rem !important;
  4260. }
  4261. .column-gap-xl-2 {
  4262. -moz-column-gap: 0.5rem !important;
  4263. column-gap: 0.5rem !important;
  4264. }
  4265. .column-gap-xl-3 {
  4266. -moz-column-gap: 1rem !important;
  4267. column-gap: 1rem !important;
  4268. }
  4269. .column-gap-xl-4 {
  4270. -moz-column-gap: 1.5rem !important;
  4271. column-gap: 1.5rem !important;
  4272. }
  4273. .column-gap-xl-5 {
  4274. -moz-column-gap: 3rem !important;
  4275. column-gap: 3rem !important;
  4276. }
  4277. .text-xl-start {
  4278. text-align: right !important;
  4279. }
  4280. .text-xl-end {
  4281. text-align: left !important;
  4282. }
  4283. .text-xl-center {
  4284. text-align: center !important;
  4285. }
  4286. }
  4287. @media (min-width: 1400px) {
  4288. .float-xxl-start {
  4289. float: right !important;
  4290. }
  4291. .float-xxl-end {
  4292. float: left !important;
  4293. }
  4294. .float-xxl-none {
  4295. float: none !important;
  4296. }
  4297. .object-fit-xxl-contain {
  4298. -o-object-fit: contain !important;
  4299. object-fit: contain !important;
  4300. }
  4301. .object-fit-xxl-cover {
  4302. -o-object-fit: cover !important;
  4303. object-fit: cover !important;
  4304. }
  4305. .object-fit-xxl-fill {
  4306. -o-object-fit: fill !important;
  4307. object-fit: fill !important;
  4308. }
  4309. .object-fit-xxl-scale {
  4310. -o-object-fit: scale-down !important;
  4311. object-fit: scale-down !important;
  4312. }
  4313. .object-fit-xxl-none {
  4314. -o-object-fit: none !important;
  4315. object-fit: none !important;
  4316. }
  4317. .d-xxl-inline {
  4318. display: inline !important;
  4319. }
  4320. .d-xxl-inline-block {
  4321. display: inline-block !important;
  4322. }
  4323. .d-xxl-block {
  4324. display: block !important;
  4325. }
  4326. .d-xxl-grid {
  4327. display: grid !important;
  4328. }
  4329. .d-xxl-inline-grid {
  4330. display: inline-grid !important;
  4331. }
  4332. .d-xxl-table {
  4333. display: table !important;
  4334. }
  4335. .d-xxl-table-row {
  4336. display: table-row !important;
  4337. }
  4338. .d-xxl-table-cell {
  4339. display: table-cell !important;
  4340. }
  4341. .d-xxl-flex {
  4342. display: flex !important;
  4343. }
  4344. .d-xxl-inline-flex {
  4345. display: inline-flex !important;
  4346. }
  4347. .d-xxl-none {
  4348. display: none !important;
  4349. }
  4350. .flex-xxl-fill {
  4351. flex: 1 1 auto !important;
  4352. }
  4353. .flex-xxl-row {
  4354. flex-direction: row !important;
  4355. }
  4356. .flex-xxl-column {
  4357. flex-direction: column !important;
  4358. }
  4359. .flex-xxl-row-reverse {
  4360. flex-direction: row-reverse !important;
  4361. }
  4362. .flex-xxl-column-reverse {
  4363. flex-direction: column-reverse !important;
  4364. }
  4365. .flex-xxl-grow-0 {
  4366. flex-grow: 0 !important;
  4367. }
  4368. .flex-xxl-grow-1 {
  4369. flex-grow: 1 !important;
  4370. }
  4371. .flex-xxl-shrink-0 {
  4372. flex-shrink: 0 !important;
  4373. }
  4374. .flex-xxl-shrink-1 {
  4375. flex-shrink: 1 !important;
  4376. }
  4377. .flex-xxl-wrap {
  4378. flex-wrap: wrap !important;
  4379. }
  4380. .flex-xxl-nowrap {
  4381. flex-wrap: nowrap !important;
  4382. }
  4383. .flex-xxl-wrap-reverse {
  4384. flex-wrap: wrap-reverse !important;
  4385. }
  4386. .justify-content-xxl-start {
  4387. justify-content: flex-start !important;
  4388. }
  4389. .justify-content-xxl-end {
  4390. justify-content: flex-end !important;
  4391. }
  4392. .justify-content-xxl-center {
  4393. justify-content: center !important;
  4394. }
  4395. .justify-content-xxl-between {
  4396. justify-content: space-between !important;
  4397. }
  4398. .justify-content-xxl-around {
  4399. justify-content: space-around !important;
  4400. }
  4401. .justify-content-xxl-evenly {
  4402. justify-content: space-evenly !important;
  4403. }
  4404. .align-items-xxl-start {
  4405. align-items: flex-start !important;
  4406. }
  4407. .align-items-xxl-end {
  4408. align-items: flex-end !important;
  4409. }
  4410. .align-items-xxl-center {
  4411. align-items: center !important;
  4412. }
  4413. .align-items-xxl-baseline {
  4414. align-items: baseline !important;
  4415. }
  4416. .align-items-xxl-stretch {
  4417. align-items: stretch !important;
  4418. }
  4419. .align-content-xxl-start {
  4420. align-content: flex-start !important;
  4421. }
  4422. .align-content-xxl-end {
  4423. align-content: flex-end !important;
  4424. }
  4425. .align-content-xxl-center {
  4426. align-content: center !important;
  4427. }
  4428. .align-content-xxl-between {
  4429. align-content: space-between !important;
  4430. }
  4431. .align-content-xxl-around {
  4432. align-content: space-around !important;
  4433. }
  4434. .align-content-xxl-stretch {
  4435. align-content: stretch !important;
  4436. }
  4437. .align-self-xxl-auto {
  4438. align-self: auto !important;
  4439. }
  4440. .align-self-xxl-start {
  4441. align-self: flex-start !important;
  4442. }
  4443. .align-self-xxl-end {
  4444. align-self: flex-end !important;
  4445. }
  4446. .align-self-xxl-center {
  4447. align-self: center !important;
  4448. }
  4449. .align-self-xxl-baseline {
  4450. align-self: baseline !important;
  4451. }
  4452. .align-self-xxl-stretch {
  4453. align-self: stretch !important;
  4454. }
  4455. .order-xxl-first {
  4456. order: -1 !important;
  4457. }
  4458. .order-xxl-0 {
  4459. order: 0 !important;
  4460. }
  4461. .order-xxl-1 {
  4462. order: 1 !important;
  4463. }
  4464. .order-xxl-2 {
  4465. order: 2 !important;
  4466. }
  4467. .order-xxl-3 {
  4468. order: 3 !important;
  4469. }
  4470. .order-xxl-4 {
  4471. order: 4 !important;
  4472. }
  4473. .order-xxl-5 {
  4474. order: 5 !important;
  4475. }
  4476. .order-xxl-last {
  4477. order: 6 !important;
  4478. }
  4479. .m-xxl-0 {
  4480. margin: 0 !important;
  4481. }
  4482. .m-xxl-1 {
  4483. margin: 0.25rem !important;
  4484. }
  4485. .m-xxl-2 {
  4486. margin: 0.5rem !important;
  4487. }
  4488. .m-xxl-3 {
  4489. margin: 1rem !important;
  4490. }
  4491. .m-xxl-4 {
  4492. margin: 1.5rem !important;
  4493. }
  4494. .m-xxl-5 {
  4495. margin: 3rem !important;
  4496. }
  4497. .m-xxl-auto {
  4498. margin: auto !important;
  4499. }
  4500. .mx-xxl-0 {
  4501. margin-left: 0 !important;
  4502. margin-right: 0 !important;
  4503. }
  4504. .mx-xxl-1 {
  4505. margin-left: 0.25rem !important;
  4506. margin-right: 0.25rem !important;
  4507. }
  4508. .mx-xxl-2 {
  4509. margin-left: 0.5rem !important;
  4510. margin-right: 0.5rem !important;
  4511. }
  4512. .mx-xxl-3 {
  4513. margin-left: 1rem !important;
  4514. margin-right: 1rem !important;
  4515. }
  4516. .mx-xxl-4 {
  4517. margin-left: 1.5rem !important;
  4518. margin-right: 1.5rem !important;
  4519. }
  4520. .mx-xxl-5 {
  4521. margin-left: 3rem !important;
  4522. margin-right: 3rem !important;
  4523. }
  4524. .mx-xxl-auto {
  4525. margin-left: auto !important;
  4526. margin-right: auto !important;
  4527. }
  4528. .my-xxl-0 {
  4529. margin-top: 0 !important;
  4530. margin-bottom: 0 !important;
  4531. }
  4532. .my-xxl-1 {
  4533. margin-top: 0.25rem !important;
  4534. margin-bottom: 0.25rem !important;
  4535. }
  4536. .my-xxl-2 {
  4537. margin-top: 0.5rem !important;
  4538. margin-bottom: 0.5rem !important;
  4539. }
  4540. .my-xxl-3 {
  4541. margin-top: 1rem !important;
  4542. margin-bottom: 1rem !important;
  4543. }
  4544. .my-xxl-4 {
  4545. margin-top: 1.5rem !important;
  4546. margin-bottom: 1.5rem !important;
  4547. }
  4548. .my-xxl-5 {
  4549. margin-top: 3rem !important;
  4550. margin-bottom: 3rem !important;
  4551. }
  4552. .my-xxl-auto {
  4553. margin-top: auto !important;
  4554. margin-bottom: auto !important;
  4555. }
  4556. .mt-xxl-0 {
  4557. margin-top: 0 !important;
  4558. }
  4559. .mt-xxl-1 {
  4560. margin-top: 0.25rem !important;
  4561. }
  4562. .mt-xxl-2 {
  4563. margin-top: 0.5rem !important;
  4564. }
  4565. .mt-xxl-3 {
  4566. margin-top: 1rem !important;
  4567. }
  4568. .mt-xxl-4 {
  4569. margin-top: 1.5rem !important;
  4570. }
  4571. .mt-xxl-5 {
  4572. margin-top: 3rem !important;
  4573. }
  4574. .mt-xxl-auto {
  4575. margin-top: auto !important;
  4576. }
  4577. .me-xxl-0 {
  4578. margin-left: 0 !important;
  4579. }
  4580. .me-xxl-1 {
  4581. margin-left: 0.25rem !important;
  4582. }
  4583. .me-xxl-2 {
  4584. margin-left: 0.5rem !important;
  4585. }
  4586. .me-xxl-3 {
  4587. margin-left: 1rem !important;
  4588. }
  4589. .me-xxl-4 {
  4590. margin-left: 1.5rem !important;
  4591. }
  4592. .me-xxl-5 {
  4593. margin-left: 3rem !important;
  4594. }
  4595. .me-xxl-auto {
  4596. margin-left: auto !important;
  4597. }
  4598. .mb-xxl-0 {
  4599. margin-bottom: 0 !important;
  4600. }
  4601. .mb-xxl-1 {
  4602. margin-bottom: 0.25rem !important;
  4603. }
  4604. .mb-xxl-2 {
  4605. margin-bottom: 0.5rem !important;
  4606. }
  4607. .mb-xxl-3 {
  4608. margin-bottom: 1rem !important;
  4609. }
  4610. .mb-xxl-4 {
  4611. margin-bottom: 1.5rem !important;
  4612. }
  4613. .mb-xxl-5 {
  4614. margin-bottom: 3rem !important;
  4615. }
  4616. .mb-xxl-auto {
  4617. margin-bottom: auto !important;
  4618. }
  4619. .ms-xxl-0 {
  4620. margin-right: 0 !important;
  4621. }
  4622. .ms-xxl-1 {
  4623. margin-right: 0.25rem !important;
  4624. }
  4625. .ms-xxl-2 {
  4626. margin-right: 0.5rem !important;
  4627. }
  4628. .ms-xxl-3 {
  4629. margin-right: 1rem !important;
  4630. }
  4631. .ms-xxl-4 {
  4632. margin-right: 1.5rem !important;
  4633. }
  4634. .ms-xxl-5 {
  4635. margin-right: 3rem !important;
  4636. }
  4637. .ms-xxl-auto {
  4638. margin-right: auto !important;
  4639. }
  4640. .p-xxl-0 {
  4641. padding: 0 !important;
  4642. }
  4643. .p-xxl-1 {
  4644. padding: 0.25rem !important;
  4645. }
  4646. .p-xxl-2 {
  4647. padding: 0.5rem !important;
  4648. }
  4649. .p-xxl-3 {
  4650. padding: 1rem !important;
  4651. }
  4652. .p-xxl-4 {
  4653. padding: 1.5rem !important;
  4654. }
  4655. .p-xxl-5 {
  4656. padding: 3rem !important;
  4657. }
  4658. .px-xxl-0 {
  4659. padding-left: 0 !important;
  4660. padding-right: 0 !important;
  4661. }
  4662. .px-xxl-1 {
  4663. padding-left: 0.25rem !important;
  4664. padding-right: 0.25rem !important;
  4665. }
  4666. .px-xxl-2 {
  4667. padding-left: 0.5rem !important;
  4668. padding-right: 0.5rem !important;
  4669. }
  4670. .px-xxl-3 {
  4671. padding-left: 1rem !important;
  4672. padding-right: 1rem !important;
  4673. }
  4674. .px-xxl-4 {
  4675. padding-left: 1.5rem !important;
  4676. padding-right: 1.5rem !important;
  4677. }
  4678. .px-xxl-5 {
  4679. padding-left: 3rem !important;
  4680. padding-right: 3rem !important;
  4681. }
  4682. .py-xxl-0 {
  4683. padding-top: 0 !important;
  4684. padding-bottom: 0 !important;
  4685. }
  4686. .py-xxl-1 {
  4687. padding-top: 0.25rem !important;
  4688. padding-bottom: 0.25rem !important;
  4689. }
  4690. .py-xxl-2 {
  4691. padding-top: 0.5rem !important;
  4692. padding-bottom: 0.5rem !important;
  4693. }
  4694. .py-xxl-3 {
  4695. padding-top: 1rem !important;
  4696. padding-bottom: 1rem !important;
  4697. }
  4698. .py-xxl-4 {
  4699. padding-top: 1.5rem !important;
  4700. padding-bottom: 1.5rem !important;
  4701. }
  4702. .py-xxl-5 {
  4703. padding-top: 3rem !important;
  4704. padding-bottom: 3rem !important;
  4705. }
  4706. .pt-xxl-0 {
  4707. padding-top: 0 !important;
  4708. }
  4709. .pt-xxl-1 {
  4710. padding-top: 0.25rem !important;
  4711. }
  4712. .pt-xxl-2 {
  4713. padding-top: 0.5rem !important;
  4714. }
  4715. .pt-xxl-3 {
  4716. padding-top: 1rem !important;
  4717. }
  4718. .pt-xxl-4 {
  4719. padding-top: 1.5rem !important;
  4720. }
  4721. .pt-xxl-5 {
  4722. padding-top: 3rem !important;
  4723. }
  4724. .pe-xxl-0 {
  4725. padding-left: 0 !important;
  4726. }
  4727. .pe-xxl-1 {
  4728. padding-left: 0.25rem !important;
  4729. }
  4730. .pe-xxl-2 {
  4731. padding-left: 0.5rem !important;
  4732. }
  4733. .pe-xxl-3 {
  4734. padding-left: 1rem !important;
  4735. }
  4736. .pe-xxl-4 {
  4737. padding-left: 1.5rem !important;
  4738. }
  4739. .pe-xxl-5 {
  4740. padding-left: 3rem !important;
  4741. }
  4742. .pb-xxl-0 {
  4743. padding-bottom: 0 !important;
  4744. }
  4745. .pb-xxl-1 {
  4746. padding-bottom: 0.25rem !important;
  4747. }
  4748. .pb-xxl-2 {
  4749. padding-bottom: 0.5rem !important;
  4750. }
  4751. .pb-xxl-3 {
  4752. padding-bottom: 1rem !important;
  4753. }
  4754. .pb-xxl-4 {
  4755. padding-bottom: 1.5rem !important;
  4756. }
  4757. .pb-xxl-5 {
  4758. padding-bottom: 3rem !important;
  4759. }
  4760. .ps-xxl-0 {
  4761. padding-right: 0 !important;
  4762. }
  4763. .ps-xxl-1 {
  4764. padding-right: 0.25rem !important;
  4765. }
  4766. .ps-xxl-2 {
  4767. padding-right: 0.5rem !important;
  4768. }
  4769. .ps-xxl-3 {
  4770. padding-right: 1rem !important;
  4771. }
  4772. .ps-xxl-4 {
  4773. padding-right: 1.5rem !important;
  4774. }
  4775. .ps-xxl-5 {
  4776. padding-right: 3rem !important;
  4777. }
  4778. .gap-xxl-0 {
  4779. gap: 0 !important;
  4780. }
  4781. .gap-xxl-1 {
  4782. gap: 0.25rem !important;
  4783. }
  4784. .gap-xxl-2 {
  4785. gap: 0.5rem !important;
  4786. }
  4787. .gap-xxl-3 {
  4788. gap: 1rem !important;
  4789. }
  4790. .gap-xxl-4 {
  4791. gap: 1.5rem !important;
  4792. }
  4793. .gap-xxl-5 {
  4794. gap: 3rem !important;
  4795. }
  4796. .row-gap-xxl-0 {
  4797. row-gap: 0 !important;
  4798. }
  4799. .row-gap-xxl-1 {
  4800. row-gap: 0.25rem !important;
  4801. }
  4802. .row-gap-xxl-2 {
  4803. row-gap: 0.5rem !important;
  4804. }
  4805. .row-gap-xxl-3 {
  4806. row-gap: 1rem !important;
  4807. }
  4808. .row-gap-xxl-4 {
  4809. row-gap: 1.5rem !important;
  4810. }
  4811. .row-gap-xxl-5 {
  4812. row-gap: 3rem !important;
  4813. }
  4814. .column-gap-xxl-0 {
  4815. -moz-column-gap: 0 !important;
  4816. column-gap: 0 !important;
  4817. }
  4818. .column-gap-xxl-1 {
  4819. -moz-column-gap: 0.25rem !important;
  4820. column-gap: 0.25rem !important;
  4821. }
  4822. .column-gap-xxl-2 {
  4823. -moz-column-gap: 0.5rem !important;
  4824. column-gap: 0.5rem !important;
  4825. }
  4826. .column-gap-xxl-3 {
  4827. -moz-column-gap: 1rem !important;
  4828. column-gap: 1rem !important;
  4829. }
  4830. .column-gap-xxl-4 {
  4831. -moz-column-gap: 1.5rem !important;
  4832. column-gap: 1.5rem !important;
  4833. }
  4834. .column-gap-xxl-5 {
  4835. -moz-column-gap: 3rem !important;
  4836. column-gap: 3rem !important;
  4837. }
  4838. .text-xxl-start {
  4839. text-align: right !important;
  4840. }
  4841. .text-xxl-end {
  4842. text-align: left !important;
  4843. }
  4844. .text-xxl-center {
  4845. text-align: center !important;
  4846. }
  4847. }
  4848. @media (min-width: 1200px) {
  4849. .fs-1 {
  4850. font-size: 2.5rem !important;
  4851. }
  4852. .fs-2 {
  4853. font-size: 2rem !important;
  4854. }
  4855. .fs-3 {
  4856. font-size: 1.75rem !important;
  4857. }
  4858. .fs-4 {
  4859. font-size: 1.5rem !important;
  4860. }
  4861. }
  4862. @media print {
  4863. .d-print-inline {
  4864. display: inline !important;
  4865. }
  4866. .d-print-inline-block {
  4867. display: inline-block !important;
  4868. }
  4869. .d-print-block {
  4870. display: block !important;
  4871. }
  4872. .d-print-grid {
  4873. display: grid !important;
  4874. }
  4875. .d-print-inline-grid {
  4876. display: inline-grid !important;
  4877. }
  4878. .d-print-table {
  4879. display: table !important;
  4880. }
  4881. .d-print-table-row {
  4882. display: table-row !important;
  4883. }
  4884. .d-print-table-cell {
  4885. display: table-cell !important;
  4886. }
  4887. .d-print-flex {
  4888. display: flex !important;
  4889. }
  4890. .d-print-inline-flex {
  4891. display: inline-flex !important;
  4892. }
  4893. .d-print-none {
  4894. display: none !important;
  4895. }
  4896. }
  4897. /*# sourceMappingURL=bootstrap-utilities.rtl.css.map */